Skip to content

Commit 371a182

Browse files
authored
Merge pull request MicrosoftDocs#7138 from MicrosoftDocs/DAREP-chrisda
DAREP-chrisda to Master
2 parents 241bd1b + 1156c46 commit 371a182

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

exchange/exchange-ps/exchange/Get-M365DataAtRestEncryptionPolicy.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Get-M365DataAtRestEncryptionPolicy [[-Identity] <DataEncryptionPolicyIdParameter
3333
## DESCRIPTION
3434
M365 data-at-rest encryption policy cmdlets are accessible to compliance administrator role as part of the Exchange Online infrastructure. For more information, see [Overview of M365 Customer Key at the tenant level](https://docs.microsoft.com/microsoft-365/compliance/customer-key-tenant-level#get-policy-details).
3535

36-
You can create and assign a data-at-rest encryption policy at the tenant level by using the appropriate M365DataAtRestEncryptionPolicy cmdlets in Exchange Online PowerShell.
36+
You can create and assign a Microsoft 365 data-at-rest encryption policy at the tenant level by using the appropriate M365DataAtRestEncryptionPolicy cmdlets in Exchange Online PowerShell.
3737

3838
You need to be assigned permissions before you can run this cmdlet. Although this topic lists all parameters for the cmdlet, you may not have access to some parameters if they're not included in the permissions assigned to you. To find the permissions required to run any cmdlet or parameter in your organization, see [Find the permissions required to run any Exchange cmdlet](https://docs.microsoft.com/powershell/exchange/find-exchange-cmdlet-permissions).
3939

@@ -44,7 +44,7 @@ You need to be assigned permissions before you can run this cmdlet. Although thi
4444
Get-M365DataAtRestEncryptionPolicy
4545
```
4646

47-
This example returns a summary list of all data-at-rest encryption policies.
47+
This example returns a summary list of all Microsoft 365 data-at-rest encryption policies.
4848

4949
### Example 2
5050
```powershell
@@ -56,7 +56,7 @@ This example returns detailed information about the policy named Contoso Corpora
5656
## PARAMETERS
5757

5858
### -Identity
59-
The Identity parameter specifies the data-at-rest encryption policy that you want to view. You can use any value that uniquely identifies the policy. For example:
59+
The Identity parameter specifies the Microsoft 365 data-at-rest encryption policy that you want to view. You can use any value that uniquely identifies the policy. For example:
6060

6161
- Name
6262
- Distinguished name (DN)

exchange/exchange-ps/exchange/Get-M365DataAtRestEncryptionPolicyAssignment.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Get-M365DataAtRestEncryptionPolicyAssignment [<CommonParameters>]
2727
```
2828

2929
## DESCRIPTION
30-
This cmdlet lists the policy that's currently assigned to the tenant.
30+
This cmdlet lists the Microsoft 365 data-at-rest encryption policy that's currently assigned to the tenant.
3131

3232
You need to be assigned permissions before you can run this cmdlet. Although this topic lists all parameters for the cmdlet, you may not have access to some parameters if they're not included in the permissions assigned to you. To find the permissions required to run any cmdlet or parameter in your organization, see [Find the permissions required to run any Exchange cmdlet](https://docs.microsoft.com/powershell/exchange/find-exchange-cmdlet-permissions).
3333

@@ -38,14 +38,14 @@ You need to be assigned permissions before you can run this cmdlet. Although thi
3838
Get-M365DataAtRestEncryptionPolicyAssignment
3939
```
4040

41-
This example returns a summary list of all data-at-rest encryption policy assignments.
41+
This example returns a summary list of all Microsoft 365 data-at-rest encryption policy assignments.
4242

4343
### Example 2
4444
```powershell
4545
Get-M365DataAtRestEncryptionPolicyAssignment | Format-List
4646
```
4747

48-
This example returns detailed information for all data-at-rest encryption policy assignments.
48+
This example returns detailed information for all Microsoft 365 data-at-rest encryption policy assignments.
4949

5050
### CommonParameters
5151
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/p/?LinkID=113216).

exchange/exchange-ps/exchange/New-M365DataAtRestEncryptionPolicy.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,21 +33,23 @@ New-M365DataAtRestEncryptionPolicy [-Name] <String> -AzureKeyIDs <MultiValuedPro
3333
```
3434

3535
## DESCRIPTION
36+
Use the New-M365DataAtRestEncryptionPolicy cmdlet to create a new Microsoft 365 data-at-rest encryption policy. For more information, see [Overview of M365 Customer Key at the tenant level](https://docs.microsoft.com/microsoft-365/compliance/customer-key-tenant-level#get-policy-details).
37+
3638
You need to be assigned permissions before you can run this cmdlet. Although this topic lists all parameters for the cmdlet, you may not have access to some parameters if they're not included in the permissions assigned to you. To find the permissions required to run any cmdlet or parameter in your organization, see [Find the permissions required to run any Exchange cmdlet](https://docs.microsoft.com/powershell/exchange/find-exchange-cmdlet-permissions).
3739

3840
## EXAMPLES
3941

4042
### Example 1
4143
```powershell
42-
New-M365DataAtRestEncryptionPolicy -Name "US Mailboxes" -AzureKeyIDs "https://contoso.vault.azure.net/keys/key1/",https://contoso.vault.azure.net/keys/key2/" -Description "Root key for mailboxes located in US territories"
44+
New-M365DataAtRestEncryptionPolicy -Name "Default_Policy" -AzureKeyIDs "https://contosoWestUSvault01.vault.azure.net/keys/Key_01","https://contosoEastUSvault01.vault.azure.net/keys/Key_02" -Description "Tenant default policy"
4345
```
4446

45-
This example creates a data-at-rest encryption policy named US Mailboxes with the specified Azure Key Vault keys and description.
47+
This example creates a Microsoft 365 data-at-rest encryption policy named Default_Policy with the specified Azure Key Vault keys and description.
4648

4749
## PARAMETERS
4850

4951
### -Name
50-
The Name parameter specifies a unique name for the data-at-rest encryption policy. If the value contains spaces, enclose the value in quotation marks (").
52+
The Name parameter specifies a unique name for the Microsoft 365 data-at-rest encryption policy. If the value contains spaces, enclose the value in quotation marks (").
5153

5254
```yaml
5355
Type: String

0 commit comments

Comments
 (0)