Anteckning
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
- Latest
- 2025-02-01
- 2025-01-01
- 2024-04-01
- 2024-03-01
- 2024-02-01-preview
- 2023-12-01
- 2023-11-01
- 2023-08-01-preview
- 2023-06-01-preview
- 2023-05-01
- 2023-04-01-preview
- 2023-01-01
- 2022-12-01
- 2022-11-01-preview
- 2022-10-01-preview
- 2022-09-01-preview
- 2022-05-01
- 2022-04-01
- 2022-03-31-preview
- 2022-03-01
- 2022-02-01-preview
- 2022-01-01
- 2021-12-01-preview
- 2021-10-01-preview
- 2021-07-01
Bicep resource definition
The resourceGuards resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.DataProtection/resourceGuards resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.DataProtection/resourceGuards@2022-09-01-preview' = {
eTag: 'string'
identity: {
type: 'string'
}
location: 'string'
name: 'string'
properties: {
vaultCriticalOperationExclusionList: [
'string'
]
}
tags: {
{customized property}: 'string'
}
}
Property Values
DppIdentityDetails
Name | Description | Value |
---|---|---|
type | The identityType which can be either SystemAssigned or None | string |
DppTrackedResourceTags
Name | Description | Value |
---|
Microsoft.DataProtection/resourceGuards
Name | Description | Value |
---|---|---|
eTag | Optional ETag. | string |
identity | Input Managed Identity Details | DppIdentityDetails |
location | Resource location. | string |
name | The resource name | string (required) |
properties | ResourceGuardResource properties | ResourceGuard |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
ResourceGuard
Name | Description | Value |
---|---|---|
vaultCriticalOperationExclusionList | List of critical operations which are not protected by this resourceGuard | string[] |
ARM template resource definition
The resourceGuards resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.DataProtection/resourceGuards resource, add the following JSON to your template.
{
"type": "Microsoft.DataProtection/resourceGuards",
"apiVersion": "2022-09-01-preview",
"name": "string",
"eTag": "string",
"identity": {
"type": "string"
},
"location": "string",
"properties": {
"vaultCriticalOperationExclusionList": [ "string" ]
},
"tags": {
"{customized property}": "string"
}
}
Property Values
DppIdentityDetails
Name | Description | Value |
---|---|---|
type | The identityType which can be either SystemAssigned or None | string |
DppTrackedResourceTags
Name | Description | Value |
---|
Microsoft.DataProtection/resourceGuards
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2022-09-01-preview' |
eTag | Optional ETag. | string |
identity | Input Managed Identity Details | DppIdentityDetails |
location | Resource location. | string |
name | The resource name | string (required) |
properties | ResourceGuardResource properties | ResourceGuard |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
type | The resource type | 'Microsoft.DataProtection/resourceGuards' |
ResourceGuard
Name | Description | Value |
---|---|---|
vaultCriticalOperationExclusionList | List of critical operations which are not protected by this resourceGuard | string[] |
Användningsexempel
Terraform (AzAPI provider) resource definition
The resourceGuards resource type can be deployed with operations that target:
- Resource groups
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.DataProtection/resourceGuards resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.DataProtection/resourceGuards@2022-09-01-preview"
name = "string"
parent_id = "string"
identity {
type = "string"
identity_ids = [
"string"
]
}
location = "string"
tags = {
{customized property} = "string"
}
body = {
eTag = "string"
properties = {
vaultCriticalOperationExclusionList = [
"string"
]
}
}
}
Property Values
DppIdentityDetails
Name | Description | Value |
---|---|---|
type | The identityType which can be either SystemAssigned or None | string |
DppTrackedResourceTags
Name | Description | Value |
---|
Microsoft.DataProtection/resourceGuards
Name | Description | Value |
---|---|---|
eTag | Optional ETag. | string |
identity | Input Managed Identity Details | DppIdentityDetails |
location | Resource location. | string |
name | The resource name | string (required) |
properties | ResourceGuardResource properties | ResourceGuard |
tags | Resource tags | Dictionary of tag names and values. |
type | The resource type | "Microsoft.DataProtection/resourceGuards@2022-09-01-preview" |
ResourceGuard
Name | Description | Value |
---|---|---|
vaultCriticalOperationExclusionList | List of critical operations which are not protected by this resourceGuard | string[] |