Microsoft.RecoveryServices コンテナー/extendedInformation 2022-03-01
Bicep リソース定義
コンテナー/extendedInformation リソースの種類は、次の場所にデプロイできます。
- リソース グループ - リソース グループのデプロイ コマンドに関するページを参照してください
各 API バージョンの変更されたプロパティの一覧については、「 変更ログ」を参照してください。
リソース形式
Microsoft.RecoveryServices/vaults/extendedInformation リソースを作成するには、次の Bicep をテンプレートに追加します。
resource symbolicname 'Microsoft.RecoveryServices/vaults/extendedInformation@2022-03-01' = {
name: 'vaultExtendedInfo'
parent: resourceSymbolicName
etag: 'string'
properties: {
algorithm: 'string'
encryptionKey: 'string'
encryptionKeyThumbprint: 'string'
integrityKey: 'string'
}
}
プロパティ値
vaults/extendedInformation
Name | 説明 | 値 |
---|---|---|
name | リソース名 Bicep で子リソースの名前と型を設定する方法を参照してください。 |
'vaultExtendedInfo' |
parent | Bicep では、子リソースの親リソースを指定できます。 このプロパティを追加する必要があるのは、子リソースが親リソースの外部で宣言されている場合のみです。 詳細については、「 親リソースの外部にある子リソース」を参照してください。 |
種類のリソースのシンボル名: コンテナー |
etag | オプションの ETag。 | string |
properties | コンテナーの拡張情報。 | VaultExtendedInfo |
VaultExtendedInfo
Name | 説明 | 値 |
---|---|---|
アルゴリズム | Vault ExtendedInfo のアルゴリズム | string |
encryptionKey | 暗号化キー。 | string |
encryptionKeyThumbprint | 暗号化キーの拇印。 | string |
integrityKey | 整合性キー。 | string |
ARM テンプレート リソース定義
コンテナー/extendedInformation リソースの種類は、次の場所にデプロイできます。
- リソース グループ - リソース グループのデプロイ コマンドに関するページを参照してください
各 API バージョンの変更されたプロパティの一覧については、「 変更ログ」を参照してください。
リソース形式
Microsoft.RecoveryServices/vaults/extendedInformation リソースを作成するには、次の JSON をテンプレートに追加します。
{
"type": "Microsoft.RecoveryServices/vaults/extendedInformation",
"apiVersion": "2022-03-01",
"name": "vaultExtendedInfo",
"etag": "string",
"properties": {
"algorithm": "string",
"encryptionKey": "string",
"encryptionKeyThumbprint": "string",
"integrityKey": "string"
}
}
プロパティ値
vaults/extendedInformation
Name | 説明 | 値 |
---|---|---|
type | リソースの種類 | 'Microsoft.RecoveryServices/vaults/extendedInformation' |
apiVersion | リソース API のバージョン | '2022-03-01' |
name | リソース名 JSON ARM テンプレートで子リソースの名前と型を設定する方法を参照してください。 |
'vaultExtendedInfo' |
etag | オプションの ETag。 | string |
properties | コンテナーの拡張情報。 | VaultExtendedInfo |
VaultExtendedInfo
Name | 説明 | 値 |
---|---|---|
アルゴリズム | Vault ExtendedInfo のアルゴリズム | string |
encryptionKey | 暗号化キー。 | string |
encryptionKeyThumbprint | 暗号化キーの拇印。 | string |
integrityKey | 整合性キー。 | string |
Terraform (AzAPI プロバイダー) リソース定義
コンテナー/extendedInformation リソースの種類は、次の場所にデプロイできます。
- リソース グループ
各 API バージョンの変更されたプロパティの一覧については、「 変更ログ」を参照してください。
リソース形式
Microsoft.RecoveryServices/vaults/extendedInformation リソースを作成するには、次の Terraform をテンプレートに追加します。
resource "azapi_resource" "symbolicname" {
type = "Microsoft.RecoveryServices/vaults/extendedInformation@2022-03-01"
name = "vaultExtendedInfo"
parent_id = "string"
body = jsonencode({
properties = {
algorithm = "string"
encryptionKey = "string"
encryptionKeyThumbprint = "string"
integrityKey = "string"
}
etag = "string"
})
}
プロパティ値
vaults/extendedInformation
Name | 説明 | 値 |
---|---|---|
type | リソースの種類 | "Microsoft.RecoveryServices/vaults/extendedInformation@2022-03-01" |
name | リソース名 | "vaultExtendedInfo" |
parent_id | このリソースの親であるリソースの ID。 | 種類のリソースの ID: コンテナー |
etag | オプションの ETag。 | string |
properties | コンテナーの拡張情報。 | VaultExtendedInfo |
VaultExtendedInfo
Name | 説明 | 値 |
---|---|---|
アルゴリズム | Vault ExtendedInfo のアルゴリズム | string |
encryptionKey | 暗号化キー。 | string |
encryptionKeyThumbprint | 暗号化キーの拇印。 | string |
integrityKey | 整合性キー。 | string |