次の方法で共有


Microsoft.Compute restorePointCollections 2021-03-01

Bicep リソース定義

restorePointCollections リソースの種類は、次を対象とする操作と共にデプロイできます。

  • リソース グループの - リソース グループのデプロイ コマンド 参照

各 API バージョンで変更されたプロパティの一覧については、変更ログの参照してください。

リソースの形式

Microsoft.Compute/restorePointCollections リソースを作成するには、次の Bicep をテンプレートに追加します。

resource symbolicname 'Microsoft.Compute/restorePointCollections@2021-03-01' = {
  location: 'string'
  name: 'string'
  properties: {
    source: {
      id: 'string'
    }
  }
  tags: {
    {customized property}: 'string'
  }
}

プロパティ値

Microsoft.Compute/restorePointCollections

名前 形容 価値
場所 リソースの場所 string (必須)
名前 リソース名 string (必須)
プロパティ 復元ポイント コレクションのプロパティ。 RestorePointCollectionProperties の
タグ リソース タグ タグ名と値のディクショナリ。 テンプレート の タグを参照してください

ResourceTags

名前 形容 価値

RestorePointCollectionProperties

名前 形容 価値
この復元ポイント コレクションの作成元のソース リソースのプロパティ。 RestorePointCollectionSourceProperties の

RestorePointCollectionSourceProperties

名前 形容 価値
身分証明書 この復元ポイント コレクションの作成に使用されるソース リソースのリソース ID

ARM テンプレート リソース定義

restorePointCollections リソースの種類は、次を対象とする操作と共にデプロイできます。

  • リソース グループの - リソース グループのデプロイ コマンド 参照

各 API バージョンで変更されたプロパティの一覧については、変更ログの参照してください。

リソースの形式

Microsoft.Compute/restorePointCollections リソースを作成するには、次の JSON をテンプレートに追加します。

{
  "type": "Microsoft.Compute/restorePointCollections",
  "apiVersion": "2021-03-01",
  "name": "string",
  "location": "string",
  "properties": {
    "source": {
      "id": "string"
    }
  },
  "tags": {
    "{customized property}": "string"
  }
}

プロパティ値

Microsoft.Compute/restorePointCollections

名前 形容 価値
apiVersion API のバージョン '2021-03-01'
場所 リソースの場所 string (必須)
名前 リソース名 string (必須)
プロパティ 復元ポイント コレクションのプロパティ。 RestorePointCollectionProperties の
タグ リソース タグ タグ名と値のディクショナリ。 テンプレート の タグを参照してください
種類 リソースの種類 'Microsoft.Compute/restorePointCollections'

ResourceTags

名前 形容 価値

RestorePointCollectionProperties

名前 形容 価値
この復元ポイント コレクションの作成元のソース リソースのプロパティ。 RestorePointCollectionSourceProperties の

RestorePointCollectionSourceProperties

名前 形容 価値
身分証明書 この復元ポイント コレクションの作成に使用されるソース リソースのリソース ID

Terraform (AzAPI プロバイダー) リソース定義

restorePointCollections リソースの種類は、次を対象とする操作と共にデプロイできます。

  • リソース グループの

各 API バージョンで変更されたプロパティの一覧については、変更ログの参照してください。

リソースの形式

Microsoft.Compute/restorePointCollections リソースを作成するには、次の Terraform をテンプレートに追加します。

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Compute/restorePointCollections@2021-03-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-03-01"

ResourceTags

名前 形容 価値

RestorePointCollectionProperties

名前 形容 価値
この復元ポイント コレクションの作成元のソース リソースのプロパティ。 RestorePointCollectionSourceProperties の

RestorePointCollectionSourceProperties

名前 形容 価値
身分証明書 この復元ポイント コレクションの作成に使用されるソース リソースのリソース ID