From 683665513d8ce28c8eaf9dbbde4b497c7eeedfe0 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 12 Apr 2024 04:34:43 +0000 Subject: [PATCH] Updating examples --- .../beta/examples/Get-MgBetaSearchAcronym.md | 15 ++--- .../beta/examples/Get-MgBetaSearchBookmark.md | 15 ++--- .../beta/examples/Get-MgBetaSearchQna.md | 15 ++--- .../beta/examples/New-MgBetaSearchAcronym.md | 19 ++++-- .../beta/examples/New-MgBetaSearchBookmark.md | 61 +++++++++-------- .../beta/examples/New-MgBetaSearchQna.md | 67 ++++++++++--------- .../Get-MgBetaSecurityLabelRetentionLabel.md | 15 ++--- .../New-MgBetaSecurityLabelRetentionLabel.md | 38 +++++++---- ...emove-MgBetaSecurityLabelRetentionLabel.md | 8 ++- ...pdate-MgBetaSecurityLabelRetentionLabel.md | 27 ++++---- 10 files changed, 148 insertions(+), 132 deletions(-) diff --git a/src/Search/beta/examples/Get-MgBetaSearchAcronym.md b/src/Search/beta/examples/Get-MgBetaSearchAcronym.md index b26f2e39f45..db0eaabd3e9 100644 --- a/src/Search/beta/examples/Get-MgBetaSearchAcronym.md +++ b/src/Search/beta/examples/Get-MgBetaSearchAcronym.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaSearchAcronym Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Search -Get-MgBetaSearchAcronym -AcronymId $acronymId -``` -This example shows how to use the Get-MgBetaSearchAcronym Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaSearchAcronym Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Search + Get-MgBetaSearchAcronym + ``` This example shows how to use the Get-MgBetaSearchAcronym Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Search/beta/examples/Get-MgBetaSearchBookmark.md b/src/Search/beta/examples/Get-MgBetaSearchBookmark.md index 20418e5a6a8..466bd294483 100644 --- a/src/Search/beta/examples/Get-MgBetaSearchBookmark.md +++ b/src/Search/beta/examples/Get-MgBetaSearchBookmark.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaSearchBookmark Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Search -Get-MgBetaSearchBookmark -BookmarkId $bookmarkId -``` -This example shows how to use the Get-MgBetaSearchBookmark Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaSearchBookmark Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Search + Get-MgBetaSearchBookmark + ``` This example shows how to use the Get-MgBetaSearchBookmark Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Search/beta/examples/Get-MgBetaSearchQna.md b/src/Search/beta/examples/Get-MgBetaSearchQna.md index eb18b089b71..dfae8d0d958 100644 --- a/src/Search/beta/examples/Get-MgBetaSearchQna.md +++ b/src/Search/beta/examples/Get-MgBetaSearchQna.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaSearchQna Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Search -Get-MgBetaSearchQna -QnaId $qnaId -``` -This example shows how to use the Get-MgBetaSearchQna Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaSearchQna Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Search + Get-MgBetaSearchQna + ``` This example shows how to use the Get-MgBetaSearchQna Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Search/beta/examples/New-MgBetaSearchAcronym.md b/src/Search/beta/examples/New-MgBetaSearchAcronym.md index ec95b639f4d..b4ee89b1a5f 100644 --- a/src/Search/beta/examples/New-MgBetaSearchAcronym.md +++ b/src/Search/beta/examples/New-MgBetaSearchAcronym.md @@ -1,14 +1,19 @@ -### Example 1: Using the New-MgBetaSearchAcronym Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Search + $params = @{ - DisplayName = "DNN" - StandsFor = "Deep Neural Network" - Description = "A deep neural network is a neural network with a certain level of complexity, a neural network with more than two layers." - WebUrl = "http://microsoft.com/deep-neural-network" - State = "draft" + displayName = "DNN" + standsFor = "Deep Neural Network" + description = "A deep neural network is a neural network with a certain level of complexity, a neural network with more than two layers." + webUrl = "http://microsoft.com/deep-neural-network" + state = "draft" } + New-MgBetaSearchAcronym -BodyParameter $params + ``` This example shows how to use the New-MgBetaSearchAcronym Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Search/beta/examples/New-MgBetaSearchBookmark.md b/src/Search/beta/examples/New-MgBetaSearchBookmark.md index b4117c33a13..257b49faf43 100644 --- a/src/Search/beta/examples/New-MgBetaSearchBookmark.md +++ b/src/Search/beta/examples/New-MgBetaSearchBookmark.md @@ -1,35 +1,40 @@ -### Example 1: Using the New-MgBetaSearchBookmark Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Search + $params = @{ - DisplayName = "Contoso Install Site" - WebUrl = "http://www.contoso.com/" - Description = "Try or buy Contoso for Home or Business and view product information" - Keywords = @{ - Keywords = @( - "Contoso" - "install" - ) - ReservedKeywords = @( - "Contoso" - ) - MatchSimilarKeywords = $true - } - AvailabilityStartDateTime = $null - AvailabilityEndDateTime = $null - Platforms = @( - "windows" - ) - TargetedVariations = @( - @{ - LanguageTag = "es-es" - DisplayName = "Sitio de instalación Contoso" - Description = "Pruebe o compre Contoso hogar o negocios y vea la información del producto" - } - ) - State = "published" + displayName = "Contoso Install Site" + webUrl = "http://www.contoso.com/" + description = "Try or buy Contoso for Home or Business and view product information" + keywords = @{ + keywords = @( + "Contoso" + "install" +) +reservedKeywords = @( +"Contoso" +) +matchSimilarKeywords = $true } +availabilityStartDateTime = $null +availabilityEndDateTime = $null +platforms = @( +"windows" +) +targetedVariations = @( +@{ +languageTag = "es-es" +displayName = "Sitio de instalación Contoso" +description = "Pruebe o compre Contoso hogar o negocios y vea la información del producto" +} +) +state = "published" +} + New-MgBetaSearchBookmark -BodyParameter $params + ``` This example shows how to use the New-MgBetaSearchBookmark Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Search/beta/examples/New-MgBetaSearchQna.md b/src/Search/beta/examples/New-MgBetaSearchQna.md index 010b1354f47..dc1e935a8a1 100644 --- a/src/Search/beta/examples/New-MgBetaSearchQna.md +++ b/src/Search/beta/examples/New-MgBetaSearchQna.md @@ -1,38 +1,43 @@ -### Example 1: Using the New-MgBetaSearchQna Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Search + $params = @{ - DisplayName = "Global Country Holidays" - WebUrl = "http://www.contoso.com/" - Description = "The dates that Contoso offices will be closed to observe holidays. These dates may differ from the actual date of the holiday in cases where the holiday falls on a wee​kend.
2021 Dates Holiday
January 1, 2021 New Year's Day
January 18, 2021 Martin Luther King Day
February 15, 2021 Presidents Day
May 31, 2021 Memorial Day
July 5, 2021 Independence Day
September 6, 2021 Labor Day
November 25, 2021 - November 26, 2021 Thanksgiving Day and Day after Thanksgiving
December 23, 2021 - December 24, 2021 Christmas Eve and Christmas Day
" - Keywords = @{ - Keywords = @( - "new years day" - "martin luther king day" - "presidents day" - "memorial day" - "independence day" - "labor day" - "thanksgiving" - "christmas" - ) - ReservedKeywords = @( - "holidays" - "paid days off" - ) - MatchSimilarKeywords = $true - } - AvailabilityStartDateTime = [System.DateTime]::Parse("2020-09-21T20:01:37Z") - AvailabilityEndDateTime = [System.DateTime]::Parse("2021-12-31T20:01:37Z") - LanguageTags = @( - "en-us" - ) - Platforms = @( - "ios" - ) - State = "published" + displayName = "Global Country Holidays" + webUrl = "http://www.contoso.com/" + description = "The dates that Contoso offices will be closed to observe holidays. These dates may differ from the actual date of the holiday in cases where the holiday falls on a weekend.
2021 Dates Holiday
January 1, 2021 New Year's Day
January 18, 2021 Martin Luther King Day
February 15, 2021 Presidents Day
May 31, 2021 Memorial Day
July 5, 2021 Independence Day
September 6, 2021 Labor Day
November 25, 2021 - November 26, 2021 Thanksgiving Day and Day after Thanksgiving
December 23, 2021 - December 24, 2021 Christmas Eve and Christmas Day
" + keywords = @{ + keywords = @( + "new years day" + "martin luther king day" +"presidents day" +"memorial day" +"independence day" +"labor day" +"thanksgiving" +"christmas" +) +reservedKeywords = @( +"holidays" +"paid days off" +) +matchSimilarKeywords = $true } +availabilityStartDateTime = [System.DateTime]::Parse("2020-09-21T20:01:37Z") +availabilityEndDateTime = [System.DateTime]::Parse("2021-12-31T20:01:37Z") +languageTags = @( +"en-us" +) +platforms = @( +"ios" +) +state = "published" +} + New-MgBetaSearchQna -BodyParameter $params + ``` This example shows how to use the New-MgBetaSearchQna Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Get-MgBetaSecurityLabelRetentionLabel.md b/src/Security/beta/examples/Get-MgBetaSecurityLabelRetentionLabel.md index 89c944f2236..5b7a2154d41 100644 --- a/src/Security/beta/examples/Get-MgBetaSecurityLabelRetentionLabel.md +++ b/src/Security/beta/examples/Get-MgBetaSecurityLabelRetentionLabel.md @@ -1,14 +1,11 @@ -### Example 1: Using the Get-MgBetaSecurityLabelRetentionLabel Cmdlet -```powershell -Import-Module Microsoft.Graph.Beta.Security -Get-MgBetaSecurityLabelRetentionLabel -RetentionLabelId $retentionLabelId -``` -This example shows how to use the Get-MgBetaSecurityLabelRetentionLabel Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). -### Example 2: Using the Get-MgBetaSecurityLabelRetentionLabel Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + Get-MgBetaSecurityLabelRetentionLabel + ``` This example shows how to use the Get-MgBetaSecurityLabelRetentionLabel Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/New-MgBetaSecurityLabelRetentionLabel.md b/src/Security/beta/examples/New-MgBetaSecurityLabelRetentionLabel.md index 2aceefeb42e..b271bd7639b 100644 --- a/src/Security/beta/examples/New-MgBetaSecurityLabelRetentionLabel.md +++ b/src/Security/beta/examples/New-MgBetaSecurityLabelRetentionLabel.md @@ -1,25 +1,37 @@ -### Example 1: Using the New-MgBetaSecurityLabelRetentionLabel Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + $params = @{ "@odata.type" = "#microsoft.graph.security.retentionLabel" - DisplayName = "String" - BehaviorDuringRetentionPeriod = "String" - ActionAfterRetentionPeriod = "String" - RetentionTrigger = "String" - RetentionDuration = @{ + displayName = "String" + behaviorDuringRetentionPeriod = "String" + actionAfterRetentionPeriod = "String" + retentionTrigger = "String" + retentionDuration = @{ "@odata.type" = "microsoft.graph.security.retentionDuration" } - IsInUse = "Boolean" - DescriptionForAdmins = "String" - DescriptionForUsers = "String" - CreatedBy = @{ + isInUse = "Boolean" + descriptionForAdmins = "String" + descriptionForUsers = "String" + createdBy = @{ "@odata.type" = "microsoft.graph.identitySet" } - LabelToBeApplied = "String" - DefaultRecordBehavior = "String" + labelToBeApplied = "String" + defaultRecordBehavior = "String" + descriptors = @{ + "authorityTemplate@odata.bind" = "https://graph.microsoft.com/beta/security/labels/authorities('fie3f4fc-b966-4c40-94de-fb8a383658e4')" + "categoryTemplate@odata.bind" = "https://graph.microsoft.com/beta/security/labels/categories('0bjk8-b966-4c40-94de-fb8a383658e4')" + "citationTemplate@odata.bind" = "https://graph.microsoft.com/beta/security/labels/citations('0e23f4fc-b966-4c40-94de-fb8a383658e4')" + "departmentTemplate@odata.bind" = "https://graph.microsoft.com/beta/security/labels/departments('p99ef4fc-b966-4c40-94de-fb8a383658e4')" + "filePlanReferenceTemplate@odata.bind" = "https://graph.microsoft.com/beta/security/labels/filePlanReferences('e095f4fc-b966-4c40-94de-fb8a383658e4')" + } } + New-MgBetaSecurityLabelRetentionLabel -BodyParameter $params + ``` This example shows how to use the New-MgBetaSecurityLabelRetentionLabel Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Remove-MgBetaSecurityLabelRetentionLabel.md b/src/Security/beta/examples/Remove-MgBetaSecurityLabelRetentionLabel.md index 3640c6b4057..4047f59018b 100644 --- a/src/Security/beta/examples/Remove-MgBetaSecurityLabelRetentionLabel.md +++ b/src/Security/beta/examples/Remove-MgBetaSecurityLabelRetentionLabel.md @@ -1,7 +1,11 @@ -### Example 1: Using the Remove-MgBetaSecurityLabelRetentionLabel Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + Remove-MgBetaSecurityLabelRetentionLabel -RetentionLabelId $retentionLabelId + ``` This example shows how to use the Remove-MgBetaSecurityLabelRetentionLabel Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). + diff --git a/src/Security/beta/examples/Update-MgBetaSecurityLabelRetentionLabel.md b/src/Security/beta/examples/Update-MgBetaSecurityLabelRetentionLabel.md index f35057babe7..d542bf536c5 100644 --- a/src/Security/beta/examples/Update-MgBetaSecurityLabelRetentionLabel.md +++ b/src/Security/beta/examples/Update-MgBetaSecurityLabelRetentionLabel.md @@ -1,25 +1,22 @@ -### Example 1: Using the Update-MgBetaSecurityLabelRetentionLabel Cmdlet +### Example 1: Code snippet + ```powershell + Import-Module Microsoft.Graph.Beta.Security + $params = @{ "@odata.type" = "#microsoft.graph.security.retentionLabel" - DisplayName = "String" - BehaviorDuringRetentionPeriod = "String" - ActionAfterRetentionPeriod = "String" - RetentionTrigger = "String" - RetentionDuration = @{ + retentionDuration = @{ "@odata.type" = "microsoft.graph.security.retentionDuration" } - IsInUse = "Boolean" - DescriptionForAdmins = "String" - DescriptionForUsers = "String" - CreatedBy = @{ - "@odata.type" = "microsoft.graph.identitySet" - } - LabelToBeApplied = "String" - DefaultRecordBehavior = "String" + descriptionForAdmins = "String" + descriptionForUsers = "String" + labelToBeApplied = "String" + defaultRecordBehavior = "String" } + Update-MgBetaSecurityLabelRetentionLabel -RetentionLabelId $retentionLabelId -BodyParameter $params + ``` This example shows how to use the Update-MgBetaSecurityLabelRetentionLabel Cmdlet. -To learn about permissions for this resource, see the [permissions reference](/graph/permissions-reference). +