From e51833b0e27ab7700144c751cbdb151afa3a993d Mon Sep 17 00:00:00 2001 From: Timothy Wamalwa Date: Thu, 25 Apr 2024 10:58:37 +0300 Subject: [PATCH 1/3] Removed unnecessary aritifacts generation branch --- .azure-pipelines/weekly-generation.yml | 51 -------------------------- 1 file changed, 51 deletions(-) diff --git a/.azure-pipelines/weekly-generation.yml b/.azure-pipelines/weekly-generation.yml index 7d9c411fbf..9189680588 100644 --- a/.azure-pipelines/weekly-generation.yml +++ b/.azure-pipelines/weekly-generation.yml @@ -14,9 +14,6 @@ parameters: - name: BaseBranch displayName: Base Branch default: dev -- name: GenerationBranch - displayName: Generation branch - default: v2/generation - name: SkipForceRefresh displayName: Skip Force Refresh default: false @@ -40,7 +37,6 @@ parameters: variables: Branch: "WeeklyApiRefresh" BaseBranch: ${{ parameters.BaseBranch }} - GenerationBranch: ${{ parameters.GenerationBranch }} BuildAgent: ${{ parameters.BuildAgent }} SkipForceRefresh: ${{ parameters.SkipForceRefresh }} trigger: none @@ -142,51 +138,4 @@ extends: BaseBranch: $(BaseBranch) TargetBranch: $(WeeklyBranch) Title: "[v2] Weekly OpenApiDocs Refresh" - Body: "This pull request was automatically created by Azure Pipelines. **Important** Check for unexpected deletions or changes in this PR." - - task: PowerShell@2 - name: "ComputeGenerationBranch" - displayName: "Compute weekly generation branch name" - inputs: - targetType: inline - script: | - $branch = "{0}/{1}" -f "WeeklyGeneration", (Get-Date -Format yyyyMMddHHmm) - Write-Host "##vso[task.setvariable variable=WeeklyGenerationBranch;isOutput=true]$branch" - - task: Bash@3 - displayName: "Create weekly generation branch" - inputs: - targetType: inline - script: | - git status - git branch $(ComputeGenerationBranch.WeeklyGenerationBranch) - git checkout $(ComputeGenerationBranch.WeeklyGenerationBranch) - git status - - task: Bash@3 - displayName: Commit Generated SDK artifacts - enabled: true - env: - GITHUB_TOKEN: $(GITHUB_TOKEN) - inputs: - targetType: inline - script: | - git add . - git commit -m 'Adds generated module artifacts' - git push "https://$(GITHUB_TOKEN)@github.com/microsoftgraph/msgraph-sdk-powershell.git" - git status - - task: Bash@3 - displayName: Sync with generation branch - enabled: true - env: - GITHUB_TOKEN: $(GITHUB_TOKEN) - inputs: - targetType: inline - script: | - git merge $(GenerationBranch) -s ours - git push "https://$(GITHUB_TOKEN)@github.com/microsoftgraph/msgraph-sdk-powershell.git" - git status - - ${{ if eq(parameters.CreatePullRequest, true) }}: - - template: .azure-pipelines/common-templates/create-pr.yml@self - parameters: - BaseBranch: $(GenerationBranch) - TargetBranch: $(ComputeGenerationBranch.WeeklyGenerationBranch) - Title: "[v2] Weekly Generated Module Artifacts" Body: "This pull request was automatically created by Azure Pipelines. **Important** Check for unexpected deletions or changes in this PR." \ No newline at end of file From eaaa32fd9a703f57126aa5f4aa7bf0198005ba6e Mon Sep 17 00:00:00 2001 From: Timothy Wamalwa Date: Thu, 25 Apr 2024 13:38:42 +0300 Subject: [PATCH 2/3] Updated import script to solely rely on find-mggraph command --- tools/ImportExamples.ps1 | 128 ++++++--------------------------------- 1 file changed, 19 insertions(+), 109 deletions(-) diff --git a/tools/ImportExamples.ps1 b/tools/ImportExamples.ps1 index 17d410f5e8..529af00f96 100644 --- a/tools/ImportExamples.ps1 +++ b/tools/ImportExamples.ps1 @@ -5,8 +5,7 @@ Param( $Available = @(), [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "..\config\ModulesMapping.jsonc"), [string] $FolderForExamplesToBeReviewed = (Join-Path $PSScriptRoot "..\examplesreport"), - [string] $ExamplesToBeReviewed = "ExamplesToBeReviewed.csv", - $MetaDataJsonFile = (Join-Path $PSScriptRoot "../src/Authentication/Authentication/custom/common/MgCommandMetadata.json") + [string] $ExamplesToBeReviewed = "ExamplesToBeReviewed.csv" ) function Start-Generator { Param( @@ -36,8 +35,7 @@ function Start-Generator { $ProfilePathMapping = "beta\examples" } $ModulePath = Join-Path $PSScriptRoot "..\src\$GraphModule\$ProfilePathMapping" - Get-ExternalDocsUrl -ManualExternalDocsUrl $ManualExternalDocsUrl -GenerationMode $GenerationMode -GraphProfilePath $ModulePath -Command $GraphCommand -GraphProfile $ProfilePath -Module $GraphModule - + Start-WebScrapping -GraphProfile $GraphProfile -ExternalDocUrl $ManualExternalDocsUrl -Command $GraphCommand -GraphProfilePath $ModulePath -Module $GraphModule } } function Get-FilesByProfile { @@ -54,13 +52,7 @@ function Get-FilesByProfile { $ModulesToGenerate | ForEach-Object { $ModuleName = $_ $ModulePath = Join-Path $PSScriptRoot "..\src\$ModuleName\$GraphProfilePath" - $OpenApiFile = Join-Path $PSScriptRoot "..\openApiDocs\v1.0\$ModuleName.yml" - #test this path first before proceeding - if (Test-Path $OpenApiFile) { - $yamlContent = Get-Content -Path $OpenApiFile - $OpenApiContent = ($yamlContent | ConvertFrom-Yaml) - Get-Files -GraphProfile $GraphProfile -GraphProfilePath $modulePath -Module $ModuleName -OpenApiContent $OpenApiContent - } + Get-Files -GraphProfile $GraphProfile -GraphProfilePath $modulePath -Module $ModuleName } } @@ -71,8 +63,7 @@ function Get-Files { [ValidateNotNullOrEmpty()] [string] $GraphProfilePath = (Join-Path $PSScriptRoot "..\src\Users\v1.0\examples"), [ValidateNotNullOrEmpty()] - [string] $Module = "Users", - [Hashtable] $OpenApiContent + [string] $Module = "Users" ) try { @@ -82,15 +73,23 @@ function Get-Files { #Extract command over here $Command = [System.IO.Path]::GetFileNameWithoutExtension($File) + if ($Command -ine "README") { #Extract URI path - $CommandDetails = Find-MgGraphCommand -Command $Command - if ($CommandDetails) { - foreach ($CommandDetail in $CommandDetails) { - $ApiPath = $CommandDetail.URI - $Method = $CommandDetails.Method - Get-ExternalDocsUrl -GraphProfile $GraphProfile -UriPath $ApiPath -Command $Command -OpenApiContent $OpenApiContent -GraphProfilePath $GraphProfilePath -Method $Method.Trim() -Module $Module + $ApiRefLinks = (Find-MgGraphCommand -Command $Command).ApiReferenceLink + + if ($ApiRefLinks) { + foreach ($ApiRefLink in $ApiRefLinks) { + + + if (-not($null -eq $ApiRefLink -or $ApiRefLink -eq "")) { + $ExternalDocsUrl = $ApiRefLink + "&tabs=powershell" + Start-WebScrapping -GraphProfile $GraphProfile -ExternalDocUrl $ExternalDocsUrl -Command $Command -GraphProfilePath $GraphProfilePath -UriPath $UriPath -Module $Module + } + } + + } else { #Clear any content in that file as long as its not a readme file @@ -98,6 +97,7 @@ function Get-Files { } } + } } } @@ -108,96 +108,6 @@ function Get-Files { Write-Host "`nError Item Name: "$_.Exception.ItemName } -} -function Get-ExternalDocsUrl { - - param( - [ValidateSet("beta", "v1.0")] - [string] $GraphProfile = "v1.0", - [string] $UriPath, - [string] $Module = "Users", - [string] $GenerationMode = "auto", - [string] $ManualExternalDocsUrl, - [ValidateNotNullOrEmpty()] - [string] $Command = "Get-MgUser", - [Hashtable] $OpenApiContent, - [System.Object] $Method = "GET", - [string] $GraphProfilePath = (Join-Path $PSScriptRoot "..\src\Users\v1.0\examples") - ) - if ($GenerationMode -eq "manual") { - - if (-not([string]::IsNullOrEmpty($ManualExternalDocsUrl))) { - - Start-WebScrapping -GraphProfile $GraphProfile -ExternalDocUrl $ManualExternalDocsUrl -Command $Command -GraphProfilePath $GraphProfilePath -UriPath $UriPath -Module $Module - } - - } - else { - if ($UriPath) { - - if ($OpenApiContent.openapi && $OpenApiContent.info.version) { - foreach ($Path in $OpenApiContent.paths) { - $ExternalDocUrl = $null - switch ($Method) { - "GET" { - $ExternalDocUrl = $path[$UriPath].get.externalDocs.url - if ([string]::IsNullOrEmpty($ExternalDocUrl)) { - #Try with microsoft.graph prefix on the last path segment - $UriPathWithGraphPrefix = Append-GraphPrefix -UriPath $UriPath - $ExternalDocUrl = $path[$UriPathWithGraphPrefix].get.externalDocs.url - } - } - "POST" { - $ExternalDocUrl = $Path[$UriPath].post.externalDocs.url - if ([string]::IsNullOrEmpty($ExternalDocUrl)) { - #Try with microsoft.graph prefix on the last path segment - $UriPathWithGraphPrefix = Append-GraphPrefix -UriPath $UriPath - $ExternalDocUrl = $path[$UriPathWithGraphPrefix].post.externalDocs.url - } - } - "PATCH" { - $ExternalDocUrl = $Path[$UriPath].patch.externalDocs.url - if ([string]::IsNullOrEmpty($ExternalDocUrl)) { - #Try with microsoft.graph prefix on the last path segment - $UriPathWithGraphPrefix = Append-GraphPrefix -UriPath $UriPath - $ExternalDocUrl = $path[$UriPathWithGraphPrefix].patch.externalDocs.url - } - } - "DELETE" { - $ExternalDocUrl = $Path[$UriPath].delete.externalDocs.url - if ([string]::IsNullOrEmpty($ExternalDocUrl)) { - #Try with microsoft.graph prefix on the last path segment - $UriPathWithGraphPrefix = Append-GraphPrefix -UriPath $UriPath - $ExternalDocUrl = $path[$UriPathWithGraphPrefix].delete.externalDocs.url - } - } - "PUT" { - $ExternalDocUrl = $Path[$UriPath].put.externalDocs.url - if ([string]::IsNullOrEmpty($ExternalDocUrl)) { - #Try with microsoft.graph prefix on the last path segment - $UriPathWithGraphPrefix = Append-GraphPrefix -UriPath $UriPath - $ExternalDocUrl = $path[$UriPathWithGraphPrefix].put.externalDocs.url - } - } - - } - if (-not([string]::IsNullOrEmpty($ExternalDocUrl))) { - Start-WebScrapping -GraphProfile $GraphProfile -ExternalDocUrl $ExternalDocUrl -Command $Command -GraphProfilePath $GraphProfilePath -UriPath $UriPath -Module $Module - } - else { - # This step will still correct the examples if the external docs url is not found. - $ExampleFile = "$GraphProfilePath/$Command.md" - $boilerPlateCode = Select-String -Path $File -Pattern "Add title here" - if ($boilerPlateCode.Length -eq 0){ - Retain-ExistingCorrectExamples -Content (Get-Content $ExampleFile) -File $ExampleFile -CommandPattern $Command - } - } - } - - } - } - } - } function Append-GraphPrefix { From 68f84a0bf6af40b2ed0fe485cbfe2f155f9dc1d7 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 26 Apr 2024 05:52:23 +0000 Subject: [PATCH 3/3] Updating examples --- .../Confirm-MgBetaApplicationMemberObject.md | 18 --- ...firm-MgBetaServicePrincipalMemberObject.md | 18 --- ...et-MgBetaApplicationAppManagementPolicy.md | 18 --- ...BetaApplicationAppManagementPolicyByRef.md | 18 --- .../Get-MgBetaApplicationConnectorGroup.md | 18 --- ...et-MgBetaApplicationConnectorGroupByRef.md | 18 --- .../Get-MgBetaApplicationCreatedOnBehalfOf.md | 18 --- .../examples/Get-MgBetaApplicationDelta.md | 7 - .../examples/Get-MgBetaApplicationLogo.md | 18 --- .../Get-MgBetaApplicationSynchronization.md | 18 --- ...pplicationSynchronizationTemplateSchema.md | 18 --- ...t-MgBetaOnPremisePublishingProfileAgent.md | 15 +-- ...etaOnPremisePublishingProfileAgentGroup.md | 15 +-- ...PremisePublishingProfileAgentGroupByRef.md | 18 --- ...leAgentGroupPublishedResourceAgentGroup.md | 18 --- ...ntGroupPublishedResourceAgentGroupByRef.md | 18 --- ...BetaOnPremisePublishingProfileConnector.md | 15 +-- ...nPremisePublishingProfileConnectorGroup.md | 15 +-- ...ingProfileConnectorGroupApplicationLogo.md | 18 --- ...sePublishingProfileConnectorGroupMember.md | 7 - ...lishingProfileConnectorGroupMemberByRef.md | 18 --- ...emisePublishingProfileConnectorMemberOf.md | 7 - ...PublishingProfileConnectorMemberOfByRef.md | 18 --- ...emisePublishingProfilePublishedResource.md | 15 +-- ...shingProfilePublishedResourceAgentGroup.md | 18 --- ...ProfilePublishedResourceAgentGroupByRef.md | 18 --- ...Get-MgBetaServicePrincipalCreatedObject.md | 8 +- .../Get-MgBetaServicePrincipalDelta.md | 7 - .../Get-MgBetaServicePrincipalOwnedObject.md | 8 +- .../Confirm-MgApplicationMemberObject.md | 18 --- .../Confirm-MgServicePrincipalMemberObject.md | 18 --- .../Get-MgApplicationCreatedOnBehalfOf.md | 18 --- .../v1.0/examples/Get-MgApplicationDelta.md | 7 - .../v1.0/examples/Get-MgApplicationLogo.md | 18 --- .../examples/Get-MgServicePrincipalDelta.md | 7 - .../examples/New-MgBetaBookingBusiness.md | 22 --- .../New-MgBetaBookingBusinessCalendarView.md | 18 --- .../examples/New-MgBetaBookingCurrency.md | 18 --- .../examples/Remove-MgBetaBookingBusiness.md | 7 - ...emove-MgBetaBookingBusinessCalendarView.md | 18 --- .../examples/Remove-MgBetaBookingCurrency.md | 18 --- .../examples/Update-MgBetaBookingBusiness.md | 17 --- ...pdate-MgBetaBookingBusinessCalendarView.md | 18 --- .../examples/Update-MgBetaBookingCurrency.md | 18 --- .../New-MgBookingBusinessCalendarView.md | 18 --- .../v1.0/examples/New-MgBookingCurrency.md | 18 --- .../Remove-MgBookingBusinessCalendarView.md | 18 --- .../v1.0/examples/Remove-MgBookingCurrency.md | 18 --- .../Update-MgBookingBusinessCalendarView.md | 18 --- .../v1.0/examples/Update-MgBookingCurrency.md | 18 --- .../beta/examples/Get-MgBetaGroupCalendar.md | 18 --- .../v1.0/examples/Get-MgGroupCalendar.md | 18 --- ...cationOnlineMeetingAlternativeRecording.md | 18 --- ...BetaCommunicationOnlineMeetingRecording.md | 18 --- ...aCommunicationOnlineMeetingRegistration.md | 18 --- ...OnlineMeetingRegistrationCustomQuestion.md | 18 --- ...gCommunicationCallContentSharingSession.md | 17 --- .../New-MgCommunicationCallOperation.md | 18 --- ...municationOnlineMeetingAttendanceReport.md | 17 --- ...MeetingAttendanceReportAttendanceRecord.md | 17 --- .../examples/New-MgCommunicationPresence.md | 18 --- ...New-MgUserOnlineMeetingAttendanceReport.md | 17 --- ...MeetingAttendanceReportAttendanceRecord.md | 17 --- ...gCommunicationCallContentSharingSession.md | 17 --- .../Remove-MgCommunicationCallOperation.md | 17 --- ...Remove-MgCommunicationCallRecordSession.md | 18 --- .../Remove-MgCommunicationOnlineMeeting.md | 18 --- ...municationOnlineMeetingAttendanceReport.md | 17 --- ...MeetingAttendanceReportAttendanceRecord.md | 18 --- .../Remove-MgCommunicationPresence.md | 17 --- ...ove-MgUserOnlineMeetingAttendanceReport.md | 17 --- ...MeetingAttendanceReportAttendanceRecord.md | 18 --- ...ommunicationOnlineMeetingAttendeeReport.md | 17 --- .../Set-MgUserOnlineMeetingAttendeeReport.md | 17 --- ...gCommunicationCallContentSharingSession.md | 17 --- .../Update-MgCommunicationCallOperation.md | 17 --- .../Update-MgCommunicationCallParticipant.md | 17 --- ...Update-MgCommunicationCallRecordSession.md | 18 --- .../Update-MgCommunicationOnlineMeeting.md | 18 --- ...municationOnlineMeetingAttendanceReport.md | 17 --- ...MeetingAttendanceReportAttendanceRecord.md | 18 --- .../Update-MgCommunicationPresence.md | 17 --- ...ate-MgUserOnlineMeetingAttendanceReport.md | 17 --- ...MeetingAttendanceReportAttendanceRecord.md | 18 --- ...taComplianceEdiscoveryCaseCustodianHold.md | 18 --- ...discoveryCaseNoncustodialDataSourceHold.md | 18 --- ...mplianceEdiscoveryCaseReviewSetQueryTag.md | 13 +- ...ianceEdiscoveryCaseReviewSetToReviewSet.md | 15 ++- ...ianceEdiscoveryCaseSourceCollectionData.md | 8 +- .../Close-MgBetaComplianceEdiscoveryCase.md | 8 +- ...MgBetaComplianceEdiscoveryCaseReviewSet.md | 17 ++- .../beta/examples/Get-MgBetaCompliance.md | 18 --- .../Get-MgBetaComplianceEdiscovery.md | 18 --- .../Get-MgBetaComplianceEdiscoveryCase.md | 15 +-- ...MgBetaComplianceEdiscoveryCaseCustodian.md | 15 +-- ...lianceEdiscoveryCaseCustodianSiteSource.md | 15 +-- ...ceEdiscoveryCaseCustodianSiteSourceSite.md | 18 --- ...iscoveryCaseCustodianUnifiedGroupSource.md | 15 +-- ...eryCaseCustodianUnifiedGroupSourceGroup.md | 18 --- ...lianceEdiscoveryCaseCustodianUserSource.md | 15 +-- ...MgBetaComplianceEdiscoveryCaseLegalHold.md | 15 +-- ...lianceEdiscoveryCaseLegalHoldSiteSource.md | 8 +- ...ceEdiscoveryCaseLegalHoldSiteSourceSite.md | 18 --- ...eryCaseLegalHoldUnifiedGroupSourceGroup.md | 18 --- ...lianceEdiscoveryCaseLegalHoldUserSource.md | 8 +- ...nceEdiscoveryCaseNoncustodialDataSource.md | 15 +-- ...MgBetaComplianceEdiscoveryCaseReviewSet.md | 15 +-- ...aComplianceEdiscoveryCaseReviewSetQuery.md | 15 +-- ...t-MgBetaComplianceEdiscoveryCaseSetting.md | 15 +-- ...omplianceEdiscoveryCaseSourceCollection.md | 15 +-- ...SourceCollectionAddToReviewSetOperation.md | 8 +- ...eryCaseSourceCollectionAdditionalSource.md | 8 +- ...veryCaseSourceCollectionCustodianSource.md | 8 +- ...llectionLastEstimateStatisticsOperation.md | 8 +- ...yCaseSourceCollectionNoncustodialSource.md | 15 +-- .../Get-MgBetaComplianceEdiscoveryCaseTag.md | 15 +-- ...BetaComplianceEdiscoveryCaseTagChildTag.md | 8 +- ...MgBetaComplianceEdiscoveryCaseTagParent.md | 18 --- ...MgBetaComplianceEdiscoveryCaseCustodian.md | 8 +- ...aAsComplianceEdiscoveryCaseTagHierarchy.md | 7 - ...discoveryCaseSourceCollectionStatistics.md | 8 +- ...ke-MgBetaReopenComplianceEdiscoveryCase.md | 8 +- .../New-MgBetaComplianceEdiscoveryCase.md | 11 +- ...MgBetaComplianceEdiscoveryCaseCustodian.md | 13 +- ...lianceEdiscoveryCaseCustodianSiteSource.md | 13 +- ...iscoveryCaseCustodianUnifiedGroupSource.md | 32 +++-- ...lianceEdiscoveryCaseCustodianUserSource.md | 13 +- ...MgBetaComplianceEdiscoveryCaseLegalHold.md | 21 --- ...lianceEdiscoveryCaseLegalHoldSiteSource.md | 13 +- ...iscoveryCaseLegalHoldUnifiedGroupSource.md | 18 --- ...lianceEdiscoveryCaseLegalHoldUserSource.md | 13 +- ...nceEdiscoveryCaseNoncustodialDataSource.md | 35 +++-- ...MgBetaComplianceEdiscoveryCaseOperation.md | 18 --- ...MgBetaComplianceEdiscoveryCaseReviewSet.md | 11 +- ...aComplianceEdiscoveryCaseReviewSetQuery.md | 13 +- ...omplianceEdiscoveryCaseSourceCollection.md | 19 ++- ...eryCaseSourceCollectionAdditionalSource.md | 31 ----- .../New-MgBetaComplianceEdiscoveryCaseTag.md | 15 ++- ...MgBetaComplianceEdiscoveryCaseCustodian.md | 8 +- ...nceEdiscoveryCaseNoncustodialDataSource.md | 8 +- .../Remove-MgBetaComplianceEdiscovery.md | 18 --- .../Remove-MgBetaComplianceEdiscoveryCase.md | 8 +- ...MgBetaComplianceEdiscoveryCaseCustodian.md | 18 --- ...taComplianceEdiscoveryCaseCustodianHold.md | 18 --- ...lianceEdiscoveryCaseCustodianSiteSource.md | 8 +- ...iscoveryCaseCustodianUnifiedGroupSource.md | 8 +- ...lianceEdiscoveryCaseCustodianUserSource.md | 8 +- ...MgBetaComplianceEdiscoveryCaseLegalHold.md | 8 +- ...lianceEdiscoveryCaseLegalHoldSiteSource.md | 18 --- ...iscoveryCaseLegalHoldUnifiedGroupSource.md | 18 --- ...lianceEdiscoveryCaseLegalHoldUserSource.md | 18 --- ...nceEdiscoveryCaseNoncustodialDataSource.md | 18 --- ...discoveryCaseNoncustodialDataSourceHold.md | 18 --- ...MgBetaComplianceEdiscoveryCaseOperation.md | 18 --- ...MgBetaComplianceEdiscoveryCaseReviewSet.md | 18 --- ...aComplianceEdiscoveryCaseReviewSetQuery.md | 8 +- ...e-MgBetaComplianceEdiscoveryCaseSetting.md | 18 --- ...omplianceEdiscoveryCaseSourceCollection.md | 8 +- ...eryCaseSourceCollectionAdditionalSource.md | 18 --- ...emove-MgBetaComplianceEdiscoveryCaseTag.md | 8 +- ...omplianceEdiscoveryCaseSettingToDefault.md | 8 +- .../beta/examples/Update-MgBetaCompliance.md | 18 --- .../Update-MgBetaComplianceEdiscovery.md | 18 --- .../Update-MgBetaComplianceEdiscoveryCase.md | 15 ++- ...MgBetaComplianceEdiscoveryCaseCustodian.md | 11 +- ...aComplianceEdiscoveryCaseCustodianIndex.md | 18 --- ...lianceEdiscoveryCaseCustodianSiteSource.md | 18 --- ...iscoveryCaseCustodianUnifiedGroupSource.md | 18 --- ...lianceEdiscoveryCaseCustodianUserSource.md | 18 --- ...MgBetaComplianceEdiscoveryCaseLegalHold.md | 11 +- ...lianceEdiscoveryCaseLegalHoldSiteSource.md | 18 --- ...iscoveryCaseLegalHoldUnifiedGroupSource.md | 18 --- ...lianceEdiscoveryCaseLegalHoldUserSource.md | 18 --- ...nceEdiscoveryCaseNoncustodialDataSource.md | 18 --- ...iscoveryCaseNoncustodialDataSourceIndex.md | 18 --- ...MgBetaComplianceEdiscoveryCaseOperation.md | 18 --- ...MgBetaComplianceEdiscoveryCaseReviewSet.md | 18 --- ...aComplianceEdiscoveryCaseReviewSetQuery.md | 11 +- ...e-MgBetaComplianceEdiscoveryCaseSetting.md | 60 +++------ ...omplianceEdiscoveryCaseSourceCollection.md | 11 +- ...eryCaseSourceCollectionAdditionalSource.md | 18 --- ...pdate-MgBetaComplianceEdiscoveryCaseTag.md | 11 +- .../v1.0/examples/Get-MgCompliance.md | 18 --- .../v1.0/examples/Update-MgCompliance.md | 18 --- ...t-MgBetaUserActivityHistoryItemActivity.md | 18 --- ...-MgBetaUserDeviceCommandResponsepayload.md | 18 --- .../examples/Get-MgBetaUserDeviceMemberOf.md | 18 --- .../Get-MgBetaUserDeviceRegisteredOwner.md | 18 --- ...et-MgBetaUserDeviceRegisteredOwnerByRef.md | 18 --- .../Get-MgBetaUserDeviceRegisteredUser.md | 18 --- .../Get-MgBetaUserDeviceTransitiveMemberOf.md | 18 --- .../Get-MgBetaUserDeviceUsageRights.md | 18 --- .../beta/examples/New-MgBetaUserActivity.md | 18 --- .../New-MgBetaUserActivityHistoryItem.md | 18 --- .../beta/examples/New-MgBetaUserDevice.md | 18 --- .../examples/New-MgBetaUserDeviceCommand.md | 18 --- .../examples/New-MgBetaUserDeviceExtension.md | 18 --- ...ew-MgBetaUserDeviceRegisteredOwnerByRef.md | 18 --- .../New-MgBetaUserDeviceUsageRights.md | 18 --- .../Remove-MgBetaUserActivityHistoryItem.md | 18 --- .../beta/examples/Remove-MgBetaUserDevice.md | 18 --- .../Remove-MgBetaUserDeviceCommand.md | 18 --- .../Remove-MgBetaUserDeviceExtension.md | 18 --- ...ve-MgBetaUserDeviceRegisteredOwnerByRef.md | 18 --- .../Remove-MgBetaUserDeviceUsageRights.md | 18 --- .../examples/Update-MgBetaUserActivity.md | 17 --- .../beta/examples/Update-MgBetaUserDevice.md | 18 --- .../Update-MgBetaUserDeviceCommand.md | 18 --- .../Update-MgBetaUserDeviceExtension.md | 18 --- .../Update-MgBetaUserDeviceUsageRights.md | 18 --- .../Get-MgUserActivityHistoryItemActivity.md | 18 --- .../v1.0/examples/New-MgUserActivity.md | 18 --- .../examples/New-MgUserActivityHistoryItem.md | 18 --- .../Remove-MgUserActivityHistoryItem.md | 18 --- .../v1.0/examples/Update-MgUserActivity.md | 17 --- ...olicyUploadedDefinitionFileLanguageFile.md | 18 --- ...ManagedStoreAccountEnterpriseSettingApp.md | 18 --- ...viceManagementZebraFotaConnectorFotaApp.md | 18 --- ...r-MgBetaDeviceManagementComanagedDevice.md | 18 --- ...ear-MgBetaDeviceManagementManagedDevice.md | 18 --- ...ceManagementAndroidForWorkSettingSignup.md | 18 --- ...agedStoreAccountEnterpriseSettingSignup.md | 18 --- ...viceManagementChromeOSOnboardingSetting.md | 18 --- ...gBetaDeviceManagementZebraFotaConnector.md | 18 --- ...taDeviceManagementReusablePolicySetting.md | 18 --- ...e-MgBetaDeviceManagementComanagedDevice.md | 18 --- ...DeviceManagementComanagedDeviceLostMode.md | 18 --- ...ble-MgBetaDeviceManagementManagedDevice.md | 18 --- ...taDeviceManagementManagedDeviceLostMode.md | 18 --- ...agementApplePushNotificationCertificate.md | 18 --- .../Compare-MgBetaDeviceManagementIntent.md | 18 --- .../Compare-MgBetaDeviceManagementTemplate.md | 18 --- ...etaDeviceManagementTemplateMigratableTo.md | 18 --- ...dThreatProtectionOnboardingStateSummary.md | 18 --- ...taDeviceManagementAndroidForWorkSetting.md | 18 --- ...oidManagedStoreAccountEnterpriseSetting.md | 18 --- ...DeviceManagementComanagedDeviceCategory.md | 18 --- ...BetaDeviceManagementComanagedDeviceUser.md | 18 --- .../beta/examples/Get-MgBetaPrint.md | 18 --- .../Get-MgBetaPrintPrinterCapability.md | 7 - ...Get-MgBetaPrintPrinterShareAllowedGroup.md | 18 --- ...gBetaPrintPrinterShareAllowedGroupByRef.md | 18 --- .../Get-MgBetaPrintPrinterShareAllowedUser.md | 18 --- ...MgBetaPrintPrinterShareAllowedUserByRef.md | 18 --- .../Get-MgBetaPrintPrinterSharePrinter.md | 18 --- ...MgBetaPrintPrinterTaskTriggerDefinition.md | 18 --- .../examples/Get-MgBetaPrintSharePrinter.md | 18 --- ...et-MgBetaPrintTaskDefinitionTaskTrigger.md | 18 --- .../beta/examples/New-MgBetaPrintOperation.md | 18 --- .../examples/New-MgBetaPrintPrinterShare.md | 18 --- ...gBetaPrintPrinterShareAllowedGroupByRef.md | 18 --- ...MgBetaPrintPrinterShareAllowedUserByRef.md | 18 --- .../examples/Remove-MgBetaPrintOperation.md | 17 --- .../Remove-MgBetaPrintPrinterShare.md | 18 --- .../examples/Remove-MgBetaPrintService.md | 17 --- .../Remove-MgBetaPrintServiceEndpoint.md | 17 --- .../Remove-MgBetaPrintTaskDefinitionTask.md | 17 --- .../Reset-MgBetaPrintPrinterDefault.md | 18 --- .../beta/examples/Update-MgBetaPrint.md | 18 --- .../examples/Update-MgBetaPrintOperation.md | 17 --- .../Update-MgBetaPrintPrinterShare.md | 18 --- .../Update-MgBetaPrintPrinterTaskTrigger.md | 17 --- .../examples/Update-MgBetaPrintService.md | 17 --- .../Update-MgBetaPrintServiceEndpoint.md | 17 --- .../v1.0/examples/Get-MgPrint.md | 18 --- ...Get-MgPrintPrinterTaskTriggerDefinition.md | 18 --- .../v1.0/examples/Get-MgPrintSharePrinter.md | 18 --- .../Get-MgPrintTaskDefinitionTaskTrigger.md | 18 --- .../v1.0/examples/New-MgPrintOperation.md | 18 --- .../v1.0/examples/Remove-MgPrintOperation.md | 17 --- .../v1.0/examples/Remove-MgPrintService.md | 17 --- .../examples/Remove-MgPrintServiceEndpoint.md | 17 --- .../Remove-MgPrintTaskDefinitionTask.md | 17 --- .../v1.0/examples/Update-MgPrint.md | 18 --- .../v1.0/examples/Update-MgPrintOperation.md | 17 --- .../Update-MgPrintPrinterTaskTrigger.md | 17 --- .../v1.0/examples/Update-MgPrintService.md | 17 --- .../examples/Update-MgPrintServiceEndpoint.md | 17 --- ...AnnouncementHealthOverviewIssueIncident.md | 18 --- ...aReportServiceAnnouncementIssueIncident.md | 7 - ...aServiceAnnouncementHealthOverviewIssue.md | 18 --- ...MgBetaServiceAnnouncementHealthOverview.md | 17 --- ...aServiceAnnouncementHealthOverviewIssue.md | 18 --- .../Remove-MgBetaServiceAnnouncementIssue.md | 17 --- ...Remove-MgBetaServiceAnnouncementMessage.md | 17 --- ...etaServiceAnnouncementMessageAttachment.md | 17 --- ...MgBetaServiceAnnouncementHealthOverview.md | 17 --- ...aServiceAnnouncementHealthOverviewIssue.md | 18 --- .../Update-MgBetaServiceAnnouncementIssue.md | 17 --- ...Update-MgBetaServiceAnnouncementMessage.md | 17 --- ...etaServiceAnnouncementMessageAttachment.md | 17 --- ...AnnouncementHealthOverviewIssueIncident.md | 18 --- ...gReportServiceAnnouncementIssueIncident.md | 7 - ...gServiceAnnouncementHealthOverviewIssue.md | 18 --- ...ove-MgServiceAnnouncementHealthOverview.md | 17 --- ...gServiceAnnouncementHealthOverviewIssue.md | 18 --- .../Remove-MgServiceAnnouncementIssue.md | 17 --- .../Remove-MgServiceAnnouncementMessage.md | 17 --- ...-MgServiceAnnouncementMessageAttachment.md | 17 --- ...ate-MgServiceAnnouncementHealthOverview.md | 17 --- ...gServiceAnnouncementHealthOverviewIssue.md | 18 --- .../Update-MgServiceAnnouncementIssue.md | 17 --- .../Update-MgServiceAnnouncementMessage.md | 17 --- ...-MgServiceAnnouncementMessageAttachment.md | 17 --- ...nfirm-MgBetaDirectoryObjectMemberObject.md | 18 --- .../Get-MgBetaDirectoryObjectMemberObject.md | 15 --- .../examples/New-MgBetaDirectoryObject.md | 18 --- .../Confirm-MgDirectoryObjectMemberObject.md | 18 --- .../v1.0/examples/New-MgDirectoryObject.md | 18 --- .../beta/examples/Get-MgBetaEducationClass.md | 2 +- ...taEducationClassAssignmentCategoryDelta.md | 28 ---- ...Get-MgBetaEducationClassAssignmentDelta.md | 21 --- ...t-MgBetaEducationClassAssignmentSetting.md | 22 +++ .../examples/Get-MgBetaEducationClassDelta.md | 7 - .../examples/Get-MgBetaEducationClassGroup.md | 8 +- .../beta/examples/Get-MgBetaEducationMe.md | 18 --- ...gBetaEducationMeAssignmentCategoryDelta.md | 18 --- .../Get-MgBetaEducationMeAssignmentDelta.md | 18 --- .../beta/examples/Get-MgBetaEducationRoot.md | 18 --- .../examples/Get-MgBetaEducationSchool.md | 2 +- ...MgBetaEducationSchoolAdministrativeUnit.md | 16 +-- .../Get-MgBetaEducationSchoolDelta.md | 7 - ...t-MgBetaEducationSynchronizationProfile.md | 15 +-- ...etaEducationSynchronizationProfileError.md | 8 +- ...taEducationSynchronizationProfileStatus.md | 8 +- .../beta/examples/Get-MgBetaEducationUser.md | 2 +- ...etaEducationUserAssignmentCategoryDelta.md | 18 --- .../Get-MgBetaEducationUserAssignmentDelta.md | 18 --- .../examples/Get-MgBetaEducationUserDelta.md | 7 - ...ploadEducationSynchronizationProfileUrl.md | 7 - .../beta/examples/New-MgBetaEducationClass.md | 39 +++--- .../New-MgBetaEducationClassAssignment.md | 18 +-- ...taEducationClassAssignmentCategoryByRef.md | 15 --- ...-MgBetaEducationClassAssignmentResource.md | 125 ++++++++++-------- ...New-MgBetaEducationMeAssignmentCategory.md | 17 --- ...gBetaEducationMeAssignmentCategoryByRef.md | 17 --- .../examples/New-MgBetaEducationSchool.md | 48 +++---- ...w-MgBetaEducationSynchronizationProfile.md | 18 --- ...etaEducationSynchronizationProfileError.md | 18 --- .../beta/examples/New-MgBetaEducationUser.md | 96 +++++--------- ...w-MgBetaEducationUserAssignmentCategory.md | 17 --- ...etaEducationUserAssignmentCategoryByRef.md | 17 --- ...taEducationClassAssignmentCategoryByRef.md | 11 -- ...e-MgBetaEducationClassAssignmentDefault.md | 17 --- ...e-MgBetaEducationClassAssignmentSetting.md | 17 --- ...gBetaEducationClassAssignmentSubmission.md | 17 --- ...ssAssignmentSubmissionSubmittedResource.md | 18 --- .../beta/examples/Remove-MgBetaEducationMe.md | 18 --- .../Remove-MgBetaEducationMeAssignment.md | 18 --- ...gBetaEducationMeAssignmentCategoryByRef.md | 17 --- ...e-MgBetaEducationMeAssignmentSubmission.md | 17 --- ...MeAssignmentSubmissionSubmittedResource.md | 18 --- ...e-MgBetaEducationSynchronizationProfile.md | 8 +- ...etaEducationSynchronizationProfileError.md | 18 --- ...taEducationSynchronizationProfileStatus.md | 18 --- .../Remove-MgBetaEducationUserAssignment.md | 18 --- ...etaEducationUserAssignmentCategoryByRef.md | 17 --- ...MgBetaEducationUserAssignmentSubmission.md | 17 --- ...erAssignmentSubmissionSubmittedResource.md | 18 --- ...t-MgBetaEducationSynchronizationProfile.md | 8 +- ...e-MgBetaEducationSynchronizationProfile.md | 8 +- ...t-MgBetaEducationSynchronizationProfile.md | 8 +- ...d-MgBetaEducationSynchronizationProfile.md | 8 +- ...-MgBetaEducationClassAssignmentCategory.md | 17 --- ...-MgBetaEducationClassAssignmentResource.md | 17 --- ...e-MgBetaEducationClassAssignmentSetting.md | 33 ----- ...gBetaEducationClassAssignmentSubmission.md | 17 --- ...cationClassAssignmentSubmissionResource.md | 17 --- ...ssAssignmentSubmissionSubmittedResource.md | 18 --- .../beta/examples/Update-MgBetaEducationMe.md | 18 --- .../Update-MgBetaEducationMeAssignment.md | 18 --- ...ate-MgBetaEducationMeAssignmentResource.md | 17 --- ...e-MgBetaEducationMeAssignmentSubmission.md | 17 --- ...EducationMeAssignmentSubmissionResource.md | 17 --- ...MeAssignmentSubmissionSubmittedResource.md | 18 --- .../examples/Update-MgBetaEducationRoot.md | 18 --- ...e-MgBetaEducationSynchronizationProfile.md | 18 --- ...etaEducationSynchronizationProfileError.md | 18 --- ...taEducationSynchronizationProfileStatus.md | 18 --- .../examples/Update-MgBetaEducationUser.md | 20 ++- .../Update-MgBetaEducationUserAssignment.md | 18 --- ...e-MgBetaEducationUserAssignmentResource.md | 17 --- ...MgBetaEducationUserAssignmentSubmission.md | 17 --- ...ucationUserAssignmentSubmissionResource.md | 17 --- ...erAssignmentSubmissionSubmittedResource.md | 18 --- ...MgEducationClassAssignmentCategoryDelta.md | 28 ---- .../Get-MgEducationClassAssignmentDelta.md | 21 --- .../examples/Get-MgEducationClassDelta.md | 7 - .../examples/Get-MgEducationClassGroup.md | 18 --- .../v1.0/examples/Get-MgEducationMe.md | 18 --- ...et-MgEducationMeAssignmentCategoryDelta.md | 18 --- .../Get-MgEducationMeAssignmentDelta.md | 18 --- .../v1.0/examples/Get-MgEducationRoot.md | 18 --- .../examples/Get-MgEducationSchoolDelta.md | 7 - ...-MgEducationUserAssignmentCategoryDelta.md | 18 --- .../Get-MgEducationUserAssignmentDelta.md | 18 --- .../v1.0/examples/Get-MgEducationUserDelta.md | 7 - ...emove-MgEducationClassAssignmentDefault.md | 17 --- ...emove-MgEducationClassAssignmentSetting.md | 17 --- ...ve-MgEducationClassAssignmentSubmission.md | 17 --- ...ssAssignmentSubmissionSubmittedResource.md | 18 --- .../v1.0/examples/Remove-MgEducationMe.md | 18 --- .../Remove-MgEducationMeAssignment.md | 18 --- ...emove-MgEducationMeAssignmentSubmission.md | 17 --- ...MeAssignmentSubmissionSubmittedResource.md | 18 --- .../Remove-MgEducationUserAssignment.md | 18 --- ...ove-MgEducationUserAssignmentSubmission.md | 17 --- ...erAssignmentSubmissionSubmittedResource.md | 18 --- ...date-MgEducationClassAssignmentCategory.md | 17 --- ...date-MgEducationClassAssignmentResource.md | 17 --- ...te-MgEducationClassAssignmentSubmission.md | 17 --- ...cationClassAssignmentSubmissionResource.md | 17 --- ...ssAssignmentSubmissionSubmittedResource.md | 18 --- .../v1.0/examples/Update-MgEducationMe.md | 18 --- .../Update-MgEducationMeAssignment.md | 18 --- .../Update-MgEducationMeAssignmentResource.md | 17 --- ...pdate-MgEducationMeAssignmentSubmission.md | 17 --- ...EducationMeAssignmentSubmissionResource.md | 17 --- ...MeAssignmentSubmissionSubmittedResource.md | 18 --- .../v1.0/examples/Update-MgEducationRoot.md | 18 --- .../Update-MgEducationUserAssignment.md | 18 --- ...pdate-MgEducationUserAssignmentResource.md | 17 --- ...ate-MgEducationUserAssignmentSubmission.md | 17 --- ...ucationUserAssignmentSubmissionResource.md | 17 --- ...erAssignmentSubmissionSubmittedResource.md | 18 --- .../beta/examples/Get-MgBetaDriveActivity.md | 17 +-- .../examples/Get-MgBetaDriveItemActivity.md | 18 --- .../Get-MgBetaDriveItemActivityByInterval.md | 18 --- .../examples/Get-MgBetaDriveItemAnalytic.md | 8 +- .../examples/Get-MgBetaDriveItemContent.md | 18 --- .../beta/examples/Get-MgBetaDriveItemDelta.md | 18 --- .../examples/Get-MgBetaDriveItemListItem.md | 18 --- .../Get-MgBetaDriveItemListItemActivity.md | 18 --- ...BetaDriveItemListItemActivityByInterval.md | 18 --- .../Get-MgBetaDriveItemListItemAnalytic.md | 18 --- .../Get-MgBetaDriveItemListItemDriveItem.md | 18 --- ...MgBetaDriveItemListItemDriveItemContent.md | 18 --- .../Get-MgBetaDriveItemListItemField.md | 17 --- ...Get-MgBetaDriveItemListItemVersionField.md | 18 --- .../beta/examples/Get-MgBetaDriveList.md | 18 --- .../examples/Get-MgBetaDriveListActivity.md | 18 --- .../Get-MgBetaDriveListColumnSourceColumn.md | 18 --- .../Get-MgDriveItemActivityByInterval.md | 18 --- .../v1.0/examples/Get-MgDriveItemAnalytic.md | 18 --- .../v1.0/examples/Get-MgDriveItemContent.md | 18 --- .../v1.0/examples/Get-MgDriveItemDelta.md | 18 --- .../v1.0/examples/Get-MgDriveItemListItem.md | 18 --- ...t-MgDriveItemListItemActivityByInterval.md | 18 --- .../Get-MgDriveItemListItemAnalytic.md | 18 --- .../Get-MgDriveItemListItemDriveItem.md | 18 --- ...Get-MgDriveItemListItemDriveItemContent.md | 18 --- .../examples/Get-MgDriveItemListItemField.md | 17 --- .../Get-MgDriveItemListItemVersionField.md | 18 --- src/Files/v1.0/examples/Get-MgDriveList.md | 18 --- .../Get-MgDriveListColumnSourceColumn.md | 18 --- .../beta/examples/Get-MgBetaFinancial.md | 18 --- ...-MgBetaFinancialCompanyCustomerCurrency.md | 18 --- ...FinancialCompanyCustomerPaymentCustomer.md | 18 --- ...lCompanyCustomerPaymentCustomerCurrency.md | 18 --- ...nyCustomerPaymentCustomerPictureContent.md | 18 --- ...nyCustomerPaymentCustomerShipmentMethod.md | 18 --- ...ialCompanyCustomerPaymentJournalAccount.md | 18 --- ...erPaymentJournalCustomerPaymentCustomer.md | 18 --- ...tJournalCustomerPaymentCustomerCurrency.md | 18 --- ...alCustomerPaymentCustomerPictureContent.md | 18 --- ...alCustomerPaymentCustomerShipmentMethod.md | 18 --- ...omerPaymentJournalCustomerPaymentMethod.md | 18 --- ...stomerPaymentJournalCustomerPaymentTerm.md | 18 --- ...taFinancialCompanyCustomerPaymentMethod.md | 18 --- ...BetaFinancialCompanyCustomerPaymentTerm.md | 18 --- ...aFinancialCompanyCustomerPictureContent.md | 18 --- ...aFinancialCompanyCustomerShipmentMethod.md | 18 --- ...aFinancialCompanyEmployeePictureContent.md | 18 --- ...nancialCompanyGeneralLedgerEntryAccount.md | 18 --- ...gBetaFinancialCompanyInformationPicture.md | 18 --- ...gBetaFinancialCompanyItemPictureContent.md | 18 --- ...et-MgBetaFinancialCompanyJournalAccount.md | 18 --- ...gBetaFinancialCompanyJournalLineAccount.md | 18 --- ...et-MgBetaFinancialCompanyPictureContent.md | 18 --- ...FinancialCompanyPurchaseInvoiceCurrency.md | 18 --- ...ancialCompanyPurchaseInvoiceLineAccount.md | 18 --- ...FinancialCompanyPurchaseInvoiceLineItem.md | 18 --- ...lCompanyPurchaseInvoiceLineItemCategory.md | 18 --- ...nyPurchaseInvoiceLineItemPictureContent.md | 18 --- ...taFinancialCompanyPurchaseInvoiceVendor.md | 18 --- ...ialCompanyPurchaseInvoiceVendorCurrency.md | 18 --- ...mpanyPurchaseInvoiceVendorPaymentMethod.md | 18 --- ...CompanyPurchaseInvoiceVendorPaymentTerm.md | 18 --- ...panyPurchaseInvoiceVendorPictureContent.md | 18 --- ...aFinancialCompanySaleCreditMemoCurrency.md | 18 --- ...aFinancialCompanySaleCreditMemoCustomer.md | 18 --- ...alCompanySaleCreditMemoCustomerCurrency.md | 18 --- ...panySaleCreditMemoCustomerPaymentMethod.md | 18 --- ...ompanySaleCreditMemoCustomerPaymentTerm.md | 18 --- ...anySaleCreditMemoCustomerPictureContent.md | 18 --- ...anySaleCreditMemoCustomerShipmentMethod.md | 18 --- ...nancialCompanySaleCreditMemoLineAccount.md | 18 --- ...aFinancialCompanySaleCreditMemoLineItem.md | 18 --- ...alCompanySaleCreditMemoLineItemCategory.md | 18 --- ...anySaleCreditMemoLineItemPictureContent.md | 18 --- ...nancialCompanySaleCreditMemoPaymentTerm.md | 18 --- ...SaleCreditMemoSaleCreditMemoLineAccount.md | 18 --- ...anySaleCreditMemoSaleCreditMemoLineItem.md | 18 --- ...reditMemoSaleCreditMemoLineItemCategory.md | 18 --- ...emoSaleCreditMemoLineItemPictureContent.md | 18 --- ...BetaFinancialCompanySaleInvoiceCurrency.md | 18 --- ...BetaFinancialCompanySaleInvoiceCustomer.md | 18 --- ...ncialCompanySaleInvoiceCustomerCurrency.md | 18 --- ...CompanySaleInvoiceCustomerPaymentMethod.md | 18 --- ...alCompanySaleInvoiceCustomerPaymentTerm.md | 18 --- ...ompanySaleInvoiceCustomerPictureContent.md | 18 --- ...ompanySaleInvoiceCustomerShipmentMethod.md | 18 --- ...aFinancialCompanySaleInvoiceLineAccount.md | 18 --- ...BetaFinancialCompanySaleInvoiceLineItem.md | 18 --- ...ncialCompanySaleInvoiceLineItemCategory.md | 18 --- ...ompanySaleInvoiceLineItemPictureContent.md | 18 --- ...aFinancialCompanySaleInvoicePaymentTerm.md | 18 --- ...nancialCompanySaleInvoiceShipmentMethod.md | 18 --- ...MgBetaFinancialCompanySaleOrderCurrency.md | 18 --- ...MgBetaFinancialCompanySaleOrderCustomer.md | 18 --- ...nancialCompanySaleOrderCustomerCurrency.md | 18 --- ...alCompanySaleOrderCustomerPaymentMethod.md | 18 --- ...cialCompanySaleOrderCustomerPaymentTerm.md | 18 --- ...lCompanySaleOrderCustomerPictureContent.md | 18 --- ...lCompanySaleOrderCustomerShipmentMethod.md | 18 --- ...etaFinancialCompanySaleOrderLineAccount.md | 18 --- ...MgBetaFinancialCompanySaleOrderLineItem.md | 18 --- ...nancialCompanySaleOrderLineItemCategory.md | 18 --- ...lCompanySaleOrderLineItemPictureContent.md | 18 --- ...etaFinancialCompanySaleOrderPaymentTerm.md | 18 --- ...MgBetaFinancialCompanySaleQuoteCurrency.md | 18 --- ...MgBetaFinancialCompanySaleQuoteCustomer.md | 18 --- ...nancialCompanySaleQuoteCustomerCurrency.md | 18 --- ...alCompanySaleQuoteCustomerPaymentMethod.md | 18 --- ...cialCompanySaleQuoteCustomerPaymentTerm.md | 18 --- ...lCompanySaleQuoteCustomerPictureContent.md | 18 --- ...lCompanySaleQuoteCustomerShipmentMethod.md | 18 --- ...etaFinancialCompanySaleQuoteLineAccount.md | 18 --- ...MgBetaFinancialCompanySaleQuoteLineItem.md | 18 --- ...nancialCompanySaleQuoteLineItemCategory.md | 18 --- ...lCompanySaleQuoteLineItemPictureContent.md | 18 --- ...etaFinancialCompanySaleQuotePaymentTerm.md | 18 --- ...FinancialCompanySaleQuoteShipmentMethod.md | 18 --- ...et-MgBetaFinancialCompanyVendorCurrency.md | 18 --- ...BetaFinancialCompanyVendorPaymentMethod.md | 18 --- ...MgBetaFinancialCompanyVendorPaymentTerm.md | 18 --- ...etaFinancialCompanyVendorPictureContent.md | 18 --- .../Invoke-MgBetaFinancialCompanyJournal.md | 18 --- ...e-MgBetaFinancialCompanyPurchaseInvoice.md | 18 --- .../Add-MgBetaGroupToLifecyclePolicy.md | 18 --- ...firm-MgBetaGroupGrantedPermissionForApp.md | 18 --- .../Confirm-MgBetaGroupMemberObject.md | 18 --- .../Confirm-MgGroupGrantedPermissionForApp.md | 18 --- .../examples/Confirm-MgGroupMemberObject.md | 18 --- ...omplete-MgBetaDirectoryImpactedResource.md | 18 --- .../Complete-MgBetaDirectoryRecommendation.md | 17 +-- ...DirectoryRecommendationImpactedResource.md | 17 +-- ...irm-MgBetaAdministrativeUnitMemberGroup.md | 18 --- ...rm-MgBetaAdministrativeUnitMemberObject.md | 18 --- .../Confirm-MgBetaContactMemberObject.md | 18 --- .../Confirm-MgBetaContractMemberObject.md | 18 --- .../Confirm-MgBetaDeviceMemberObject.md | 18 --- .../examples/Confirm-MgContactMemberObject.md | 18 --- .../Confirm-MgContractMemberObject.md | 18 --- .../examples/Confirm-MgDeviceMemberObject.md | 18 --- ...firm-MgDirectoryDeletedItemMemberObject.md | 18 --- .../Confirm-MgDirectoryRoleMemberObject.md | 18 --- ...irm-MgDirectoryRoleTemplateMemberObject.md | 18 --- .../Confirm-MgOrganizationMemberObject.md | 18 --- .../v1.0/examples/Get-MgContactDelta.md | 7 - .../v1.0/examples/Get-MgDeviceDelta.md | 18 --- .../v1.0/examples/Get-MgDirectory.md | 18 --- .../Get-MgDirectoryAdministrativeUnitDelta.md | 18 --- .../Add-MgBetaAccessReviewDecision.md | 8 +- .../Add-MgBetaAccessReviewInstanceDecision.md | 18 --- ...nceAccessReviewDecisionInstanceDecision.md | 18 --- ...aPrivilegedAccessResourceRoleAssignment.md | 18 --- ...rt-MgBetaPrivilegedAccessRoleAssignment.md | 18 --- .../beta/examples/Get-MgBetaAccessReview.md | 15 +-- .../Get-MgBetaAccessReviewDecision.md | 8 +- .../Get-MgBetaAccessReviewInstanceDecision.md | 18 --- ...et-MgBetaAccessReviewInstanceMyDecision.md | 18 --- .../Get-MgBetaAccessReviewInstanceReviewer.md | 18 --- .../Get-MgBetaAccessReviewMyDecision.md | 8 +- .../Get-MgBetaAccessReviewReviewer.md | 8 +- .../Get-MgBetaBusinessFlowTemplate.md | 8 +- ...lementManagementAccessPackageAssignment.md | 24 +--- ...gementAccessPackageAssignmentAdditional.md | 18 --- ...mentAccessPackageAssignmentResourceRole.md | 15 +-- ...ackageCatalogAccessPackageResourceScope.md | 18 --- ...logCustomAccessPackageWorkflowExtension.md | 15 +-- ...agementAccessPackageResourceEnvironment.md | 15 +-- ...titlementManagementAccessPackageCatalog.md | 18 --- ...titlementManagementAssignmentAdditional.md | 18 --- ...ManagementAssignmentPolicyAccessPackage.md | 18 --- ...lementManagementAssignmentPolicyCatalog.md | 18 --- ...rm-MgBetaInformationProtectionSignature.md | 18 --- ...uthenticationStrengthPolicyByMethodMode.md | 18 --- ...uthenticationStrengthPolicyByMethodMode.md | 18 --- ...BetaIdentityAuthenticationEventListener.md | 17 +-- .../examples/Get-MgBetaIdentityB2CUserFlow.md | 29 ++-- ...BetaIdentityB2CUserFlowIdentityProvider.md | 8 +- ...dentityB2CUserFlowIdentityProviderByRef.md | 18 --- .../Get-MgBetaIdentityB2CUserFlowLanguage.md | 27 ++-- ...aIdentityB2CUserFlowLanguageDefaultPage.md | 8 +- ...IdentityB2CUserFlowLanguageOverridePage.md | 8 +- ...yB2CUserFlowLanguageOverridePageContent.md | 18 --- ...ntityB2CUserFlowUserAttributeAssignment.md | 34 ++--- ...B2CUserFlowUserAttributeAssignmentOrder.md | 7 - ...lowUserAttributeAssignmentUserAttribute.md | 18 --- ...dentityB2XUserFlowIdentityProviderByRef.md | 18 --- ...aIdentityB2XUserFlowLanguageDefaultPage.md | 18 --- ...tyB2XUserFlowLanguageDefaultPageContent.md | 18 --- ...B2XUserFlowUserAttributeAssignmentOrder.md | 18 --- ...lowUserAttributeAssignmentUserAttribute.md | 18 --- ...ConditionalAccessAuthenticationStrength.md | 18 --- ...IdentityContinuouAccessEvaluationPolicy.md | 8 +- ...taIdentityCustomAuthenticationExtension.md | 17 +-- .../examples/Get-MgBetaIdentityUserFlow.md | 15 +-- .../Get-MgBetaInformationProtection.md | 18 --- ...et-MgBetaInformationProtectionBitlocker.md | 18 --- .../Get-MgBetaInformationProtectionPolicy.md | 18 --- ...-MgBetaInformationProtectionPolicyLabel.md | 18 --- ...ationProtectionSensitivityPolicySetting.md | 18 --- .../Get-MgBetaOauth2PermissionGrantDelta.md | 7 - .../Get-MgBetaPolicyAccessReviewPolicy.md | 8 +- ...BetaPolicyB2CAuthenticationMethodPolicy.md | 8 +- ...et-MgBetaPolicyDeviceRegistrationPolicy.md | 8 +- ...taPolicyDirectoryRoleAccessReviewPolicy.md | 18 --- .../Get-MgBetaPolicyExternalIdentityPolicy.md | 8 +- ...MgBetaPolicyFeatureRolloutPolicyApplyTo.md | 18 --- ...dentityB2XUserFlowIdentityProviderByRef.md | 18 --- ...tyB2XUserFlowLanguageDefaultPageContent.md | 7 - ...B2XUserFlowUserAttributeAssignmentOrder.md | 7 - ...lowUserAttributeAssignmentUserAttribute.md | 18 --- .../examples/Get-MgInformationProtection.md | 18 --- .../Get-MgInformationProtectionBitlocker.md | 18 --- .../Get-MgOauth2PermissionGrantDelta.md | 7 - ...Get-MgPolicyFeatureRolloutPolicyApplyTo.md | 18 --- .../Get-MgBetaUserInferenceClassification.md | 18 --- .../Get-MgUserInferenceClassification.md | 18 --- ...t-MgBetaTenantRelationshipManagedTenant.md | 15 +-- ...ManagedTenantAggregatedPolicyCompliance.md | 8 +- ...nantRelationshipManagedTenantAuditEvent.md | 10 +- ...ationshipManagedTenantCloudPcConnection.md | 15 +-- ...tRelationshipManagedTenantCloudPcDevice.md | 15 +-- ...elationshipManagedTenantCloudPcOverview.md | 15 +-- ...edTenantConditionalAccessPolicyCoverage.md | 15 +-- ...TenantCredentialUserRegistrationSummary.md | 15 +-- ...nshipManagedTenantCustomizedInformation.md | 15 +-- ...ionshipManagedTenantDetailedInformation.md | 15 +-- ...viceCompliancePolicySettingStateSummary.md | 15 +-- ...etaTenantRelationshipManagedTenantGroup.md | 15 +-- ...hipManagedTenantManagedDeviceCompliance.md | 15 +-- ...nagedTenantManagedDeviceComplianceTrend.md | 8 +- ...lationshipManagedTenantManagementAction.md | 15 +-- .../Get-MgBetaGroupOnenotePageContent.md | 18 --- .../Get-MgBetaGroupOnenoteResource.md | 18 --- .../Get-MgBetaGroupOnenoteResourceContent.md | 18 --- .../Get-MgBetaGroupOnenoteSectionPage.md | 18 --- .../Get-MgBetaSiteOnenotePageContent.md | 18 --- .../examples/Get-MgBetaSiteOnenoteResource.md | 18 --- .../Get-MgBetaSiteOnenoteResourceContent.md | 18 --- .../Get-MgBetaSiteOnenoteSectionPage.md | 18 --- .../Get-MgBetaUserOnenotePageContent.md | 18 --- .../examples/Get-MgBetaUserOnenoteResource.md | 18 --- .../Get-MgBetaUserOnenoteResourceContent.md | 18 --- .../Get-MgBetaUserOnenoteSectionPage.md | 18 --- .../examples/New-MgBetaGroupOnenotePage.md | 18 --- .../New-MgBetaGroupOnenoteSectionPage.md | 18 --- .../examples/New-MgBetaSiteOnenotePage.md | 18 --- .../New-MgBetaSiteOnenoteSectionPage.md | 18 --- .../examples/New-MgBetaUserOnenotePage.md | 18 --- .../New-MgBetaUserOnenoteSectionPage.md | 18 --- .../Remove-MgBetaGroupOnenoteNotebook.md | 17 --- .../Remove-MgBetaGroupOnenoteSection.md | 17 --- .../Remove-MgBetaGroupOnenoteSectionGroup.md | 17 --- .../Remove-MgBetaSiteOnenoteNotebook.md | 17 --- .../Remove-MgBetaSiteOnenoteSection.md | 17 --- .../Remove-MgBetaSiteOnenoteSectionGroup.md | 17 --- .../Remove-MgBetaUserOnenoteNotebook.md | 17 --- .../Remove-MgBetaUserOnenoteSection.md | 17 --- .../Remove-MgBetaUserOnenoteSectionGroup.md | 17 --- .../Set-MgBetaGroupOnenotePageContent.md | 18 --- .../Set-MgBetaGroupOnenoteResourceContent.md | 18 --- ...et-MgBetaGroupOnenoteSectionPageContent.md | 18 --- .../Set-MgBetaSiteOnenotePageContent.md | 18 --- .../Set-MgBetaSiteOnenoteResourceContent.md | 18 --- ...Set-MgBetaSiteOnenoteSectionPageContent.md | 18 --- .../Set-MgBetaUserOnenotePageContent.md | 18 --- .../Set-MgBetaUserOnenoteResourceContent.md | 18 --- ...Set-MgBetaUserOnenoteSectionPageContent.md | 18 --- .../Update-MgBetaGroupOnenoteNotebook.md | 17 --- .../examples/Update-MgBetaGroupOnenotePage.md | 17 --- .../Update-MgBetaGroupOnenoteSection.md | 17 --- .../Update-MgBetaGroupOnenoteSectionGroup.md | 17 --- .../Update-MgBetaSiteOnenoteNotebook.md | 17 --- .../examples/Update-MgBetaSiteOnenotePage.md | 17 --- .../Update-MgBetaSiteOnenoteSection.md | 17 --- .../Update-MgBetaSiteOnenoteSectionGroup.md | 17 --- .../Update-MgBetaUserOnenoteNotebook.md | 17 --- .../examples/Update-MgBetaUserOnenotePage.md | 17 --- .../Update-MgBetaUserOnenoteSection.md | 17 --- .../Update-MgBetaUserOnenoteSectionGroup.md | 17 --- .../examples/Get-MgGroupOnenoteResource.md | 18 --- .../Get-MgGroupOnenoteResourceContent.md | 18 --- .../examples/Get-MgSiteOnenoteResource.md | 18 --- .../Get-MgSiteOnenoteResourceContent.md | 18 --- .../examples/Get-MgUserOnenoteResource.md | 18 --- .../Get-MgUserOnenoteResourceContent.md | 18 --- .../examples/Remove-MgGroupOnenoteNotebook.md | 17 --- .../examples/Remove-MgGroupOnenoteSection.md | 17 --- .../Remove-MgGroupOnenoteSectionGroup.md | 17 --- .../examples/Remove-MgSiteOnenoteNotebook.md | 17 --- .../examples/Remove-MgSiteOnenoteSection.md | 17 --- .../Remove-MgSiteOnenoteSectionGroup.md | 17 --- .../examples/Remove-MgUserOnenoteNotebook.md | 17 --- .../examples/Remove-MgUserOnenoteSection.md | 17 --- .../Remove-MgUserOnenoteSectionGroup.md | 17 --- .../examples/Set-MgGroupOnenotePageContent.md | 18 --- .../Set-MgGroupOnenoteResourceContent.md | 18 --- .../Set-MgGroupOnenoteSectionPageContent.md | 18 --- .../examples/Set-MgSiteOnenotePageContent.md | 18 --- .../Set-MgSiteOnenoteResourceContent.md | 18 --- .../Set-MgSiteOnenoteSectionPageContent.md | 18 --- .../examples/Set-MgUserOnenotePageContent.md | 18 --- .../Set-MgUserOnenoteResourceContent.md | 18 --- .../Set-MgUserOnenoteSectionPageContent.md | 18 --- .../examples/Update-MgGroupOnenoteNotebook.md | 17 --- .../examples/Update-MgGroupOnenotePage.md | 17 --- .../examples/Update-MgGroupOnenoteSection.md | 17 --- .../Update-MgGroupOnenoteSectionGroup.md | 17 --- .../examples/Update-MgSiteOnenoteNotebook.md | 17 --- .../v1.0/examples/Update-MgSiteOnenotePage.md | 17 --- .../examples/Update-MgSiteOnenoteSection.md | 17 --- .../Update-MgSiteOnenoteSectionGroup.md | 17 --- .../examples/Update-MgUserOnenoteNotebook.md | 17 --- .../v1.0/examples/Update-MgUserOnenotePage.md | 17 --- .../examples/Update-MgUserOnenoteSection.md | 17 --- .../Update-MgUserOnenoteSectionGroup.md | 17 --- .../beta/examples/Get-MgBetaUserProfile.md | 20 ++- .../examples/Get-MgBetaUserProfileAccount.md | 16 +-- .../examples/Get-MgBetaUserProfileAddress.md | 16 +-- .../Get-MgBetaUserProfileAnniversary.md | 16 +-- .../examples/Get-MgBetaUserProfileAward.md | 16 +-- .../Get-MgBetaUserProfileCertification.md | 16 +-- ...et-MgBetaUserProfileEducationalActivity.md | 16 +-- .../examples/Get-MgBetaUserProfileEmail.md | 15 +-- .../examples/Get-MgBetaUserProfileInterest.md | 16 +-- .../examples/Get-MgBetaUserProfileLanguage.md | 16 +-- .../examples/Get-MgBetaUserProfileName.md | 16 +-- .../examples/Get-MgBetaUserProfileNote.md | 16 +-- .../examples/Get-MgBetaUserProfilePatent.md | 16 +-- .../examples/Get-MgBetaUserProfilePhone.md | 16 +-- .../examples/Get-MgBetaUserProfilePosition.md | 16 +-- .../examples/Get-MgBetaUserProfileProject.md | 16 +-- .../Get-MgBetaUserProfilePublication.md | 16 +-- .../examples/Get-MgBetaUserProfileSkill.md | 16 +-- .../Get-MgBetaUserProfileWebAccount.md | 16 +-- .../examples/Get-MgBetaUserProfileWebsite.md | 16 +-- .../examples/New-MgBetaUserProfileAccount.md | 13 +- .../examples/New-MgBetaUserProfileAddress.md | 27 ++-- .../New-MgBetaUserProfileAnniversary.md | 13 +- .../examples/New-MgBetaUserProfileAward.md | 21 +-- .../New-MgBetaUserProfileCertification.md | 19 ++- ...ew-MgBetaUserProfileEducationalActivity.md | 59 +++++---- .../examples/New-MgBetaUserProfileEmail.md | 11 +- .../examples/New-MgBetaUserProfileInterest.md | 21 +-- .../examples/New-MgBetaUserProfileLanguage.md | 19 ++- .../examples/New-MgBetaUserProfileName.md | 21 +-- .../examples/New-MgBetaUserProfileNote.md | 17 ++- .../examples/New-MgBetaUserProfilePatent.md | 19 ++- .../examples/New-MgBetaUserProfilePhone.md | 13 +- .../examples/New-MgBetaUserProfilePosition.md | 39 +++--- .../examples/New-MgBetaUserProfileProject.md | 47 ++++--- .../New-MgBetaUserProfilePublication.md | 21 +-- .../examples/New-MgBetaUserProfileSkill.md | 27 ++-- .../New-MgBetaUserProfileWebAccount.md | 19 ++- .../examples/New-MgBetaUserProfileWebsite.md | 19 ++- .../beta/examples/Remove-MgBetaUserProfile.md | 8 +- .../Remove-MgBetaUserProfileAccount.md | 8 +- .../Remove-MgBetaUserProfileAddress.md | 8 +- .../Remove-MgBetaUserProfileAnniversary.md | 8 +- .../examples/Remove-MgBetaUserProfileAward.md | 8 +- .../Remove-MgBetaUserProfileCertification.md | 8 +- ...ve-MgBetaUserProfileEducationalActivity.md | 8 +- .../examples/Remove-MgBetaUserProfileEmail.md | 8 +- .../Remove-MgBetaUserProfileInterest.md | 8 +- .../Remove-MgBetaUserProfileLanguage.md | 8 +- .../examples/Remove-MgBetaUserProfileName.md | 8 +- .../examples/Remove-MgBetaUserProfileNote.md | 8 +- .../Remove-MgBetaUserProfilePatent.md | 8 +- .../examples/Remove-MgBetaUserProfilePhone.md | 8 +- .../Remove-MgBetaUserProfilePosition.md | 8 +- .../Remove-MgBetaUserProfileProject.md | 8 +- .../Remove-MgBetaUserProfilePublication.md | 8 +- .../examples/Remove-MgBetaUserProfileSkill.md | 8 +- .../Remove-MgBetaUserProfileWebAccount.md | 8 +- .../Remove-MgBetaUserProfileWebsite.md | 8 +- .../beta/examples/Update-MgBetaUserProfile.md | 18 --- .../Update-MgBetaUserProfileAccount.md | 11 +- .../Update-MgBetaUserProfileAddress.md | 13 +- .../Update-MgBetaUserProfileAnniversary.md | 11 +- .../examples/Update-MgBetaUserProfileAward.md | 13 +- .../Update-MgBetaUserProfileCertification.md | 13 +- ...te-MgBetaUserProfileEducationalActivity.md | 27 ++-- .../examples/Update-MgBetaUserProfileEmail.md | 13 +- .../Update-MgBetaUserProfileInterest.md | 15 ++- .../Update-MgBetaUserProfileLanguage.md | 11 +- .../examples/Update-MgBetaUserProfileName.md | 11 +- .../examples/Update-MgBetaUserProfileNote.md | 11 +- .../Update-MgBetaUserProfilePatent.md | 13 +- .../examples/Update-MgBetaUserProfilePhone.md | 11 +- .../Update-MgBetaUserProfilePosition.md | 11 +- .../Update-MgBetaUserProfileProject.md | 17 ++- .../Update-MgBetaUserProfilePublication.md | 13 +- .../examples/Update-MgBetaUserProfileSkill.md | 17 ++- .../Update-MgBetaUserProfileWebAccount.md | 11 +- .../Update-MgBetaUserProfileWebsite.md | 11 +- .../Get-MgUserLastSharedMethodInsight.md | 18 --- .../Get-MgUserSharedResourceInsight.md | 18 --- .../Get-MgUserTrendingResourceInsight.md | 18 --- .../examples/Get-MgUserUsedResourceInsight.md | 18 --- .../beta/examples/Get-MgBetaGroupPlanner.md | 18 --- .../beta/examples/Get-MgBetaPlanner.md | 18 --- .../beta/examples/Get-MgBetaPlannerRoster.md | 8 +- .../examples/Get-MgBetaPlannerRosterMember.md | 15 +-- .../examples/Get-MgBetaPlannerRosterPlan.md | 8 +- .../beta/examples/Get-MgBetaUserPlanner.md | 8 +- .../Get-MgBetaUserPlannerFavoritePlan.md | 8 +- .../Get-MgBetaUserPlannerRecentPlan.md | 8 +- .../Get-MgBetaUserPlannerRosterPlan.md | 8 +- .../beta/examples/New-MgBetaPlannerRoster.md | 9 +- .../examples/New-MgBetaPlannerRosterMember.md | 11 +- .../Remove-MgBetaGroupPlannerPlanDetail.md | 17 --- .../examples/Remove-MgBetaPlannerRoster.md | 8 +- .../Remove-MgBetaPlannerRosterMember.md | 8 +- .../examples/Update-MgBetaGroupPlanner.md | 18 --- .../beta/examples/Update-MgBetaPlanner.md | 18 --- .../examples/Update-MgBetaPlannerRoster.md | 18 --- .../Update-MgBetaPlannerRosterMember.md | 18 --- .../beta/examples/Update-MgBetaUserPlanner.md | 28 ++-- .../v1.0/examples/Get-MgGroupPlanner.md | 18 --- src/Planner/v1.0/examples/Get-MgPlanner.md | 7 - .../v1.0/examples/Get-MgUserPlanner.md | 18 --- .../v1.0/examples/New-MgPlannerPlan.md | 2 +- .../Remove-MgGroupPlannerPlanDetail.md | 17 --- .../v1.0/examples/Update-MgGroupPlanner.md | 18 --- src/Planner/v1.0/examples/Update-MgPlanner.md | 18 --- .../v1.0/examples/Update-MgUserPlanner.md | 18 --- ...Confirm-MgBetaAuditLogSignInCompromised.md | 19 ++- .../Confirm-MgBetaAuditLogSignInSafe.md | 19 ++- .../Get-MgBetaDeviceManagementReport.md | 18 --- ...aReportApplicationSignInDetailedSummary.md | 15 +-- ...etaReportAttackSimulationRepeatOffender.md | 7 - ...ortAttackSimulationTrainingUserCoverage.md | 7 - ...gBetaReportAttackSimulationUserCoverage.md | 7 - .../Get-MgBetaReportAuthenticationMethod.md | 18 --- ...taReportAzureAdApplicationSignInSummary.md | 18 --- ...gBetaReportBrowserDistributionUserCount.md | 18 --- .../Get-MgBetaReportBrowserUserCount.md | 18 --- .../Get-MgBetaReportBrowserUserDetail.md | 18 --- .../Get-MgBetaReportCredentialUsageSummary.md | 18 --- ...taReportCredentialUserRegistrationCount.md | 8 +- ...aReportCredentialUserRegistrationDetail.md | 8 +- ...ReportDeviceConfigurationDeviceActivity.md | 18 --- ...taReportDeviceConfigurationUserActivity.md | 18 --- .../Get-MgBetaReportEmailActivityCount.md | 18 --- .../Get-MgBetaReportEmailActivityUserCount.md | 18 --- ...Get-MgBetaReportEmailActivityUserDetail.md | 18 --- ...t-MgBetaReportEmailAppUsageAppUserCount.md | 18 --- .../Get-MgBetaReportEmailAppUsageUserCount.md | 18 --- ...Get-MgBetaReportEmailAppUsageUserDetail.md | 18 --- ...BetaReportEmailAppUsageVersionUserCount.md | 18 --- .../Get-MgBetaReportGroupArchivedPrintJob.md | 18 --- ...et-MgBetaReportM365AppPlatformUserCount.md | 18 --- .../Get-MgBetaReportM365AppUserCount.md | 18 --- .../Get-MgBetaReportM365AppUserDetail.md | 18 --- .../Get-MgBetaReportMailboxUsageDetail.md | 18 --- ...et-MgBetaReportMailboxUsageMailboxCount.md | 18 --- ...portMailboxUsageQuotaStatusMailboxCount.md | 18 --- .../Get-MgBetaReportMailboxUsageStorage.md | 18 --- ...anagedDeviceEnrollmentAbandonmentDetail.md | 18 --- ...nagedDeviceEnrollmentAbandonmentSummary.md | 18 --- ...ortManagedDeviceEnrollmentFailureDetail.md | 18 --- ...portManagedDeviceEnrollmentFailureTrend.md | 18 --- ...ReportDeviceConfigurationDeviceActivity.md | 18 --- ...MgReportDeviceConfigurationUserActivity.md | 18 --- .../Get-MgReportEmailActivityCount.md | 18 --- .../Get-MgReportEmailActivityUserCount.md | 18 --- .../Get-MgReportEmailActivityUserDetail.md | 18 --- .../Get-MgReportEmailAppUsageAppUserCount.md | 18 --- .../Get-MgReportEmailAppUsageUserCount.md | 18 --- .../Get-MgReportEmailAppUsageUserDetail.md | 18 --- ...t-MgReportEmailAppUsageVersionUserCount.md | 18 --- .../Get-MgReportGroupArchivedPrintJob.md | 18 --- .../Get-MgReportM365AppPlatformUserCount.md | 18 --- .../examples/Get-MgReportM365AppUserCount.md | 18 --- .../examples/Get-MgReportM365AppUserDetail.md | 18 --- .../Get-MgReportMailboxUsageDetail.md | 18 --- .../Get-MgReportMailboxUsageMailboxCount.md | 18 --- ...portMailboxUsageQuotaStatusMailboxCount.md | 18 --- .../Get-MgReportMailboxUsageStorage.md | 18 --- ...ortManagedDeviceEnrollmentFailureDetail.md | 18 --- ...dd-MgBetaExternalConnectionItemActivity.md | 18 --- .../beta/examples/Get-MgBetaExternal.md | 18 --- ...ternalConnectionItemActivityPerformedBy.md | 18 --- .../Get-MgBetaExternalConnectionQuota.md | 15 +-- .../beta/examples/Get-MgBetaSearchEntity.md | 18 --- .../New-MgBetaExternalConnectionItem.md | 18 --- ...ew-MgBetaExternalConnectionItemActivity.md | 18 --- .../New-MgBetaExternalConnectionOperation.md | 18 --- ...ve-MgBetaExternalConnectionItemActivity.md | 18 --- ...emove-MgBetaExternalConnectionOperation.md | 17 --- .../Remove-MgBetaExternalConnectionQuota.md | 18 --- src/Search/v1.0/examples/Get-MgExternal.md | 18 --- .../v1.0/examples/Get-MgSearchEntity.md | 18 --- .../examples/New-MgExternalConnectionItem.md | 18 --- .../New-MgExternalConnectionOperation.md | 18 --- .../Remove-MgExternalConnectionOperation.md | 17 --- ...SecurityCaseEdiscoveryCaseCustodianHold.md | 15 +-- ...discoveryCaseNoncustodialDataSourceHold.md | 15 +-- ...rityCaseEdiscoveryCaseReviewSetQueryTag.md | 13 +- ...yCaseEdiscoveryCaseReviewSetToReviewSet.md | 15 ++- ...etaSecurityCaseEdiscoveryCaseSearchData.md | 13 +- .../Close-MgBetaSecurityCaseEdiscoveryCase.md | 8 +- ...BetaSecurityCaseEdiscoveryCaseReviewSet.md | 17 ++- ...ecurityCaseEdiscoveryCaseReviewSetQuery.md | 17 ++- .../beta/examples/Get-MgBetaSecurityAction.md | 15 +-- .../beta/examples/Get-MgBetaSecurityCase.md | 18 --- ...seEdiscoveryCaseCustodianSiteSourceSite.md | 18 --- ...eryCaseCustodianUnifiedGroupSourceGroup.md | 18 --- ...BetaSecurityCaseEdiscoveryCaseLegalHold.md | 15 +-- ...seEdiscoveryCaseLegalHoldSiteSourceSite.md | 18 --- ...oncustodialDataSourceLastIndexOperation.md | 18 --- ...SecurityCaseEdiscoveryCaseReviewSetFile.md | 15 +-- ...yCaseEdiscoveryCaseReviewSetFileContent.md | 18 --- ...aseEdiscoveryCaseReviewSetFileCustodian.md | 18 --- ...ryCaseReviewSetFileExtractedTextContent.md | 18 --- ...coveryCaseSearchAddToReviewSetOperation.md | 18 --- ...BetaSecurityCaseEdiscoveryCaseTagParent.md | 18 --- ...Get-MgBetaSecurityInformationProtection.md | 18 --- ...InformationProtectionLabelPolicySetting.md | 18 --- ...tyInformationProtectionSensitivityLabel.md | 18 --- ...rmationProtectionSensitivityLabelParent.md | 18 --- .../beta/examples/Get-MgBetaSecurityLabel.md | 18 --- ...t-MgBetaSecurityLabelRetentionEventType.md | 18 --- .../examples/Get-MgBetaSecuritySecureScore.md | 6 +- ...MgBetaSecuritySecureScoreControlProfile.md | 6 +- ...ritySubjectRightsRequestFinalAttachment.md | 18 --- ...SecuritySubjectRightsRequestFinalReport.md | 18 --- ...-MgBetaSecuritySubjectRightsRequestTeam.md | 18 --- .../Get-MgBetaSecurityThreatSubmission.md | 18 --- ...BetaSecurityThreatSubmissionEmailThreat.md | 15 +-- ...atSubmissionEmailThreatSubmissionPolicy.md | 15 +-- ...gBetaSecurityThreatSubmissionFileThreat.md | 15 +-- ...MgBetaSecurityThreatSubmissionUrlThreat.md | 15 +-- .../examples/Get-MgBetaSecurityTiIndicator.md | 15 +-- .../examples/Get-MgBetaSecurityTrigger.md | 18 --- ...MgBetaSecurityTriggerRetentionEventType.md | 18 --- .../examples/Get-MgBetaSecurityTriggerType.md | 18 --- ...BetaSecurityCaseEdiscoveryCaseCustodian.md | 8 +- ...sSecurityCaseEdiscoveryCaseTagHierarchy.md | 7 - ...urityCaseEdiscoveryCaseSearchStatistics.md | 8 +- ...nProtectionSensitivityLabelContentLabel.md | 18 --- ...-MgBetaReopenSecurityCaseEdiscoveryCase.md | 8 +- .../beta/examples/New-MgBetaSecurityAction.md | 25 ++-- ...gBetaSecurityAttackSimulationAutomation.md | 17 --- ...taSecurityAttackSimulationAutomationRun.md | 17 --- ...BetaSecurityCaseEdiscoveryCaseLegalHold.md | 23 ++-- ...tyCaseEdiscoveryCaseLegalHoldSiteSource.md | 25 ++-- ...tyCaseEdiscoveryCaseLegalHoldUserSource.md | 24 ++-- ...BetaSecurityCaseEdiscoveryCaseOperation.md | 17 --- ...SecurityCaseEdiscoveryCaseReviewSetFile.md | 18 --- ...w-MgBetaSecurityCloudAppSecurityProfile.md | 18 --- ...New-MgBetaSecurityDomainSecurityProfile.md | 18 --- .../New-MgBetaSecurityFileSecurityProfile.md | 18 --- .../New-MgBetaSecurityHostSecurityProfile.md | 18 --- .../New-MgBetaSecurityIPSecurityProfile.md | 18 --- .../examples/New-MgBetaSecurityIncident.md | 17 --- ...tyInformationProtectionSensitivityLabel.md | 18 --- ...belRetentionLabelDispositionReviewStage.md | 18 --- ...New-MgBetaSecurityProviderTenantSetting.md | 18 --- .../New-MgBetaSecuritySubjectRightsRequest.md | 18 --- ...BetaSecurityThreatSubmissionEmailThreat.md | 17 ++- ...atSubmissionEmailThreatSubmissionPolicy.md | 10 -- ...gBetaSecurityThreatSubmissionFileThreat.md | 18 --- ...MgBetaSecurityThreatSubmissionUrlThreat.md | 13 +- .../examples/New-MgBetaSecurityTiIndicator.md | 39 +++--- ...New-MgBetaSecurityTriggerRetentionEvent.md | 2 +- .../New-MgBetaSecurityUserSecurityProfile.md | 18 --- ...BetaSecurityCaseEdiscoveryCaseCustodian.md | 8 +- ...aseEdiscoveryCaseNoncustodialDataSource.md | 8 +- .../examples/Remove-MgBetaSecurityAction.md | 18 --- .../Remove-MgBetaSecurityAttackSimulation.md | 18 --- ...gBetaSecurityAttackSimulationAutomation.md | 17 --- ...taSecurityAttackSimulationAutomationRun.md | 18 --- .../examples/Remove-MgBetaSecurityCase.md | 18 --- ...BetaSecurityCaseEdiscoveryCaseCustodian.md | 17 --- ...SecurityCaseEdiscoveryCaseCustodianHold.md | 8 +- ...tyCaseEdiscoveryCaseCustodianSiteSource.md | 18 --- ...iscoveryCaseCustodianUnifiedGroupSource.md | 18 --- ...tyCaseEdiscoveryCaseCustodianUserSource.md | 18 --- ...BetaSecurityCaseEdiscoveryCaseLegalHold.md | 7 - ...tyCaseEdiscoveryCaseLegalHoldSiteSource.md | 18 --- ...tyCaseEdiscoveryCaseLegalHoldUserSource.md | 18 --- ...aseEdiscoveryCaseNoncustodialDataSource.md | 18 --- ...discoveryCaseNoncustodialDataSourceHold.md | 15 +-- ...BetaSecurityCaseEdiscoveryCaseOperation.md | 17 --- ...BetaSecurityCaseEdiscoveryCaseReviewSet.md | 17 --- ...SecurityCaseEdiscoveryCaseReviewSetFile.md | 18 --- ...aseEdiscoveryCaseSearchAdditionalSource.md | 18 --- ...MgBetaSecurityCaseEdiscoveryCaseSetting.md | 17 --- ...e-MgBetaSecurityCloudAppSecurityProfile.md | 18 --- ...ove-MgBetaSecurityDomainSecurityProfile.md | 18 --- ...emove-MgBetaSecurityFileSecurityProfile.md | 18 --- ...emove-MgBetaSecurityHostSecurityProfile.md | 18 --- .../Remove-MgBetaSecurityIPSecurityProfile.md | 18 --- .../examples/Remove-MgBetaSecurityIncident.md | 17 --- ...ove-MgBetaSecurityInformationProtection.md | 18 --- ...InformationProtectionLabelPolicySetting.md | 18 --- ...tyInformationProtectionSensitivityLabel.md | 18 --- ...rmationProtectionSensitivityLabelParent.md | 18 --- .../examples/Remove-MgBetaSecurityLabel.md | 18 --- ...belRetentionLabelDispositionReviewStage.md | 18 --- ...ove-MgBetaSecurityProviderTenantSetting.md | 18 --- .../Remove-MgBetaSecuritySecureScore.md | 17 --- ...MgBetaSecuritySecureScoreControlProfile.md | 17 --- ...move-MgBetaSecuritySubjectRightsRequest.md | 18 --- ...-MgBetaSecuritySubjectRightsRequestNote.md | 18 --- .../Remove-MgBetaSecurityThreatSubmission.md | 18 --- ...BetaSecurityThreatSubmissionEmailThreat.md | 18 --- ...atSubmissionEmailThreatSubmissionPolicy.md | 18 --- ...gBetaSecurityThreatSubmissionFileThreat.md | 18 --- ...MgBetaSecurityThreatSubmissionUrlThreat.md | 18 --- .../Remove-MgBetaSecurityTiIndicator.md | 8 +- ...e-MgBetaSecurityTiIndicatorByExternalId.md | 17 ++- ...emove-MgBetaSecurityTiIndicatorMultiple.md | 17 ++- .../examples/Remove-MgBetaSecurityTrigger.md | 18 --- .../Remove-MgBetaSecurityTriggerType.md | 18 --- ...emove-MgBetaSecurityUserSecurityProfile.md | 18 --- ...urityCaseEdiscoveryCaseSettingToDefault.md | 15 +-- ...yCaseEdiscoveryCaseReviewSetFileContent.md | 18 --- ...ryCaseReviewSetFileExtractedTextContent.md | 18 --- ...ecurityCaseEdiscoveryCaseReviewSetQuery.md | 7 - .../Start-MgBetaSecurityHuntingQuery.md | 18 --- .../examples/Stop-MgBetaSecurityAction.md | 8 +- .../Submit-MgBetaSecurityTiIndicator.md | 67 +++++----- ...onProtectionSensitivityLabelApplication.md | 18 --- ...ionSensitivityLabelClassificationResult.md | 18 --- ...mationProtectionSensitivityLabelRemoval.md | 18 --- .../examples/Update-MgBetaSecurityAction.md | 18 --- .../Update-MgBetaSecurityAlertMultiple.md | 49 ++++--- ...gBetaSecurityAttackSimulationAutomation.md | 17 --- ...taSecurityAttackSimulationAutomationRun.md | 18 --- .../examples/Update-MgBetaSecurityCase.md | 18 --- ...BetaSecurityCaseEdiscoveryCaseCustodian.md | 17 --- ...ecurityCaseEdiscoveryCaseCustodianIndex.md | 8 +- ...tyCaseEdiscoveryCaseCustodianSiteSource.md | 18 --- ...iscoveryCaseCustodianUnifiedGroupSource.md | 18 --- ...tyCaseEdiscoveryCaseCustodianUserSource.md | 18 --- ...BetaSecurityCaseEdiscoveryCaseLegalHold.md | 18 --- ...tyCaseEdiscoveryCaseLegalHoldSiteSource.md | 18 --- ...tyCaseEdiscoveryCaseLegalHoldUserSource.md | 18 --- ...aseEdiscoveryCaseNoncustodialDataSource.md | 18 --- ...iscoveryCaseNoncustodialDataSourceIndex.md | 8 +- ...BetaSecurityCaseEdiscoveryCaseOperation.md | 17 --- ...BetaSecurityCaseEdiscoveryCaseReviewSet.md | 17 --- ...SecurityCaseEdiscoveryCaseReviewSetFile.md | 18 --- ...aseEdiscoveryCaseSearchAdditionalSource.md | 18 --- ...e-MgBetaSecurityCloudAppSecurityProfile.md | 18 --- ...ate-MgBetaSecurityDomainSecurityProfile.md | 18 --- ...pdate-MgBetaSecurityFileSecurityProfile.md | 18 --- ...pdate-MgBetaSecurityHostSecurityProfile.md | 18 --- .../Update-MgBetaSecurityIPSecurityProfile.md | 18 --- ...ate-MgBetaSecurityInformationProtection.md | 18 --- ...InformationProtectionLabelPolicySetting.md | 18 --- ...tyInformationProtectionSensitivityLabel.md | 18 --- ...rmationProtectionSensitivityLabelParent.md | 18 --- .../examples/Update-MgBetaSecurityLabel.md | 18 --- ...pdate-MgBetaSecurityLabelRetentionLabel.md | 7 +- ...belRetentionLabelDispositionReviewStage.md | 18 --- ...ate-MgBetaSecurityProviderTenantSetting.md | 18 --- .../Update-MgBetaSecuritySecureScore.md | 17 --- ...MgBetaSecuritySecureScoreControlProfile.md | 37 +----- ...date-MgBetaSecuritySubjectRightsRequest.md | 18 --- ...-MgBetaSecuritySubjectRightsRequestNote.md | 18 --- .../Update-MgBetaSecurityThreatSubmission.md | 18 --- ...BetaSecurityThreatSubmissionEmailThreat.md | 18 --- ...atSubmissionEmailThreatSubmissionPolicy.md | 10 -- ...gBetaSecurityThreatSubmissionFileThreat.md | 18 --- ...MgBetaSecurityThreatSubmissionUrlThreat.md | 18 --- .../Update-MgBetaSecurityTiIndicator.md | 30 +++-- ...pdate-MgBetaSecurityTiIndicatorMultiple.md | 19 ++- .../examples/Update-MgBetaSecurityTrigger.md | 18 --- ...ate-MgBetaSecurityTriggerRetentionEvent.md | 18 --- .../Update-MgBetaSecurityTriggerType.md | 18 --- ...taSecurityTriggerTypeRetentionEventType.md | 18 --- ...pdate-MgBetaSecurityUserSecurityProfile.md | 18 --- ...SecurityCaseEdiscoveryCaseCustodianHold.md | 15 +-- ...discoveryCaseNoncustodialDataSourceHold.md | 15 +-- ...rityCaseEdiscoveryCaseReviewSetQueryTag.md | 13 +- ...yCaseEdiscoveryCaseReviewSetToReviewSet.md | 15 ++- .../Close-MgSecurityCaseEdiscoveryCase.md | 8 +- .../v1.0/examples/Get-MgSecurityCase.md | 18 --- ...seEdiscoveryCaseCustodianSiteSourceSite.md | 18 --- ...eryCaseCustodianUnifiedGroupSourceGroup.md | 18 --- ...oncustodialDataSourceLastIndexOperation.md | 18 --- ...coveryCaseSearchAddToReviewSetOperation.md | 18 --- ...t-MgSecurityCaseEdiscoveryCaseTagParent.md | 18 --- ...e-MgSecurityCaseEdiscoveryCaseCustodian.md | 8 +- ...sSecurityCaseEdiscoveryCaseTagHierarchy.md | 7 - ...urityCaseEdiscoveryCaseSearchStatistics.md | 8 +- ...voke-MgReopenSecurityCaseEdiscoveryCase.md | 8 +- ...ew-MgSecurityAttackSimulationAutomation.md | 17 --- ...MgSecurityAttackSimulationAutomationRun.md | 17 --- ...w-MgSecurityCaseEdiscoveryCaseOperation.md | 17 --- ...h-MgSecurityCaseEdiscoveryCaseCustodian.md | 8 +- ...aseEdiscoveryCaseNoncustodialDataSource.md | 8 +- .../Remove-MgSecurityAttackSimulation.md | 18 --- ...ve-MgSecurityAttackSimulationAutomation.md | 17 --- ...MgSecurityAttackSimulationAutomationRun.md | 18 --- .../v1.0/examples/Remove-MgSecurityCase.md | 18 --- ...e-MgSecurityCaseEdiscoveryCaseCustodian.md | 17 --- ...SecurityCaseEdiscoveryCaseCustodianHold.md | 8 +- ...tyCaseEdiscoveryCaseCustodianSiteSource.md | 18 --- ...iscoveryCaseCustodianUnifiedGroupSource.md | 18 --- ...tyCaseEdiscoveryCaseCustodianUserSource.md | 18 --- ...aseEdiscoveryCaseNoncustodialDataSource.md | 18 --- ...discoveryCaseNoncustodialDataSourceHold.md | 15 +-- ...e-MgSecurityCaseEdiscoveryCaseOperation.md | 17 --- ...e-MgSecurityCaseEdiscoveryCaseReviewSet.md | 17 --- ...aseEdiscoveryCaseSearchAdditionalSource.md | 18 --- ...ove-MgSecurityCaseEdiscoveryCaseSetting.md | 17 --- .../examples/Remove-MgSecuritySecureScore.md | 17 --- ...ove-MgSecuritySecureScoreControlProfile.md | 17 --- ...urityCaseEdiscoveryCaseSettingToDefault.md | 8 +- ...te-MgSecurityAttackSimulationAutomation.md | 17 --- ...MgSecurityAttackSimulationAutomationRun.md | 18 --- .../v1.0/examples/Update-MgSecurityCase.md | 18 --- ...e-MgSecurityCaseEdiscoveryCaseCustodian.md | 17 --- ...ecurityCaseEdiscoveryCaseCustodianIndex.md | 8 +- ...tyCaseEdiscoveryCaseCustodianSiteSource.md | 18 --- ...iscoveryCaseCustodianUnifiedGroupSource.md | 18 --- ...tyCaseEdiscoveryCaseCustodianUserSource.md | 18 --- ...aseEdiscoveryCaseNoncustodialDataSource.md | 18 --- ...iscoveryCaseNoncustodialDataSourceIndex.md | 8 +- ...e-MgSecurityCaseEdiscoveryCaseOperation.md | 17 --- ...e-MgSecurityCaseEdiscoveryCaseReviewSet.md | 17 --- ...aseEdiscoveryCaseSearchAdditionalSource.md | 18 --- .../examples/Update-MgSecuritySecureScore.md | 17 --- .../examples/Get-MgBetaGroupSiteAnalytic.md | 18 --- .../Get-MgBetaGroupSiteListActivity.md | 18 --- .../v1.0/examples/Get-MgGroupSiteAnalytic.md | 18 --- .../Clear-MgBetaChatMessageReaction.md | 18 --- .../Clear-MgBetaChatMessageReplyReaction.md | 18 --- .../Clear-MgBetaTeamChannelMessageReaction.md | 18 --- ...r-MgBetaTeamChannelMessageReplyReaction.md | 18 --- ...MgBetaTeamPrimaryChannelMessageReaction.md | 18 --- ...aTeamPrimaryChannelMessageReplyReaction.md | 18 --- ...amworkDeletedTeamChannelMessageReaction.md | 18 --- ...kDeletedTeamChannelMessageReplyReaction.md | 18 --- .../examples/Get-MgChatInstalledAppTeamApp.md | 18 --- ...Get-MgChatInstalledAppTeamAppDefinition.md | 18 --- .../v1.0/examples/Get-MgChatMessageDelta.md | 18 --- .../examples/Get-MgChatMessageReplyDelta.md | 18 --- .../v1.0/examples/Get-MgChatTabTeamApp.md | 18 --- src/Teams/v1.0/examples/Get-MgGroupTeam.md | 18 --- .../Get-MgGroupTeamChannelTabTeamApp.md | 18 --- .../v1.0/examples/Get-MgGroupTeamGroup.md | 18 --- .../Get-MgGroupTeamInstalledAppTeamApp.md | 18 --- ...gGroupTeamInstalledAppTeamAppDefinition.md | 18 --- ...Get-MgGroupTeamPrimaryChannelTabTeamApp.md | 18 --- .../v1.0/examples/Get-MgGroupTeamTemplate.md | 18 --- .../examples/Get-MgTeamChannelMessageDelta.md | 18 --- .../Get-MgTeamChannelMessageReplyDelta.md | 18 --- .../examples/Get-MgTeamChannelTabTeamApp.md | 18 --- .../examples/Get-MgTeamInstalledAppTeamApp.md | 18 --- ...Get-MgTeamInstalledAppTeamAppDefinition.md | 18 --- ...UserPendingAccessReviewInstanceDecision.md | 18 --- .../Clear-MgBetaUserAndBlockManagedApp.md | 18 --- .../Clear-MgBetaUserChatMessageReaction.md | 18 --- ...lear-MgBetaUserChatMessageReplyReaction.md | 18 --- ...ManagedAppRegistrationByAzureAdDeviceId.md | 18 --- ...taUserManagedAppRegistrationByDeviceTag.md | 18 --- .../examples/Clear-MgBetaUserManagedDevice.md | 18 --- .../Complete-MgBetaUserOutlookTask.md | 8 +- ...omplete-MgBetaUserOutlookTaskFolderTask.md | 18 --- ...gBetaUserOutlookTaskGroupTaskFolderTask.md | 18 --- ...rt-MgBetaUserDeviceAndAppManagementData.md | 18 --- .../beta/examples/Find-MgBetaUserRoom.md | 8 -- .../beta/examples/Find-MgBetaUserRoomList.md | 8 +- .../examples/Get-MgBetaAllUserChatMessage.md | 18 --- .../Get-MgBetaUserChatMessageDelta.md | 18 --- .../Get-MgBetaUserChatMessageReplyDelta.md | 18 --- ...et-MgBetaUserCloudPcConnectivityHistory.md | 18 --- .../Get-MgBetaUserCloudPcLaunchInfo.md | 8 -- .../beta/examples/Get-MgBetaUserDelta.md | 7 - .../examples/Get-MgBetaUserDeviceDelta.md | 18 --- ...t-MgBetaUserDriveItemActivityByInterval.md | 18 --- .../examples/Get-MgBetaUserDriveItemDelta.md | 18 --- ...UserDriveItemListItemActivityByInterval.md | 18 --- ...ListContentTypeCompatibleHubContentType.md | 18 --- ...BetaUserDriveListItemActivityByInterval.md | 18 --- .../Get-MgBetaUserDriveListItemDelta.md | 18 --- ...t-MgBetaUserDriveRootActivityByInterval.md | 18 --- .../examples/Get-MgBetaUserDriveRootDelta.md | 18 --- ...UserDriveRootListItemActivityByInterval.md | 18 --- ...rEffectiveDeviceEnrollmentConfiguration.md | 18 --- .../Get-MgBetaUserLoggedOnManagedDevice.md | 18 --- .../Get-MgBetaUserManagedAppBlockedUser.md | 18 --- .../v1.0/examples/Get-MgAllUserChatMessage.md | 18 --- .../examples/Get-MgUserChatMessageDelta.md | 18 --- .../Get-MgUserChatMessageReplyDelta.md | 18 --- .../v1.0/examples/Get-MgUserContactDelta.md | 18 --- ...serContactFolderChildFolderContactDelta.md | 18 --- ...Get-MgUserContactFolderChildFolderDelta.md | 18 --- .../Get-MgUserContactFolderContactDelta.md | 18 +-- .../examples/Get-MgUserContactFolderDelta.md | 8 +- .../v1.0/examples/Get-MgUserDelta.md | 7 - .../Get-MgUserDriveItemActivityByInterval.md | 18 --- .../v1.0/examples/Get-MgUserDriveItemDelta.md | 18 --- ...UserDriveItemListItemActivityByInterval.md | 18 --- ...ListContentTypeCompatibleHubContentType.md | 18 --- ...t-MgUserDriveListItemActivityByInterval.md | 18 --- .../Get-MgUserDriveRootActivityByInterval.md | 18 --- .../v1.0/examples/Get-MgUserDriveRootDelta.md | 18 --- ...UserDriveRootListItemActivityByInterval.md | 18 --- ...MgUserMailFolderChildFolderMessageDelta.md | 18 --- .../Get-MgUserMailFolderMessageDelta.md | 8 +- .../examples/Get-MgBetaUserOutlookTask.md | 28 ++-- .../Get-MgBetaUserOutlookTaskAttachment.md | 8 +- .../Get-MgBetaUserOutlookTaskFolder.md | 16 +-- ...esDeploymentAudienceExclusionMemberById.md | 18 --- ...aWindowsUpdatesDeploymentAudienceMember.md | 18 --- ...dowsUpdatesDeploymentAudienceMemberById.md | 18 --- ...gBetaWindowsUpdatesUpdatableAssetMember.md | 13 +- ...aWindowsUpdatesUpdatableAssetMemberById.md | 21 +-- .../Get-MgBetaWindowsUpdatesCatalogEntry.md | 8 +- .../Get-MgBetaWindowsUpdatesDeployment.md | 15 +-- ...-MgBetaWindowsUpdatesResourceConnection.md | 29 +--- .../Get-MgBetaWindowsUpdatesUpdatableAsset.md | 50 +------ ...tesDeploymentAudienceExclusionAssetById.md | 18 --- ...pdatesDeploymentAudienceMemberAssetById.md | 18 --- ...gBetaEnrollWindowsUpdatesUpdatableAsset.md | 16 --- ...aEnrollWindowsUpdatesUpdatableAssetById.md | 16 --- ...ndowsUpdatesDeploymentAudienceExclusion.md | 18 --- ...hWindowsUpdatesDeploymentAudienceMember.md | 18 --- ...MgBetaGraphWindowsUpdatesUpdatableAsset.md | 16 --- ...etaUnenrollWindowsUpdatesUpdatableAsset.md | 16 --- .../New-MgBetaWindowsUpdatesDeployment.md | 41 +++--- ...-MgBetaWindowsUpdatesResourceConnection.md | 15 ++- .../New-MgBetaWindowsUpdatesUpdatableAsset.md | 9 +- .../Remove-MgBetaWindowsUpdatesDeployment.md | 8 +- ...esDeploymentAudienceExclusionMemberById.md | 18 --- ...dowsUpdatesDeploymentAudienceMemberById.md | 18 --- ...-MgBetaWindowsUpdatesResourceConnection.md | 15 +-- ...move-MgBetaWindowsUpdatesUpdatableAsset.md | 22 +-- ...gBetaWindowsUpdatesUpdatableAssetMember.md | 13 +- ...aWindowsUpdatesUpdatableAssetMemberById.md | 21 +-- .../Update-MgBetaWindowsUpdatesDeployment.md | 40 +++--- ...etaWindowsUpdatesDeploymentAudienceById.md | 35 ++--- ...-MgBetaWindowsUpdatesResourceConnection.md | 18 --- ...date-MgBetaWindowsUpdatesUpdatableAsset.md | 18 --- 1264 files changed, 2591 insertions(+), 18719 deletions(-) diff --git a/src/Applications/beta/examples/Confirm-MgBetaApplicationMemberObject.md b/src/Applications/beta/examples/Confirm-MgBetaApplicationMemberObject.md index 093355d11d..e69de29bb2 100644 --- a/src/Applications/beta/examples/Confirm-MgBetaApplicationMemberObject.md +++ b/src/Applications/beta/examples/Confirm-MgBetaApplicationMemberObject.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Applications/beta/examples/Confirm-MgBetaServicePrincipalMemberObject.md b/src/Applications/beta/examples/Confirm-MgBetaServicePrincipalMemberObject.md index 093355d11d..e69de29bb2 100644 --- a/src/Applications/beta/examples/Confirm-MgBetaServicePrincipalMemberObject.md +++ b/src/Applications/beta/examples/Confirm-MgBetaServicePrincipalMemberObject.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Applications/beta/examples/Get-MgBetaApplicationAppManagementPolicy.md b/src/Applications/beta/examples/Get-MgBetaApplicationAppManagementPolicy.md index 093355d11d..e69de29bb2 100644 --- a/src/Applications/beta/examples/Get-MgBetaApplicationAppManagementPolicy.md +++ b/src/Applications/beta/examples/Get-MgBetaApplicationAppManagementPolicy.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Applications/beta/examples/Get-MgBetaApplicationAppManagementPolicyByRef.md b/src/Applications/beta/examples/Get-MgBetaApplicationAppManagementPolicyByRef.md index 093355d11d..e69de29bb2 100644 --- a/src/Applications/beta/examples/Get-MgBetaApplicationAppManagementPolicyByRef.md +++ b/src/Applications/beta/examples/Get-MgBetaApplicationAppManagementPolicyByRef.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Applications/beta/examples/Get-MgBetaApplicationConnectorGroup.md b/src/Applications/beta/examples/Get-MgBetaApplicationConnectorGroup.md index 093355d11d..e69de29bb2 100644 --- a/src/Applications/beta/examples/Get-MgBetaApplicationConnectorGroup.md +++ b/src/Applications/beta/examples/Get-MgBetaApplicationConnectorGroup.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Applications/beta/examples/Get-MgBetaApplicationConnectorGroupByRef.md b/src/Applications/beta/examples/Get-MgBetaApplicationConnectorGroupByRef.md index 093355d11d..e69de29bb2 100644 --- a/src/Applications/beta/examples/Get-MgBetaApplicationConnectorGroupByRef.md +++ b/src/Applications/beta/examples/Get-MgBetaApplicationConnectorGroupByRef.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Applications/beta/examples/Get-MgBetaApplicationCreatedOnBehalfOf.md b/src/Applications/beta/examples/Get-MgBetaApplicationCreatedOnBehalfOf.md index 093355d11d..e69de29bb2 100644 --- a/src/Applications/beta/examples/Get-MgBetaApplicationCreatedOnBehalfOf.md +++ b/src/Applications/beta/examples/Get-MgBetaApplicationCreatedOnBehalfOf.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Applications/beta/examples/Get-MgBetaApplicationDelta.md b/src/Applications/beta/examples/Get-MgBetaApplicationDelta.md index 4d49ee1974..e69de29bb2 100644 --- a/src/Applications/beta/examples/Get-MgBetaApplicationDelta.md +++ b/src/Applications/beta/examples/Get-MgBetaApplicationDelta.md @@ -1,7 +0,0 @@ -### Example 1: Using the Get-MgBetaApplicationDelta Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Applications -Get-MgBetaApplicationDelta -``` -This example shows how to use the Get-MgBetaApplicationDelta Cmdlet. -To learn about permissions for this resource, see the [Application permissions reference](/graph/permissions-reference#applicationreadall). diff --git a/src/Applications/beta/examples/Get-MgBetaApplicationLogo.md b/src/Applications/beta/examples/Get-MgBetaApplicationLogo.md index 093355d11d..e69de29bb2 100644 --- a/src/Applications/beta/examples/Get-MgBetaApplicationLogo.md +++ b/src/Applications/beta/examples/Get-MgBetaApplicationLogo.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Applications/beta/examples/Get-MgBetaApplicationSynchronization.md b/src/Applications/beta/examples/Get-MgBetaApplicationSynchronization.md index 093355d11d..e69de29bb2 100644 --- a/src/Applications/beta/examples/Get-MgBetaApplicationSynchronization.md +++ b/src/Applications/beta/examples/Get-MgBetaApplicationSynchronization.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Applications/beta/examples/Get-MgBetaApplicationSynchronizationTemplateSchema.md b/src/Applications/beta/examples/Get-MgBetaApplicationSynchronizationTemplateSchema.md index 093355d11d..e69de29bb2 100644 --- a/src/Applications/beta/examples/Get-MgBetaApplicationSynchronizationTemplateSchema.md +++ b/src/Applications/beta/examples/Get-MgBetaApplicationSynchronizationTemplateSchema.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgent.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgent.md index 435aa23f69..1d3e6ad807 100644 --- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgent.md +++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgent.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaOnPremisePublishingProfileAgent Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Applications + Get-MgBetaOnPremisePublishingProfileAgent -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -ExpandProperty "agentGroups" + ``` This example shows how to use the Get-MgBetaOnPremisePublishingProfileAgent Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaOnPremisePublishingProfileAgent Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Applications -Get-MgBetaOnPremisePublishingProfileAgent -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -OnPremisesAgentId $onPremisesAgentId -ExpandProperty "agentGroups" -``` -This example shows how to use the Get-MgBetaOnPremisePublishingProfileAgent Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroup.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroup.md index 28f2ac66b9..82c5f03d3a 100644 --- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroup.md +++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroup.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaOnPremisePublishingProfileAgentGroup Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Applications + Get-MgBetaOnPremisePublishingProfileAgentGroup -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -ExpandProperty "agents,publishedResources" + ``` This example shows how to use the Get-MgBetaOnPremisePublishingProfileAgentGroup Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaOnPremisePublishingProfileAgentGroup Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Applications -Get-MgBetaOnPremisePublishingProfileAgentGroup -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -OnPremisesAgentGroupId $onPremisesAgentGroupId -ExpandProperty "publishedResources,agents" -``` -This example shows how to use the Get-MgBetaOnPremisePublishingProfileAgentGroup Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroupByRef.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroupByRef.md index 093355d11d..e69de29bb2 100644 --- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroupByRef.md +++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroupByRef.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroup.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroup.md index 093355d11d..e69de29bb2 100644 --- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroup.md +++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroup.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupByRef.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupByRef.md index 093355d11d..e69de29bb2 100644 --- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupByRef.md +++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupByRef.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnector.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnector.md index 521857ef78..2b98dd99d1 100644 --- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnector.md +++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnector.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaOnPremisePublishingProfileConnector Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Applications -Get-MgBetaOnPremisePublishingProfileConnector -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -ConnectorId $connectorId -``` -This example shows how to use the Get-MgBetaOnPremisePublishingProfileConnector Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaOnPremisePublishingProfileConnector Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Applications + Get-MgBetaOnPremisePublishingProfileConnector -OnPremisesPublishingProfileId $onPremisesPublishingProfileId + ``` This example shows how to use the Get-MgBetaOnPremisePublishingProfileConnector Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroup.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroup.md index f24a6c2e07..7329c8404e 100644 --- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroup.md +++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroup.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaOnPremisePublishingProfileConnectorGroup Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Applications -Get-MgBetaOnPremisePublishingProfileConnectorGroup -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -ConnectorGroupId $connectorGroupId -``` -This example shows how to use the Get-MgBetaOnPremisePublishingProfileConnectorGroup Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaOnPremisePublishingProfileConnectorGroup Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Applications + Get-MgBetaOnPremisePublishingProfileConnectorGroup -OnPremisesPublishingProfileId $onPremisesPublishingProfileId + ``` This example shows how to use the Get-MgBetaOnPremisePublishingProfileConnectorGroup Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroupApplicationLogo.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroupApplicationLogo.md index 093355d11d..e69de29bb2 100644 --- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroupApplicationLogo.md +++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroupApplicationLogo.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroupMember.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroupMember.md index 2205507033..e69de29bb2 100644 --- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroupMember.md +++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroupMember.md @@ -1,7 +0,0 @@ -### Example 1: Using the Get-MgBetaOnPremisePublishingProfileConnectorGroupMember Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Applications -Get-MgBetaOnPremisePublishingProfileConnectorGroupMember -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -ConnectorGroupId $connectorGroupId -``` -This example shows how to use the Get-MgBetaOnPremisePublishingProfileConnectorGroupMember Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroupMemberByRef.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroupMemberByRef.md index 093355d11d..e69de29bb2 100644 --- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroupMemberByRef.md +++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorGroupMemberByRef.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorMemberOf.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorMemberOf.md index c7430ca650..e69de29bb2 100644 --- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorMemberOf.md +++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorMemberOf.md @@ -1,7 +0,0 @@ -### Example 1: Using the Get-MgBetaOnPremisePublishingProfileConnectorMemberOf Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Applications -Get-MgBetaOnPremisePublishingProfileConnectorMemberOf -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -ConnectorId $connectorId -``` -This example shows how to use the Get-MgBetaOnPremisePublishingProfileConnectorMemberOf Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorMemberOfByRef.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorMemberOfByRef.md index 093355d11d..e69de29bb2 100644 --- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorMemberOfByRef.md +++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfileConnectorMemberOfByRef.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfilePublishedResource.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfilePublishedResource.md index 8f37cfdc21..34aa4b9891 100644 --- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfilePublishedResource.md +++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfilePublishedResource.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaOnPremisePublishingProfilePublishedResource Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Applications -Get-MgBetaOnPremisePublishingProfilePublishedResource -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -PublishedResourceId $publishedResourceId -ExpandProperty "agentGroups" -``` -This example shows how to use the Get-MgBetaOnPremisePublishingProfilePublishedResource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaOnPremisePublishingProfilePublishedResource Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Applications + Get-MgBetaOnPremisePublishingProfilePublishedResource -OnPremisesPublishingProfileId $onPremisesPublishingProfileId -ExpandProperty "agentGroups" + ``` This example shows how to use the Get-MgBetaOnPremisePublishingProfilePublishedResource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroup.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroup.md index 093355d11d..e69de29bb2 100644 --- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroup.md +++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroup.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroupByRef.md b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroupByRef.md index 093355d11d..e69de29bb2 100644 --- a/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroupByRef.md +++ b/src/Applications/beta/examples/Get-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroupByRef.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Applications/beta/examples/Get-MgBetaServicePrincipalCreatedObject.md b/src/Applications/beta/examples/Get-MgBetaServicePrincipalCreatedObject.md index da6a6395b6..bbb7e76f95 100644 --- a/src/Applications/beta/examples/Get-MgBetaServicePrincipalCreatedObject.md +++ b/src/Applications/beta/examples/Get-MgBetaServicePrincipalCreatedObject.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaServicePrincipalCreatedObject Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Applications + Get-MgBetaServicePrincipalCreatedObject -ServicePrincipalId $servicePrincipalId + ``` This example shows how to use the Get-MgBetaServicePrincipalCreatedObject Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Applications/beta/examples/Get-MgBetaServicePrincipalDelta.md b/src/Applications/beta/examples/Get-MgBetaServicePrincipalDelta.md index 5c072922cf..e69de29bb2 100644 --- a/src/Applications/beta/examples/Get-MgBetaServicePrincipalDelta.md +++ b/src/Applications/beta/examples/Get-MgBetaServicePrincipalDelta.md @@ -1,7 +0,0 @@ -### Example 1: Using the Get-MgBetaServicePrincipalDelta Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Applications -Get-MgBetaServicePrincipalDelta -``` -This example shows how to use the Get-MgBetaServicePrincipalDelta Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Applications/beta/examples/Get-MgBetaServicePrincipalOwnedObject.md b/src/Applications/beta/examples/Get-MgBetaServicePrincipalOwnedObject.md index 0796505b21..f18e566f18 100644 --- a/src/Applications/beta/examples/Get-MgBetaServicePrincipalOwnedObject.md +++ b/src/Applications/beta/examples/Get-MgBetaServicePrincipalOwnedObject.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaServicePrincipalOwnedObject Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Applications + Get-MgBetaServicePrincipalOwnedObject -ServicePrincipalId $servicePrincipalId + ``` This example shows how to use the Get-MgBetaServicePrincipalOwnedObject Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Applications/v1.0/examples/Confirm-MgApplicationMemberObject.md b/src/Applications/v1.0/examples/Confirm-MgApplicationMemberObject.md index 093355d11d..e69de29bb2 100644 --- a/src/Applications/v1.0/examples/Confirm-MgApplicationMemberObject.md +++ b/src/Applications/v1.0/examples/Confirm-MgApplicationMemberObject.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Applications/v1.0/examples/Confirm-MgServicePrincipalMemberObject.md b/src/Applications/v1.0/examples/Confirm-MgServicePrincipalMemberObject.md index 093355d11d..e69de29bb2 100644 --- a/src/Applications/v1.0/examples/Confirm-MgServicePrincipalMemberObject.md +++ b/src/Applications/v1.0/examples/Confirm-MgServicePrincipalMemberObject.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Applications/v1.0/examples/Get-MgApplicationCreatedOnBehalfOf.md b/src/Applications/v1.0/examples/Get-MgApplicationCreatedOnBehalfOf.md index 093355d11d..e69de29bb2 100644 --- a/src/Applications/v1.0/examples/Get-MgApplicationCreatedOnBehalfOf.md +++ b/src/Applications/v1.0/examples/Get-MgApplicationCreatedOnBehalfOf.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Applications/v1.0/examples/Get-MgApplicationDelta.md b/src/Applications/v1.0/examples/Get-MgApplicationDelta.md index 0b84850fcb..e69de29bb2 100644 --- a/src/Applications/v1.0/examples/Get-MgApplicationDelta.md +++ b/src/Applications/v1.0/examples/Get-MgApplicationDelta.md @@ -1,7 +0,0 @@ -### 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 [Application permissions reference](/graph/permissions-reference#applicationreadall). diff --git a/src/Applications/v1.0/examples/Get-MgApplicationLogo.md b/src/Applications/v1.0/examples/Get-MgApplicationLogo.md index 093355d11d..e69de29bb2 100644 --- a/src/Applications/v1.0/examples/Get-MgApplicationLogo.md +++ b/src/Applications/v1.0/examples/Get-MgApplicationLogo.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Applications/v1.0/examples/Get-MgServicePrincipalDelta.md b/src/Applications/v1.0/examples/Get-MgServicePrincipalDelta.md index 2d3f5c4b44..e69de29bb2 100644 --- a/src/Applications/v1.0/examples/Get-MgServicePrincipalDelta.md +++ b/src/Applications/v1.0/examples/Get-MgServicePrincipalDelta.md @@ -1,7 +0,0 @@ -### 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/Bookings/beta/examples/New-MgBetaBookingBusiness.md b/src/Bookings/beta/examples/New-MgBetaBookingBusiness.md index c52fea9551..e69de29bb2 100644 --- a/src/Bookings/beta/examples/New-MgBetaBookingBusiness.md +++ b/src/Bookings/beta/examples/New-MgBetaBookingBusiness.md @@ -1,22 +0,0 @@ -### Example 1: Using the New-MgBetaBookingBusiness Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.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-MgBetaBookingBusiness -BodyParameter $params -``` -This example shows how to use the New-MgBetaBookingBusiness Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/beta/examples/New-MgBetaBookingBusinessCalendarView.md b/src/Bookings/beta/examples/New-MgBetaBookingBusinessCalendarView.md index 093355d11d..e69de29bb2 100644 --- a/src/Bookings/beta/examples/New-MgBetaBookingBusinessCalendarView.md +++ b/src/Bookings/beta/examples/New-MgBetaBookingBusinessCalendarView.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Bookings/beta/examples/New-MgBetaBookingCurrency.md b/src/Bookings/beta/examples/New-MgBetaBookingCurrency.md index 093355d11d..e69de29bb2 100644 --- a/src/Bookings/beta/examples/New-MgBetaBookingCurrency.md +++ b/src/Bookings/beta/examples/New-MgBetaBookingCurrency.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Bookings/beta/examples/Remove-MgBetaBookingBusiness.md b/src/Bookings/beta/examples/Remove-MgBetaBookingBusiness.md index c6bea76eab..e69de29bb2 100644 --- a/src/Bookings/beta/examples/Remove-MgBetaBookingBusiness.md +++ b/src/Bookings/beta/examples/Remove-MgBetaBookingBusiness.md @@ -1,7 +0,0 @@ -### Example 1: Using the Remove-MgBetaBookingBusiness Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Bookings -Remove-MgBetaBookingBusiness -BookingBusinessId $bookingBusinessId -``` -This example shows how to use the Remove-MgBetaBookingBusiness Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/beta/examples/Remove-MgBetaBookingBusinessCalendarView.md b/src/Bookings/beta/examples/Remove-MgBetaBookingBusinessCalendarView.md index 093355d11d..e69de29bb2 100644 --- a/src/Bookings/beta/examples/Remove-MgBetaBookingBusinessCalendarView.md +++ b/src/Bookings/beta/examples/Remove-MgBetaBookingBusinessCalendarView.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Bookings/beta/examples/Remove-MgBetaBookingCurrency.md b/src/Bookings/beta/examples/Remove-MgBetaBookingCurrency.md index 093355d11d..e69de29bb2 100644 --- a/src/Bookings/beta/examples/Remove-MgBetaBookingCurrency.md +++ b/src/Bookings/beta/examples/Remove-MgBetaBookingCurrency.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Bookings/beta/examples/Update-MgBetaBookingBusiness.md b/src/Bookings/beta/examples/Update-MgBetaBookingBusiness.md index 600a97ba49..e69de29bb2 100644 --- a/src/Bookings/beta/examples/Update-MgBetaBookingBusiness.md +++ b/src/Bookings/beta/examples/Update-MgBetaBookingBusiness.md @@ -1,17 +0,0 @@ -### Example 1: Using the Update-MgBetaBookingBusiness Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Bookings -$params = @{ - Email = "admin@fabrikam.com" - SchedulingPolicy = @{ - TimeSlotInterval = "PT60M" - MinimumLeadTime = "P1D" - MaximumAdvance = "P30D" - SendConfirmationsToOwner = $true - AllowStaffSelection = $true - } -} -Update-MgBetaBookingBusiness -BookingBusinessId $bookingBusinessId -BodyParameter $params -``` -This example shows how to use the Update-MgBetaBookingBusiness Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Bookings/beta/examples/Update-MgBetaBookingBusinessCalendarView.md b/src/Bookings/beta/examples/Update-MgBetaBookingBusinessCalendarView.md index 093355d11d..e69de29bb2 100644 --- a/src/Bookings/beta/examples/Update-MgBetaBookingBusinessCalendarView.md +++ b/src/Bookings/beta/examples/Update-MgBetaBookingBusinessCalendarView.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Bookings/beta/examples/Update-MgBetaBookingCurrency.md b/src/Bookings/beta/examples/Update-MgBetaBookingCurrency.md index 093355d11d..e69de29bb2 100644 --- a/src/Bookings/beta/examples/Update-MgBetaBookingCurrency.md +++ b/src/Bookings/beta/examples/Update-MgBetaBookingCurrency.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Bookings/v1.0/examples/New-MgBookingBusinessCalendarView.md b/src/Bookings/v1.0/examples/New-MgBookingBusinessCalendarView.md index 093355d11d..e69de29bb2 100644 --- a/src/Bookings/v1.0/examples/New-MgBookingBusinessCalendarView.md +++ b/src/Bookings/v1.0/examples/New-MgBookingBusinessCalendarView.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Bookings/v1.0/examples/New-MgBookingCurrency.md b/src/Bookings/v1.0/examples/New-MgBookingCurrency.md index 093355d11d..e69de29bb2 100644 --- a/src/Bookings/v1.0/examples/New-MgBookingCurrency.md +++ b/src/Bookings/v1.0/examples/New-MgBookingCurrency.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Bookings/v1.0/examples/Remove-MgBookingBusinessCalendarView.md b/src/Bookings/v1.0/examples/Remove-MgBookingBusinessCalendarView.md index 093355d11d..e69de29bb2 100644 --- a/src/Bookings/v1.0/examples/Remove-MgBookingBusinessCalendarView.md +++ b/src/Bookings/v1.0/examples/Remove-MgBookingBusinessCalendarView.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Bookings/v1.0/examples/Remove-MgBookingCurrency.md b/src/Bookings/v1.0/examples/Remove-MgBookingCurrency.md index 093355d11d..e69de29bb2 100644 --- a/src/Bookings/v1.0/examples/Remove-MgBookingCurrency.md +++ b/src/Bookings/v1.0/examples/Remove-MgBookingCurrency.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Bookings/v1.0/examples/Update-MgBookingBusinessCalendarView.md b/src/Bookings/v1.0/examples/Update-MgBookingBusinessCalendarView.md index 093355d11d..e69de29bb2 100644 --- a/src/Bookings/v1.0/examples/Update-MgBookingBusinessCalendarView.md +++ b/src/Bookings/v1.0/examples/Update-MgBookingBusinessCalendarView.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Bookings/v1.0/examples/Update-MgBookingCurrency.md b/src/Bookings/v1.0/examples/Update-MgBookingCurrency.md index 093355d11d..e69de29bb2 100644 --- a/src/Bookings/v1.0/examples/Update-MgBookingCurrency.md +++ b/src/Bookings/v1.0/examples/Update-MgBookingCurrency.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Calendar/beta/examples/Get-MgBetaGroupCalendar.md b/src/Calendar/beta/examples/Get-MgBetaGroupCalendar.md index 093355d11d..e69de29bb2 100644 --- a/src/Calendar/beta/examples/Get-MgBetaGroupCalendar.md +++ b/src/Calendar/beta/examples/Get-MgBetaGroupCalendar.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Calendar/v1.0/examples/Get-MgGroupCalendar.md b/src/Calendar/v1.0/examples/Get-MgGroupCalendar.md index 093355d11d..e69de29bb2 100644 --- a/src/Calendar/v1.0/examples/Get-MgGroupCalendar.md +++ b/src/Calendar/v1.0/examples/Get-MgGroupCalendar.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CloudCommunications/beta/examples/Get-MgBetaCommunicationOnlineMeetingAlternativeRecording.md b/src/CloudCommunications/beta/examples/Get-MgBetaCommunicationOnlineMeetingAlternativeRecording.md index 093355d11d..e69de29bb2 100644 --- a/src/CloudCommunications/beta/examples/Get-MgBetaCommunicationOnlineMeetingAlternativeRecording.md +++ b/src/CloudCommunications/beta/examples/Get-MgBetaCommunicationOnlineMeetingAlternativeRecording.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CloudCommunications/beta/examples/Get-MgBetaCommunicationOnlineMeetingRecording.md b/src/CloudCommunications/beta/examples/Get-MgBetaCommunicationOnlineMeetingRecording.md index 093355d11d..e69de29bb2 100644 --- a/src/CloudCommunications/beta/examples/Get-MgBetaCommunicationOnlineMeetingRecording.md +++ b/src/CloudCommunications/beta/examples/Get-MgBetaCommunicationOnlineMeetingRecording.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CloudCommunications/beta/examples/Get-MgBetaCommunicationOnlineMeetingRegistration.md b/src/CloudCommunications/beta/examples/Get-MgBetaCommunicationOnlineMeetingRegistration.md index 093355d11d..e69de29bb2 100644 --- a/src/CloudCommunications/beta/examples/Get-MgBetaCommunicationOnlineMeetingRegistration.md +++ b/src/CloudCommunications/beta/examples/Get-MgBetaCommunicationOnlineMeetingRegistration.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CloudCommunications/beta/examples/Get-MgBetaCommunicationOnlineMeetingRegistrationCustomQuestion.md b/src/CloudCommunications/beta/examples/Get-MgBetaCommunicationOnlineMeetingRegistrationCustomQuestion.md index 093355d11d..e69de29bb2 100644 --- a/src/CloudCommunications/beta/examples/Get-MgBetaCommunicationOnlineMeetingRegistrationCustomQuestion.md +++ b/src/CloudCommunications/beta/examples/Get-MgBetaCommunicationOnlineMeetingRegistrationCustomQuestion.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CloudCommunications/v1.0/examples/New-MgCommunicationCallContentSharingSession.md b/src/CloudCommunications/v1.0/examples/New-MgCommunicationCallContentSharingSession.md index f6c6949389..e69de29bb2 100644 --- a/src/CloudCommunications/v1.0/examples/New-MgCommunicationCallContentSharingSession.md +++ b/src/CloudCommunications/v1.0/examples/New-MgCommunicationCallContentSharingSession.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/CloudCommunications/v1.0/examples/New-MgCommunicationCallOperation.md b/src/CloudCommunications/v1.0/examples/New-MgCommunicationCallOperation.md index 093355d11d..e69de29bb2 100644 --- a/src/CloudCommunications/v1.0/examples/New-MgCommunicationCallOperation.md +++ b/src/CloudCommunications/v1.0/examples/New-MgCommunicationCallOperation.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CloudCommunications/v1.0/examples/New-MgCommunicationOnlineMeetingAttendanceReport.md b/src/CloudCommunications/v1.0/examples/New-MgCommunicationOnlineMeetingAttendanceReport.md index f6c6949389..e69de29bb2 100644 --- a/src/CloudCommunications/v1.0/examples/New-MgCommunicationOnlineMeetingAttendanceReport.md +++ b/src/CloudCommunications/v1.0/examples/New-MgCommunicationOnlineMeetingAttendanceReport.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/CloudCommunications/v1.0/examples/New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md b/src/CloudCommunications/v1.0/examples/New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md index f6c6949389..e69de29bb2 100644 --- a/src/CloudCommunications/v1.0/examples/New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/src/CloudCommunications/v1.0/examples/New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/CloudCommunications/v1.0/examples/New-MgCommunicationPresence.md b/src/CloudCommunications/v1.0/examples/New-MgCommunicationPresence.md index 093355d11d..e69de29bb2 100644 --- a/src/CloudCommunications/v1.0/examples/New-MgCommunicationPresence.md +++ b/src/CloudCommunications/v1.0/examples/New-MgCommunicationPresence.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CloudCommunications/v1.0/examples/New-MgUserOnlineMeetingAttendanceReport.md b/src/CloudCommunications/v1.0/examples/New-MgUserOnlineMeetingAttendanceReport.md index f6c6949389..e69de29bb2 100644 --- a/src/CloudCommunications/v1.0/examples/New-MgUserOnlineMeetingAttendanceReport.md +++ b/src/CloudCommunications/v1.0/examples/New-MgUserOnlineMeetingAttendanceReport.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/CloudCommunications/v1.0/examples/New-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/src/CloudCommunications/v1.0/examples/New-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index f6c6949389..e69de29bb2 100644 --- a/src/CloudCommunications/v1.0/examples/New-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/src/CloudCommunications/v1.0/examples/New-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/CloudCommunications/v1.0/examples/Remove-MgCommunicationCallContentSharingSession.md b/src/CloudCommunications/v1.0/examples/Remove-MgCommunicationCallContentSharingSession.md index f6c6949389..e69de29bb2 100644 --- a/src/CloudCommunications/v1.0/examples/Remove-MgCommunicationCallContentSharingSession.md +++ b/src/CloudCommunications/v1.0/examples/Remove-MgCommunicationCallContentSharingSession.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/CloudCommunications/v1.0/examples/Remove-MgCommunicationCallOperation.md b/src/CloudCommunications/v1.0/examples/Remove-MgCommunicationCallOperation.md index f6c6949389..e69de29bb2 100644 --- a/src/CloudCommunications/v1.0/examples/Remove-MgCommunicationCallOperation.md +++ b/src/CloudCommunications/v1.0/examples/Remove-MgCommunicationCallOperation.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/CloudCommunications/v1.0/examples/Remove-MgCommunicationCallRecordSession.md b/src/CloudCommunications/v1.0/examples/Remove-MgCommunicationCallRecordSession.md index 093355d11d..e69de29bb2 100644 --- a/src/CloudCommunications/v1.0/examples/Remove-MgCommunicationCallRecordSession.md +++ b/src/CloudCommunications/v1.0/examples/Remove-MgCommunicationCallRecordSession.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CloudCommunications/v1.0/examples/Remove-MgCommunicationOnlineMeeting.md b/src/CloudCommunications/v1.0/examples/Remove-MgCommunicationOnlineMeeting.md index 093355d11d..e69de29bb2 100644 --- a/src/CloudCommunications/v1.0/examples/Remove-MgCommunicationOnlineMeeting.md +++ b/src/CloudCommunications/v1.0/examples/Remove-MgCommunicationOnlineMeeting.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CloudCommunications/v1.0/examples/Remove-MgCommunicationOnlineMeetingAttendanceReport.md b/src/CloudCommunications/v1.0/examples/Remove-MgCommunicationOnlineMeetingAttendanceReport.md index f6c6949389..e69de29bb2 100644 --- a/src/CloudCommunications/v1.0/examples/Remove-MgCommunicationOnlineMeetingAttendanceReport.md +++ b/src/CloudCommunications/v1.0/examples/Remove-MgCommunicationOnlineMeetingAttendanceReport.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/CloudCommunications/v1.0/examples/Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md b/src/CloudCommunications/v1.0/examples/Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md index 093355d11d..e69de29bb2 100644 --- a/src/CloudCommunications/v1.0/examples/Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/src/CloudCommunications/v1.0/examples/Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CloudCommunications/v1.0/examples/Remove-MgCommunicationPresence.md b/src/CloudCommunications/v1.0/examples/Remove-MgCommunicationPresence.md index f6c6949389..e69de29bb2 100644 --- a/src/CloudCommunications/v1.0/examples/Remove-MgCommunicationPresence.md +++ b/src/CloudCommunications/v1.0/examples/Remove-MgCommunicationPresence.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/CloudCommunications/v1.0/examples/Remove-MgUserOnlineMeetingAttendanceReport.md b/src/CloudCommunications/v1.0/examples/Remove-MgUserOnlineMeetingAttendanceReport.md index f6c6949389..e69de29bb2 100644 --- a/src/CloudCommunications/v1.0/examples/Remove-MgUserOnlineMeetingAttendanceReport.md +++ b/src/CloudCommunications/v1.0/examples/Remove-MgUserOnlineMeetingAttendanceReport.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/CloudCommunications/v1.0/examples/Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/src/CloudCommunications/v1.0/examples/Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index 093355d11d..e69de29bb2 100644 --- a/src/CloudCommunications/v1.0/examples/Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/src/CloudCommunications/v1.0/examples/Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CloudCommunications/v1.0/examples/Set-MgCommunicationOnlineMeetingAttendeeReport.md b/src/CloudCommunications/v1.0/examples/Set-MgCommunicationOnlineMeetingAttendeeReport.md index f6c6949389..e69de29bb2 100644 --- a/src/CloudCommunications/v1.0/examples/Set-MgCommunicationOnlineMeetingAttendeeReport.md +++ b/src/CloudCommunications/v1.0/examples/Set-MgCommunicationOnlineMeetingAttendeeReport.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/CloudCommunications/v1.0/examples/Set-MgUserOnlineMeetingAttendeeReport.md b/src/CloudCommunications/v1.0/examples/Set-MgUserOnlineMeetingAttendeeReport.md index f6c6949389..e69de29bb2 100644 --- a/src/CloudCommunications/v1.0/examples/Set-MgUserOnlineMeetingAttendeeReport.md +++ b/src/CloudCommunications/v1.0/examples/Set-MgUserOnlineMeetingAttendeeReport.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/CloudCommunications/v1.0/examples/Update-MgCommunicationCallContentSharingSession.md b/src/CloudCommunications/v1.0/examples/Update-MgCommunicationCallContentSharingSession.md index f6c6949389..e69de29bb2 100644 --- a/src/CloudCommunications/v1.0/examples/Update-MgCommunicationCallContentSharingSession.md +++ b/src/CloudCommunications/v1.0/examples/Update-MgCommunicationCallContentSharingSession.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/CloudCommunications/v1.0/examples/Update-MgCommunicationCallOperation.md b/src/CloudCommunications/v1.0/examples/Update-MgCommunicationCallOperation.md index f6c6949389..e69de29bb2 100644 --- a/src/CloudCommunications/v1.0/examples/Update-MgCommunicationCallOperation.md +++ b/src/CloudCommunications/v1.0/examples/Update-MgCommunicationCallOperation.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/CloudCommunications/v1.0/examples/Update-MgCommunicationCallParticipant.md b/src/CloudCommunications/v1.0/examples/Update-MgCommunicationCallParticipant.md index f6c6949389..e69de29bb2 100644 --- a/src/CloudCommunications/v1.0/examples/Update-MgCommunicationCallParticipant.md +++ b/src/CloudCommunications/v1.0/examples/Update-MgCommunicationCallParticipant.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/CloudCommunications/v1.0/examples/Update-MgCommunicationCallRecordSession.md b/src/CloudCommunications/v1.0/examples/Update-MgCommunicationCallRecordSession.md index 093355d11d..e69de29bb2 100644 --- a/src/CloudCommunications/v1.0/examples/Update-MgCommunicationCallRecordSession.md +++ b/src/CloudCommunications/v1.0/examples/Update-MgCommunicationCallRecordSession.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CloudCommunications/v1.0/examples/Update-MgCommunicationOnlineMeeting.md b/src/CloudCommunications/v1.0/examples/Update-MgCommunicationOnlineMeeting.md index 093355d11d..e69de29bb2 100644 --- a/src/CloudCommunications/v1.0/examples/Update-MgCommunicationOnlineMeeting.md +++ b/src/CloudCommunications/v1.0/examples/Update-MgCommunicationOnlineMeeting.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CloudCommunications/v1.0/examples/Update-MgCommunicationOnlineMeetingAttendanceReport.md b/src/CloudCommunications/v1.0/examples/Update-MgCommunicationOnlineMeetingAttendanceReport.md index f6c6949389..e69de29bb2 100644 --- a/src/CloudCommunications/v1.0/examples/Update-MgCommunicationOnlineMeetingAttendanceReport.md +++ b/src/CloudCommunications/v1.0/examples/Update-MgCommunicationOnlineMeetingAttendanceReport.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/CloudCommunications/v1.0/examples/Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md b/src/CloudCommunications/v1.0/examples/Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md index 093355d11d..e69de29bb2 100644 --- a/src/CloudCommunications/v1.0/examples/Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/src/CloudCommunications/v1.0/examples/Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CloudCommunications/v1.0/examples/Update-MgCommunicationPresence.md b/src/CloudCommunications/v1.0/examples/Update-MgCommunicationPresence.md index f6c6949389..e69de29bb2 100644 --- a/src/CloudCommunications/v1.0/examples/Update-MgCommunicationPresence.md +++ b/src/CloudCommunications/v1.0/examples/Update-MgCommunicationPresence.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/CloudCommunications/v1.0/examples/Update-MgUserOnlineMeetingAttendanceReport.md b/src/CloudCommunications/v1.0/examples/Update-MgUserOnlineMeetingAttendanceReport.md index f6c6949389..e69de29bb2 100644 --- a/src/CloudCommunications/v1.0/examples/Update-MgUserOnlineMeetingAttendanceReport.md +++ b/src/CloudCommunications/v1.0/examples/Update-MgUserOnlineMeetingAttendanceReport.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/CloudCommunications/v1.0/examples/Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md b/src/CloudCommunications/v1.0/examples/Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md index 093355d11d..e69de29bb2 100644 --- a/src/CloudCommunications/v1.0/examples/Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md +++ b/src/CloudCommunications/v1.0/examples/Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Add-MgBetaComplianceEdiscoveryCaseCustodianHold.md b/src/Compliance/beta/examples/Add-MgBetaComplianceEdiscoveryCaseCustodianHold.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Add-MgBetaComplianceEdiscoveryCaseCustodianHold.md +++ b/src/Compliance/beta/examples/Add-MgBetaComplianceEdiscoveryCaseCustodianHold.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Add-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceHold.md b/src/Compliance/beta/examples/Add-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceHold.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Add-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceHold.md +++ b/src/Compliance/beta/examples/Add-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceHold.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Add-MgBetaComplianceEdiscoveryCaseReviewSetQueryTag.md b/src/Compliance/beta/examples/Add-MgBetaComplianceEdiscoveryCaseReviewSetQueryTag.md index ce4fcdaebe..f97c188f7c 100644 --- a/src/Compliance/beta/examples/Add-MgBetaComplianceEdiscoveryCaseReviewSetQueryTag.md +++ b/src/Compliance/beta/examples/Add-MgBetaComplianceEdiscoveryCaseReviewSetQueryTag.md @@ -1,14 +1,19 @@ -### Example 1: Using the Add-MgBetaComplianceEdiscoveryCaseReviewSetQueryTag Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + $params = @{ - TagsToAdd = @( + tagsToAdd = @( @{ - Id = "b4798d14-748d-468e-a1ec-96a2b1d49677" + id = "b4798d14-748d-468e-a1ec-96a2b1d49677" } ) } + Add-MgBetaComplianceEdiscoveryCaseReviewSetQueryTag -CaseId $caseId -ReviewSetId $reviewSetId -ReviewSetQueryId $reviewSetQueryId -BodyParameter $params + ``` This example shows how to use the Add-MgBetaComplianceEdiscoveryCaseReviewSetQueryTag Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Add-MgBetaComplianceEdiscoveryCaseReviewSetToReviewSet.md b/src/Compliance/beta/examples/Add-MgBetaComplianceEdiscoveryCaseReviewSetToReviewSet.md index 44578aaa54..6846eedb13 100644 --- a/src/Compliance/beta/examples/Add-MgBetaComplianceEdiscoveryCaseReviewSetToReviewSet.md +++ b/src/Compliance/beta/examples/Add-MgBetaComplianceEdiscoveryCaseReviewSetToReviewSet.md @@ -1,13 +1,18 @@ -### Example 1: Using the Add-MgBetaComplianceEdiscoveryCaseReviewSetToReviewSet Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + $params = @{ - SourceCollection = @{ - Id = "1a9b4145d8f84e39bc45a7f68c5c5119" + sourceCollection = @{ + id = "1a9b4145d8f84e39bc45a7f68c5c5119" } - AdditionalData = "linkedFiles" + additionalData = "linkedFiles" } + Add-MgBetaComplianceEdiscoveryCaseReviewSetToReviewSet -CaseId $caseId -ReviewSetId $reviewSetId -BodyParameter $params + ``` This example shows how to use the Add-MgBetaComplianceEdiscoveryCaseReviewSetToReviewSet Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Clear-MgBetaComplianceEdiscoveryCaseSourceCollectionData.md b/src/Compliance/beta/examples/Clear-MgBetaComplianceEdiscoveryCaseSourceCollectionData.md index 7ab1eeb2a9..fc30c919d6 100644 --- a/src/Compliance/beta/examples/Clear-MgBetaComplianceEdiscoveryCaseSourceCollectionData.md +++ b/src/Compliance/beta/examples/Clear-MgBetaComplianceEdiscoveryCaseSourceCollectionData.md @@ -1,7 +1,11 @@ -### Example 1: Using the Clear-MgBetaComplianceEdiscoveryCaseSourceCollectionData Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Clear-MgBetaComplianceEdiscoveryCaseSourceCollectionData -CaseId $caseId -SourceCollectionId $sourceCollectionId + ``` This example shows how to use the Clear-MgBetaComplianceEdiscoveryCaseSourceCollectionData Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Close-MgBetaComplianceEdiscoveryCase.md b/src/Compliance/beta/examples/Close-MgBetaComplianceEdiscoveryCase.md index 384292d374..481510f8ee 100644 --- a/src/Compliance/beta/examples/Close-MgBetaComplianceEdiscoveryCase.md +++ b/src/Compliance/beta/examples/Close-MgBetaComplianceEdiscoveryCase.md @@ -1,7 +1,11 @@ -### Example 1: Using the Close-MgBetaComplianceEdiscoveryCase Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Close-MgBetaComplianceEdiscoveryCase -CaseId $caseId + ``` This example shows how to use the Close-MgBetaComplianceEdiscoveryCase Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Export-MgBetaComplianceEdiscoveryCaseReviewSet.md b/src/Compliance/beta/examples/Export-MgBetaComplianceEdiscoveryCaseReviewSet.md index 361ecd96c9..8f8d4058f9 100644 --- a/src/Compliance/beta/examples/Export-MgBetaComplianceEdiscoveryCaseReviewSet.md +++ b/src/Compliance/beta/examples/Export-MgBetaComplianceEdiscoveryCaseReviewSet.md @@ -1,13 +1,18 @@ -### Example 1: Using the Export-MgBetaComplianceEdiscoveryCaseReviewSet Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + $params = @{ - OutputName = "2020-12-06 Contoso investigation export" - Description = "Export for the Contoso investigation" - ExportOptions = "originalFiles,fileInfo,tags" - ExportStructure = "directory" + outputName = "2020-12-06 Contoso investigation export" + description = "Export for the Contoso investigation" + exportOptions = "originalFiles,fileInfo,tags" + exportStructure = "directory" } + Export-MgBetaComplianceEdiscoveryCaseReviewSet -CaseId $caseId -ReviewSetId $reviewSetId -BodyParameter $params + ``` This example shows how to use the Export-MgBetaComplianceEdiscoveryCaseReviewSet Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Get-MgBetaCompliance.md b/src/Compliance/beta/examples/Get-MgBetaCompliance.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Get-MgBetaCompliance.md +++ b/src/Compliance/beta/examples/Get-MgBetaCompliance.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscovery.md b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscovery.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscovery.md +++ b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscovery.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCase.md b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCase.md index ecfd5f073a..1522251629 100644 --- a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCase.md +++ b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCase.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaComplianceEdiscoveryCase Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Compliance -Get-MgBetaComplianceEdiscoveryCase -CaseId $caseId -``` -This example shows how to use the Get-MgBetaComplianceEdiscoveryCase Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaComplianceEdiscoveryCase Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Get-MgBetaComplianceEdiscoveryCase + ``` This example shows how to use the Get-MgBetaComplianceEdiscoveryCase Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseCustodian.md b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseCustodian.md index eae1bac6fc..993e3a4d07 100644 --- a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseCustodian.md +++ b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseCustodian.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaComplianceEdiscoveryCaseCustodian Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Get-MgBetaComplianceEdiscoveryCaseCustodian -CaseId $caseId + ``` This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseCustodian Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaComplianceEdiscoveryCaseCustodian Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Compliance -Get-MgBetaComplianceEdiscoveryCaseCustodian -CaseId $caseId -CustodianId $custodianId -``` -This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseCustodian Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSource.md b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSource.md index 75d2df0ec0..962fcd8d7a 100644 --- a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSource.md +++ b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSource.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSource Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSource -CaseId $caseId -CustodianId $custodianId + ``` This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSource Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Compliance -Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSource -CaseId $caseId -CustodianId $custodianId -SiteSourceId $siteSourceId -``` -This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSourceSite.md b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSourceSite.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSourceSite.md +++ b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSourceSite.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource.md b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource.md index 0dcdefdc6f..b72c1f2eb2 100644 --- a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource.md +++ b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource -CaseId $caseId -CustodianId $custodianId + ``` This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Compliance -Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource -CaseId $caseId -CustodianId $custodianId -UnifiedGroupSourceId $unifiedGroupSourceId -``` -This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSourceGroup.md b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSourceGroup.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSourceGroup.md +++ b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSourceGroup.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseCustodianUserSource.md b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseCustodianUserSource.md index eb723c062d..71857eb25a 100644 --- a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseCustodianUserSource.md +++ b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseCustodianUserSource.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaComplianceEdiscoveryCaseCustodianUserSource Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Get-MgBetaComplianceEdiscoveryCaseCustodianUserSource -CaseId $caseId -CustodianId $custodianId + ``` This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseCustodianUserSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaComplianceEdiscoveryCaseCustodianUserSource Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Compliance -Get-MgBetaComplianceEdiscoveryCaseCustodianUserSource -CaseId $caseId -CustodianId $custodianId -UserSourceId $userSourceId -``` -This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseCustodianUserSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseLegalHold.md b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseLegalHold.md index 56b9731f83..914488b5b2 100644 --- a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseLegalHold.md +++ b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseLegalHold.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaComplianceEdiscoveryCaseLegalHold Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Get-MgBetaComplianceEdiscoveryCaseLegalHold -CaseId $caseId -LegalHoldId $legalHoldId + ``` This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseLegalHold Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaComplianceEdiscoveryCaseLegalHold Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Compliance -Get-MgBetaComplianceEdiscoveryCaseLegalHold -CaseId $caseId -``` -This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseLegalHold Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource.md b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource.md index 22eeea59bd..dd3571eced 100644 --- a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource.md +++ b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Get-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource -CaseId $caseId -LegalHoldId $legalHoldId + ``` This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSourceSite.md b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSourceSite.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSourceSite.md +++ b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSourceSite.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSourceGroup.md b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSourceGroup.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSourceGroup.md +++ b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSourceGroup.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource.md b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource.md index 2265916356..6009cc1235 100644 --- a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource.md +++ b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Get-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource -CaseId $caseId -LegalHoldId $legalHoldId + ``` This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource.md b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource.md index 885ca9c4cf..772fc69460 100644 --- a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource.md +++ b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Compliance -Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource -CaseId $caseId -NoncustodialDataSourceId $noncustodialDataSourceId -``` -This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource -CaseId $caseId + ``` This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseReviewSet.md b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseReviewSet.md index 1364714f6f..f52df4be47 100644 --- a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseReviewSet.md +++ b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseReviewSet.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaComplianceEdiscoveryCaseReviewSet Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Get-MgBetaComplianceEdiscoveryCaseReviewSet -CaseId $caseId -ReviewSetId $reviewSetId + ``` This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseReviewSet Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaComplianceEdiscoveryCaseReviewSet Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Compliance -Get-MgBetaComplianceEdiscoveryCaseReviewSet -CaseId $caseId -``` -This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseReviewSet Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseReviewSetQuery.md b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseReviewSetQuery.md index 3bb6db97fd..6f95d0f04c 100644 --- a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseReviewSetQuery.md +++ b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseReviewSetQuery.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaComplianceEdiscoveryCaseReviewSetQuery Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Compliance -Get-MgBetaComplianceEdiscoveryCaseReviewSetQuery -CaseId $caseId -ReviewSetId $reviewSetId -ReviewSetQueryId $reviewSetQueryId -``` -This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseReviewSetQuery Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaComplianceEdiscoveryCaseReviewSetQuery Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Get-MgBetaComplianceEdiscoveryCaseReviewSetQuery -CaseId $caseId -ReviewSetId $reviewSetId + ``` This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseReviewSetQuery Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseSetting.md b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseSetting.md index 004d124c9f..9541697118 100644 --- a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseSetting.md +++ b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseSetting.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaComplianceEdiscoveryCaseSetting Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Get-MgBetaComplianceEdiscoveryCaseSetting -CaseId $caseId + ``` This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseSetting Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaComplianceEdiscoveryCaseSetting Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Compliance -Get-MgBetaComplianceEdiscoveryCaseSetting -CaseId $caseId -``` -This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseSetting Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseSourceCollection.md b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseSourceCollection.md index f86ba907f4..a1ed314512 100644 --- a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseSourceCollection.md +++ b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseSourceCollection.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaComplianceEdiscoveryCaseSourceCollection Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Compliance -Get-MgBetaComplianceEdiscoveryCaseSourceCollection -CaseId $caseId -SourceCollectionId $sourceCollectionId -ExpandProperty "addToReviewSetOperation,custodianSources,lastEstimateStatisticsOperation" -``` -This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseSourceCollection Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaComplianceEdiscoveryCaseSourceCollection Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Get-MgBetaComplianceEdiscoveryCaseSourceCollection -CaseId $caseId + ``` This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseSourceCollection Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAddToReviewSetOperation.md b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAddToReviewSetOperation.md index 1058b850cc..a3e5b63cb2 100644 --- a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAddToReviewSetOperation.md +++ b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAddToReviewSetOperation.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAddToReviewSetOperation Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAddToReviewSetOperation -CaseId $caseId -SourceCollectionId $sourceCollectionId + ``` This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAddToReviewSetOperation Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource.md b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource.md index 73492e65e1..2d7be26de1 100644 --- a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource.md +++ b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource -CaseId $caseId -SourceCollectionId $sourceCollectionId + ``` This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseSourceCollectionCustodianSource.md b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseSourceCollectionCustodianSource.md index 38d3cee52d..982b496b45 100644 --- a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseSourceCollectionCustodianSource.md +++ b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseSourceCollectionCustodianSource.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaComplianceEdiscoveryCaseSourceCollectionCustodianSource Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Get-MgBetaComplianceEdiscoveryCaseSourceCollectionCustodianSource -CaseId $caseId -SourceCollectionId $sourceCollectionId + ``` This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseSourceCollectionCustodianSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseSourceCollectionLastEstimateStatisticsOperation.md b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseSourceCollectionLastEstimateStatisticsOperation.md index 3c685674ba..e29f266334 100644 --- a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseSourceCollectionLastEstimateStatisticsOperation.md +++ b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseSourceCollectionLastEstimateStatisticsOperation.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaComplianceEdiscoveryCaseSourceCollectionLastEstimateStatisticsOperation Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Get-MgBetaComplianceEdiscoveryCaseSourceCollectionLastEstimateStatisticsOperation -CaseId $caseId -SourceCollectionId $sourceCollectionId + ``` This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseSourceCollectionLastEstimateStatisticsOperation Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseSourceCollectionNoncustodialSource.md b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseSourceCollectionNoncustodialSource.md index d79db1c100..02a5babf92 100644 --- a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseSourceCollectionNoncustodialSource.md +++ b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseSourceCollectionNoncustodialSource.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaComplianceEdiscoveryCaseSourceCollectionNoncustodialSource Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Get-MgBetaComplianceEdiscoveryCaseSourceCollectionNoncustodialSource -CaseId $caseId -SourceCollectionId $sourceCollectionId + ``` This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseSourceCollectionNoncustodialSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaComplianceEdiscoveryCaseSourceCollectionNoncustodialSource Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Compliance -Get-MgBetaComplianceEdiscoveryCaseSourceCollectionNoncustodialSource -CaseId $caseId -SourceCollectionId $sourceCollectionId -OutFile $outFileId -``` -This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseSourceCollectionNoncustodialSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseTag.md b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseTag.md index 21c771fe31..9ccfa8be57 100644 --- a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseTag.md +++ b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseTag.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaComplianceEdiscoveryCaseTag Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Compliance -Get-MgBetaComplianceEdiscoveryCaseTag -CaseId $caseId -TagId $tagId -``` -This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseTag Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaComplianceEdiscoveryCaseTag Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Get-MgBetaComplianceEdiscoveryCaseTag -CaseId $caseId + ``` This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseTag Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseTagChildTag.md b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseTagChildTag.md index 69898c61d8..7b28baba10 100644 --- a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseTagChildTag.md +++ b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseTagChildTag.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaComplianceEdiscoveryCaseTagChildTag Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Get-MgBetaComplianceEdiscoveryCaseTagChildTag -CaseId $caseId -TagId $tagId + ``` This example shows how to use the Get-MgBetaComplianceEdiscoveryCaseTagChildTag Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseTagParent.md b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseTagParent.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseTagParent.md +++ b/src/Compliance/beta/examples/Get-MgBetaComplianceEdiscoveryCaseTagParent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Initialize-MgBetaComplianceEdiscoveryCaseCustodian.md b/src/Compliance/beta/examples/Initialize-MgBetaComplianceEdiscoveryCaseCustodian.md index bb919b7e2b..90fbf811d7 100644 --- a/src/Compliance/beta/examples/Initialize-MgBetaComplianceEdiscoveryCaseCustodian.md +++ b/src/Compliance/beta/examples/Initialize-MgBetaComplianceEdiscoveryCaseCustodian.md @@ -1,7 +1,11 @@ -### Example 1: Using the Initialize-MgBetaComplianceEdiscoveryCaseCustodian Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Initialize-MgBetaComplianceEdiscoveryCaseCustodian -CaseId $caseId -CustodianId $custodianId + ``` This example shows how to use the Initialize-MgBetaComplianceEdiscoveryCaseCustodian Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Invoke-MgBetaAsComplianceEdiscoveryCaseTagHierarchy.md b/src/Compliance/beta/examples/Invoke-MgBetaAsComplianceEdiscoveryCaseTagHierarchy.md index c7e16b99d3..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Invoke-MgBetaAsComplianceEdiscoveryCaseTagHierarchy.md +++ b/src/Compliance/beta/examples/Invoke-MgBetaAsComplianceEdiscoveryCaseTagHierarchy.md @@ -1,7 +0,0 @@ -### Example 1: Using the Invoke-MgBetaAsComplianceEdiscoveryCaseTagHierarchy Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Compliance -Invoke-MgBetaAsComplianceEdiscoveryCaseTagHierarchy -CaseId $caseId -``` -This example shows how to use the Invoke-MgBetaAsComplianceEdiscoveryCaseTagHierarchy Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/beta/examples/Invoke-MgBetaEstimateComplianceEdiscoveryCaseSourceCollectionStatistics.md b/src/Compliance/beta/examples/Invoke-MgBetaEstimateComplianceEdiscoveryCaseSourceCollectionStatistics.md index 72fa675db6..ffbdcad054 100644 --- a/src/Compliance/beta/examples/Invoke-MgBetaEstimateComplianceEdiscoveryCaseSourceCollectionStatistics.md +++ b/src/Compliance/beta/examples/Invoke-MgBetaEstimateComplianceEdiscoveryCaseSourceCollectionStatistics.md @@ -1,7 +1,11 @@ -### Example 1: Using the Invoke-MgBetaEstimateComplianceEdiscoveryCaseSourceCollectionStatistics Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Invoke-MgBetaEstimateComplianceEdiscoveryCaseSourceCollectionStatistics -CaseId $caseId -SourceCollectionId $sourceCollectionId + ``` This example shows how to use the Invoke-MgBetaEstimateComplianceEdiscoveryCaseSourceCollectionStatistics Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Invoke-MgBetaReopenComplianceEdiscoveryCase.md b/src/Compliance/beta/examples/Invoke-MgBetaReopenComplianceEdiscoveryCase.md index d0d341e3e5..b75091fc08 100644 --- a/src/Compliance/beta/examples/Invoke-MgBetaReopenComplianceEdiscoveryCase.md +++ b/src/Compliance/beta/examples/Invoke-MgBetaReopenComplianceEdiscoveryCase.md @@ -1,7 +1,11 @@ -### Example 1: Using the Invoke-MgBetaReopenComplianceEdiscoveryCase Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Invoke-MgBetaReopenComplianceEdiscoveryCase -CaseId $caseId + ``` This example shows how to use the Invoke-MgBetaReopenComplianceEdiscoveryCase Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCase.md b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCase.md index 3672087ac3..4dee5cb026 100644 --- a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCase.md +++ b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCase.md @@ -1,10 +1,15 @@ -### Example 1: Using the New-MgBetaComplianceEdiscoveryCase Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + $params = @{ - DisplayName = "My Case 1" + displayName = "My Case 1" } + New-MgBetaComplianceEdiscoveryCase -BodyParameter $params + ``` This example shows how to use the New-MgBetaComplianceEdiscoveryCase Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseCustodian.md b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseCustodian.md index b966bd6b4b..6bf2031890 100644 --- a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseCustodian.md +++ b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseCustodian.md @@ -1,11 +1,16 @@ -### Example 1: Using the New-MgBetaComplianceEdiscoveryCaseCustodian Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + $params = @{ - Email = "AdeleV@contoso.com" - ApplyHoldToSources = "true" + email = "AdeleV@contoso.com" + applyHoldToSources = "true" } + New-MgBetaComplianceEdiscoveryCaseCustodian -CaseId $caseId -BodyParameter $params + ``` This example shows how to use the New-MgBetaComplianceEdiscoveryCaseCustodian Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseCustodianSiteSource.md b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseCustodianSiteSource.md index 37f533dec0..8c723ef538 100644 --- a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseCustodianSiteSource.md +++ b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseCustodianSiteSource.md @@ -1,12 +1,17 @@ -### Example 1: Using the New-MgBetaComplianceEdiscoveryCaseCustodianSiteSource Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + $params = @{ - Site = @{ - WebUrl = "https://contoso.sharepoint.com/sites/HumanResources" + site = @{ + webUrl = "https://contoso.sharepoint.com/sites/HumanResources" } } + New-MgBetaComplianceEdiscoveryCaseCustodianSiteSource -CaseId $caseId -CustodianId $custodianId -BodyParameter $params + ``` This example shows how to use the New-MgBetaComplianceEdiscoveryCaseCustodianSiteSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource.md b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource.md index 4af80cd016..df9290810b 100644 --- a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource.md +++ b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource.md @@ -1,24 +1,34 @@ -### Example 1: Using the New-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet +### Example 1: Create unifiedGroupSource with group SMTP address + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + $params = @{ - Group = @{ - Mail = "SecretGroup@contoso.com" + group = @{ + mail = "SecretGroup@contoso.com" } - IncludedSources = "mailbox, site" + includedSources = "mailbox, site" } + New-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource -CaseId $caseId -CustodianId $custodianId -BodyParameter $params + ``` -This example shows how to use the New-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the New-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet +This example will create unifiedgroupsource with group smtp address + +### Example 2: Create unifiedGroupSource with group@odata.bind + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + $params = @{ - "Group@odata.bind" = "https://graph.microsoft.com/v1.0/groups/b96f95c5-b1b3-4142-b039-8ac79e7d2c84" - IncludedSources = "mailbox, site" + "group@odata.bind" = "https://graph.microsoft.com/v1.0/groups/b96f95c5-b1b3-4142-b039-8ac79e7d2c84" + includedSources = "mailbox, site" } + New-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource -CaseId $caseId -CustodianId $custodianId -BodyParameter $params + ``` -This example shows how to use the New-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +This example will create unifiedgroupsource with group@odata.bind + diff --git a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseCustodianUserSource.md b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseCustodianUserSource.md index d879e5d0ff..a79e39137f 100644 --- a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseCustodianUserSource.md +++ b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseCustodianUserSource.md @@ -1,11 +1,16 @@ -### Example 1: Using the New-MgBetaComplianceEdiscoveryCaseCustodianUserSource Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + $params = @{ - Email = "megan@contoso.com" - IncludedSources = "mailbox, site" + email = "megan@contoso.com" + includedSources = "mailbox, site" } + New-MgBetaComplianceEdiscoveryCaseCustodianUserSource -CaseId $caseId -CustodianId $custodianId -BodyParameter $params + ``` This example shows how to use the New-MgBetaComplianceEdiscoveryCaseCustodianUserSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseLegalHold.md b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseLegalHold.md index fd1accc909..e69de29bb2 100644 --- a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseLegalHold.md +++ b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseLegalHold.md @@ -1,21 +0,0 @@ -### Example 1: Using the New-MgBetaComplianceEdiscoveryCaseLegalHold Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.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-MgBetaComplianceEdiscoveryCaseLegalHold -CaseId $caseId -BodyParameter $params -``` -This example shows how to use the New-MgBetaComplianceEdiscoveryCaseLegalHold Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource.md b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource.md index aca7a4db2f..f2ca3bf4e9 100644 --- a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource.md +++ b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource.md @@ -1,12 +1,17 @@ -### Example 1: Using the New-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + $params = @{ - Site = @{ - WebUrl = "https://contoso.sharepoint.com/sites/SecretSite" + site = @{ + webUrl = "https://contoso.sharepoint.com/sites/SecretSite" } } + New-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource -CaseId $caseId -LegalHoldId $legalHoldId -BodyParameter $params + ``` This example shows how to use the New-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource.md b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource.md +++ b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource.md b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource.md index 93d3e04d06..1356abd4a5 100644 --- a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource.md +++ b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource.md @@ -1,11 +1,16 @@ -### Example 1: Using the New-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + $params = @{ - Email = "adelev@contoso.com" - IncludedSources = "mailbox" + email = "adelev@contoso.com" + includedSources = "mailbox" } + New-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource -CaseId $caseId -LegalHoldId $legalHoldId -BodyParameter $params + ``` This example shows how to use the New-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource.md b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource.md index 2ff0ec0173..e0d3ca1f0f 100644 --- a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource.md +++ b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource.md @@ -1,27 +1,40 @@ -### Example 1: Using the New-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource Cmdlet +### Example 1: Add a noncustodial data source user or group mailbox with an email + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + $params = @{ - ApplyHoldToSource = $true - DataSource = @{ + applyHoldToSource = $true + dataSource = @{ "@odata.type" = "microsoft.graph.ediscovery.userSource" - Email = "adelev@contoso.com" + email = "adelev@contoso.com" } } + New-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource -CaseId $caseId -BodyParameter $params + ``` -This example shows how to use the New-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the New-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource Cmdlet +This example will add a noncustodial data source user or group mailbox with an email + +### Example 2: Add a noncustodial data source site with a URL + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + $params = @{ - ApplyHoldToSource = $false - DataSource = @{ + applyHoldToSource = $false + dataSource = @{ "@odata.type" = "microsoft.graph.ediscovery.siteSource" + site = @{ + webUrl = "https://contoso.sharepoint.com/sites/SecretSite" + } } } + New-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource -CaseId $caseId -BodyParameter $params + ``` -This example shows how to use the New-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +This example will add a noncustodial data source site with a url + diff --git a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseOperation.md b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseOperation.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseOperation.md +++ b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseOperation.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseReviewSet.md b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseReviewSet.md index 0c7db95e9d..d40b765a36 100644 --- a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseReviewSet.md +++ b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseReviewSet.md @@ -1,10 +1,15 @@ -### Example 1: Using the New-MgBetaComplianceEdiscoveryCaseReviewSet Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + $params = @{ - DisplayName = "My Reviewset 3" + displayName = "My Reviewset 3" } + New-MgBetaComplianceEdiscoveryCaseReviewSet -CaseId $caseId -BodyParameter $params + ``` This example shows how to use the New-MgBetaComplianceEdiscoveryCaseReviewSet Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseReviewSetQuery.md b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseReviewSetQuery.md index bd97bc638c..1e817d2cce 100644 --- a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseReviewSetQuery.md +++ b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseReviewSetQuery.md @@ -1,11 +1,16 @@ -### Example 1: Using the New-MgBetaComplianceEdiscoveryCaseReviewSetQuery Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + $params = @{ - DisplayName = "My Query 1" - Query = "(subject:"Quarterly Financials")" + displayName = "My Query 1" + query = "(subject:"Quarterly Financials")" } + New-MgBetaComplianceEdiscoveryCaseReviewSetQuery -CaseId $caseId -ReviewSetId $reviewSetId -BodyParameter $params + ``` This example shows how to use the New-MgBetaComplianceEdiscoveryCaseReviewSetQuery Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseSourceCollection.md b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseSourceCollection.md index 87595934ba..6be496bc80 100644 --- a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseSourceCollection.md +++ b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseSourceCollection.md @@ -1,14 +1,19 @@ -### Example 1: Using the New-MgBetaComplianceEdiscoveryCaseSourceCollection Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.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" - ) + 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-MgBetaComplianceEdiscoveryCaseSourceCollection -CaseId $caseId -BodyParameter $params + ``` This example shows how to use the New-MgBetaComplianceEdiscoveryCaseSourceCollection Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource.md b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource.md index e3ca0111c8..e69de29bb2 100644 --- a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource.md +++ b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource.md @@ -1,31 +0,0 @@ -### Example 1: Using the New-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Compliance -$params = @{ - "@odata.type" = "microsoft.graph.ediscovery.siteSource" -} -New-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource -CaseId $caseId -SourceCollectionId $sourceCollectionId -BodyParameter $params -``` -This example shows how to use the New-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the New-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Compliance -$params = @{ - "@odata.type" = "microsoft.graph.ediscovery.userSource" - Email = "badguy@contoso.com" -} -New-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource -CaseId $caseId -SourceCollectionId $sourceCollectionId -BodyParameter $params -``` -This example shows how to use the New-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 3: Using the New-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Compliance -$params = @{ - "@odata.type" = "microsoft.graph.ediscovery.siteSource" -} -New-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource -CaseId $caseId -SourceCollectionId $sourceCollectionId -BodyParameter $params -``` -This example shows how to use the New-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseTag.md b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseTag.md index 2cd81909fc..8230ddb532 100644 --- a/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseTag.md +++ b/src/Compliance/beta/examples/New-MgBetaComplianceEdiscoveryCaseTag.md @@ -1,12 +1,17 @@ -### Example 1: Using the New-MgBetaComplianceEdiscoveryCaseTag Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.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" + 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-MgBetaComplianceEdiscoveryCaseTag -CaseId $caseId -BodyParameter $params + ``` This example shows how to use the New-MgBetaComplianceEdiscoveryCaseTag Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Publish-MgBetaComplianceEdiscoveryCaseCustodian.md b/src/Compliance/beta/examples/Publish-MgBetaComplianceEdiscoveryCaseCustodian.md index 9fe1189cd5..300907bb02 100644 --- a/src/Compliance/beta/examples/Publish-MgBetaComplianceEdiscoveryCaseCustodian.md +++ b/src/Compliance/beta/examples/Publish-MgBetaComplianceEdiscoveryCaseCustodian.md @@ -1,7 +1,11 @@ -### Example 1: Using the Publish-MgBetaComplianceEdiscoveryCaseCustodian Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Publish-MgBetaComplianceEdiscoveryCaseCustodian -CaseId $caseId -CustodianId $custodianId + ``` This example shows how to use the Publish-MgBetaComplianceEdiscoveryCaseCustodian Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Publish-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource.md b/src/Compliance/beta/examples/Publish-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource.md index 51e8d243a3..73119138b3 100644 --- a/src/Compliance/beta/examples/Publish-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource.md +++ b/src/Compliance/beta/examples/Publish-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource.md @@ -1,7 +1,11 @@ -### Example 1: Using the Publish-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Publish-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource -CaseId $caseId -NoncustodialDataSourceId $noncustodialDataSourceId + ``` This example shows how to use the Publish-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscovery.md b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscovery.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscovery.md +++ b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscovery.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCase.md b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCase.md index ade9fd36a1..361ff5cc4d 100644 --- a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCase.md +++ b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCase.md @@ -1,7 +1,11 @@ -### Example 1: Using the Remove-MgBetaComplianceEdiscoveryCase Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Remove-MgBetaComplianceEdiscoveryCase -CaseId $caseId + ``` This example shows how to use the Remove-MgBetaComplianceEdiscoveryCase Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseCustodian.md b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseCustodian.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseCustodian.md +++ b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseCustodian.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseCustodianHold.md b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseCustodianHold.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseCustodianHold.md +++ b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseCustodianHold.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseCustodianSiteSource.md b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseCustodianSiteSource.md index f2c70e6ff1..7a202af4ae 100644 --- a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseCustodianSiteSource.md +++ b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseCustodianSiteSource.md @@ -1,7 +1,11 @@ -### Example 1: Using the Remove-MgBetaComplianceEdiscoveryCaseCustodianSiteSource Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Remove-MgBetaComplianceEdiscoveryCaseCustodianSiteSource -CaseId $caseId -CustodianId $custodianId -SiteSourceId $siteSourceId + ``` This example shows how to use the Remove-MgBetaComplianceEdiscoveryCaseCustodianSiteSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource.md b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource.md index 23eb15203a..5fab26d00f 100644 --- a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource.md +++ b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource.md @@ -1,7 +1,11 @@ -### Example 1: Using the Remove-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Remove-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource -CaseId $caseId -CustodianId $custodianId -UnifiedGroupSourceId $unifiedGroupSourceId + ``` This example shows how to use the Remove-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseCustodianUserSource.md b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseCustodianUserSource.md index 406e76756b..de2ec2db66 100644 --- a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseCustodianUserSource.md +++ b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseCustodianUserSource.md @@ -1,7 +1,11 @@ -### Example 1: Using the Remove-MgBetaComplianceEdiscoveryCaseCustodianUserSource Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Remove-MgBetaComplianceEdiscoveryCaseCustodianUserSource -CaseId $caseId -CustodianId $custodianId -UserSourceId $userSourceId + ``` This example shows how to use the Remove-MgBetaComplianceEdiscoveryCaseCustodianUserSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseLegalHold.md b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseLegalHold.md index 704f1bea9a..16798ccb5a 100644 --- a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseLegalHold.md +++ b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseLegalHold.md @@ -1,7 +1,11 @@ -### Example 1: Using the Remove-MgBetaComplianceEdiscoveryCaseLegalHold Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Remove-MgBetaComplianceEdiscoveryCaseLegalHold -CaseId $caseId -LegalHoldId $legalHoldId + ``` This example shows how to use the Remove-MgBetaComplianceEdiscoveryCaseLegalHold Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource.md b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource.md +++ b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource.md b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource.md +++ b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource.md b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource.md +++ b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource.md b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource.md +++ b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceHold.md b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceHold.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceHold.md +++ b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceHold.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseOperation.md b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseOperation.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseOperation.md +++ b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseOperation.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseReviewSet.md b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseReviewSet.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseReviewSet.md +++ b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseReviewSet.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseReviewSetQuery.md b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseReviewSetQuery.md index a9b44a4a2a..769a4c7c30 100644 --- a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseReviewSetQuery.md +++ b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseReviewSetQuery.md @@ -1,7 +1,11 @@ -### Example 1: Using the Remove-MgBetaComplianceEdiscoveryCaseReviewSetQuery Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Remove-MgBetaComplianceEdiscoveryCaseReviewSetQuery -CaseId $caseId -ReviewSetId $reviewSetId -ReviewSetQueryId $reviewSetQueryId + ``` This example shows how to use the Remove-MgBetaComplianceEdiscoveryCaseReviewSetQuery Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseSetting.md b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseSetting.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseSetting.md +++ b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseSetting.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseSourceCollection.md b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseSourceCollection.md index 13fe3cc56d..ccd6e6a02e 100644 --- a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseSourceCollection.md +++ b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseSourceCollection.md @@ -1,7 +1,11 @@ -### Example 1: Using the Remove-MgBetaComplianceEdiscoveryCaseSourceCollection Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Remove-MgBetaComplianceEdiscoveryCaseSourceCollection -CaseId $caseId -SourceCollectionId $sourceCollectionId + ``` This example shows how to use the Remove-MgBetaComplianceEdiscoveryCaseSourceCollection Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource.md b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource.md +++ b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseTag.md b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseTag.md index 29af43c2fb..83e8d546d1 100644 --- a/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseTag.md +++ b/src/Compliance/beta/examples/Remove-MgBetaComplianceEdiscoveryCaseTag.md @@ -1,7 +1,11 @@ -### Example 1: Using the Remove-MgBetaComplianceEdiscoveryCaseTag Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Remove-MgBetaComplianceEdiscoveryCaseTag -CaseId $caseId -TagId $tagId -Forcedelete true + ``` This example shows how to use the Remove-MgBetaComplianceEdiscoveryCaseTag Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Reset-MgBetaComplianceEdiscoveryCaseSettingToDefault.md b/src/Compliance/beta/examples/Reset-MgBetaComplianceEdiscoveryCaseSettingToDefault.md index ef1a8eca58..cc24aeef9a 100644 --- a/src/Compliance/beta/examples/Reset-MgBetaComplianceEdiscoveryCaseSettingToDefault.md +++ b/src/Compliance/beta/examples/Reset-MgBetaComplianceEdiscoveryCaseSettingToDefault.md @@ -1,7 +1,11 @@ -### Example 1: Using the Reset-MgBetaComplianceEdiscoveryCaseSettingToDefault Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + Reset-MgBetaComplianceEdiscoveryCaseSettingToDefault -CaseId $caseId + ``` This example shows how to use the Reset-MgBetaComplianceEdiscoveryCaseSettingToDefault Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Update-MgBetaCompliance.md b/src/Compliance/beta/examples/Update-MgBetaCompliance.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Update-MgBetaCompliance.md +++ b/src/Compliance/beta/examples/Update-MgBetaCompliance.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscovery.md b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscovery.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscovery.md +++ b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscovery.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCase.md b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCase.md index b21210d76e..81bd3c2fd1 100644 --- a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCase.md +++ b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCase.md @@ -1,12 +1,17 @@ -### Example 1: Using the Update-MgBetaComplianceEdiscoveryCase Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + $params = @{ - DisplayName = "My Case 1 - Renamed" - Description = "Updated description" - ExternalId = "Updated externalId" + displayName = "My Case 1 - Renamed" + description = "Updated description" + externalId = "Updated externalId" } + Update-MgBetaComplianceEdiscoveryCase -CaseId $caseId -BodyParameter $params + ``` This example shows how to use the Update-MgBetaComplianceEdiscoveryCase Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseCustodian.md b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseCustodian.md index cc13399a6d..f94f1dc103 100644 --- a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseCustodian.md +++ b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseCustodian.md @@ -1,10 +1,15 @@ -### Example 1: Using the Update-MgBetaComplianceEdiscoveryCaseCustodian Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + $params = @{ - ApplyHoldToSources = "false" + applyHoldToSources = "false" } + Update-MgBetaComplianceEdiscoveryCaseCustodian -CaseId $caseId -CustodianId $custodianId -BodyParameter $params + ``` This example shows how to use the Update-MgBetaComplianceEdiscoveryCaseCustodian Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseCustodianIndex.md b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseCustodianIndex.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseCustodianIndex.md +++ b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseCustodianIndex.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseCustodianSiteSource.md b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseCustodianSiteSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseCustodianSiteSource.md +++ b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseCustodianSiteSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource.md b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource.md +++ b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseCustodianUserSource.md b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseCustodianUserSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseCustodianUserSource.md +++ b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseCustodianUserSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseLegalHold.md b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseLegalHold.md index a6134549a1..8447bad43a 100644 --- a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseLegalHold.md +++ b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseLegalHold.md @@ -1,10 +1,15 @@ -### Example 1: Using the Update-MgBetaComplianceEdiscoveryCaseLegalHold Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + $params = @{ - Description = "This is a description for a legalHold" + description = "This is a description for a legalHold" } + Update-MgBetaComplianceEdiscoveryCaseLegalHold -CaseId $caseId -LegalHoldId $legalHoldId -BodyParameter $params + ``` This example shows how to use the Update-MgBetaComplianceEdiscoveryCaseLegalHold Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource.md b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource.md +++ b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource.md b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource.md +++ b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource.md b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource.md +++ b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource.md b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource.md +++ b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceIndex.md b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceIndex.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceIndex.md +++ b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceIndex.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseOperation.md b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseOperation.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseOperation.md +++ b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseOperation.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseReviewSet.md b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseReviewSet.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseReviewSet.md +++ b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseReviewSet.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseReviewSetQuery.md b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseReviewSetQuery.md index 113551b181..ead74bb822 100644 --- a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseReviewSetQuery.md +++ b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseReviewSetQuery.md @@ -1,10 +1,15 @@ -### Example 1: Using the Update-MgBetaComplianceEdiscoveryCaseReviewSetQuery Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + $params = @{ - DisplayName = "My Query 1 - Renamed" + displayName = "My Query 1 - Renamed" } + Update-MgBetaComplianceEdiscoveryCaseReviewSetQuery -CaseId $caseId -ReviewSetId $reviewSetId -ReviewSetQueryId $reviewSetQueryId -BodyParameter $params + ``` This example shows how to use the Update-MgBetaComplianceEdiscoveryCaseReviewSetQuery Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseSetting.md b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseSetting.md index f852024df0..0dd2ffa0a4 100644 --- a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseSetting.md +++ b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseSetting.md @@ -1,50 +1,30 @@ -### Example 1: Using the Update-MgBetaComplianceEdiscoveryCaseSetting Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + $params = @{ - RedundancyDetection = @{ - IsEnabled = $false - SimilarityThreshold = 70 - MinWords = 12 - MaxWords = 400000 + redundancyDetection = @{ + isEnabled = $false + similarityThreshold = 70 + minWords = 12 + maxWords = 400000 } - TopicModeling = @{ - IsEnabled = $false - IgnoreNumbers = $false - TopicCount = 50 - DynamicallyAdjustTopicCount = $false + topicModeling = @{ + isEnabled = $false + ignoreNumbers = $false + topicCount = 50 + dynamicallyAdjustTopicCount = $false } - Ocr = @{ - IsEnabled = $true - MaxImageSize = 12000 + ocr = @{ + isEnabled = $true + maxImageSize = 12000 } } + Update-MgBetaComplianceEdiscoveryCaseSetting -CaseId $caseId -BodyParameter $params + ``` This example shows how to use the Update-MgBetaComplianceEdiscoveryCaseSetting Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Update-MgBetaComplianceEdiscoveryCaseSetting Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.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-MgBetaComplianceEdiscoveryCaseSetting -CaseId $caseId -BodyParameter $params -``` -This example shows how to use the Update-MgBetaComplianceEdiscoveryCaseSetting Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseSourceCollection.md b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseSourceCollection.md index 616122ac7d..6f20146f33 100644 --- a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseSourceCollection.md +++ b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseSourceCollection.md @@ -1,10 +1,15 @@ -### Example 1: Using the Update-MgBetaComplianceEdiscoveryCaseSourceCollection Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + $params = @{ - DisplayName = "Quarterly Financials search" + displayName = "Quarterly Financials search" } + Update-MgBetaComplianceEdiscoveryCaseSourceCollection -CaseId $caseId -SourceCollectionId $sourceCollectionId -BodyParameter $params + ``` This example shows how to use the Update-MgBetaComplianceEdiscoveryCaseSourceCollection Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource.md b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource.md +++ b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseTag.md b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseTag.md index 7cbc94e4e6..658ef75b2d 100644 --- a/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseTag.md +++ b/src/Compliance/beta/examples/Update-MgBetaComplianceEdiscoveryCaseTag.md @@ -1,10 +1,15 @@ -### Example 1: Using the Update-MgBetaComplianceEdiscoveryCaseTag Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Compliance + $params = @{ - Description = "This is an updated description." + description = "This is an updated description." } + Update-MgBetaComplianceEdiscoveryCaseTag -CaseId $caseId -TagId $tagId -BodyParameter $params + ``` This example shows how to use the Update-MgBetaComplianceEdiscoveryCaseTag Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Compliance/v1.0/examples/Get-MgCompliance.md b/src/Compliance/v1.0/examples/Get-MgCompliance.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/v1.0/examples/Get-MgCompliance.md +++ b/src/Compliance/v1.0/examples/Get-MgCompliance.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Compliance/v1.0/examples/Update-MgCompliance.md b/src/Compliance/v1.0/examples/Update-MgCompliance.md index 093355d11d..e69de29bb2 100644 --- a/src/Compliance/v1.0/examples/Update-MgCompliance.md +++ b/src/Compliance/v1.0/examples/Update-MgCompliance.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserActivityHistoryItemActivity.md b/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserActivityHistoryItemActivity.md index 093355d11d..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserActivityHistoryItemActivity.md +++ b/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserActivityHistoryItemActivity.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserDeviceCommandResponsepayload.md b/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserDeviceCommandResponsepayload.md index 093355d11d..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserDeviceCommandResponsepayload.md +++ b/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserDeviceCommandResponsepayload.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserDeviceMemberOf.md b/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserDeviceMemberOf.md index 093355d11d..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserDeviceMemberOf.md +++ b/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserDeviceMemberOf.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserDeviceRegisteredOwner.md b/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserDeviceRegisteredOwner.md index 093355d11d..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserDeviceRegisteredOwner.md +++ b/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserDeviceRegisteredOwner.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserDeviceRegisteredOwnerByRef.md b/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserDeviceRegisteredOwnerByRef.md index 093355d11d..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserDeviceRegisteredOwnerByRef.md +++ b/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserDeviceRegisteredOwnerByRef.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserDeviceRegisteredUser.md b/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserDeviceRegisteredUser.md index 093355d11d..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserDeviceRegisteredUser.md +++ b/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserDeviceRegisteredUser.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserDeviceTransitiveMemberOf.md b/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserDeviceTransitiveMemberOf.md index 093355d11d..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserDeviceTransitiveMemberOf.md +++ b/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserDeviceTransitiveMemberOf.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserDeviceUsageRights.md b/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserDeviceUsageRights.md index 093355d11d..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserDeviceUsageRights.md +++ b/src/CrossDeviceExperiences/beta/examples/Get-MgBetaUserDeviceUsageRights.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/beta/examples/New-MgBetaUserActivity.md b/src/CrossDeviceExperiences/beta/examples/New-MgBetaUserActivity.md index 093355d11d..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/beta/examples/New-MgBetaUserActivity.md +++ b/src/CrossDeviceExperiences/beta/examples/New-MgBetaUserActivity.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/beta/examples/New-MgBetaUserActivityHistoryItem.md b/src/CrossDeviceExperiences/beta/examples/New-MgBetaUserActivityHistoryItem.md index 093355d11d..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/beta/examples/New-MgBetaUserActivityHistoryItem.md +++ b/src/CrossDeviceExperiences/beta/examples/New-MgBetaUserActivityHistoryItem.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/beta/examples/New-MgBetaUserDevice.md b/src/CrossDeviceExperiences/beta/examples/New-MgBetaUserDevice.md index 093355d11d..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/beta/examples/New-MgBetaUserDevice.md +++ b/src/CrossDeviceExperiences/beta/examples/New-MgBetaUserDevice.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/beta/examples/New-MgBetaUserDeviceCommand.md b/src/CrossDeviceExperiences/beta/examples/New-MgBetaUserDeviceCommand.md index 093355d11d..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/beta/examples/New-MgBetaUserDeviceCommand.md +++ b/src/CrossDeviceExperiences/beta/examples/New-MgBetaUserDeviceCommand.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/beta/examples/New-MgBetaUserDeviceExtension.md b/src/CrossDeviceExperiences/beta/examples/New-MgBetaUserDeviceExtension.md index 093355d11d..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/beta/examples/New-MgBetaUserDeviceExtension.md +++ b/src/CrossDeviceExperiences/beta/examples/New-MgBetaUserDeviceExtension.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/beta/examples/New-MgBetaUserDeviceRegisteredOwnerByRef.md b/src/CrossDeviceExperiences/beta/examples/New-MgBetaUserDeviceRegisteredOwnerByRef.md index 093355d11d..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/beta/examples/New-MgBetaUserDeviceRegisteredOwnerByRef.md +++ b/src/CrossDeviceExperiences/beta/examples/New-MgBetaUserDeviceRegisteredOwnerByRef.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/beta/examples/New-MgBetaUserDeviceUsageRights.md b/src/CrossDeviceExperiences/beta/examples/New-MgBetaUserDeviceUsageRights.md index 093355d11d..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/beta/examples/New-MgBetaUserDeviceUsageRights.md +++ b/src/CrossDeviceExperiences/beta/examples/New-MgBetaUserDeviceUsageRights.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/beta/examples/Remove-MgBetaUserActivityHistoryItem.md b/src/CrossDeviceExperiences/beta/examples/Remove-MgBetaUserActivityHistoryItem.md index 093355d11d..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/beta/examples/Remove-MgBetaUserActivityHistoryItem.md +++ b/src/CrossDeviceExperiences/beta/examples/Remove-MgBetaUserActivityHistoryItem.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/beta/examples/Remove-MgBetaUserDevice.md b/src/CrossDeviceExperiences/beta/examples/Remove-MgBetaUserDevice.md index 093355d11d..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/beta/examples/Remove-MgBetaUserDevice.md +++ b/src/CrossDeviceExperiences/beta/examples/Remove-MgBetaUserDevice.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/beta/examples/Remove-MgBetaUserDeviceCommand.md b/src/CrossDeviceExperiences/beta/examples/Remove-MgBetaUserDeviceCommand.md index 093355d11d..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/beta/examples/Remove-MgBetaUserDeviceCommand.md +++ b/src/CrossDeviceExperiences/beta/examples/Remove-MgBetaUserDeviceCommand.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/beta/examples/Remove-MgBetaUserDeviceExtension.md b/src/CrossDeviceExperiences/beta/examples/Remove-MgBetaUserDeviceExtension.md index 093355d11d..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/beta/examples/Remove-MgBetaUserDeviceExtension.md +++ b/src/CrossDeviceExperiences/beta/examples/Remove-MgBetaUserDeviceExtension.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/beta/examples/Remove-MgBetaUserDeviceRegisteredOwnerByRef.md b/src/CrossDeviceExperiences/beta/examples/Remove-MgBetaUserDeviceRegisteredOwnerByRef.md index 093355d11d..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/beta/examples/Remove-MgBetaUserDeviceRegisteredOwnerByRef.md +++ b/src/CrossDeviceExperiences/beta/examples/Remove-MgBetaUserDeviceRegisteredOwnerByRef.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/beta/examples/Remove-MgBetaUserDeviceUsageRights.md b/src/CrossDeviceExperiences/beta/examples/Remove-MgBetaUserDeviceUsageRights.md index 093355d11d..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/beta/examples/Remove-MgBetaUserDeviceUsageRights.md +++ b/src/CrossDeviceExperiences/beta/examples/Remove-MgBetaUserDeviceUsageRights.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/beta/examples/Update-MgBetaUserActivity.md b/src/CrossDeviceExperiences/beta/examples/Update-MgBetaUserActivity.md index f6c6949389..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/beta/examples/Update-MgBetaUserActivity.md +++ b/src/CrossDeviceExperiences/beta/examples/Update-MgBetaUserActivity.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/CrossDeviceExperiences/beta/examples/Update-MgBetaUserDevice.md b/src/CrossDeviceExperiences/beta/examples/Update-MgBetaUserDevice.md index 093355d11d..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/beta/examples/Update-MgBetaUserDevice.md +++ b/src/CrossDeviceExperiences/beta/examples/Update-MgBetaUserDevice.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/beta/examples/Update-MgBetaUserDeviceCommand.md b/src/CrossDeviceExperiences/beta/examples/Update-MgBetaUserDeviceCommand.md index 093355d11d..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/beta/examples/Update-MgBetaUserDeviceCommand.md +++ b/src/CrossDeviceExperiences/beta/examples/Update-MgBetaUserDeviceCommand.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/beta/examples/Update-MgBetaUserDeviceExtension.md b/src/CrossDeviceExperiences/beta/examples/Update-MgBetaUserDeviceExtension.md index 093355d11d..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/beta/examples/Update-MgBetaUserDeviceExtension.md +++ b/src/CrossDeviceExperiences/beta/examples/Update-MgBetaUserDeviceExtension.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/beta/examples/Update-MgBetaUserDeviceUsageRights.md b/src/CrossDeviceExperiences/beta/examples/Update-MgBetaUserDeviceUsageRights.md index 093355d11d..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/beta/examples/Update-MgBetaUserDeviceUsageRights.md +++ b/src/CrossDeviceExperiences/beta/examples/Update-MgBetaUserDeviceUsageRights.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/v1.0/examples/Get-MgUserActivityHistoryItemActivity.md b/src/CrossDeviceExperiences/v1.0/examples/Get-MgUserActivityHistoryItemActivity.md index 093355d11d..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/v1.0/examples/Get-MgUserActivityHistoryItemActivity.md +++ b/src/CrossDeviceExperiences/v1.0/examples/Get-MgUserActivityHistoryItemActivity.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/v1.0/examples/New-MgUserActivity.md b/src/CrossDeviceExperiences/v1.0/examples/New-MgUserActivity.md index 093355d11d..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/v1.0/examples/New-MgUserActivity.md +++ b/src/CrossDeviceExperiences/v1.0/examples/New-MgUserActivity.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/v1.0/examples/New-MgUserActivityHistoryItem.md b/src/CrossDeviceExperiences/v1.0/examples/New-MgUserActivityHistoryItem.md index 093355d11d..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/v1.0/examples/New-MgUserActivityHistoryItem.md +++ b/src/CrossDeviceExperiences/v1.0/examples/New-MgUserActivityHistoryItem.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/v1.0/examples/Remove-MgUserActivityHistoryItem.md b/src/CrossDeviceExperiences/v1.0/examples/Remove-MgUserActivityHistoryItem.md index 093355d11d..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/v1.0/examples/Remove-MgUserActivityHistoryItem.md +++ b/src/CrossDeviceExperiences/v1.0/examples/Remove-MgUserActivityHistoryItem.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/CrossDeviceExperiences/v1.0/examples/Update-MgUserActivity.md b/src/CrossDeviceExperiences/v1.0/examples/Update-MgUserActivity.md index f6c6949389..e69de29bb2 100644 --- a/src/CrossDeviceExperiences/v1.0/examples/Update-MgUserActivity.md +++ b/src/CrossDeviceExperiences/v1.0/examples/Update-MgUserActivity.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/DeviceManagement.Actions/beta/examples/Add-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileLanguageFile.md b/src/DeviceManagement.Actions/beta/examples/Add-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileLanguageFile.md index 093355d11d..e69de29bb2 100644 --- a/src/DeviceManagement.Actions/beta/examples/Add-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileLanguageFile.md +++ b/src/DeviceManagement.Actions/beta/examples/Add-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileLanguageFile.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/DeviceManagement.Actions/beta/examples/Approve-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSettingApp.md b/src/DeviceManagement.Actions/beta/examples/Approve-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSettingApp.md index 093355d11d..e69de29bb2 100644 --- a/src/DeviceManagement.Actions/beta/examples/Approve-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSettingApp.md +++ b/src/DeviceManagement.Actions/beta/examples/Approve-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSettingApp.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/DeviceManagement.Actions/beta/examples/Approve-MgBetaDeviceManagementZebraFotaConnectorFotaApp.md b/src/DeviceManagement.Actions/beta/examples/Approve-MgBetaDeviceManagementZebraFotaConnectorFotaApp.md index 093355d11d..e69de29bb2 100644 --- a/src/DeviceManagement.Actions/beta/examples/Approve-MgBetaDeviceManagementZebraFotaConnectorFotaApp.md +++ b/src/DeviceManagement.Actions/beta/examples/Approve-MgBetaDeviceManagementZebraFotaConnectorFotaApp.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/DeviceManagement.Actions/beta/examples/Clear-MgBetaDeviceManagementComanagedDevice.md b/src/DeviceManagement.Actions/beta/examples/Clear-MgBetaDeviceManagementComanagedDevice.md index 093355d11d..e69de29bb2 100644 --- a/src/DeviceManagement.Actions/beta/examples/Clear-MgBetaDeviceManagementComanagedDevice.md +++ b/src/DeviceManagement.Actions/beta/examples/Clear-MgBetaDeviceManagementComanagedDevice.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/DeviceManagement.Actions/beta/examples/Clear-MgBetaDeviceManagementManagedDevice.md b/src/DeviceManagement.Actions/beta/examples/Clear-MgBetaDeviceManagementManagedDevice.md index 093355d11d..e69de29bb2 100644 --- a/src/DeviceManagement.Actions/beta/examples/Clear-MgBetaDeviceManagementManagedDevice.md +++ b/src/DeviceManagement.Actions/beta/examples/Clear-MgBetaDeviceManagementManagedDevice.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/DeviceManagement.Actions/beta/examples/Complete-MgBetaDeviceManagementAndroidForWorkSettingSignup.md b/src/DeviceManagement.Actions/beta/examples/Complete-MgBetaDeviceManagementAndroidForWorkSettingSignup.md index 093355d11d..e69de29bb2 100644 --- a/src/DeviceManagement.Actions/beta/examples/Complete-MgBetaDeviceManagementAndroidForWorkSettingSignup.md +++ b/src/DeviceManagement.Actions/beta/examples/Complete-MgBetaDeviceManagementAndroidForWorkSettingSignup.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/DeviceManagement.Actions/beta/examples/Complete-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSettingSignup.md b/src/DeviceManagement.Actions/beta/examples/Complete-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSettingSignup.md index 093355d11d..e69de29bb2 100644 --- a/src/DeviceManagement.Actions/beta/examples/Complete-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSettingSignup.md +++ b/src/DeviceManagement.Actions/beta/examples/Complete-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSettingSignup.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/DeviceManagement.Actions/beta/examples/Connect-MgBetaDeviceManagementChromeOSOnboardingSetting.md b/src/DeviceManagement.Actions/beta/examples/Connect-MgBetaDeviceManagementChromeOSOnboardingSetting.md index 093355d11d..e69de29bb2 100644 --- a/src/DeviceManagement.Actions/beta/examples/Connect-MgBetaDeviceManagementChromeOSOnboardingSetting.md +++ b/src/DeviceManagement.Actions/beta/examples/Connect-MgBetaDeviceManagementChromeOSOnboardingSetting.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/DeviceManagement.Actions/beta/examples/Connect-MgBetaDeviceManagementZebraFotaConnector.md b/src/DeviceManagement.Actions/beta/examples/Connect-MgBetaDeviceManagementZebraFotaConnector.md index 093355d11d..e69de29bb2 100644 --- a/src/DeviceManagement.Actions/beta/examples/Connect-MgBetaDeviceManagementZebraFotaConnector.md +++ b/src/DeviceManagement.Actions/beta/examples/Connect-MgBetaDeviceManagementZebraFotaConnector.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/DeviceManagement.Actions/beta/examples/Copy-MgBetaDeviceManagementReusablePolicySetting.md b/src/DeviceManagement.Actions/beta/examples/Copy-MgBetaDeviceManagementReusablePolicySetting.md index 093355d11d..e69de29bb2 100644 --- a/src/DeviceManagement.Actions/beta/examples/Copy-MgBetaDeviceManagementReusablePolicySetting.md +++ b/src/DeviceManagement.Actions/beta/examples/Copy-MgBetaDeviceManagementReusablePolicySetting.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/DeviceManagement.Actions/beta/examples/Disable-MgBetaDeviceManagementComanagedDevice.md b/src/DeviceManagement.Actions/beta/examples/Disable-MgBetaDeviceManagementComanagedDevice.md index 093355d11d..e69de29bb2 100644 --- a/src/DeviceManagement.Actions/beta/examples/Disable-MgBetaDeviceManagementComanagedDevice.md +++ b/src/DeviceManagement.Actions/beta/examples/Disable-MgBetaDeviceManagementComanagedDevice.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/DeviceManagement.Actions/beta/examples/Disable-MgBetaDeviceManagementComanagedDeviceLostMode.md b/src/DeviceManagement.Actions/beta/examples/Disable-MgBetaDeviceManagementComanagedDeviceLostMode.md index 093355d11d..e69de29bb2 100644 --- a/src/DeviceManagement.Actions/beta/examples/Disable-MgBetaDeviceManagementComanagedDeviceLostMode.md +++ b/src/DeviceManagement.Actions/beta/examples/Disable-MgBetaDeviceManagementComanagedDeviceLostMode.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/DeviceManagement.Actions/beta/examples/Disable-MgBetaDeviceManagementManagedDevice.md b/src/DeviceManagement.Actions/beta/examples/Disable-MgBetaDeviceManagementManagedDevice.md index 093355d11d..e69de29bb2 100644 --- a/src/DeviceManagement.Actions/beta/examples/Disable-MgBetaDeviceManagementManagedDevice.md +++ b/src/DeviceManagement.Actions/beta/examples/Disable-MgBetaDeviceManagementManagedDevice.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/DeviceManagement.Actions/beta/examples/Disable-MgBetaDeviceManagementManagedDeviceLostMode.md b/src/DeviceManagement.Actions/beta/examples/Disable-MgBetaDeviceManagementManagedDeviceLostMode.md index 093355d11d..e69de29bb2 100644 --- a/src/DeviceManagement.Actions/beta/examples/Disable-MgBetaDeviceManagementManagedDeviceLostMode.md +++ b/src/DeviceManagement.Actions/beta/examples/Disable-MgBetaDeviceManagementManagedDeviceLostMode.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/DeviceManagement.Administration/beta/examples/Get-MgBetaDeviceManagementApplePushNotificationCertificate.md b/src/DeviceManagement.Administration/beta/examples/Get-MgBetaDeviceManagementApplePushNotificationCertificate.md index 093355d11d..e69de29bb2 100644 --- a/src/DeviceManagement.Administration/beta/examples/Get-MgBetaDeviceManagementApplePushNotificationCertificate.md +++ b/src/DeviceManagement.Administration/beta/examples/Get-MgBetaDeviceManagementApplePushNotificationCertificate.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/DeviceManagement.Functions/beta/examples/Compare-MgBetaDeviceManagementIntent.md b/src/DeviceManagement.Functions/beta/examples/Compare-MgBetaDeviceManagementIntent.md index 093355d11d..e69de29bb2 100644 --- a/src/DeviceManagement.Functions/beta/examples/Compare-MgBetaDeviceManagementIntent.md +++ b/src/DeviceManagement.Functions/beta/examples/Compare-MgBetaDeviceManagementIntent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/DeviceManagement.Functions/beta/examples/Compare-MgBetaDeviceManagementTemplate.md b/src/DeviceManagement.Functions/beta/examples/Compare-MgBetaDeviceManagementTemplate.md index 093355d11d..e69de29bb2 100644 --- a/src/DeviceManagement.Functions/beta/examples/Compare-MgBetaDeviceManagementTemplate.md +++ b/src/DeviceManagement.Functions/beta/examples/Compare-MgBetaDeviceManagementTemplate.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/DeviceManagement.Functions/beta/examples/Compare-MgBetaDeviceManagementTemplateMigratableTo.md b/src/DeviceManagement.Functions/beta/examples/Compare-MgBetaDeviceManagementTemplateMigratableTo.md index 093355d11d..e69de29bb2 100644 --- a/src/DeviceManagement.Functions/beta/examples/Compare-MgBetaDeviceManagementTemplateMigratableTo.md +++ b/src/DeviceManagement.Functions/beta/examples/Compare-MgBetaDeviceManagementTemplateMigratableTo.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/DeviceManagement/beta/examples/Get-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummary.md b/src/DeviceManagement/beta/examples/Get-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummary.md index 093355d11d..e69de29bb2 100644 --- a/src/DeviceManagement/beta/examples/Get-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummary.md +++ b/src/DeviceManagement/beta/examples/Get-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummary.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/DeviceManagement/beta/examples/Get-MgBetaDeviceManagementAndroidForWorkSetting.md b/src/DeviceManagement/beta/examples/Get-MgBetaDeviceManagementAndroidForWorkSetting.md index 093355d11d..e69de29bb2 100644 --- a/src/DeviceManagement/beta/examples/Get-MgBetaDeviceManagementAndroidForWorkSetting.md +++ b/src/DeviceManagement/beta/examples/Get-MgBetaDeviceManagementAndroidForWorkSetting.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/DeviceManagement/beta/examples/Get-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSetting.md b/src/DeviceManagement/beta/examples/Get-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSetting.md index 093355d11d..e69de29bb2 100644 --- a/src/DeviceManagement/beta/examples/Get-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSetting.md +++ b/src/DeviceManagement/beta/examples/Get-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSetting.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/DeviceManagement/beta/examples/Get-MgBetaDeviceManagementComanagedDeviceCategory.md b/src/DeviceManagement/beta/examples/Get-MgBetaDeviceManagementComanagedDeviceCategory.md index 093355d11d..e69de29bb2 100644 --- a/src/DeviceManagement/beta/examples/Get-MgBetaDeviceManagementComanagedDeviceCategory.md +++ b/src/DeviceManagement/beta/examples/Get-MgBetaDeviceManagementComanagedDeviceCategory.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/DeviceManagement/beta/examples/Get-MgBetaDeviceManagementComanagedDeviceUser.md b/src/DeviceManagement/beta/examples/Get-MgBetaDeviceManagementComanagedDeviceUser.md index 093355d11d..e69de29bb2 100644 --- a/src/DeviceManagement/beta/examples/Get-MgBetaDeviceManagementComanagedDeviceUser.md +++ b/src/DeviceManagement/beta/examples/Get-MgBetaDeviceManagementComanagedDeviceUser.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrint.md b/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrint.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrint.md +++ b/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrint.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintPrinterCapability.md b/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintPrinterCapability.md index 6895247a88..e69de29bb2 100644 --- a/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintPrinterCapability.md +++ b/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintPrinterCapability.md @@ -1,7 +0,0 @@ -### Example 1: Using the Get-MgBetaPrintPrinterCapability Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Devices.CloudPrint -Get-MgBetaPrintPrinterCapability -PrinterId $printerId -``` -This example shows how to use the Get-MgBetaPrintPrinterCapability Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintPrinterShareAllowedGroup.md b/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintPrinterShareAllowedGroup.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintPrinterShareAllowedGroup.md +++ b/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintPrinterShareAllowedGroup.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintPrinterShareAllowedGroupByRef.md b/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintPrinterShareAllowedGroupByRef.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintPrinterShareAllowedGroupByRef.md +++ b/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintPrinterShareAllowedGroupByRef.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintPrinterShareAllowedUser.md b/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintPrinterShareAllowedUser.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintPrinterShareAllowedUser.md +++ b/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintPrinterShareAllowedUser.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintPrinterShareAllowedUserByRef.md b/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintPrinterShareAllowedUserByRef.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintPrinterShareAllowedUserByRef.md +++ b/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintPrinterShareAllowedUserByRef.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintPrinterSharePrinter.md b/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintPrinterSharePrinter.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintPrinterSharePrinter.md +++ b/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintPrinterSharePrinter.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintPrinterTaskTriggerDefinition.md b/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintPrinterTaskTriggerDefinition.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintPrinterTaskTriggerDefinition.md +++ b/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintPrinterTaskTriggerDefinition.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintSharePrinter.md b/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintSharePrinter.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintSharePrinter.md +++ b/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintSharePrinter.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintTaskDefinitionTaskTrigger.md b/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintTaskDefinitionTaskTrigger.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintTaskDefinitionTaskTrigger.md +++ b/src/Devices.CloudPrint/beta/examples/Get-MgBetaPrintTaskDefinitionTaskTrigger.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.CloudPrint/beta/examples/New-MgBetaPrintOperation.md b/src/Devices.CloudPrint/beta/examples/New-MgBetaPrintOperation.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.CloudPrint/beta/examples/New-MgBetaPrintOperation.md +++ b/src/Devices.CloudPrint/beta/examples/New-MgBetaPrintOperation.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.CloudPrint/beta/examples/New-MgBetaPrintPrinterShare.md b/src/Devices.CloudPrint/beta/examples/New-MgBetaPrintPrinterShare.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.CloudPrint/beta/examples/New-MgBetaPrintPrinterShare.md +++ b/src/Devices.CloudPrint/beta/examples/New-MgBetaPrintPrinterShare.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.CloudPrint/beta/examples/New-MgBetaPrintPrinterShareAllowedGroupByRef.md b/src/Devices.CloudPrint/beta/examples/New-MgBetaPrintPrinterShareAllowedGroupByRef.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.CloudPrint/beta/examples/New-MgBetaPrintPrinterShareAllowedGroupByRef.md +++ b/src/Devices.CloudPrint/beta/examples/New-MgBetaPrintPrinterShareAllowedGroupByRef.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.CloudPrint/beta/examples/New-MgBetaPrintPrinterShareAllowedUserByRef.md b/src/Devices.CloudPrint/beta/examples/New-MgBetaPrintPrinterShareAllowedUserByRef.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.CloudPrint/beta/examples/New-MgBetaPrintPrinterShareAllowedUserByRef.md +++ b/src/Devices.CloudPrint/beta/examples/New-MgBetaPrintPrinterShareAllowedUserByRef.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.CloudPrint/beta/examples/Remove-MgBetaPrintOperation.md b/src/Devices.CloudPrint/beta/examples/Remove-MgBetaPrintOperation.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.CloudPrint/beta/examples/Remove-MgBetaPrintOperation.md +++ b/src/Devices.CloudPrint/beta/examples/Remove-MgBetaPrintOperation.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.CloudPrint/beta/examples/Remove-MgBetaPrintPrinterShare.md b/src/Devices.CloudPrint/beta/examples/Remove-MgBetaPrintPrinterShare.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.CloudPrint/beta/examples/Remove-MgBetaPrintPrinterShare.md +++ b/src/Devices.CloudPrint/beta/examples/Remove-MgBetaPrintPrinterShare.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.CloudPrint/beta/examples/Remove-MgBetaPrintService.md b/src/Devices.CloudPrint/beta/examples/Remove-MgBetaPrintService.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.CloudPrint/beta/examples/Remove-MgBetaPrintService.md +++ b/src/Devices.CloudPrint/beta/examples/Remove-MgBetaPrintService.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.CloudPrint/beta/examples/Remove-MgBetaPrintServiceEndpoint.md b/src/Devices.CloudPrint/beta/examples/Remove-MgBetaPrintServiceEndpoint.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.CloudPrint/beta/examples/Remove-MgBetaPrintServiceEndpoint.md +++ b/src/Devices.CloudPrint/beta/examples/Remove-MgBetaPrintServiceEndpoint.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.CloudPrint/beta/examples/Remove-MgBetaPrintTaskDefinitionTask.md b/src/Devices.CloudPrint/beta/examples/Remove-MgBetaPrintTaskDefinitionTask.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.CloudPrint/beta/examples/Remove-MgBetaPrintTaskDefinitionTask.md +++ b/src/Devices.CloudPrint/beta/examples/Remove-MgBetaPrintTaskDefinitionTask.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.CloudPrint/beta/examples/Reset-MgBetaPrintPrinterDefault.md b/src/Devices.CloudPrint/beta/examples/Reset-MgBetaPrintPrinterDefault.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.CloudPrint/beta/examples/Reset-MgBetaPrintPrinterDefault.md +++ b/src/Devices.CloudPrint/beta/examples/Reset-MgBetaPrintPrinterDefault.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.CloudPrint/beta/examples/Update-MgBetaPrint.md b/src/Devices.CloudPrint/beta/examples/Update-MgBetaPrint.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.CloudPrint/beta/examples/Update-MgBetaPrint.md +++ b/src/Devices.CloudPrint/beta/examples/Update-MgBetaPrint.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.CloudPrint/beta/examples/Update-MgBetaPrintOperation.md b/src/Devices.CloudPrint/beta/examples/Update-MgBetaPrintOperation.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.CloudPrint/beta/examples/Update-MgBetaPrintOperation.md +++ b/src/Devices.CloudPrint/beta/examples/Update-MgBetaPrintOperation.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.CloudPrint/beta/examples/Update-MgBetaPrintPrinterShare.md b/src/Devices.CloudPrint/beta/examples/Update-MgBetaPrintPrinterShare.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.CloudPrint/beta/examples/Update-MgBetaPrintPrinterShare.md +++ b/src/Devices.CloudPrint/beta/examples/Update-MgBetaPrintPrinterShare.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.CloudPrint/beta/examples/Update-MgBetaPrintPrinterTaskTrigger.md b/src/Devices.CloudPrint/beta/examples/Update-MgBetaPrintPrinterTaskTrigger.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.CloudPrint/beta/examples/Update-MgBetaPrintPrinterTaskTrigger.md +++ b/src/Devices.CloudPrint/beta/examples/Update-MgBetaPrintPrinterTaskTrigger.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.CloudPrint/beta/examples/Update-MgBetaPrintService.md b/src/Devices.CloudPrint/beta/examples/Update-MgBetaPrintService.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.CloudPrint/beta/examples/Update-MgBetaPrintService.md +++ b/src/Devices.CloudPrint/beta/examples/Update-MgBetaPrintService.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.CloudPrint/beta/examples/Update-MgBetaPrintServiceEndpoint.md b/src/Devices.CloudPrint/beta/examples/Update-MgBetaPrintServiceEndpoint.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.CloudPrint/beta/examples/Update-MgBetaPrintServiceEndpoint.md +++ b/src/Devices.CloudPrint/beta/examples/Update-MgBetaPrintServiceEndpoint.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.CloudPrint/v1.0/examples/Get-MgPrint.md b/src/Devices.CloudPrint/v1.0/examples/Get-MgPrint.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.CloudPrint/v1.0/examples/Get-MgPrint.md +++ b/src/Devices.CloudPrint/v1.0/examples/Get-MgPrint.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.CloudPrint/v1.0/examples/Get-MgPrintPrinterTaskTriggerDefinition.md b/src/Devices.CloudPrint/v1.0/examples/Get-MgPrintPrinterTaskTriggerDefinition.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.CloudPrint/v1.0/examples/Get-MgPrintPrinterTaskTriggerDefinition.md +++ b/src/Devices.CloudPrint/v1.0/examples/Get-MgPrintPrinterTaskTriggerDefinition.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.CloudPrint/v1.0/examples/Get-MgPrintSharePrinter.md b/src/Devices.CloudPrint/v1.0/examples/Get-MgPrintSharePrinter.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.CloudPrint/v1.0/examples/Get-MgPrintSharePrinter.md +++ b/src/Devices.CloudPrint/v1.0/examples/Get-MgPrintSharePrinter.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.CloudPrint/v1.0/examples/Get-MgPrintTaskDefinitionTaskTrigger.md b/src/Devices.CloudPrint/v1.0/examples/Get-MgPrintTaskDefinitionTaskTrigger.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.CloudPrint/v1.0/examples/Get-MgPrintTaskDefinitionTaskTrigger.md +++ b/src/Devices.CloudPrint/v1.0/examples/Get-MgPrintTaskDefinitionTaskTrigger.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.CloudPrint/v1.0/examples/New-MgPrintOperation.md b/src/Devices.CloudPrint/v1.0/examples/New-MgPrintOperation.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.CloudPrint/v1.0/examples/New-MgPrintOperation.md +++ b/src/Devices.CloudPrint/v1.0/examples/New-MgPrintOperation.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.CloudPrint/v1.0/examples/Remove-MgPrintOperation.md b/src/Devices.CloudPrint/v1.0/examples/Remove-MgPrintOperation.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.CloudPrint/v1.0/examples/Remove-MgPrintOperation.md +++ b/src/Devices.CloudPrint/v1.0/examples/Remove-MgPrintOperation.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.CloudPrint/v1.0/examples/Remove-MgPrintService.md b/src/Devices.CloudPrint/v1.0/examples/Remove-MgPrintService.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.CloudPrint/v1.0/examples/Remove-MgPrintService.md +++ b/src/Devices.CloudPrint/v1.0/examples/Remove-MgPrintService.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.CloudPrint/v1.0/examples/Remove-MgPrintServiceEndpoint.md b/src/Devices.CloudPrint/v1.0/examples/Remove-MgPrintServiceEndpoint.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.CloudPrint/v1.0/examples/Remove-MgPrintServiceEndpoint.md +++ b/src/Devices.CloudPrint/v1.0/examples/Remove-MgPrintServiceEndpoint.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.CloudPrint/v1.0/examples/Remove-MgPrintTaskDefinitionTask.md b/src/Devices.CloudPrint/v1.0/examples/Remove-MgPrintTaskDefinitionTask.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.CloudPrint/v1.0/examples/Remove-MgPrintTaskDefinitionTask.md +++ b/src/Devices.CloudPrint/v1.0/examples/Remove-MgPrintTaskDefinitionTask.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.CloudPrint/v1.0/examples/Update-MgPrint.md b/src/Devices.CloudPrint/v1.0/examples/Update-MgPrint.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.CloudPrint/v1.0/examples/Update-MgPrint.md +++ b/src/Devices.CloudPrint/v1.0/examples/Update-MgPrint.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.CloudPrint/v1.0/examples/Update-MgPrintOperation.md b/src/Devices.CloudPrint/v1.0/examples/Update-MgPrintOperation.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.CloudPrint/v1.0/examples/Update-MgPrintOperation.md +++ b/src/Devices.CloudPrint/v1.0/examples/Update-MgPrintOperation.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.CloudPrint/v1.0/examples/Update-MgPrintPrinterTaskTrigger.md b/src/Devices.CloudPrint/v1.0/examples/Update-MgPrintPrinterTaskTrigger.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.CloudPrint/v1.0/examples/Update-MgPrintPrinterTaskTrigger.md +++ b/src/Devices.CloudPrint/v1.0/examples/Update-MgPrintPrinterTaskTrigger.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.CloudPrint/v1.0/examples/Update-MgPrintService.md b/src/Devices.CloudPrint/v1.0/examples/Update-MgPrintService.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.CloudPrint/v1.0/examples/Update-MgPrintService.md +++ b/src/Devices.CloudPrint/v1.0/examples/Update-MgPrintService.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.CloudPrint/v1.0/examples/Update-MgPrintServiceEndpoint.md b/src/Devices.CloudPrint/v1.0/examples/Update-MgPrintServiceEndpoint.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.CloudPrint/v1.0/examples/Update-MgPrintServiceEndpoint.md +++ b/src/Devices.CloudPrint/v1.0/examples/Update-MgPrintServiceEndpoint.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.ServiceAnnouncement/beta/examples/Invoke-MgBetaReportServiceAnnouncementHealthOverviewIssueIncident.md b/src/Devices.ServiceAnnouncement/beta/examples/Invoke-MgBetaReportServiceAnnouncementHealthOverviewIssueIncident.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.ServiceAnnouncement/beta/examples/Invoke-MgBetaReportServiceAnnouncementHealthOverviewIssueIncident.md +++ b/src/Devices.ServiceAnnouncement/beta/examples/Invoke-MgBetaReportServiceAnnouncementHealthOverviewIssueIncident.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.ServiceAnnouncement/beta/examples/Invoke-MgBetaReportServiceAnnouncementIssueIncident.md b/src/Devices.ServiceAnnouncement/beta/examples/Invoke-MgBetaReportServiceAnnouncementIssueIncident.md index 776558b62a..e69de29bb2 100644 --- a/src/Devices.ServiceAnnouncement/beta/examples/Invoke-MgBetaReportServiceAnnouncementIssueIncident.md +++ b/src/Devices.ServiceAnnouncement/beta/examples/Invoke-MgBetaReportServiceAnnouncementIssueIncident.md @@ -1,7 +0,0 @@ -### Example 1: Using the Invoke-MgBetaReportServiceAnnouncementIssueIncident Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Devices.ServiceAnnouncement -Invoke-MgBetaReportServiceAnnouncementIssueIncident -ServiceHealthIssueId $serviceHealthIssueId -``` -This example shows how to use the Invoke-MgBetaReportServiceAnnouncementIssueIncident Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Devices.ServiceAnnouncement/beta/examples/New-MgBetaServiceAnnouncementHealthOverviewIssue.md b/src/Devices.ServiceAnnouncement/beta/examples/New-MgBetaServiceAnnouncementHealthOverviewIssue.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.ServiceAnnouncement/beta/examples/New-MgBetaServiceAnnouncementHealthOverviewIssue.md +++ b/src/Devices.ServiceAnnouncement/beta/examples/New-MgBetaServiceAnnouncementHealthOverviewIssue.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.ServiceAnnouncement/beta/examples/Remove-MgBetaServiceAnnouncementHealthOverview.md b/src/Devices.ServiceAnnouncement/beta/examples/Remove-MgBetaServiceAnnouncementHealthOverview.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.ServiceAnnouncement/beta/examples/Remove-MgBetaServiceAnnouncementHealthOverview.md +++ b/src/Devices.ServiceAnnouncement/beta/examples/Remove-MgBetaServiceAnnouncementHealthOverview.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.ServiceAnnouncement/beta/examples/Remove-MgBetaServiceAnnouncementHealthOverviewIssue.md b/src/Devices.ServiceAnnouncement/beta/examples/Remove-MgBetaServiceAnnouncementHealthOverviewIssue.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.ServiceAnnouncement/beta/examples/Remove-MgBetaServiceAnnouncementHealthOverviewIssue.md +++ b/src/Devices.ServiceAnnouncement/beta/examples/Remove-MgBetaServiceAnnouncementHealthOverviewIssue.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.ServiceAnnouncement/beta/examples/Remove-MgBetaServiceAnnouncementIssue.md b/src/Devices.ServiceAnnouncement/beta/examples/Remove-MgBetaServiceAnnouncementIssue.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.ServiceAnnouncement/beta/examples/Remove-MgBetaServiceAnnouncementIssue.md +++ b/src/Devices.ServiceAnnouncement/beta/examples/Remove-MgBetaServiceAnnouncementIssue.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.ServiceAnnouncement/beta/examples/Remove-MgBetaServiceAnnouncementMessage.md b/src/Devices.ServiceAnnouncement/beta/examples/Remove-MgBetaServiceAnnouncementMessage.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.ServiceAnnouncement/beta/examples/Remove-MgBetaServiceAnnouncementMessage.md +++ b/src/Devices.ServiceAnnouncement/beta/examples/Remove-MgBetaServiceAnnouncementMessage.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.ServiceAnnouncement/beta/examples/Remove-MgBetaServiceAnnouncementMessageAttachment.md b/src/Devices.ServiceAnnouncement/beta/examples/Remove-MgBetaServiceAnnouncementMessageAttachment.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.ServiceAnnouncement/beta/examples/Remove-MgBetaServiceAnnouncementMessageAttachment.md +++ b/src/Devices.ServiceAnnouncement/beta/examples/Remove-MgBetaServiceAnnouncementMessageAttachment.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.ServiceAnnouncement/beta/examples/Update-MgBetaServiceAnnouncementHealthOverview.md b/src/Devices.ServiceAnnouncement/beta/examples/Update-MgBetaServiceAnnouncementHealthOverview.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.ServiceAnnouncement/beta/examples/Update-MgBetaServiceAnnouncementHealthOverview.md +++ b/src/Devices.ServiceAnnouncement/beta/examples/Update-MgBetaServiceAnnouncementHealthOverview.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.ServiceAnnouncement/beta/examples/Update-MgBetaServiceAnnouncementHealthOverviewIssue.md b/src/Devices.ServiceAnnouncement/beta/examples/Update-MgBetaServiceAnnouncementHealthOverviewIssue.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.ServiceAnnouncement/beta/examples/Update-MgBetaServiceAnnouncementHealthOverviewIssue.md +++ b/src/Devices.ServiceAnnouncement/beta/examples/Update-MgBetaServiceAnnouncementHealthOverviewIssue.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.ServiceAnnouncement/beta/examples/Update-MgBetaServiceAnnouncementIssue.md b/src/Devices.ServiceAnnouncement/beta/examples/Update-MgBetaServiceAnnouncementIssue.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.ServiceAnnouncement/beta/examples/Update-MgBetaServiceAnnouncementIssue.md +++ b/src/Devices.ServiceAnnouncement/beta/examples/Update-MgBetaServiceAnnouncementIssue.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.ServiceAnnouncement/beta/examples/Update-MgBetaServiceAnnouncementMessage.md b/src/Devices.ServiceAnnouncement/beta/examples/Update-MgBetaServiceAnnouncementMessage.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.ServiceAnnouncement/beta/examples/Update-MgBetaServiceAnnouncementMessage.md +++ b/src/Devices.ServiceAnnouncement/beta/examples/Update-MgBetaServiceAnnouncementMessage.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.ServiceAnnouncement/beta/examples/Update-MgBetaServiceAnnouncementMessageAttachment.md b/src/Devices.ServiceAnnouncement/beta/examples/Update-MgBetaServiceAnnouncementMessageAttachment.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.ServiceAnnouncement/beta/examples/Update-MgBetaServiceAnnouncementMessageAttachment.md +++ b/src/Devices.ServiceAnnouncement/beta/examples/Update-MgBetaServiceAnnouncementMessageAttachment.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.ServiceAnnouncement/v1.0/examples/Invoke-MgReportServiceAnnouncementHealthOverviewIssueIncident.md b/src/Devices.ServiceAnnouncement/v1.0/examples/Invoke-MgReportServiceAnnouncementHealthOverviewIssueIncident.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.ServiceAnnouncement/v1.0/examples/Invoke-MgReportServiceAnnouncementHealthOverviewIssueIncident.md +++ b/src/Devices.ServiceAnnouncement/v1.0/examples/Invoke-MgReportServiceAnnouncementHealthOverviewIssueIncident.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.ServiceAnnouncement/v1.0/examples/Invoke-MgReportServiceAnnouncementIssueIncident.md b/src/Devices.ServiceAnnouncement/v1.0/examples/Invoke-MgReportServiceAnnouncementIssueIncident.md index 342aeaad40..e69de29bb2 100644 --- a/src/Devices.ServiceAnnouncement/v1.0/examples/Invoke-MgReportServiceAnnouncementIssueIncident.md +++ b/src/Devices.ServiceAnnouncement/v1.0/examples/Invoke-MgReportServiceAnnouncementIssueIncident.md @@ -1,7 +0,0 @@ -### 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/v1.0/examples/New-MgServiceAnnouncementHealthOverviewIssue.md b/src/Devices.ServiceAnnouncement/v1.0/examples/New-MgServiceAnnouncementHealthOverviewIssue.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.ServiceAnnouncement/v1.0/examples/New-MgServiceAnnouncementHealthOverviewIssue.md +++ b/src/Devices.ServiceAnnouncement/v1.0/examples/New-MgServiceAnnouncementHealthOverviewIssue.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.ServiceAnnouncement/v1.0/examples/Remove-MgServiceAnnouncementHealthOverview.md b/src/Devices.ServiceAnnouncement/v1.0/examples/Remove-MgServiceAnnouncementHealthOverview.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.ServiceAnnouncement/v1.0/examples/Remove-MgServiceAnnouncementHealthOverview.md +++ b/src/Devices.ServiceAnnouncement/v1.0/examples/Remove-MgServiceAnnouncementHealthOverview.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.ServiceAnnouncement/v1.0/examples/Remove-MgServiceAnnouncementHealthOverviewIssue.md b/src/Devices.ServiceAnnouncement/v1.0/examples/Remove-MgServiceAnnouncementHealthOverviewIssue.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.ServiceAnnouncement/v1.0/examples/Remove-MgServiceAnnouncementHealthOverviewIssue.md +++ b/src/Devices.ServiceAnnouncement/v1.0/examples/Remove-MgServiceAnnouncementHealthOverviewIssue.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.ServiceAnnouncement/v1.0/examples/Remove-MgServiceAnnouncementIssue.md b/src/Devices.ServiceAnnouncement/v1.0/examples/Remove-MgServiceAnnouncementIssue.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.ServiceAnnouncement/v1.0/examples/Remove-MgServiceAnnouncementIssue.md +++ b/src/Devices.ServiceAnnouncement/v1.0/examples/Remove-MgServiceAnnouncementIssue.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.ServiceAnnouncement/v1.0/examples/Remove-MgServiceAnnouncementMessage.md b/src/Devices.ServiceAnnouncement/v1.0/examples/Remove-MgServiceAnnouncementMessage.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.ServiceAnnouncement/v1.0/examples/Remove-MgServiceAnnouncementMessage.md +++ b/src/Devices.ServiceAnnouncement/v1.0/examples/Remove-MgServiceAnnouncementMessage.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.ServiceAnnouncement/v1.0/examples/Remove-MgServiceAnnouncementMessageAttachment.md b/src/Devices.ServiceAnnouncement/v1.0/examples/Remove-MgServiceAnnouncementMessageAttachment.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.ServiceAnnouncement/v1.0/examples/Remove-MgServiceAnnouncementMessageAttachment.md +++ b/src/Devices.ServiceAnnouncement/v1.0/examples/Remove-MgServiceAnnouncementMessageAttachment.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.ServiceAnnouncement/v1.0/examples/Update-MgServiceAnnouncementHealthOverview.md b/src/Devices.ServiceAnnouncement/v1.0/examples/Update-MgServiceAnnouncementHealthOverview.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.ServiceAnnouncement/v1.0/examples/Update-MgServiceAnnouncementHealthOverview.md +++ b/src/Devices.ServiceAnnouncement/v1.0/examples/Update-MgServiceAnnouncementHealthOverview.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.ServiceAnnouncement/v1.0/examples/Update-MgServiceAnnouncementHealthOverviewIssue.md b/src/Devices.ServiceAnnouncement/v1.0/examples/Update-MgServiceAnnouncementHealthOverviewIssue.md index 093355d11d..e69de29bb2 100644 --- a/src/Devices.ServiceAnnouncement/v1.0/examples/Update-MgServiceAnnouncementHealthOverviewIssue.md +++ b/src/Devices.ServiceAnnouncement/v1.0/examples/Update-MgServiceAnnouncementHealthOverviewIssue.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Devices.ServiceAnnouncement/v1.0/examples/Update-MgServiceAnnouncementIssue.md b/src/Devices.ServiceAnnouncement/v1.0/examples/Update-MgServiceAnnouncementIssue.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.ServiceAnnouncement/v1.0/examples/Update-MgServiceAnnouncementIssue.md +++ b/src/Devices.ServiceAnnouncement/v1.0/examples/Update-MgServiceAnnouncementIssue.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.ServiceAnnouncement/v1.0/examples/Update-MgServiceAnnouncementMessage.md b/src/Devices.ServiceAnnouncement/v1.0/examples/Update-MgServiceAnnouncementMessage.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.ServiceAnnouncement/v1.0/examples/Update-MgServiceAnnouncementMessage.md +++ b/src/Devices.ServiceAnnouncement/v1.0/examples/Update-MgServiceAnnouncementMessage.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Devices.ServiceAnnouncement/v1.0/examples/Update-MgServiceAnnouncementMessageAttachment.md b/src/Devices.ServiceAnnouncement/v1.0/examples/Update-MgServiceAnnouncementMessageAttachment.md index f6c6949389..e69de29bb2 100644 --- a/src/Devices.ServiceAnnouncement/v1.0/examples/Update-MgServiceAnnouncementMessageAttachment.md +++ b/src/Devices.ServiceAnnouncement/v1.0/examples/Update-MgServiceAnnouncementMessageAttachment.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/DirectoryObjects/beta/examples/Confirm-MgBetaDirectoryObjectMemberObject.md b/src/DirectoryObjects/beta/examples/Confirm-MgBetaDirectoryObjectMemberObject.md index 093355d11d..e69de29bb2 100644 --- a/src/DirectoryObjects/beta/examples/Confirm-MgBetaDirectoryObjectMemberObject.md +++ b/src/DirectoryObjects/beta/examples/Confirm-MgBetaDirectoryObjectMemberObject.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/DirectoryObjects/beta/examples/Get-MgBetaDirectoryObjectMemberObject.md b/src/DirectoryObjects/beta/examples/Get-MgBetaDirectoryObjectMemberObject.md index 6dcd79cf5e..e69de29bb2 100644 --- a/src/DirectoryObjects/beta/examples/Get-MgBetaDirectoryObjectMemberObject.md +++ b/src/DirectoryObjects/beta/examples/Get-MgBetaDirectoryObjectMemberObject.md @@ -1,15 +0,0 @@ -### Example 1: Code snippet - -```powershell -Import-Module Microsoft.Graph.Beta.DirectoryObjects - -$params = @{ - SecurityEnabledOnly = $true -} - -Get-MgBetaDirectoryObjectMemberObject -DirectoryObjectId $directoryObjectId -BodyParameter $params -``` -This example shows how to use the Get-MgBetaDirectoryObjectMemberObject Cmdlet. - -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - diff --git a/src/DirectoryObjects/beta/examples/New-MgBetaDirectoryObject.md b/src/DirectoryObjects/beta/examples/New-MgBetaDirectoryObject.md index 093355d11d..e69de29bb2 100644 --- a/src/DirectoryObjects/beta/examples/New-MgBetaDirectoryObject.md +++ b/src/DirectoryObjects/beta/examples/New-MgBetaDirectoryObject.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/DirectoryObjects/v1.0/examples/Confirm-MgDirectoryObjectMemberObject.md b/src/DirectoryObjects/v1.0/examples/Confirm-MgDirectoryObjectMemberObject.md index 093355d11d..e69de29bb2 100644 --- a/src/DirectoryObjects/v1.0/examples/Confirm-MgDirectoryObjectMemberObject.md +++ b/src/DirectoryObjects/v1.0/examples/Confirm-MgDirectoryObjectMemberObject.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/DirectoryObjects/v1.0/examples/New-MgDirectoryObject.md b/src/DirectoryObjects/v1.0/examples/New-MgDirectoryObject.md index 093355d11d..e69de29bb2 100644 --- a/src/DirectoryObjects/v1.0/examples/New-MgDirectoryObject.md +++ b/src/DirectoryObjects/v1.0/examples/New-MgDirectoryObject.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/beta/examples/Get-MgBetaEducationClass.md b/src/Education/beta/examples/Get-MgBetaEducationClass.md index 17f1abb25d..ed9d10e24a 100644 --- a/src/Education/beta/examples/Get-MgBetaEducationClass.md +++ b/src/Education/beta/examples/Get-MgBetaEducationClass.md @@ -4,7 +4,7 @@ Import-Module Microsoft.Graph.Beta.Education -Get-MgBetaEducationClass -EducationClassId $educationClassId +Get-MgBetaEducationClass ``` This example shows how to use the Get-MgBetaEducationClass Cmdlet. diff --git a/src/Education/beta/examples/Get-MgBetaEducationClassAssignmentCategoryDelta.md b/src/Education/beta/examples/Get-MgBetaEducationClassAssignmentCategoryDelta.md index e20281683e..e69de29bb2 100644 --- a/src/Education/beta/examples/Get-MgBetaEducationClassAssignmentCategoryDelta.md +++ b/src/Education/beta/examples/Get-MgBetaEducationClassAssignmentCategoryDelta.md @@ -1,28 +0,0 @@ -### Example 1: Using the Get-MgBetaEducationClassAssignmentCategoryDelta Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Education -Get-MgBetaEducationClassAssignmentCategoryDelta -EducationClassId $educationClassId -Top 3 -``` -This example shows how to use the Get-MgBetaEducationClassAssignmentCategoryDelta Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaEducationClassAssignmentCategoryDelta Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Education -Get-MgBetaEducationClassAssignmentCategoryDelta -EducationClassId $educationClassId -Deltatoken "7ORzTfzlUEGDy6BRE3OC-3ePBbvLHCRe4aJ_hjaBKJxUHmn_ODgoM4xreLS7YRaxc-iACeqCQsT5Tb0u9vn6QXYflO6j0sRgRQlhcfR7DApZYl6uZqiXcR7H0G14btPqR761sKWNc0jgiczrHGF6dGfSQwsLzPT46og-84ArhOU.Jnxvkr08FE-QBvEYstYel3JZUrgwgTauo-GmpbdWeSA" -``` -This example shows how to use the Get-MgBetaEducationClassAssignmentCategoryDelta Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 3: Using the Get-MgBetaEducationClassAssignmentCategoryDelta Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Education -Get-MgBetaEducationClassAssignmentCategoryDelta -EducationClassId $educationClassId -Deltatoken "7ORzTfzlUEGDy6BRE3OC-3ePBbvLHCRe4aJ_hjaBKJxUHmn_ODgoM4xreLS7YRaxc-iACeqCQsT5Tb0u9vn6QXYflO6j0sRgRQlhcfR7DApZYl6uZqiXcR7H0G14btPqR761sKWNc0jgiczrHGF6dGfSQwsLzPT46og-84ArhOU.Jnxvkr08FE-QBvEYstYel3JZUrgwgTauo-GmpbdWeSA" -OutFile $outFileId -``` -This example shows how to use the Get-MgBetaEducationClassAssignmentCategoryDelta Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 4: Using the Get-MgBetaEducationClassAssignmentCategoryDelta Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Education -Get-MgBetaEducationClassAssignmentCategoryDelta -EducationClassId $educationClassId -Skiptoken "U43TyYWKlRvJ6wWxZOfJvkp22nMqShRw9f-GxBtG2FDy9b1hMDaAJGdLb7n2fh1IVSFtBcXz0jxjIEihcR91dS3R7i8Z2IMtxIn9rKbK9Jvurj6jCH-lDbSNatdesrK0PJ5zpZ_-i8HyqkdtLhWD9tewXVArIqQWJA7gJz8z4paG2q0MU9rixrQOTe7WIXikPiBTUPilHuUW-o1k7cvqke3K7llJbU3G7z_O7WGoVGE.l8-2OcBi9ZWAhwhPnXvJ-kyyk8GNb6-H4o6qofP5YBY" -``` -This example shows how to use the Get-MgBetaEducationClassAssignmentCategoryDelta Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/beta/examples/Get-MgBetaEducationClassAssignmentDelta.md b/src/Education/beta/examples/Get-MgBetaEducationClassAssignmentDelta.md index 4e8e02b9ec..e69de29bb2 100644 --- a/src/Education/beta/examples/Get-MgBetaEducationClassAssignmentDelta.md +++ b/src/Education/beta/examples/Get-MgBetaEducationClassAssignmentDelta.md @@ -1,21 +0,0 @@ -### Example 1: Using the Get-MgBetaEducationClassAssignmentDelta Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Education -Get-MgBetaEducationClassAssignmentDelta -EducationClassId $educationClassId -Deltatoken "7ORzTfzlUEGDy6BRE3OC-3ePBbvLHCRe4aJ_hjaBKJxUHmn_ODgoM4xreLS7YRaxROmLjac48n-iXm5j6n5aQwlsnC-2OvL3lI0Z8M4klERNmJQjnBn7MHqwXZ6L8GlI3VPnya3E-p1bisiZX97jLvQUAopseIYhvnD6v7fiYrk.fVsHempT6X2CiBh6aN9Ex5nVJ71adKdcf-mdke8OHKs" -``` -This example shows how to use the Get-MgBetaEducationClassAssignmentDelta Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaEducationClassAssignmentDelta Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Education -Get-MgBetaEducationClassAssignmentDelta -EducationClassId $educationClassId -Skiptoken "U43TyYWKlRvJ6wWxZOfJvkp22nMqShRw9f-GxBtG2FDy9b1hMDaAJGdLb7n2fh1IdHoweKQs1czM4Ry1LVsNqwIFXftTcRHvgSCbcszvbJHEWDCO3QO7K7zwCM8DdXNepZOa1gqldecjIUM0NFRbGQoQ5yR6RmGnMgtko8TDMOyMH_yg1my82PTXA_t4Nj-DhMDZWvuNTd_lbLeTngc7mIJPMCR2gHN9CSKsW_kw850.UM9tUqwOu5Ln1pnxaP6KdMmfJHszGqY3EKPlQkOiyGs" -``` -This example shows how to use the Get-MgBetaEducationClassAssignmentDelta Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 3: Using the Get-MgBetaEducationClassAssignmentDelta Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Education -Get-MgBetaEducationClassAssignmentDelta -EducationClassId $educationClassId -Top 2 -``` -This example shows how to use the Get-MgBetaEducationClassAssignmentDelta Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/beta/examples/Get-MgBetaEducationClassAssignmentSetting.md b/src/Education/beta/examples/Get-MgBetaEducationClassAssignmentSetting.md index e69de29bb2..27593163bd 100644 --- a/src/Education/beta/examples/Get-MgBetaEducationClassAssignmentSetting.md +++ b/src/Education/beta/examples/Get-MgBetaEducationClassAssignmentSetting.md @@ -0,0 +1,22 @@ +### Example 1: Code snippet + +```powershell + +Import-Module Microsoft.Graph.Beta.Education + +Get-MgBetaEducationClassAssignmentSetting -EducationClassId $educationClassId + +``` +This example shows how to use the Get-MgBetaEducationClassAssignmentSetting Cmdlet. + +### Example 2: Code snippet + +```powershell + +Import-Module Microsoft.Graph.Beta.Education + +Get-MgBetaEducationClassAssignmentSetting -EducationClassId $educationClassId -ExpandProperty "defaultGradingScheme" + +``` +This example shows how to use the Get-MgBetaEducationClassAssignmentSetting Cmdlet. + diff --git a/src/Education/beta/examples/Get-MgBetaEducationClassDelta.md b/src/Education/beta/examples/Get-MgBetaEducationClassDelta.md index b0339cafa5..e69de29bb2 100644 --- a/src/Education/beta/examples/Get-MgBetaEducationClassDelta.md +++ b/src/Education/beta/examples/Get-MgBetaEducationClassDelta.md @@ -1,7 +0,0 @@ -### Example 1: Using the Get-MgBetaEducationClassDelta Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Education -Get-MgBetaEducationClassDelta -``` -This example shows how to use the Get-MgBetaEducationClassDelta Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/beta/examples/Get-MgBetaEducationClassGroup.md b/src/Education/beta/examples/Get-MgBetaEducationClassGroup.md index fd9f2471d0..7a157dcfd5 100644 --- a/src/Education/beta/examples/Get-MgBetaEducationClassGroup.md +++ b/src/Education/beta/examples/Get-MgBetaEducationClassGroup.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaEducationClassGroup Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Education + Get-MgBetaEducationClassGroup -EducationClassId $educationClassId + ``` This example shows how to use the Get-MgBetaEducationClassGroup Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Education/beta/examples/Get-MgBetaEducationMe.md b/src/Education/beta/examples/Get-MgBetaEducationMe.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/beta/examples/Get-MgBetaEducationMe.md +++ b/src/Education/beta/examples/Get-MgBetaEducationMe.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/beta/examples/Get-MgBetaEducationMeAssignmentCategoryDelta.md b/src/Education/beta/examples/Get-MgBetaEducationMeAssignmentCategoryDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/beta/examples/Get-MgBetaEducationMeAssignmentCategoryDelta.md +++ b/src/Education/beta/examples/Get-MgBetaEducationMeAssignmentCategoryDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/beta/examples/Get-MgBetaEducationMeAssignmentDelta.md b/src/Education/beta/examples/Get-MgBetaEducationMeAssignmentDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/beta/examples/Get-MgBetaEducationMeAssignmentDelta.md +++ b/src/Education/beta/examples/Get-MgBetaEducationMeAssignmentDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/beta/examples/Get-MgBetaEducationRoot.md b/src/Education/beta/examples/Get-MgBetaEducationRoot.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/beta/examples/Get-MgBetaEducationRoot.md +++ b/src/Education/beta/examples/Get-MgBetaEducationRoot.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/beta/examples/Get-MgBetaEducationSchool.md b/src/Education/beta/examples/Get-MgBetaEducationSchool.md index 649deeda10..33876405ef 100644 --- a/src/Education/beta/examples/Get-MgBetaEducationSchool.md +++ b/src/Education/beta/examples/Get-MgBetaEducationSchool.md @@ -4,7 +4,7 @@ Import-Module Microsoft.Graph.Beta.Education -Get-MgBetaEducationSchool -EducationSchoolId $educationSchoolId +Get-MgBetaEducationSchool ``` This example shows how to use the Get-MgBetaEducationSchool Cmdlet. diff --git a/src/Education/beta/examples/Get-MgBetaEducationSchoolAdministrativeUnit.md b/src/Education/beta/examples/Get-MgBetaEducationSchoolAdministrativeUnit.md index f6c6949389..53cc165593 100644 --- a/src/Education/beta/examples/Get-MgBetaEducationSchoolAdministrativeUnit.md +++ b/src/Education/beta/examples/Get-MgBetaEducationSchoolAdministrativeUnit.md @@ -1,17 +1,11 @@ -### Example 1: {{ Add title here }} -```powershell - PS C:\> {{ Add code here }} +### Example 1: Code snippet -{{ Add output here }} -``` +```powershell -{{ Add description here }} +Import-Module Microsoft.Graph.Beta.Education -### Example 2: {{ Add title here }} -```powershell - PS C:\> {{ Add code here }} +Get-MgBetaEducationSchoolAdministrativeUnit -EducationSchoolId $educationSchoolId -{{ Add output here }} ``` +This example shows how to use the Get-MgBetaEducationSchoolAdministrativeUnit Cmdlet. -{{ Add description here }} diff --git a/src/Education/beta/examples/Get-MgBetaEducationSchoolDelta.md b/src/Education/beta/examples/Get-MgBetaEducationSchoolDelta.md index f21c76f790..e69de29bb2 100644 --- a/src/Education/beta/examples/Get-MgBetaEducationSchoolDelta.md +++ b/src/Education/beta/examples/Get-MgBetaEducationSchoolDelta.md @@ -1,7 +0,0 @@ -### Example 1: Using the Get-MgBetaEducationSchoolDelta Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Education -Get-MgBetaEducationSchoolDelta -``` -This example shows how to use the Get-MgBetaEducationSchoolDelta Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/beta/examples/Get-MgBetaEducationSynchronizationProfile.md b/src/Education/beta/examples/Get-MgBetaEducationSynchronizationProfile.md index 539cc11f53..4eb85b25aa 100644 --- a/src/Education/beta/examples/Get-MgBetaEducationSynchronizationProfile.md +++ b/src/Education/beta/examples/Get-MgBetaEducationSynchronizationProfile.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaEducationSynchronizationProfile Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Education -Get-MgBetaEducationSynchronizationProfile -EducationSynchronizationProfileId $educationSynchronizationProfileId -``` -This example shows how to use the Get-MgBetaEducationSynchronizationProfile Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaEducationSynchronizationProfile Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Education + Get-MgBetaEducationSynchronizationProfile + ``` This example shows how to use the Get-MgBetaEducationSynchronizationProfile Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Education/beta/examples/Get-MgBetaEducationSynchronizationProfileError.md b/src/Education/beta/examples/Get-MgBetaEducationSynchronizationProfileError.md index fd5d7b43e0..4c43015990 100644 --- a/src/Education/beta/examples/Get-MgBetaEducationSynchronizationProfileError.md +++ b/src/Education/beta/examples/Get-MgBetaEducationSynchronizationProfileError.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaEducationSynchronizationProfileError Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Education + Get-MgBetaEducationSynchronizationProfileError -EducationSynchronizationProfileId $educationSynchronizationProfileId + ``` This example shows how to use the Get-MgBetaEducationSynchronizationProfileError Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Education/beta/examples/Get-MgBetaEducationSynchronizationProfileStatus.md b/src/Education/beta/examples/Get-MgBetaEducationSynchronizationProfileStatus.md index 8d95e13892..416f59bade 100644 --- a/src/Education/beta/examples/Get-MgBetaEducationSynchronizationProfileStatus.md +++ b/src/Education/beta/examples/Get-MgBetaEducationSynchronizationProfileStatus.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaEducationSynchronizationProfileStatus Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Education + Get-MgBetaEducationSynchronizationProfileStatus -EducationSynchronizationProfileId $educationSynchronizationProfileId + ``` This example shows how to use the Get-MgBetaEducationSynchronizationProfileStatus Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Education/beta/examples/Get-MgBetaEducationUser.md b/src/Education/beta/examples/Get-MgBetaEducationUser.md index 33806d9fc4..2eaacd3fa5 100644 --- a/src/Education/beta/examples/Get-MgBetaEducationUser.md +++ b/src/Education/beta/examples/Get-MgBetaEducationUser.md @@ -4,7 +4,7 @@ Import-Module Microsoft.Graph.Beta.Education -Get-MgBetaEducationUser -EducationUserId $educationUserId +Get-MgBetaEducationUser ``` This example shows how to use the Get-MgBetaEducationUser Cmdlet. diff --git a/src/Education/beta/examples/Get-MgBetaEducationUserAssignmentCategoryDelta.md b/src/Education/beta/examples/Get-MgBetaEducationUserAssignmentCategoryDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/beta/examples/Get-MgBetaEducationUserAssignmentCategoryDelta.md +++ b/src/Education/beta/examples/Get-MgBetaEducationUserAssignmentCategoryDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/beta/examples/Get-MgBetaEducationUserAssignmentDelta.md b/src/Education/beta/examples/Get-MgBetaEducationUserAssignmentDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/beta/examples/Get-MgBetaEducationUserAssignmentDelta.md +++ b/src/Education/beta/examples/Get-MgBetaEducationUserAssignmentDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/beta/examples/Get-MgBetaEducationUserDelta.md b/src/Education/beta/examples/Get-MgBetaEducationUserDelta.md index 45dfaec7e8..e69de29bb2 100644 --- a/src/Education/beta/examples/Get-MgBetaEducationUserDelta.md +++ b/src/Education/beta/examples/Get-MgBetaEducationUserDelta.md @@ -1,7 +0,0 @@ -### Example 1: Using the Get-MgBetaEducationUserDelta Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Education -Get-MgBetaEducationUserDelta -``` -This example shows how to use the Get-MgBetaEducationUserDelta Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/beta/examples/Invoke-MgBetaUploadEducationSynchronizationProfileUrl.md b/src/Education/beta/examples/Invoke-MgBetaUploadEducationSynchronizationProfileUrl.md index b92e854e92..e69de29bb2 100644 --- a/src/Education/beta/examples/Invoke-MgBetaUploadEducationSynchronizationProfileUrl.md +++ b/src/Education/beta/examples/Invoke-MgBetaUploadEducationSynchronizationProfileUrl.md @@ -1,7 +0,0 @@ -### Example 1: Using the Invoke-MgBetaUploadEducationSynchronizationProfileUrl Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Education -Invoke-MgBetaUploadEducationSynchronizationProfileUrl -EducationSynchronizationProfileId $educationSynchronizationProfileId -``` -This example shows how to use the Invoke-MgBetaUploadEducationSynchronizationProfileUrl Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Education/beta/examples/New-MgBetaEducationClass.md b/src/Education/beta/examples/New-MgBetaEducationClass.md index 1a537cc917..b3afed27a3 100644 --- a/src/Education/beta/examples/New-MgBetaEducationClass.md +++ b/src/Education/beta/examples/New-MgBetaEducationClass.md @@ -1,28 +1,21 @@ -### Example 1: Code snippet +### Example 1: Code snippet -```powershell Import-Module Microsoft.Graph.Beta.Education +```powershell + +Import-Module Microsoft.Graph.Beta.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" - } + description = "Health Level 1" + classCode = "Health 501" + displayName = "Health 1" + externalId = "11019" + externalName = "Health Level 1" + externalSource = "sis" + mailNickname = "fineartschool.net" } -New-MgBetaEducationClass -BodyParameter $params -``` -This example shows how to use the New-MgBetaEducationClass Cmdlet. - To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - +New-MgBetaEducationClass -BodyParameter $params + +``` +This example shows how to use the New-MgBetaEducationClass Cmdlet. + diff --git a/src/Education/beta/examples/New-MgBetaEducationClassAssignment.md b/src/Education/beta/examples/New-MgBetaEducationClassAssignment.md index a49cfeb618..498c027f71 100644 --- a/src/Education/beta/examples/New-MgBetaEducationClassAssignment.md +++ b/src/Education/beta/examples/New-MgBetaEducationClassAssignment.md @@ -1,10 +1,12 @@ -### Example 1: Code snippet +### Example 1: Code snippet -```powershell Import-Module Microsoft.Graph.Beta.Education +```powershell + +Import-Module Microsoft.Graph.Beta.Education $params = @{ dueDateTime = [System.DateTime]::Parse("2022-09-16T00:00:00Z") - displayName = "Reading test 09.14" + displayName = "Reading test 09.14 Beta" instructions = @{ contentType = "text" content = "Read chapter 4" @@ -20,8 +22,8 @@ $params = @{ allowStudentsToAddResourcesToSubmission = $true } -New-MgBetaEducationClassAssignment -EducationClassId $educationClassId -BodyParameter $params -``` -This example shows how to use the New-MgBetaEducationClassAssignment Cmdlet. - To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - +New-MgBetaEducationClassAssignment -EducationClassId $educationClassId -BodyParameter $params + +``` +This example shows how to use the New-MgBetaEducationClassAssignment Cmdlet. + diff --git a/src/Education/beta/examples/New-MgBetaEducationClassAssignmentCategoryByRef.md b/src/Education/beta/examples/New-MgBetaEducationClassAssignmentCategoryByRef.md index e9219ac2ea..e69de29bb2 100644 --- a/src/Education/beta/examples/New-MgBetaEducationClassAssignmentCategoryByRef.md +++ b/src/Education/beta/examples/New-MgBetaEducationClassAssignmentCategoryByRef.md @@ -1,15 +0,0 @@ -### Example 1: Code snippet - -```powershell -Import-Module Microsoft.Graph.Beta.Education - -$params = @{ - "@odata.id" = "https://graph.microsoft.com/v1.0/education/classes/acdefc6b-2dc6-4e71-b1e9-6d9810ab1793/assignmentCategories/ec98f158-341d-4fea-9f8c-14a250d489ac" -} - -New-MgBetaEducationClassAssignmentCategoryByRef -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params -``` -This example shows how to use the New-MgBetaEducationClassAssignmentCategoryByRef Cmdlet. - -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - diff --git a/src/Education/beta/examples/New-MgBetaEducationClassAssignmentResource.md b/src/Education/beta/examples/New-MgBetaEducationClassAssignmentResource.md index bd2755fdff..2a5f1f64d3 100644 --- a/src/Education/beta/examples/New-MgBetaEducationClassAssignmentResource.md +++ b/src/Education/beta/examples/New-MgBetaEducationClassAssignmentResource.md @@ -1,6 +1,8 @@ -### Example 1: Create an educationLinkResource +### Example 1: Create an educationLinkResource -```powershell Import-Module Microsoft.Graph.Beta.Education +```powershell + +Import-Module Microsoft.Graph.Beta.Education $params = @{ distributeForStudentWork = $false @@ -12,103 +14,118 @@ $params = @{ } } -New-MgBetaEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params -``` -This example shows how to use the New-MgBetaEducationClassAssignmentResource Cmdlet. - To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - -### Example 2: Create an educationWordResource +New-MgBetaEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params + +``` +This example will create an educationlinkresource + +### Example 2: Create an educationWordResource -```powershell Import-Module Microsoft.Graph.Beta.Education +```powershell + +Import-Module Microsoft.Graph.Beta.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" + fileUrl = "https://graph.microsoft.com/beta/drives/b!DPA6q59Tw0mtgmyXRUmrQRqBZTesG-lMkl1cBmvvMeUEWrOk89nKRpUEr4ZhNYBc/items/016XPCQEELISJB7NVNVBAK7V4UIF6Q27U2" } } -New-MgBetaEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params -``` -This example shows how to use the New-MgBetaEducationClassAssignmentResource Cmdlet. - To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - -### Example 3: Create an educationFileResource +New-MgBetaEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params + +``` +This example will create an educationwordresource + +### Example 3: Create an educationFileResource -```powershell Import-Module Microsoft.Graph.Beta.Education +```powershell + +Import-Module Microsoft.Graph.Beta.Education $params = @{ distributeForStudentWork = $false resource = @{ displayName = "article.pdf" + file = @{ + odataid = "https://graph.microsoft.com/beta/drives/b!OPmUsPgnBUiMIXMxWcj3neC1xck6I5NIsnFxfrLdmXoOOmEQNO79QpIMPdOmY3nf/items/01QTY63RPHKSP6THE4ORD2RQAR6MQLF26G" + } "@odata.type" = "#microsoft.graph.educationFileResource" } } -New-MgBetaEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params -``` -This example shows how to use the New-MgBetaEducationClassAssignmentResource Cmdlet. - To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - -### Example 4: Create an educationExcelResource +New-MgBetaEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params + +``` +This example will create an educationfileresource + +### Example 4: Create an educationExcelResource -```powershell Import-Module Microsoft.Graph.Beta.Education +```powershell + +Import-Module Microsoft.Graph.Beta.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" + fileUrl = "https://graph.microsoft.com/beta/drives/b!OPmUsPgnBUiMIXMxWcj3neC1xck6I5NIsnFxfrLdmXoOOmEQNO79QpIMPdOmY3nf/items/01QTY63RIR7PSV4JJSFJHKNPUVUWGPW4O2" } } -New-MgBetaEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params -``` -This example shows how to use the New-MgBetaEducationClassAssignmentResource Cmdlet. - To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - -### Example 5: Create an educationPowerPointResource +New-MgBetaEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params + +``` +This example will create an educationexcelresource -```powershell Import-Module Microsoft.Graph.Beta.Education +### Example 5: Create an educationPowerPointResource + +```powershell + +Import-Module Microsoft.Graph.Beta.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" + fileUrl = "https://graph.microsoft.com/beta/drives/b!OPmUsPgnBUiMIXMxWcj3neC1xck6I5NIsnFxfrLdmXoOOmEQNO79QpIMPdOmY3nf/items/01QTY63RN327OXRN6EVFE2Q5FRJZTN5EOJ" } } -New-MgBetaEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params -``` -This example shows how to use the New-MgBetaEducationClassAssignmentResource Cmdlet. - To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - -### Example 6: Create an educationMediaResource +New-MgBetaEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params + +``` +This example will create an educationpowerpointresource + +### Example 6: Create an educationMediaResource + +```powershell -```powershell Import-Module Microsoft.Graph.Beta.Education +Import-Module Microsoft.Graph.Beta.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" + fileUrl = "https://graph.microsoft.com/beta/drives/b!OPmUsPgnBUiMIXMxWcj3neC1xck6I5NIsnFxfrLdmXoOOmEQNO79QpIMPdOmY3nf/items/01QTY63RMUWOKAGSJZ6BHINJVKNMOOJABF" } } -New-MgBetaEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params -``` -This example shows how to use the New-MgBetaEducationClassAssignmentResource Cmdlet. - To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - -### Example 7: Create an educationTeamsAppResource +New-MgBetaEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params -```powershell Import-Module Microsoft.Graph.Beta.Education +``` +This example will create an educationmediaresource + +### Example 7: Create an educationTeamsAppResource + +```powershell + +Import-Module Microsoft.Graph.Beta.Education $params = @{ distributeForStudentWork = $false @@ -116,14 +133,14 @@ $params = @{ 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" + 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-MgBetaEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params -``` -This example shows how to use the New-MgBetaEducationClassAssignmentResource Cmdlet. - To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - +New-MgBetaEducationClassAssignmentResource -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -BodyParameter $params + +``` +This example will create an educationteamsappresource + diff --git a/src/Education/beta/examples/New-MgBetaEducationMeAssignmentCategory.md b/src/Education/beta/examples/New-MgBetaEducationMeAssignmentCategory.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/beta/examples/New-MgBetaEducationMeAssignmentCategory.md +++ b/src/Education/beta/examples/New-MgBetaEducationMeAssignmentCategory.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/beta/examples/New-MgBetaEducationMeAssignmentCategoryByRef.md b/src/Education/beta/examples/New-MgBetaEducationMeAssignmentCategoryByRef.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/beta/examples/New-MgBetaEducationMeAssignmentCategoryByRef.md +++ b/src/Education/beta/examples/New-MgBetaEducationMeAssignmentCategoryByRef.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/beta/examples/New-MgBetaEducationSchool.md b/src/Education/beta/examples/New-MgBetaEducationSchool.md index b7e3f2d8c0..4f99e6c695 100644 --- a/src/Education/beta/examples/New-MgBetaEducationSchool.md +++ b/src/Education/beta/examples/New-MgBetaEducationSchool.md @@ -1,32 +1,32 @@ -### Example 1: Code snippet +### Example 1: Code snippet -```powershell Import-Module Microsoft.Graph.Beta.Education +```powershell + +Import-Module Microsoft.Graph.Beta.Education $params = @{ - "@odata.type" = "#microsoft.graph.educationSchool" - displayName = "String" - description = "String" + displayName = "Fabrikam High School" + description = "Magnate school for the arts. Los Angeles School District" 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" - } + principalEmail = "AmyR@fabrikam.com" + principalName = "Amy Roebuck" + externalPrincipalId = "14007" + highestGrade = "12" + lowestGrade = "9" + schoolNumber = "10002" address = @{ - "@odata.type" = "microsoft.graph.physicalAddress" + city = "Los Angeles" + countryOrRegion = "United States" + postalCode = "98055" + state = "CA" + street = "12345 Main St." } + externalId = "10002" + phone = "+1 (253) 555-0102" } -New-MgBetaEducationSchool -BodyParameter $params -``` -This example shows how to use the New-MgBetaEducationSchool Cmdlet. - To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - +New-MgBetaEducationSchool -BodyParameter $params + +``` +This example shows how to use the New-MgBetaEducationSchool Cmdlet. + diff --git a/src/Education/beta/examples/New-MgBetaEducationSynchronizationProfile.md b/src/Education/beta/examples/New-MgBetaEducationSynchronizationProfile.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/beta/examples/New-MgBetaEducationSynchronizationProfile.md +++ b/src/Education/beta/examples/New-MgBetaEducationSynchronizationProfile.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/beta/examples/New-MgBetaEducationSynchronizationProfileError.md b/src/Education/beta/examples/New-MgBetaEducationSynchronizationProfileError.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/beta/examples/New-MgBetaEducationSynchronizationProfileError.md +++ b/src/Education/beta/examples/New-MgBetaEducationSynchronizationProfileError.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/beta/examples/New-MgBetaEducationUser.md b/src/Education/beta/examples/New-MgBetaEducationUser.md index c0f0c89d36..9f7860ab5b 100644 --- a/src/Education/beta/examples/New-MgBetaEducationUser.md +++ b/src/Education/beta/examples/New-MgBetaEducationUser.md @@ -1,72 +1,42 @@ -### Example 1: Code snippet +### Example 1: Code snippet -```powershell Import-Module Microsoft.Graph.Beta.Education +```powershell + +Import-Module Microsoft.Graph.Beta.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" - } + displayName = "Dion Matheson" + givenName = "Dion" + middleName = $null + surname = "Matheson" + mail = "DionM@contoso.com" + mobilePhone = "+1 (253) 555-0101" createdBy = @{ - "@odata.type" = "microsoft.graph.identitySet" - } - accountEnabled = "Boolean" - assignedLicenses = @( - @{ - "@odata.type" = "microsoft.graph.assignedLicense" + user = @{ + displayName = "Susana Rocha" + id = "14012" } - ) - 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" + 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-MgBetaEducationUser -BodyParameter $params -``` -This example shows how to use the New-MgBetaEducationUser Cmdlet. - To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - +New-MgBetaEducationUser -BodyParameter $params + +``` +This example shows how to use the New-MgBetaEducationUser Cmdlet. + diff --git a/src/Education/beta/examples/New-MgBetaEducationUserAssignmentCategory.md b/src/Education/beta/examples/New-MgBetaEducationUserAssignmentCategory.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/beta/examples/New-MgBetaEducationUserAssignmentCategory.md +++ b/src/Education/beta/examples/New-MgBetaEducationUserAssignmentCategory.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/beta/examples/New-MgBetaEducationUserAssignmentCategoryByRef.md b/src/Education/beta/examples/New-MgBetaEducationUserAssignmentCategoryByRef.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/beta/examples/New-MgBetaEducationUserAssignmentCategoryByRef.md +++ b/src/Education/beta/examples/New-MgBetaEducationUserAssignmentCategoryByRef.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/beta/examples/Remove-MgBetaEducationClassAssignmentCategoryByRef.md b/src/Education/beta/examples/Remove-MgBetaEducationClassAssignmentCategoryByRef.md index e3704f95b5..e69de29bb2 100644 --- a/src/Education/beta/examples/Remove-MgBetaEducationClassAssignmentCategoryByRef.md +++ b/src/Education/beta/examples/Remove-MgBetaEducationClassAssignmentCategoryByRef.md @@ -1,11 +0,0 @@ -### Example 1: Code snippet - -```powershell -Import-Module Microsoft.Graph.Beta.Education - -Remove-MgBetaEducationClassAssignmentCategoryByRef -EducationClassId $educationClassId -EducationAssignmentId $educationAssignmentId -EducationCategoryId $educationCategoryId -``` -This example shows how to use the Remove-MgBetaEducationClassAssignmentCategoryByRef Cmdlet. - -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - diff --git a/src/Education/beta/examples/Remove-MgBetaEducationClassAssignmentDefault.md b/src/Education/beta/examples/Remove-MgBetaEducationClassAssignmentDefault.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/beta/examples/Remove-MgBetaEducationClassAssignmentDefault.md +++ b/src/Education/beta/examples/Remove-MgBetaEducationClassAssignmentDefault.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/beta/examples/Remove-MgBetaEducationClassAssignmentSetting.md b/src/Education/beta/examples/Remove-MgBetaEducationClassAssignmentSetting.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/beta/examples/Remove-MgBetaEducationClassAssignmentSetting.md +++ b/src/Education/beta/examples/Remove-MgBetaEducationClassAssignmentSetting.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/beta/examples/Remove-MgBetaEducationClassAssignmentSubmission.md b/src/Education/beta/examples/Remove-MgBetaEducationClassAssignmentSubmission.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/beta/examples/Remove-MgBetaEducationClassAssignmentSubmission.md +++ b/src/Education/beta/examples/Remove-MgBetaEducationClassAssignmentSubmission.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/beta/examples/Remove-MgBetaEducationClassAssignmentSubmissionSubmittedResource.md b/src/Education/beta/examples/Remove-MgBetaEducationClassAssignmentSubmissionSubmittedResource.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/beta/examples/Remove-MgBetaEducationClassAssignmentSubmissionSubmittedResource.md +++ b/src/Education/beta/examples/Remove-MgBetaEducationClassAssignmentSubmissionSubmittedResource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/beta/examples/Remove-MgBetaEducationMe.md b/src/Education/beta/examples/Remove-MgBetaEducationMe.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/beta/examples/Remove-MgBetaEducationMe.md +++ b/src/Education/beta/examples/Remove-MgBetaEducationMe.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/beta/examples/Remove-MgBetaEducationMeAssignment.md b/src/Education/beta/examples/Remove-MgBetaEducationMeAssignment.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/beta/examples/Remove-MgBetaEducationMeAssignment.md +++ b/src/Education/beta/examples/Remove-MgBetaEducationMeAssignment.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/beta/examples/Remove-MgBetaEducationMeAssignmentCategoryByRef.md b/src/Education/beta/examples/Remove-MgBetaEducationMeAssignmentCategoryByRef.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/beta/examples/Remove-MgBetaEducationMeAssignmentCategoryByRef.md +++ b/src/Education/beta/examples/Remove-MgBetaEducationMeAssignmentCategoryByRef.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/beta/examples/Remove-MgBetaEducationMeAssignmentSubmission.md b/src/Education/beta/examples/Remove-MgBetaEducationMeAssignmentSubmission.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/beta/examples/Remove-MgBetaEducationMeAssignmentSubmission.md +++ b/src/Education/beta/examples/Remove-MgBetaEducationMeAssignmentSubmission.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/beta/examples/Remove-MgBetaEducationMeAssignmentSubmissionSubmittedResource.md b/src/Education/beta/examples/Remove-MgBetaEducationMeAssignmentSubmissionSubmittedResource.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/beta/examples/Remove-MgBetaEducationMeAssignmentSubmissionSubmittedResource.md +++ b/src/Education/beta/examples/Remove-MgBetaEducationMeAssignmentSubmissionSubmittedResource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/beta/examples/Remove-MgBetaEducationSynchronizationProfile.md b/src/Education/beta/examples/Remove-MgBetaEducationSynchronizationProfile.md index a4081093b9..ae67d3889d 100644 --- a/src/Education/beta/examples/Remove-MgBetaEducationSynchronizationProfile.md +++ b/src/Education/beta/examples/Remove-MgBetaEducationSynchronizationProfile.md @@ -1,7 +1,11 @@ -### Example 1: Using the Remove-MgBetaEducationSynchronizationProfile Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Education + Remove-MgBetaEducationSynchronizationProfile -EducationSynchronizationProfileId $educationSynchronizationProfileId + ``` This example shows how to use the Remove-MgBetaEducationSynchronizationProfile Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Education/beta/examples/Remove-MgBetaEducationSynchronizationProfileError.md b/src/Education/beta/examples/Remove-MgBetaEducationSynchronizationProfileError.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/beta/examples/Remove-MgBetaEducationSynchronizationProfileError.md +++ b/src/Education/beta/examples/Remove-MgBetaEducationSynchronizationProfileError.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/beta/examples/Remove-MgBetaEducationSynchronizationProfileStatus.md b/src/Education/beta/examples/Remove-MgBetaEducationSynchronizationProfileStatus.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/beta/examples/Remove-MgBetaEducationSynchronizationProfileStatus.md +++ b/src/Education/beta/examples/Remove-MgBetaEducationSynchronizationProfileStatus.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/beta/examples/Remove-MgBetaEducationUserAssignment.md b/src/Education/beta/examples/Remove-MgBetaEducationUserAssignment.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/beta/examples/Remove-MgBetaEducationUserAssignment.md +++ b/src/Education/beta/examples/Remove-MgBetaEducationUserAssignment.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/beta/examples/Remove-MgBetaEducationUserAssignmentCategoryByRef.md b/src/Education/beta/examples/Remove-MgBetaEducationUserAssignmentCategoryByRef.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/beta/examples/Remove-MgBetaEducationUserAssignmentCategoryByRef.md +++ b/src/Education/beta/examples/Remove-MgBetaEducationUserAssignmentCategoryByRef.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/beta/examples/Remove-MgBetaEducationUserAssignmentSubmission.md b/src/Education/beta/examples/Remove-MgBetaEducationUserAssignmentSubmission.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/beta/examples/Remove-MgBetaEducationUserAssignmentSubmission.md +++ b/src/Education/beta/examples/Remove-MgBetaEducationUserAssignmentSubmission.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/beta/examples/Remove-MgBetaEducationUserAssignmentSubmissionSubmittedResource.md b/src/Education/beta/examples/Remove-MgBetaEducationUserAssignmentSubmissionSubmittedResource.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/beta/examples/Remove-MgBetaEducationUserAssignmentSubmissionSubmittedResource.md +++ b/src/Education/beta/examples/Remove-MgBetaEducationUserAssignmentSubmissionSubmittedResource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/beta/examples/Reset-MgBetaEducationSynchronizationProfile.md b/src/Education/beta/examples/Reset-MgBetaEducationSynchronizationProfile.md index 6a2dddee1d..c1162bccfb 100644 --- a/src/Education/beta/examples/Reset-MgBetaEducationSynchronizationProfile.md +++ b/src/Education/beta/examples/Reset-MgBetaEducationSynchronizationProfile.md @@ -1,7 +1,11 @@ -### Example 1: Using the Reset-MgBetaEducationSynchronizationProfile Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Education + Reset-MgBetaEducationSynchronizationProfile -EducationSynchronizationProfileId $educationSynchronizationProfileId + ``` This example shows how to use the Reset-MgBetaEducationSynchronizationProfile Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Education/beta/examples/Resume-MgBetaEducationSynchronizationProfile.md b/src/Education/beta/examples/Resume-MgBetaEducationSynchronizationProfile.md index 4f7aefa4d5..e9a3c4205c 100644 --- a/src/Education/beta/examples/Resume-MgBetaEducationSynchronizationProfile.md +++ b/src/Education/beta/examples/Resume-MgBetaEducationSynchronizationProfile.md @@ -1,7 +1,11 @@ -### Example 1: Using the Resume-MgBetaEducationSynchronizationProfile Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Education + Resume-MgBetaEducationSynchronizationProfile -EducationSynchronizationProfileId $educationSynchronizationProfileId + ``` This example shows how to use the Resume-MgBetaEducationSynchronizationProfile Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Education/beta/examples/Start-MgBetaEducationSynchronizationProfile.md b/src/Education/beta/examples/Start-MgBetaEducationSynchronizationProfile.md index d32dda57f3..f63c19a414 100644 --- a/src/Education/beta/examples/Start-MgBetaEducationSynchronizationProfile.md +++ b/src/Education/beta/examples/Start-MgBetaEducationSynchronizationProfile.md @@ -1,7 +1,11 @@ -### Example 1: Using the Start-MgBetaEducationSynchronizationProfile Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Education + Start-MgBetaEducationSynchronizationProfile -EducationSynchronizationProfileId $educationSynchronizationProfileId + ``` This example shows how to use the Start-MgBetaEducationSynchronizationProfile Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Education/beta/examples/Suspend-MgBetaEducationSynchronizationProfile.md b/src/Education/beta/examples/Suspend-MgBetaEducationSynchronizationProfile.md index 8f1bfa45d1..bdeeb57810 100644 --- a/src/Education/beta/examples/Suspend-MgBetaEducationSynchronizationProfile.md +++ b/src/Education/beta/examples/Suspend-MgBetaEducationSynchronizationProfile.md @@ -1,7 +1,11 @@ -### Example 1: Using the Suspend-MgBetaEducationSynchronizationProfile Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Education + Suspend-MgBetaEducationSynchronizationProfile -EducationSynchronizationProfileId $educationSynchronizationProfileId + ``` This example shows how to use the Suspend-MgBetaEducationSynchronizationProfile Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Education/beta/examples/Update-MgBetaEducationClassAssignmentCategory.md b/src/Education/beta/examples/Update-MgBetaEducationClassAssignmentCategory.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/beta/examples/Update-MgBetaEducationClassAssignmentCategory.md +++ b/src/Education/beta/examples/Update-MgBetaEducationClassAssignmentCategory.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/beta/examples/Update-MgBetaEducationClassAssignmentResource.md b/src/Education/beta/examples/Update-MgBetaEducationClassAssignmentResource.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/beta/examples/Update-MgBetaEducationClassAssignmentResource.md +++ b/src/Education/beta/examples/Update-MgBetaEducationClassAssignmentResource.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/beta/examples/Update-MgBetaEducationClassAssignmentSetting.md b/src/Education/beta/examples/Update-MgBetaEducationClassAssignmentSetting.md index f3a09a9476..e03c335606 100644 --- a/src/Education/beta/examples/Update-MgBetaEducationClassAssignmentSetting.md +++ b/src/Education/beta/examples/Update-MgBetaEducationClassAssignmentSetting.md @@ -41,36 +41,3 @@ Update-MgBetaEducationClassAssignmentSetting -EducationClassId $educationClassId ``` This example shows how to use the Update-MgBetaEducationClassAssignmentSetting Cmdlet. -### Example 3: Code snippet - -```powershell - -Import-Module Microsoft.Graph.Beta.Education - -$params = @{ - "gradingCategories@delta" = @( - @{ - id = "fb859cd3-943b-4cd6-9bbe-fe1c39eace0e" - displayName = "Lab Test" - } - @{ - "@odata.context" = "https://graph.microsoft.com/beta/$metadata#gradingCategories/$deletedEntity" - id = "e2a86277-24f9-4f29-8196-8c83fc69d00d" - reason = "deleted" - } - @{ - displayName = "Lab Practice" - percentageWeight = - } - @{ - displayName = "Lab Theory" - percentageWeight = - } - ) -} - -Update-MgBetaEducationClassAssignmentSetting -EducationClassId $educationClassId -BodyParameter $params - -``` -This example shows how to use the Update-MgBetaEducationClassAssignmentSetting Cmdlet. - diff --git a/src/Education/beta/examples/Update-MgBetaEducationClassAssignmentSubmission.md b/src/Education/beta/examples/Update-MgBetaEducationClassAssignmentSubmission.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/beta/examples/Update-MgBetaEducationClassAssignmentSubmission.md +++ b/src/Education/beta/examples/Update-MgBetaEducationClassAssignmentSubmission.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/beta/examples/Update-MgBetaEducationClassAssignmentSubmissionResource.md b/src/Education/beta/examples/Update-MgBetaEducationClassAssignmentSubmissionResource.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/beta/examples/Update-MgBetaEducationClassAssignmentSubmissionResource.md +++ b/src/Education/beta/examples/Update-MgBetaEducationClassAssignmentSubmissionResource.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/beta/examples/Update-MgBetaEducationClassAssignmentSubmissionSubmittedResource.md b/src/Education/beta/examples/Update-MgBetaEducationClassAssignmentSubmissionSubmittedResource.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/beta/examples/Update-MgBetaEducationClassAssignmentSubmissionSubmittedResource.md +++ b/src/Education/beta/examples/Update-MgBetaEducationClassAssignmentSubmissionSubmittedResource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/beta/examples/Update-MgBetaEducationMe.md b/src/Education/beta/examples/Update-MgBetaEducationMe.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/beta/examples/Update-MgBetaEducationMe.md +++ b/src/Education/beta/examples/Update-MgBetaEducationMe.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/beta/examples/Update-MgBetaEducationMeAssignment.md b/src/Education/beta/examples/Update-MgBetaEducationMeAssignment.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/beta/examples/Update-MgBetaEducationMeAssignment.md +++ b/src/Education/beta/examples/Update-MgBetaEducationMeAssignment.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/beta/examples/Update-MgBetaEducationMeAssignmentResource.md b/src/Education/beta/examples/Update-MgBetaEducationMeAssignmentResource.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/beta/examples/Update-MgBetaEducationMeAssignmentResource.md +++ b/src/Education/beta/examples/Update-MgBetaEducationMeAssignmentResource.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/beta/examples/Update-MgBetaEducationMeAssignmentSubmission.md b/src/Education/beta/examples/Update-MgBetaEducationMeAssignmentSubmission.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/beta/examples/Update-MgBetaEducationMeAssignmentSubmission.md +++ b/src/Education/beta/examples/Update-MgBetaEducationMeAssignmentSubmission.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/beta/examples/Update-MgBetaEducationMeAssignmentSubmissionResource.md b/src/Education/beta/examples/Update-MgBetaEducationMeAssignmentSubmissionResource.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/beta/examples/Update-MgBetaEducationMeAssignmentSubmissionResource.md +++ b/src/Education/beta/examples/Update-MgBetaEducationMeAssignmentSubmissionResource.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/beta/examples/Update-MgBetaEducationMeAssignmentSubmissionSubmittedResource.md b/src/Education/beta/examples/Update-MgBetaEducationMeAssignmentSubmissionSubmittedResource.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/beta/examples/Update-MgBetaEducationMeAssignmentSubmissionSubmittedResource.md +++ b/src/Education/beta/examples/Update-MgBetaEducationMeAssignmentSubmissionSubmittedResource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/beta/examples/Update-MgBetaEducationRoot.md b/src/Education/beta/examples/Update-MgBetaEducationRoot.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/beta/examples/Update-MgBetaEducationRoot.md +++ b/src/Education/beta/examples/Update-MgBetaEducationRoot.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/beta/examples/Update-MgBetaEducationSynchronizationProfile.md b/src/Education/beta/examples/Update-MgBetaEducationSynchronizationProfile.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/beta/examples/Update-MgBetaEducationSynchronizationProfile.md +++ b/src/Education/beta/examples/Update-MgBetaEducationSynchronizationProfile.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/beta/examples/Update-MgBetaEducationSynchronizationProfileError.md b/src/Education/beta/examples/Update-MgBetaEducationSynchronizationProfileError.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/beta/examples/Update-MgBetaEducationSynchronizationProfileError.md +++ b/src/Education/beta/examples/Update-MgBetaEducationSynchronizationProfileError.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/beta/examples/Update-MgBetaEducationSynchronizationProfileStatus.md b/src/Education/beta/examples/Update-MgBetaEducationSynchronizationProfileStatus.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/beta/examples/Update-MgBetaEducationSynchronizationProfileStatus.md +++ b/src/Education/beta/examples/Update-MgBetaEducationSynchronizationProfileStatus.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/beta/examples/Update-MgBetaEducationUser.md b/src/Education/beta/examples/Update-MgBetaEducationUser.md index 33c8acafbe..9754e620d1 100644 --- a/src/Education/beta/examples/Update-MgBetaEducationUser.md +++ b/src/Education/beta/examples/Update-MgBetaEducationUser.md @@ -5,10 +5,22 @@ Import-Module Microsoft.Graph.Beta.Education $params = @{ - displayName = "Rogelio Cazares" - givenName = "Rogelio" - middleName = "Fernando" - surname = "Cazares" + 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-MgBetaEducationUser -EducationUserId $educationUserId -BodyParameter $params diff --git a/src/Education/beta/examples/Update-MgBetaEducationUserAssignment.md b/src/Education/beta/examples/Update-MgBetaEducationUserAssignment.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/beta/examples/Update-MgBetaEducationUserAssignment.md +++ b/src/Education/beta/examples/Update-MgBetaEducationUserAssignment.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/beta/examples/Update-MgBetaEducationUserAssignmentResource.md b/src/Education/beta/examples/Update-MgBetaEducationUserAssignmentResource.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/beta/examples/Update-MgBetaEducationUserAssignmentResource.md +++ b/src/Education/beta/examples/Update-MgBetaEducationUserAssignmentResource.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/beta/examples/Update-MgBetaEducationUserAssignmentSubmission.md b/src/Education/beta/examples/Update-MgBetaEducationUserAssignmentSubmission.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/beta/examples/Update-MgBetaEducationUserAssignmentSubmission.md +++ b/src/Education/beta/examples/Update-MgBetaEducationUserAssignmentSubmission.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/beta/examples/Update-MgBetaEducationUserAssignmentSubmissionResource.md b/src/Education/beta/examples/Update-MgBetaEducationUserAssignmentSubmissionResource.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/beta/examples/Update-MgBetaEducationUserAssignmentSubmissionResource.md +++ b/src/Education/beta/examples/Update-MgBetaEducationUserAssignmentSubmissionResource.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/beta/examples/Update-MgBetaEducationUserAssignmentSubmissionSubmittedResource.md b/src/Education/beta/examples/Update-MgBetaEducationUserAssignmentSubmissionSubmittedResource.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/beta/examples/Update-MgBetaEducationUserAssignmentSubmissionSubmittedResource.md +++ b/src/Education/beta/examples/Update-MgBetaEducationUserAssignmentSubmissionSubmittedResource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/v1.0/examples/Get-MgEducationClassAssignmentCategoryDelta.md b/src/Education/v1.0/examples/Get-MgEducationClassAssignmentCategoryDelta.md index 2fd2fbfcb7..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Get-MgEducationClassAssignmentCategoryDelta.md +++ b/src/Education/v1.0/examples/Get-MgEducationClassAssignmentCategoryDelta.md @@ -1,28 +0,0 @@ -### 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" -``` -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" -``` -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 -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/v1.0/examples/Get-MgEducationClassAssignmentDelta.md b/src/Education/v1.0/examples/Get-MgEducationClassAssignmentDelta.md index 160f1ef584..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Get-MgEducationClassAssignmentDelta.md +++ b/src/Education/v1.0/examples/Get-MgEducationClassAssignmentDelta.md @@ -1,21 +0,0 @@ -### 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" -``` -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" -``` -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/v1.0/examples/Get-MgEducationClassDelta.md b/src/Education/v1.0/examples/Get-MgEducationClassDelta.md index 21042a9005..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Get-MgEducationClassDelta.md +++ b/src/Education/v1.0/examples/Get-MgEducationClassDelta.md @@ -1,7 +0,0 @@ -### 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/v1.0/examples/Get-MgEducationClassGroup.md b/src/Education/v1.0/examples/Get-MgEducationClassGroup.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Get-MgEducationClassGroup.md +++ b/src/Education/v1.0/examples/Get-MgEducationClassGroup.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/v1.0/examples/Get-MgEducationMe.md b/src/Education/v1.0/examples/Get-MgEducationMe.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Get-MgEducationMe.md +++ b/src/Education/v1.0/examples/Get-MgEducationMe.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/v1.0/examples/Get-MgEducationMeAssignmentCategoryDelta.md b/src/Education/v1.0/examples/Get-MgEducationMeAssignmentCategoryDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Get-MgEducationMeAssignmentCategoryDelta.md +++ b/src/Education/v1.0/examples/Get-MgEducationMeAssignmentCategoryDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/v1.0/examples/Get-MgEducationMeAssignmentDelta.md b/src/Education/v1.0/examples/Get-MgEducationMeAssignmentDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Get-MgEducationMeAssignmentDelta.md +++ b/src/Education/v1.0/examples/Get-MgEducationMeAssignmentDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/v1.0/examples/Get-MgEducationRoot.md b/src/Education/v1.0/examples/Get-MgEducationRoot.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Get-MgEducationRoot.md +++ b/src/Education/v1.0/examples/Get-MgEducationRoot.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/v1.0/examples/Get-MgEducationSchoolDelta.md b/src/Education/v1.0/examples/Get-MgEducationSchoolDelta.md index 27fd275b36..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Get-MgEducationSchoolDelta.md +++ b/src/Education/v1.0/examples/Get-MgEducationSchoolDelta.md @@ -1,7 +0,0 @@ -### 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/v1.0/examples/Get-MgEducationUserAssignmentCategoryDelta.md b/src/Education/v1.0/examples/Get-MgEducationUserAssignmentCategoryDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Get-MgEducationUserAssignmentCategoryDelta.md +++ b/src/Education/v1.0/examples/Get-MgEducationUserAssignmentCategoryDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/v1.0/examples/Get-MgEducationUserAssignmentDelta.md b/src/Education/v1.0/examples/Get-MgEducationUserAssignmentDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Get-MgEducationUserAssignmentDelta.md +++ b/src/Education/v1.0/examples/Get-MgEducationUserAssignmentDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/v1.0/examples/Get-MgEducationUserDelta.md b/src/Education/v1.0/examples/Get-MgEducationUserDelta.md index 8ebded8c6c..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Get-MgEducationUserDelta.md +++ b/src/Education/v1.0/examples/Get-MgEducationUserDelta.md @@ -1,7 +0,0 @@ -### 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/v1.0/examples/Remove-MgEducationClassAssignmentDefault.md b/src/Education/v1.0/examples/Remove-MgEducationClassAssignmentDefault.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Remove-MgEducationClassAssignmentDefault.md +++ b/src/Education/v1.0/examples/Remove-MgEducationClassAssignmentDefault.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/v1.0/examples/Remove-MgEducationClassAssignmentSetting.md b/src/Education/v1.0/examples/Remove-MgEducationClassAssignmentSetting.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Remove-MgEducationClassAssignmentSetting.md +++ b/src/Education/v1.0/examples/Remove-MgEducationClassAssignmentSetting.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/v1.0/examples/Remove-MgEducationClassAssignmentSubmission.md b/src/Education/v1.0/examples/Remove-MgEducationClassAssignmentSubmission.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Remove-MgEducationClassAssignmentSubmission.md +++ b/src/Education/v1.0/examples/Remove-MgEducationClassAssignmentSubmission.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/v1.0/examples/Remove-MgEducationClassAssignmentSubmissionSubmittedResource.md b/src/Education/v1.0/examples/Remove-MgEducationClassAssignmentSubmissionSubmittedResource.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Remove-MgEducationClassAssignmentSubmissionSubmittedResource.md +++ b/src/Education/v1.0/examples/Remove-MgEducationClassAssignmentSubmissionSubmittedResource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/v1.0/examples/Remove-MgEducationMe.md b/src/Education/v1.0/examples/Remove-MgEducationMe.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Remove-MgEducationMe.md +++ b/src/Education/v1.0/examples/Remove-MgEducationMe.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/v1.0/examples/Remove-MgEducationMeAssignment.md b/src/Education/v1.0/examples/Remove-MgEducationMeAssignment.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Remove-MgEducationMeAssignment.md +++ b/src/Education/v1.0/examples/Remove-MgEducationMeAssignment.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/v1.0/examples/Remove-MgEducationMeAssignmentSubmission.md b/src/Education/v1.0/examples/Remove-MgEducationMeAssignmentSubmission.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Remove-MgEducationMeAssignmentSubmission.md +++ b/src/Education/v1.0/examples/Remove-MgEducationMeAssignmentSubmission.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/v1.0/examples/Remove-MgEducationMeAssignmentSubmissionSubmittedResource.md b/src/Education/v1.0/examples/Remove-MgEducationMeAssignmentSubmissionSubmittedResource.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Remove-MgEducationMeAssignmentSubmissionSubmittedResource.md +++ b/src/Education/v1.0/examples/Remove-MgEducationMeAssignmentSubmissionSubmittedResource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/v1.0/examples/Remove-MgEducationUserAssignment.md b/src/Education/v1.0/examples/Remove-MgEducationUserAssignment.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Remove-MgEducationUserAssignment.md +++ b/src/Education/v1.0/examples/Remove-MgEducationUserAssignment.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/v1.0/examples/Remove-MgEducationUserAssignmentSubmission.md b/src/Education/v1.0/examples/Remove-MgEducationUserAssignmentSubmission.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Remove-MgEducationUserAssignmentSubmission.md +++ b/src/Education/v1.0/examples/Remove-MgEducationUserAssignmentSubmission.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/v1.0/examples/Remove-MgEducationUserAssignmentSubmissionSubmittedResource.md b/src/Education/v1.0/examples/Remove-MgEducationUserAssignmentSubmissionSubmittedResource.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Remove-MgEducationUserAssignmentSubmissionSubmittedResource.md +++ b/src/Education/v1.0/examples/Remove-MgEducationUserAssignmentSubmissionSubmittedResource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/v1.0/examples/Update-MgEducationClassAssignmentCategory.md b/src/Education/v1.0/examples/Update-MgEducationClassAssignmentCategory.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Update-MgEducationClassAssignmentCategory.md +++ b/src/Education/v1.0/examples/Update-MgEducationClassAssignmentCategory.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/v1.0/examples/Update-MgEducationClassAssignmentResource.md b/src/Education/v1.0/examples/Update-MgEducationClassAssignmentResource.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Update-MgEducationClassAssignmentResource.md +++ b/src/Education/v1.0/examples/Update-MgEducationClassAssignmentResource.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/v1.0/examples/Update-MgEducationClassAssignmentSubmission.md b/src/Education/v1.0/examples/Update-MgEducationClassAssignmentSubmission.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Update-MgEducationClassAssignmentSubmission.md +++ b/src/Education/v1.0/examples/Update-MgEducationClassAssignmentSubmission.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/v1.0/examples/Update-MgEducationClassAssignmentSubmissionResource.md b/src/Education/v1.0/examples/Update-MgEducationClassAssignmentSubmissionResource.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Update-MgEducationClassAssignmentSubmissionResource.md +++ b/src/Education/v1.0/examples/Update-MgEducationClassAssignmentSubmissionResource.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/v1.0/examples/Update-MgEducationClassAssignmentSubmissionSubmittedResource.md b/src/Education/v1.0/examples/Update-MgEducationClassAssignmentSubmissionSubmittedResource.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Update-MgEducationClassAssignmentSubmissionSubmittedResource.md +++ b/src/Education/v1.0/examples/Update-MgEducationClassAssignmentSubmissionSubmittedResource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/v1.0/examples/Update-MgEducationMe.md b/src/Education/v1.0/examples/Update-MgEducationMe.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Update-MgEducationMe.md +++ b/src/Education/v1.0/examples/Update-MgEducationMe.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/v1.0/examples/Update-MgEducationMeAssignment.md b/src/Education/v1.0/examples/Update-MgEducationMeAssignment.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Update-MgEducationMeAssignment.md +++ b/src/Education/v1.0/examples/Update-MgEducationMeAssignment.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/v1.0/examples/Update-MgEducationMeAssignmentResource.md b/src/Education/v1.0/examples/Update-MgEducationMeAssignmentResource.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Update-MgEducationMeAssignmentResource.md +++ b/src/Education/v1.0/examples/Update-MgEducationMeAssignmentResource.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/v1.0/examples/Update-MgEducationMeAssignmentSubmission.md b/src/Education/v1.0/examples/Update-MgEducationMeAssignmentSubmission.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Update-MgEducationMeAssignmentSubmission.md +++ b/src/Education/v1.0/examples/Update-MgEducationMeAssignmentSubmission.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/v1.0/examples/Update-MgEducationMeAssignmentSubmissionResource.md b/src/Education/v1.0/examples/Update-MgEducationMeAssignmentSubmissionResource.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Update-MgEducationMeAssignmentSubmissionResource.md +++ b/src/Education/v1.0/examples/Update-MgEducationMeAssignmentSubmissionResource.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/v1.0/examples/Update-MgEducationMeAssignmentSubmissionSubmittedResource.md b/src/Education/v1.0/examples/Update-MgEducationMeAssignmentSubmissionSubmittedResource.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Update-MgEducationMeAssignmentSubmissionSubmittedResource.md +++ b/src/Education/v1.0/examples/Update-MgEducationMeAssignmentSubmissionSubmittedResource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/v1.0/examples/Update-MgEducationRoot.md b/src/Education/v1.0/examples/Update-MgEducationRoot.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Update-MgEducationRoot.md +++ b/src/Education/v1.0/examples/Update-MgEducationRoot.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/v1.0/examples/Update-MgEducationUserAssignment.md b/src/Education/v1.0/examples/Update-MgEducationUserAssignment.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Update-MgEducationUserAssignment.md +++ b/src/Education/v1.0/examples/Update-MgEducationUserAssignment.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Education/v1.0/examples/Update-MgEducationUserAssignmentResource.md b/src/Education/v1.0/examples/Update-MgEducationUserAssignmentResource.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Update-MgEducationUserAssignmentResource.md +++ b/src/Education/v1.0/examples/Update-MgEducationUserAssignmentResource.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/v1.0/examples/Update-MgEducationUserAssignmentSubmission.md b/src/Education/v1.0/examples/Update-MgEducationUserAssignmentSubmission.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Update-MgEducationUserAssignmentSubmission.md +++ b/src/Education/v1.0/examples/Update-MgEducationUserAssignmentSubmission.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/v1.0/examples/Update-MgEducationUserAssignmentSubmissionResource.md b/src/Education/v1.0/examples/Update-MgEducationUserAssignmentSubmissionResource.md index f6c6949389..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Update-MgEducationUserAssignmentSubmissionResource.md +++ b/src/Education/v1.0/examples/Update-MgEducationUserAssignmentSubmissionResource.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Education/v1.0/examples/Update-MgEducationUserAssignmentSubmissionSubmittedResource.md b/src/Education/v1.0/examples/Update-MgEducationUserAssignmentSubmissionSubmittedResource.md index 093355d11d..e69de29bb2 100644 --- a/src/Education/v1.0/examples/Update-MgEducationUserAssignmentSubmissionSubmittedResource.md +++ b/src/Education/v1.0/examples/Update-MgEducationUserAssignmentSubmissionSubmittedResource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Files/beta/examples/Get-MgBetaDriveActivity.md b/src/Files/beta/examples/Get-MgBetaDriveActivity.md index 093355d11d..e809d50ed9 100644 --- a/src/Files/beta/examples/Get-MgBetaDriveActivity.md +++ b/src/Files/beta/examples/Get-MgBetaDriveActivity.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Code snippet + ```powershell -PS C:\> {{ Add code here }} -{{ Add output here }} -``` +Import-Module Microsoft.Graph.Beta.Files -{{ Add description here }} +Get-MgBetaDriveActivity -DriveId $driveId -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} ``` - -{{ Add description here }} +This example shows how to use the Get-MgBetaDriveActivity Cmdlet. diff --git a/src/Files/beta/examples/Get-MgBetaDriveItemActivity.md b/src/Files/beta/examples/Get-MgBetaDriveItemActivity.md index 093355d11d..e69de29bb2 100644 --- a/src/Files/beta/examples/Get-MgBetaDriveItemActivity.md +++ b/src/Files/beta/examples/Get-MgBetaDriveItemActivity.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Files/beta/examples/Get-MgBetaDriveItemActivityByInterval.md b/src/Files/beta/examples/Get-MgBetaDriveItemActivityByInterval.md index 093355d11d..e69de29bb2 100644 --- a/src/Files/beta/examples/Get-MgBetaDriveItemActivityByInterval.md +++ b/src/Files/beta/examples/Get-MgBetaDriveItemActivityByInterval.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Files/beta/examples/Get-MgBetaDriveItemAnalytic.md b/src/Files/beta/examples/Get-MgBetaDriveItemAnalytic.md index 60412bca1f..affc949f63 100644 --- a/src/Files/beta/examples/Get-MgBetaDriveItemAnalytic.md +++ b/src/Files/beta/examples/Get-MgBetaDriveItemAnalytic.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaDriveItemAnalytic Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Files + Get-MgBetaDriveItemAnalytic -DriveId $driveId -DriveItemId $driveItemId + ``` This example shows how to use the Get-MgBetaDriveItemAnalytic Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Files/beta/examples/Get-MgBetaDriveItemContent.md b/src/Files/beta/examples/Get-MgBetaDriveItemContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Files/beta/examples/Get-MgBetaDriveItemContent.md +++ b/src/Files/beta/examples/Get-MgBetaDriveItemContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Files/beta/examples/Get-MgBetaDriveItemDelta.md b/src/Files/beta/examples/Get-MgBetaDriveItemDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Files/beta/examples/Get-MgBetaDriveItemDelta.md +++ b/src/Files/beta/examples/Get-MgBetaDriveItemDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Files/beta/examples/Get-MgBetaDriveItemListItem.md b/src/Files/beta/examples/Get-MgBetaDriveItemListItem.md index 093355d11d..e69de29bb2 100644 --- a/src/Files/beta/examples/Get-MgBetaDriveItemListItem.md +++ b/src/Files/beta/examples/Get-MgBetaDriveItemListItem.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Files/beta/examples/Get-MgBetaDriveItemListItemActivity.md b/src/Files/beta/examples/Get-MgBetaDriveItemListItemActivity.md index 093355d11d..e69de29bb2 100644 --- a/src/Files/beta/examples/Get-MgBetaDriveItemListItemActivity.md +++ b/src/Files/beta/examples/Get-MgBetaDriveItemListItemActivity.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Files/beta/examples/Get-MgBetaDriveItemListItemActivityByInterval.md b/src/Files/beta/examples/Get-MgBetaDriveItemListItemActivityByInterval.md index 093355d11d..e69de29bb2 100644 --- a/src/Files/beta/examples/Get-MgBetaDriveItemListItemActivityByInterval.md +++ b/src/Files/beta/examples/Get-MgBetaDriveItemListItemActivityByInterval.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Files/beta/examples/Get-MgBetaDriveItemListItemAnalytic.md b/src/Files/beta/examples/Get-MgBetaDriveItemListItemAnalytic.md index 093355d11d..e69de29bb2 100644 --- a/src/Files/beta/examples/Get-MgBetaDriveItemListItemAnalytic.md +++ b/src/Files/beta/examples/Get-MgBetaDriveItemListItemAnalytic.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Files/beta/examples/Get-MgBetaDriveItemListItemDriveItem.md b/src/Files/beta/examples/Get-MgBetaDriveItemListItemDriveItem.md index 093355d11d..e69de29bb2 100644 --- a/src/Files/beta/examples/Get-MgBetaDriveItemListItemDriveItem.md +++ b/src/Files/beta/examples/Get-MgBetaDriveItemListItemDriveItem.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Files/beta/examples/Get-MgBetaDriveItemListItemDriveItemContent.md b/src/Files/beta/examples/Get-MgBetaDriveItemListItemDriveItemContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Files/beta/examples/Get-MgBetaDriveItemListItemDriveItemContent.md +++ b/src/Files/beta/examples/Get-MgBetaDriveItemListItemDriveItemContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Files/beta/examples/Get-MgBetaDriveItemListItemField.md b/src/Files/beta/examples/Get-MgBetaDriveItemListItemField.md index f6c6949389..e69de29bb2 100644 --- a/src/Files/beta/examples/Get-MgBetaDriveItemListItemField.md +++ b/src/Files/beta/examples/Get-MgBetaDriveItemListItemField.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Files/beta/examples/Get-MgBetaDriveItemListItemVersionField.md b/src/Files/beta/examples/Get-MgBetaDriveItemListItemVersionField.md index 093355d11d..e69de29bb2 100644 --- a/src/Files/beta/examples/Get-MgBetaDriveItemListItemVersionField.md +++ b/src/Files/beta/examples/Get-MgBetaDriveItemListItemVersionField.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Files/beta/examples/Get-MgBetaDriveList.md b/src/Files/beta/examples/Get-MgBetaDriveList.md index 093355d11d..e69de29bb2 100644 --- a/src/Files/beta/examples/Get-MgBetaDriveList.md +++ b/src/Files/beta/examples/Get-MgBetaDriveList.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Files/beta/examples/Get-MgBetaDriveListActivity.md b/src/Files/beta/examples/Get-MgBetaDriveListActivity.md index 093355d11d..e69de29bb2 100644 --- a/src/Files/beta/examples/Get-MgBetaDriveListActivity.md +++ b/src/Files/beta/examples/Get-MgBetaDriveListActivity.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Files/beta/examples/Get-MgBetaDriveListColumnSourceColumn.md b/src/Files/beta/examples/Get-MgBetaDriveListColumnSourceColumn.md index 093355d11d..e69de29bb2 100644 --- a/src/Files/beta/examples/Get-MgBetaDriveListColumnSourceColumn.md +++ b/src/Files/beta/examples/Get-MgBetaDriveListColumnSourceColumn.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Files/v1.0/examples/Get-MgDriveItemActivityByInterval.md b/src/Files/v1.0/examples/Get-MgDriveItemActivityByInterval.md index 093355d11d..e69de29bb2 100644 --- a/src/Files/v1.0/examples/Get-MgDriveItemActivityByInterval.md +++ b/src/Files/v1.0/examples/Get-MgDriveItemActivityByInterval.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Files/v1.0/examples/Get-MgDriveItemAnalytic.md b/src/Files/v1.0/examples/Get-MgDriveItemAnalytic.md index 093355d11d..e69de29bb2 100644 --- a/src/Files/v1.0/examples/Get-MgDriveItemAnalytic.md +++ b/src/Files/v1.0/examples/Get-MgDriveItemAnalytic.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Files/v1.0/examples/Get-MgDriveItemContent.md b/src/Files/v1.0/examples/Get-MgDriveItemContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Files/v1.0/examples/Get-MgDriveItemContent.md +++ b/src/Files/v1.0/examples/Get-MgDriveItemContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Files/v1.0/examples/Get-MgDriveItemDelta.md b/src/Files/v1.0/examples/Get-MgDriveItemDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Files/v1.0/examples/Get-MgDriveItemDelta.md +++ b/src/Files/v1.0/examples/Get-MgDriveItemDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Files/v1.0/examples/Get-MgDriveItemListItem.md b/src/Files/v1.0/examples/Get-MgDriveItemListItem.md index 093355d11d..e69de29bb2 100644 --- a/src/Files/v1.0/examples/Get-MgDriveItemListItem.md +++ b/src/Files/v1.0/examples/Get-MgDriveItemListItem.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Files/v1.0/examples/Get-MgDriveItemListItemActivityByInterval.md b/src/Files/v1.0/examples/Get-MgDriveItemListItemActivityByInterval.md index 093355d11d..e69de29bb2 100644 --- a/src/Files/v1.0/examples/Get-MgDriveItemListItemActivityByInterval.md +++ b/src/Files/v1.0/examples/Get-MgDriveItemListItemActivityByInterval.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Files/v1.0/examples/Get-MgDriveItemListItemAnalytic.md b/src/Files/v1.0/examples/Get-MgDriveItemListItemAnalytic.md index 093355d11d..e69de29bb2 100644 --- a/src/Files/v1.0/examples/Get-MgDriveItemListItemAnalytic.md +++ b/src/Files/v1.0/examples/Get-MgDriveItemListItemAnalytic.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Files/v1.0/examples/Get-MgDriveItemListItemDriveItem.md b/src/Files/v1.0/examples/Get-MgDriveItemListItemDriveItem.md index 093355d11d..e69de29bb2 100644 --- a/src/Files/v1.0/examples/Get-MgDriveItemListItemDriveItem.md +++ b/src/Files/v1.0/examples/Get-MgDriveItemListItemDriveItem.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Files/v1.0/examples/Get-MgDriveItemListItemDriveItemContent.md b/src/Files/v1.0/examples/Get-MgDriveItemListItemDriveItemContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Files/v1.0/examples/Get-MgDriveItemListItemDriveItemContent.md +++ b/src/Files/v1.0/examples/Get-MgDriveItemListItemDriveItemContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Files/v1.0/examples/Get-MgDriveItemListItemField.md b/src/Files/v1.0/examples/Get-MgDriveItemListItemField.md index f6c6949389..e69de29bb2 100644 --- a/src/Files/v1.0/examples/Get-MgDriveItemListItemField.md +++ b/src/Files/v1.0/examples/Get-MgDriveItemListItemField.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Files/v1.0/examples/Get-MgDriveItemListItemVersionField.md b/src/Files/v1.0/examples/Get-MgDriveItemListItemVersionField.md index 093355d11d..e69de29bb2 100644 --- a/src/Files/v1.0/examples/Get-MgDriveItemListItemVersionField.md +++ b/src/Files/v1.0/examples/Get-MgDriveItemListItemVersionField.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Files/v1.0/examples/Get-MgDriveList.md b/src/Files/v1.0/examples/Get-MgDriveList.md index 093355d11d..e69de29bb2 100644 --- a/src/Files/v1.0/examples/Get-MgDriveList.md +++ b/src/Files/v1.0/examples/Get-MgDriveList.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Files/v1.0/examples/Get-MgDriveListColumnSourceColumn.md b/src/Files/v1.0/examples/Get-MgDriveListColumnSourceColumn.md index 093355d11d..e69de29bb2 100644 --- a/src/Files/v1.0/examples/Get-MgDriveListColumnSourceColumn.md +++ b/src/Files/v1.0/examples/Get-MgDriveListColumnSourceColumn.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancial.md b/src/Financials/beta/examples/Get-MgBetaFinancial.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancial.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancial.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerCurrency.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerCurrency.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerCurrency.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerCurrency.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentCustomer.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentCustomer.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentCustomer.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentCustomer.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentCustomerCurrency.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentCustomerCurrency.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentCustomerCurrency.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentCustomerCurrency.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentCustomerPictureContent.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentCustomerPictureContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentCustomerPictureContent.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentCustomerPictureContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentCustomerShipmentMethod.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentCustomerShipmentMethod.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentCustomerShipmentMethod.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentCustomerShipmentMethod.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentJournalAccount.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentJournalAccount.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentJournalAccount.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentJournalAccount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomer.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomer.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomer.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomer.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerCurrency.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerCurrency.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerCurrency.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerCurrency.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPictureContent.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPictureContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPictureContent.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPictureContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerShipmentMethod.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerShipmentMethod.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerShipmentMethod.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerShipmentMethod.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentMethod.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentMethod.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentMethod.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentMethod.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentTerm.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentTerm.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentTerm.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentTerm.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentMethod.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentMethod.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentMethod.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentMethod.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentTerm.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentTerm.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentTerm.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPaymentTerm.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPictureContent.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPictureContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPictureContent.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerPictureContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerShipmentMethod.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerShipmentMethod.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerShipmentMethod.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyCustomerShipmentMethod.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyEmployeePictureContent.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyEmployeePictureContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyEmployeePictureContent.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyEmployeePictureContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyGeneralLedgerEntryAccount.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyGeneralLedgerEntryAccount.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyGeneralLedgerEntryAccount.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyGeneralLedgerEntryAccount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyInformationPicture.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyInformationPicture.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyInformationPicture.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyInformationPicture.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyItemPictureContent.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyItemPictureContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyItemPictureContent.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyItemPictureContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyJournalAccount.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyJournalAccount.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyJournalAccount.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyJournalAccount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyJournalLineAccount.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyJournalLineAccount.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyJournalLineAccount.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyJournalLineAccount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPictureContent.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPictureContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPictureContent.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPictureContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceCurrency.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceCurrency.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceCurrency.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceCurrency.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceLineAccount.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceLineAccount.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceLineAccount.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceLineAccount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceLineItem.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceLineItem.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceLineItem.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceLineItem.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceLineItemCategory.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceLineItemCategory.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceLineItemCategory.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceLineItemCategory.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceLineItemPictureContent.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceLineItemPictureContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceLineItemPictureContent.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceLineItemPictureContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceVendor.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceVendor.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceVendor.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceVendor.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceVendorCurrency.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceVendorCurrency.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceVendorCurrency.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceVendorCurrency.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPaymentMethod.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPaymentMethod.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPaymentMethod.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPaymentMethod.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPaymentTerm.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPaymentTerm.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPaymentTerm.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPaymentTerm.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPictureContent.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPictureContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPictureContent.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPictureContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoCurrency.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoCurrency.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoCurrency.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoCurrency.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoCustomer.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoCustomer.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoCustomer.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoCustomer.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoCustomerCurrency.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoCustomerCurrency.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoCustomerCurrency.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoCustomerCurrency.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoCustomerPaymentMethod.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoCustomerPaymentMethod.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoCustomerPaymentMethod.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoCustomerPaymentMethod.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoCustomerPaymentTerm.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoCustomerPaymentTerm.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoCustomerPaymentTerm.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoCustomerPaymentTerm.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoCustomerPictureContent.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoCustomerPictureContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoCustomerPictureContent.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoCustomerPictureContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoCustomerShipmentMethod.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoCustomerShipmentMethod.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoCustomerShipmentMethod.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoCustomerShipmentMethod.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoLineAccount.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoLineAccount.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoLineAccount.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoLineAccount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoLineItem.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoLineItem.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoLineItem.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoLineItem.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoLineItemCategory.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoLineItemCategory.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoLineItemCategory.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoLineItemCategory.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoLineItemPictureContent.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoLineItemPictureContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoLineItemPictureContent.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoLineItemPictureContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoPaymentTerm.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoPaymentTerm.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoPaymentTerm.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoPaymentTerm.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineAccount.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineAccount.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineAccount.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineAccount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItem.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItem.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItem.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItem.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemCategory.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemCategory.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemCategory.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemCategory.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPictureContent.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPictureContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPictureContent.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPictureContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceCurrency.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceCurrency.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceCurrency.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceCurrency.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceCustomer.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceCustomer.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceCustomer.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceCustomer.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceCustomerCurrency.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceCustomerCurrency.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceCustomerCurrency.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceCustomerCurrency.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceCustomerPaymentMethod.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceCustomerPaymentMethod.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceCustomerPaymentMethod.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceCustomerPaymentMethod.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceCustomerPaymentTerm.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceCustomerPaymentTerm.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceCustomerPaymentTerm.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceCustomerPaymentTerm.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceCustomerPictureContent.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceCustomerPictureContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceCustomerPictureContent.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceCustomerPictureContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceCustomerShipmentMethod.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceCustomerShipmentMethod.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceCustomerShipmentMethod.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceCustomerShipmentMethod.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceLineAccount.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceLineAccount.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceLineAccount.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceLineAccount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceLineItem.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceLineItem.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceLineItem.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceLineItem.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceLineItemCategory.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceLineItemCategory.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceLineItemCategory.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceLineItemCategory.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceLineItemPictureContent.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceLineItemPictureContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceLineItemPictureContent.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceLineItemPictureContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoicePaymentTerm.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoicePaymentTerm.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoicePaymentTerm.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoicePaymentTerm.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceShipmentMethod.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceShipmentMethod.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceShipmentMethod.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleInvoiceShipmentMethod.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderCurrency.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderCurrency.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderCurrency.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderCurrency.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderCustomer.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderCustomer.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderCustomer.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderCustomer.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderCustomerCurrency.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderCustomerCurrency.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderCustomerCurrency.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderCustomerCurrency.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderCustomerPaymentMethod.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderCustomerPaymentMethod.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderCustomerPaymentMethod.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderCustomerPaymentMethod.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderCustomerPaymentTerm.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderCustomerPaymentTerm.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderCustomerPaymentTerm.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderCustomerPaymentTerm.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderCustomerPictureContent.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderCustomerPictureContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderCustomerPictureContent.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderCustomerPictureContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderCustomerShipmentMethod.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderCustomerShipmentMethod.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderCustomerShipmentMethod.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderCustomerShipmentMethod.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderLineAccount.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderLineAccount.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderLineAccount.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderLineAccount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderLineItem.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderLineItem.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderLineItem.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderLineItem.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderLineItemCategory.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderLineItemCategory.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderLineItemCategory.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderLineItemCategory.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderLineItemPictureContent.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderLineItemPictureContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderLineItemPictureContent.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderLineItemPictureContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderPaymentTerm.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderPaymentTerm.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderPaymentTerm.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleOrderPaymentTerm.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteCurrency.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteCurrency.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteCurrency.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteCurrency.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteCustomer.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteCustomer.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteCustomer.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteCustomer.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteCustomerCurrency.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteCustomerCurrency.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteCustomerCurrency.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteCustomerCurrency.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteCustomerPaymentMethod.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteCustomerPaymentMethod.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteCustomerPaymentMethod.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteCustomerPaymentMethod.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteCustomerPaymentTerm.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteCustomerPaymentTerm.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteCustomerPaymentTerm.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteCustomerPaymentTerm.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteCustomerPictureContent.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteCustomerPictureContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteCustomerPictureContent.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteCustomerPictureContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteCustomerShipmentMethod.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteCustomerShipmentMethod.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteCustomerShipmentMethod.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteCustomerShipmentMethod.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteLineAccount.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteLineAccount.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteLineAccount.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteLineAccount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteLineItem.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteLineItem.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteLineItem.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteLineItem.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteLineItemCategory.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteLineItemCategory.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteLineItemCategory.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteLineItemCategory.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteLineItemPictureContent.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteLineItemPictureContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteLineItemPictureContent.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteLineItemPictureContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuotePaymentTerm.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuotePaymentTerm.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuotePaymentTerm.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuotePaymentTerm.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteShipmentMethod.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteShipmentMethod.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteShipmentMethod.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanySaleQuoteShipmentMethod.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyVendorCurrency.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyVendorCurrency.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyVendorCurrency.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyVendorCurrency.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyVendorPaymentMethod.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyVendorPaymentMethod.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyVendorPaymentMethod.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyVendorPaymentMethod.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyVendorPaymentTerm.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyVendorPaymentTerm.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyVendorPaymentTerm.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyVendorPaymentTerm.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyVendorPictureContent.md b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyVendorPictureContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Get-MgBetaFinancialCompanyVendorPictureContent.md +++ b/src/Financials/beta/examples/Get-MgBetaFinancialCompanyVendorPictureContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Invoke-MgBetaFinancialCompanyJournal.md b/src/Financials/beta/examples/Invoke-MgBetaFinancialCompanyJournal.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Invoke-MgBetaFinancialCompanyJournal.md +++ b/src/Financials/beta/examples/Invoke-MgBetaFinancialCompanyJournal.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Financials/beta/examples/Invoke-MgBetaFinancialCompanyPurchaseInvoice.md b/src/Financials/beta/examples/Invoke-MgBetaFinancialCompanyPurchaseInvoice.md index 093355d11d..e69de29bb2 100644 --- a/src/Financials/beta/examples/Invoke-MgBetaFinancialCompanyPurchaseInvoice.md +++ b/src/Financials/beta/examples/Invoke-MgBetaFinancialCompanyPurchaseInvoice.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Groups/beta/examples/Add-MgBetaGroupToLifecyclePolicy.md b/src/Groups/beta/examples/Add-MgBetaGroupToLifecyclePolicy.md index 093355d11d..e69de29bb2 100644 --- a/src/Groups/beta/examples/Add-MgBetaGroupToLifecyclePolicy.md +++ b/src/Groups/beta/examples/Add-MgBetaGroupToLifecyclePolicy.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Groups/beta/examples/Confirm-MgBetaGroupGrantedPermissionForApp.md b/src/Groups/beta/examples/Confirm-MgBetaGroupGrantedPermissionForApp.md index 093355d11d..e69de29bb2 100644 --- a/src/Groups/beta/examples/Confirm-MgBetaGroupGrantedPermissionForApp.md +++ b/src/Groups/beta/examples/Confirm-MgBetaGroupGrantedPermissionForApp.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Groups/beta/examples/Confirm-MgBetaGroupMemberObject.md b/src/Groups/beta/examples/Confirm-MgBetaGroupMemberObject.md index 093355d11d..e69de29bb2 100644 --- a/src/Groups/beta/examples/Confirm-MgBetaGroupMemberObject.md +++ b/src/Groups/beta/examples/Confirm-MgBetaGroupMemberObject.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Groups/v1.0/examples/Confirm-MgGroupGrantedPermissionForApp.md b/src/Groups/v1.0/examples/Confirm-MgGroupGrantedPermissionForApp.md index 093355d11d..e69de29bb2 100644 --- a/src/Groups/v1.0/examples/Confirm-MgGroupGrantedPermissionForApp.md +++ b/src/Groups/v1.0/examples/Confirm-MgGroupGrantedPermissionForApp.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Groups/v1.0/examples/Confirm-MgGroupMemberObject.md b/src/Groups/v1.0/examples/Confirm-MgGroupMemberObject.md index 093355d11d..e69de29bb2 100644 --- a/src/Groups/v1.0/examples/Confirm-MgGroupMemberObject.md +++ b/src/Groups/v1.0/examples/Confirm-MgGroupMemberObject.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.DirectoryManagement/beta/examples/Complete-MgBetaDirectoryImpactedResource.md b/src/Identity.DirectoryManagement/beta/examples/Complete-MgBetaDirectoryImpactedResource.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.DirectoryManagement/beta/examples/Complete-MgBetaDirectoryImpactedResource.md +++ b/src/Identity.DirectoryManagement/beta/examples/Complete-MgBetaDirectoryImpactedResource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.DirectoryManagement/beta/examples/Complete-MgBetaDirectoryRecommendation.md b/src/Identity.DirectoryManagement/beta/examples/Complete-MgBetaDirectoryRecommendation.md index 093355d11d..9eaf68e180 100644 --- a/src/Identity.DirectoryManagement/beta/examples/Complete-MgBetaDirectoryRecommendation.md +++ b/src/Identity.DirectoryManagement/beta/examples/Complete-MgBetaDirectoryRecommendation.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Code snippet + ```powershell -PS C:\> {{ Add code here }} -{{ Add output here }} -``` +Import-Module Microsoft.Graph.Beta.Identity.DirectoryManagement -{{ Add description here }} +Complete-MgBetaDirectoryRecommendation -RecommendationId $recommendationId -### 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-MgBetaDirectoryRecommendation Cmdlet. diff --git a/src/Identity.DirectoryManagement/beta/examples/Complete-MgBetaDirectoryRecommendationImpactedResource.md b/src/Identity.DirectoryManagement/beta/examples/Complete-MgBetaDirectoryRecommendationImpactedResource.md index 093355d11d..a22a4a32ed 100644 --- a/src/Identity.DirectoryManagement/beta/examples/Complete-MgBetaDirectoryRecommendationImpactedResource.md +++ b/src/Identity.DirectoryManagement/beta/examples/Complete-MgBetaDirectoryRecommendationImpactedResource.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Code snippet + ```powershell -PS C:\> {{ Add code here }} -{{ Add output here }} -``` +Import-Module Microsoft.Graph.Beta.Identity.DirectoryManagement -{{ Add description here }} +Complete-MgBetaDirectoryRecommendationImpactedResource -RecommendationId $recommendationId -ImpactedResourceId $impactedResourceId -### 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-MgBetaDirectoryRecommendationImpactedResource Cmdlet. diff --git a/src/Identity.DirectoryManagement/beta/examples/Confirm-MgBetaAdministrativeUnitMemberGroup.md b/src/Identity.DirectoryManagement/beta/examples/Confirm-MgBetaAdministrativeUnitMemberGroup.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.DirectoryManagement/beta/examples/Confirm-MgBetaAdministrativeUnitMemberGroup.md +++ b/src/Identity.DirectoryManagement/beta/examples/Confirm-MgBetaAdministrativeUnitMemberGroup.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.DirectoryManagement/beta/examples/Confirm-MgBetaAdministrativeUnitMemberObject.md b/src/Identity.DirectoryManagement/beta/examples/Confirm-MgBetaAdministrativeUnitMemberObject.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.DirectoryManagement/beta/examples/Confirm-MgBetaAdministrativeUnitMemberObject.md +++ b/src/Identity.DirectoryManagement/beta/examples/Confirm-MgBetaAdministrativeUnitMemberObject.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.DirectoryManagement/beta/examples/Confirm-MgBetaContactMemberObject.md b/src/Identity.DirectoryManagement/beta/examples/Confirm-MgBetaContactMemberObject.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.DirectoryManagement/beta/examples/Confirm-MgBetaContactMemberObject.md +++ b/src/Identity.DirectoryManagement/beta/examples/Confirm-MgBetaContactMemberObject.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.DirectoryManagement/beta/examples/Confirm-MgBetaContractMemberObject.md b/src/Identity.DirectoryManagement/beta/examples/Confirm-MgBetaContractMemberObject.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.DirectoryManagement/beta/examples/Confirm-MgBetaContractMemberObject.md +++ b/src/Identity.DirectoryManagement/beta/examples/Confirm-MgBetaContractMemberObject.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.DirectoryManagement/beta/examples/Confirm-MgBetaDeviceMemberObject.md b/src/Identity.DirectoryManagement/beta/examples/Confirm-MgBetaDeviceMemberObject.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.DirectoryManagement/beta/examples/Confirm-MgBetaDeviceMemberObject.md +++ b/src/Identity.DirectoryManagement/beta/examples/Confirm-MgBetaDeviceMemberObject.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.DirectoryManagement/v1.0/examples/Confirm-MgContactMemberObject.md b/src/Identity.DirectoryManagement/v1.0/examples/Confirm-MgContactMemberObject.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.DirectoryManagement/v1.0/examples/Confirm-MgContactMemberObject.md +++ b/src/Identity.DirectoryManagement/v1.0/examples/Confirm-MgContactMemberObject.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.DirectoryManagement/v1.0/examples/Confirm-MgContractMemberObject.md b/src/Identity.DirectoryManagement/v1.0/examples/Confirm-MgContractMemberObject.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.DirectoryManagement/v1.0/examples/Confirm-MgContractMemberObject.md +++ b/src/Identity.DirectoryManagement/v1.0/examples/Confirm-MgContractMemberObject.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.DirectoryManagement/v1.0/examples/Confirm-MgDeviceMemberObject.md b/src/Identity.DirectoryManagement/v1.0/examples/Confirm-MgDeviceMemberObject.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.DirectoryManagement/v1.0/examples/Confirm-MgDeviceMemberObject.md +++ b/src/Identity.DirectoryManagement/v1.0/examples/Confirm-MgDeviceMemberObject.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.DirectoryManagement/v1.0/examples/Confirm-MgDirectoryDeletedItemMemberObject.md b/src/Identity.DirectoryManagement/v1.0/examples/Confirm-MgDirectoryDeletedItemMemberObject.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.DirectoryManagement/v1.0/examples/Confirm-MgDirectoryDeletedItemMemberObject.md +++ b/src/Identity.DirectoryManagement/v1.0/examples/Confirm-MgDirectoryDeletedItemMemberObject.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.DirectoryManagement/v1.0/examples/Confirm-MgDirectoryRoleMemberObject.md b/src/Identity.DirectoryManagement/v1.0/examples/Confirm-MgDirectoryRoleMemberObject.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.DirectoryManagement/v1.0/examples/Confirm-MgDirectoryRoleMemberObject.md +++ b/src/Identity.DirectoryManagement/v1.0/examples/Confirm-MgDirectoryRoleMemberObject.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.DirectoryManagement/v1.0/examples/Confirm-MgDirectoryRoleTemplateMemberObject.md b/src/Identity.DirectoryManagement/v1.0/examples/Confirm-MgDirectoryRoleTemplateMemberObject.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.DirectoryManagement/v1.0/examples/Confirm-MgDirectoryRoleTemplateMemberObject.md +++ b/src/Identity.DirectoryManagement/v1.0/examples/Confirm-MgDirectoryRoleTemplateMemberObject.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.DirectoryManagement/v1.0/examples/Confirm-MgOrganizationMemberObject.md b/src/Identity.DirectoryManagement/v1.0/examples/Confirm-MgOrganizationMemberObject.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.DirectoryManagement/v1.0/examples/Confirm-MgOrganizationMemberObject.md +++ b/src/Identity.DirectoryManagement/v1.0/examples/Confirm-MgOrganizationMemberObject.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.DirectoryManagement/v1.0/examples/Get-MgContactDelta.md b/src/Identity.DirectoryManagement/v1.0/examples/Get-MgContactDelta.md index db93604d69..e69de29bb2 100644 --- a/src/Identity.DirectoryManagement/v1.0/examples/Get-MgContactDelta.md +++ b/src/Identity.DirectoryManagement/v1.0/examples/Get-MgContactDelta.md @@ -1,7 +0,0 @@ -### 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/v1.0/examples/Get-MgDeviceDelta.md b/src/Identity.DirectoryManagement/v1.0/examples/Get-MgDeviceDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.DirectoryManagement/v1.0/examples/Get-MgDeviceDelta.md +++ b/src/Identity.DirectoryManagement/v1.0/examples/Get-MgDeviceDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.DirectoryManagement/v1.0/examples/Get-MgDirectory.md b/src/Identity.DirectoryManagement/v1.0/examples/Get-MgDirectory.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.DirectoryManagement/v1.0/examples/Get-MgDirectory.md +++ b/src/Identity.DirectoryManagement/v1.0/examples/Get-MgDirectory.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.DirectoryManagement/v1.0/examples/Get-MgDirectoryAdministrativeUnitDelta.md b/src/Identity.DirectoryManagement/v1.0/examples/Get-MgDirectoryAdministrativeUnitDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.DirectoryManagement/v1.0/examples/Get-MgDirectoryAdministrativeUnitDelta.md +++ b/src/Identity.DirectoryManagement/v1.0/examples/Get-MgDirectoryAdministrativeUnitDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.Governance/beta/examples/Add-MgBetaAccessReviewDecision.md b/src/Identity.Governance/beta/examples/Add-MgBetaAccessReviewDecision.md index 44cf0c32fe..5d1a4ff112 100644 --- a/src/Identity.Governance/beta/examples/Add-MgBetaAccessReviewDecision.md +++ b/src/Identity.Governance/beta/examples/Add-MgBetaAccessReviewDecision.md @@ -1,7 +1,11 @@ -### Example 1: Using the Add-MgBetaAccessReviewDecision Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Identity.Governance + Add-MgBetaAccessReviewDecision -AccessReviewId $accessReviewId + ``` This example shows how to use the Add-MgBetaAccessReviewDecision Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Identity.Governance/beta/examples/Add-MgBetaAccessReviewInstanceDecision.md b/src/Identity.Governance/beta/examples/Add-MgBetaAccessReviewInstanceDecision.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.Governance/beta/examples/Add-MgBetaAccessReviewInstanceDecision.md +++ b/src/Identity.Governance/beta/examples/Add-MgBetaAccessReviewInstanceDecision.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.Governance/beta/examples/Add-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecision.md b/src/Identity.Governance/beta/examples/Add-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecision.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.Governance/beta/examples/Add-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecision.md +++ b/src/Identity.Governance/beta/examples/Add-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecision.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.Governance/beta/examples/Export-MgBetaPrivilegedAccessResourceRoleAssignment.md b/src/Identity.Governance/beta/examples/Export-MgBetaPrivilegedAccessResourceRoleAssignment.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.Governance/beta/examples/Export-MgBetaPrivilegedAccessResourceRoleAssignment.md +++ b/src/Identity.Governance/beta/examples/Export-MgBetaPrivilegedAccessResourceRoleAssignment.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.Governance/beta/examples/Export-MgBetaPrivilegedAccessRoleAssignment.md b/src/Identity.Governance/beta/examples/Export-MgBetaPrivilegedAccessRoleAssignment.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.Governance/beta/examples/Export-MgBetaPrivilegedAccessRoleAssignment.md +++ b/src/Identity.Governance/beta/examples/Export-MgBetaPrivilegedAccessRoleAssignment.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.Governance/beta/examples/Get-MgBetaAccessReview.md b/src/Identity.Governance/beta/examples/Get-MgBetaAccessReview.md index e929cb21b1..f8e657220d 100644 --- a/src/Identity.Governance/beta/examples/Get-MgBetaAccessReview.md +++ b/src/Identity.Governance/beta/examples/Get-MgBetaAccessReview.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaAccessReview Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Identity.Governance -Get-MgBetaAccessReview -AccessReviewId $accessReviewId -``` -This example shows how to use the Get-MgBetaAccessReview Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaAccessReview Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Identity.Governance + Get-MgBetaAccessReview -Filter "businessFlowTemplateId eq '6e4f3d20-c5c3-407f-9695-8460952bcc68'" -Top 100 -Skip 0 + ``` This example shows how to use the Get-MgBetaAccessReview Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Identity.Governance/beta/examples/Get-MgBetaAccessReviewDecision.md b/src/Identity.Governance/beta/examples/Get-MgBetaAccessReviewDecision.md index 2577e88b8e..95b7c39926 100644 --- a/src/Identity.Governance/beta/examples/Get-MgBetaAccessReviewDecision.md +++ b/src/Identity.Governance/beta/examples/Get-MgBetaAccessReviewDecision.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaAccessReviewDecision Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Identity.Governance + Get-MgBetaAccessReviewDecision -AccessReviewId $accessReviewId + ``` This example shows how to use the Get-MgBetaAccessReviewDecision Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Identity.Governance/beta/examples/Get-MgBetaAccessReviewInstanceDecision.md b/src/Identity.Governance/beta/examples/Get-MgBetaAccessReviewInstanceDecision.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.Governance/beta/examples/Get-MgBetaAccessReviewInstanceDecision.md +++ b/src/Identity.Governance/beta/examples/Get-MgBetaAccessReviewInstanceDecision.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.Governance/beta/examples/Get-MgBetaAccessReviewInstanceMyDecision.md b/src/Identity.Governance/beta/examples/Get-MgBetaAccessReviewInstanceMyDecision.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.Governance/beta/examples/Get-MgBetaAccessReviewInstanceMyDecision.md +++ b/src/Identity.Governance/beta/examples/Get-MgBetaAccessReviewInstanceMyDecision.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.Governance/beta/examples/Get-MgBetaAccessReviewInstanceReviewer.md b/src/Identity.Governance/beta/examples/Get-MgBetaAccessReviewInstanceReviewer.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.Governance/beta/examples/Get-MgBetaAccessReviewInstanceReviewer.md +++ b/src/Identity.Governance/beta/examples/Get-MgBetaAccessReviewInstanceReviewer.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.Governance/beta/examples/Get-MgBetaAccessReviewMyDecision.md b/src/Identity.Governance/beta/examples/Get-MgBetaAccessReviewMyDecision.md index c38beb4643..3acfb18fab 100644 --- a/src/Identity.Governance/beta/examples/Get-MgBetaAccessReviewMyDecision.md +++ b/src/Identity.Governance/beta/examples/Get-MgBetaAccessReviewMyDecision.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaAccessReviewMyDecision Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Identity.Governance + Get-MgBetaAccessReviewMyDecision -AccessReviewId $accessReviewId + ``` This example shows how to use the Get-MgBetaAccessReviewMyDecision Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Identity.Governance/beta/examples/Get-MgBetaAccessReviewReviewer.md b/src/Identity.Governance/beta/examples/Get-MgBetaAccessReviewReviewer.md index 28015ea379..fc69db2f2e 100644 --- a/src/Identity.Governance/beta/examples/Get-MgBetaAccessReviewReviewer.md +++ b/src/Identity.Governance/beta/examples/Get-MgBetaAccessReviewReviewer.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaAccessReviewReviewer Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Identity.Governance + Get-MgBetaAccessReviewReviewer -AccessReviewId $accessReviewId + ``` This example shows how to use the Get-MgBetaAccessReviewReviewer Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Identity.Governance/beta/examples/Get-MgBetaBusinessFlowTemplate.md b/src/Identity.Governance/beta/examples/Get-MgBetaBusinessFlowTemplate.md index 0a7cefd214..88c9e67fcc 100644 --- a/src/Identity.Governance/beta/examples/Get-MgBetaBusinessFlowTemplate.md +++ b/src/Identity.Governance/beta/examples/Get-MgBetaBusinessFlowTemplate.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaBusinessFlowTemplate Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Identity.Governance + Get-MgBetaBusinessFlowTemplate + ``` This example shows how to use the Get-MgBetaBusinessFlowTemplate Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Identity.Governance/beta/examples/Get-MgBetaEntitlementManagementAccessPackageAssignment.md b/src/Identity.Governance/beta/examples/Get-MgBetaEntitlementManagementAccessPackageAssignment.md index 6697b23861..b95136fd3f 100644 --- a/src/Identity.Governance/beta/examples/Get-MgBetaEntitlementManagementAccessPackageAssignment.md +++ b/src/Identity.Governance/beta/examples/Get-MgBetaEntitlementManagementAccessPackageAssignment.md @@ -1,21 +1,11 @@ -### Example 1: Using the Get-MgBetaEntitlementManagementAccessPackageAssignment Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Identity.Governance -Get-MgBetaEntitlementManagementAccessPackageAssignment -AccessPackageAssignmentId $accessPackageAssignmentId -ExpandProperty "target" -``` -This example shows how to use the Get-MgBetaEntitlementManagementAccessPackageAssignment Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaEntitlementManagementAccessPackageAssignment Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Identity.Governance -Get-MgBetaEntitlementManagementAccessPackageAssignment -AccessPackageAssignmentId $accessPackageAssignmentId -``` -This example shows how to use the Get-MgBetaEntitlementManagementAccessPackageAssignment Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 3: Using the Get-MgBetaEntitlementManagementAccessPackageAssignment Cmdlet +### Example scenarios for using query parameters + ```powershell + Import-Module Microsoft.Graph.Beta.Identity.Governance + Get-MgBetaEntitlementManagementAccessPackageAssignment + ``` -This example shows how to use the Get-MgBetaEntitlementManagementAccessPackageAssignment Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +This example will### example scenarios for using query parameters + diff --git a/src/Identity.Governance/beta/examples/Get-MgBetaEntitlementManagementAccessPackageAssignmentAdditional.md b/src/Identity.Governance/beta/examples/Get-MgBetaEntitlementManagementAccessPackageAssignmentAdditional.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.Governance/beta/examples/Get-MgBetaEntitlementManagementAccessPackageAssignmentAdditional.md +++ b/src/Identity.Governance/beta/examples/Get-MgBetaEntitlementManagementAccessPackageAssignmentAdditional.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.Governance/beta/examples/Get-MgBetaEntitlementManagementAccessPackageAssignmentResourceRole.md b/src/Identity.Governance/beta/examples/Get-MgBetaEntitlementManagementAccessPackageAssignmentResourceRole.md index 41b99e6de9..96df62f5ac 100644 --- a/src/Identity.Governance/beta/examples/Get-MgBetaEntitlementManagementAccessPackageAssignmentResourceRole.md +++ b/src/Identity.Governance/beta/examples/Get-MgBetaEntitlementManagementAccessPackageAssignmentResourceRole.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaEntitlementManagementAccessPackageAssignmentResourceRole Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Identity.Governance -Get-MgBetaEntitlementManagementAccessPackageAssignmentResourceRole -AccessPackageAssignmentResourceRoleId $accessPackageAssignmentResourceRoleId -``` -This example shows how to use the Get-MgBetaEntitlementManagementAccessPackageAssignmentResourceRole Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaEntitlementManagementAccessPackageAssignmentResourceRole Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Identity.Governance + Get-MgBetaEntitlementManagementAccessPackageAssignmentResourceRole + ``` This example shows how to use the Get-MgBetaEntitlementManagementAccessPackageAssignmentResourceRole Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Identity.Governance/beta/examples/Get-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageResourceScope.md b/src/Identity.Governance/beta/examples/Get-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageResourceScope.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.Governance/beta/examples/Get-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageResourceScope.md +++ b/src/Identity.Governance/beta/examples/Get-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageResourceScope.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.Governance/beta/examples/Get-MgBetaEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension.md b/src/Identity.Governance/beta/examples/Get-MgBetaEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension.md index b2e776d0cb..7ac4591196 100644 --- a/src/Identity.Governance/beta/examples/Get-MgBetaEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension.md +++ b/src/Identity.Governance/beta/examples/Get-MgBetaEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Identity.Governance -Get-MgBetaEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension -AccessPackageCatalogId $accessPackageCatalogId -CustomAccessPackageWorkflowExtensionId $customAccessPackageWorkflowExtensionId -``` -This example shows how to use the Get-MgBetaEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Identity.Governance + Get-MgBetaEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension -AccessPackageCatalogId $accessPackageCatalogId + ``` This example shows how to use the Get-MgBetaEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Identity.Governance/beta/examples/Get-MgBetaEntitlementManagementAccessPackageResourceEnvironment.md b/src/Identity.Governance/beta/examples/Get-MgBetaEntitlementManagementAccessPackageResourceEnvironment.md index ba90fa9340..a5a171769a 100644 --- a/src/Identity.Governance/beta/examples/Get-MgBetaEntitlementManagementAccessPackageResourceEnvironment.md +++ b/src/Identity.Governance/beta/examples/Get-MgBetaEntitlementManagementAccessPackageResourceEnvironment.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaEntitlementManagementAccessPackageResourceEnvironment Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Identity.Governance -Get-MgBetaEntitlementManagementAccessPackageResourceEnvironment -AccessPackageResourceEnvironmentId $accessPackageResourceEnvironmentId -``` -This example shows how to use the Get-MgBetaEntitlementManagementAccessPackageResourceEnvironment Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaEntitlementManagementAccessPackageResourceEnvironment Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Identity.Governance + Get-MgBetaEntitlementManagementAccessPackageResourceEnvironment -Filter "originSystem eq 'SharePointOnline'" + ``` This example shows how to use the Get-MgBetaEntitlementManagementAccessPackageResourceEnvironment Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Identity.Governance/v1.0/examples/Get-MgEntitlementManagementAccessPackageCatalog.md b/src/Identity.Governance/v1.0/examples/Get-MgEntitlementManagementAccessPackageCatalog.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.Governance/v1.0/examples/Get-MgEntitlementManagementAccessPackageCatalog.md +++ b/src/Identity.Governance/v1.0/examples/Get-MgEntitlementManagementAccessPackageCatalog.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.Governance/v1.0/examples/Get-MgEntitlementManagementAssignmentAdditional.md b/src/Identity.Governance/v1.0/examples/Get-MgEntitlementManagementAssignmentAdditional.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.Governance/v1.0/examples/Get-MgEntitlementManagementAssignmentAdditional.md +++ b/src/Identity.Governance/v1.0/examples/Get-MgEntitlementManagementAssignmentAdditional.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.Governance/v1.0/examples/Get-MgEntitlementManagementAssignmentPolicyAccessPackage.md b/src/Identity.Governance/v1.0/examples/Get-MgEntitlementManagementAssignmentPolicyAccessPackage.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.Governance/v1.0/examples/Get-MgEntitlementManagementAssignmentPolicyAccessPackage.md +++ b/src/Identity.Governance/v1.0/examples/Get-MgEntitlementManagementAssignmentPolicyAccessPackage.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.Governance/v1.0/examples/Get-MgEntitlementManagementAssignmentPolicyCatalog.md b/src/Identity.Governance/v1.0/examples/Get-MgEntitlementManagementAssignmentPolicyCatalog.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.Governance/v1.0/examples/Get-MgEntitlementManagementAssignmentPolicyCatalog.md +++ b/src/Identity.Governance/v1.0/examples/Get-MgEntitlementManagementAssignmentPolicyCatalog.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.SignIns/beta/examples/Confirm-MgBetaInformationProtectionSignature.md b/src/Identity.SignIns/beta/examples/Confirm-MgBetaInformationProtectionSignature.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.SignIns/beta/examples/Confirm-MgBetaInformationProtectionSignature.md +++ b/src/Identity.SignIns/beta/examples/Confirm-MgBetaInformationProtectionSignature.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.SignIns/beta/examples/Find-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyByMethodMode.md b/src/Identity.SignIns/beta/examples/Find-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyByMethodMode.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.SignIns/beta/examples/Find-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyByMethodMode.md +++ b/src/Identity.SignIns/beta/examples/Find-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyByMethodMode.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.SignIns/beta/examples/Find-MgBetaPolicyAuthenticationStrengthPolicyByMethodMode.md b/src/Identity.SignIns/beta/examples/Find-MgBetaPolicyAuthenticationStrengthPolicyByMethodMode.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.SignIns/beta/examples/Find-MgBetaPolicyAuthenticationStrengthPolicyByMethodMode.md +++ b/src/Identity.SignIns/beta/examples/Find-MgBetaPolicyAuthenticationStrengthPolicyByMethodMode.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityAuthenticationEventListener.md b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityAuthenticationEventListener.md index 093355d11d..e3841db681 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityAuthenticationEventListener.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityAuthenticationEventListener.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Code snippet + ```powershell -PS C:\> {{ Add code here }} -{{ Add output here }} -``` +Import-Module Microsoft.Graph.Beta.Identity.SignIns -{{ Add description here }} +Get-MgBetaIdentityAuthenticationEventListener -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} ``` - -{{ Add description here }} +This example shows how to use the Get-MgBetaIdentityAuthenticationEventListener Cmdlet. diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlow.md b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlow.md index 1a58e0c6d2..ff1dff0823 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlow.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlow.md @@ -1,21 +1,22 @@ -### Example 1: Using the Get-MgBetaIdentityB2CUserFlow Cmdlet +### Example 1: List all b2cIdentityUserFlow objects + ```powershell + Import-Module Microsoft.Graph.Beta.Identity.SignIns -Get-MgBetaIdentityB2CUserFlow -B2cIdentityUserFlowId $b2cIdentityUserFlowId + +Get-MgBetaIdentityB2CUserFlow + ``` -This example shows how to use the Get-MgBetaIdentityB2CUserFlow Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaIdentityB2CUserFlow Cmdlet +This example will list all b2cidentityuserflow objects + +### Example 2: List all b2cIdentityUserFlow objects and expand identityProviders + ```powershell + Import-Module Microsoft.Graph.Beta.Identity.SignIns + Get-MgBetaIdentityB2CUserFlow -ExpandProperty "identityProviders" + ``` -This example shows how to use the Get-MgBetaIdentityB2CUserFlow Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 3: Using the Get-MgBetaIdentityB2CUserFlow Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Identity.SignIns -Get-MgBetaIdentityB2CUserFlow -``` -This example shows how to use the Get-MgBetaIdentityB2CUserFlow Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +This example will list all b2cidentityuserflow objects and expand identityproviders + diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowIdentityProvider.md b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowIdentityProvider.md index 78ce300e1d..12576897c3 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowIdentityProvider.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowIdentityProvider.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaIdentityB2CUserFlowIdentityProvider Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Identity.SignIns + Get-MgBetaIdentityB2CUserFlowIdentityProvider -B2cIdentityUserFlowId $b2cIdentityUserFlowId + ``` This example shows how to use the Get-MgBetaIdentityB2CUserFlowIdentityProvider Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowIdentityProviderByRef.md b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowIdentityProviderByRef.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowIdentityProviderByRef.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowIdentityProviderByRef.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowLanguage.md b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowLanguage.md index 3c8b123f6b..55af2941d2 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowLanguage.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowLanguage.md @@ -1,21 +1,22 @@ -### Example 1: Using the Get-MgBetaIdentityB2CUserFlowLanguage Cmdlet +### Example 1: Retrieve a list of all languages + ```powershell + Import-Module Microsoft.Graph.Beta.Identity.SignIns + Get-MgBetaIdentityB2CUserFlowLanguage -B2cIdentityUserFlowId $b2cIdentityUserFlowId + ``` -This example shows how to use the Get-MgBetaIdentityB2CUserFlowLanguage Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaIdentityB2CUserFlowLanguage Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Identity.SignIns -Get-MgBetaIdentityB2CUserFlowLanguage -B2cIdentityUserFlowId $b2cIdentityUserFlowId -UserFlowLanguageConfigurationId $userFlowLanguageConfigurationId -``` -This example shows how to use the Get-MgBetaIdentityB2CUserFlowLanguage Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 3: Using the Get-MgBetaIdentityB2CUserFlowLanguage Cmdlet +This example will retrieve a list of all languages + +### Example 2: Retrieve a list of only enabled languages + ```powershell + Import-Module Microsoft.Graph.Beta.Identity.SignIns + Get-MgBetaIdentityB2CUserFlowLanguage -B2cIdentityUserFlowId $b2cIdentityUserFlowId -Filter "isEnabled eq true" + ``` -This example shows how to use the Get-MgBetaIdentityB2CUserFlowLanguage Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +This example will retrieve a list of only enabled languages + diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowLanguageDefaultPage.md b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowLanguageDefaultPage.md index 7d2037666f..6761727cbd 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowLanguageDefaultPage.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowLanguageDefaultPage.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaIdentityB2CUserFlowLanguageDefaultPage Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Identity.SignIns + Get-MgBetaIdentityB2CUserFlowLanguageDefaultPage -B2cIdentityUserFlowId $b2cIdentityUserFlowId -UserFlowLanguageConfigurationId $userFlowLanguageConfigurationId + ``` This example shows how to use the Get-MgBetaIdentityB2CUserFlowLanguageDefaultPage Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowLanguageOverridePage.md b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowLanguageOverridePage.md index da3d82e177..645b3a97fe 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowLanguageOverridePage.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowLanguageOverridePage.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaIdentityB2CUserFlowLanguageOverridePage Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Identity.SignIns + Get-MgBetaIdentityB2CUserFlowLanguageOverridePage -B2cIdentityUserFlowId $b2cIdentityUserFlowId -UserFlowLanguageConfigurationId $userFlowLanguageConfigurationId + ``` This example shows how to use the Get-MgBetaIdentityB2CUserFlowLanguageOverridePage Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowLanguageOverridePageContent.md b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowLanguageOverridePageContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowLanguageOverridePageContent.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowLanguageOverridePageContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowUserAttributeAssignment.md b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowUserAttributeAssignment.md index 9ff4a7b106..b5b7da0d9d 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowUserAttributeAssignment.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowUserAttributeAssignment.md @@ -1,28 +1,22 @@ -### Example 1: Using the Get-MgBetaIdentityB2CUserFlowUserAttributeAssignment Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Identity.SignIns -Get-MgBetaIdentityB2CUserFlowUserAttributeAssignment -B2cIdentityUserFlowId $b2cIdentityUserFlowId -``` -This example shows how to use the Get-MgBetaIdentityB2CUserFlowUserAttributeAssignment Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaIdentityB2CUserFlowUserAttributeAssignment Cmdlet +### Example 1: Get the details of an identityUserFlowAttributeAssignment + ```powershell + Import-Module Microsoft.Graph.Beta.Identity.SignIns + Get-MgBetaIdentityB2CUserFlowUserAttributeAssignment -B2cIdentityUserFlowId $b2cIdentityUserFlowId -IdentityUserFlowAttributeAssignmentId $identityUserFlowAttributeAssignmentId + ``` -This example shows how to use the Get-MgBetaIdentityB2CUserFlowUserAttributeAssignment Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 3: Using the Get-MgBetaIdentityB2CUserFlowUserAttributeAssignment Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Identity.SignIns -Get-MgBetaIdentityB2CUserFlowUserAttributeAssignment -B2cIdentityUserFlowId $b2cIdentityUserFlowId -ExpandProperty "userAttribute" -``` -This example shows how to use the Get-MgBetaIdentityB2CUserFlowUserAttributeAssignment Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 4: Using the Get-MgBetaIdentityB2CUserFlowUserAttributeAssignment Cmdlet +This example will get the details of an identityuserflowattributeassignment + +### Example 2: Get the details of an identityUserFlowAttributeAssignment and expand userAttribute + ```powershell + Import-Module Microsoft.Graph.Beta.Identity.SignIns + Get-MgBetaIdentityB2CUserFlowUserAttributeAssignment -B2cIdentityUserFlowId $b2cIdentityUserFlowId -IdentityUserFlowAttributeAssignmentId $identityUserFlowAttributeAssignmentId -ExpandProperty "userAttribute" + ``` -This example shows how to use the Get-MgBetaIdentityB2CUserFlowUserAttributeAssignment Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +This example will get the details of an identityuserflowattributeassignment and expand userattribute + diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowUserAttributeAssignmentOrder.md b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowUserAttributeAssignmentOrder.md index 88445fe589..e69de29bb2 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowUserAttributeAssignmentOrder.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowUserAttributeAssignmentOrder.md @@ -1,7 +0,0 @@ -### Example 1: Using the Get-MgBetaIdentityB2CUserFlowUserAttributeAssignmentOrder Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Identity.SignIns -Get-MgBetaIdentityB2CUserFlowUserAttributeAssignmentOrder -B2cIdentityUserFlowId $b2cIdentityUserFlowId -``` -This example shows how to use the Get-MgBetaIdentityB2CUserFlowUserAttributeAssignmentOrder Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowUserAttributeAssignmentUserAttribute.md b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowUserAttributeAssignmentUserAttribute.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowUserAttributeAssignmentUserAttribute.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2CUserFlowUserAttributeAssignmentUserAttribute.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2XUserFlowIdentityProviderByRef.md b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2XUserFlowIdentityProviderByRef.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2XUserFlowIdentityProviderByRef.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2XUserFlowIdentityProviderByRef.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2XUserFlowLanguageDefaultPage.md b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2XUserFlowLanguageDefaultPage.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2XUserFlowLanguageDefaultPage.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2XUserFlowLanguageDefaultPage.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2XUserFlowLanguageDefaultPageContent.md b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2XUserFlowLanguageDefaultPageContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2XUserFlowLanguageDefaultPageContent.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2XUserFlowLanguageDefaultPageContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2XUserFlowUserAttributeAssignmentOrder.md b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2XUserFlowUserAttributeAssignmentOrder.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2XUserFlowUserAttributeAssignmentOrder.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2XUserFlowUserAttributeAssignmentOrder.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2XUserFlowUserAttributeAssignmentUserAttribute.md b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2XUserFlowUserAttributeAssignmentUserAttribute.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2XUserFlowUserAttributeAssignmentUserAttribute.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityB2XUserFlowUserAttributeAssignmentUserAttribute.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityConditionalAccessAuthenticationStrength.md b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityConditionalAccessAuthenticationStrength.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityConditionalAccessAuthenticationStrength.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityConditionalAccessAuthenticationStrength.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityContinuouAccessEvaluationPolicy.md b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityContinuouAccessEvaluationPolicy.md index e02aaa0ab8..4898181db3 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityContinuouAccessEvaluationPolicy.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityContinuouAccessEvaluationPolicy.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaIdentityContinuouAccessEvaluationPolicy Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Identity.SignIns + Get-MgBetaIdentityContinuouAccessEvaluationPolicy + ``` This example shows how to use the Get-MgBetaIdentityContinuouAccessEvaluationPolicy Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityCustomAuthenticationExtension.md b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityCustomAuthenticationExtension.md index 093355d11d..4aa8321fc7 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityCustomAuthenticationExtension.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityCustomAuthenticationExtension.md @@ -1,18 +1,11 @@ -### Example 1: {{ Add title here }} +### Example 1: Code snippet + ```powershell -PS C:\> {{ Add code here }} -{{ Add output here }} -``` +Import-Module Microsoft.Graph.Beta.Identity.SignIns -{{ Add description here }} +Get-MgBetaIdentityCustomAuthenticationExtension -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} ``` - -{{ Add description here }} +This example shows how to use the Get-MgBetaIdentityCustomAuthenticationExtension Cmdlet. diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityUserFlow.md b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityUserFlow.md index eb191aad14..b05a3b08d6 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityUserFlow.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaIdentityUserFlow.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaIdentityUserFlow Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Identity.SignIns -Get-MgBetaIdentityUserFlow -IdentityUserFlowId $identityUserFlowId -``` -This example shows how to use the Get-MgBetaIdentityUserFlow Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaIdentityUserFlow Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Identity.SignIns + Get-MgBetaIdentityUserFlow + ``` This example shows how to use the Get-MgBetaIdentityUserFlow Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaInformationProtection.md b/src/Identity.SignIns/beta/examples/Get-MgBetaInformationProtection.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaInformationProtection.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaInformationProtection.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaInformationProtectionBitlocker.md b/src/Identity.SignIns/beta/examples/Get-MgBetaInformationProtectionBitlocker.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaInformationProtectionBitlocker.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaInformationProtectionBitlocker.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaInformationProtectionPolicy.md b/src/Identity.SignIns/beta/examples/Get-MgBetaInformationProtectionPolicy.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaInformationProtectionPolicy.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaInformationProtectionPolicy.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaInformationProtectionPolicyLabel.md b/src/Identity.SignIns/beta/examples/Get-MgBetaInformationProtectionPolicyLabel.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaInformationProtectionPolicyLabel.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaInformationProtectionPolicyLabel.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaInformationProtectionSensitivityPolicySetting.md b/src/Identity.SignIns/beta/examples/Get-MgBetaInformationProtectionSensitivityPolicySetting.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaInformationProtectionSensitivityPolicySetting.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaInformationProtectionSensitivityPolicySetting.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaOauth2PermissionGrantDelta.md b/src/Identity.SignIns/beta/examples/Get-MgBetaOauth2PermissionGrantDelta.md index 1d9056a439..e69de29bb2 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaOauth2PermissionGrantDelta.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaOauth2PermissionGrantDelta.md @@ -1,7 +0,0 @@ -### Example 1: Using the Get-MgBetaOauth2PermissionGrantDelta Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Identity.SignIns -Get-MgBetaOauth2PermissionGrantDelta -``` -This example shows how to use the Get-MgBetaOauth2PermissionGrantDelta Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaPolicyAccessReviewPolicy.md b/src/Identity.SignIns/beta/examples/Get-MgBetaPolicyAccessReviewPolicy.md index 323596cf33..d2742b74d5 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaPolicyAccessReviewPolicy.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaPolicyAccessReviewPolicy.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaPolicyAccessReviewPolicy Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Identity.SignIns + Get-MgBetaPolicyAccessReviewPolicy + ``` This example shows how to use the Get-MgBetaPolicyAccessReviewPolicy Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaPolicyB2CAuthenticationMethodPolicy.md b/src/Identity.SignIns/beta/examples/Get-MgBetaPolicyB2CAuthenticationMethodPolicy.md index 4e80803e56..792f1a97a3 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaPolicyB2CAuthenticationMethodPolicy.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaPolicyB2CAuthenticationMethodPolicy.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaPolicyB2CAuthenticationMethodPolicy Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Identity.SignIns + Get-MgBetaPolicyB2CAuthenticationMethodPolicy + ``` This example shows how to use the Get-MgBetaPolicyB2CAuthenticationMethodPolicy Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaPolicyDeviceRegistrationPolicy.md b/src/Identity.SignIns/beta/examples/Get-MgBetaPolicyDeviceRegistrationPolicy.md index 38c3cc0498..da801bd3c5 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaPolicyDeviceRegistrationPolicy.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaPolicyDeviceRegistrationPolicy.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaPolicyDeviceRegistrationPolicy Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Identity.SignIns + Get-MgBetaPolicyDeviceRegistrationPolicy + ``` This example shows how to use the Get-MgBetaPolicyDeviceRegistrationPolicy Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaPolicyDirectoryRoleAccessReviewPolicy.md b/src/Identity.SignIns/beta/examples/Get-MgBetaPolicyDirectoryRoleAccessReviewPolicy.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaPolicyDirectoryRoleAccessReviewPolicy.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaPolicyDirectoryRoleAccessReviewPolicy.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaPolicyExternalIdentityPolicy.md b/src/Identity.SignIns/beta/examples/Get-MgBetaPolicyExternalIdentityPolicy.md index 3e2d081ed6..8025649aef 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaPolicyExternalIdentityPolicy.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaPolicyExternalIdentityPolicy.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaPolicyExternalIdentityPolicy Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Identity.SignIns + Get-MgBetaPolicyExternalIdentityPolicy + ``` This example shows how to use the Get-MgBetaPolicyExternalIdentityPolicy Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Identity.SignIns/beta/examples/Get-MgBetaPolicyFeatureRolloutPolicyApplyTo.md b/src/Identity.SignIns/beta/examples/Get-MgBetaPolicyFeatureRolloutPolicyApplyTo.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.SignIns/beta/examples/Get-MgBetaPolicyFeatureRolloutPolicyApplyTo.md +++ b/src/Identity.SignIns/beta/examples/Get-MgBetaPolicyFeatureRolloutPolicyApplyTo.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.SignIns/v1.0/examples/Get-MgIdentityB2XUserFlowIdentityProviderByRef.md b/src/Identity.SignIns/v1.0/examples/Get-MgIdentityB2XUserFlowIdentityProviderByRef.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.SignIns/v1.0/examples/Get-MgIdentityB2XUserFlowIdentityProviderByRef.md +++ b/src/Identity.SignIns/v1.0/examples/Get-MgIdentityB2XUserFlowIdentityProviderByRef.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.SignIns/v1.0/examples/Get-MgIdentityB2XUserFlowLanguageDefaultPageContent.md b/src/Identity.SignIns/v1.0/examples/Get-MgIdentityB2XUserFlowLanguageDefaultPageContent.md index f64be2d250..e69de29bb2 100644 --- a/src/Identity.SignIns/v1.0/examples/Get-MgIdentityB2XUserFlowLanguageDefaultPageContent.md +++ b/src/Identity.SignIns/v1.0/examples/Get-MgIdentityB2XUserFlowLanguageDefaultPageContent.md @@ -1,7 +0,0 @@ -### 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/v1.0/examples/Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md b/src/Identity.SignIns/v1.0/examples/Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md index 1d35fcc444..e69de29bb2 100644 --- a/src/Identity.SignIns/v1.0/examples/Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md +++ b/src/Identity.SignIns/v1.0/examples/Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder.md @@ -1,7 +0,0 @@ -### 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/v1.0/examples/Get-MgIdentityB2XUserFlowUserAttributeAssignmentUserAttribute.md b/src/Identity.SignIns/v1.0/examples/Get-MgIdentityB2XUserFlowUserAttributeAssignmentUserAttribute.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.SignIns/v1.0/examples/Get-MgIdentityB2XUserFlowUserAttributeAssignmentUserAttribute.md +++ b/src/Identity.SignIns/v1.0/examples/Get-MgIdentityB2XUserFlowUserAttributeAssignmentUserAttribute.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.SignIns/v1.0/examples/Get-MgInformationProtection.md b/src/Identity.SignIns/v1.0/examples/Get-MgInformationProtection.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.SignIns/v1.0/examples/Get-MgInformationProtection.md +++ b/src/Identity.SignIns/v1.0/examples/Get-MgInformationProtection.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.SignIns/v1.0/examples/Get-MgInformationProtectionBitlocker.md b/src/Identity.SignIns/v1.0/examples/Get-MgInformationProtectionBitlocker.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.SignIns/v1.0/examples/Get-MgInformationProtectionBitlocker.md +++ b/src/Identity.SignIns/v1.0/examples/Get-MgInformationProtectionBitlocker.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Identity.SignIns/v1.0/examples/Get-MgOauth2PermissionGrantDelta.md b/src/Identity.SignIns/v1.0/examples/Get-MgOauth2PermissionGrantDelta.md index 51ba17a10b..e69de29bb2 100644 --- a/src/Identity.SignIns/v1.0/examples/Get-MgOauth2PermissionGrantDelta.md +++ b/src/Identity.SignIns/v1.0/examples/Get-MgOauth2PermissionGrantDelta.md @@ -1,7 +0,0 @@ -### 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/v1.0/examples/Get-MgPolicyFeatureRolloutPolicyApplyTo.md b/src/Identity.SignIns/v1.0/examples/Get-MgPolicyFeatureRolloutPolicyApplyTo.md index 093355d11d..e69de29bb2 100644 --- a/src/Identity.SignIns/v1.0/examples/Get-MgPolicyFeatureRolloutPolicyApplyTo.md +++ b/src/Identity.SignIns/v1.0/examples/Get-MgPolicyFeatureRolloutPolicyApplyTo.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Mail/beta/examples/Get-MgBetaUserInferenceClassification.md b/src/Mail/beta/examples/Get-MgBetaUserInferenceClassification.md index 093355d11d..e69de29bb2 100644 --- a/src/Mail/beta/examples/Get-MgBetaUserInferenceClassification.md +++ b/src/Mail/beta/examples/Get-MgBetaUserInferenceClassification.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Mail/v1.0/examples/Get-MgUserInferenceClassification.md b/src/Mail/v1.0/examples/Get-MgUserInferenceClassification.md index 093355d11d..e69de29bb2 100644 --- a/src/Mail/v1.0/examples/Get-MgUserInferenceClassification.md +++ b/src/Mail/v1.0/examples/Get-MgUserInferenceClassification.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenant.md b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenant.md index 0e2e557883..d555c70820 100644 --- a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenant.md +++ b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenant.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaTenantRelationshipManagedTenant Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.ManagedTenants -Get-MgBetaTenantRelationshipManagedTenant -TenantId $tenantId -``` -This example shows how to use the Get-MgBetaTenantRelationshipManagedTenant Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaTenantRelationshipManagedTenant Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.ManagedTenants + Get-MgBetaTenantRelationshipManagedTenant + ``` This example shows how to use the Get-MgBetaTenantRelationshipManagedTenant Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantAggregatedPolicyCompliance.md b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantAggregatedPolicyCompliance.md index 69462ab258..2e5133dc5c 100644 --- a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantAggregatedPolicyCompliance.md +++ b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantAggregatedPolicyCompliance.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaTenantRelationshipManagedTenantAggregatedPolicyCompliance Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.ManagedTenants + Get-MgBetaTenantRelationshipManagedTenantAggregatedPolicyCompliance + ``` This example shows how to use the Get-MgBetaTenantRelationshipManagedTenantAggregatedPolicyCompliance Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantAuditEvent.md b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantAuditEvent.md index 9f5faaa40c..861a93bfc3 100644 --- a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantAuditEvent.md +++ b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantAuditEvent.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaTenantRelationshipManagedTenantAuditEvent Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.ManagedTenants -Get-MgBetaTenantRelationshipManagedTenantAuditEvent -AuditEventId $auditEventId + +Get-MgBetaTenantRelationshipManagedTenantAuditEvent + ``` This example shows how to use the Get-MgBetaTenantRelationshipManagedTenantAuditEvent Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantCloudPcConnection.md b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantCloudPcConnection.md index a41138b9ea..cca5f64fde 100644 --- a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantCloudPcConnection.md +++ b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantCloudPcConnection.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaTenantRelationshipManagedTenantCloudPcConnection Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.ManagedTenants -Get-MgBetaTenantRelationshipManagedTenantCloudPcConnection -CloudPcConnectionId $cloudPcConnectionId -``` -This example shows how to use the Get-MgBetaTenantRelationshipManagedTenantCloudPcConnection Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaTenantRelationshipManagedTenantCloudPcConnection Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.ManagedTenants + Get-MgBetaTenantRelationshipManagedTenantCloudPcConnection + ``` This example shows how to use the Get-MgBetaTenantRelationshipManagedTenantCloudPcConnection Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantCloudPcDevice.md b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantCloudPcDevice.md index 26fca471a9..405cb89b2e 100644 --- a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantCloudPcDevice.md +++ b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantCloudPcDevice.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaTenantRelationshipManagedTenantCloudPcDevice Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.ManagedTenants -Get-MgBetaTenantRelationshipManagedTenantCloudPcDevice -CloudPcDeviceId $cloudPcDeviceId -``` -This example shows how to use the Get-MgBetaTenantRelationshipManagedTenantCloudPcDevice Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaTenantRelationshipManagedTenantCloudPcDevice Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.ManagedTenants + Get-MgBetaTenantRelationshipManagedTenantCloudPcDevice + ``` This example shows how to use the Get-MgBetaTenantRelationshipManagedTenantCloudPcDevice Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantCloudPcOverview.md b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantCloudPcOverview.md index db45a8f3d3..cd2d4f6254 100644 --- a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantCloudPcOverview.md +++ b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantCloudPcOverview.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaTenantRelationshipManagedTenantCloudPcOverview Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.ManagedTenants -Get-MgBetaTenantRelationshipManagedTenantCloudPcOverview -CloudPcOverviewTenantId $cloudPcOverviewTenantId -``` -This example shows how to use the Get-MgBetaTenantRelationshipManagedTenantCloudPcOverview Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaTenantRelationshipManagedTenantCloudPcOverview Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.ManagedTenants + Get-MgBetaTenantRelationshipManagedTenantCloudPcOverview + ``` This example shows how to use the Get-MgBetaTenantRelationshipManagedTenantCloudPcOverview Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverage.md b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverage.md index 111dc64a5e..d6feae3a51 100644 --- a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverage.md +++ b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverage.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverage Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.ManagedTenants -Get-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverage -ConditionalAccessPolicyCoverageId $conditionalAccessPolicyCoverageId -``` -This example shows how to use the Get-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverage Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverage Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.ManagedTenants + Get-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverage + ``` This example shows how to use the Get-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverage Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantCredentialUserRegistrationSummary.md b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantCredentialUserRegistrationSummary.md index be6c53ba54..77bbde872a 100644 --- a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantCredentialUserRegistrationSummary.md +++ b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantCredentialUserRegistrationSummary.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaTenantRelationshipManagedTenantCredentialUserRegistrationSummary Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.ManagedTenants -Get-MgBetaTenantRelationshipManagedTenantCredentialUserRegistrationSummary -CredentialUserRegistrationsSummaryId $credentialUserRegistrationsSummaryId -``` -This example shows how to use the Get-MgBetaTenantRelationshipManagedTenantCredentialUserRegistrationSummary Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaTenantRelationshipManagedTenantCredentialUserRegistrationSummary Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.ManagedTenants + Get-MgBetaTenantRelationshipManagedTenantCredentialUserRegistrationSummary + ``` This example shows how to use the Get-MgBetaTenantRelationshipManagedTenantCredentialUserRegistrationSummary Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantCustomizedInformation.md b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantCustomizedInformation.md index 4532c85947..ae93565259 100644 --- a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantCustomizedInformation.md +++ b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantCustomizedInformation.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaTenantRelationshipManagedTenantCustomizedInformation Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.ManagedTenants -Get-MgBetaTenantRelationshipManagedTenantCustomizedInformation -TenantCustomizedInformationId $tenantCustomizedInformationId -``` -This example shows how to use the Get-MgBetaTenantRelationshipManagedTenantCustomizedInformation Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaTenantRelationshipManagedTenantCustomizedInformation Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.ManagedTenants + Get-MgBetaTenantRelationshipManagedTenantCustomizedInformation + ``` This example shows how to use the Get-MgBetaTenantRelationshipManagedTenantCustomizedInformation Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantDetailedInformation.md b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantDetailedInformation.md index 90d74fce8a..7db9d89f4b 100644 --- a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantDetailedInformation.md +++ b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantDetailedInformation.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaTenantRelationshipManagedTenantDetailedInformation Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.ManagedTenants -Get-MgBetaTenantRelationshipManagedTenantDetailedInformation -TenantDetailedInformationId $tenantDetailedInformationId -``` -This example shows how to use the Get-MgBetaTenantRelationshipManagedTenantDetailedInformation Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaTenantRelationshipManagedTenantDetailedInformation Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.ManagedTenants + Get-MgBetaTenantRelationshipManagedTenantDetailedInformation + ``` This example shows how to use the Get-MgBetaTenantRelationshipManagedTenantDetailedInformation Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantDeviceCompliancePolicySettingStateSummary.md b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantDeviceCompliancePolicySettingStateSummary.md index 32d6886c15..eabdf1e8b4 100644 --- a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantDeviceCompliancePolicySettingStateSummary.md +++ b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantDeviceCompliancePolicySettingStateSummary.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaTenantRelationshipManagedTenantDeviceCompliancePolicySettingStateSummary Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.ManagedTenants -Get-MgBetaTenantRelationshipManagedTenantDeviceCompliancePolicySettingStateSummary -DeviceCompliancePolicySettingStateSummaryId $deviceCompliancePolicySettingStateSummaryId -``` -This example shows how to use the Get-MgBetaTenantRelationshipManagedTenantDeviceCompliancePolicySettingStateSummary Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaTenantRelationshipManagedTenantDeviceCompliancePolicySettingStateSummary Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.ManagedTenants + Get-MgBetaTenantRelationshipManagedTenantDeviceCompliancePolicySettingStateSummary + ``` This example shows how to use the Get-MgBetaTenantRelationshipManagedTenantDeviceCompliancePolicySettingStateSummary Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantGroup.md b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantGroup.md index dac29e1098..735092733d 100644 --- a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantGroup.md +++ b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantGroup.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaTenantRelationshipManagedTenantGroup Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.ManagedTenants -Get-MgBetaTenantRelationshipManagedTenantGroup -TenantGroupId $tenantGroupId -``` -This example shows how to use the Get-MgBetaTenantRelationshipManagedTenantGroup Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaTenantRelationshipManagedTenantGroup Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.ManagedTenants + Get-MgBetaTenantRelationshipManagedTenantGroup + ``` This example shows how to use the Get-MgBetaTenantRelationshipManagedTenantGroup Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantManagedDeviceCompliance.md b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantManagedDeviceCompliance.md index 1b1b5de6eb..25a3a7b9ef 100644 --- a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantManagedDeviceCompliance.md +++ b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantManagedDeviceCompliance.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaTenantRelationshipManagedTenantManagedDeviceCompliance Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.ManagedTenants -Get-MgBetaTenantRelationshipManagedTenantManagedDeviceCompliance -ManagedDeviceComplianceId $managedDeviceComplianceId -``` -This example shows how to use the Get-MgBetaTenantRelationshipManagedTenantManagedDeviceCompliance Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaTenantRelationshipManagedTenantManagedDeviceCompliance Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.ManagedTenants + Get-MgBetaTenantRelationshipManagedTenantManagedDeviceCompliance + ``` This example shows how to use the Get-MgBetaTenantRelationshipManagedTenantManagedDeviceCompliance Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantManagedDeviceComplianceTrend.md b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantManagedDeviceComplianceTrend.md index de51f55a4f..18a4b0029b 100644 --- a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantManagedDeviceComplianceTrend.md +++ b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantManagedDeviceComplianceTrend.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaTenantRelationshipManagedTenantManagedDeviceComplianceTrend Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.ManagedTenants + Get-MgBetaTenantRelationshipManagedTenantManagedDeviceComplianceTrend -ManagedDeviceComplianceTrendId $managedDeviceComplianceTrendId + ``` This example shows how to use the Get-MgBetaTenantRelationshipManagedTenantManagedDeviceComplianceTrend Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantManagementAction.md b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantManagementAction.md index d9445685f0..39ea298d3d 100644 --- a/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantManagementAction.md +++ b/src/ManagedTenants/beta/examples/Get-MgBetaTenantRelationshipManagedTenantManagementAction.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaTenantRelationshipManagedTenantManagementAction Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.ManagedTenants -Get-MgBetaTenantRelationshipManagedTenantManagementAction -ManagementActionId $managementActionId -``` -This example shows how to use the Get-MgBetaTenantRelationshipManagedTenantManagementAction Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaTenantRelationshipManagedTenantManagementAction Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.ManagedTenants + Get-MgBetaTenantRelationshipManagedTenantManagementAction + ``` This example shows how to use the Get-MgBetaTenantRelationshipManagedTenantManagementAction Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Notes/beta/examples/Get-MgBetaGroupOnenotePageContent.md b/src/Notes/beta/examples/Get-MgBetaGroupOnenotePageContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/beta/examples/Get-MgBetaGroupOnenotePageContent.md +++ b/src/Notes/beta/examples/Get-MgBetaGroupOnenotePageContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/beta/examples/Get-MgBetaGroupOnenoteResource.md b/src/Notes/beta/examples/Get-MgBetaGroupOnenoteResource.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/beta/examples/Get-MgBetaGroupOnenoteResource.md +++ b/src/Notes/beta/examples/Get-MgBetaGroupOnenoteResource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/beta/examples/Get-MgBetaGroupOnenoteResourceContent.md b/src/Notes/beta/examples/Get-MgBetaGroupOnenoteResourceContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/beta/examples/Get-MgBetaGroupOnenoteResourceContent.md +++ b/src/Notes/beta/examples/Get-MgBetaGroupOnenoteResourceContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/beta/examples/Get-MgBetaGroupOnenoteSectionPage.md b/src/Notes/beta/examples/Get-MgBetaGroupOnenoteSectionPage.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/beta/examples/Get-MgBetaGroupOnenoteSectionPage.md +++ b/src/Notes/beta/examples/Get-MgBetaGroupOnenoteSectionPage.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/beta/examples/Get-MgBetaSiteOnenotePageContent.md b/src/Notes/beta/examples/Get-MgBetaSiteOnenotePageContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/beta/examples/Get-MgBetaSiteOnenotePageContent.md +++ b/src/Notes/beta/examples/Get-MgBetaSiteOnenotePageContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/beta/examples/Get-MgBetaSiteOnenoteResource.md b/src/Notes/beta/examples/Get-MgBetaSiteOnenoteResource.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/beta/examples/Get-MgBetaSiteOnenoteResource.md +++ b/src/Notes/beta/examples/Get-MgBetaSiteOnenoteResource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/beta/examples/Get-MgBetaSiteOnenoteResourceContent.md b/src/Notes/beta/examples/Get-MgBetaSiteOnenoteResourceContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/beta/examples/Get-MgBetaSiteOnenoteResourceContent.md +++ b/src/Notes/beta/examples/Get-MgBetaSiteOnenoteResourceContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/beta/examples/Get-MgBetaSiteOnenoteSectionPage.md b/src/Notes/beta/examples/Get-MgBetaSiteOnenoteSectionPage.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/beta/examples/Get-MgBetaSiteOnenoteSectionPage.md +++ b/src/Notes/beta/examples/Get-MgBetaSiteOnenoteSectionPage.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/beta/examples/Get-MgBetaUserOnenotePageContent.md b/src/Notes/beta/examples/Get-MgBetaUserOnenotePageContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/beta/examples/Get-MgBetaUserOnenotePageContent.md +++ b/src/Notes/beta/examples/Get-MgBetaUserOnenotePageContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/beta/examples/Get-MgBetaUserOnenoteResource.md b/src/Notes/beta/examples/Get-MgBetaUserOnenoteResource.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/beta/examples/Get-MgBetaUserOnenoteResource.md +++ b/src/Notes/beta/examples/Get-MgBetaUserOnenoteResource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/beta/examples/Get-MgBetaUserOnenoteResourceContent.md b/src/Notes/beta/examples/Get-MgBetaUserOnenoteResourceContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/beta/examples/Get-MgBetaUserOnenoteResourceContent.md +++ b/src/Notes/beta/examples/Get-MgBetaUserOnenoteResourceContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/beta/examples/Get-MgBetaUserOnenoteSectionPage.md b/src/Notes/beta/examples/Get-MgBetaUserOnenoteSectionPage.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/beta/examples/Get-MgBetaUserOnenoteSectionPage.md +++ b/src/Notes/beta/examples/Get-MgBetaUserOnenoteSectionPage.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/beta/examples/New-MgBetaGroupOnenotePage.md b/src/Notes/beta/examples/New-MgBetaGroupOnenotePage.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/beta/examples/New-MgBetaGroupOnenotePage.md +++ b/src/Notes/beta/examples/New-MgBetaGroupOnenotePage.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/beta/examples/New-MgBetaGroupOnenoteSectionPage.md b/src/Notes/beta/examples/New-MgBetaGroupOnenoteSectionPage.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/beta/examples/New-MgBetaGroupOnenoteSectionPage.md +++ b/src/Notes/beta/examples/New-MgBetaGroupOnenoteSectionPage.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/beta/examples/New-MgBetaSiteOnenotePage.md b/src/Notes/beta/examples/New-MgBetaSiteOnenotePage.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/beta/examples/New-MgBetaSiteOnenotePage.md +++ b/src/Notes/beta/examples/New-MgBetaSiteOnenotePage.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/beta/examples/New-MgBetaSiteOnenoteSectionPage.md b/src/Notes/beta/examples/New-MgBetaSiteOnenoteSectionPage.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/beta/examples/New-MgBetaSiteOnenoteSectionPage.md +++ b/src/Notes/beta/examples/New-MgBetaSiteOnenoteSectionPage.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/beta/examples/New-MgBetaUserOnenotePage.md b/src/Notes/beta/examples/New-MgBetaUserOnenotePage.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/beta/examples/New-MgBetaUserOnenotePage.md +++ b/src/Notes/beta/examples/New-MgBetaUserOnenotePage.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/beta/examples/New-MgBetaUserOnenoteSectionPage.md b/src/Notes/beta/examples/New-MgBetaUserOnenoteSectionPage.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/beta/examples/New-MgBetaUserOnenoteSectionPage.md +++ b/src/Notes/beta/examples/New-MgBetaUserOnenoteSectionPage.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/beta/examples/Remove-MgBetaGroupOnenoteNotebook.md b/src/Notes/beta/examples/Remove-MgBetaGroupOnenoteNotebook.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/beta/examples/Remove-MgBetaGroupOnenoteNotebook.md +++ b/src/Notes/beta/examples/Remove-MgBetaGroupOnenoteNotebook.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/beta/examples/Remove-MgBetaGroupOnenoteSection.md b/src/Notes/beta/examples/Remove-MgBetaGroupOnenoteSection.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/beta/examples/Remove-MgBetaGroupOnenoteSection.md +++ b/src/Notes/beta/examples/Remove-MgBetaGroupOnenoteSection.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/beta/examples/Remove-MgBetaGroupOnenoteSectionGroup.md b/src/Notes/beta/examples/Remove-MgBetaGroupOnenoteSectionGroup.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/beta/examples/Remove-MgBetaGroupOnenoteSectionGroup.md +++ b/src/Notes/beta/examples/Remove-MgBetaGroupOnenoteSectionGroup.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/beta/examples/Remove-MgBetaSiteOnenoteNotebook.md b/src/Notes/beta/examples/Remove-MgBetaSiteOnenoteNotebook.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/beta/examples/Remove-MgBetaSiteOnenoteNotebook.md +++ b/src/Notes/beta/examples/Remove-MgBetaSiteOnenoteNotebook.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/beta/examples/Remove-MgBetaSiteOnenoteSection.md b/src/Notes/beta/examples/Remove-MgBetaSiteOnenoteSection.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/beta/examples/Remove-MgBetaSiteOnenoteSection.md +++ b/src/Notes/beta/examples/Remove-MgBetaSiteOnenoteSection.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/beta/examples/Remove-MgBetaSiteOnenoteSectionGroup.md b/src/Notes/beta/examples/Remove-MgBetaSiteOnenoteSectionGroup.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/beta/examples/Remove-MgBetaSiteOnenoteSectionGroup.md +++ b/src/Notes/beta/examples/Remove-MgBetaSiteOnenoteSectionGroup.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/beta/examples/Remove-MgBetaUserOnenoteNotebook.md b/src/Notes/beta/examples/Remove-MgBetaUserOnenoteNotebook.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/beta/examples/Remove-MgBetaUserOnenoteNotebook.md +++ b/src/Notes/beta/examples/Remove-MgBetaUserOnenoteNotebook.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/beta/examples/Remove-MgBetaUserOnenoteSection.md b/src/Notes/beta/examples/Remove-MgBetaUserOnenoteSection.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/beta/examples/Remove-MgBetaUserOnenoteSection.md +++ b/src/Notes/beta/examples/Remove-MgBetaUserOnenoteSection.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/beta/examples/Remove-MgBetaUserOnenoteSectionGroup.md b/src/Notes/beta/examples/Remove-MgBetaUserOnenoteSectionGroup.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/beta/examples/Remove-MgBetaUserOnenoteSectionGroup.md +++ b/src/Notes/beta/examples/Remove-MgBetaUserOnenoteSectionGroup.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/beta/examples/Set-MgBetaGroupOnenotePageContent.md b/src/Notes/beta/examples/Set-MgBetaGroupOnenotePageContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/beta/examples/Set-MgBetaGroupOnenotePageContent.md +++ b/src/Notes/beta/examples/Set-MgBetaGroupOnenotePageContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/beta/examples/Set-MgBetaGroupOnenoteResourceContent.md b/src/Notes/beta/examples/Set-MgBetaGroupOnenoteResourceContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/beta/examples/Set-MgBetaGroupOnenoteResourceContent.md +++ b/src/Notes/beta/examples/Set-MgBetaGroupOnenoteResourceContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/beta/examples/Set-MgBetaGroupOnenoteSectionPageContent.md b/src/Notes/beta/examples/Set-MgBetaGroupOnenoteSectionPageContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/beta/examples/Set-MgBetaGroupOnenoteSectionPageContent.md +++ b/src/Notes/beta/examples/Set-MgBetaGroupOnenoteSectionPageContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/beta/examples/Set-MgBetaSiteOnenotePageContent.md b/src/Notes/beta/examples/Set-MgBetaSiteOnenotePageContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/beta/examples/Set-MgBetaSiteOnenotePageContent.md +++ b/src/Notes/beta/examples/Set-MgBetaSiteOnenotePageContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/beta/examples/Set-MgBetaSiteOnenoteResourceContent.md b/src/Notes/beta/examples/Set-MgBetaSiteOnenoteResourceContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/beta/examples/Set-MgBetaSiteOnenoteResourceContent.md +++ b/src/Notes/beta/examples/Set-MgBetaSiteOnenoteResourceContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/beta/examples/Set-MgBetaSiteOnenoteSectionPageContent.md b/src/Notes/beta/examples/Set-MgBetaSiteOnenoteSectionPageContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/beta/examples/Set-MgBetaSiteOnenoteSectionPageContent.md +++ b/src/Notes/beta/examples/Set-MgBetaSiteOnenoteSectionPageContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/beta/examples/Set-MgBetaUserOnenotePageContent.md b/src/Notes/beta/examples/Set-MgBetaUserOnenotePageContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/beta/examples/Set-MgBetaUserOnenotePageContent.md +++ b/src/Notes/beta/examples/Set-MgBetaUserOnenotePageContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/beta/examples/Set-MgBetaUserOnenoteResourceContent.md b/src/Notes/beta/examples/Set-MgBetaUserOnenoteResourceContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/beta/examples/Set-MgBetaUserOnenoteResourceContent.md +++ b/src/Notes/beta/examples/Set-MgBetaUserOnenoteResourceContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/beta/examples/Set-MgBetaUserOnenoteSectionPageContent.md b/src/Notes/beta/examples/Set-MgBetaUserOnenoteSectionPageContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/beta/examples/Set-MgBetaUserOnenoteSectionPageContent.md +++ b/src/Notes/beta/examples/Set-MgBetaUserOnenoteSectionPageContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/beta/examples/Update-MgBetaGroupOnenoteNotebook.md b/src/Notes/beta/examples/Update-MgBetaGroupOnenoteNotebook.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/beta/examples/Update-MgBetaGroupOnenoteNotebook.md +++ b/src/Notes/beta/examples/Update-MgBetaGroupOnenoteNotebook.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/beta/examples/Update-MgBetaGroupOnenotePage.md b/src/Notes/beta/examples/Update-MgBetaGroupOnenotePage.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/beta/examples/Update-MgBetaGroupOnenotePage.md +++ b/src/Notes/beta/examples/Update-MgBetaGroupOnenotePage.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/beta/examples/Update-MgBetaGroupOnenoteSection.md b/src/Notes/beta/examples/Update-MgBetaGroupOnenoteSection.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/beta/examples/Update-MgBetaGroupOnenoteSection.md +++ b/src/Notes/beta/examples/Update-MgBetaGroupOnenoteSection.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/beta/examples/Update-MgBetaGroupOnenoteSectionGroup.md b/src/Notes/beta/examples/Update-MgBetaGroupOnenoteSectionGroup.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/beta/examples/Update-MgBetaGroupOnenoteSectionGroup.md +++ b/src/Notes/beta/examples/Update-MgBetaGroupOnenoteSectionGroup.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/beta/examples/Update-MgBetaSiteOnenoteNotebook.md b/src/Notes/beta/examples/Update-MgBetaSiteOnenoteNotebook.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/beta/examples/Update-MgBetaSiteOnenoteNotebook.md +++ b/src/Notes/beta/examples/Update-MgBetaSiteOnenoteNotebook.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/beta/examples/Update-MgBetaSiteOnenotePage.md b/src/Notes/beta/examples/Update-MgBetaSiteOnenotePage.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/beta/examples/Update-MgBetaSiteOnenotePage.md +++ b/src/Notes/beta/examples/Update-MgBetaSiteOnenotePage.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/beta/examples/Update-MgBetaSiteOnenoteSection.md b/src/Notes/beta/examples/Update-MgBetaSiteOnenoteSection.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/beta/examples/Update-MgBetaSiteOnenoteSection.md +++ b/src/Notes/beta/examples/Update-MgBetaSiteOnenoteSection.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/beta/examples/Update-MgBetaSiteOnenoteSectionGroup.md b/src/Notes/beta/examples/Update-MgBetaSiteOnenoteSectionGroup.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/beta/examples/Update-MgBetaSiteOnenoteSectionGroup.md +++ b/src/Notes/beta/examples/Update-MgBetaSiteOnenoteSectionGroup.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/beta/examples/Update-MgBetaUserOnenoteNotebook.md b/src/Notes/beta/examples/Update-MgBetaUserOnenoteNotebook.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/beta/examples/Update-MgBetaUserOnenoteNotebook.md +++ b/src/Notes/beta/examples/Update-MgBetaUserOnenoteNotebook.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/beta/examples/Update-MgBetaUserOnenotePage.md b/src/Notes/beta/examples/Update-MgBetaUserOnenotePage.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/beta/examples/Update-MgBetaUserOnenotePage.md +++ b/src/Notes/beta/examples/Update-MgBetaUserOnenotePage.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/beta/examples/Update-MgBetaUserOnenoteSection.md b/src/Notes/beta/examples/Update-MgBetaUserOnenoteSection.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/beta/examples/Update-MgBetaUserOnenoteSection.md +++ b/src/Notes/beta/examples/Update-MgBetaUserOnenoteSection.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/beta/examples/Update-MgBetaUserOnenoteSectionGroup.md b/src/Notes/beta/examples/Update-MgBetaUserOnenoteSectionGroup.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/beta/examples/Update-MgBetaUserOnenoteSectionGroup.md +++ b/src/Notes/beta/examples/Update-MgBetaUserOnenoteSectionGroup.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/v1.0/examples/Get-MgGroupOnenoteResource.md b/src/Notes/v1.0/examples/Get-MgGroupOnenoteResource.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Get-MgGroupOnenoteResource.md +++ b/src/Notes/v1.0/examples/Get-MgGroupOnenoteResource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/v1.0/examples/Get-MgGroupOnenoteResourceContent.md b/src/Notes/v1.0/examples/Get-MgGroupOnenoteResourceContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Get-MgGroupOnenoteResourceContent.md +++ b/src/Notes/v1.0/examples/Get-MgGroupOnenoteResourceContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/v1.0/examples/Get-MgSiteOnenoteResource.md b/src/Notes/v1.0/examples/Get-MgSiteOnenoteResource.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Get-MgSiteOnenoteResource.md +++ b/src/Notes/v1.0/examples/Get-MgSiteOnenoteResource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/v1.0/examples/Get-MgSiteOnenoteResourceContent.md b/src/Notes/v1.0/examples/Get-MgSiteOnenoteResourceContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Get-MgSiteOnenoteResourceContent.md +++ b/src/Notes/v1.0/examples/Get-MgSiteOnenoteResourceContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/v1.0/examples/Get-MgUserOnenoteResource.md b/src/Notes/v1.0/examples/Get-MgUserOnenoteResource.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Get-MgUserOnenoteResource.md +++ b/src/Notes/v1.0/examples/Get-MgUserOnenoteResource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/v1.0/examples/Get-MgUserOnenoteResourceContent.md b/src/Notes/v1.0/examples/Get-MgUserOnenoteResourceContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Get-MgUserOnenoteResourceContent.md +++ b/src/Notes/v1.0/examples/Get-MgUserOnenoteResourceContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/v1.0/examples/Remove-MgGroupOnenoteNotebook.md b/src/Notes/v1.0/examples/Remove-MgGroupOnenoteNotebook.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Remove-MgGroupOnenoteNotebook.md +++ b/src/Notes/v1.0/examples/Remove-MgGroupOnenoteNotebook.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/v1.0/examples/Remove-MgGroupOnenoteSection.md b/src/Notes/v1.0/examples/Remove-MgGroupOnenoteSection.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Remove-MgGroupOnenoteSection.md +++ b/src/Notes/v1.0/examples/Remove-MgGroupOnenoteSection.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/v1.0/examples/Remove-MgGroupOnenoteSectionGroup.md b/src/Notes/v1.0/examples/Remove-MgGroupOnenoteSectionGroup.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Remove-MgGroupOnenoteSectionGroup.md +++ b/src/Notes/v1.0/examples/Remove-MgGroupOnenoteSectionGroup.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/v1.0/examples/Remove-MgSiteOnenoteNotebook.md b/src/Notes/v1.0/examples/Remove-MgSiteOnenoteNotebook.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Remove-MgSiteOnenoteNotebook.md +++ b/src/Notes/v1.0/examples/Remove-MgSiteOnenoteNotebook.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/v1.0/examples/Remove-MgSiteOnenoteSection.md b/src/Notes/v1.0/examples/Remove-MgSiteOnenoteSection.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Remove-MgSiteOnenoteSection.md +++ b/src/Notes/v1.0/examples/Remove-MgSiteOnenoteSection.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/v1.0/examples/Remove-MgSiteOnenoteSectionGroup.md b/src/Notes/v1.0/examples/Remove-MgSiteOnenoteSectionGroup.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Remove-MgSiteOnenoteSectionGroup.md +++ b/src/Notes/v1.0/examples/Remove-MgSiteOnenoteSectionGroup.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/v1.0/examples/Remove-MgUserOnenoteNotebook.md b/src/Notes/v1.0/examples/Remove-MgUserOnenoteNotebook.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Remove-MgUserOnenoteNotebook.md +++ b/src/Notes/v1.0/examples/Remove-MgUserOnenoteNotebook.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/v1.0/examples/Remove-MgUserOnenoteSection.md b/src/Notes/v1.0/examples/Remove-MgUserOnenoteSection.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Remove-MgUserOnenoteSection.md +++ b/src/Notes/v1.0/examples/Remove-MgUserOnenoteSection.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/v1.0/examples/Remove-MgUserOnenoteSectionGroup.md b/src/Notes/v1.0/examples/Remove-MgUserOnenoteSectionGroup.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Remove-MgUserOnenoteSectionGroup.md +++ b/src/Notes/v1.0/examples/Remove-MgUserOnenoteSectionGroup.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/v1.0/examples/Set-MgGroupOnenotePageContent.md b/src/Notes/v1.0/examples/Set-MgGroupOnenotePageContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Set-MgGroupOnenotePageContent.md +++ b/src/Notes/v1.0/examples/Set-MgGroupOnenotePageContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/v1.0/examples/Set-MgGroupOnenoteResourceContent.md b/src/Notes/v1.0/examples/Set-MgGroupOnenoteResourceContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Set-MgGroupOnenoteResourceContent.md +++ b/src/Notes/v1.0/examples/Set-MgGroupOnenoteResourceContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/v1.0/examples/Set-MgGroupOnenoteSectionPageContent.md b/src/Notes/v1.0/examples/Set-MgGroupOnenoteSectionPageContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Set-MgGroupOnenoteSectionPageContent.md +++ b/src/Notes/v1.0/examples/Set-MgGroupOnenoteSectionPageContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/v1.0/examples/Set-MgSiteOnenotePageContent.md b/src/Notes/v1.0/examples/Set-MgSiteOnenotePageContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Set-MgSiteOnenotePageContent.md +++ b/src/Notes/v1.0/examples/Set-MgSiteOnenotePageContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/v1.0/examples/Set-MgSiteOnenoteResourceContent.md b/src/Notes/v1.0/examples/Set-MgSiteOnenoteResourceContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Set-MgSiteOnenoteResourceContent.md +++ b/src/Notes/v1.0/examples/Set-MgSiteOnenoteResourceContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/v1.0/examples/Set-MgSiteOnenoteSectionPageContent.md b/src/Notes/v1.0/examples/Set-MgSiteOnenoteSectionPageContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Set-MgSiteOnenoteSectionPageContent.md +++ b/src/Notes/v1.0/examples/Set-MgSiteOnenoteSectionPageContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/v1.0/examples/Set-MgUserOnenotePageContent.md b/src/Notes/v1.0/examples/Set-MgUserOnenotePageContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Set-MgUserOnenotePageContent.md +++ b/src/Notes/v1.0/examples/Set-MgUserOnenotePageContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/v1.0/examples/Set-MgUserOnenoteResourceContent.md b/src/Notes/v1.0/examples/Set-MgUserOnenoteResourceContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Set-MgUserOnenoteResourceContent.md +++ b/src/Notes/v1.0/examples/Set-MgUserOnenoteResourceContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/v1.0/examples/Set-MgUserOnenoteSectionPageContent.md b/src/Notes/v1.0/examples/Set-MgUserOnenoteSectionPageContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Set-MgUserOnenoteSectionPageContent.md +++ b/src/Notes/v1.0/examples/Set-MgUserOnenoteSectionPageContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Notes/v1.0/examples/Update-MgGroupOnenoteNotebook.md b/src/Notes/v1.0/examples/Update-MgGroupOnenoteNotebook.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Update-MgGroupOnenoteNotebook.md +++ b/src/Notes/v1.0/examples/Update-MgGroupOnenoteNotebook.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/v1.0/examples/Update-MgGroupOnenotePage.md b/src/Notes/v1.0/examples/Update-MgGroupOnenotePage.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Update-MgGroupOnenotePage.md +++ b/src/Notes/v1.0/examples/Update-MgGroupOnenotePage.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/v1.0/examples/Update-MgGroupOnenoteSection.md b/src/Notes/v1.0/examples/Update-MgGroupOnenoteSection.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Update-MgGroupOnenoteSection.md +++ b/src/Notes/v1.0/examples/Update-MgGroupOnenoteSection.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/v1.0/examples/Update-MgGroupOnenoteSectionGroup.md b/src/Notes/v1.0/examples/Update-MgGroupOnenoteSectionGroup.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Update-MgGroupOnenoteSectionGroup.md +++ b/src/Notes/v1.0/examples/Update-MgGroupOnenoteSectionGroup.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/v1.0/examples/Update-MgSiteOnenoteNotebook.md b/src/Notes/v1.0/examples/Update-MgSiteOnenoteNotebook.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Update-MgSiteOnenoteNotebook.md +++ b/src/Notes/v1.0/examples/Update-MgSiteOnenoteNotebook.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/v1.0/examples/Update-MgSiteOnenotePage.md b/src/Notes/v1.0/examples/Update-MgSiteOnenotePage.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Update-MgSiteOnenotePage.md +++ b/src/Notes/v1.0/examples/Update-MgSiteOnenotePage.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/v1.0/examples/Update-MgSiteOnenoteSection.md b/src/Notes/v1.0/examples/Update-MgSiteOnenoteSection.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Update-MgSiteOnenoteSection.md +++ b/src/Notes/v1.0/examples/Update-MgSiteOnenoteSection.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/v1.0/examples/Update-MgSiteOnenoteSectionGroup.md b/src/Notes/v1.0/examples/Update-MgSiteOnenoteSectionGroup.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Update-MgSiteOnenoteSectionGroup.md +++ b/src/Notes/v1.0/examples/Update-MgSiteOnenoteSectionGroup.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/v1.0/examples/Update-MgUserOnenoteNotebook.md b/src/Notes/v1.0/examples/Update-MgUserOnenoteNotebook.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Update-MgUserOnenoteNotebook.md +++ b/src/Notes/v1.0/examples/Update-MgUserOnenoteNotebook.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/v1.0/examples/Update-MgUserOnenotePage.md b/src/Notes/v1.0/examples/Update-MgUserOnenotePage.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Update-MgUserOnenotePage.md +++ b/src/Notes/v1.0/examples/Update-MgUserOnenotePage.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/v1.0/examples/Update-MgUserOnenoteSection.md b/src/Notes/v1.0/examples/Update-MgUserOnenoteSection.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Update-MgUserOnenoteSection.md +++ b/src/Notes/v1.0/examples/Update-MgUserOnenoteSection.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Notes/v1.0/examples/Update-MgUserOnenoteSectionGroup.md b/src/Notes/v1.0/examples/Update-MgUserOnenoteSectionGroup.md index f6c6949389..e69de29bb2 100644 --- a/src/Notes/v1.0/examples/Update-MgUserOnenoteSectionGroup.md +++ b/src/Notes/v1.0/examples/Update-MgUserOnenoteSectionGroup.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/People/beta/examples/Get-MgBetaUserProfile.md b/src/People/beta/examples/Get-MgBetaUserProfile.md index e1b78326d0..ce30765cc0 100644 --- a/src/People/beta/examples/Get-MgBetaUserProfile.md +++ b/src/People/beta/examples/Get-MgBetaUserProfile.md @@ -1,16 +1,24 @@ -### Example 1: Using the Get-MgBetaUserProfile Cmdlet +### Example 1: GET a user's profile + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Get-MgBetaUserProfile -UserId $userId + ``` -This example shows how to use the Get-MgBetaUserProfile Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaUserProfile Cmdlet +This example will get a user's profile + +### Example 2: Expand names and skills collection and select properties within the entities + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Get-MgBetaUserProfile -UserId $userId -ExpandProperty "names(`$select=first,last),skills(`$select=displayName)" + ``` -This example shows how to use the Get-MgBetaUserProfile Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +This example will expand names and skills collection and select properties within the entities + diff --git a/src/People/beta/examples/Get-MgBetaUserProfileAccount.md b/src/People/beta/examples/Get-MgBetaUserProfileAccount.md index f97fc86112..37e4380dbb 100644 --- a/src/People/beta/examples/Get-MgBetaUserProfileAccount.md +++ b/src/People/beta/examples/Get-MgBetaUserProfileAccount.md @@ -1,16 +1,12 @@ -### Example 1: Using the Get-MgBetaUserProfileAccount Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Get-MgBetaUserProfileAccount -UserId $userId + ``` This example shows how to use the Get-MgBetaUserProfileAccount Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaUserProfileAccount Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.People -# A UPN can also be used as -UserId. -Get-MgBetaUserProfileAccount -UserId $userId -UserAccountInformationId $userAccountInformationId -``` -This example shows how to use the Get-MgBetaUserProfileAccount Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Get-MgBetaUserProfileAddress.md b/src/People/beta/examples/Get-MgBetaUserProfileAddress.md index 0a4727e46c..c982164d17 100644 --- a/src/People/beta/examples/Get-MgBetaUserProfileAddress.md +++ b/src/People/beta/examples/Get-MgBetaUserProfileAddress.md @@ -1,16 +1,12 @@ -### Example 1: Using the Get-MgBetaUserProfileAddress Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.People -# A UPN can also be used as -UserId. -Get-MgBetaUserProfileAddress -UserId $userId -ItemAddressId $itemAddressId -``` -This example shows how to use the Get-MgBetaUserProfileAddress Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaUserProfileAddress Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Get-MgBetaUserProfileAddress -UserId $userId + ``` This example shows how to use the Get-MgBetaUserProfileAddress Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Get-MgBetaUserProfileAnniversary.md b/src/People/beta/examples/Get-MgBetaUserProfileAnniversary.md index 5b1fed898e..f0e74309aa 100644 --- a/src/People/beta/examples/Get-MgBetaUserProfileAnniversary.md +++ b/src/People/beta/examples/Get-MgBetaUserProfileAnniversary.md @@ -1,16 +1,12 @@ -### Example 1: Using the Get-MgBetaUserProfileAnniversary Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Get-MgBetaUserProfileAnniversary -UserId $userId + ``` This example shows how to use the Get-MgBetaUserProfileAnniversary Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaUserProfileAnniversary Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.People -# A UPN can also be used as -UserId. -Get-MgBetaUserProfileAnniversary -UserId $userId -PersonAnnualEventId $personAnnualEventId -``` -This example shows how to use the Get-MgBetaUserProfileAnniversary Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Get-MgBetaUserProfileAward.md b/src/People/beta/examples/Get-MgBetaUserProfileAward.md index 46b3979f50..7c4acbb9bf 100644 --- a/src/People/beta/examples/Get-MgBetaUserProfileAward.md +++ b/src/People/beta/examples/Get-MgBetaUserProfileAward.md @@ -1,16 +1,12 @@ -### Example 1: Using the Get-MgBetaUserProfileAward Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Get-MgBetaUserProfileAward -UserId $userId + ``` This example shows how to use the Get-MgBetaUserProfileAward Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaUserProfileAward Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.People -# A UPN can also be used as -UserId. -Get-MgBetaUserProfileAward -UserId $userId -PersonAwardId $personAwardId -``` -This example shows how to use the Get-MgBetaUserProfileAward Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Get-MgBetaUserProfileCertification.md b/src/People/beta/examples/Get-MgBetaUserProfileCertification.md index 77135b8d9b..9c4598deb0 100644 --- a/src/People/beta/examples/Get-MgBetaUserProfileCertification.md +++ b/src/People/beta/examples/Get-MgBetaUserProfileCertification.md @@ -1,16 +1,12 @@ -### Example 1: Using the Get-MgBetaUserProfileCertification Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Get-MgBetaUserProfileCertification -UserId $userId + ``` This example shows how to use the Get-MgBetaUserProfileCertification Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaUserProfileCertification Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.People -# A UPN can also be used as -UserId. -Get-MgBetaUserProfileCertification -UserId $userId -PersonCertificationId $personCertificationId -``` -This example shows how to use the Get-MgBetaUserProfileCertification Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Get-MgBetaUserProfileEducationalActivity.md b/src/People/beta/examples/Get-MgBetaUserProfileEducationalActivity.md index d76602cb09..60174cd300 100644 --- a/src/People/beta/examples/Get-MgBetaUserProfileEducationalActivity.md +++ b/src/People/beta/examples/Get-MgBetaUserProfileEducationalActivity.md @@ -1,16 +1,12 @@ -### Example 1: Using the Get-MgBetaUserProfileEducationalActivity Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Get-MgBetaUserProfileEducationalActivity -UserId $userId + ``` This example shows how to use the Get-MgBetaUserProfileEducationalActivity Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaUserProfileEducationalActivity Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.People -# A UPN can also be used as -UserId. -Get-MgBetaUserProfileEducationalActivity -UserId $userId -EducationalActivityId $educationalActivityId -``` -This example shows how to use the Get-MgBetaUserProfileEducationalActivity Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Get-MgBetaUserProfileEmail.md b/src/People/beta/examples/Get-MgBetaUserProfileEmail.md index c18b0424eb..648fdc4774 100644 --- a/src/People/beta/examples/Get-MgBetaUserProfileEmail.md +++ b/src/People/beta/examples/Get-MgBetaUserProfileEmail.md @@ -1,15 +1,12 @@ -### Example 1: Using the Get-MgBetaUserProfileEmail Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Get-MgBetaUserProfileEmail -UserId $userId + ``` This example shows how to use the Get-MgBetaUserProfileEmail Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaUserProfileEmail Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.People -Get-MgBetaUserProfileEmail -UserId $userId -ItemEmailId $itemEmailId -``` -This example shows how to use the Get-MgBetaUserProfileEmail Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Get-MgBetaUserProfileInterest.md b/src/People/beta/examples/Get-MgBetaUserProfileInterest.md index 0f3a5c20fa..c5a1b36855 100644 --- a/src/People/beta/examples/Get-MgBetaUserProfileInterest.md +++ b/src/People/beta/examples/Get-MgBetaUserProfileInterest.md @@ -1,16 +1,12 @@ -### Example 1: Using the Get-MgBetaUserProfileInterest Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Get-MgBetaUserProfileInterest -UserId $userId + ``` This example shows how to use the Get-MgBetaUserProfileInterest Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaUserProfileInterest Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.People -# A UPN can also be used as -UserId. -Get-MgBetaUserProfileInterest -UserId $userId -PersonInterestId $personInterestId -``` -This example shows how to use the Get-MgBetaUserProfileInterest Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Get-MgBetaUserProfileLanguage.md b/src/People/beta/examples/Get-MgBetaUserProfileLanguage.md index 8a475e953d..680edb5bd3 100644 --- a/src/People/beta/examples/Get-MgBetaUserProfileLanguage.md +++ b/src/People/beta/examples/Get-MgBetaUserProfileLanguage.md @@ -1,16 +1,12 @@ -### Example 1: Using the Get-MgBetaUserProfileLanguage Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.People -# A UPN can also be used as -UserId. -Get-MgBetaUserProfileLanguage -UserId $userId -LanguageProficiencyId $languageProficiencyId -``` -This example shows how to use the Get-MgBetaUserProfileLanguage Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaUserProfileLanguage Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Get-MgBetaUserProfileLanguage -UserId $userId + ``` This example shows how to use the Get-MgBetaUserProfileLanguage Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Get-MgBetaUserProfileName.md b/src/People/beta/examples/Get-MgBetaUserProfileName.md index 9df19f7c72..c9d9d95078 100644 --- a/src/People/beta/examples/Get-MgBetaUserProfileName.md +++ b/src/People/beta/examples/Get-MgBetaUserProfileName.md @@ -1,16 +1,12 @@ -### Example 1: Using the Get-MgBetaUserProfileName Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Get-MgBetaUserProfileName -UserId $userId + ``` This example shows how to use the Get-MgBetaUserProfileName Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaUserProfileName Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.People -# A UPN can also be used as -UserId. -Get-MgBetaUserProfileName -UserId $userId -PersonNameId $personNameId -``` -This example shows how to use the Get-MgBetaUserProfileName Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Get-MgBetaUserProfileNote.md b/src/People/beta/examples/Get-MgBetaUserProfileNote.md index ca65ca060f..1cf072d74b 100644 --- a/src/People/beta/examples/Get-MgBetaUserProfileNote.md +++ b/src/People/beta/examples/Get-MgBetaUserProfileNote.md @@ -1,16 +1,12 @@ -### Example 1: Using the Get-MgBetaUserProfileNote Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Get-MgBetaUserProfileNote -UserId $userId + ``` This example shows how to use the Get-MgBetaUserProfileNote Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaUserProfileNote Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.People -# A UPN can also be used as -UserId. -Get-MgBetaUserProfileNote -UserId $userId -PersonAnnotationId $personAnnotationId -``` -This example shows how to use the Get-MgBetaUserProfileNote Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Get-MgBetaUserProfilePatent.md b/src/People/beta/examples/Get-MgBetaUserProfilePatent.md index b110c761f4..5d9aeaad37 100644 --- a/src/People/beta/examples/Get-MgBetaUserProfilePatent.md +++ b/src/People/beta/examples/Get-MgBetaUserProfilePatent.md @@ -1,16 +1,12 @@ -### Example 1: Using the Get-MgBetaUserProfilePatent Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.People -# A UPN can also be used as -UserId. -Get-MgBetaUserProfilePatent -UserId $userId -ItemPatentId $itemPatentId -``` -This example shows how to use the Get-MgBetaUserProfilePatent Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaUserProfilePatent Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Get-MgBetaUserProfilePatent -UserId $userId + ``` This example shows how to use the Get-MgBetaUserProfilePatent Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Get-MgBetaUserProfilePhone.md b/src/People/beta/examples/Get-MgBetaUserProfilePhone.md index 2821a87f13..2437174de3 100644 --- a/src/People/beta/examples/Get-MgBetaUserProfilePhone.md +++ b/src/People/beta/examples/Get-MgBetaUserProfilePhone.md @@ -1,16 +1,12 @@ -### Example 1: Using the Get-MgBetaUserProfilePhone Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.People -# A UPN can also be used as -UserId. -Get-MgBetaUserProfilePhone -UserId $userId -ItemPhoneId $itemPhoneId -``` -This example shows how to use the Get-MgBetaUserProfilePhone Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaUserProfilePhone Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Get-MgBetaUserProfilePhone -UserId $userId + ``` This example shows how to use the Get-MgBetaUserProfilePhone Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Get-MgBetaUserProfilePosition.md b/src/People/beta/examples/Get-MgBetaUserProfilePosition.md index f16e46601b..784507ad8b 100644 --- a/src/People/beta/examples/Get-MgBetaUserProfilePosition.md +++ b/src/People/beta/examples/Get-MgBetaUserProfilePosition.md @@ -1,16 +1,12 @@ -### Example 1: Using the Get-MgBetaUserProfilePosition Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Get-MgBetaUserProfilePosition -UserId $userId + ``` This example shows how to use the Get-MgBetaUserProfilePosition Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaUserProfilePosition Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.People -# A UPN can also be used as -UserId. -Get-MgBetaUserProfilePosition -UserId $userId -WorkPositionId $workPositionId -``` -This example shows how to use the Get-MgBetaUserProfilePosition Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Get-MgBetaUserProfileProject.md b/src/People/beta/examples/Get-MgBetaUserProfileProject.md index 2944cf4dc0..7e15a13c3e 100644 --- a/src/People/beta/examples/Get-MgBetaUserProfileProject.md +++ b/src/People/beta/examples/Get-MgBetaUserProfileProject.md @@ -1,16 +1,12 @@ -### Example 1: Using the Get-MgBetaUserProfileProject Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.People -# A UPN can also be used as -UserId. -Get-MgBetaUserProfileProject -UserId $userId -ProjectParticipationId $projectParticipationId -``` -This example shows how to use the Get-MgBetaUserProfileProject Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaUserProfileProject Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Get-MgBetaUserProfileProject -UserId $userId + ``` This example shows how to use the Get-MgBetaUserProfileProject Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Get-MgBetaUserProfilePublication.md b/src/People/beta/examples/Get-MgBetaUserProfilePublication.md index d0d80ae017..1207a768b0 100644 --- a/src/People/beta/examples/Get-MgBetaUserProfilePublication.md +++ b/src/People/beta/examples/Get-MgBetaUserProfilePublication.md @@ -1,16 +1,12 @@ -### Example 1: Using the Get-MgBetaUserProfilePublication Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.People -# A UPN can also be used as -UserId. -Get-MgBetaUserProfilePublication -UserId $userId -ItemPublicationId $itemPublicationId -``` -This example shows how to use the Get-MgBetaUserProfilePublication Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaUserProfilePublication Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Get-MgBetaUserProfilePublication -UserId $userId + ``` This example shows how to use the Get-MgBetaUserProfilePublication Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Get-MgBetaUserProfileSkill.md b/src/People/beta/examples/Get-MgBetaUserProfileSkill.md index 24d8c4de65..a8bb336f0e 100644 --- a/src/People/beta/examples/Get-MgBetaUserProfileSkill.md +++ b/src/People/beta/examples/Get-MgBetaUserProfileSkill.md @@ -1,16 +1,12 @@ -### Example 1: Using the Get-MgBetaUserProfileSkill Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.People -# A UPN can also be used as -UserId. -Get-MgBetaUserProfileSkill -UserId $userId -SkillProficiencyId $skillProficiencyId -``` -This example shows how to use the Get-MgBetaUserProfileSkill Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaUserProfileSkill Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Get-MgBetaUserProfileSkill -UserId $userId + ``` This example shows how to use the Get-MgBetaUserProfileSkill Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Get-MgBetaUserProfileWebAccount.md b/src/People/beta/examples/Get-MgBetaUserProfileWebAccount.md index cf51404475..ca61042a5f 100644 --- a/src/People/beta/examples/Get-MgBetaUserProfileWebAccount.md +++ b/src/People/beta/examples/Get-MgBetaUserProfileWebAccount.md @@ -1,16 +1,12 @@ -### Example 1: Using the Get-MgBetaUserProfileWebAccount Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.People -# A UPN can also be used as -UserId. -Get-MgBetaUserProfileWebAccount -UserId $userId -WebAccountId $webAccountId -``` -This example shows how to use the Get-MgBetaUserProfileWebAccount Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaUserProfileWebAccount Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Get-MgBetaUserProfileWebAccount -UserId $userId + ``` This example shows how to use the Get-MgBetaUserProfileWebAccount Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Get-MgBetaUserProfileWebsite.md b/src/People/beta/examples/Get-MgBetaUserProfileWebsite.md index c9592f175a..3fa0dce5e9 100644 --- a/src/People/beta/examples/Get-MgBetaUserProfileWebsite.md +++ b/src/People/beta/examples/Get-MgBetaUserProfileWebsite.md @@ -1,16 +1,12 @@ -### Example 1: Using the Get-MgBetaUserProfileWebsite Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.People -# A UPN can also be used as -UserId. -Get-MgBetaUserProfileWebsite -UserId $userId -PersonWebsiteId $personWebsiteId -``` -This example shows how to use the Get-MgBetaUserProfileWebsite Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaUserProfileWebsite Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Get-MgBetaUserProfileWebsite -UserId $userId + ``` This example shows how to use the Get-MgBetaUserProfileWebsite Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/New-MgBetaUserProfileAccount.md b/src/People/beta/examples/New-MgBetaUserProfileAccount.md index 661bbefe90..061df7b547 100644 --- a/src/People/beta/examples/New-MgBetaUserProfileAccount.md +++ b/src/People/beta/examples/New-MgBetaUserProfileAccount.md @@ -1,12 +1,17 @@ -### Example 1: Using the New-MgBetaUserProfileAccount Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - AllowedAudiences = "organization" - CountryCode = "NO" + allowedAudiences = "organization" + countryCode = "NO" } + # A UPN can also be used as -UserId. New-MgBetaUserProfileAccount -UserId $userId -BodyParameter $params + ``` This example shows how to use the New-MgBetaUserProfileAccount Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/New-MgBetaUserProfileAddress.md b/src/People/beta/examples/New-MgBetaUserProfileAddress.md index 2bad0748ec..66e4cbae1e 100644 --- a/src/People/beta/examples/New-MgBetaUserProfileAddress.md +++ b/src/People/beta/examples/New-MgBetaUserProfileAddress.md @@ -1,20 +1,25 @@ -### Example 1: Using the New-MgBetaUserProfileAddress Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - DisplayName = "Home" - Detail = @{ - Type = "home" - PostOfficeBox = $null - Street = "221B Baker Street" - City = "London" - State = $null - CountryOrRegion = "United Kingdom" - PostalCode = "E14 3TD" + 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-MgBetaUserProfileAddress -UserId $userId -BodyParameter $params + ``` This example shows how to use the New-MgBetaUserProfileAddress Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/New-MgBetaUserProfileAnniversary.md b/src/People/beta/examples/New-MgBetaUserProfileAnniversary.md index 531286dc4e..014da1c8ea 100644 --- a/src/People/beta/examples/New-MgBetaUserProfileAnniversary.md +++ b/src/People/beta/examples/New-MgBetaUserProfileAnniversary.md @@ -1,12 +1,17 @@ -### Example 1: Using the New-MgBetaUserProfileAnniversary Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - Type = "birthday" - Date = "1980-01-08" + type = "birthday" + date = "1980-01-08" } + # A UPN can also be used as -UserId. New-MgBetaUserProfileAnniversary -UserId $userId -BodyParameter $params + ``` This example shows how to use the New-MgBetaUserProfileAnniversary Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/New-MgBetaUserProfileAward.md b/src/People/beta/examples/New-MgBetaUserProfileAward.md index ed069bd900..38a9f1dcd0 100644 --- a/src/People/beta/examples/New-MgBetaUserProfileAward.md +++ b/src/People/beta/examples/New-MgBetaUserProfileAward.md @@ -1,16 +1,21 @@ -### Example 1: Using the New-MgBetaUserProfileAward Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.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" + 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-MgBetaUserProfileAward -UserId $userId -BodyParameter $params + ``` This example shows how to use the New-MgBetaUserProfileAward Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/New-MgBetaUserProfileCertification.md b/src/People/beta/examples/New-MgBetaUserProfileCertification.md index 300cbbfcc4..49fcba00a6 100644 --- a/src/People/beta/examples/New-MgBetaUserProfileCertification.md +++ b/src/People/beta/examples/New-MgBetaUserProfileCertification.md @@ -1,15 +1,20 @@ -### Example 1: Using the New-MgBetaUserProfileCertification Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.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" + 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-MgBetaUserProfileCertification -UserId $userId -BodyParameter $params + ``` This example shows how to use the New-MgBetaUserProfileCertification Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/New-MgBetaUserProfileEducationalActivity.md b/src/People/beta/examples/New-MgBetaUserProfileEducationalActivity.md index 944e251edc..47869386a0 100644 --- a/src/People/beta/examples/New-MgBetaUserProfileEducationalActivity.md +++ b/src/People/beta/examples/New-MgBetaUserProfileEducationalActivity.md @@ -1,38 +1,43 @@ -### Example 1: Using the New-MgBetaUserProfileEducationalActivity Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.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" + 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" + 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" + 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" + startMonthYear = "Date" } + # A UPN can also be used as -UserId. New-MgBetaUserProfileEducationalActivity -UserId $userId -BodyParameter $params + ``` This example shows how to use the New-MgBetaUserProfileEducationalActivity Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/New-MgBetaUserProfileEmail.md b/src/People/beta/examples/New-MgBetaUserProfileEmail.md index 4aa1e716ec..8a5440d2a4 100644 --- a/src/People/beta/examples/New-MgBetaUserProfileEmail.md +++ b/src/People/beta/examples/New-MgBetaUserProfileEmail.md @@ -1,11 +1,16 @@ -### Example 1: Using the New-MgBetaUserProfileEmail Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - Address = "Innocenty.Popov@adventureworks.com" + address = "Innocenty.Popov@adventureworks.com" } + # A UPN can also be used as -UserId. New-MgBetaUserProfileEmail -UserId $userId -BodyParameter $params + ``` This example shows how to use the New-MgBetaUserProfileEmail Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/New-MgBetaUserProfileInterest.md b/src/People/beta/examples/New-MgBetaUserProfileInterest.md index 9d49ff82e9..45c97e2d7d 100644 --- a/src/People/beta/examples/New-MgBetaUserProfileInterest.md +++ b/src/People/beta/examples/New-MgBetaUserProfileInterest.md @@ -1,16 +1,21 @@ -### Example 1: Using the New-MgBetaUserProfileInterest Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - Categories = @( - "Sports" - ) - Description = "World's greatest football club" - DisplayName = "Chelsea FC" - WebUrl = "https://www.chelseafc.com" + 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-MgBetaUserProfileInterest -UserId $userId -BodyParameter $params + ``` This example shows how to use the New-MgBetaUserProfileInterest Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/New-MgBetaUserProfileLanguage.md b/src/People/beta/examples/New-MgBetaUserProfileLanguage.md index 630ceaea22..bc3e75f6f6 100644 --- a/src/People/beta/examples/New-MgBetaUserProfileLanguage.md +++ b/src/People/beta/examples/New-MgBetaUserProfileLanguage.md @@ -1,15 +1,20 @@ -### Example 1: Using the New-MgBetaUserProfileLanguage Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - DisplayName = "Norwegian Bokmål" - Tag = "nb-NO" - Spoken = "nativeOrBilingual" - Written = "nativeOrBilingual" - Reading = "nativeOrBilingual" + displayName = "Norwegian Bokmål" + tag = "nb-NO" + spoken = "nativeOrBilingual" + written = "nativeOrBilingual" + reading = "nativeOrBilingual" } + # A UPN can also be used as -UserId. New-MgBetaUserProfileLanguage -UserId $userId -BodyParameter $params + ``` This example shows how to use the New-MgBetaUserProfileLanguage Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/New-MgBetaUserProfileName.md b/src/People/beta/examples/New-MgBetaUserProfileName.md index 3efb5e7769..848457f55a 100644 --- a/src/People/beta/examples/New-MgBetaUserProfileName.md +++ b/src/People/beta/examples/New-MgBetaUserProfileName.md @@ -1,16 +1,21 @@ -### Example 1: Using the New-MgBetaUserProfileName Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - DisplayName = "Innocenty Popov" - First = "Innocenty" - Initials = "IP" - Last = "Popov" - LanguageTag = "en-US" - Maiden = $null + displayName = "Innocenty Popov" + first = "Innocenty" + initials = "IP" + last = "Popov" + languageTag = "en-US" + maiden = $null } + # A UPN can also be used as -UserId. New-MgBetaUserProfileName -UserId $userId -BodyParameter $params + ``` This example shows how to use the New-MgBetaUserProfileName Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/New-MgBetaUserProfileNote.md b/src/People/beta/examples/New-MgBetaUserProfileNote.md index 42aadf50ab..d0e8f150c1 100644 --- a/src/People/beta/examples/New-MgBetaUserProfileNote.md +++ b/src/People/beta/examples/New-MgBetaUserProfileNote.md @@ -1,15 +1,20 @@ -### Example 1: Using the New-MgBetaUserProfileNote Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - Detail = @{ - ContentType = "text" - Content = "I am originally from Australia, but grew up in Moscow, Russia." + detail = @{ + contentType = "text" + content = "I am originally from Australia, but grew up in Moscow, Russia." } - DisplayName = "About Me" + displayName = "About Me" } + # A UPN can also be used as -UserId. New-MgBetaUserProfileNote -UserId $userId -BodyParameter $params + ``` This example shows how to use the New-MgBetaUserProfileNote Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/New-MgBetaUserProfilePatent.md b/src/People/beta/examples/New-MgBetaUserProfilePatent.md index 11b0cb9916..db57b7c790 100644 --- a/src/People/beta/examples/New-MgBetaUserProfilePatent.md +++ b/src/People/beta/examples/New-MgBetaUserProfilePatent.md @@ -1,15 +1,20 @@ -### Example 1: Using the New-MgBetaUserProfilePatent Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.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" + 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-MgBetaUserProfilePatent -UserId $userId -BodyParameter $params + ``` This example shows how to use the New-MgBetaUserProfilePatent Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/New-MgBetaUserProfilePhone.md b/src/People/beta/examples/New-MgBetaUserProfilePhone.md index 2a4eda616f..e4c56ad069 100644 --- a/src/People/beta/examples/New-MgBetaUserProfilePhone.md +++ b/src/People/beta/examples/New-MgBetaUserProfilePhone.md @@ -1,12 +1,17 @@ -### Example 1: Using the New-MgBetaUserProfilePhone Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - DisplayName = "Car Phone" - Number = "+7 499 342 22 13" + displayName = "Car Phone" + number = "+7 499 342 22 13" } + # A UPN can also be used as -UserId. New-MgBetaUserProfilePhone -UserId $userId -BodyParameter $params + ``` This example shows how to use the New-MgBetaUserProfilePhone Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/New-MgBetaUserProfilePosition.md b/src/People/beta/examples/New-MgBetaUserProfilePosition.md index b8773b476c..cfbe0effcf 100644 --- a/src/People/beta/examples/New-MgBetaUserProfilePosition.md +++ b/src/People/beta/examples/New-MgBetaUserProfilePosition.md @@ -1,28 +1,33 @@ -### Example 1: Using the New-MgBetaUserProfilePosition Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.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" + 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" + webUrl = "https://www.adventureworks.com" } - JobTitle = "Senior Product Branding Manager II" - Role = "consulting" + jobTitle = "Senior Product Branding Manager II" + role = "consulting" } - IsCurrent = $true + isCurrent = $true } + # A UPN can also be used as -UserId. New-MgBetaUserProfilePosition -UserId $userId -BodyParameter $params + ``` This example shows how to use the New-MgBetaUserProfilePosition Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/New-MgBetaUserProfileProject.md b/src/People/beta/examples/New-MgBetaUserProfileProject.md index d767ba774a..5f8f8e039c 100644 --- a/src/People/beta/examples/New-MgBetaUserProfileProject.md +++ b/src/People/beta/examples/New-MgBetaUserProfileProject.md @@ -1,30 +1,35 @@ -### Example 1: Using the New-MgBetaUserProfileProject Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.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." + 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-MgBetaUserProfileProject -UserId $userId -BodyParameter $params + ``` This example shows how to use the New-MgBetaUserProfileProject Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/New-MgBetaUserProfilePublication.md b/src/People/beta/examples/New-MgBetaUserProfilePublication.md index fb79ee3bd9..586b1f9ac1 100644 --- a/src/People/beta/examples/New-MgBetaUserProfilePublication.md +++ b/src/People/beta/examples/New-MgBetaUserProfilePublication.md @@ -1,16 +1,21 @@ -### Example 1: Using the New-MgBetaUserProfilePublication Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.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" + 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-MgBetaUserProfilePublication -UserId $userId -BodyParameter $params + ``` This example shows how to use the New-MgBetaUserProfilePublication Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/New-MgBetaUserProfileSkill.md b/src/People/beta/examples/New-MgBetaUserProfileSkill.md index a6dec45ed9..0f3254203d 100644 --- a/src/People/beta/examples/New-MgBetaUserProfileSkill.md +++ b/src/People/beta/examples/New-MgBetaUserProfileSkill.md @@ -1,19 +1,24 @@ -### Example 1: Using the New-MgBetaUserProfileSkill Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - Categories = @( - "Professional" - ) - AllowedAudiences = "organization" - DisplayName = "API Design" - Proficiency = "generalProfessional" - CollaborationTags = @( - "ableToMentor" - ) + categories = @( + "Professional" +) +allowedAudiences = "organization" +displayName = "API Design" +proficiency = "generalProfessional" +collaborationTags = @( +"ableToMentor" +) } + # A UPN can also be used as -UserId. New-MgBetaUserProfileSkill -UserId $userId -BodyParameter $params + ``` This example shows how to use the New-MgBetaUserProfileSkill Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/New-MgBetaUserProfileWebAccount.md b/src/People/beta/examples/New-MgBetaUserProfileWebAccount.md index 97db72d746..56348e4b8f 100644 --- a/src/People/beta/examples/New-MgBetaUserProfileWebAccount.md +++ b/src/People/beta/examples/New-MgBetaUserProfileWebAccount.md @@ -1,16 +1,21 @@ -### Example 1: Using the New-MgBetaUserProfileWebAccount Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - Description = "My Github contributions!" - UserId = "innocenty.popov" - Service = @{ - Name = "GitHub" - WebUrl = "https://github.com" + description = "My Github contributions!" + userId = "innocenty.popov" + service = @{ + name = "GitHub" + webUrl = "https://github.com" } } + # A UPN can also be used as -UserId. New-MgBetaUserProfileWebAccount -UserId $userId -BodyParameter $params + ``` This example shows how to use the New-MgBetaUserProfileWebAccount Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/New-MgBetaUserProfileWebsite.md b/src/People/beta/examples/New-MgBetaUserProfileWebsite.md index 99627a232b..2140ac683c 100644 --- a/src/People/beta/examples/New-MgBetaUserProfileWebsite.md +++ b/src/People/beta/examples/New-MgBetaUserProfileWebsite.md @@ -1,15 +1,20 @@ -### Example 1: Using the New-MgBetaUserProfileWebsite Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - Categories = @( - "football" - ) - DisplayName = "Lyn Damer" - WebUrl = "www.lyndamer.no" + categories = @( + "football" +) +displayName = "Lyn Damer" +webUrl = "www.lyndamer.no" } + # A UPN can also be used as -UserId. New-MgBetaUserProfileWebsite -UserId $userId -BodyParameter $params + ``` This example shows how to use the New-MgBetaUserProfileWebsite Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Remove-MgBetaUserProfile.md b/src/People/beta/examples/Remove-MgBetaUserProfile.md index 1fd8a2a0bd..d193c899f3 100644 --- a/src/People/beta/examples/Remove-MgBetaUserProfile.md +++ b/src/People/beta/examples/Remove-MgBetaUserProfile.md @@ -1,8 +1,12 @@ -### Example 1: Using the Remove-MgBetaUserProfile Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Remove-MgBetaUserProfile -UserId $userId + ``` This example shows how to use the Remove-MgBetaUserProfile Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Remove-MgBetaUserProfileAccount.md b/src/People/beta/examples/Remove-MgBetaUserProfileAccount.md index 4ec5b5e267..f3f14dabeb 100644 --- a/src/People/beta/examples/Remove-MgBetaUserProfileAccount.md +++ b/src/People/beta/examples/Remove-MgBetaUserProfileAccount.md @@ -1,8 +1,12 @@ -### Example 1: Using the Remove-MgBetaUserProfileAccount Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Remove-MgBetaUserProfileAccount -UserId $userId -UserAccountInformationId $userAccountInformationId + ``` This example shows how to use the Remove-MgBetaUserProfileAccount Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Remove-MgBetaUserProfileAddress.md b/src/People/beta/examples/Remove-MgBetaUserProfileAddress.md index 3e63228e85..ca7328429c 100644 --- a/src/People/beta/examples/Remove-MgBetaUserProfileAddress.md +++ b/src/People/beta/examples/Remove-MgBetaUserProfileAddress.md @@ -1,7 +1,11 @@ -### Example 1: Using the Remove-MgBetaUserProfileAddress Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + Remove-MgBetaUserProfileAddress -UserId $userId -ItemAddressId $itemAddressId + ``` This example shows how to use the Remove-MgBetaUserProfileAddress Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Remove-MgBetaUserProfileAnniversary.md b/src/People/beta/examples/Remove-MgBetaUserProfileAnniversary.md index 8dbd5b940f..e1adba16a6 100644 --- a/src/People/beta/examples/Remove-MgBetaUserProfileAnniversary.md +++ b/src/People/beta/examples/Remove-MgBetaUserProfileAnniversary.md @@ -1,8 +1,12 @@ -### Example 1: Using the Remove-MgBetaUserProfileAnniversary Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Remove-MgBetaUserProfileAnniversary -UserId $userId -PersonAnnualEventId $personAnnualEventId + ``` This example shows how to use the Remove-MgBetaUserProfileAnniversary Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Remove-MgBetaUserProfileAward.md b/src/People/beta/examples/Remove-MgBetaUserProfileAward.md index 65e9360ff4..bddd7008d0 100644 --- a/src/People/beta/examples/Remove-MgBetaUserProfileAward.md +++ b/src/People/beta/examples/Remove-MgBetaUserProfileAward.md @@ -1,7 +1,11 @@ -### Example 1: Using the Remove-MgBetaUserProfileAward Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + Remove-MgBetaUserProfileAward -UserId $userId -PersonAwardId $personAwardId + ``` This example shows how to use the Remove-MgBetaUserProfileAward Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Remove-MgBetaUserProfileCertification.md b/src/People/beta/examples/Remove-MgBetaUserProfileCertification.md index 7e56681c19..5ae0973cc6 100644 --- a/src/People/beta/examples/Remove-MgBetaUserProfileCertification.md +++ b/src/People/beta/examples/Remove-MgBetaUserProfileCertification.md @@ -1,7 +1,11 @@ -### Example 1: Using the Remove-MgBetaUserProfileCertification Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + Remove-MgBetaUserProfileCertification -UserId $userId -PersonCertificationId $personCertificationId + ``` This example shows how to use the Remove-MgBetaUserProfileCertification Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Remove-MgBetaUserProfileEducationalActivity.md b/src/People/beta/examples/Remove-MgBetaUserProfileEducationalActivity.md index 1d562b7375..11332b3ab1 100644 --- a/src/People/beta/examples/Remove-MgBetaUserProfileEducationalActivity.md +++ b/src/People/beta/examples/Remove-MgBetaUserProfileEducationalActivity.md @@ -1,8 +1,12 @@ -### Example 1: Using the Remove-MgBetaUserProfileEducationalActivity Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Remove-MgBetaUserProfileEducationalActivity -UserId $userId -EducationalActivityId $educationalActivityId + ``` This example shows how to use the Remove-MgBetaUserProfileEducationalActivity Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Remove-MgBetaUserProfileEmail.md b/src/People/beta/examples/Remove-MgBetaUserProfileEmail.md index 3426455308..b98c517b53 100644 --- a/src/People/beta/examples/Remove-MgBetaUserProfileEmail.md +++ b/src/People/beta/examples/Remove-MgBetaUserProfileEmail.md @@ -1,8 +1,12 @@ -### Example 1: Using the Remove-MgBetaUserProfileEmail Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Remove-MgBetaUserProfileEmail -UserId $userId -ItemEmailId $itemEmailId + ``` This example shows how to use the Remove-MgBetaUserProfileEmail Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Remove-MgBetaUserProfileInterest.md b/src/People/beta/examples/Remove-MgBetaUserProfileInterest.md index 2c72c0283e..dbf8d6c9e1 100644 --- a/src/People/beta/examples/Remove-MgBetaUserProfileInterest.md +++ b/src/People/beta/examples/Remove-MgBetaUserProfileInterest.md @@ -1,8 +1,12 @@ -### Example 1: Using the Remove-MgBetaUserProfileInterest Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Remove-MgBetaUserProfileInterest -UserId $userId -PersonInterestId $personInterestId + ``` This example shows how to use the Remove-MgBetaUserProfileInterest Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Remove-MgBetaUserProfileLanguage.md b/src/People/beta/examples/Remove-MgBetaUserProfileLanguage.md index 7660bf85e8..7c482cdec1 100644 --- a/src/People/beta/examples/Remove-MgBetaUserProfileLanguage.md +++ b/src/People/beta/examples/Remove-MgBetaUserProfileLanguage.md @@ -1,8 +1,12 @@ -### Example 1: Using the Remove-MgBetaUserProfileLanguage Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Remove-MgBetaUserProfileLanguage -UserId $userId -LanguageProficiencyId $languageProficiencyId + ``` This example shows how to use the Remove-MgBetaUserProfileLanguage Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Remove-MgBetaUserProfileName.md b/src/People/beta/examples/Remove-MgBetaUserProfileName.md index 1e061c53e0..197cb99127 100644 --- a/src/People/beta/examples/Remove-MgBetaUserProfileName.md +++ b/src/People/beta/examples/Remove-MgBetaUserProfileName.md @@ -1,8 +1,12 @@ -### Example 1: Using the Remove-MgBetaUserProfileName Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Remove-MgBetaUserProfileName -UserId $userId -PersonNameId $personNameId + ``` This example shows how to use the Remove-MgBetaUserProfileName Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Remove-MgBetaUserProfileNote.md b/src/People/beta/examples/Remove-MgBetaUserProfileNote.md index f64904d2fd..fec4e70745 100644 --- a/src/People/beta/examples/Remove-MgBetaUserProfileNote.md +++ b/src/People/beta/examples/Remove-MgBetaUserProfileNote.md @@ -1,7 +1,11 @@ -### Example 1: Using the Remove-MgBetaUserProfileNote Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + Remove-MgBetaUserProfileNote -UserId $userId -PersonAnnotationId $personAnnotationId + ``` This example shows how to use the Remove-MgBetaUserProfileNote Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Remove-MgBetaUserProfilePatent.md b/src/People/beta/examples/Remove-MgBetaUserProfilePatent.md index 3568c20d81..f17f7cde28 100644 --- a/src/People/beta/examples/Remove-MgBetaUserProfilePatent.md +++ b/src/People/beta/examples/Remove-MgBetaUserProfilePatent.md @@ -1,7 +1,11 @@ -### Example 1: Using the Remove-MgBetaUserProfilePatent Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + Remove-MgBetaUserProfilePatent -UserId $userId -ItemPatentId $itemPatentId + ``` This example shows how to use the Remove-MgBetaUserProfilePatent Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Remove-MgBetaUserProfilePhone.md b/src/People/beta/examples/Remove-MgBetaUserProfilePhone.md index f8b6d52572..4e4880d29b 100644 --- a/src/People/beta/examples/Remove-MgBetaUserProfilePhone.md +++ b/src/People/beta/examples/Remove-MgBetaUserProfilePhone.md @@ -1,7 +1,11 @@ -### Example 1: Using the Remove-MgBetaUserProfilePhone Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + Remove-MgBetaUserProfilePhone -UserId $userId -ItemPhoneId $itemPhoneId + ``` This example shows how to use the Remove-MgBetaUserProfilePhone Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Remove-MgBetaUserProfilePosition.md b/src/People/beta/examples/Remove-MgBetaUserProfilePosition.md index 4754579853..14e887b4d3 100644 --- a/src/People/beta/examples/Remove-MgBetaUserProfilePosition.md +++ b/src/People/beta/examples/Remove-MgBetaUserProfilePosition.md @@ -1,8 +1,12 @@ -### Example 1: Using the Remove-MgBetaUserProfilePosition Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Remove-MgBetaUserProfilePosition -UserId $userId -WorkPositionId $workPositionId + ``` This example shows how to use the Remove-MgBetaUserProfilePosition Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Remove-MgBetaUserProfileProject.md b/src/People/beta/examples/Remove-MgBetaUserProfileProject.md index 8c502eb124..d3d5c3690b 100644 --- a/src/People/beta/examples/Remove-MgBetaUserProfileProject.md +++ b/src/People/beta/examples/Remove-MgBetaUserProfileProject.md @@ -1,8 +1,12 @@ -### Example 1: Using the Remove-MgBetaUserProfileProject Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Remove-MgBetaUserProfileProject -UserId $userId -ProjectParticipationId $projectParticipationId + ``` This example shows how to use the Remove-MgBetaUserProfileProject Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Remove-MgBetaUserProfilePublication.md b/src/People/beta/examples/Remove-MgBetaUserProfilePublication.md index 4b5d9022af..71698d07a1 100644 --- a/src/People/beta/examples/Remove-MgBetaUserProfilePublication.md +++ b/src/People/beta/examples/Remove-MgBetaUserProfilePublication.md @@ -1,8 +1,12 @@ -### Example 1: Using the Remove-MgBetaUserProfilePublication Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Remove-MgBetaUserProfilePublication -UserId $userId -ItemPublicationId $itemPublicationId + ``` This example shows how to use the Remove-MgBetaUserProfilePublication Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Remove-MgBetaUserProfileSkill.md b/src/People/beta/examples/Remove-MgBetaUserProfileSkill.md index 5d2c034e40..486d8d1626 100644 --- a/src/People/beta/examples/Remove-MgBetaUserProfileSkill.md +++ b/src/People/beta/examples/Remove-MgBetaUserProfileSkill.md @@ -1,8 +1,12 @@ -### Example 1: Using the Remove-MgBetaUserProfileSkill Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Remove-MgBetaUserProfileSkill -UserId $userId -SkillProficiencyId $skillProficiencyId + ``` This example shows how to use the Remove-MgBetaUserProfileSkill Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Remove-MgBetaUserProfileWebAccount.md b/src/People/beta/examples/Remove-MgBetaUserProfileWebAccount.md index be9c854a44..d583c092d0 100644 --- a/src/People/beta/examples/Remove-MgBetaUserProfileWebAccount.md +++ b/src/People/beta/examples/Remove-MgBetaUserProfileWebAccount.md @@ -1,8 +1,12 @@ -### Example 1: Using the Remove-MgBetaUserProfileWebAccount Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Remove-MgBetaUserProfileWebAccount -UserId $userId -WebAccountId $webAccountId + ``` This example shows how to use the Remove-MgBetaUserProfileWebAccount Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Remove-MgBetaUserProfileWebsite.md b/src/People/beta/examples/Remove-MgBetaUserProfileWebsite.md index e75f7ce260..04bd830e7b 100644 --- a/src/People/beta/examples/Remove-MgBetaUserProfileWebsite.md +++ b/src/People/beta/examples/Remove-MgBetaUserProfileWebsite.md @@ -1,8 +1,12 @@ -### Example 1: Using the Remove-MgBetaUserProfileWebsite Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + # A UPN can also be used as -UserId. Remove-MgBetaUserProfileWebsite -UserId $userId -PersonWebsiteId $personWebsiteId + ``` This example shows how to use the Remove-MgBetaUserProfileWebsite Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Update-MgBetaUserProfile.md b/src/People/beta/examples/Update-MgBetaUserProfile.md index 093355d11d..e69de29bb2 100644 --- a/src/People/beta/examples/Update-MgBetaUserProfile.md +++ b/src/People/beta/examples/Update-MgBetaUserProfile.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/People/beta/examples/Update-MgBetaUserProfileAccount.md b/src/People/beta/examples/Update-MgBetaUserProfileAccount.md index a0c2d180b1..ca3cb13150 100644 --- a/src/People/beta/examples/Update-MgBetaUserProfileAccount.md +++ b/src/People/beta/examples/Update-MgBetaUserProfileAccount.md @@ -1,11 +1,16 @@ -### Example 1: Using the Update-MgBetaUserProfileAccount Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - CountryCode = "NO" + countryCode = "NO" } + # A UPN can also be used as -UserId. Update-MgBetaUserProfileAccount -UserId $userId -UserAccountInformationId $userAccountInformationId -BodyParameter $params + ``` This example shows how to use the Update-MgBetaUserProfileAccount Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Update-MgBetaUserProfileAddress.md b/src/People/beta/examples/Update-MgBetaUserProfileAddress.md index 5e9bcd29a1..6a9ef56fbe 100644 --- a/src/People/beta/examples/Update-MgBetaUserProfileAddress.md +++ b/src/People/beta/examples/Update-MgBetaUserProfileAddress.md @@ -1,11 +1,16 @@ -### Example 1: Using the Update-MgBetaUserProfileAddress Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - AllowedAudiences = "me" - DisplayName = "Secret Hideout" + allowedAudiences = "me" + displayName = "Secret Hideout" } + Update-MgBetaUserProfileAddress -UserId $userId -ItemAddressId $itemAddressId -BodyParameter $params + ``` This example shows how to use the Update-MgBetaUserProfileAddress Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Update-MgBetaUserProfileAnniversary.md b/src/People/beta/examples/Update-MgBetaUserProfileAnniversary.md index 79314c285b..a5cc51956a 100644 --- a/src/People/beta/examples/Update-MgBetaUserProfileAnniversary.md +++ b/src/People/beta/examples/Update-MgBetaUserProfileAnniversary.md @@ -1,11 +1,16 @@ -### Example 1: Using the Update-MgBetaUserProfileAnniversary Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - AllowedAudiences = "contacts" + allowedAudiences = "contacts" } + # A UPN can also be used as -UserId. Update-MgBetaUserProfileAnniversary -UserId $userId -PersonAnnualEventId $personAnnualEventId -BodyParameter $params + ``` This example shows how to use the Update-MgBetaUserProfileAnniversary Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Update-MgBetaUserProfileAward.md b/src/People/beta/examples/Update-MgBetaUserProfileAward.md index 96ca2946ef..fea23eba3a 100644 --- a/src/People/beta/examples/Update-MgBetaUserProfileAward.md +++ b/src/People/beta/examples/Update-MgBetaUserProfileAward.md @@ -1,11 +1,16 @@ -### Example 1: Using the Update-MgBetaUserProfileAward Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - IssuingAuthority = "International Association of Branding Management" - ThumbnailUrl = "https://iabm.io/sdhdfhsdhshsd.jpg" + issuingAuthority = "International Association of Branding Management" + thumbnailUrl = "https://iabm.io/sdhdfhsdhshsd.jpg" } + Update-MgBetaUserProfileAward -UserId $userId -PersonAwardId $personAwardId -BodyParameter $params + ``` This example shows how to use the Update-MgBetaUserProfileAward Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Update-MgBetaUserProfileCertification.md b/src/People/beta/examples/Update-MgBetaUserProfileCertification.md index d551b85998..0486874f12 100644 --- a/src/People/beta/examples/Update-MgBetaUserProfileCertification.md +++ b/src/People/beta/examples/Update-MgBetaUserProfileCertification.md @@ -1,11 +1,16 @@ -### Example 1: Using the Update-MgBetaUserProfileCertification Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - IssuingAuthority = "International Academy of Marketing Excellence" - IssuingCompany = "International Academy of Marketing Excellence" + issuingAuthority = "International Academy of Marketing Excellence" + issuingCompany = "International Academy of Marketing Excellence" } + Update-MgBetaUserProfileCertification -UserId $userId -PersonCertificationId $personCertificationId -BodyParameter $params + ``` This example shows how to use the Update-MgBetaUserProfileCertification Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Update-MgBetaUserProfileEducationalActivity.md b/src/People/beta/examples/Update-MgBetaUserProfileEducationalActivity.md index 68dbbf0fcf..9412d34914 100644 --- a/src/People/beta/examples/Update-MgBetaUserProfileEducationalActivity.md +++ b/src/People/beta/examples/Update-MgBetaUserProfileEducationalActivity.md @@ -1,21 +1,26 @@ -### Example 1: Using the Update-MgBetaUserProfileEducationalActivity Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - Institution = @{ - Location = @{ - Type = "business" - PostOfficeBox = $null - Street = "12000 E Prospect Rd" - City = "Fort Collins" - State = "Colorado" - CountryOrRegion = "USA" - PostalCode = "80525" + 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-MgBetaUserProfileEducationalActivity -UserId $userId -EducationalActivityId $educationalActivityId -BodyParameter $params + ``` This example shows how to use the Update-MgBetaUserProfileEducationalActivity Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Update-MgBetaUserProfileEmail.md b/src/People/beta/examples/Update-MgBetaUserProfileEmail.md index 2e8d632604..4e6a6a1c0b 100644 --- a/src/People/beta/examples/Update-MgBetaUserProfileEmail.md +++ b/src/People/beta/examples/Update-MgBetaUserProfileEmail.md @@ -1,11 +1,16 @@ -### Example 1: Using the Update-MgBetaUserProfileEmail Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - DisplayName = "Business Email" - Type = "work" + displayName = "Business Email" + type = "work" } + Update-MgBetaUserProfileEmail -UserId $userId -ItemEmailId $itemEmailId -BodyParameter $params + ``` This example shows how to use the Update-MgBetaUserProfileEmail Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Update-MgBetaUserProfileInterest.md b/src/People/beta/examples/Update-MgBetaUserProfileInterest.md index d559cd8875..38573eeed2 100644 --- a/src/People/beta/examples/Update-MgBetaUserProfileInterest.md +++ b/src/People/beta/examples/Update-MgBetaUserProfileInterest.md @@ -1,13 +1,18 @@ -### Example 1: Using the Update-MgBetaUserProfileInterest Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - Categories = @( - "Sports" - ) + categories = @( + "Sports" +) } + # A UPN can also be used as -UserId. Update-MgBetaUserProfileInterest -UserId $userId -PersonInterestId $personInterestId -BodyParameter $params + ``` This example shows how to use the Update-MgBetaUserProfileInterest Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Update-MgBetaUserProfileLanguage.md b/src/People/beta/examples/Update-MgBetaUserProfileLanguage.md index a2696771db..bf94c37a65 100644 --- a/src/People/beta/examples/Update-MgBetaUserProfileLanguage.md +++ b/src/People/beta/examples/Update-MgBetaUserProfileLanguage.md @@ -1,11 +1,16 @@ -### Example 1: Using the Update-MgBetaUserProfileLanguage Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - AllowedAudiences = "organization" + allowedAudiences = "organization" } + # A UPN can also be used as -UserId. Update-MgBetaUserProfileLanguage -UserId $userId -LanguageProficiencyId $languageProficiencyId -BodyParameter $params + ``` This example shows how to use the Update-MgBetaUserProfileLanguage Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Update-MgBetaUserProfileName.md b/src/People/beta/examples/Update-MgBetaUserProfileName.md index 811a421597..10ddb78a67 100644 --- a/src/People/beta/examples/Update-MgBetaUserProfileName.md +++ b/src/People/beta/examples/Update-MgBetaUserProfileName.md @@ -1,11 +1,16 @@ -### Example 1: Using the Update-MgBetaUserProfileName Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - Nickname = "Kesha" + nickname = "Kesha" } + # A UPN can also be used as -UserId. Update-MgBetaUserProfileName -UserId $userId -PersonNameId $personNameId -BodyParameter $params + ``` This example shows how to use the Update-MgBetaUserProfileName Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Update-MgBetaUserProfileNote.md b/src/People/beta/examples/Update-MgBetaUserProfileNote.md index f988178d9d..9abdfee091 100644 --- a/src/People/beta/examples/Update-MgBetaUserProfileNote.md +++ b/src/People/beta/examples/Update-MgBetaUserProfileNote.md @@ -1,10 +1,15 @@ -### Example 1: Using the Update-MgBetaUserProfileNote Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - AllowedAudiences = "organization" + allowedAudiences = "organization" } + Update-MgBetaUserProfileNote -UserId $userId -PersonAnnotationId $personAnnotationId -BodyParameter $params + ``` This example shows how to use the Update-MgBetaUserProfileNote Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Update-MgBetaUserProfilePatent.md b/src/People/beta/examples/Update-MgBetaUserProfilePatent.md index 9aa93b6892..962775fc11 100644 --- a/src/People/beta/examples/Update-MgBetaUserProfilePatent.md +++ b/src/People/beta/examples/Update-MgBetaUserProfilePatent.md @@ -1,11 +1,16 @@ -### Example 1: Using the Update-MgBetaUserProfilePatent Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - Number = "USPTO-3954432633" - WebUrl = "https://patents.gov/3954432633" + number = "USPTO-3954432633" + webUrl = "https://patents.gov/3954432633" } + Update-MgBetaUserProfilePatent -UserId $userId -ItemPatentId $itemPatentId -BodyParameter $params + ``` This example shows how to use the Update-MgBetaUserProfilePatent Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Update-MgBetaUserProfilePhone.md b/src/People/beta/examples/Update-MgBetaUserProfilePhone.md index 174ab10633..eec1c3c381 100644 --- a/src/People/beta/examples/Update-MgBetaUserProfilePhone.md +++ b/src/People/beta/examples/Update-MgBetaUserProfilePhone.md @@ -1,10 +1,15 @@ -### Example 1: Using the Update-MgBetaUserProfilePhone Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - Type = "other" + type = "other" } + Update-MgBetaUserProfilePhone -UserId $userId -ItemPhoneId $itemPhoneId -BodyParameter $params + ``` This example shows how to use the Update-MgBetaUserProfilePhone Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Update-MgBetaUserProfilePosition.md b/src/People/beta/examples/Update-MgBetaUserProfilePosition.md index d8f62ba14a..ff8a6080a6 100644 --- a/src/People/beta/examples/Update-MgBetaUserProfilePosition.md +++ b/src/People/beta/examples/Update-MgBetaUserProfilePosition.md @@ -1,11 +1,16 @@ -### Example 1: Using the Update-MgBetaUserProfilePosition Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - IsCurrent = $true + isCurrent = $true } + # A UPN can also be used as -UserId. Update-MgBetaUserProfilePosition -UserId $userId -WorkPositionId $workPositionId -BodyParameter $params + ``` This example shows how to use the Update-MgBetaUserProfilePosition Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Update-MgBetaUserProfileProject.md b/src/People/beta/examples/Update-MgBetaUserProfileProject.md index a719889164..88861de6f7 100644 --- a/src/People/beta/examples/Update-MgBetaUserProfileProject.md +++ b/src/People/beta/examples/Update-MgBetaUserProfileProject.md @@ -1,15 +1,20 @@ -### Example 1: Using the Update-MgBetaUserProfileProject Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - AllowedAudiences = "organization" - Client = @{ - Department = "Corporate Marketing" - WebUrl = "https://www.contoso.com" + allowedAudiences = "organization" + client = @{ + department = "Corporate Marketing" + webUrl = "https://www.contoso.com" } } + # A UPN can also be used as -UserId. Update-MgBetaUserProfileProject -UserId $userId -ProjectParticipationId $projectParticipationId -BodyParameter $params + ``` This example shows how to use the Update-MgBetaUserProfileProject Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Update-MgBetaUserProfilePublication.md b/src/People/beta/examples/Update-MgBetaUserProfilePublication.md index 2aa8603f43..d5bed84aea 100644 --- a/src/People/beta/examples/Update-MgBetaUserProfilePublication.md +++ b/src/People/beta/examples/Update-MgBetaUserProfilePublication.md @@ -1,11 +1,16 @@ -### Example 1: Using the Update-MgBetaUserProfilePublication Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - Publisher = "International Association of Branding Management Publishing" - ThumbnailUrl = "https://iabm.io/sdhdfhsdhshsd.jpg" + publisher = "International Association of Branding Management Publishing" + thumbnailUrl = "https://iabm.io/sdhdfhsdhshsd.jpg" } + Update-MgBetaUserProfilePublication -UserId $userId -ItemPublicationId $itemPublicationId -BodyParameter $params + ``` This example shows how to use the Update-MgBetaUserProfilePublication Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Update-MgBetaUserProfileSkill.md b/src/People/beta/examples/Update-MgBetaUserProfileSkill.md index c8838fb5fb..5b187199bd 100644 --- a/src/People/beta/examples/Update-MgBetaUserProfileSkill.md +++ b/src/People/beta/examples/Update-MgBetaUserProfileSkill.md @@ -1,14 +1,19 @@ -### Example 1: Using the Update-MgBetaUserProfileSkill Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - Categories = @( - "Professional" - ) - Proficiency = "advancedProfessional" + categories = @( + "Professional" +) +proficiency = "advancedProfessional" } + # A UPN can also be used as -UserId. Update-MgBetaUserProfileSkill -UserId $userId -SkillProficiencyId $skillProficiencyId -BodyParameter $params + ``` This example shows how to use the Update-MgBetaUserProfileSkill Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Update-MgBetaUserProfileWebAccount.md b/src/People/beta/examples/Update-MgBetaUserProfileWebAccount.md index f15c471c56..e9f53c7bff 100644 --- a/src/People/beta/examples/Update-MgBetaUserProfileWebAccount.md +++ b/src/People/beta/examples/Update-MgBetaUserProfileWebAccount.md @@ -1,11 +1,16 @@ -### Example 1: Using the Update-MgBetaUserProfileWebAccount Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - WebUrl = "https://github.com/innocenty.popov" + webUrl = "https://github.com/innocenty.popov" } + # A UPN can also be used as -UserId. Update-MgBetaUserProfileWebAccount -UserId $userId -WebAccountId $webAccountId -BodyParameter $params + ``` This example shows how to use the Update-MgBetaUserProfileWebAccount Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/beta/examples/Update-MgBetaUserProfileWebsite.md b/src/People/beta/examples/Update-MgBetaUserProfileWebsite.md index 3897e896f1..c0db8c1ea8 100644 --- a/src/People/beta/examples/Update-MgBetaUserProfileWebsite.md +++ b/src/People/beta/examples/Update-MgBetaUserProfileWebsite.md @@ -1,11 +1,16 @@ -### Example 1: Using the Update-MgBetaUserProfileWebsite Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.People + $params = @{ - Description = "Lyn Damer play in the Women's 1st Division (Toppserien) in Norway" + description = "Lyn Damer play in the Women's 1st Division (Toppserien) in Norway" } + # A UPN can also be used as -UserId. Update-MgBetaUserProfileWebsite -UserId $userId -PersonWebsiteId $personWebsiteId -BodyParameter $params + ``` This example shows how to use the Update-MgBetaUserProfileWebsite Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/People/v1.0/examples/Get-MgUserLastSharedMethodInsight.md b/src/People/v1.0/examples/Get-MgUserLastSharedMethodInsight.md index 093355d11d..e69de29bb2 100644 --- a/src/People/v1.0/examples/Get-MgUserLastSharedMethodInsight.md +++ b/src/People/v1.0/examples/Get-MgUserLastSharedMethodInsight.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/People/v1.0/examples/Get-MgUserSharedResourceInsight.md b/src/People/v1.0/examples/Get-MgUserSharedResourceInsight.md index 093355d11d..e69de29bb2 100644 --- a/src/People/v1.0/examples/Get-MgUserSharedResourceInsight.md +++ b/src/People/v1.0/examples/Get-MgUserSharedResourceInsight.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/People/v1.0/examples/Get-MgUserTrendingResourceInsight.md b/src/People/v1.0/examples/Get-MgUserTrendingResourceInsight.md index 093355d11d..e69de29bb2 100644 --- a/src/People/v1.0/examples/Get-MgUserTrendingResourceInsight.md +++ b/src/People/v1.0/examples/Get-MgUserTrendingResourceInsight.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/People/v1.0/examples/Get-MgUserUsedResourceInsight.md b/src/People/v1.0/examples/Get-MgUserUsedResourceInsight.md index 093355d11d..e69de29bb2 100644 --- a/src/People/v1.0/examples/Get-MgUserUsedResourceInsight.md +++ b/src/People/v1.0/examples/Get-MgUserUsedResourceInsight.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Planner/beta/examples/Get-MgBetaGroupPlanner.md b/src/Planner/beta/examples/Get-MgBetaGroupPlanner.md index 093355d11d..e69de29bb2 100644 --- a/src/Planner/beta/examples/Get-MgBetaGroupPlanner.md +++ b/src/Planner/beta/examples/Get-MgBetaGroupPlanner.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Planner/beta/examples/Get-MgBetaPlanner.md b/src/Planner/beta/examples/Get-MgBetaPlanner.md index 093355d11d..e69de29bb2 100644 --- a/src/Planner/beta/examples/Get-MgBetaPlanner.md +++ b/src/Planner/beta/examples/Get-MgBetaPlanner.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Planner/beta/examples/Get-MgBetaPlannerRoster.md b/src/Planner/beta/examples/Get-MgBetaPlannerRoster.md index 9fd0c51124..323c9775d3 100644 --- a/src/Planner/beta/examples/Get-MgBetaPlannerRoster.md +++ b/src/Planner/beta/examples/Get-MgBetaPlannerRoster.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaPlannerRoster Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Planner + Get-MgBetaPlannerRoster -PlannerRosterId $plannerRosterId + ``` This example shows how to use the Get-MgBetaPlannerRoster Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Planner/beta/examples/Get-MgBetaPlannerRosterMember.md b/src/Planner/beta/examples/Get-MgBetaPlannerRosterMember.md index c59e7ec427..53c00eb156 100644 --- a/src/Planner/beta/examples/Get-MgBetaPlannerRosterMember.md +++ b/src/Planner/beta/examples/Get-MgBetaPlannerRosterMember.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaPlannerRosterMember Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Planner -Get-MgBetaPlannerRosterMember -PlannerRosterId $plannerRosterId -PlannerRosterMemberId $plannerRosterMemberId -``` -This example shows how to use the Get-MgBetaPlannerRosterMember Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaPlannerRosterMember Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Planner + Get-MgBetaPlannerRosterMember -PlannerRosterId $plannerRosterId + ``` This example shows how to use the Get-MgBetaPlannerRosterMember Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Planner/beta/examples/Get-MgBetaPlannerRosterPlan.md b/src/Planner/beta/examples/Get-MgBetaPlannerRosterPlan.md index 55d3155aca..c098e505a1 100644 --- a/src/Planner/beta/examples/Get-MgBetaPlannerRosterPlan.md +++ b/src/Planner/beta/examples/Get-MgBetaPlannerRosterPlan.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaPlannerRosterPlan Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Planner + Get-MgBetaPlannerRosterPlan -PlannerRosterId $plannerRosterId + ``` This example shows how to use the Get-MgBetaPlannerRosterPlan Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Planner/beta/examples/Get-MgBetaUserPlanner.md b/src/Planner/beta/examples/Get-MgBetaUserPlanner.md index 2fdda0bcee..adfd8a6a5d 100644 --- a/src/Planner/beta/examples/Get-MgBetaUserPlanner.md +++ b/src/Planner/beta/examples/Get-MgBetaUserPlanner.md @@ -1,8 +1,12 @@ -### Example 1: Using the Get-MgBetaUserPlanner Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Planner + # A UPN can also be used as -UserId. Get-MgBetaUserPlanner -UserId $userId + ``` This example shows how to use the Get-MgBetaUserPlanner Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Planner/beta/examples/Get-MgBetaUserPlannerFavoritePlan.md b/src/Planner/beta/examples/Get-MgBetaUserPlannerFavoritePlan.md index a3639566ed..6bcf85b9b7 100644 --- a/src/Planner/beta/examples/Get-MgBetaUserPlannerFavoritePlan.md +++ b/src/Planner/beta/examples/Get-MgBetaUserPlannerFavoritePlan.md @@ -1,8 +1,12 @@ -### Example 1: Using the Get-MgBetaUserPlannerFavoritePlan Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Planner + # A UPN can also be used as -UserId. Get-MgBetaUserPlannerFavoritePlan -UserId $userId + ``` This example shows how to use the Get-MgBetaUserPlannerFavoritePlan Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Planner/beta/examples/Get-MgBetaUserPlannerRecentPlan.md b/src/Planner/beta/examples/Get-MgBetaUserPlannerRecentPlan.md index 8a514a9303..d00674b4cf 100644 --- a/src/Planner/beta/examples/Get-MgBetaUserPlannerRecentPlan.md +++ b/src/Planner/beta/examples/Get-MgBetaUserPlannerRecentPlan.md @@ -1,8 +1,12 @@ -### Example 1: Using the Get-MgBetaUserPlannerRecentPlan Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Planner + # A UPN can also be used as -UserId. Get-MgBetaUserPlannerRecentPlan -UserId $userId + ``` This example shows how to use the Get-MgBetaUserPlannerRecentPlan Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Planner/beta/examples/Get-MgBetaUserPlannerRosterPlan.md b/src/Planner/beta/examples/Get-MgBetaUserPlannerRosterPlan.md index 820a8b86db..106cbba09c 100644 --- a/src/Planner/beta/examples/Get-MgBetaUserPlannerRosterPlan.md +++ b/src/Planner/beta/examples/Get-MgBetaUserPlannerRosterPlan.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaUserPlannerRosterPlan Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Planner + Get-MgBetaUserPlannerRosterPlan -UserId $userId + ``` This example shows how to use the Get-MgBetaUserPlannerRosterPlan Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Planner/beta/examples/New-MgBetaPlannerRoster.md b/src/Planner/beta/examples/New-MgBetaPlannerRoster.md index 72b8781a83..5b36a78438 100644 --- a/src/Planner/beta/examples/New-MgBetaPlannerRoster.md +++ b/src/Planner/beta/examples/New-MgBetaPlannerRoster.md @@ -1,10 +1,15 @@ -### Example 1: Using the New-MgBetaPlannerRoster Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Planner + $params = @{ "@odata.type" = "#microsoft.graph.plannerRoster" } + New-MgBetaPlannerRoster -BodyParameter $params + ``` This example shows how to use the New-MgBetaPlannerRoster Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Planner/beta/examples/New-MgBetaPlannerRosterMember.md b/src/Planner/beta/examples/New-MgBetaPlannerRosterMember.md index c656cff8fe..d595110a77 100644 --- a/src/Planner/beta/examples/New-MgBetaPlannerRosterMember.md +++ b/src/Planner/beta/examples/New-MgBetaPlannerRosterMember.md @@ -1,11 +1,16 @@ -### Example 1: Using the New-MgBetaPlannerRosterMember Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Planner + $params = @{ "@odata.type" = "#microsoft.graph.plannerRosterMember" - UserId = "String" + userId = "String" } + New-MgBetaPlannerRosterMember -PlannerRosterId $plannerRosterId -BodyParameter $params + ``` This example shows how to use the New-MgBetaPlannerRosterMember Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Planner/beta/examples/Remove-MgBetaGroupPlannerPlanDetail.md b/src/Planner/beta/examples/Remove-MgBetaGroupPlannerPlanDetail.md index f6c6949389..e69de29bb2 100644 --- a/src/Planner/beta/examples/Remove-MgBetaGroupPlannerPlanDetail.md +++ b/src/Planner/beta/examples/Remove-MgBetaGroupPlannerPlanDetail.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Planner/beta/examples/Remove-MgBetaPlannerRoster.md b/src/Planner/beta/examples/Remove-MgBetaPlannerRoster.md index c75ad567ab..826bfc5aa7 100644 --- a/src/Planner/beta/examples/Remove-MgBetaPlannerRoster.md +++ b/src/Planner/beta/examples/Remove-MgBetaPlannerRoster.md @@ -1,7 +1,11 @@ -### Example 1: Using the Remove-MgBetaPlannerRoster Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Planner + Remove-MgBetaPlannerRoster -PlannerRosterId $plannerRosterId + ``` This example shows how to use the Remove-MgBetaPlannerRoster Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Planner/beta/examples/Remove-MgBetaPlannerRosterMember.md b/src/Planner/beta/examples/Remove-MgBetaPlannerRosterMember.md index 518a3704f8..e362dd403d 100644 --- a/src/Planner/beta/examples/Remove-MgBetaPlannerRosterMember.md +++ b/src/Planner/beta/examples/Remove-MgBetaPlannerRosterMember.md @@ -1,7 +1,11 @@ -### Example 1: Using the Remove-MgBetaPlannerRosterMember Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Planner + Remove-MgBetaPlannerRosterMember -PlannerRosterId $plannerRosterId -PlannerRosterMemberId $plannerRosterMemberId + ``` This example shows how to use the Remove-MgBetaPlannerRosterMember Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Planner/beta/examples/Update-MgBetaGroupPlanner.md b/src/Planner/beta/examples/Update-MgBetaGroupPlanner.md index 093355d11d..e69de29bb2 100644 --- a/src/Planner/beta/examples/Update-MgBetaGroupPlanner.md +++ b/src/Planner/beta/examples/Update-MgBetaGroupPlanner.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Planner/beta/examples/Update-MgBetaPlanner.md b/src/Planner/beta/examples/Update-MgBetaPlanner.md index 093355d11d..e69de29bb2 100644 --- a/src/Planner/beta/examples/Update-MgBetaPlanner.md +++ b/src/Planner/beta/examples/Update-MgBetaPlanner.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Planner/beta/examples/Update-MgBetaPlannerRoster.md b/src/Planner/beta/examples/Update-MgBetaPlannerRoster.md index 093355d11d..e69de29bb2 100644 --- a/src/Planner/beta/examples/Update-MgBetaPlannerRoster.md +++ b/src/Planner/beta/examples/Update-MgBetaPlannerRoster.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Planner/beta/examples/Update-MgBetaPlannerRosterMember.md b/src/Planner/beta/examples/Update-MgBetaPlannerRosterMember.md index 093355d11d..e69de29bb2 100644 --- a/src/Planner/beta/examples/Update-MgBetaPlannerRosterMember.md +++ b/src/Planner/beta/examples/Update-MgBetaPlannerRosterMember.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Planner/beta/examples/Update-MgBetaUserPlanner.md b/src/Planner/beta/examples/Update-MgBetaUserPlanner.md index bccfc929b8..75fdde5830 100644 --- a/src/Planner/beta/examples/Update-MgBetaUserPlanner.md +++ b/src/Planner/beta/examples/Update-MgBetaUserPlanner.md @@ -1,25 +1,31 @@ -### Example 1: Using the Update-MgBetaUserPlanner Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Planner + $params = @{ - FavoritePlanReferences = @{ - Jd8S5gOaFk2S8aWCIAJz42QAAxtD = @{ + favoritePlanReferences = @{ + jd8S5gOaFk2S8aWCIAJz42QAAxtD = @{ "@odata.type" = "#microsoft.graph.plannerFavoritePlanReference" - OrderHint = " !" - PlanTitle = "Next Release Discussion" + orderHint = " !" + planTitle = "Next Release Discussion" } "7oTB5aMIAE2rVo-1N-L7RmQAGX2q" = $null } - RecentPlanReferences = @{ - Jd8S5gOaFk2S8aWCIAJz42QAAxtD = @{ + recentPlanReferences = @{ + jd8S5gOaFk2S8aWCIAJz42QAAxtD = @{ "@odata.type" = "#microsoft.graph.plannerRecentPlanReference" - LastAccessedDateTime = "2018-01-02T22:49:46.155Z" - PlanTitle = "Next Release Discussion" + lastAccessedDateTime = "2018-01-02T22:49:46.155Z" + planTitle = "Next Release Discussion" } } } + # A UPN can also be used as -UserId. -Update-MgBetaUserPlanner -UserId $userId -BodyParameter $params +Update-MgBetaUserPlanner -UserId $userId -BodyParameter $params -IfMatch W/'"JzEtVXNlckRldGFpbHMgQEBAQEBAQEBAQEBAQEBIWCc="' + + ``` This example shows how to use the Update-MgBetaUserPlanner Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Planner/v1.0/examples/Get-MgGroupPlanner.md b/src/Planner/v1.0/examples/Get-MgGroupPlanner.md index 093355d11d..e69de29bb2 100644 --- a/src/Planner/v1.0/examples/Get-MgGroupPlanner.md +++ b/src/Planner/v1.0/examples/Get-MgGroupPlanner.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Planner/v1.0/examples/Get-MgPlanner.md b/src/Planner/v1.0/examples/Get-MgPlanner.md index 5e88ba0e8a..e69de29bb2 100644 --- a/src/Planner/v1.0/examples/Get-MgPlanner.md +++ b/src/Planner/v1.0/examples/Get-MgPlanner.md @@ -1,7 +0,0 @@ -### 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/v1.0/examples/Get-MgUserPlanner.md b/src/Planner/v1.0/examples/Get-MgUserPlanner.md index 093355d11d..e69de29bb2 100644 --- a/src/Planner/v1.0/examples/Get-MgUserPlanner.md +++ b/src/Planner/v1.0/examples/Get-MgUserPlanner.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Planner/v1.0/examples/New-MgPlannerPlan.md b/src/Planner/v1.0/examples/New-MgPlannerPlan.md index a6e22d20d9..2f1fb7421d 100644 --- a/src/Planner/v1.0/examples/New-MgPlannerPlan.md +++ b/src/Planner/v1.0/examples/New-MgPlannerPlan.md @@ -6,7 +6,7 @@ Import-Module Microsoft.Graph.Planner $params = @{ container = @{ - url = "https://graph.microsoft.com/beta/groups/ebf3b108-5234-4e22-b93d-656d7dae5874" + url = "https://graph.microsoft.com/v1.0/groups/ebf3b108-5234-4e22-b93d-656d7dae5874" } title = "title-value" } diff --git a/src/Planner/v1.0/examples/Remove-MgGroupPlannerPlanDetail.md b/src/Planner/v1.0/examples/Remove-MgGroupPlannerPlanDetail.md index f6c6949389..e69de29bb2 100644 --- a/src/Planner/v1.0/examples/Remove-MgGroupPlannerPlanDetail.md +++ b/src/Planner/v1.0/examples/Remove-MgGroupPlannerPlanDetail.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Planner/v1.0/examples/Update-MgGroupPlanner.md b/src/Planner/v1.0/examples/Update-MgGroupPlanner.md index 093355d11d..e69de29bb2 100644 --- a/src/Planner/v1.0/examples/Update-MgGroupPlanner.md +++ b/src/Planner/v1.0/examples/Update-MgGroupPlanner.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Planner/v1.0/examples/Update-MgPlanner.md b/src/Planner/v1.0/examples/Update-MgPlanner.md index 093355d11d..e69de29bb2 100644 --- a/src/Planner/v1.0/examples/Update-MgPlanner.md +++ b/src/Planner/v1.0/examples/Update-MgPlanner.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Planner/v1.0/examples/Update-MgUserPlanner.md b/src/Planner/v1.0/examples/Update-MgUserPlanner.md index 093355d11d..e69de29bb2 100644 --- a/src/Planner/v1.0/examples/Update-MgUserPlanner.md +++ b/src/Planner/v1.0/examples/Update-MgUserPlanner.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/beta/examples/Confirm-MgBetaAuditLogSignInCompromised.md b/src/Reports/beta/examples/Confirm-MgBetaAuditLogSignInCompromised.md index b5103d4e99..91275b9d85 100644 --- a/src/Reports/beta/examples/Confirm-MgBetaAuditLogSignInCompromised.md +++ b/src/Reports/beta/examples/Confirm-MgBetaAuditLogSignInCompromised.md @@ -1,14 +1,19 @@ -### Example 1: Using the Confirm-MgBetaAuditLogSignInCompromised Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Reports + $params = @{ - RequestIds = @( - "f01c6af6-6683-4a37-a945-0a925501eede" - "42bf60ac-d0cb-4206-aa5c-101884298f55" - "f09c8f14-8d8e-42cf-8a7e-732b0594e79b" - ) + requestIds = @( + "f01c6af6-6683-4a37-a945-0a925501eede" +"42bf60ac-d0cb-4206-aa5c-101884298f55" +"f09c8f14-8d8e-42cf-8a7e-732b0594e79b" +) } + Confirm-MgBetaAuditLogSignInCompromised -BodyParameter $params + ``` This example shows how to use the Confirm-MgBetaAuditLogSignInCompromised Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Reports/beta/examples/Confirm-MgBetaAuditLogSignInSafe.md b/src/Reports/beta/examples/Confirm-MgBetaAuditLogSignInSafe.md index c2705dcbfe..bc13bdd64c 100644 --- a/src/Reports/beta/examples/Confirm-MgBetaAuditLogSignInSafe.md +++ b/src/Reports/beta/examples/Confirm-MgBetaAuditLogSignInSafe.md @@ -1,14 +1,19 @@ -### Example 1: Using the Confirm-MgBetaAuditLogSignInSafe Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Reports + $params = @{ - RequestIds = @( - "5a0c76d2-cb57-4ece-9bc1-c323178f116a" - "96609214-09ef-4f80-9d4a-ace5fceecaec" - "05020696-4eb8-45a3-918f-8f8bb7ad6015" - ) + requestIds = @( + "5a0c76d2-cb57-4ece-9bc1-c323178f116a" +"96609214-09ef-4f80-9d4a-ace5fceecaec" +"05020696-4eb8-45a3-918f-8f8bb7ad6015" +) } + Confirm-MgBetaAuditLogSignInSafe -BodyParameter $params + ``` This example shows how to use the Confirm-MgBetaAuditLogSignInSafe Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Reports/beta/examples/Get-MgBetaDeviceManagementReport.md b/src/Reports/beta/examples/Get-MgBetaDeviceManagementReport.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaDeviceManagementReport.md +++ b/src/Reports/beta/examples/Get-MgBetaDeviceManagementReport.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/beta/examples/Get-MgBetaReportApplicationSignInDetailedSummary.md b/src/Reports/beta/examples/Get-MgBetaReportApplicationSignInDetailedSummary.md index 6f77c987a5..953d1d56b9 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportApplicationSignInDetailedSummary.md +++ b/src/Reports/beta/examples/Get-MgBetaReportApplicationSignInDetailedSummary.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaReportApplicationSignInDetailedSummary Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Reports -Get-MgBetaReportApplicationSignInDetailedSummary -ApplicationSignInDetailedSummaryId $applicationSignInDetailedSummaryId -``` -This example shows how to use the Get-MgBetaReportApplicationSignInDetailedSummary Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaReportApplicationSignInDetailedSummary Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Reports + Get-MgBetaReportApplicationSignInDetailedSummary + ``` This example shows how to use the Get-MgBetaReportApplicationSignInDetailedSummary Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Reports/beta/examples/Get-MgBetaReportAttackSimulationRepeatOffender.md b/src/Reports/beta/examples/Get-MgBetaReportAttackSimulationRepeatOffender.md index 8ee8bdfd91..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportAttackSimulationRepeatOffender.md +++ b/src/Reports/beta/examples/Get-MgBetaReportAttackSimulationRepeatOffender.md @@ -1,7 +0,0 @@ -### Example 1: Using the Get-MgBetaReportAttackSimulationRepeatOffender Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Reports -Get-MgBetaReportAttackSimulationRepeatOffender -``` -This example shows how to use the Get-MgBetaReportAttackSimulationRepeatOffender Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Reports/beta/examples/Get-MgBetaReportAttackSimulationTrainingUserCoverage.md b/src/Reports/beta/examples/Get-MgBetaReportAttackSimulationTrainingUserCoverage.md index 167058484e..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportAttackSimulationTrainingUserCoverage.md +++ b/src/Reports/beta/examples/Get-MgBetaReportAttackSimulationTrainingUserCoverage.md @@ -1,7 +0,0 @@ -### Example 1: Using the Get-MgBetaReportAttackSimulationTrainingUserCoverage Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Reports -Get-MgBetaReportAttackSimulationTrainingUserCoverage -``` -This example shows how to use the Get-MgBetaReportAttackSimulationTrainingUserCoverage Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Reports/beta/examples/Get-MgBetaReportAttackSimulationUserCoverage.md b/src/Reports/beta/examples/Get-MgBetaReportAttackSimulationUserCoverage.md index 3d5359b591..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportAttackSimulationUserCoverage.md +++ b/src/Reports/beta/examples/Get-MgBetaReportAttackSimulationUserCoverage.md @@ -1,7 +0,0 @@ -### Example 1: Using the Get-MgBetaReportAttackSimulationUserCoverage Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Reports -Get-MgBetaReportAttackSimulationUserCoverage -``` -This example shows how to use the Get-MgBetaReportAttackSimulationUserCoverage Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Reports/beta/examples/Get-MgBetaReportAuthenticationMethod.md b/src/Reports/beta/examples/Get-MgBetaReportAuthenticationMethod.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportAuthenticationMethod.md +++ b/src/Reports/beta/examples/Get-MgBetaReportAuthenticationMethod.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/beta/examples/Get-MgBetaReportAzureAdApplicationSignInSummary.md b/src/Reports/beta/examples/Get-MgBetaReportAzureAdApplicationSignInSummary.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportAzureAdApplicationSignInSummary.md +++ b/src/Reports/beta/examples/Get-MgBetaReportAzureAdApplicationSignInSummary.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/beta/examples/Get-MgBetaReportBrowserDistributionUserCount.md b/src/Reports/beta/examples/Get-MgBetaReportBrowserDistributionUserCount.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportBrowserDistributionUserCount.md +++ b/src/Reports/beta/examples/Get-MgBetaReportBrowserDistributionUserCount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/beta/examples/Get-MgBetaReportBrowserUserCount.md b/src/Reports/beta/examples/Get-MgBetaReportBrowserUserCount.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportBrowserUserCount.md +++ b/src/Reports/beta/examples/Get-MgBetaReportBrowserUserCount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/beta/examples/Get-MgBetaReportBrowserUserDetail.md b/src/Reports/beta/examples/Get-MgBetaReportBrowserUserDetail.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportBrowserUserDetail.md +++ b/src/Reports/beta/examples/Get-MgBetaReportBrowserUserDetail.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/beta/examples/Get-MgBetaReportCredentialUsageSummary.md b/src/Reports/beta/examples/Get-MgBetaReportCredentialUsageSummary.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportCredentialUsageSummary.md +++ b/src/Reports/beta/examples/Get-MgBetaReportCredentialUsageSummary.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/beta/examples/Get-MgBetaReportCredentialUserRegistrationCount.md b/src/Reports/beta/examples/Get-MgBetaReportCredentialUserRegistrationCount.md index da63b072e2..e6b2ab1694 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportCredentialUserRegistrationCount.md +++ b/src/Reports/beta/examples/Get-MgBetaReportCredentialUserRegistrationCount.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaReportCredentialUserRegistrationCount Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Reports + Get-MgBetaReportCredentialUserRegistrationCount + ``` This example shows how to use the Get-MgBetaReportCredentialUserRegistrationCount Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Reports/beta/examples/Get-MgBetaReportCredentialUserRegistrationDetail.md b/src/Reports/beta/examples/Get-MgBetaReportCredentialUserRegistrationDetail.md index db6f53f8d9..cb5ffacf5d 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportCredentialUserRegistrationDetail.md +++ b/src/Reports/beta/examples/Get-MgBetaReportCredentialUserRegistrationDetail.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaReportCredentialUserRegistrationDetail Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Reports + Get-MgBetaReportCredentialUserRegistrationDetail + ``` This example shows how to use the Get-MgBetaReportCredentialUserRegistrationDetail Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Reports/beta/examples/Get-MgBetaReportDeviceConfigurationDeviceActivity.md b/src/Reports/beta/examples/Get-MgBetaReportDeviceConfigurationDeviceActivity.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportDeviceConfigurationDeviceActivity.md +++ b/src/Reports/beta/examples/Get-MgBetaReportDeviceConfigurationDeviceActivity.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/beta/examples/Get-MgBetaReportDeviceConfigurationUserActivity.md b/src/Reports/beta/examples/Get-MgBetaReportDeviceConfigurationUserActivity.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportDeviceConfigurationUserActivity.md +++ b/src/Reports/beta/examples/Get-MgBetaReportDeviceConfigurationUserActivity.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/beta/examples/Get-MgBetaReportEmailActivityCount.md b/src/Reports/beta/examples/Get-MgBetaReportEmailActivityCount.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportEmailActivityCount.md +++ b/src/Reports/beta/examples/Get-MgBetaReportEmailActivityCount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/beta/examples/Get-MgBetaReportEmailActivityUserCount.md b/src/Reports/beta/examples/Get-MgBetaReportEmailActivityUserCount.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportEmailActivityUserCount.md +++ b/src/Reports/beta/examples/Get-MgBetaReportEmailActivityUserCount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/beta/examples/Get-MgBetaReportEmailActivityUserDetail.md b/src/Reports/beta/examples/Get-MgBetaReportEmailActivityUserDetail.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportEmailActivityUserDetail.md +++ b/src/Reports/beta/examples/Get-MgBetaReportEmailActivityUserDetail.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/beta/examples/Get-MgBetaReportEmailAppUsageAppUserCount.md b/src/Reports/beta/examples/Get-MgBetaReportEmailAppUsageAppUserCount.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportEmailAppUsageAppUserCount.md +++ b/src/Reports/beta/examples/Get-MgBetaReportEmailAppUsageAppUserCount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/beta/examples/Get-MgBetaReportEmailAppUsageUserCount.md b/src/Reports/beta/examples/Get-MgBetaReportEmailAppUsageUserCount.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportEmailAppUsageUserCount.md +++ b/src/Reports/beta/examples/Get-MgBetaReportEmailAppUsageUserCount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/beta/examples/Get-MgBetaReportEmailAppUsageUserDetail.md b/src/Reports/beta/examples/Get-MgBetaReportEmailAppUsageUserDetail.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportEmailAppUsageUserDetail.md +++ b/src/Reports/beta/examples/Get-MgBetaReportEmailAppUsageUserDetail.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/beta/examples/Get-MgBetaReportEmailAppUsageVersionUserCount.md b/src/Reports/beta/examples/Get-MgBetaReportEmailAppUsageVersionUserCount.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportEmailAppUsageVersionUserCount.md +++ b/src/Reports/beta/examples/Get-MgBetaReportEmailAppUsageVersionUserCount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/beta/examples/Get-MgBetaReportGroupArchivedPrintJob.md b/src/Reports/beta/examples/Get-MgBetaReportGroupArchivedPrintJob.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportGroupArchivedPrintJob.md +++ b/src/Reports/beta/examples/Get-MgBetaReportGroupArchivedPrintJob.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/beta/examples/Get-MgBetaReportM365AppPlatformUserCount.md b/src/Reports/beta/examples/Get-MgBetaReportM365AppPlatformUserCount.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportM365AppPlatformUserCount.md +++ b/src/Reports/beta/examples/Get-MgBetaReportM365AppPlatformUserCount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/beta/examples/Get-MgBetaReportM365AppUserCount.md b/src/Reports/beta/examples/Get-MgBetaReportM365AppUserCount.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportM365AppUserCount.md +++ b/src/Reports/beta/examples/Get-MgBetaReportM365AppUserCount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/beta/examples/Get-MgBetaReportM365AppUserDetail.md b/src/Reports/beta/examples/Get-MgBetaReportM365AppUserDetail.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportM365AppUserDetail.md +++ b/src/Reports/beta/examples/Get-MgBetaReportM365AppUserDetail.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/beta/examples/Get-MgBetaReportMailboxUsageDetail.md b/src/Reports/beta/examples/Get-MgBetaReportMailboxUsageDetail.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportMailboxUsageDetail.md +++ b/src/Reports/beta/examples/Get-MgBetaReportMailboxUsageDetail.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/beta/examples/Get-MgBetaReportMailboxUsageMailboxCount.md b/src/Reports/beta/examples/Get-MgBetaReportMailboxUsageMailboxCount.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportMailboxUsageMailboxCount.md +++ b/src/Reports/beta/examples/Get-MgBetaReportMailboxUsageMailboxCount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/beta/examples/Get-MgBetaReportMailboxUsageQuotaStatusMailboxCount.md b/src/Reports/beta/examples/Get-MgBetaReportMailboxUsageQuotaStatusMailboxCount.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportMailboxUsageQuotaStatusMailboxCount.md +++ b/src/Reports/beta/examples/Get-MgBetaReportMailboxUsageQuotaStatusMailboxCount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/beta/examples/Get-MgBetaReportMailboxUsageStorage.md b/src/Reports/beta/examples/Get-MgBetaReportMailboxUsageStorage.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportMailboxUsageStorage.md +++ b/src/Reports/beta/examples/Get-MgBetaReportMailboxUsageStorage.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/beta/examples/Get-MgBetaReportManagedDeviceEnrollmentAbandonmentDetail.md b/src/Reports/beta/examples/Get-MgBetaReportManagedDeviceEnrollmentAbandonmentDetail.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportManagedDeviceEnrollmentAbandonmentDetail.md +++ b/src/Reports/beta/examples/Get-MgBetaReportManagedDeviceEnrollmentAbandonmentDetail.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/beta/examples/Get-MgBetaReportManagedDeviceEnrollmentAbandonmentSummary.md b/src/Reports/beta/examples/Get-MgBetaReportManagedDeviceEnrollmentAbandonmentSummary.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportManagedDeviceEnrollmentAbandonmentSummary.md +++ b/src/Reports/beta/examples/Get-MgBetaReportManagedDeviceEnrollmentAbandonmentSummary.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/beta/examples/Get-MgBetaReportManagedDeviceEnrollmentFailureDetail.md b/src/Reports/beta/examples/Get-MgBetaReportManagedDeviceEnrollmentFailureDetail.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportManagedDeviceEnrollmentFailureDetail.md +++ b/src/Reports/beta/examples/Get-MgBetaReportManagedDeviceEnrollmentFailureDetail.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/beta/examples/Get-MgBetaReportManagedDeviceEnrollmentFailureTrend.md b/src/Reports/beta/examples/Get-MgBetaReportManagedDeviceEnrollmentFailureTrend.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/beta/examples/Get-MgBetaReportManagedDeviceEnrollmentFailureTrend.md +++ b/src/Reports/beta/examples/Get-MgBetaReportManagedDeviceEnrollmentFailureTrend.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/v1.0/examples/Get-MgReportDeviceConfigurationDeviceActivity.md b/src/Reports/v1.0/examples/Get-MgReportDeviceConfigurationDeviceActivity.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/v1.0/examples/Get-MgReportDeviceConfigurationDeviceActivity.md +++ b/src/Reports/v1.0/examples/Get-MgReportDeviceConfigurationDeviceActivity.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/v1.0/examples/Get-MgReportDeviceConfigurationUserActivity.md b/src/Reports/v1.0/examples/Get-MgReportDeviceConfigurationUserActivity.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/v1.0/examples/Get-MgReportDeviceConfigurationUserActivity.md +++ b/src/Reports/v1.0/examples/Get-MgReportDeviceConfigurationUserActivity.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/v1.0/examples/Get-MgReportEmailActivityCount.md b/src/Reports/v1.0/examples/Get-MgReportEmailActivityCount.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/v1.0/examples/Get-MgReportEmailActivityCount.md +++ b/src/Reports/v1.0/examples/Get-MgReportEmailActivityCount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/v1.0/examples/Get-MgReportEmailActivityUserCount.md b/src/Reports/v1.0/examples/Get-MgReportEmailActivityUserCount.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/v1.0/examples/Get-MgReportEmailActivityUserCount.md +++ b/src/Reports/v1.0/examples/Get-MgReportEmailActivityUserCount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/v1.0/examples/Get-MgReportEmailActivityUserDetail.md b/src/Reports/v1.0/examples/Get-MgReportEmailActivityUserDetail.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/v1.0/examples/Get-MgReportEmailActivityUserDetail.md +++ b/src/Reports/v1.0/examples/Get-MgReportEmailActivityUserDetail.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/v1.0/examples/Get-MgReportEmailAppUsageAppUserCount.md b/src/Reports/v1.0/examples/Get-MgReportEmailAppUsageAppUserCount.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/v1.0/examples/Get-MgReportEmailAppUsageAppUserCount.md +++ b/src/Reports/v1.0/examples/Get-MgReportEmailAppUsageAppUserCount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/v1.0/examples/Get-MgReportEmailAppUsageUserCount.md b/src/Reports/v1.0/examples/Get-MgReportEmailAppUsageUserCount.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/v1.0/examples/Get-MgReportEmailAppUsageUserCount.md +++ b/src/Reports/v1.0/examples/Get-MgReportEmailAppUsageUserCount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/v1.0/examples/Get-MgReportEmailAppUsageUserDetail.md b/src/Reports/v1.0/examples/Get-MgReportEmailAppUsageUserDetail.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/v1.0/examples/Get-MgReportEmailAppUsageUserDetail.md +++ b/src/Reports/v1.0/examples/Get-MgReportEmailAppUsageUserDetail.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/v1.0/examples/Get-MgReportEmailAppUsageVersionUserCount.md b/src/Reports/v1.0/examples/Get-MgReportEmailAppUsageVersionUserCount.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/v1.0/examples/Get-MgReportEmailAppUsageVersionUserCount.md +++ b/src/Reports/v1.0/examples/Get-MgReportEmailAppUsageVersionUserCount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/v1.0/examples/Get-MgReportGroupArchivedPrintJob.md b/src/Reports/v1.0/examples/Get-MgReportGroupArchivedPrintJob.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/v1.0/examples/Get-MgReportGroupArchivedPrintJob.md +++ b/src/Reports/v1.0/examples/Get-MgReportGroupArchivedPrintJob.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/v1.0/examples/Get-MgReportM365AppPlatformUserCount.md b/src/Reports/v1.0/examples/Get-MgReportM365AppPlatformUserCount.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/v1.0/examples/Get-MgReportM365AppPlatformUserCount.md +++ b/src/Reports/v1.0/examples/Get-MgReportM365AppPlatformUserCount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/v1.0/examples/Get-MgReportM365AppUserCount.md b/src/Reports/v1.0/examples/Get-MgReportM365AppUserCount.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/v1.0/examples/Get-MgReportM365AppUserCount.md +++ b/src/Reports/v1.0/examples/Get-MgReportM365AppUserCount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/v1.0/examples/Get-MgReportM365AppUserDetail.md b/src/Reports/v1.0/examples/Get-MgReportM365AppUserDetail.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/v1.0/examples/Get-MgReportM365AppUserDetail.md +++ b/src/Reports/v1.0/examples/Get-MgReportM365AppUserDetail.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/v1.0/examples/Get-MgReportMailboxUsageDetail.md b/src/Reports/v1.0/examples/Get-MgReportMailboxUsageDetail.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/v1.0/examples/Get-MgReportMailboxUsageDetail.md +++ b/src/Reports/v1.0/examples/Get-MgReportMailboxUsageDetail.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/v1.0/examples/Get-MgReportMailboxUsageMailboxCount.md b/src/Reports/v1.0/examples/Get-MgReportMailboxUsageMailboxCount.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/v1.0/examples/Get-MgReportMailboxUsageMailboxCount.md +++ b/src/Reports/v1.0/examples/Get-MgReportMailboxUsageMailboxCount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/v1.0/examples/Get-MgReportMailboxUsageQuotaStatusMailboxCount.md b/src/Reports/v1.0/examples/Get-MgReportMailboxUsageQuotaStatusMailboxCount.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/v1.0/examples/Get-MgReportMailboxUsageQuotaStatusMailboxCount.md +++ b/src/Reports/v1.0/examples/Get-MgReportMailboxUsageQuotaStatusMailboxCount.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/v1.0/examples/Get-MgReportMailboxUsageStorage.md b/src/Reports/v1.0/examples/Get-MgReportMailboxUsageStorage.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/v1.0/examples/Get-MgReportMailboxUsageStorage.md +++ b/src/Reports/v1.0/examples/Get-MgReportMailboxUsageStorage.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Reports/v1.0/examples/Get-MgReportManagedDeviceEnrollmentFailureDetail.md b/src/Reports/v1.0/examples/Get-MgReportManagedDeviceEnrollmentFailureDetail.md index 093355d11d..e69de29bb2 100644 --- a/src/Reports/v1.0/examples/Get-MgReportManagedDeviceEnrollmentFailureDetail.md +++ b/src/Reports/v1.0/examples/Get-MgReportManagedDeviceEnrollmentFailureDetail.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Search/beta/examples/Add-MgBetaExternalConnectionItemActivity.md b/src/Search/beta/examples/Add-MgBetaExternalConnectionItemActivity.md index 093355d11d..e69de29bb2 100644 --- a/src/Search/beta/examples/Add-MgBetaExternalConnectionItemActivity.md +++ b/src/Search/beta/examples/Add-MgBetaExternalConnectionItemActivity.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Search/beta/examples/Get-MgBetaExternal.md b/src/Search/beta/examples/Get-MgBetaExternal.md index 093355d11d..e69de29bb2 100644 --- a/src/Search/beta/examples/Get-MgBetaExternal.md +++ b/src/Search/beta/examples/Get-MgBetaExternal.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Search/beta/examples/Get-MgBetaExternalConnectionItemActivityPerformedBy.md b/src/Search/beta/examples/Get-MgBetaExternalConnectionItemActivityPerformedBy.md index 093355d11d..e69de29bb2 100644 --- a/src/Search/beta/examples/Get-MgBetaExternalConnectionItemActivityPerformedBy.md +++ b/src/Search/beta/examples/Get-MgBetaExternalConnectionItemActivityPerformedBy.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Search/beta/examples/Get-MgBetaExternalConnectionQuota.md b/src/Search/beta/examples/Get-MgBetaExternalConnectionQuota.md index a93bf55440..4d885dec0c 100644 --- a/src/Search/beta/examples/Get-MgBetaExternalConnectionQuota.md +++ b/src/Search/beta/examples/Get-MgBetaExternalConnectionQuota.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaExternalConnectionQuota Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Search + Get-MgBetaExternalConnectionQuota -ExternalConnectionId $externalConnectionId + ``` This example shows how to use the Get-MgBetaExternalConnectionQuota Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaExternalConnectionQuota Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Search -Get-MgBetaExternalConnectionQuota -ExternalConnectionId $externalConnectionId -OutFile $outFileId -``` -This example shows how to use the Get-MgBetaExternalConnectionQuota Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Search/beta/examples/Get-MgBetaSearchEntity.md b/src/Search/beta/examples/Get-MgBetaSearchEntity.md index 093355d11d..e69de29bb2 100644 --- a/src/Search/beta/examples/Get-MgBetaSearchEntity.md +++ b/src/Search/beta/examples/Get-MgBetaSearchEntity.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Search/beta/examples/New-MgBetaExternalConnectionItem.md b/src/Search/beta/examples/New-MgBetaExternalConnectionItem.md index 093355d11d..e69de29bb2 100644 --- a/src/Search/beta/examples/New-MgBetaExternalConnectionItem.md +++ b/src/Search/beta/examples/New-MgBetaExternalConnectionItem.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Search/beta/examples/New-MgBetaExternalConnectionItemActivity.md b/src/Search/beta/examples/New-MgBetaExternalConnectionItemActivity.md index 093355d11d..e69de29bb2 100644 --- a/src/Search/beta/examples/New-MgBetaExternalConnectionItemActivity.md +++ b/src/Search/beta/examples/New-MgBetaExternalConnectionItemActivity.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Search/beta/examples/New-MgBetaExternalConnectionOperation.md b/src/Search/beta/examples/New-MgBetaExternalConnectionOperation.md index 093355d11d..e69de29bb2 100644 --- a/src/Search/beta/examples/New-MgBetaExternalConnectionOperation.md +++ b/src/Search/beta/examples/New-MgBetaExternalConnectionOperation.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Search/beta/examples/Remove-MgBetaExternalConnectionItemActivity.md b/src/Search/beta/examples/Remove-MgBetaExternalConnectionItemActivity.md index 093355d11d..e69de29bb2 100644 --- a/src/Search/beta/examples/Remove-MgBetaExternalConnectionItemActivity.md +++ b/src/Search/beta/examples/Remove-MgBetaExternalConnectionItemActivity.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Search/beta/examples/Remove-MgBetaExternalConnectionOperation.md b/src/Search/beta/examples/Remove-MgBetaExternalConnectionOperation.md index f6c6949389..e69de29bb2 100644 --- a/src/Search/beta/examples/Remove-MgBetaExternalConnectionOperation.md +++ b/src/Search/beta/examples/Remove-MgBetaExternalConnectionOperation.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Search/beta/examples/Remove-MgBetaExternalConnectionQuota.md b/src/Search/beta/examples/Remove-MgBetaExternalConnectionQuota.md index 093355d11d..e69de29bb2 100644 --- a/src/Search/beta/examples/Remove-MgBetaExternalConnectionQuota.md +++ b/src/Search/beta/examples/Remove-MgBetaExternalConnectionQuota.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Search/v1.0/examples/Get-MgExternal.md b/src/Search/v1.0/examples/Get-MgExternal.md index 093355d11d..e69de29bb2 100644 --- a/src/Search/v1.0/examples/Get-MgExternal.md +++ b/src/Search/v1.0/examples/Get-MgExternal.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Search/v1.0/examples/Get-MgSearchEntity.md b/src/Search/v1.0/examples/Get-MgSearchEntity.md index 093355d11d..e69de29bb2 100644 --- a/src/Search/v1.0/examples/Get-MgSearchEntity.md +++ b/src/Search/v1.0/examples/Get-MgSearchEntity.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Search/v1.0/examples/New-MgExternalConnectionItem.md b/src/Search/v1.0/examples/New-MgExternalConnectionItem.md index 093355d11d..e69de29bb2 100644 --- a/src/Search/v1.0/examples/New-MgExternalConnectionItem.md +++ b/src/Search/v1.0/examples/New-MgExternalConnectionItem.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Search/v1.0/examples/New-MgExternalConnectionOperation.md b/src/Search/v1.0/examples/New-MgExternalConnectionOperation.md index 093355d11d..e69de29bb2 100644 --- a/src/Search/v1.0/examples/New-MgExternalConnectionOperation.md +++ b/src/Search/v1.0/examples/New-MgExternalConnectionOperation.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Search/v1.0/examples/Remove-MgExternalConnectionOperation.md b/src/Search/v1.0/examples/Remove-MgExternalConnectionOperation.md index f6c6949389..e69de29bb2 100644 --- a/src/Search/v1.0/examples/Remove-MgExternalConnectionOperation.md +++ b/src/Search/v1.0/examples/Remove-MgExternalConnectionOperation.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/beta/examples/Add-MgBetaSecurityCaseEdiscoveryCaseCustodianHold.md b/src/Security/beta/examples/Add-MgBetaSecurityCaseEdiscoveryCaseCustodianHold.md index a51b607634..f9dd389529 100644 --- a/src/Security/beta/examples/Add-MgBetaSecurityCaseEdiscoveryCaseCustodianHold.md +++ b/src/Security/beta/examples/Add-MgBetaSecurityCaseEdiscoveryCaseCustodianHold.md @@ -1,14 +1,11 @@ -### Example 1: Using the Add-MgBetaSecurityCaseEdiscoveryCaseCustodianHold Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + Add-MgBetaSecurityCaseEdiscoveryCaseCustodianHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId + ``` This example shows how to use the Add-MgBetaSecurityCaseEdiscoveryCaseCustodianHold Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Add-MgBetaSecurityCaseEdiscoveryCaseCustodianHold Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Security -Add-MgBetaSecurityCaseEdiscoveryCaseCustodianHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId -``` -This example shows how to use the Add-MgBetaSecurityCaseEdiscoveryCaseCustodianHold Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Add-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md b/src/Security/beta/examples/Add-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md index d811cc753f..0492767221 100644 --- a/src/Security/beta/examples/Add-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md +++ b/src/Security/beta/examples/Add-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md @@ -1,14 +1,11 @@ -### Example 1: Using the Add-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + Add-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId + ``` This example shows how to use the Add-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Add-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Security -Add-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId -``` -This example shows how to use the Add-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Add-MgBetaSecurityCaseEdiscoveryCaseReviewSetQueryTag.md b/src/Security/beta/examples/Add-MgBetaSecurityCaseEdiscoveryCaseReviewSetQueryTag.md index c9d6269ad9..a7c3afb77a 100644 --- a/src/Security/beta/examples/Add-MgBetaSecurityCaseEdiscoveryCaseReviewSetQueryTag.md +++ b/src/Security/beta/examples/Add-MgBetaSecurityCaseEdiscoveryCaseReviewSetQueryTag.md @@ -1,14 +1,19 @@ -### Example 1: Using the Add-MgBetaSecurityCaseEdiscoveryCaseReviewSetQueryTag Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + $params = @{ - TagsToAdd = @( + tagsToAdd = @( @{ - Id = "d3d99dc704a74801b792b3e1e722aa0d" + id = "d3d99dc704a74801b792b3e1e722aa0d" } ) } + Add-MgBetaSecurityCaseEdiscoveryCaseReviewSetQueryTag -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -EdiscoveryReviewSetQueryId $ediscoveryReviewSetQueryId -BodyParameter $params + ``` This example shows how to use the Add-MgBetaSecurityCaseEdiscoveryCaseReviewSetQueryTag Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Add-MgBetaSecurityCaseEdiscoveryCaseReviewSetToReviewSet.md b/src/Security/beta/examples/Add-MgBetaSecurityCaseEdiscoveryCaseReviewSetToReviewSet.md index 62bcfbdbe9..f136a9561a 100644 --- a/src/Security/beta/examples/Add-MgBetaSecurityCaseEdiscoveryCaseReviewSetToReviewSet.md +++ b/src/Security/beta/examples/Add-MgBetaSecurityCaseEdiscoveryCaseReviewSetToReviewSet.md @@ -1,13 +1,18 @@ -### Example 1: Using the Add-MgBetaSecurityCaseEdiscoveryCaseReviewSetToReviewSet Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + $params = @{ - Search = @{ - Id = "c17e91d6-6bc0-4ecb-b388-269ea3d4ffb7" + search = @{ + id = "c17e91d6-6bc0-4ecb-b388-269ea3d4ffb7" } - AdditionalDataOptions = "linkedFiles" + additionalDataOptions = "linkedFiles" } + Add-MgBetaSecurityCaseEdiscoveryCaseReviewSetToReviewSet -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -BodyParameter $params + ``` This example shows how to use the Add-MgBetaSecurityCaseEdiscoveryCaseReviewSetToReviewSet Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Clear-MgBetaSecurityCaseEdiscoveryCaseSearchData.md b/src/Security/beta/examples/Clear-MgBetaSecurityCaseEdiscoveryCaseSearchData.md index 84b8511b7b..91187e0610 100644 --- a/src/Security/beta/examples/Clear-MgBetaSecurityCaseEdiscoveryCaseSearchData.md +++ b/src/Security/beta/examples/Clear-MgBetaSecurityCaseEdiscoveryCaseSearchData.md @@ -1,7 +1,14 @@ -### Example 1: Using the Clear-MgBetaSecurityCaseEdiscoveryCaseSearchData Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security -Clear-MgBetaSecurityCaseEdiscoveryCaseSearchData -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId + +$params = @{ +} + +Clear-MgBetaSecurityCaseEdiscoveryCaseSearchData -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId -BodyParameter $params + ``` This example shows how to use the Clear-MgBetaSecurityCaseEdiscoveryCaseSearchData Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Close-MgBetaSecurityCaseEdiscoveryCase.md b/src/Security/beta/examples/Close-MgBetaSecurityCaseEdiscoveryCase.md index 01f2c97588..15b1771c9b 100644 --- a/src/Security/beta/examples/Close-MgBetaSecurityCaseEdiscoveryCase.md +++ b/src/Security/beta/examples/Close-MgBetaSecurityCaseEdiscoveryCase.md @@ -1,7 +1,11 @@ -### Example 1: Using the Close-MgBetaSecurityCaseEdiscoveryCase Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + Close-MgBetaSecurityCaseEdiscoveryCase -EdiscoveryCaseId $ediscoveryCaseId + ``` This example shows how to use the Close-MgBetaSecurityCaseEdiscoveryCase Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Export-MgBetaSecurityCaseEdiscoveryCaseReviewSet.md b/src/Security/beta/examples/Export-MgBetaSecurityCaseEdiscoveryCaseReviewSet.md index d7bf977542..4a002882c4 100644 --- a/src/Security/beta/examples/Export-MgBetaSecurityCaseEdiscoveryCaseReviewSet.md +++ b/src/Security/beta/examples/Export-MgBetaSecurityCaseEdiscoveryCaseReviewSet.md @@ -1,13 +1,18 @@ -### Example 1: Using the Export-MgBetaSecurityCaseEdiscoveryCaseReviewSet Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + $params = @{ - OutputName = "Export via API" - Description = "Export for the Contoso investigation" - ExportOptions = "originalFiles,fileInfo,tags" - ExportStructure = "directory" + outputName = "Export via API" + description = "Export for the Contoso investigation" + exportOptions = "originalFiles,fileInfo,tags" + exportStructure = "directory" } + Export-MgBetaSecurityCaseEdiscoveryCaseReviewSet -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -BodyParameter $params + ``` This example shows how to use the Export-MgBetaSecurityCaseEdiscoveryCaseReviewSet Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Export-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery.md b/src/Security/beta/examples/Export-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery.md index 7173b1ad1a..3e0620128e 100644 --- a/src/Security/beta/examples/Export-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery.md +++ b/src/Security/beta/examples/Export-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery.md @@ -1,13 +1,18 @@ -### Example 1: Using the Export-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + $params = @{ - OutputName = "Export reviewset query via API" - Description = "Export for the Contoso investigation 2" - ExportOptions = "originalFiles,fileInfo,tags" - ExportStructure = "directory" + outputName = "Export reviewset query via API" + description = "Export for the Contoso investigation 2" + exportOptions = "originalFiles,fileInfo,tags" + exportStructure = "directory" } + Export-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -EdiscoveryReviewSetQueryId $ediscoveryReviewSetQueryId -BodyParameter $params + ``` This example shows how to use the Export-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Get-MgBetaSecurityAction.md b/src/Security/beta/examples/Get-MgBetaSecurityAction.md index 66571d1dfe..511669301c 100644 --- a/src/Security/beta/examples/Get-MgBetaSecurityAction.md +++ b/src/Security/beta/examples/Get-MgBetaSecurityAction.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaSecurityAction Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Security -Get-MgBetaSecurityAction -SecurityActionId $securityActionId -``` -This example shows how to use the Get-MgBetaSecurityAction Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaSecurityAction Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + Get-MgBetaSecurityAction + ``` This example shows how to use the Get-MgBetaSecurityAction Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Get-MgBetaSecurityCase.md b/src/Security/beta/examples/Get-MgBetaSecurityCase.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Get-MgBetaSecurityCase.md +++ b/src/Security/beta/examples/Get-MgBetaSecurityCase.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSourceSite.md b/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSourceSite.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSourceSite.md +++ b/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSourceSite.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroup.md b/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroup.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroup.md +++ b/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroup.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseLegalHold.md b/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseLegalHold.md index 029862ac23..495c00ac29 100644 --- a/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseLegalHold.md +++ b/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseLegalHold.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaSecurityCaseEdiscoveryCaseLegalHold Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Security -Get-MgBetaSecurityCaseEdiscoveryCaseLegalHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryHoldPolicyId $ediscoveryHoldPolicyId -``` -This example shows how to use the Get-MgBetaSecurityCaseEdiscoveryCaseLegalHold Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaSecurityCaseEdiscoveryCaseLegalHold Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + Get-MgBetaSecurityCaseEdiscoveryCaseLegalHold -EdiscoveryCaseId $ediscoveryCaseId + ``` This example shows how to use the Get-MgBetaSecurityCaseEdiscoveryCaseLegalHold Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSourceSite.md b/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSourceSite.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSourceSite.md +++ b/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSourceSite.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceLastIndexOperation.md b/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceLastIndexOperation.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceLastIndexOperation.md +++ b/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceLastIndexOperation.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile.md b/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile.md index d4bd24d454..23e9ee8a79 100644 --- a/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile.md +++ b/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Security -Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -EdiscoveryFileId $ediscoveryFileId -``` -This example shows how to use the Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -Top 5 + ``` This example shows how to use the Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileContent.md b/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileContent.md +++ b/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileCustodian.md b/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileCustodian.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileCustodian.md +++ b/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileCustodian.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileExtractedTextContent.md b/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileExtractedTextContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileExtractedTextContent.md +++ b/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileExtractedTextContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseSearchAddToReviewSetOperation.md b/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseSearchAddToReviewSetOperation.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseSearchAddToReviewSetOperation.md +++ b/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseSearchAddToReviewSetOperation.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseTagParent.md b/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseTagParent.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseTagParent.md +++ b/src/Security/beta/examples/Get-MgBetaSecurityCaseEdiscoveryCaseTagParent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Get-MgBetaSecurityInformationProtection.md b/src/Security/beta/examples/Get-MgBetaSecurityInformationProtection.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Get-MgBetaSecurityInformationProtection.md +++ b/src/Security/beta/examples/Get-MgBetaSecurityInformationProtection.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Get-MgBetaSecurityInformationProtectionLabelPolicySetting.md b/src/Security/beta/examples/Get-MgBetaSecurityInformationProtectionLabelPolicySetting.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Get-MgBetaSecurityInformationProtectionLabelPolicySetting.md +++ b/src/Security/beta/examples/Get-MgBetaSecurityInformationProtectionLabelPolicySetting.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Get-MgBetaSecurityInformationProtectionSensitivityLabel.md b/src/Security/beta/examples/Get-MgBetaSecurityInformationProtectionSensitivityLabel.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Get-MgBetaSecurityInformationProtectionSensitivityLabel.md +++ b/src/Security/beta/examples/Get-MgBetaSecurityInformationProtectionSensitivityLabel.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Get-MgBetaSecurityInformationProtectionSensitivityLabelParent.md b/src/Security/beta/examples/Get-MgBetaSecurityInformationProtectionSensitivityLabelParent.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Get-MgBetaSecurityInformationProtectionSensitivityLabelParent.md +++ b/src/Security/beta/examples/Get-MgBetaSecurityInformationProtectionSensitivityLabelParent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Get-MgBetaSecurityLabel.md b/src/Security/beta/examples/Get-MgBetaSecurityLabel.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Get-MgBetaSecurityLabel.md +++ b/src/Security/beta/examples/Get-MgBetaSecurityLabel.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Get-MgBetaSecurityLabelRetentionEventType.md b/src/Security/beta/examples/Get-MgBetaSecurityLabelRetentionEventType.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Get-MgBetaSecurityLabelRetentionEventType.md +++ b/src/Security/beta/examples/Get-MgBetaSecurityLabelRetentionEventType.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Get-MgBetaSecuritySecureScore.md b/src/Security/beta/examples/Get-MgBetaSecuritySecureScore.md index b8be6de116..d279d489f4 100644 --- a/src/Security/beta/examples/Get-MgBetaSecuritySecureScore.md +++ b/src/Security/beta/examples/Get-MgBetaSecuritySecureScore.md @@ -1,11 +1,11 @@ ### Example 1: Code snippet ```powershell + Import-Module Microsoft.Graph.Beta.Security -Get-MgBetaSecuritySecureScore -SecureScoreId $secureScoreId +Get-MgBetaSecuritySecureScore -Top 1 + ``` This example shows how to use the Get-MgBetaSecuritySecureScore Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - diff --git a/src/Security/beta/examples/Get-MgBetaSecuritySecureScoreControlProfile.md b/src/Security/beta/examples/Get-MgBetaSecuritySecureScoreControlProfile.md index 1a8d284309..fe98ee23a9 100644 --- a/src/Security/beta/examples/Get-MgBetaSecuritySecureScoreControlProfile.md +++ b/src/Security/beta/examples/Get-MgBetaSecuritySecureScoreControlProfile.md @@ -1,11 +1,11 @@ ### Example 1: Code snippet ```powershell + Import-Module Microsoft.Graph.Beta.Security -Get-MgBetaSecuritySecureScoreControlProfile -SecureScoreControlProfileId $secureScoreControlProfileId +Get-MgBetaSecuritySecureScoreControlProfile + ``` This example shows how to use the Get-MgBetaSecuritySecureScoreControlProfile Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - diff --git a/src/Security/beta/examples/Get-MgBetaSecuritySubjectRightsRequestFinalAttachment.md b/src/Security/beta/examples/Get-MgBetaSecuritySubjectRightsRequestFinalAttachment.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Get-MgBetaSecuritySubjectRightsRequestFinalAttachment.md +++ b/src/Security/beta/examples/Get-MgBetaSecuritySubjectRightsRequestFinalAttachment.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Get-MgBetaSecuritySubjectRightsRequestFinalReport.md b/src/Security/beta/examples/Get-MgBetaSecuritySubjectRightsRequestFinalReport.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Get-MgBetaSecuritySubjectRightsRequestFinalReport.md +++ b/src/Security/beta/examples/Get-MgBetaSecuritySubjectRightsRequestFinalReport.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Get-MgBetaSecuritySubjectRightsRequestTeam.md b/src/Security/beta/examples/Get-MgBetaSecuritySubjectRightsRequestTeam.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Get-MgBetaSecuritySubjectRightsRequestTeam.md +++ b/src/Security/beta/examples/Get-MgBetaSecuritySubjectRightsRequestTeam.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Get-MgBetaSecurityThreatSubmission.md b/src/Security/beta/examples/Get-MgBetaSecurityThreatSubmission.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Get-MgBetaSecurityThreatSubmission.md +++ b/src/Security/beta/examples/Get-MgBetaSecurityThreatSubmission.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Get-MgBetaSecurityThreatSubmissionEmailThreat.md b/src/Security/beta/examples/Get-MgBetaSecurityThreatSubmissionEmailThreat.md index 66a49f9ab7..21926ff196 100644 --- a/src/Security/beta/examples/Get-MgBetaSecurityThreatSubmissionEmailThreat.md +++ b/src/Security/beta/examples/Get-MgBetaSecurityThreatSubmissionEmailThreat.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaSecurityThreatSubmissionEmailThreat Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Security -Get-MgBetaSecurityThreatSubmissionEmailThreat -EmailThreatSubmissionId $emailThreatSubmissionId -``` -This example shows how to use the Get-MgBetaSecurityThreatSubmissionEmailThreat Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaSecurityThreatSubmissionEmailThreat Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + Get-MgBetaSecurityThreatSubmissionEmailThreat + ``` This example shows how to use the Get-MgBetaSecurityThreatSubmissionEmailThreat Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Get-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy.md b/src/Security/beta/examples/Get-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy.md index 03add47bce..ae892d0906 100644 --- a/src/Security/beta/examples/Get-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy.md +++ b/src/Security/beta/examples/Get-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Security -Get-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy -EmailThreatSubmissionPolicyId $emailThreatSubmissionPolicyId -``` -This example shows how to use the Get-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + Get-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy + ``` This example shows how to use the Get-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Get-MgBetaSecurityThreatSubmissionFileThreat.md b/src/Security/beta/examples/Get-MgBetaSecurityThreatSubmissionFileThreat.md index 954609889b..b9edaa9783 100644 --- a/src/Security/beta/examples/Get-MgBetaSecurityThreatSubmissionFileThreat.md +++ b/src/Security/beta/examples/Get-MgBetaSecurityThreatSubmissionFileThreat.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaSecurityThreatSubmissionFileThreat Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Security -Get-MgBetaSecurityThreatSubmissionFileThreat -FileThreatSubmissionId $fileThreatSubmissionId -``` -This example shows how to use the Get-MgBetaSecurityThreatSubmissionFileThreat Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaSecurityThreatSubmissionFileThreat Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + Get-MgBetaSecurityThreatSubmissionFileThreat + ``` This example shows how to use the Get-MgBetaSecurityThreatSubmissionFileThreat Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Get-MgBetaSecurityThreatSubmissionUrlThreat.md b/src/Security/beta/examples/Get-MgBetaSecurityThreatSubmissionUrlThreat.md index 185dcd9a8b..28ae09f91f 100644 --- a/src/Security/beta/examples/Get-MgBetaSecurityThreatSubmissionUrlThreat.md +++ b/src/Security/beta/examples/Get-MgBetaSecurityThreatSubmissionUrlThreat.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaSecurityThreatSubmissionUrlThreat Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Security -Get-MgBetaSecurityThreatSubmissionUrlThreat -UrlThreatSubmissionId $urlThreatSubmissionId -``` -This example shows how to use the Get-MgBetaSecurityThreatSubmissionUrlThreat Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaSecurityThreatSubmissionUrlThreat Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + Get-MgBetaSecurityThreatSubmissionUrlThreat + ``` This example shows how to use the Get-MgBetaSecurityThreatSubmissionUrlThreat Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Get-MgBetaSecurityTiIndicator.md b/src/Security/beta/examples/Get-MgBetaSecurityTiIndicator.md index 59f2d6419e..37750a2e1b 100644 --- a/src/Security/beta/examples/Get-MgBetaSecurityTiIndicator.md +++ b/src/Security/beta/examples/Get-MgBetaSecurityTiIndicator.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaSecurityTiIndicator Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Security -Get-MgBetaSecurityTiIndicator -TiIndicatorId $tiIndicatorId -``` -This example shows how to use the Get-MgBetaSecurityTiIndicator Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaSecurityTiIndicator Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + Get-MgBetaSecurityTiIndicator + ``` This example shows how to use the Get-MgBetaSecurityTiIndicator Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Get-MgBetaSecurityTrigger.md b/src/Security/beta/examples/Get-MgBetaSecurityTrigger.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Get-MgBetaSecurityTrigger.md +++ b/src/Security/beta/examples/Get-MgBetaSecurityTrigger.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Get-MgBetaSecurityTriggerRetentionEventType.md b/src/Security/beta/examples/Get-MgBetaSecurityTriggerRetentionEventType.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Get-MgBetaSecurityTriggerRetentionEventType.md +++ b/src/Security/beta/examples/Get-MgBetaSecurityTriggerRetentionEventType.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Get-MgBetaSecurityTriggerType.md b/src/Security/beta/examples/Get-MgBetaSecurityTriggerType.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Get-MgBetaSecurityTriggerType.md +++ b/src/Security/beta/examples/Get-MgBetaSecurityTriggerType.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Initialize-MgBetaSecurityCaseEdiscoveryCaseCustodian.md b/src/Security/beta/examples/Initialize-MgBetaSecurityCaseEdiscoveryCaseCustodian.md index 4aa51752b7..f09f1973cb 100644 --- a/src/Security/beta/examples/Initialize-MgBetaSecurityCaseEdiscoveryCaseCustodian.md +++ b/src/Security/beta/examples/Initialize-MgBetaSecurityCaseEdiscoveryCaseCustodian.md @@ -1,7 +1,11 @@ -### Example 1: Using the Initialize-MgBetaSecurityCaseEdiscoveryCaseCustodian Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + Initialize-MgBetaSecurityCaseEdiscoveryCaseCustodian -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId + ``` This example shows how to use the Initialize-MgBetaSecurityCaseEdiscoveryCaseCustodian Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Invoke-MgBetaAsSecurityCaseEdiscoveryCaseTagHierarchy.md b/src/Security/beta/examples/Invoke-MgBetaAsSecurityCaseEdiscoveryCaseTagHierarchy.md index da7518ee9f..e69de29bb2 100644 --- a/src/Security/beta/examples/Invoke-MgBetaAsSecurityCaseEdiscoveryCaseTagHierarchy.md +++ b/src/Security/beta/examples/Invoke-MgBetaAsSecurityCaseEdiscoveryCaseTagHierarchy.md @@ -1,7 +0,0 @@ -### Example 1: Using the Invoke-MgBetaAsSecurityCaseEdiscoveryCaseTagHierarchy Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Security -Invoke-MgBetaAsSecurityCaseEdiscoveryCaseTagHierarchy -EdiscoveryCaseId $ediscoveryCaseId -``` -This example shows how to use the Invoke-MgBetaAsSecurityCaseEdiscoveryCaseTagHierarchy Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/beta/examples/Invoke-MgBetaEstimateSecurityCaseEdiscoveryCaseSearchStatistics.md b/src/Security/beta/examples/Invoke-MgBetaEstimateSecurityCaseEdiscoveryCaseSearchStatistics.md index 35ef7cee8e..13dd009b5b 100644 --- a/src/Security/beta/examples/Invoke-MgBetaEstimateSecurityCaseEdiscoveryCaseSearchStatistics.md +++ b/src/Security/beta/examples/Invoke-MgBetaEstimateSecurityCaseEdiscoveryCaseSearchStatistics.md @@ -1,7 +1,11 @@ -### Example 1: Using the Invoke-MgBetaEstimateSecurityCaseEdiscoveryCaseSearchStatistics Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + Invoke-MgBetaEstimateSecurityCaseEdiscoveryCaseSearchStatistics -EdiscoveryCaseId $ediscoveryCaseId -EdiscoverySearchId $ediscoverySearchId + ``` This example shows how to use the Invoke-MgBetaEstimateSecurityCaseEdiscoveryCaseSearchStatistics Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Invoke-MgBetaExtractSecurityInformationProtectionSensitivityLabelContentLabel.md b/src/Security/beta/examples/Invoke-MgBetaExtractSecurityInformationProtectionSensitivityLabelContentLabel.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Invoke-MgBetaExtractSecurityInformationProtectionSensitivityLabelContentLabel.md +++ b/src/Security/beta/examples/Invoke-MgBetaExtractSecurityInformationProtectionSensitivityLabelContentLabel.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Invoke-MgBetaReopenSecurityCaseEdiscoveryCase.md b/src/Security/beta/examples/Invoke-MgBetaReopenSecurityCaseEdiscoveryCase.md index 0a9c462134..d2fe73575a 100644 --- a/src/Security/beta/examples/Invoke-MgBetaReopenSecurityCaseEdiscoveryCase.md +++ b/src/Security/beta/examples/Invoke-MgBetaReopenSecurityCaseEdiscoveryCase.md @@ -1,7 +1,11 @@ -### Example 1: Using the Invoke-MgBetaReopenSecurityCaseEdiscoveryCase Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + Invoke-MgBetaReopenSecurityCaseEdiscoveryCase -EdiscoveryCaseId $ediscoveryCaseId + ``` This example shows how to use the Invoke-MgBetaReopenSecurityCaseEdiscoveryCase Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/New-MgBetaSecurityAction.md b/src/Security/beta/examples/New-MgBetaSecurityAction.md index 2bd84c8ef9..3597638f86 100644 --- a/src/Security/beta/examples/New-MgBetaSecurityAction.md +++ b/src/Security/beta/examples/New-MgBetaSecurityAction.md @@ -1,21 +1,26 @@ -### Example 1: Using the New-MgBetaSecurityAction Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + $params = @{ - Name = "BlockIp" - ActionReason = "Test" - Parameters = @( + name = "BlockIp" + actionReason = "Test" + parameters = @( @{ - Name = "IP" - Value = "1.2.3.4" + name = "IP" + value = "1.2.3.4" } ) - VendorInformation = @{ - Provider = "Windows Defender ATP" - Vendor = "Microsoft" + vendorInformation = @{ + provider = "Windows Defender ATP" + vendor = "Microsoft" } } + New-MgBetaSecurityAction -BodyParameter $params + ``` This example shows how to use the New-MgBetaSecurityAction Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/New-MgBetaSecurityAttackSimulationAutomation.md b/src/Security/beta/examples/New-MgBetaSecurityAttackSimulationAutomation.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/beta/examples/New-MgBetaSecurityAttackSimulationAutomation.md +++ b/src/Security/beta/examples/New-MgBetaSecurityAttackSimulationAutomation.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/beta/examples/New-MgBetaSecurityAttackSimulationAutomationRun.md b/src/Security/beta/examples/New-MgBetaSecurityAttackSimulationAutomationRun.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/beta/examples/New-MgBetaSecurityAttackSimulationAutomationRun.md +++ b/src/Security/beta/examples/New-MgBetaSecurityAttackSimulationAutomationRun.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/beta/examples/New-MgBetaSecurityCaseEdiscoveryCaseLegalHold.md b/src/Security/beta/examples/New-MgBetaSecurityCaseEdiscoveryCaseLegalHold.md index 067193d8f3..a67690729a 100644 --- a/src/Security/beta/examples/New-MgBetaSecurityCaseEdiscoveryCaseLegalHold.md +++ b/src/Security/beta/examples/New-MgBetaSecurityCaseEdiscoveryCaseLegalHold.md @@ -1,23 +1,30 @@ -### Example 1: Using the New-MgBetaSecurityCaseEdiscoveryCaseLegalHold Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + $params = @{ - Displayname = "My legalHold with sources" - Description = "Created from Graph API" - ContentQuery = "Bazooka" - "UserSources@odata.bind" = @( + displayName = "My legalHold with sources" + description = "Created from Graph API" + "userSources@odata.bind" = @( @{ "@odata.type" = "microsoft.graph.security.userSource" - Email = "SalesTeam@M365x809305.OnMicrosoft.com" + email = "SalesTeam@contoso.com" } ) - "SiteSources@odata.bind" = @( + "siteSources@odata.bind" = @( @{ "@odata.type" = "microsoft.graph.security.siteSource" + site = @{ + webUrl = "https://m365x809305.sharepoint.com/sites/Design-topsecret" + } } ) } + New-MgBetaSecurityCaseEdiscoveryCaseLegalHold -EdiscoveryCaseId $ediscoveryCaseId -BodyParameter $params + ``` This example shows how to use the New-MgBetaSecurityCaseEdiscoveryCaseLegalHold Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/New-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource.md b/src/Security/beta/examples/New-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource.md index 4e87c557e4..33c9a20880 100644 --- a/src/Security/beta/examples/New-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource.md +++ b/src/Security/beta/examples/New-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource.md @@ -1,24 +1,17 @@ -### Example 1: Using the New-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + $params = @{ - Site = @{ - WebUrl = "https://m365x809305.sharepoint.com/sites/Retail" + site = @{ + webUrl = "https://m365x809305.sharepoint.com/sites/Retail" } } + New-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryHoldPolicyId $ediscoveryHoldPolicyId -BodyParameter $params + ``` This example shows how to use the New-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the New-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Security -$params = @{ - Site = @{ - WebUrl = "https://m365x809305.sharepoint.com/sites/Retail" - } -} -New-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryHoldPolicyId $ediscoveryHoldPolicyId -BodyParameter $params -``` -This example shows how to use the New-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/New-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource.md b/src/Security/beta/examples/New-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource.md index 19321a7da6..07c8176714 100644 --- a/src/Security/beta/examples/New-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource.md +++ b/src/Security/beta/examples/New-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource.md @@ -1,22 +1,16 @@ -### Example 1: Using the New-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + $params = @{ - Email = "admin@M365x809305.onmicrosoft.com" - IncludedSources = "mailbox, site" + email = "admin@contoso.com" + includedSources = "mailbox, site" } + New-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryHoldPolicyId $ediscoveryHoldPolicyId -BodyParameter $params + ``` This example shows how to use the New-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the New-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Security -$params = @{ - Email = "admin@M365x809305.onmicrosoft.com" - IncludedSources = "mailbox, site" -} -New-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryHoldPolicyId $ediscoveryHoldPolicyId -BodyParameter $params -``` -This example shows how to use the New-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/New-MgBetaSecurityCaseEdiscoveryCaseOperation.md b/src/Security/beta/examples/New-MgBetaSecurityCaseEdiscoveryCaseOperation.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/beta/examples/New-MgBetaSecurityCaseEdiscoveryCaseOperation.md +++ b/src/Security/beta/examples/New-MgBetaSecurityCaseEdiscoveryCaseOperation.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/beta/examples/New-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile.md b/src/Security/beta/examples/New-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/New-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile.md +++ b/src/Security/beta/examples/New-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/New-MgBetaSecurityCloudAppSecurityProfile.md b/src/Security/beta/examples/New-MgBetaSecurityCloudAppSecurityProfile.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/New-MgBetaSecurityCloudAppSecurityProfile.md +++ b/src/Security/beta/examples/New-MgBetaSecurityCloudAppSecurityProfile.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/New-MgBetaSecurityDomainSecurityProfile.md b/src/Security/beta/examples/New-MgBetaSecurityDomainSecurityProfile.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/New-MgBetaSecurityDomainSecurityProfile.md +++ b/src/Security/beta/examples/New-MgBetaSecurityDomainSecurityProfile.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/New-MgBetaSecurityFileSecurityProfile.md b/src/Security/beta/examples/New-MgBetaSecurityFileSecurityProfile.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/New-MgBetaSecurityFileSecurityProfile.md +++ b/src/Security/beta/examples/New-MgBetaSecurityFileSecurityProfile.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/New-MgBetaSecurityHostSecurityProfile.md b/src/Security/beta/examples/New-MgBetaSecurityHostSecurityProfile.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/New-MgBetaSecurityHostSecurityProfile.md +++ b/src/Security/beta/examples/New-MgBetaSecurityHostSecurityProfile.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/New-MgBetaSecurityIPSecurityProfile.md b/src/Security/beta/examples/New-MgBetaSecurityIPSecurityProfile.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/New-MgBetaSecurityIPSecurityProfile.md +++ b/src/Security/beta/examples/New-MgBetaSecurityIPSecurityProfile.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/New-MgBetaSecurityIncident.md b/src/Security/beta/examples/New-MgBetaSecurityIncident.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/beta/examples/New-MgBetaSecurityIncident.md +++ b/src/Security/beta/examples/New-MgBetaSecurityIncident.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/beta/examples/New-MgBetaSecurityInformationProtectionSensitivityLabel.md b/src/Security/beta/examples/New-MgBetaSecurityInformationProtectionSensitivityLabel.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/New-MgBetaSecurityInformationProtectionSensitivityLabel.md +++ b/src/Security/beta/examples/New-MgBetaSecurityInformationProtectionSensitivityLabel.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/New-MgBetaSecurityLabelRetentionLabelDispositionReviewStage.md b/src/Security/beta/examples/New-MgBetaSecurityLabelRetentionLabelDispositionReviewStage.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/New-MgBetaSecurityLabelRetentionLabelDispositionReviewStage.md +++ b/src/Security/beta/examples/New-MgBetaSecurityLabelRetentionLabelDispositionReviewStage.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/New-MgBetaSecurityProviderTenantSetting.md b/src/Security/beta/examples/New-MgBetaSecurityProviderTenantSetting.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/New-MgBetaSecurityProviderTenantSetting.md +++ b/src/Security/beta/examples/New-MgBetaSecurityProviderTenantSetting.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/New-MgBetaSecuritySubjectRightsRequest.md b/src/Security/beta/examples/New-MgBetaSecuritySubjectRightsRequest.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/New-MgBetaSecuritySubjectRightsRequest.md +++ b/src/Security/beta/examples/New-MgBetaSecuritySubjectRightsRequest.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/New-MgBetaSecurityThreatSubmissionEmailThreat.md b/src/Security/beta/examples/New-MgBetaSecurityThreatSubmissionEmailThreat.md index 4c6d00e4e8..209b0b639f 100644 --- a/src/Security/beta/examples/New-MgBetaSecurityThreatSubmissionEmailThreat.md +++ b/src/Security/beta/examples/New-MgBetaSecurityThreatSubmissionEmailThreat.md @@ -1,13 +1,18 @@ -### Example 1: Using the New-MgBetaSecurityThreatSubmissionEmailThreat Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.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=" + "@odata.type" = "#microsoft.graph.security.emailUrlThreatSubmission" + category = "spam" + recipientEmailAddress = "tifc@contoso.com" + messageUrl = "https://graph.microsoft.com/beta/users/c52ce8db-3e4b-4181-93c4-7d6b6bffaf60/messages/AAMkADU3MWUxOTU0LWNlOTEt=" } + New-MgBetaSecurityThreatSubmissionEmailThreat -BodyParameter $params + ``` This example shows how to use the New-MgBetaSecurityThreatSubmissionEmailThreat Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/New-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy.md b/src/Security/beta/examples/New-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy.md index 854691798a..e69de29bb2 100644 --- a/src/Security/beta/examples/New-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy.md +++ b/src/Security/beta/examples/New-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy.md @@ -1,10 +0,0 @@ -### Example 1: Using the New-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Security -$params = @{ - IsReportToMicrosoftEnabled = $true -} -New-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy -BodyParameter $params -``` -This example shows how to use the New-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/beta/examples/New-MgBetaSecurityThreatSubmissionFileThreat.md b/src/Security/beta/examples/New-MgBetaSecurityThreatSubmissionFileThreat.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/New-MgBetaSecurityThreatSubmissionFileThreat.md +++ b/src/Security/beta/examples/New-MgBetaSecurityThreatSubmissionFileThreat.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/New-MgBetaSecurityThreatSubmissionUrlThreat.md b/src/Security/beta/examples/New-MgBetaSecurityThreatSubmissionUrlThreat.md index 0c06865642..559ab51e8b 100644 --- a/src/Security/beta/examples/New-MgBetaSecurityThreatSubmissionUrlThreat.md +++ b/src/Security/beta/examples/New-MgBetaSecurityThreatSubmissionUrlThreat.md @@ -1,12 +1,17 @@ -### Example 1: Using the New-MgBetaSecurityThreatSubmissionUrlThreat Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + $params = @{ "@odata.type" = "#microsoft.graph.urlThreatSubmission" - Category = "phishing" - WebUrl = "http://phishing.contoso.com" + category = "phishing" + webUrl = "http://phishing.contoso.com" } + New-MgBetaSecurityThreatSubmissionUrlThreat -BodyParameter $params + ``` This example shows how to use the New-MgBetaSecurityThreatSubmissionUrlThreat Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/New-MgBetaSecurityTiIndicator.md b/src/Security/beta/examples/New-MgBetaSecurityTiIndicator.md index c9bb25abc2..656fd1f688 100644 --- a/src/Security/beta/examples/New-MgBetaSecurityTiIndicator.md +++ b/src/Security/beta/examples/New-MgBetaSecurityTiIndicator.md @@ -1,28 +1,33 @@ -### Example 1: Using the New-MgBetaSecurityTiIndicator Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + $params = @{ - Action = "alert" - ActivityGroupNames = @( + 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 = @( + 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 = @( + malwareFamilyNames = @( ) - Severity = 0 - Tags = @( + severity = 0 + tags = @( ) - TargetProduct = "Azure Sentinel" - ThreatType = "WatchList" - TlpLevel = "green" + targetProduct = "Azure Sentinel" + threatType = "WatchList" + tlpLevel = "green" } + New-MgBetaSecurityTiIndicator -BodyParameter $params + ``` This example shows how to use the New-MgBetaSecurityTiIndicator Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/New-MgBetaSecurityTriggerRetentionEvent.md b/src/Security/beta/examples/New-MgBetaSecurityTriggerRetentionEvent.md index 040b95e04e..091e37b610 100644 --- a/src/Security/beta/examples/New-MgBetaSecurityTriggerRetentionEvent.md +++ b/src/Security/beta/examples/New-MgBetaSecurityTriggerRetentionEvent.md @@ -10,7 +10,7 @@ $params = @{ description = "String" eventQueries = @( @{ - "@odata.type" = "microsoft.graph.security.eventQueries" + "@odata.type" = "microsoft.graph.security.eventQuery" } ) eventTriggerDateTime = [System.DateTime]::Parse("String (timestamp)") diff --git a/src/Security/beta/examples/New-MgBetaSecurityUserSecurityProfile.md b/src/Security/beta/examples/New-MgBetaSecurityUserSecurityProfile.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/New-MgBetaSecurityUserSecurityProfile.md +++ b/src/Security/beta/examples/New-MgBetaSecurityUserSecurityProfile.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Publish-MgBetaSecurityCaseEdiscoveryCaseCustodian.md b/src/Security/beta/examples/Publish-MgBetaSecurityCaseEdiscoveryCaseCustodian.md index 09530a7441..8c439c4585 100644 --- a/src/Security/beta/examples/Publish-MgBetaSecurityCaseEdiscoveryCaseCustodian.md +++ b/src/Security/beta/examples/Publish-MgBetaSecurityCaseEdiscoveryCaseCustodian.md @@ -1,7 +1,11 @@ -### Example 1: Using the Publish-MgBetaSecurityCaseEdiscoveryCaseCustodian Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + Publish-MgBetaSecurityCaseEdiscoveryCaseCustodian -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId + ``` This example shows how to use the Publish-MgBetaSecurityCaseEdiscoveryCaseCustodian Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Publish-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource.md b/src/Security/beta/examples/Publish-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource.md index 4cff4fab28..5315240b73 100644 --- a/src/Security/beta/examples/Publish-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource.md +++ b/src/Security/beta/examples/Publish-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource.md @@ -1,7 +1,11 @@ -### Example 1: Using the Publish-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + Publish-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId + ``` This example shows how to use the Publish-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityAction.md b/src/Security/beta/examples/Remove-MgBetaSecurityAction.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityAction.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityAction.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityAttackSimulation.md b/src/Security/beta/examples/Remove-MgBetaSecurityAttackSimulation.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityAttackSimulation.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityAttackSimulation.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityAttackSimulationAutomation.md b/src/Security/beta/examples/Remove-MgBetaSecurityAttackSimulationAutomation.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityAttackSimulationAutomation.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityAttackSimulationAutomation.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityAttackSimulationAutomationRun.md b/src/Security/beta/examples/Remove-MgBetaSecurityAttackSimulationAutomationRun.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityAttackSimulationAutomationRun.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityAttackSimulationAutomationRun.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityCase.md b/src/Security/beta/examples/Remove-MgBetaSecurityCase.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityCase.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityCase.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseCustodian.md b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseCustodian.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseCustodian.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseCustodian.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseCustodianHold.md b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseCustodianHold.md index 817dfc0f18..47a4076bf5 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseCustodianHold.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseCustodianHold.md @@ -1,7 +1,11 @@ -### Example 1: Using the Remove-MgBetaSecurityCaseEdiscoveryCaseCustodianHold Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + Remove-MgBetaSecurityCaseEdiscoveryCaseCustodianHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId + ``` This example shows how to use the Remove-MgBetaSecurityCaseEdiscoveryCaseCustodianHold Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSource.md b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSource.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseCustodianUserSource.md b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseCustodianUserSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseCustodianUserSource.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseCustodianUserSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseLegalHold.md b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseLegalHold.md index bdc812867e..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseLegalHold.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseLegalHold.md @@ -1,7 +0,0 @@ -### Example 1: Using the Remove-MgBetaSecurityCaseEdiscoveryCaseLegalHold Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Security -Remove-MgBetaSecurityCaseEdiscoveryCaseLegalHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryHoldPolicyId $ediscoveryHoldPolicyId -``` -This example shows how to use the Remove-MgBetaSecurityCaseEdiscoveryCaseLegalHold Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource.md b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource.md b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource.md b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md index 296b2641d4..496e741b60 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md @@ -1,14 +1,11 @@ -### Example 1: Using the Remove-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + Remove-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId + ``` This example shows how to use the Remove-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Remove-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Security -Remove-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId -``` -This example shows how to use the Remove-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseOperation.md b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseOperation.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseOperation.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseOperation.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseReviewSet.md b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseReviewSet.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseReviewSet.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseReviewSet.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile.md b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseSearchAdditionalSource.md b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseSearchAdditionalSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseSearchAdditionalSource.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseSearchAdditionalSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseSetting.md b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseSetting.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseSetting.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityCaseEdiscoveryCaseSetting.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityCloudAppSecurityProfile.md b/src/Security/beta/examples/Remove-MgBetaSecurityCloudAppSecurityProfile.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityCloudAppSecurityProfile.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityCloudAppSecurityProfile.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityDomainSecurityProfile.md b/src/Security/beta/examples/Remove-MgBetaSecurityDomainSecurityProfile.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityDomainSecurityProfile.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityDomainSecurityProfile.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityFileSecurityProfile.md b/src/Security/beta/examples/Remove-MgBetaSecurityFileSecurityProfile.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityFileSecurityProfile.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityFileSecurityProfile.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityHostSecurityProfile.md b/src/Security/beta/examples/Remove-MgBetaSecurityHostSecurityProfile.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityHostSecurityProfile.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityHostSecurityProfile.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityIPSecurityProfile.md b/src/Security/beta/examples/Remove-MgBetaSecurityIPSecurityProfile.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityIPSecurityProfile.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityIPSecurityProfile.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityIncident.md b/src/Security/beta/examples/Remove-MgBetaSecurityIncident.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityIncident.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityIncident.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityInformationProtection.md b/src/Security/beta/examples/Remove-MgBetaSecurityInformationProtection.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityInformationProtection.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityInformationProtection.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityInformationProtectionLabelPolicySetting.md b/src/Security/beta/examples/Remove-MgBetaSecurityInformationProtectionLabelPolicySetting.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityInformationProtectionLabelPolicySetting.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityInformationProtectionLabelPolicySetting.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityInformationProtectionSensitivityLabel.md b/src/Security/beta/examples/Remove-MgBetaSecurityInformationProtectionSensitivityLabel.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityInformationProtectionSensitivityLabel.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityInformationProtectionSensitivityLabel.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityInformationProtectionSensitivityLabelParent.md b/src/Security/beta/examples/Remove-MgBetaSecurityInformationProtectionSensitivityLabelParent.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityInformationProtectionSensitivityLabelParent.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityInformationProtectionSensitivityLabelParent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityLabel.md b/src/Security/beta/examples/Remove-MgBetaSecurityLabel.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityLabel.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityLabel.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityLabelRetentionLabelDispositionReviewStage.md b/src/Security/beta/examples/Remove-MgBetaSecurityLabelRetentionLabelDispositionReviewStage.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityLabelRetentionLabelDispositionReviewStage.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityLabelRetentionLabelDispositionReviewStage.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityProviderTenantSetting.md b/src/Security/beta/examples/Remove-MgBetaSecurityProviderTenantSetting.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityProviderTenantSetting.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityProviderTenantSetting.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecuritySecureScore.md b/src/Security/beta/examples/Remove-MgBetaSecuritySecureScore.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecuritySecureScore.md +++ b/src/Security/beta/examples/Remove-MgBetaSecuritySecureScore.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/beta/examples/Remove-MgBetaSecuritySecureScoreControlProfile.md b/src/Security/beta/examples/Remove-MgBetaSecuritySecureScoreControlProfile.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecuritySecureScoreControlProfile.md +++ b/src/Security/beta/examples/Remove-MgBetaSecuritySecureScoreControlProfile.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/beta/examples/Remove-MgBetaSecuritySubjectRightsRequest.md b/src/Security/beta/examples/Remove-MgBetaSecuritySubjectRightsRequest.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecuritySubjectRightsRequest.md +++ b/src/Security/beta/examples/Remove-MgBetaSecuritySubjectRightsRequest.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecuritySubjectRightsRequestNote.md b/src/Security/beta/examples/Remove-MgBetaSecuritySubjectRightsRequestNote.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecuritySubjectRightsRequestNote.md +++ b/src/Security/beta/examples/Remove-MgBetaSecuritySubjectRightsRequestNote.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityThreatSubmission.md b/src/Security/beta/examples/Remove-MgBetaSecurityThreatSubmission.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityThreatSubmission.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityThreatSubmission.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityThreatSubmissionEmailThreat.md b/src/Security/beta/examples/Remove-MgBetaSecurityThreatSubmissionEmailThreat.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityThreatSubmissionEmailThreat.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityThreatSubmissionEmailThreat.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy.md b/src/Security/beta/examples/Remove-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityThreatSubmissionFileThreat.md b/src/Security/beta/examples/Remove-MgBetaSecurityThreatSubmissionFileThreat.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityThreatSubmissionFileThreat.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityThreatSubmissionFileThreat.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityThreatSubmissionUrlThreat.md b/src/Security/beta/examples/Remove-MgBetaSecurityThreatSubmissionUrlThreat.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityThreatSubmissionUrlThreat.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityThreatSubmissionUrlThreat.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityTiIndicator.md b/src/Security/beta/examples/Remove-MgBetaSecurityTiIndicator.md index 705ab39e96..b5c97bc810 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityTiIndicator.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityTiIndicator.md @@ -1,7 +1,11 @@ -### Example 1: Using the Remove-MgBetaSecurityTiIndicator Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + Remove-MgBetaSecurityTiIndicator -TiIndicatorId $tiIndicatorId + ``` This example shows how to use the Remove-MgBetaSecurityTiIndicator Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityTiIndicatorByExternalId.md b/src/Security/beta/examples/Remove-MgBetaSecurityTiIndicatorByExternalId.md index 4ddcbea820..b07e752a8d 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityTiIndicatorByExternalId.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityTiIndicatorByExternalId.md @@ -1,13 +1,18 @@ -### Example 1: Using the Remove-MgBetaSecurityTiIndicatorByExternalId Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + $params = @{ - Value = @( - "externalId-value1" - "externalId-value2" - ) + value = @( + "externalId-value1" +"externalId-value2" +) } + Remove-MgBetaSecurityTiIndicatorByExternalId -BodyParameter $params + ``` This example shows how to use the Remove-MgBetaSecurityTiIndicatorByExternalId Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityTiIndicatorMultiple.md b/src/Security/beta/examples/Remove-MgBetaSecurityTiIndicatorMultiple.md index 0fd08bbdce..6ee9b11d36 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityTiIndicatorMultiple.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityTiIndicatorMultiple.md @@ -1,13 +1,18 @@ -### Example 1: Using the Remove-MgBetaSecurityTiIndicatorMultiple Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + $params = @{ - Value = @( - "id-value1" - "id-value2" - ) + value = @( + "id-value1" +"id-value2" +) } + Remove-MgBetaSecurityTiIndicatorMultiple -BodyParameter $params + ``` This example shows how to use the Remove-MgBetaSecurityTiIndicatorMultiple Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityTrigger.md b/src/Security/beta/examples/Remove-MgBetaSecurityTrigger.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityTrigger.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityTrigger.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityTriggerType.md b/src/Security/beta/examples/Remove-MgBetaSecurityTriggerType.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityTriggerType.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityTriggerType.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityUserSecurityProfile.md b/src/Security/beta/examples/Remove-MgBetaSecurityUserSecurityProfile.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityUserSecurityProfile.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityUserSecurityProfile.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Reset-MgBetaSecurityCaseEdiscoveryCaseSettingToDefault.md b/src/Security/beta/examples/Reset-MgBetaSecurityCaseEdiscoveryCaseSettingToDefault.md index 273dddd986..529dd9867e 100644 --- a/src/Security/beta/examples/Reset-MgBetaSecurityCaseEdiscoveryCaseSettingToDefault.md +++ b/src/Security/beta/examples/Reset-MgBetaSecurityCaseEdiscoveryCaseSettingToDefault.md @@ -1,14 +1,11 @@ -### Example 1: Using the Reset-MgBetaSecurityCaseEdiscoveryCaseSettingToDefault Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + Reset-MgBetaSecurityCaseEdiscoveryCaseSettingToDefault -EdiscoveryCaseId $ediscoveryCaseId + ``` This example shows how to use the Reset-MgBetaSecurityCaseEdiscoveryCaseSettingToDefault Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Reset-MgBetaSecurityCaseEdiscoveryCaseSettingToDefault Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Security -Reset-MgBetaSecurityCaseEdiscoveryCaseSettingToDefault -EdiscoveryCaseId $ediscoveryCaseId -``` -This example shows how to use the Reset-MgBetaSecurityCaseEdiscoveryCaseSettingToDefault Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Set-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileContent.md b/src/Security/beta/examples/Set-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Set-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileContent.md +++ b/src/Security/beta/examples/Set-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Set-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileExtractedTextContent.md b/src/Security/beta/examples/Set-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileExtractedTextContent.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Set-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileExtractedTextContent.md +++ b/src/Security/beta/examples/Set-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileExtractedTextContent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Start-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery.md b/src/Security/beta/examples/Start-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery.md index 818a93c2e1..e69de29bb2 100644 --- a/src/Security/beta/examples/Start-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery.md +++ b/src/Security/beta/examples/Start-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery.md @@ -1,7 +0,0 @@ -### Example 1: Using the Start-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Security -Start-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryReviewSetId $ediscoveryReviewSetId -EdiscoveryReviewSetQueryId $ediscoveryReviewSetQueryId -``` -This example shows how to use the Start-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/beta/examples/Start-MgBetaSecurityHuntingQuery.md b/src/Security/beta/examples/Start-MgBetaSecurityHuntingQuery.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Start-MgBetaSecurityHuntingQuery.md +++ b/src/Security/beta/examples/Start-MgBetaSecurityHuntingQuery.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Stop-MgBetaSecurityAction.md b/src/Security/beta/examples/Stop-MgBetaSecurityAction.md index 203c2762e8..ddbf41c02a 100644 --- a/src/Security/beta/examples/Stop-MgBetaSecurityAction.md +++ b/src/Security/beta/examples/Stop-MgBetaSecurityAction.md @@ -1,7 +1,11 @@ -### Example 1: Using the Stop-MgBetaSecurityAction Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + Stop-MgBetaSecurityAction -SecurityActionId $securityActionId + ``` This example shows how to use the Stop-MgBetaSecurityAction Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Submit-MgBetaSecurityTiIndicator.md b/src/Security/beta/examples/Submit-MgBetaSecurityTiIndicator.md index 7ee7bbd9f5..33e14a7233 100644 --- a/src/Security/beta/examples/Submit-MgBetaSecurityTiIndicator.md +++ b/src/Security/beta/examples/Submit-MgBetaSecurityTiIndicator.md @@ -1,51 +1,56 @@ -### Example 1: Using the Submit-MgBetaSecurityTiIndicator Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + $params = @{ - Value = @( + value = @( @{ - ActivityGroupNames = @( + 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 = @( + 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 = @( + malwareFamilyNames = @( ) - Severity = 0 - Tags = @( + severity = 0 + tags = @( ) - TargetProduct = "Azure Sentinel" - ThreatType = "WatchList" - TlpLevel = "green" + targetProduct = "Azure Sentinel" + threatType = "WatchList" + tlpLevel = "green" } @{ - ActivityGroupNames = @( + 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 = @( + 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 = @( + malwareFamilyNames = @( ) - Severity = 0 - Tags = @( + severity = 0 + tags = @( ) - TargetProduct = "Azure Sentinel" - ThreatType = "WatchList" - TlpLevel = "green" + targetProduct = "Azure Sentinel" + threatType = "WatchList" + tlpLevel = "green" } ) } + Submit-MgBetaSecurityTiIndicator -BodyParameter $params + ``` This example shows how to use the Submit-MgBetaSecurityTiIndicator Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Test-MgBetaSecurityInformationProtectionSensitivityLabelApplication.md b/src/Security/beta/examples/Test-MgBetaSecurityInformationProtectionSensitivityLabelApplication.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Test-MgBetaSecurityInformationProtectionSensitivityLabelApplication.md +++ b/src/Security/beta/examples/Test-MgBetaSecurityInformationProtectionSensitivityLabelApplication.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Test-MgBetaSecurityInformationProtectionSensitivityLabelClassificationResult.md b/src/Security/beta/examples/Test-MgBetaSecurityInformationProtectionSensitivityLabelClassificationResult.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Test-MgBetaSecurityInformationProtectionSensitivityLabelClassificationResult.md +++ b/src/Security/beta/examples/Test-MgBetaSecurityInformationProtectionSensitivityLabelClassificationResult.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Test-MgBetaSecurityInformationProtectionSensitivityLabelRemoval.md b/src/Security/beta/examples/Test-MgBetaSecurityInformationProtectionSensitivityLabelRemoval.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Test-MgBetaSecurityInformationProtectionSensitivityLabelRemoval.md +++ b/src/Security/beta/examples/Test-MgBetaSecurityInformationProtectionSensitivityLabelRemoval.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityAction.md b/src/Security/beta/examples/Update-MgBetaSecurityAction.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityAction.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityAction.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityAlertMultiple.md b/src/Security/beta/examples/Update-MgBetaSecurityAlertMultiple.md index 993aa4f28f..573b8236f7 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityAlertMultiple.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityAlertMultiple.md @@ -1,32 +1,37 @@ -### Example 1: Using the Update-MgBetaSecurityAlertMultiple Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + $params = @{ - Value = @( + 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" - } + 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-MgBetaSecurityAlertMultiple -BodyParameter $params + ``` This example shows how to use the Update-MgBetaSecurityAlertMultiple Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Update-MgBetaSecurityAttackSimulationAutomation.md b/src/Security/beta/examples/Update-MgBetaSecurityAttackSimulationAutomation.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityAttackSimulationAutomation.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityAttackSimulationAutomation.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/beta/examples/Update-MgBetaSecurityAttackSimulationAutomationRun.md b/src/Security/beta/examples/Update-MgBetaSecurityAttackSimulationAutomationRun.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityAttackSimulationAutomationRun.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityAttackSimulationAutomationRun.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityCase.md b/src/Security/beta/examples/Update-MgBetaSecurityCase.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityCase.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityCase.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseCustodian.md b/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseCustodian.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseCustodian.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseCustodian.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseCustodianIndex.md b/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseCustodianIndex.md index 5ff7d6c238..0b9115e45e 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseCustodianIndex.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseCustodianIndex.md @@ -1,7 +1,11 @@ -### Example 1: Using the Update-MgBetaSecurityCaseEdiscoveryCaseCustodianIndex Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + Update-MgBetaSecurityCaseEdiscoveryCaseCustodianIndex -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryCustodianId $ediscoveryCustodianId + ``` This example shows how to use the Update-MgBetaSecurityCaseEdiscoveryCaseCustodianIndex Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSource.md b/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSource.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md b/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseCustodianUserSource.md b/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseCustodianUserSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseCustodianUserSource.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseCustodianUserSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseLegalHold.md b/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseLegalHold.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseLegalHold.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseLegalHold.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource.md b/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource.md b/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource.md b/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex.md b/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex.md index 2261a8fe57..a1650966f8 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex.md @@ -1,7 +1,11 @@ -### Example 1: Using the Update-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + Update-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex -EdiscoveryCaseId $ediscoveryCaseId -EdiscoveryNoncustodialDataSourceId $ediscoveryNoncustodialDataSourceId + ``` This example shows how to use the Update-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseOperation.md b/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseOperation.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseOperation.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseOperation.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseReviewSet.md b/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseReviewSet.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseReviewSet.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseReviewSet.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile.md b/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseSearchAdditionalSource.md b/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseSearchAdditionalSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseSearchAdditionalSource.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityCaseEdiscoveryCaseSearchAdditionalSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityCloudAppSecurityProfile.md b/src/Security/beta/examples/Update-MgBetaSecurityCloudAppSecurityProfile.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityCloudAppSecurityProfile.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityCloudAppSecurityProfile.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityDomainSecurityProfile.md b/src/Security/beta/examples/Update-MgBetaSecurityDomainSecurityProfile.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityDomainSecurityProfile.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityDomainSecurityProfile.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityFileSecurityProfile.md b/src/Security/beta/examples/Update-MgBetaSecurityFileSecurityProfile.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityFileSecurityProfile.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityFileSecurityProfile.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityHostSecurityProfile.md b/src/Security/beta/examples/Update-MgBetaSecurityHostSecurityProfile.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityHostSecurityProfile.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityHostSecurityProfile.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityIPSecurityProfile.md b/src/Security/beta/examples/Update-MgBetaSecurityIPSecurityProfile.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityIPSecurityProfile.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityIPSecurityProfile.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityInformationProtection.md b/src/Security/beta/examples/Update-MgBetaSecurityInformationProtection.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityInformationProtection.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityInformationProtection.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityInformationProtectionLabelPolicySetting.md b/src/Security/beta/examples/Update-MgBetaSecurityInformationProtectionLabelPolicySetting.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityInformationProtectionLabelPolicySetting.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityInformationProtectionLabelPolicySetting.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityInformationProtectionSensitivityLabel.md b/src/Security/beta/examples/Update-MgBetaSecurityInformationProtectionSensitivityLabel.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityInformationProtectionSensitivityLabel.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityInformationProtectionSensitivityLabel.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityInformationProtectionSensitivityLabelParent.md b/src/Security/beta/examples/Update-MgBetaSecurityInformationProtectionSensitivityLabelParent.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityInformationProtectionSensitivityLabelParent.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityInformationProtectionSensitivityLabelParent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityLabel.md b/src/Security/beta/examples/Update-MgBetaSecurityLabel.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityLabel.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityLabel.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityLabelRetentionLabel.md b/src/Security/beta/examples/Update-MgBetaSecurityLabelRetentionLabel.md index d542bf536c..c9c4aad847 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityLabelRetentionLabel.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityLabelRetentionLabel.md @@ -7,12 +7,9 @@ Import-Module Microsoft.Graph.Beta.Security $params = @{ "@odata.type" = "#microsoft.graph.security.retentionLabel" retentionDuration = @{ - "@odata.type" = "microsoft.graph.security.retentionDuration" + "@odata.type" = "microsoft.graph.security.retentionDurationInDays" + days = } - descriptionForAdmins = "String" - descriptionForUsers = "String" - labelToBeApplied = "String" - defaultRecordBehavior = "String" } Update-MgBetaSecurityLabelRetentionLabel -RetentionLabelId $retentionLabelId -BodyParameter $params diff --git a/src/Security/beta/examples/Update-MgBetaSecurityLabelRetentionLabelDispositionReviewStage.md b/src/Security/beta/examples/Update-MgBetaSecurityLabelRetentionLabelDispositionReviewStage.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityLabelRetentionLabelDispositionReviewStage.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityLabelRetentionLabelDispositionReviewStage.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityProviderTenantSetting.md b/src/Security/beta/examples/Update-MgBetaSecurityProviderTenantSetting.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityProviderTenantSetting.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityProviderTenantSetting.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecuritySecureScore.md b/src/Security/beta/examples/Update-MgBetaSecuritySecureScore.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecuritySecureScore.md +++ b/src/Security/beta/examples/Update-MgBetaSecuritySecureScore.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/beta/examples/Update-MgBetaSecuritySecureScoreControlProfile.md b/src/Security/beta/examples/Update-MgBetaSecuritySecureScoreControlProfile.md index ba2daedeff..82a50fc0f2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecuritySecureScoreControlProfile.md +++ b/src/Security/beta/examples/Update-MgBetaSecuritySecureScoreControlProfile.md @@ -1,46 +1,15 @@ -### Example 1: Request without Prefer header +### Example 1: Code snippet ```powershell -Import-Module Microsoft.Graph.Beta.Security - -$params = @{ - assignedTo = "" - comment = "control is reviewed" - state = "Reviewed" - vendorInformation = @{ - provider = "SecureScore" - providerVersion = $null - subProvider = $null - vendor = "Microsoft" - } -} -Update-MgBetaSecuritySecureScoreControlProfile -SecureScoreControlProfileId $secureScoreControlProfileId -BodyParameter $params -``` -This example shows how to use the Update-MgBetaSecuritySecureScoreControlProfile Cmdlet. - -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - -### Example 2: Request with Prefer header - -```powershell Import-Module Microsoft.Graph.Beta.Security $params = @{ - assignedTo = "" - comment = "control is reviewed" - state = "Reviewed" - vendorInformation = @{ - provider = "SecureScore" - providerVersion = $null - subProvider = $null - vendor = "Microsoft" - } + controlStateUpdates = "controlStateUpdates-value" } Update-MgBetaSecuritySecureScoreControlProfile -SecureScoreControlProfileId $secureScoreControlProfileId -BodyParameter $params + ``` This example shows how to use the Update-MgBetaSecuritySecureScoreControlProfile Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). - diff --git a/src/Security/beta/examples/Update-MgBetaSecuritySubjectRightsRequest.md b/src/Security/beta/examples/Update-MgBetaSecuritySubjectRightsRequest.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecuritySubjectRightsRequest.md +++ b/src/Security/beta/examples/Update-MgBetaSecuritySubjectRightsRequest.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecuritySubjectRightsRequestNote.md b/src/Security/beta/examples/Update-MgBetaSecuritySubjectRightsRequestNote.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecuritySubjectRightsRequestNote.md +++ b/src/Security/beta/examples/Update-MgBetaSecuritySubjectRightsRequestNote.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityThreatSubmission.md b/src/Security/beta/examples/Update-MgBetaSecurityThreatSubmission.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityThreatSubmission.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityThreatSubmission.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityThreatSubmissionEmailThreat.md b/src/Security/beta/examples/Update-MgBetaSecurityThreatSubmissionEmailThreat.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityThreatSubmissionEmailThreat.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityThreatSubmissionEmailThreat.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy.md b/src/Security/beta/examples/Update-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy.md index 167003c5bb..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy.md @@ -1,10 +0,0 @@ -### Example 1: Using the Update-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Security -$params = @{ - IsReportToMicrosoftEnabled = $false -} -Update-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy -EmailThreatSubmissionPolicyId $emailThreatSubmissionPolicyId -BodyParameter $params -``` -This example shows how to use the Update-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Security/beta/examples/Update-MgBetaSecurityThreatSubmissionFileThreat.md b/src/Security/beta/examples/Update-MgBetaSecurityThreatSubmissionFileThreat.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityThreatSubmissionFileThreat.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityThreatSubmissionFileThreat.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityThreatSubmissionUrlThreat.md b/src/Security/beta/examples/Update-MgBetaSecurityThreatSubmissionUrlThreat.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityThreatSubmissionUrlThreat.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityThreatSubmissionUrlThreat.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityTiIndicator.md b/src/Security/beta/examples/Update-MgBetaSecurityTiIndicator.md index 19b5711a58..4979803910 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityTiIndicator.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityTiIndicator.md @@ -1,22 +1,32 @@ -### Example 1: Using the Update-MgBetaSecurityTiIndicator Cmdlet +### Example 1: Request without Prefer header + ```powershell + Import-Module Microsoft.Graph.Beta.Security + $params = @{ - Description = "description-updated" + description = "description-updated" } + Update-MgBetaSecurityTiIndicator -TiIndicatorId $tiIndicatorId -BodyParameter $params + ``` -This example shows how to use the Update-MgBetaSecurityTiIndicator Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Update-MgBetaSecurityTiIndicator Cmdlet +This example will request without prefer header + +### Example 2: Request with Prefer header + ```powershell + Import-Module Microsoft.Graph.Beta.Security + $params = @{ - AdditionalInformation = "additionalInformation-after-update" - Confidence = 42 - Description = "description-after-update" + additionalInformation = "additionalInformation-after-update" + confidence = 42 + description = "description-after-update" } + Update-MgBetaSecurityTiIndicator -TiIndicatorId $tiIndicatorId -BodyParameter $params + ``` -This example shows how to use the Update-MgBetaSecurityTiIndicator Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +This example will request with prefer header + diff --git a/src/Security/beta/examples/Update-MgBetaSecurityTiIndicatorMultiple.md b/src/Security/beta/examples/Update-MgBetaSecurityTiIndicatorMultiple.md index d0f25a8791..2a832787a7 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityTiIndicatorMultiple.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityTiIndicatorMultiple.md @@ -1,19 +1,24 @@ -### Example 1: Using the Update-MgBetaSecurityTiIndicatorMultiple Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + $params = @{ - Value = @( + value = @( @{ - Id = "c6fb948b-89c5-3bba-a2cd-a9d9a1e430e4" - AdditionalInformation = "mytest" + id = "c6fb948b-89c5-3bba-a2cd-a9d9a1e430e4" + additionalInformation = "mytest" } @{ - Id = "e58c072b-c9bb-a5c4-34ce-eb69af44fb1e" - AdditionalInformation = "test again" + id = "e58c072b-c9bb-a5c4-34ce-eb69af44fb1e" + additionalInformation = "test again" } ) } + Update-MgBetaSecurityTiIndicatorMultiple -BodyParameter $params + ``` This example shows how to use the Update-MgBetaSecurityTiIndicatorMultiple Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Update-MgBetaSecurityTrigger.md b/src/Security/beta/examples/Update-MgBetaSecurityTrigger.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityTrigger.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityTrigger.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityTriggerRetentionEvent.md b/src/Security/beta/examples/Update-MgBetaSecurityTriggerRetentionEvent.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityTriggerRetentionEvent.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityTriggerRetentionEvent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityTriggerType.md b/src/Security/beta/examples/Update-MgBetaSecurityTriggerType.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityTriggerType.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityTriggerType.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityTriggerTypeRetentionEventType.md b/src/Security/beta/examples/Update-MgBetaSecurityTriggerTypeRetentionEventType.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityTriggerTypeRetentionEventType.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityTriggerTypeRetentionEventType.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/beta/examples/Update-MgBetaSecurityUserSecurityProfile.md b/src/Security/beta/examples/Update-MgBetaSecurityUserSecurityProfile.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityUserSecurityProfile.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityUserSecurityProfile.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/v1.0/examples/Add-MgSecurityCaseEdiscoveryCaseCustodianHold.md b/src/Security/v1.0/examples/Add-MgSecurityCaseEdiscoveryCaseCustodianHold.md index 1c44fc280a..a3fbdd2fef 100644 --- a/src/Security/v1.0/examples/Add-MgSecurityCaseEdiscoveryCaseCustodianHold.md +++ b/src/Security/v1.0/examples/Add-MgSecurityCaseEdiscoveryCaseCustodianHold.md @@ -1,14 +1,11 @@ -### Example 1: Using the Add-MgSecurityCaseEdiscoveryCaseCustodianHold Cmdlet +### Example 1: Code snippet + ```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). -### 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/v1.0/examples/Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md b/src/Security/v1.0/examples/Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md index e3baa654bb..88aee15272 100644 --- a/src/Security/v1.0/examples/Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md +++ b/src/Security/v1.0/examples/Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md @@ -1,14 +1,11 @@ -### Example 1: Using the Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold Cmdlet +### Example 1: Code snippet + ```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). -### 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/v1.0/examples/Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag.md b/src/Security/v1.0/examples/Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag.md index b6e1f76e52..4aef37dfed 100644 --- a/src/Security/v1.0/examples/Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag.md +++ b/src/Security/v1.0/examples/Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag.md @@ -1,14 +1,19 @@ -### Example 1: Using the Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Security + $params = @{ - TagsToAdd = @( + tagsToAdd = @( @{ - Id = "d3d99dc704a74801b792b3e1e722aa0d" + id = "d3d99dc704a74801b792b3e1e722aa0d" } ) } + 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/v1.0/examples/Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet.md b/src/Security/v1.0/examples/Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet.md index aa7cfa45bc..e79e271d87 100644 --- a/src/Security/v1.0/examples/Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet.md +++ b/src/Security/v1.0/examples/Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet.md @@ -1,13 +1,18 @@ -### Example 1: Using the Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Security + $params = @{ - Search = @{ - Id = "c17e91d6-6bc0-4ecb-b388-269ea3d4ffb7" + search = @{ + id = "c17e91d6-6bc0-4ecb-b388-269ea3d4ffb7" } - AdditionalDataOptions = "linkedFiles" + additionalDataOptions = "linkedFiles" } + 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/v1.0/examples/Close-MgSecurityCaseEdiscoveryCase.md b/src/Security/v1.0/examples/Close-MgSecurityCaseEdiscoveryCase.md index 5ffb1c9ec9..691db480a3 100644 --- a/src/Security/v1.0/examples/Close-MgSecurityCaseEdiscoveryCase.md +++ b/src/Security/v1.0/examples/Close-MgSecurityCaseEdiscoveryCase.md @@ -1,7 +1,11 @@ -### Example 1: Using the Close-MgSecurityCaseEdiscoveryCase Cmdlet +### Example 1: Code snippet + ```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/v1.0/examples/Get-MgSecurityCase.md b/src/Security/v1.0/examples/Get-MgSecurityCase.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Get-MgSecurityCase.md +++ b/src/Security/v1.0/examples/Get-MgSecurityCase.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/v1.0/examples/Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSourceSite.md b/src/Security/v1.0/examples/Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSourceSite.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSourceSite.md +++ b/src/Security/v1.0/examples/Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSourceSite.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/v1.0/examples/Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroup.md b/src/Security/v1.0/examples/Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroup.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroup.md +++ b/src/Security/v1.0/examples/Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroup.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/v1.0/examples/Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceLastIndexOperation.md b/src/Security/v1.0/examples/Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceLastIndexOperation.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceLastIndexOperation.md +++ b/src/Security/v1.0/examples/Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceLastIndexOperation.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/v1.0/examples/Get-MgSecurityCaseEdiscoveryCaseSearchAddToReviewSetOperation.md b/src/Security/v1.0/examples/Get-MgSecurityCaseEdiscoveryCaseSearchAddToReviewSetOperation.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Get-MgSecurityCaseEdiscoveryCaseSearchAddToReviewSetOperation.md +++ b/src/Security/v1.0/examples/Get-MgSecurityCaseEdiscoveryCaseSearchAddToReviewSetOperation.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/v1.0/examples/Get-MgSecurityCaseEdiscoveryCaseTagParent.md b/src/Security/v1.0/examples/Get-MgSecurityCaseEdiscoveryCaseTagParent.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Get-MgSecurityCaseEdiscoveryCaseTagParent.md +++ b/src/Security/v1.0/examples/Get-MgSecurityCaseEdiscoveryCaseTagParent.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/v1.0/examples/Initialize-MgSecurityCaseEdiscoveryCaseCustodian.md b/src/Security/v1.0/examples/Initialize-MgSecurityCaseEdiscoveryCaseCustodian.md index ba8abb2fd6..411a4c8824 100644 --- a/src/Security/v1.0/examples/Initialize-MgSecurityCaseEdiscoveryCaseCustodian.md +++ b/src/Security/v1.0/examples/Initialize-MgSecurityCaseEdiscoveryCaseCustodian.md @@ -1,7 +1,11 @@ -### Example 1: Using the Initialize-MgSecurityCaseEdiscoveryCaseCustodian Cmdlet +### Example 1: Code snippet + ```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/v1.0/examples/Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy.md b/src/Security/v1.0/examples/Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy.md index 0507d21607..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy.md +++ b/src/Security/v1.0/examples/Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy.md @@ -1,7 +0,0 @@ -### 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/v1.0/examples/Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics.md b/src/Security/v1.0/examples/Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics.md index 13dbba9cde..e4624aadd9 100644 --- a/src/Security/v1.0/examples/Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics.md +++ b/src/Security/v1.0/examples/Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics.md @@ -1,7 +1,11 @@ -### Example 1: Using the Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics Cmdlet +### Example 1: Code snippet + ```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/v1.0/examples/Invoke-MgReopenSecurityCaseEdiscoveryCase.md b/src/Security/v1.0/examples/Invoke-MgReopenSecurityCaseEdiscoveryCase.md index 2e23f48251..0a667fdb0f 100644 --- a/src/Security/v1.0/examples/Invoke-MgReopenSecurityCaseEdiscoveryCase.md +++ b/src/Security/v1.0/examples/Invoke-MgReopenSecurityCaseEdiscoveryCase.md @@ -1,7 +1,11 @@ -### Example 1: Using the Invoke-MgReopenSecurityCaseEdiscoveryCase Cmdlet +### Example 1: Code snippet + ```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/v1.0/examples/New-MgSecurityAttackSimulationAutomation.md b/src/Security/v1.0/examples/New-MgSecurityAttackSimulationAutomation.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/v1.0/examples/New-MgSecurityAttackSimulationAutomation.md +++ b/src/Security/v1.0/examples/New-MgSecurityAttackSimulationAutomation.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/v1.0/examples/New-MgSecurityAttackSimulationAutomationRun.md b/src/Security/v1.0/examples/New-MgSecurityAttackSimulationAutomationRun.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/v1.0/examples/New-MgSecurityAttackSimulationAutomationRun.md +++ b/src/Security/v1.0/examples/New-MgSecurityAttackSimulationAutomationRun.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/v1.0/examples/New-MgSecurityCaseEdiscoveryCaseOperation.md b/src/Security/v1.0/examples/New-MgSecurityCaseEdiscoveryCaseOperation.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/v1.0/examples/New-MgSecurityCaseEdiscoveryCaseOperation.md +++ b/src/Security/v1.0/examples/New-MgSecurityCaseEdiscoveryCaseOperation.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/v1.0/examples/Publish-MgSecurityCaseEdiscoveryCaseCustodian.md b/src/Security/v1.0/examples/Publish-MgSecurityCaseEdiscoveryCaseCustodian.md index db8b130356..92c2e3b6d0 100644 --- a/src/Security/v1.0/examples/Publish-MgSecurityCaseEdiscoveryCaseCustodian.md +++ b/src/Security/v1.0/examples/Publish-MgSecurityCaseEdiscoveryCaseCustodian.md @@ -1,7 +1,11 @@ -### Example 1: Using the Publish-MgSecurityCaseEdiscoveryCaseCustodian Cmdlet +### Example 1: Code snippet + ```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/v1.0/examples/Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md b/src/Security/v1.0/examples/Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md index cb8353eab9..334b37446b 100644 --- a/src/Security/v1.0/examples/Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md +++ b/src/Security/v1.0/examples/Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md @@ -1,7 +1,11 @@ -### Example 1: Using the Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource Cmdlet +### Example 1: Code snippet + ```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/v1.0/examples/Remove-MgSecurityAttackSimulation.md b/src/Security/v1.0/examples/Remove-MgSecurityAttackSimulation.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Remove-MgSecurityAttackSimulation.md +++ b/src/Security/v1.0/examples/Remove-MgSecurityAttackSimulation.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/v1.0/examples/Remove-MgSecurityAttackSimulationAutomation.md b/src/Security/v1.0/examples/Remove-MgSecurityAttackSimulationAutomation.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Remove-MgSecurityAttackSimulationAutomation.md +++ b/src/Security/v1.0/examples/Remove-MgSecurityAttackSimulationAutomation.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/v1.0/examples/Remove-MgSecurityAttackSimulationAutomationRun.md b/src/Security/v1.0/examples/Remove-MgSecurityAttackSimulationAutomationRun.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Remove-MgSecurityAttackSimulationAutomationRun.md +++ b/src/Security/v1.0/examples/Remove-MgSecurityAttackSimulationAutomationRun.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/v1.0/examples/Remove-MgSecurityCase.md b/src/Security/v1.0/examples/Remove-MgSecurityCase.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Remove-MgSecurityCase.md +++ b/src/Security/v1.0/examples/Remove-MgSecurityCase.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseCustodian.md b/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseCustodian.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseCustodian.md +++ b/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseCustodian.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseCustodianHold.md b/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseCustodianHold.md index ef2a5bd031..e69547e753 100644 --- a/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseCustodianHold.md +++ b/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseCustodianHold.md @@ -1,7 +1,11 @@ -### Example 1: Using the Remove-MgSecurityCaseEdiscoveryCaseCustodianHold Cmdlet +### Example 1: Code snippet + ```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/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md b/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md +++ b/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md b/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md +++ b/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseCustodianUserSource.md b/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseCustodianUserSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseCustodianUserSource.md +++ b/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseCustodianUserSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md b/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md +++ b/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md b/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md index ca20510ea8..42171f7c17 100644 --- a/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md +++ b/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold.md @@ -1,14 +1,11 @@ -### Example 1: Using the Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold Cmdlet +### Example 1: Code snippet + ```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). -### 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/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseOperation.md b/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseOperation.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseOperation.md +++ b/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseOperation.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseReviewSet.md b/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseReviewSet.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseReviewSet.md +++ b/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseReviewSet.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource.md b/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource.md +++ b/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseSetting.md b/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseSetting.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseSetting.md +++ b/src/Security/v1.0/examples/Remove-MgSecurityCaseEdiscoveryCaseSetting.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/v1.0/examples/Remove-MgSecuritySecureScore.md b/src/Security/v1.0/examples/Remove-MgSecuritySecureScore.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Remove-MgSecuritySecureScore.md +++ b/src/Security/v1.0/examples/Remove-MgSecuritySecureScore.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/v1.0/examples/Remove-MgSecuritySecureScoreControlProfile.md b/src/Security/v1.0/examples/Remove-MgSecuritySecureScoreControlProfile.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Remove-MgSecuritySecureScoreControlProfile.md +++ b/src/Security/v1.0/examples/Remove-MgSecuritySecureScoreControlProfile.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/v1.0/examples/Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault.md b/src/Security/v1.0/examples/Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault.md index 1fd692c173..0691b0f417 100644 --- a/src/Security/v1.0/examples/Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault.md +++ b/src/Security/v1.0/examples/Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault.md @@ -1,7 +1,11 @@ -### Example 1: Using the Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault Cmdlet +### Example 1: Code snippet + ```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/v1.0/examples/Update-MgSecurityAttackSimulationAutomation.md b/src/Security/v1.0/examples/Update-MgSecurityAttackSimulationAutomation.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Update-MgSecurityAttackSimulationAutomation.md +++ b/src/Security/v1.0/examples/Update-MgSecurityAttackSimulationAutomation.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/v1.0/examples/Update-MgSecurityAttackSimulationAutomationRun.md b/src/Security/v1.0/examples/Update-MgSecurityAttackSimulationAutomationRun.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Update-MgSecurityAttackSimulationAutomationRun.md +++ b/src/Security/v1.0/examples/Update-MgSecurityAttackSimulationAutomationRun.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/v1.0/examples/Update-MgSecurityCase.md b/src/Security/v1.0/examples/Update-MgSecurityCase.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Update-MgSecurityCase.md +++ b/src/Security/v1.0/examples/Update-MgSecurityCase.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseCustodian.md b/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseCustodian.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseCustodian.md +++ b/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseCustodian.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseCustodianIndex.md b/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseCustodianIndex.md index a0d1c1d151..14dec4f137 100644 --- a/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseCustodianIndex.md +++ b/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseCustodianIndex.md @@ -1,7 +1,11 @@ -### Example 1: Using the Update-MgSecurityCaseEdiscoveryCaseCustodianIndex Cmdlet +### Example 1: Code snippet + ```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/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md b/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md +++ b/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseCustodianSiteSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md b/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md +++ b/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseCustodianUserSource.md b/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseCustodianUserSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseCustodianUserSource.md +++ b/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseCustodianUserSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md b/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md +++ b/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex.md b/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex.md index 25f9a7f767..449fa444f1 100644 --- a/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex.md +++ b/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex.md @@ -1,7 +1,11 @@ -### Example 1: Using the Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex Cmdlet +### Example 1: Code snippet + ```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/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseOperation.md b/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseOperation.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseOperation.md +++ b/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseOperation.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseReviewSet.md b/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseReviewSet.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseReviewSet.md +++ b/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseReviewSet.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource.md b/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource.md index 093355d11d..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource.md +++ b/src/Security/v1.0/examples/Update-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Security/v1.0/examples/Update-MgSecuritySecureScore.md b/src/Security/v1.0/examples/Update-MgSecuritySecureScore.md index f6c6949389..e69de29bb2 100644 --- a/src/Security/v1.0/examples/Update-MgSecuritySecureScore.md +++ b/src/Security/v1.0/examples/Update-MgSecuritySecureScore.md @@ -1,17 +0,0 @@ -### 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 }} diff --git a/src/Sites/beta/examples/Get-MgBetaGroupSiteAnalytic.md b/src/Sites/beta/examples/Get-MgBetaGroupSiteAnalytic.md index 093355d11d..e69de29bb2 100644 --- a/src/Sites/beta/examples/Get-MgBetaGroupSiteAnalytic.md +++ b/src/Sites/beta/examples/Get-MgBetaGroupSiteAnalytic.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Sites/beta/examples/Get-MgBetaGroupSiteListActivity.md b/src/Sites/beta/examples/Get-MgBetaGroupSiteListActivity.md index 093355d11d..e69de29bb2 100644 --- a/src/Sites/beta/examples/Get-MgBetaGroupSiteListActivity.md +++ b/src/Sites/beta/examples/Get-MgBetaGroupSiteListActivity.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Sites/v1.0/examples/Get-MgGroupSiteAnalytic.md b/src/Sites/v1.0/examples/Get-MgGroupSiteAnalytic.md index 093355d11d..e69de29bb2 100644 --- a/src/Sites/v1.0/examples/Get-MgGroupSiteAnalytic.md +++ b/src/Sites/v1.0/examples/Get-MgGroupSiteAnalytic.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Teams/beta/examples/Clear-MgBetaChatMessageReaction.md b/src/Teams/beta/examples/Clear-MgBetaChatMessageReaction.md index 093355d11d..e69de29bb2 100644 --- a/src/Teams/beta/examples/Clear-MgBetaChatMessageReaction.md +++ b/src/Teams/beta/examples/Clear-MgBetaChatMessageReaction.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Teams/beta/examples/Clear-MgBetaChatMessageReplyReaction.md b/src/Teams/beta/examples/Clear-MgBetaChatMessageReplyReaction.md index 093355d11d..e69de29bb2 100644 --- a/src/Teams/beta/examples/Clear-MgBetaChatMessageReplyReaction.md +++ b/src/Teams/beta/examples/Clear-MgBetaChatMessageReplyReaction.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Teams/beta/examples/Clear-MgBetaTeamChannelMessageReaction.md b/src/Teams/beta/examples/Clear-MgBetaTeamChannelMessageReaction.md index 093355d11d..e69de29bb2 100644 --- a/src/Teams/beta/examples/Clear-MgBetaTeamChannelMessageReaction.md +++ b/src/Teams/beta/examples/Clear-MgBetaTeamChannelMessageReaction.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Teams/beta/examples/Clear-MgBetaTeamChannelMessageReplyReaction.md b/src/Teams/beta/examples/Clear-MgBetaTeamChannelMessageReplyReaction.md index 093355d11d..e69de29bb2 100644 --- a/src/Teams/beta/examples/Clear-MgBetaTeamChannelMessageReplyReaction.md +++ b/src/Teams/beta/examples/Clear-MgBetaTeamChannelMessageReplyReaction.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Teams/beta/examples/Clear-MgBetaTeamPrimaryChannelMessageReaction.md b/src/Teams/beta/examples/Clear-MgBetaTeamPrimaryChannelMessageReaction.md index 093355d11d..e69de29bb2 100644 --- a/src/Teams/beta/examples/Clear-MgBetaTeamPrimaryChannelMessageReaction.md +++ b/src/Teams/beta/examples/Clear-MgBetaTeamPrimaryChannelMessageReaction.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Teams/beta/examples/Clear-MgBetaTeamPrimaryChannelMessageReplyReaction.md b/src/Teams/beta/examples/Clear-MgBetaTeamPrimaryChannelMessageReplyReaction.md index 093355d11d..e69de29bb2 100644 --- a/src/Teams/beta/examples/Clear-MgBetaTeamPrimaryChannelMessageReplyReaction.md +++ b/src/Teams/beta/examples/Clear-MgBetaTeamPrimaryChannelMessageReplyReaction.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Teams/beta/examples/Clear-MgBetaTeamworkDeletedTeamChannelMessageReaction.md b/src/Teams/beta/examples/Clear-MgBetaTeamworkDeletedTeamChannelMessageReaction.md index 093355d11d..e69de29bb2 100644 --- a/src/Teams/beta/examples/Clear-MgBetaTeamworkDeletedTeamChannelMessageReaction.md +++ b/src/Teams/beta/examples/Clear-MgBetaTeamworkDeletedTeamChannelMessageReaction.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Teams/beta/examples/Clear-MgBetaTeamworkDeletedTeamChannelMessageReplyReaction.md b/src/Teams/beta/examples/Clear-MgBetaTeamworkDeletedTeamChannelMessageReplyReaction.md index 093355d11d..e69de29bb2 100644 --- a/src/Teams/beta/examples/Clear-MgBetaTeamworkDeletedTeamChannelMessageReplyReaction.md +++ b/src/Teams/beta/examples/Clear-MgBetaTeamworkDeletedTeamChannelMessageReplyReaction.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Teams/v1.0/examples/Get-MgChatInstalledAppTeamApp.md b/src/Teams/v1.0/examples/Get-MgChatInstalledAppTeamApp.md index 093355d11d..e69de29bb2 100644 --- a/src/Teams/v1.0/examples/Get-MgChatInstalledAppTeamApp.md +++ b/src/Teams/v1.0/examples/Get-MgChatInstalledAppTeamApp.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Teams/v1.0/examples/Get-MgChatInstalledAppTeamAppDefinition.md b/src/Teams/v1.0/examples/Get-MgChatInstalledAppTeamAppDefinition.md index 093355d11d..e69de29bb2 100644 --- a/src/Teams/v1.0/examples/Get-MgChatInstalledAppTeamAppDefinition.md +++ b/src/Teams/v1.0/examples/Get-MgChatInstalledAppTeamAppDefinition.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Teams/v1.0/examples/Get-MgChatMessageDelta.md b/src/Teams/v1.0/examples/Get-MgChatMessageDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Teams/v1.0/examples/Get-MgChatMessageDelta.md +++ b/src/Teams/v1.0/examples/Get-MgChatMessageDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Teams/v1.0/examples/Get-MgChatMessageReplyDelta.md b/src/Teams/v1.0/examples/Get-MgChatMessageReplyDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Teams/v1.0/examples/Get-MgChatMessageReplyDelta.md +++ b/src/Teams/v1.0/examples/Get-MgChatMessageReplyDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Teams/v1.0/examples/Get-MgChatTabTeamApp.md b/src/Teams/v1.0/examples/Get-MgChatTabTeamApp.md index 093355d11d..e69de29bb2 100644 --- a/src/Teams/v1.0/examples/Get-MgChatTabTeamApp.md +++ b/src/Teams/v1.0/examples/Get-MgChatTabTeamApp.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Teams/v1.0/examples/Get-MgGroupTeam.md b/src/Teams/v1.0/examples/Get-MgGroupTeam.md index 093355d11d..e69de29bb2 100644 --- a/src/Teams/v1.0/examples/Get-MgGroupTeam.md +++ b/src/Teams/v1.0/examples/Get-MgGroupTeam.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Teams/v1.0/examples/Get-MgGroupTeamChannelTabTeamApp.md b/src/Teams/v1.0/examples/Get-MgGroupTeamChannelTabTeamApp.md index 093355d11d..e69de29bb2 100644 --- a/src/Teams/v1.0/examples/Get-MgGroupTeamChannelTabTeamApp.md +++ b/src/Teams/v1.0/examples/Get-MgGroupTeamChannelTabTeamApp.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Teams/v1.0/examples/Get-MgGroupTeamGroup.md b/src/Teams/v1.0/examples/Get-MgGroupTeamGroup.md index 093355d11d..e69de29bb2 100644 --- a/src/Teams/v1.0/examples/Get-MgGroupTeamGroup.md +++ b/src/Teams/v1.0/examples/Get-MgGroupTeamGroup.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Teams/v1.0/examples/Get-MgGroupTeamInstalledAppTeamApp.md b/src/Teams/v1.0/examples/Get-MgGroupTeamInstalledAppTeamApp.md index 093355d11d..e69de29bb2 100644 --- a/src/Teams/v1.0/examples/Get-MgGroupTeamInstalledAppTeamApp.md +++ b/src/Teams/v1.0/examples/Get-MgGroupTeamInstalledAppTeamApp.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Teams/v1.0/examples/Get-MgGroupTeamInstalledAppTeamAppDefinition.md b/src/Teams/v1.0/examples/Get-MgGroupTeamInstalledAppTeamAppDefinition.md index 093355d11d..e69de29bb2 100644 --- a/src/Teams/v1.0/examples/Get-MgGroupTeamInstalledAppTeamAppDefinition.md +++ b/src/Teams/v1.0/examples/Get-MgGroupTeamInstalledAppTeamAppDefinition.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Teams/v1.0/examples/Get-MgGroupTeamPrimaryChannelTabTeamApp.md b/src/Teams/v1.0/examples/Get-MgGroupTeamPrimaryChannelTabTeamApp.md index 093355d11d..e69de29bb2 100644 --- a/src/Teams/v1.0/examples/Get-MgGroupTeamPrimaryChannelTabTeamApp.md +++ b/src/Teams/v1.0/examples/Get-MgGroupTeamPrimaryChannelTabTeamApp.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Teams/v1.0/examples/Get-MgGroupTeamTemplate.md b/src/Teams/v1.0/examples/Get-MgGroupTeamTemplate.md index 093355d11d..e69de29bb2 100644 --- a/src/Teams/v1.0/examples/Get-MgGroupTeamTemplate.md +++ b/src/Teams/v1.0/examples/Get-MgGroupTeamTemplate.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Teams/v1.0/examples/Get-MgTeamChannelMessageDelta.md b/src/Teams/v1.0/examples/Get-MgTeamChannelMessageDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Teams/v1.0/examples/Get-MgTeamChannelMessageDelta.md +++ b/src/Teams/v1.0/examples/Get-MgTeamChannelMessageDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Teams/v1.0/examples/Get-MgTeamChannelMessageReplyDelta.md b/src/Teams/v1.0/examples/Get-MgTeamChannelMessageReplyDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Teams/v1.0/examples/Get-MgTeamChannelMessageReplyDelta.md +++ b/src/Teams/v1.0/examples/Get-MgTeamChannelMessageReplyDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Teams/v1.0/examples/Get-MgTeamChannelTabTeamApp.md b/src/Teams/v1.0/examples/Get-MgTeamChannelTabTeamApp.md index 093355d11d..e69de29bb2 100644 --- a/src/Teams/v1.0/examples/Get-MgTeamChannelTabTeamApp.md +++ b/src/Teams/v1.0/examples/Get-MgTeamChannelTabTeamApp.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Teams/v1.0/examples/Get-MgTeamInstalledAppTeamApp.md b/src/Teams/v1.0/examples/Get-MgTeamInstalledAppTeamApp.md index 093355d11d..e69de29bb2 100644 --- a/src/Teams/v1.0/examples/Get-MgTeamInstalledAppTeamApp.md +++ b/src/Teams/v1.0/examples/Get-MgTeamInstalledAppTeamApp.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Teams/v1.0/examples/Get-MgTeamInstalledAppTeamAppDefinition.md b/src/Teams/v1.0/examples/Get-MgTeamInstalledAppTeamAppDefinition.md index 093355d11d..e69de29bb2 100644 --- a/src/Teams/v1.0/examples/Get-MgTeamInstalledAppTeamAppDefinition.md +++ b/src/Teams/v1.0/examples/Get-MgTeamInstalledAppTeamAppDefinition.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Actions/beta/examples/Add-MgBetaUserPendingAccessReviewInstanceDecision.md b/src/Users.Actions/beta/examples/Add-MgBetaUserPendingAccessReviewInstanceDecision.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Actions/beta/examples/Add-MgBetaUserPendingAccessReviewInstanceDecision.md +++ b/src/Users.Actions/beta/examples/Add-MgBetaUserPendingAccessReviewInstanceDecision.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Actions/beta/examples/Clear-MgBetaUserAndBlockManagedApp.md b/src/Users.Actions/beta/examples/Clear-MgBetaUserAndBlockManagedApp.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Actions/beta/examples/Clear-MgBetaUserAndBlockManagedApp.md +++ b/src/Users.Actions/beta/examples/Clear-MgBetaUserAndBlockManagedApp.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Actions/beta/examples/Clear-MgBetaUserChatMessageReaction.md b/src/Users.Actions/beta/examples/Clear-MgBetaUserChatMessageReaction.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Actions/beta/examples/Clear-MgBetaUserChatMessageReaction.md +++ b/src/Users.Actions/beta/examples/Clear-MgBetaUserChatMessageReaction.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Actions/beta/examples/Clear-MgBetaUserChatMessageReplyReaction.md b/src/Users.Actions/beta/examples/Clear-MgBetaUserChatMessageReplyReaction.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Actions/beta/examples/Clear-MgBetaUserChatMessageReplyReaction.md +++ b/src/Users.Actions/beta/examples/Clear-MgBetaUserChatMessageReplyReaction.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Actions/beta/examples/Clear-MgBetaUserManagedAppRegistrationByAzureAdDeviceId.md b/src/Users.Actions/beta/examples/Clear-MgBetaUserManagedAppRegistrationByAzureAdDeviceId.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Actions/beta/examples/Clear-MgBetaUserManagedAppRegistrationByAzureAdDeviceId.md +++ b/src/Users.Actions/beta/examples/Clear-MgBetaUserManagedAppRegistrationByAzureAdDeviceId.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Actions/beta/examples/Clear-MgBetaUserManagedAppRegistrationByDeviceTag.md b/src/Users.Actions/beta/examples/Clear-MgBetaUserManagedAppRegistrationByDeviceTag.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Actions/beta/examples/Clear-MgBetaUserManagedAppRegistrationByDeviceTag.md +++ b/src/Users.Actions/beta/examples/Clear-MgBetaUserManagedAppRegistrationByDeviceTag.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Actions/beta/examples/Clear-MgBetaUserManagedDevice.md b/src/Users.Actions/beta/examples/Clear-MgBetaUserManagedDevice.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Actions/beta/examples/Clear-MgBetaUserManagedDevice.md +++ b/src/Users.Actions/beta/examples/Clear-MgBetaUserManagedDevice.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Actions/beta/examples/Complete-MgBetaUserOutlookTask.md b/src/Users.Actions/beta/examples/Complete-MgBetaUserOutlookTask.md index f7742ea0e8..e2ab0194a8 100644 --- a/src/Users.Actions/beta/examples/Complete-MgBetaUserOutlookTask.md +++ b/src/Users.Actions/beta/examples/Complete-MgBetaUserOutlookTask.md @@ -1,8 +1,12 @@ -### Example 1: Using the Complete-MgBetaUserOutlookTask Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Users.Actions + # A UPN can also be used as -UserId. Complete-MgBetaUserOutlookTask -UserId $userId -OutlookTaskId $outlookTaskId + ``` This example shows how to use the Complete-MgBetaUserOutlookTask Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Users.Actions/beta/examples/Complete-MgBetaUserOutlookTaskFolderTask.md b/src/Users.Actions/beta/examples/Complete-MgBetaUserOutlookTaskFolderTask.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Actions/beta/examples/Complete-MgBetaUserOutlookTaskFolderTask.md +++ b/src/Users.Actions/beta/examples/Complete-MgBetaUserOutlookTaskFolderTask.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Actions/beta/examples/Complete-MgBetaUserOutlookTaskGroupTaskFolderTask.md b/src/Users.Actions/beta/examples/Complete-MgBetaUserOutlookTaskGroupTaskFolderTask.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Actions/beta/examples/Complete-MgBetaUserOutlookTaskGroupTaskFolderTask.md +++ b/src/Users.Actions/beta/examples/Complete-MgBetaUserOutlookTaskGroupTaskFolderTask.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/beta/examples/Export-MgBetaUserDeviceAndAppManagementData.md b/src/Users.Functions/beta/examples/Export-MgBetaUserDeviceAndAppManagementData.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/beta/examples/Export-MgBetaUserDeviceAndAppManagementData.md +++ b/src/Users.Functions/beta/examples/Export-MgBetaUserDeviceAndAppManagementData.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/beta/examples/Find-MgBetaUserRoom.md b/src/Users.Functions/beta/examples/Find-MgBetaUserRoom.md index 1a6a7cb18b..e69de29bb2 100644 --- a/src/Users.Functions/beta/examples/Find-MgBetaUserRoom.md +++ b/src/Users.Functions/beta/examples/Find-MgBetaUserRoom.md @@ -1,8 +0,0 @@ -### Example 1: Using the Find-MgBetaUserRoom Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Users.Functions -# A UPN can also be used as -UserId. -Find-MgBetaUserRoom -UserId $userId -``` -This example shows how to use the Find-MgBetaUserRoom Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Functions/beta/examples/Find-MgBetaUserRoomList.md b/src/Users.Functions/beta/examples/Find-MgBetaUserRoomList.md index c0cba18abd..bf5747e4d6 100644 --- a/src/Users.Functions/beta/examples/Find-MgBetaUserRoomList.md +++ b/src/Users.Functions/beta/examples/Find-MgBetaUserRoomList.md @@ -1,8 +1,12 @@ -### Example 1: Using the Find-MgBetaUserRoomList Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Users.Functions + # A UPN can also be used as -UserId. Find-MgBetaUserRoomList -UserId $userId + ``` This example shows how to use the Find-MgBetaUserRoomList Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Users.Functions/beta/examples/Get-MgBetaAllUserChatMessage.md b/src/Users.Functions/beta/examples/Get-MgBetaAllUserChatMessage.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/beta/examples/Get-MgBetaAllUserChatMessage.md +++ b/src/Users.Functions/beta/examples/Get-MgBetaAllUserChatMessage.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/beta/examples/Get-MgBetaUserChatMessageDelta.md b/src/Users.Functions/beta/examples/Get-MgBetaUserChatMessageDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/beta/examples/Get-MgBetaUserChatMessageDelta.md +++ b/src/Users.Functions/beta/examples/Get-MgBetaUserChatMessageDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/beta/examples/Get-MgBetaUserChatMessageReplyDelta.md b/src/Users.Functions/beta/examples/Get-MgBetaUserChatMessageReplyDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/beta/examples/Get-MgBetaUserChatMessageReplyDelta.md +++ b/src/Users.Functions/beta/examples/Get-MgBetaUserChatMessageReplyDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/beta/examples/Get-MgBetaUserCloudPcConnectivityHistory.md b/src/Users.Functions/beta/examples/Get-MgBetaUserCloudPcConnectivityHistory.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/beta/examples/Get-MgBetaUserCloudPcConnectivityHistory.md +++ b/src/Users.Functions/beta/examples/Get-MgBetaUserCloudPcConnectivityHistory.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/beta/examples/Get-MgBetaUserCloudPcLaunchInfo.md b/src/Users.Functions/beta/examples/Get-MgBetaUserCloudPcLaunchInfo.md index 36ca26198a..e69de29bb2 100644 --- a/src/Users.Functions/beta/examples/Get-MgBetaUserCloudPcLaunchInfo.md +++ b/src/Users.Functions/beta/examples/Get-MgBetaUserCloudPcLaunchInfo.md @@ -1,8 +0,0 @@ -### Example 1: Using the Get-MgBetaUserCloudPcLaunchInfo Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Users.Functions -# A UPN can also be used as -UserId. -Get-MgBetaUserCloudPcLaunchInfo -UserId $userId -CloudPCId $cloudPCId -``` -This example shows how to use the Get-MgBetaUserCloudPcLaunchInfo Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Functions/beta/examples/Get-MgBetaUserDelta.md b/src/Users.Functions/beta/examples/Get-MgBetaUserDelta.md index 6156723709..e69de29bb2 100644 --- a/src/Users.Functions/beta/examples/Get-MgBetaUserDelta.md +++ b/src/Users.Functions/beta/examples/Get-MgBetaUserDelta.md @@ -1,7 +0,0 @@ -### Example 1: Using the Get-MgBetaUserDelta Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Users.Functions -Get-MgBetaUserDelta -``` -This example shows how to use the Get-MgBetaUserDelta Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/Users.Functions/beta/examples/Get-MgBetaUserDeviceDelta.md b/src/Users.Functions/beta/examples/Get-MgBetaUserDeviceDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/beta/examples/Get-MgBetaUserDeviceDelta.md +++ b/src/Users.Functions/beta/examples/Get-MgBetaUserDeviceDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/beta/examples/Get-MgBetaUserDriveItemActivityByInterval.md b/src/Users.Functions/beta/examples/Get-MgBetaUserDriveItemActivityByInterval.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/beta/examples/Get-MgBetaUserDriveItemActivityByInterval.md +++ b/src/Users.Functions/beta/examples/Get-MgBetaUserDriveItemActivityByInterval.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/beta/examples/Get-MgBetaUserDriveItemDelta.md b/src/Users.Functions/beta/examples/Get-MgBetaUserDriveItemDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/beta/examples/Get-MgBetaUserDriveItemDelta.md +++ b/src/Users.Functions/beta/examples/Get-MgBetaUserDriveItemDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/beta/examples/Get-MgBetaUserDriveItemListItemActivityByInterval.md b/src/Users.Functions/beta/examples/Get-MgBetaUserDriveItemListItemActivityByInterval.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/beta/examples/Get-MgBetaUserDriveItemListItemActivityByInterval.md +++ b/src/Users.Functions/beta/examples/Get-MgBetaUserDriveItemListItemActivityByInterval.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/beta/examples/Get-MgBetaUserDriveListContentTypeCompatibleHubContentType.md b/src/Users.Functions/beta/examples/Get-MgBetaUserDriveListContentTypeCompatibleHubContentType.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/beta/examples/Get-MgBetaUserDriveListContentTypeCompatibleHubContentType.md +++ b/src/Users.Functions/beta/examples/Get-MgBetaUserDriveListContentTypeCompatibleHubContentType.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/beta/examples/Get-MgBetaUserDriveListItemActivityByInterval.md b/src/Users.Functions/beta/examples/Get-MgBetaUserDriveListItemActivityByInterval.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/beta/examples/Get-MgBetaUserDriveListItemActivityByInterval.md +++ b/src/Users.Functions/beta/examples/Get-MgBetaUserDriveListItemActivityByInterval.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/beta/examples/Get-MgBetaUserDriveListItemDelta.md b/src/Users.Functions/beta/examples/Get-MgBetaUserDriveListItemDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/beta/examples/Get-MgBetaUserDriveListItemDelta.md +++ b/src/Users.Functions/beta/examples/Get-MgBetaUserDriveListItemDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/beta/examples/Get-MgBetaUserDriveRootActivityByInterval.md b/src/Users.Functions/beta/examples/Get-MgBetaUserDriveRootActivityByInterval.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/beta/examples/Get-MgBetaUserDriveRootActivityByInterval.md +++ b/src/Users.Functions/beta/examples/Get-MgBetaUserDriveRootActivityByInterval.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/beta/examples/Get-MgBetaUserDriveRootDelta.md b/src/Users.Functions/beta/examples/Get-MgBetaUserDriveRootDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/beta/examples/Get-MgBetaUserDriveRootDelta.md +++ b/src/Users.Functions/beta/examples/Get-MgBetaUserDriveRootDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/beta/examples/Get-MgBetaUserDriveRootListItemActivityByInterval.md b/src/Users.Functions/beta/examples/Get-MgBetaUserDriveRootListItemActivityByInterval.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/beta/examples/Get-MgBetaUserDriveRootListItemActivityByInterval.md +++ b/src/Users.Functions/beta/examples/Get-MgBetaUserDriveRootListItemActivityByInterval.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/beta/examples/Get-MgBetaUserEffectiveDeviceEnrollmentConfiguration.md b/src/Users.Functions/beta/examples/Get-MgBetaUserEffectiveDeviceEnrollmentConfiguration.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/beta/examples/Get-MgBetaUserEffectiveDeviceEnrollmentConfiguration.md +++ b/src/Users.Functions/beta/examples/Get-MgBetaUserEffectiveDeviceEnrollmentConfiguration.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/beta/examples/Get-MgBetaUserLoggedOnManagedDevice.md b/src/Users.Functions/beta/examples/Get-MgBetaUserLoggedOnManagedDevice.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/beta/examples/Get-MgBetaUserLoggedOnManagedDevice.md +++ b/src/Users.Functions/beta/examples/Get-MgBetaUserLoggedOnManagedDevice.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/beta/examples/Get-MgBetaUserManagedAppBlockedUser.md b/src/Users.Functions/beta/examples/Get-MgBetaUserManagedAppBlockedUser.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/beta/examples/Get-MgBetaUserManagedAppBlockedUser.md +++ b/src/Users.Functions/beta/examples/Get-MgBetaUserManagedAppBlockedUser.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/v1.0/examples/Get-MgAllUserChatMessage.md b/src/Users.Functions/v1.0/examples/Get-MgAllUserChatMessage.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/v1.0/examples/Get-MgAllUserChatMessage.md +++ b/src/Users.Functions/v1.0/examples/Get-MgAllUserChatMessage.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/v1.0/examples/Get-MgUserChatMessageDelta.md b/src/Users.Functions/v1.0/examples/Get-MgUserChatMessageDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/v1.0/examples/Get-MgUserChatMessageDelta.md +++ b/src/Users.Functions/v1.0/examples/Get-MgUserChatMessageDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/v1.0/examples/Get-MgUserChatMessageReplyDelta.md b/src/Users.Functions/v1.0/examples/Get-MgUserChatMessageReplyDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/v1.0/examples/Get-MgUserChatMessageReplyDelta.md +++ b/src/Users.Functions/v1.0/examples/Get-MgUserChatMessageReplyDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/v1.0/examples/Get-MgUserContactDelta.md b/src/Users.Functions/v1.0/examples/Get-MgUserContactDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/v1.0/examples/Get-MgUserContactDelta.md +++ b/src/Users.Functions/v1.0/examples/Get-MgUserContactDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/v1.0/examples/Get-MgUserContactFolderChildFolderContactDelta.md b/src/Users.Functions/v1.0/examples/Get-MgUserContactFolderChildFolderContactDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/v1.0/examples/Get-MgUserContactFolderChildFolderContactDelta.md +++ b/src/Users.Functions/v1.0/examples/Get-MgUserContactFolderChildFolderContactDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/v1.0/examples/Get-MgUserContactFolderChildFolderDelta.md b/src/Users.Functions/v1.0/examples/Get-MgUserContactFolderChildFolderDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/v1.0/examples/Get-MgUserContactFolderChildFolderDelta.md +++ b/src/Users.Functions/v1.0/examples/Get-MgUserContactFolderChildFolderDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/v1.0/examples/Get-MgUserContactFolderContactDelta.md b/src/Users.Functions/v1.0/examples/Get-MgUserContactFolderContactDelta.md index 093355d11d..e6d7f2c8bd 100644 --- a/src/Users.Functions/v1.0/examples/Get-MgUserContactFolderContactDelta.md +++ b/src/Users.Functions/v1.0/examples/Get-MgUserContactFolderContactDelta.md @@ -1,18 +1,12 @@ -### Example 1: {{ Add title here }} +### Example 1: Code snippet + ```powershell -PS C:\> {{ Add code here }} -{{ Add output here }} -``` +Import-Module Microsoft.Graph.Users.Functions -{{ Add description here }} +# A UPN can also be used as -UserId. +Get-MgUserContactFolderContactDelta -UserId $userId -ContactFolderId $contactFolderId -Property "displayName" -### Example 2: {{ Add title here }} -```powershell -PS C:\> {{ Add code here }} - -{{ Add output here }} ``` - -{{ Add description here }} +This example shows how to use the Get-MgUserContactFolderContactDelta Cmdlet. diff --git a/src/Users.Functions/v1.0/examples/Get-MgUserContactFolderDelta.md b/src/Users.Functions/v1.0/examples/Get-MgUserContactFolderDelta.md index 0a72151ee1..c710e9d295 100644 --- a/src/Users.Functions/v1.0/examples/Get-MgUserContactFolderDelta.md +++ b/src/Users.Functions/v1.0/examples/Get-MgUserContactFolderDelta.md @@ -1,8 +1,12 @@ -### Example 1: Using the Get-MgUserContactFolderDelta Cmdlet +### Example 1: Code snippet + ```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/v1.0/examples/Get-MgUserDelta.md b/src/Users.Functions/v1.0/examples/Get-MgUserDelta.md index b10fcfcdfb..e69de29bb2 100644 --- a/src/Users.Functions/v1.0/examples/Get-MgUserDelta.md +++ b/src/Users.Functions/v1.0/examples/Get-MgUserDelta.md @@ -1,7 +0,0 @@ -### 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/v1.0/examples/Get-MgUserDriveItemActivityByInterval.md b/src/Users.Functions/v1.0/examples/Get-MgUserDriveItemActivityByInterval.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/v1.0/examples/Get-MgUserDriveItemActivityByInterval.md +++ b/src/Users.Functions/v1.0/examples/Get-MgUserDriveItemActivityByInterval.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/v1.0/examples/Get-MgUserDriveItemDelta.md b/src/Users.Functions/v1.0/examples/Get-MgUserDriveItemDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/v1.0/examples/Get-MgUserDriveItemDelta.md +++ b/src/Users.Functions/v1.0/examples/Get-MgUserDriveItemDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/v1.0/examples/Get-MgUserDriveItemListItemActivityByInterval.md b/src/Users.Functions/v1.0/examples/Get-MgUserDriveItemListItemActivityByInterval.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/v1.0/examples/Get-MgUserDriveItemListItemActivityByInterval.md +++ b/src/Users.Functions/v1.0/examples/Get-MgUserDriveItemListItemActivityByInterval.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/v1.0/examples/Get-MgUserDriveListContentTypeCompatibleHubContentType.md b/src/Users.Functions/v1.0/examples/Get-MgUserDriveListContentTypeCompatibleHubContentType.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/v1.0/examples/Get-MgUserDriveListContentTypeCompatibleHubContentType.md +++ b/src/Users.Functions/v1.0/examples/Get-MgUserDriveListContentTypeCompatibleHubContentType.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/v1.0/examples/Get-MgUserDriveListItemActivityByInterval.md b/src/Users.Functions/v1.0/examples/Get-MgUserDriveListItemActivityByInterval.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/v1.0/examples/Get-MgUserDriveListItemActivityByInterval.md +++ b/src/Users.Functions/v1.0/examples/Get-MgUserDriveListItemActivityByInterval.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/v1.0/examples/Get-MgUserDriveRootActivityByInterval.md b/src/Users.Functions/v1.0/examples/Get-MgUserDriveRootActivityByInterval.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/v1.0/examples/Get-MgUserDriveRootActivityByInterval.md +++ b/src/Users.Functions/v1.0/examples/Get-MgUserDriveRootActivityByInterval.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/v1.0/examples/Get-MgUserDriveRootDelta.md b/src/Users.Functions/v1.0/examples/Get-MgUserDriveRootDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/v1.0/examples/Get-MgUserDriveRootDelta.md +++ b/src/Users.Functions/v1.0/examples/Get-MgUserDriveRootDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/v1.0/examples/Get-MgUserDriveRootListItemActivityByInterval.md b/src/Users.Functions/v1.0/examples/Get-MgUserDriveRootListItemActivityByInterval.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/v1.0/examples/Get-MgUserDriveRootListItemActivityByInterval.md +++ b/src/Users.Functions/v1.0/examples/Get-MgUserDriveRootListItemActivityByInterval.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/v1.0/examples/Get-MgUserMailFolderChildFolderMessageDelta.md b/src/Users.Functions/v1.0/examples/Get-MgUserMailFolderChildFolderMessageDelta.md index 093355d11d..e69de29bb2 100644 --- a/src/Users.Functions/v1.0/examples/Get-MgUserMailFolderChildFolderMessageDelta.md +++ b/src/Users.Functions/v1.0/examples/Get-MgUserMailFolderChildFolderMessageDelta.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/Users.Functions/v1.0/examples/Get-MgUserMailFolderMessageDelta.md b/src/Users.Functions/v1.0/examples/Get-MgUserMailFolderMessageDelta.md index 0b012ef85d..8a0bb0b11c 100644 --- a/src/Users.Functions/v1.0/examples/Get-MgUserMailFolderMessageDelta.md +++ b/src/Users.Functions/v1.0/examples/Get-MgUserMailFolderMessageDelta.md @@ -1,8 +1,12 @@ -### Example 1: Using the Get-MgUserMailFolderMessageDelta Cmdlet +### Example 1: Code snippet + ```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/beta/examples/Get-MgBetaUserOutlookTask.md b/src/Users/beta/examples/Get-MgBetaUserOutlookTask.md index d02d04ea47..8fd644c2ba 100644 --- a/src/Users/beta/examples/Get-MgBetaUserOutlookTask.md +++ b/src/Users/beta/examples/Get-MgBetaUserOutlookTask.md @@ -1,24 +1,24 @@ -### Example 1: Using the Get-MgBetaUserOutlookTask Cmdlet +### Example 1: Get an Outlook task + ```powershell + Import-Module Microsoft.Graph.Beta.Users + # A UPN can also be used as -UserId. Get-MgBetaUserOutlookTask -UserId $userId -OutlookTaskId $outlookTaskId + ``` -This example shows how to use the Get-MgBetaUserOutlookTask Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaUserOutlookTask Cmdlet +This example will get an outlook task + +### Example 2: Get Outlook task with date-time properties in Pacific Standard Time + ```powershell + Import-Module Microsoft.Graph.Beta.Users + # A UPN can also be used as -UserId. Get-MgBetaUserOutlookTask -UserId $userId -OutlookTaskId $outlookTaskId + ``` -This example shows how to use the Get-MgBetaUserOutlookTask Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 3: Using the Get-MgBetaUserOutlookTask Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Users -# A UPN can also be used as -UserId. -Get-MgBetaUserOutlookTask -UserId $userId -``` -This example shows how to use the Get-MgBetaUserOutlookTask Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +This example will get outlook task with date-time properties in pacific standard time + diff --git a/src/Users/beta/examples/Get-MgBetaUserOutlookTaskAttachment.md b/src/Users/beta/examples/Get-MgBetaUserOutlookTaskAttachment.md index 288f4ad505..61291f608a 100644 --- a/src/Users/beta/examples/Get-MgBetaUserOutlookTaskAttachment.md +++ b/src/Users/beta/examples/Get-MgBetaUserOutlookTaskAttachment.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaUserOutlookTaskAttachment Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Users + Get-MgBetaUserOutlookTaskAttachment -UserId $userId -OutlookTaskId $outlookTaskId + ``` This example shows how to use the Get-MgBetaUserOutlookTaskAttachment Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Users/beta/examples/Get-MgBetaUserOutlookTaskFolder.md b/src/Users/beta/examples/Get-MgBetaUserOutlookTaskFolder.md index 7a5c79f226..725ddc6e8a 100644 --- a/src/Users/beta/examples/Get-MgBetaUserOutlookTaskFolder.md +++ b/src/Users/beta/examples/Get-MgBetaUserOutlookTaskFolder.md @@ -1,16 +1,12 @@ -### Example 1: Using the Get-MgBetaUserOutlookTaskFolder Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Users -# A UPN can also be used as -UserId. -Get-MgBetaUserOutlookTaskFolder -UserId $userId -OutlookTaskFolderId $outlookTaskFolderId -``` -This example shows how to use the Get-MgBetaUserOutlookTaskFolder Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaUserOutlookTaskFolder Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Users + # A UPN can also be used as -UserId. Get-MgBetaUserOutlookTaskFolder -UserId $userId + ``` This example shows how to use the Get-MgBetaUserOutlookTaskFolder Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/WindowsUpdates/beta/examples/Add-MgBetaWindowsUpdatesDeploymentAudienceExclusionMemberById.md b/src/WindowsUpdates/beta/examples/Add-MgBetaWindowsUpdatesDeploymentAudienceExclusionMemberById.md index 093355d11d..e69de29bb2 100644 --- a/src/WindowsUpdates/beta/examples/Add-MgBetaWindowsUpdatesDeploymentAudienceExclusionMemberById.md +++ b/src/WindowsUpdates/beta/examples/Add-MgBetaWindowsUpdatesDeploymentAudienceExclusionMemberById.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/WindowsUpdates/beta/examples/Add-MgBetaWindowsUpdatesDeploymentAudienceMember.md b/src/WindowsUpdates/beta/examples/Add-MgBetaWindowsUpdatesDeploymentAudienceMember.md index 093355d11d..e69de29bb2 100644 --- a/src/WindowsUpdates/beta/examples/Add-MgBetaWindowsUpdatesDeploymentAudienceMember.md +++ b/src/WindowsUpdates/beta/examples/Add-MgBetaWindowsUpdatesDeploymentAudienceMember.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/WindowsUpdates/beta/examples/Add-MgBetaWindowsUpdatesDeploymentAudienceMemberById.md b/src/WindowsUpdates/beta/examples/Add-MgBetaWindowsUpdatesDeploymentAudienceMemberById.md index 093355d11d..e69de29bb2 100644 --- a/src/WindowsUpdates/beta/examples/Add-MgBetaWindowsUpdatesDeploymentAudienceMemberById.md +++ b/src/WindowsUpdates/beta/examples/Add-MgBetaWindowsUpdatesDeploymentAudienceMemberById.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/WindowsUpdates/beta/examples/Add-MgBetaWindowsUpdatesUpdatableAssetMember.md b/src/WindowsUpdates/beta/examples/Add-MgBetaWindowsUpdatesUpdatableAssetMember.md index 893b9c8561..6eb2fac2b2 100644 --- a/src/WindowsUpdates/beta/examples/Add-MgBetaWindowsUpdatesUpdatableAssetMember.md +++ b/src/WindowsUpdates/beta/examples/Add-MgBetaWindowsUpdatesUpdatableAssetMember.md @@ -1,15 +1,20 @@ -### Example 1: Using the Add-MgBetaWindowsUpdatesUpdatableAssetMember Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.WindowsUpdates + $params = @{ - Assets = @( + assets = @( @{ "@odata.type" = "#microsoft.graph.windowsUpdates.azureADDevice" - Id = "String (identifier)" + id = "String (identifier)" } ) } + Add-MgBetaWindowsUpdatesUpdatableAssetMember -UpdatableAssetId $updatableAssetId -BodyParameter $params + ``` This example shows how to use the Add-MgBetaWindowsUpdatesUpdatableAssetMember Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/WindowsUpdates/beta/examples/Add-MgBetaWindowsUpdatesUpdatableAssetMemberById.md b/src/WindowsUpdates/beta/examples/Add-MgBetaWindowsUpdatesUpdatableAssetMemberById.md index bcacedc0d0..01128cae22 100644 --- a/src/WindowsUpdates/beta/examples/Add-MgBetaWindowsUpdatesUpdatableAssetMemberById.md +++ b/src/WindowsUpdates/beta/examples/Add-MgBetaWindowsUpdatesUpdatableAssetMemberById.md @@ -1,15 +1,20 @@ -### Example 1: Using the Add-MgBetaWindowsUpdatesUpdatableAssetMemberById Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.WindowsUpdates + $params = @{ - Ids = @( - "String" - "String" - "String" - ) - MemberEntityType = "#microsoft.graph.windowsUpdates.azureADDevice" + ids = @( + "String" +"String" +"String" +) +memberEntityType = "#microsoft.graph.windowsUpdates.azureADDevice" } + Add-MgBetaWindowsUpdatesUpdatableAssetMemberById -UpdatableAssetId $updatableAssetId -BodyParameter $params + ``` This example shows how to use the Add-MgBetaWindowsUpdatesUpdatableAssetMemberById Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/WindowsUpdates/beta/examples/Get-MgBetaWindowsUpdatesCatalogEntry.md b/src/WindowsUpdates/beta/examples/Get-MgBetaWindowsUpdatesCatalogEntry.md index 6ec5968e0e..2b3bfb3978 100644 --- a/src/WindowsUpdates/beta/examples/Get-MgBetaWindowsUpdatesCatalogEntry.md +++ b/src/WindowsUpdates/beta/examples/Get-MgBetaWindowsUpdatesCatalogEntry.md @@ -1,7 +1,11 @@ -### Example 1: Using the Get-MgBetaWindowsUpdatesCatalogEntry Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.WindowsUpdates + Get-MgBetaWindowsUpdatesCatalogEntry + ``` This example shows how to use the Get-MgBetaWindowsUpdatesCatalogEntry Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/WindowsUpdates/beta/examples/Get-MgBetaWindowsUpdatesDeployment.md b/src/WindowsUpdates/beta/examples/Get-MgBetaWindowsUpdatesDeployment.md index 181ea8098a..f48a3880b3 100644 --- a/src/WindowsUpdates/beta/examples/Get-MgBetaWindowsUpdatesDeployment.md +++ b/src/WindowsUpdates/beta/examples/Get-MgBetaWindowsUpdatesDeployment.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaWindowsUpdatesDeployment Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.WindowsUpdates -Get-MgBetaWindowsUpdatesDeployment -DeploymentId $deploymentId -``` -This example shows how to use the Get-MgBetaWindowsUpdatesDeployment Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaWindowsUpdatesDeployment Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.WindowsUpdates + Get-MgBetaWindowsUpdatesDeployment + ``` This example shows how to use the Get-MgBetaWindowsUpdatesDeployment Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/WindowsUpdates/beta/examples/Get-MgBetaWindowsUpdatesResourceConnection.md b/src/WindowsUpdates/beta/examples/Get-MgBetaWindowsUpdatesResourceConnection.md index 44ae475977..08c3eacf2b 100644 --- a/src/WindowsUpdates/beta/examples/Get-MgBetaWindowsUpdatesResourceConnection.md +++ b/src/WindowsUpdates/beta/examples/Get-MgBetaWindowsUpdatesResourceConnection.md @@ -1,28 +1,11 @@ -### Example 1: Using the Get-MgBetaWindowsUpdatesResourceConnection Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.WindowsUpdates -Get-MgBetaWindowsUpdatesResourceConnection -ResourceConnectionId $resourceConnectionId -``` -This example shows how to use the Get-MgBetaWindowsUpdatesResourceConnection Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaWindowsUpdatesResourceConnection Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.WindowsUpdates -Get-MgBetaWindowsUpdatesResourceConnection -ResourceConnectionId $resourceConnectionId -``` -This example shows how to use the Get-MgBetaWindowsUpdatesResourceConnection Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 3: Using the Get-MgBetaWindowsUpdatesResourceConnection Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.WindowsUpdates -Get-MgBetaWindowsUpdatesResourceConnection -ResourceConnectionId $resourceConnectionId -``` -This example shows how to use the Get-MgBetaWindowsUpdatesResourceConnection Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 4: Using the Get-MgBetaWindowsUpdatesResourceConnection Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.WindowsUpdates + Get-MgBetaWindowsUpdatesResourceConnection + ``` This example shows how to use the Get-MgBetaWindowsUpdatesResourceConnection Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/WindowsUpdates/beta/examples/Get-MgBetaWindowsUpdatesUpdatableAsset.md b/src/WindowsUpdates/beta/examples/Get-MgBetaWindowsUpdatesUpdatableAsset.md index bfcf65713d..fdd1c4cf4b 100644 --- a/src/WindowsUpdates/beta/examples/Get-MgBetaWindowsUpdatesUpdatableAsset.md +++ b/src/WindowsUpdates/beta/examples/Get-MgBetaWindowsUpdatesUpdatableAsset.md @@ -1,49 +1,11 @@ -### Example 1: Using the Get-MgBetaWindowsUpdatesUpdatableAsset Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.WindowsUpdates -Get-MgBetaWindowsUpdatesUpdatableAsset -UpdatableAssetId $updatableAssetId -``` -This example shows how to use the Get-MgBetaWindowsUpdatesUpdatableAsset Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaWindowsUpdatesUpdatableAsset Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.WindowsUpdates -Get-MgBetaWindowsUpdatesUpdatableAsset -UpdatableAssetId $updatableAssetId -``` -This example shows how to use the Get-MgBetaWindowsUpdatesUpdatableAsset Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 3: Using the Get-MgBetaWindowsUpdatesUpdatableAsset Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.WindowsUpdates -Get-MgBetaWindowsUpdatesUpdatableAsset -UpdatableAssetId $updatableAssetId -``` -This example shows how to use the Get-MgBetaWindowsUpdatesUpdatableAsset Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 4: Using the Get-MgBetaWindowsUpdatesUpdatableAsset Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.WindowsUpdates -Get-MgBetaWindowsUpdatesUpdatableAsset -Filter "isof('microsoft.graph.windowsUpdates.azureADDevice')" -``` -This example shows how to use the Get-MgBetaWindowsUpdatesUpdatableAsset Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 5: Using the Get-MgBetaWindowsUpdatesUpdatableAsset Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.WindowsUpdates + Get-MgBetaWindowsUpdatesUpdatableAsset + ``` This example shows how to use the Get-MgBetaWindowsUpdatesUpdatableAsset Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 6: Using the Get-MgBetaWindowsUpdatesUpdatableAsset Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.WindowsUpdates -Get-MgBetaWindowsUpdatesUpdatableAsset -OutFile $outFileId -``` -This example shows how to use the Get-MgBetaWindowsUpdatesUpdatableAsset Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 7: Using the Get-MgBetaWindowsUpdatesUpdatableAsset Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.WindowsUpdates -Get-MgBetaWindowsUpdatesUpdatableAsset -Filter "isof('microsoft.graph.windowsUpdates.updatableAssetGroup')" -``` -This example shows how to use the Get-MgBetaWindowsUpdatesUpdatableAsset Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/WindowsUpdates/beta/examples/Invoke-MgBetaEnrollWindowsUpdatesDeploymentAudienceExclusionAssetById.md b/src/WindowsUpdates/beta/examples/Invoke-MgBetaEnrollWindowsUpdatesDeploymentAudienceExclusionAssetById.md index 093355d11d..e69de29bb2 100644 --- a/src/WindowsUpdates/beta/examples/Invoke-MgBetaEnrollWindowsUpdatesDeploymentAudienceExclusionAssetById.md +++ b/src/WindowsUpdates/beta/examples/Invoke-MgBetaEnrollWindowsUpdatesDeploymentAudienceExclusionAssetById.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/WindowsUpdates/beta/examples/Invoke-MgBetaEnrollWindowsUpdatesDeploymentAudienceMemberAssetById.md b/src/WindowsUpdates/beta/examples/Invoke-MgBetaEnrollWindowsUpdatesDeploymentAudienceMemberAssetById.md index 093355d11d..e69de29bb2 100644 --- a/src/WindowsUpdates/beta/examples/Invoke-MgBetaEnrollWindowsUpdatesDeploymentAudienceMemberAssetById.md +++ b/src/WindowsUpdates/beta/examples/Invoke-MgBetaEnrollWindowsUpdatesDeploymentAudienceMemberAssetById.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/WindowsUpdates/beta/examples/Invoke-MgBetaEnrollWindowsUpdatesUpdatableAsset.md b/src/WindowsUpdates/beta/examples/Invoke-MgBetaEnrollWindowsUpdatesUpdatableAsset.md index 56ba14cd90..e69de29bb2 100644 --- a/src/WindowsUpdates/beta/examples/Invoke-MgBetaEnrollWindowsUpdatesUpdatableAsset.md +++ b/src/WindowsUpdates/beta/examples/Invoke-MgBetaEnrollWindowsUpdatesUpdatableAsset.md @@ -1,16 +0,0 @@ -### Example 1: Using the Invoke-MgBetaEnrollWindowsUpdatesUpdatableAsset Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.WindowsUpdates -$params = @{ - UpdateCategory = "String" - Assets = @( - @{ - "@odata.type" = "#microsoft.graph.windowsUpdates.azureADDevice" - Id = "String (identifier)" - } - ) -} -Invoke-MgBetaEnrollWindowsUpdatesUpdatableAsset -BodyParameter $params -``` -This example shows how to use the Invoke-MgBetaEnrollWindowsUpdatesUpdatableAsset Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/WindowsUpdates/beta/examples/Invoke-MgBetaEnrollWindowsUpdatesUpdatableAssetById.md b/src/WindowsUpdates/beta/examples/Invoke-MgBetaEnrollWindowsUpdatesUpdatableAssetById.md index a2353fbff4..e69de29bb2 100644 --- a/src/WindowsUpdates/beta/examples/Invoke-MgBetaEnrollWindowsUpdatesUpdatableAssetById.md +++ b/src/WindowsUpdates/beta/examples/Invoke-MgBetaEnrollWindowsUpdatesUpdatableAssetById.md @@ -1,16 +0,0 @@ -### Example 1: Using the Invoke-MgBetaEnrollWindowsUpdatesUpdatableAssetById Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.WindowsUpdates -$params = @{ - UpdateCategory = "feature" - MemberEntityType = "#microsoft.graph.windowsUpdates.azureADDevice" - Ids = @( - "String" - "String" - "String" - ) -} -Invoke-MgBetaEnrollWindowsUpdatesUpdatableAssetById -BodyParameter $params -``` -This example shows how to use the Invoke-MgBetaEnrollWindowsUpdatesUpdatableAssetById Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/WindowsUpdates/beta/examples/Invoke-MgBetaGraphWindowsUpdatesDeploymentAudienceExclusion.md b/src/WindowsUpdates/beta/examples/Invoke-MgBetaGraphWindowsUpdatesDeploymentAudienceExclusion.md index 093355d11d..e69de29bb2 100644 --- a/src/WindowsUpdates/beta/examples/Invoke-MgBetaGraphWindowsUpdatesDeploymentAudienceExclusion.md +++ b/src/WindowsUpdates/beta/examples/Invoke-MgBetaGraphWindowsUpdatesDeploymentAudienceExclusion.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/WindowsUpdates/beta/examples/Invoke-MgBetaGraphWindowsUpdatesDeploymentAudienceMember.md b/src/WindowsUpdates/beta/examples/Invoke-MgBetaGraphWindowsUpdatesDeploymentAudienceMember.md index 093355d11d..e69de29bb2 100644 --- a/src/WindowsUpdates/beta/examples/Invoke-MgBetaGraphWindowsUpdatesDeploymentAudienceMember.md +++ b/src/WindowsUpdates/beta/examples/Invoke-MgBetaGraphWindowsUpdatesDeploymentAudienceMember.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/WindowsUpdates/beta/examples/Invoke-MgBetaGraphWindowsUpdatesUpdatableAsset.md b/src/WindowsUpdates/beta/examples/Invoke-MgBetaGraphWindowsUpdatesUpdatableAsset.md index a5bfb8844b..e69de29bb2 100644 --- a/src/WindowsUpdates/beta/examples/Invoke-MgBetaGraphWindowsUpdatesUpdatableAsset.md +++ b/src/WindowsUpdates/beta/examples/Invoke-MgBetaGraphWindowsUpdatesUpdatableAsset.md @@ -1,16 +0,0 @@ -### Example 1: Using the Invoke-MgBetaGraphWindowsUpdatesUpdatableAsset Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.WindowsUpdates -$params = @{ - UpdateCategory = "feature" - MemberEntityType = "#microsoft.graph.windowsUpdates.azureADDevice" - Ids = @( - "String" - "String" - "String" - ) -} -Invoke-MgBetaGraphWindowsUpdatesUpdatableAsset -BodyParameter $params -``` -This example shows how to use the Invoke-MgBetaGraphWindowsUpdatesUpdatableAsset Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/WindowsUpdates/beta/examples/Invoke-MgBetaUnenrollWindowsUpdatesUpdatableAsset.md b/src/WindowsUpdates/beta/examples/Invoke-MgBetaUnenrollWindowsUpdatesUpdatableAsset.md index e5f48a5aa8..e69de29bb2 100644 --- a/src/WindowsUpdates/beta/examples/Invoke-MgBetaUnenrollWindowsUpdatesUpdatableAsset.md +++ b/src/WindowsUpdates/beta/examples/Invoke-MgBetaUnenrollWindowsUpdatesUpdatableAsset.md @@ -1,16 +0,0 @@ -### Example 1: Using the Invoke-MgBetaUnenrollWindowsUpdatesUpdatableAsset Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.WindowsUpdates -$params = @{ - UpdateCategory = "String" - Assets = @( - @{ - "@odata.type" = "#microsoft.graph.windowsUpdates.azureADDevice" - Id = "String (identifier)" - } - ) -} -Invoke-MgBetaUnenrollWindowsUpdatesUpdatableAsset -BodyParameter $params -``` -This example shows how to use the Invoke-MgBetaUnenrollWindowsUpdatesUpdatableAsset Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). diff --git a/src/WindowsUpdates/beta/examples/New-MgBetaWindowsUpdatesDeployment.md b/src/WindowsUpdates/beta/examples/New-MgBetaWindowsUpdatesDeployment.md index 0c9ee18705..85bb8591b9 100644 --- a/src/WindowsUpdates/beta/examples/New-MgBetaWindowsUpdatesDeployment.md +++ b/src/WindowsUpdates/beta/examples/New-MgBetaWindowsUpdatesDeployment.md @@ -1,30 +1,41 @@ -### Example 1: Using the New-MgBetaWindowsUpdatesDeployment Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.WindowsUpdates + $params = @{ "@odata.type" = "#microsoft.graph.windowsUpdates.deployment" - Content = @{ - "@odata.type" = "microsoft.graph.windowsUpdates.featureUpdateReference" - Version = "20H2" + content = @{ + "@odata.type" = "#microsoft.graph.windowsUpdates.catalogContent" + catalogEntry = @{ + "@odata.type" = "#microsoft.graph.windowsUpdates.featureUpdateCatalogEntry" + id = "f341705b-0b15-4ce3-aaf2-6a1681d78606" + } } - Settings = @{ - "@odata.type" = "microsoft.graph.windowsUpdates.windowsDeploymentSettings" - Rollout = @{ - DevicesPerOffer = 100 + settings = @{ + "@odata.type" = "microsoft.graph.windowsUpdates.deploymentSettings" + schedule = @{ + gradualRollout = @{ + "@odata.type" = "#microsoft.graph.windowsUpdates.rateDrivenRolloutSettings" + durationBetweenOffers = "P7D" + devicePerOffer = + } } - Monitoring = @{ - MonitoringRules = @( + monitoring = @{ + monitoringRules = @( @{ - "@odata.type" = "#microsoft.graph.windowsUpdates.monitoringRule" - Signal = "rollback" - Threshold = 5 - Action = "pauseDeployment" + signal = "rollback" + threshold = 5 + action = "pauseDeployment" } ) } } } + New-MgBetaWindowsUpdatesDeployment -BodyParameter $params + ``` This example shows how to use the New-MgBetaWindowsUpdatesDeployment Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/WindowsUpdates/beta/examples/New-MgBetaWindowsUpdatesResourceConnection.md b/src/WindowsUpdates/beta/examples/New-MgBetaWindowsUpdatesResourceConnection.md index bf4248718b..4e67a4c6f2 100644 --- a/src/WindowsUpdates/beta/examples/New-MgBetaWindowsUpdatesResourceConnection.md +++ b/src/WindowsUpdates/beta/examples/New-MgBetaWindowsUpdatesResourceConnection.md @@ -1,13 +1,18 @@ -### Example 1: Using the New-MgBetaWindowsUpdatesResourceConnection Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.WindowsUpdates + $params = @{ "@odata.type" = "#microsoft.graph.windowsUpdates.operationalInsightsConnection" - AzureSubscriptionId = "322ec614-e9c2-4cd5-a55c-5711fdecf02e" - AzureResourceGroupName = "target-resource-group" - WorkspaceName = "my-workspace" + azureSubscriptionId = "322ec614-e9c2-4cd5-a55c-5711fdecf02e" + azureResourceGroupName = "target-resource-group" + workspaceName = "my-workspace" } + New-MgBetaWindowsUpdatesResourceConnection -BodyParameter $params + ``` This example shows how to use the New-MgBetaWindowsUpdatesResourceConnection Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/WindowsUpdates/beta/examples/New-MgBetaWindowsUpdatesUpdatableAsset.md b/src/WindowsUpdates/beta/examples/New-MgBetaWindowsUpdatesUpdatableAsset.md index 69399377a8..c429571637 100644 --- a/src/WindowsUpdates/beta/examples/New-MgBetaWindowsUpdatesUpdatableAsset.md +++ b/src/WindowsUpdates/beta/examples/New-MgBetaWindowsUpdatesUpdatableAsset.md @@ -1,10 +1,15 @@ -### Example 1: Using the New-MgBetaWindowsUpdatesUpdatableAsset Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.WindowsUpdates + $params = @{ "@odata.type" = "#microsoft.graph.windowsUpdates.updatableAssetGroup" } + New-MgBetaWindowsUpdatesUpdatableAsset -BodyParameter $params + ``` This example shows how to use the New-MgBetaWindowsUpdatesUpdatableAsset Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/WindowsUpdates/beta/examples/Remove-MgBetaWindowsUpdatesDeployment.md b/src/WindowsUpdates/beta/examples/Remove-MgBetaWindowsUpdatesDeployment.md index 8f3b2abca1..ca8deda906 100644 --- a/src/WindowsUpdates/beta/examples/Remove-MgBetaWindowsUpdatesDeployment.md +++ b/src/WindowsUpdates/beta/examples/Remove-MgBetaWindowsUpdatesDeployment.md @@ -1,7 +1,11 @@ -### Example 1: Using the Remove-MgBetaWindowsUpdatesDeployment Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.WindowsUpdates + Remove-MgBetaWindowsUpdatesDeployment -DeploymentId $deploymentId + ``` This example shows how to use the Remove-MgBetaWindowsUpdatesDeployment Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/WindowsUpdates/beta/examples/Remove-MgBetaWindowsUpdatesDeploymentAudienceExclusionMemberById.md b/src/WindowsUpdates/beta/examples/Remove-MgBetaWindowsUpdatesDeploymentAudienceExclusionMemberById.md index 093355d11d..e69de29bb2 100644 --- a/src/WindowsUpdates/beta/examples/Remove-MgBetaWindowsUpdatesDeploymentAudienceExclusionMemberById.md +++ b/src/WindowsUpdates/beta/examples/Remove-MgBetaWindowsUpdatesDeploymentAudienceExclusionMemberById.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/WindowsUpdates/beta/examples/Remove-MgBetaWindowsUpdatesDeploymentAudienceMemberById.md b/src/WindowsUpdates/beta/examples/Remove-MgBetaWindowsUpdatesDeploymentAudienceMemberById.md index 093355d11d..e69de29bb2 100644 --- a/src/WindowsUpdates/beta/examples/Remove-MgBetaWindowsUpdatesDeploymentAudienceMemberById.md +++ b/src/WindowsUpdates/beta/examples/Remove-MgBetaWindowsUpdatesDeploymentAudienceMemberById.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/WindowsUpdates/beta/examples/Remove-MgBetaWindowsUpdatesResourceConnection.md b/src/WindowsUpdates/beta/examples/Remove-MgBetaWindowsUpdatesResourceConnection.md index 00e55d9a99..d5500faa86 100644 --- a/src/WindowsUpdates/beta/examples/Remove-MgBetaWindowsUpdatesResourceConnection.md +++ b/src/WindowsUpdates/beta/examples/Remove-MgBetaWindowsUpdatesResourceConnection.md @@ -1,14 +1,11 @@ -### Example 1: Using the Remove-MgBetaWindowsUpdatesResourceConnection Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.WindowsUpdates + Remove-MgBetaWindowsUpdatesResourceConnection -ResourceConnectionId $resourceConnectionId + ``` This example shows how to use the Remove-MgBetaWindowsUpdatesResourceConnection Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Remove-MgBetaWindowsUpdatesResourceConnection Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.WindowsUpdates -Remove-MgBetaWindowsUpdatesResourceConnection -ResourceConnectionId $resourceConnectionId -``` -This example shows how to use the Remove-MgBetaWindowsUpdatesResourceConnection Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/WindowsUpdates/beta/examples/Remove-MgBetaWindowsUpdatesUpdatableAsset.md b/src/WindowsUpdates/beta/examples/Remove-MgBetaWindowsUpdatesUpdatableAsset.md index abd6046194..0e058ee8a7 100644 --- a/src/WindowsUpdates/beta/examples/Remove-MgBetaWindowsUpdatesUpdatableAsset.md +++ b/src/WindowsUpdates/beta/examples/Remove-MgBetaWindowsUpdatesUpdatableAsset.md @@ -1,21 +1,11 @@ -### Example 1: Using the Remove-MgBetaWindowsUpdatesUpdatableAsset Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.WindowsUpdates + Remove-MgBetaWindowsUpdatesUpdatableAsset -UpdatableAssetId $updatableAssetId + ``` This example shows how to use the Remove-MgBetaWindowsUpdatesUpdatableAsset Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Remove-MgBetaWindowsUpdatesUpdatableAsset Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.WindowsUpdates -Remove-MgBetaWindowsUpdatesUpdatableAsset -UpdatableAssetId $updatableAssetId -``` -This example shows how to use the Remove-MgBetaWindowsUpdatesUpdatableAsset Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 3: Using the Remove-MgBetaWindowsUpdatesUpdatableAsset Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.WindowsUpdates -Remove-MgBetaWindowsUpdatesUpdatableAsset -UpdatableAssetId $updatableAssetId -``` -This example shows how to use the Remove-MgBetaWindowsUpdatesUpdatableAsset Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/WindowsUpdates/beta/examples/Remove-MgBetaWindowsUpdatesUpdatableAssetMember.md b/src/WindowsUpdates/beta/examples/Remove-MgBetaWindowsUpdatesUpdatableAssetMember.md index 8b95f11b43..537dcddd4b 100644 --- a/src/WindowsUpdates/beta/examples/Remove-MgBetaWindowsUpdatesUpdatableAssetMember.md +++ b/src/WindowsUpdates/beta/examples/Remove-MgBetaWindowsUpdatesUpdatableAssetMember.md @@ -1,15 +1,20 @@ -### Example 1: Using the Remove-MgBetaWindowsUpdatesUpdatableAssetMember Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.WindowsUpdates + $params = @{ - Assets = @( + assets = @( @{ "@odata.type" = "#microsoft.graph.windowsUpdates.azureADDevice" - Id = "String (identifier)" + id = "String (identifier)" } ) } + Remove-MgBetaWindowsUpdatesUpdatableAssetMember -UpdatableAssetId $updatableAssetId -BodyParameter $params + ``` This example shows how to use the Remove-MgBetaWindowsUpdatesUpdatableAssetMember Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/WindowsUpdates/beta/examples/Remove-MgBetaWindowsUpdatesUpdatableAssetMemberById.md b/src/WindowsUpdates/beta/examples/Remove-MgBetaWindowsUpdatesUpdatableAssetMemberById.md index ce5bd66062..b1a5d6c69f 100644 --- a/src/WindowsUpdates/beta/examples/Remove-MgBetaWindowsUpdatesUpdatableAssetMemberById.md +++ b/src/WindowsUpdates/beta/examples/Remove-MgBetaWindowsUpdatesUpdatableAssetMemberById.md @@ -1,15 +1,20 @@ -### Example 1: Using the Remove-MgBetaWindowsUpdatesUpdatableAssetMemberById Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.WindowsUpdates + $params = @{ - Ids = @( - "String" - "String" - "String" - ) - MemberEntityType = "#microsoft.graph.windowsUpdates.azureADDevice" + ids = @( + "String" +"String" +"String" +) +memberEntityType = "#microsoft.graph.windowsUpdates.azureADDevice" } + Remove-MgBetaWindowsUpdatesUpdatableAssetMemberById -UpdatableAssetId $updatableAssetId -BodyParameter $params + ``` This example shows how to use the Remove-MgBetaWindowsUpdatesUpdatableAssetMemberById Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/WindowsUpdates/beta/examples/Update-MgBetaWindowsUpdatesDeployment.md b/src/WindowsUpdates/beta/examples/Update-MgBetaWindowsUpdatesDeployment.md index 3063e0329b..a6991bd33b 100644 --- a/src/WindowsUpdates/beta/examples/Update-MgBetaWindowsUpdatesDeployment.md +++ b/src/WindowsUpdates/beta/examples/Update-MgBetaWindowsUpdatesDeployment.md @@ -1,36 +1,46 @@ -### Example 1: Using the Update-MgBetaWindowsUpdatesDeployment Cmdlet +### Example 1: Pause a deployment + ```powershell + Import-Module Microsoft.Graph.Beta.WindowsUpdates + $params = @{ "@odata.type" = "#microsoft.graph.windowsUpdates.deployment" - State = @{ + state = @{ "@odata.type" = "microsoft.graph.windowsUpdates.deploymentState" - RequestedValue = "paused" + requestedValue = "paused" } } + Update-MgBetaWindowsUpdatesDeployment -DeploymentId $deploymentId -BodyParameter $params + ``` -This example shows how to use the Update-MgBetaWindowsUpdatesDeployment Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Update-MgBetaWindowsUpdatesDeployment Cmdlet +This example will pause a deployment + +### Example 2: Update deployment settings to add a monitoring rule + ```powershell + Import-Module Microsoft.Graph.Beta.WindowsUpdates + $params = @{ "@odata.type" = "#microsoft.graph.windowsUpdates.deployment" - Settings = @{ - "@odata.type" = "microsoft.graph.windowsUpdates.windowsDeploymentSettings" - Monitoring = @{ - MonitoringRules = @( + settings = @{ + "@odata.type" = "microsoft.graph.windowsUpdates.deploymentSettings" + monitoring = @{ + monitoringRules = @( @{ - Signal = "rollback" - Threshold = 5 - Action = "pauseDeployment" + signal = "rollback" + threshold = 5 + action = "pauseDeployment" } ) } } } + Update-MgBetaWindowsUpdatesDeployment -DeploymentId $deploymentId -BodyParameter $params + ``` -This example shows how to use the Update-MgBetaWindowsUpdatesDeployment Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +This example will update deployment settings to add a monitoring rule + diff --git a/src/WindowsUpdates/beta/examples/Update-MgBetaWindowsUpdatesDeploymentAudienceById.md b/src/WindowsUpdates/beta/examples/Update-MgBetaWindowsUpdatesDeploymentAudienceById.md index 53110926ee..943935ae4d 100644 --- a/src/WindowsUpdates/beta/examples/Update-MgBetaWindowsUpdatesDeploymentAudienceById.md +++ b/src/WindowsUpdates/beta/examples/Update-MgBetaWindowsUpdatesDeploymentAudienceById.md @@ -1,22 +1,27 @@ -### Example 1: Using the Update-MgBetaWindowsUpdatesDeploymentAudienceById Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.WindowsUpdates + $params = @{ - MemberEntityType = "String" - AddMembers = @( - "String" - ) - RemoveMembers = @( - "String" - ) - AddExclusions = @( - "String" - ) - RemoveExclusions = @( - "String" - ) + memberEntityType = "String" + addMembers = @( + "String" +) +removeMembers = @( +"String" +) +addExclusions = @( +"String" +) +removeExclusions = @( +"String" +) } + Update-MgBetaWindowsUpdatesDeploymentAudienceById -DeploymentId $deploymentId -BodyParameter $params + ``` This example shows how to use the Update-MgBetaWindowsUpdatesDeploymentAudienceById Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/WindowsUpdates/beta/examples/Update-MgBetaWindowsUpdatesResourceConnection.md b/src/WindowsUpdates/beta/examples/Update-MgBetaWindowsUpdatesResourceConnection.md index 093355d11d..e69de29bb2 100644 --- a/src/WindowsUpdates/beta/examples/Update-MgBetaWindowsUpdatesResourceConnection.md +++ b/src/WindowsUpdates/beta/examples/Update-MgBetaWindowsUpdatesResourceConnection.md @@ -1,18 +0,0 @@ -### 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 }} - diff --git a/src/WindowsUpdates/beta/examples/Update-MgBetaWindowsUpdatesUpdatableAsset.md b/src/WindowsUpdates/beta/examples/Update-MgBetaWindowsUpdatesUpdatableAsset.md index 093355d11d..e69de29bb2 100644 --- a/src/WindowsUpdates/beta/examples/Update-MgBetaWindowsUpdatesUpdatableAsset.md +++ b/src/WindowsUpdates/beta/examples/Update-MgBetaWindowsUpdatesUpdatableAsset.md @@ -1,18 +0,0 @@ -### 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 }} -