Skip to content

Commit 7a05900

Browse files
authored
Merge pull request #609 from MicrosoftDocs/main
Merge changes in main to live
2 parents cedb2b7 + 0ce9644 commit 7a05900

File tree

372 files changed

+1368
-1146
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

372 files changed

+1368
-1146
lines changed

microsoftgraph/docfx.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
"src": "breadcrumb",
99
"dest": "microsoftgraph/breadcrumb"
1010
},
11+
{
12+
"files": [ "zone-pivot-groups.yml" ],
13+
"dest": "microsoftgraph"
14+
},
1115
{
1216
"files": [
1317
"**/*.md",

microsoftgraph/docs-conceptual/azuread-msoline-cmdlet-map.md

Lines changed: 140 additions & 128 deletions
Large diffs are not rendered by default.

microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgApplicationMemberObject.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,6 @@ Return all IDs for the groups, administrative units, and directory roles that a
5353
This function is transitive.
5454
Note: Only users and role-enabled groups can be members of directory roles.
5555

56-
**Permissions**
57-
[!INCLUDE [permissions-table](~/../graphref/api-reference/v1.0/includes/permissions/directoryobject-getmemberobjects-permissions.md)]
58-
5956
## PARAMETERS
6057

6158
### -AdditionalProperties

microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalAppRoleAssignedTo.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,6 @@ Get-MgServicePrincipalAppRoleAssignedTo -InputObject <IApplicationsIdentity> [-E
4242
## DESCRIPTION
4343
Read the properties and relationships of an appRoleAssignment object.
4444

45-
**Permissions**
46-
[!INCLUDE [permissions-table](~/../graphref/api-reference/v1.0/includes/permissions/approleassignment-get-permissions.md)]
47-
4845
**Permissions**
4946
[!INCLUDE [permissions-table](~/../graphref/api-reference/v1.0/includes/permissions/serviceprincipal-list-approleassignedto-permissions.md)]
5047

microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalAppRoleAssignment.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,6 @@ Get-MgServicePrincipalAppRoleAssignment -InputObject <IApplicationsIdentity> [-E
4242
## DESCRIPTION
4343
Read the properties and relationships of an appRoleAssignment object.
4444

45-
**Permissions**
46-
[!INCLUDE [permissions-table](~/../graphref/api-reference/v1.0/includes/permissions/approleassignment-get-permissions.md)]
47-
4845
**Permissions**
4946
[!INCLUDE [permissions-table](~/../graphref/api-reference/v1.0/includes/permissions/serviceprincipal-list-approleassignments-permissions.md)]
5047

microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Get-MgServicePrincipalMemberObject.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,6 @@ Return all IDs for the groups, administrative units, and directory roles that a
5353
This function is transitive.
5454
Note: Only users and role-enabled groups can be members of directory roles.
5555

56-
**Permissions**
57-
[!INCLUDE [permissions-table](~/../graphref/api-reference/v1.0/includes/permissions/directoryobject-getmemberobjects-permissions.md)]
58-
5956
## PARAMETERS
6057

6158
### -AdditionalProperties

microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Applications/Microsoft.Graph.Applications.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
Module Name: Microsoft.Graph.Applications
3-
Module Guid: d26cc847-a57a-4d56-b538-23dec96b9856
3+
Module Guid: 6e2b9af6-c0c8-45f6-9012-c67320f8aad2
44
Download Help Link: https://learn.microsoft.com/en-us/powershell/module/microsoft.graph.applications/?view=graph-powershell-1.0
55
Help Version: 1.0.0.0
66
Locale: en-US

microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Microsoft.Graph.BackupRestore.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
Module Name: Microsoft.Graph.BackupRestore
3-
Module Guid: 7159c701-4284-4e47-944a-f47aa6b28090
3+
Module Guid: a7ade287-8707-4d05-b5bc-24d47286e3d3
44
Download Help Link: https://learn.microsoft.com/en-us/powershell/module/microsoft.graph.backuprestore/?view=graph-powershell-1.0
55
Help Version: 1.0.0.0
66
Locale: en-US

microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Initialize-MgBackupRestoreProtectionPolicy.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,30 @@ You can add or remove artifacts (sites or user accounts) to or from each active
3838
**Permissions**
3939
[!INCLUDE [permissions-table](~/../graphref/api-reference/v1.0/includes/permissions/protectionpolicybase-activate-permissions.md)]
4040

41+
## EXAMPLES
42+
### Example 1: Activate an inactive protection policy
43+
44+
```powershell
45+
46+
Import-Module Microsoft.Graph.Bookings
47+
48+
Initialize-MgBackupRestoreProtectionPolicy -ProtectionPolicyBaseId $protectionPolicyBaseId
49+
50+
```
51+
This example will activate an inactive protection policy
52+
53+
### Example 2: Activate an active protection policy
54+
55+
```powershell
56+
57+
Import-Module Microsoft.Graph.Bookings
58+
59+
Initialize-MgBackupRestoreProtectionPolicy -ProtectionPolicyBaseId $protectionPolicyBaseId
60+
61+
```
62+
This example will activate an active protection policy
63+
64+
4165
## PARAMETERS
4266

4367
### -Headers
@@ -196,4 +220,3 @@ INPUTOBJECT `<IBookingsIdentity>`: Identity Parameter
196220

197221

198222

199-

microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Bookings/Initialize-MgBackupRestoreServiceApp.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,23 @@ Activate a serviceApp.
5252
**Permissions**
5353
[!INCLUDE [permissions-table](~/../graphref/api-reference/v1.0/includes/permissions/serviceapp-activate-permissions.md)]
5454

55+
## EXAMPLES
56+
### Example 1: Code snippet
57+
58+
```powershell
59+
60+
Import-Module Microsoft.Graph.Bookings
61+
62+
$params = @{
63+
effectiveDateTime = [System.DateTime]::Parse("2024-04-19T12:01:03.45Z")
64+
}
65+
66+
Initialize-MgBackupRestoreServiceApp -ServiceAppId $serviceAppId -BodyParameter $params
67+
68+
```
69+
This example shows how to use the Initialize-MgBackupRestoreServiceApp Cmdlet.
70+
71+
5572
## PARAMETERS
5673

5774
### -AdditionalProperties
@@ -261,4 +278,3 @@ INPUTOBJECT `<IBookingsIdentity>`: Identity Parameter
261278

262279

263280

264-

0 commit comments

Comments
 (0)