Microsoft.RecoveryServices vaults/extendedInformation 2024-02-01
- Latest
- 2024-04-30-preview
- 2024-04-01
- 2024-02-01
- 2024-01-01
- 2023-08-01
- 2023-06-01
- 2023-04-01
- 2023-02-01
- 2023-01-01
- 2022-10-01
- 2022-09-30-preview
- 2022-09-10
- 2022-08-01
- 2022-05-01
- 2022-04-01
- 2022-03-01
- 2022-02-01
- 2022-01-31-preview
- 2022-01-01
- 2021-12-01
- 2021-11-01-preview
- 2021-08-01
- 2021-07-01
- 2021-06-01
- 2021-04-01
- 2021-03-01
- 2021-02-10
- 2021-01-01
- 2020-10-01
- 2020-02-02
- 2016-06-01
Bicep resource definition
The vaults/extendedInformation 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.RecoveryServices/vaults/extendedInformation resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.RecoveryServices/vaults/extendedInformation@2024-02-01' = {
name: 'vaultExtendedInfo'
parent: resourceSymbolicName
etag: 'string'
properties: {
algorithm: 'string'
encryptionKey: 'string'
encryptionKeyThumbprint: 'string'
integrityKey: 'string'
}
}
Property values
vaults/extendedInformation
Name | Description | Value |
---|---|---|
name | The resource name See how to set names and types for child resources in Bicep. |
'vaultExtendedInfo' |
parent | In Bicep, you can specify the parent resource for a child resource. You only need to add this property when the child resource is declared outside of the parent resource. For more information, see Child resource outside parent resource. |
Symbolic name for resource of type: vaults |
etag | Optional ETag. | string |
properties | Vault extended information. | VaultExtendedInfo |
VaultExtendedInfo
Name | Description | Value |
---|---|---|
algorithm | Algorithm for Vault ExtendedInfo | string |
encryptionKey | Encryption key. | string |
encryptionKeyThumbprint | Encryption key thumbprint. | string |
integrityKey | Integrity key. | string |
ARM template resource definition
The vaults/extendedInformation 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.RecoveryServices/vaults/extendedInformation resource, add the following JSON to your template.
{
"type": "Microsoft.RecoveryServices/vaults/extendedInformation",
"apiVersion": "2024-02-01",
"name": "vaultExtendedInfo",
"etag": "string",
"properties": {
"algorithm": "string",
"encryptionKey": "string",
"encryptionKeyThumbprint": "string",
"integrityKey": "string"
}
}
Property values
vaults/extendedInformation
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.RecoveryServices/vaults/extendedInformation' |
apiVersion | The resource api version | '2024-02-01' |
name | The resource name See how to set names and types for child resources in JSON ARM templates. |
'vaultExtendedInfo' |
etag | Optional ETag. | string |
properties | Vault extended information. | VaultExtendedInfo |
VaultExtendedInfo
Name | Description | Value |
---|---|---|
algorithm | Algorithm for Vault ExtendedInfo | string |
encryptionKey | Encryption key. | string |
encryptionKeyThumbprint | Encryption key thumbprint. | string |
integrityKey | Integrity key. | string |
Terraform (AzAPI provider) resource definition
The vaults/extendedInformation 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.RecoveryServices/vaults/extendedInformation resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.RecoveryServices/vaults/extendedInformation@2024-02-01"
name = "vaultExtendedInfo"
parent_id = "string"
body = jsonencode({
properties = {
algorithm = "string"
encryptionKey = "string"
encryptionKeyThumbprint = "string"
integrityKey = "string"
}
etag = "string"
})
}
Property values
vaults/extendedInformation
Name | Description | Value |
---|---|---|
type | The resource type | "Microsoft.RecoveryServices/vaults/extendedInformation@2024-02-01" |
name | The resource name | "vaultExtendedInfo" |
parent_id | The ID of the resource that is the parent for this resource. | ID for resource of type: vaults |
etag | Optional ETag. | string |
properties | Vault extended information. | VaultExtendedInfo |
VaultExtendedInfo
Name | Description | Value |
---|---|---|
algorithm | Algorithm for Vault ExtendedInfo | string |
encryptionKey | Encryption key. | string |
encryptionKeyThumbprint | Encryption key thumbprint. | string |
integrityKey | Integrity key. | string |