Microsoft.Compute restorePointCollections 2021-07-01
- [アーティクル]
-
-
Bicep リソース定義
restorePointCollections リソースの種類は、次を対象とする操作と共にデプロイできます。
-
リソース グループの - リソース グループのデプロイ コマンド 参照
各 API バージョンで変更されたプロパティの一覧については、変更ログの参照してください。
Microsoft.Compute/restorePointCollections リソースを作成するには、次の Bicep をテンプレートに追加します。
resource symbolicname 'Microsoft.Compute/restorePointCollections@2021-07-01' = {
location: 'string'
name: 'string'
properties: {
source: {
id: 'string'
}
}
tags: {
{customized property}: 'string'
}
}
プロパティ値
Microsoft.Compute/restorePointCollections
名前 |
形容 |
価値 |
場所 |
リソースの場所 |
string (必須) |
名前 |
リソース名 |
string (必須) |
プロパティ |
復元ポイント コレクションのプロパティ。 |
RestorePointCollectionProperties の |
タグ |
リソース タグ |
タグ名と値のディクショナリ。 テンプレート の タグを参照してください |
RestorePointCollectionProperties
名前 |
形容 |
価値 |
源 |
この復元ポイント コレクションの作成元のソース リソースのプロパティ。 |
RestorePointCollectionSourceProperties の |
RestorePointCollectionSourceProperties
名前 |
形容 |
価値 |
身分証明書 |
この復元ポイント コレクションの作成に使用されるソース リソースのリソース ID |
糸 |
ARM テンプレート リソース定義
restorePointCollections リソースの種類は、次を対象とする操作と共にデプロイできます。
-
リソース グループの - リソース グループのデプロイ コマンド 参照
各 API バージョンで変更されたプロパティの一覧については、変更ログの参照してください。
Microsoft.Compute/restorePointCollections リソースを作成するには、次の JSON をテンプレートに追加します。
{
"type": "Microsoft.Compute/restorePointCollections",
"apiVersion": "2021-07-01",
"name": "string",
"location": "string",
"properties": {
"source": {
"id": "string"
}
},
"tags": {
"{customized property}": "string"
}
}
プロパティ値
Microsoft.Compute/restorePointCollections
名前 |
形容 |
価値 |
apiVersion |
API のバージョン |
'2021-07-01' |
場所 |
リソースの場所 |
string (必須) |
名前 |
リソース名 |
string (必須) |
プロパティ |
復元ポイント コレクションのプロパティ。 |
RestorePointCollectionProperties の |
タグ |
リソース タグ |
タグ名と値のディクショナリ。 テンプレート の タグを参照してください |
種類 |
リソースの種類 |
'Microsoft.Compute/restorePointCollections' |
RestorePointCollectionProperties
名前 |
形容 |
価値 |
源 |
この復元ポイント コレクションの作成元のソース リソースのプロパティ。 |
RestorePointCollectionSourceProperties の |
RestorePointCollectionSourceProperties
名前 |
形容 |
価値 |
身分証明書 |
この復元ポイント コレクションの作成に使用されるソース リソースのリソース ID |
糸 |
restorePointCollections リソースの種類は、次を対象とする操作と共にデプロイできます。
各 API バージョンで変更されたプロパティの一覧については、変更ログの参照してください。
Microsoft.Compute/restorePointCollections リソースを作成するには、次の Terraform をテンプレートに追加します。
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Compute/restorePointCollections@2021-07-01"
name = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = jsonencode({
properties = {
source = {
id = "string"
}
}
})
}
プロパティ値
Microsoft.Compute/restorePointCollections
名前 |
形容 |
価値 |
場所 |
リソースの場所 |
string (必須) |
名前 |
リソース名 |
string (必須) |
プロパティ |
復元ポイント コレクションのプロパティ。 |
RestorePointCollectionProperties の |
タグ |
リソース タグ |
タグ名と値のディクショナリ。 |
種類 |
リソースの種類 |
"Microsoft.Compute/restorePointCollections@2021-07-01" |
RestorePointCollectionProperties
名前 |
形容 |
価値 |
源 |
この復元ポイント コレクションの作成元のソース リソースのプロパティ。 |
RestorePointCollectionSourceProperties の |
RestorePointCollectionSourceProperties
名前 |
形容 |
価値 |
身分証明書 |
この復元ポイント コレクションの作成に使用されるソース リソースのリソース ID |
糸 |