Microsoft.Compute restorePointCollections

Bicep リソース定義

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

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

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

リソースの形式

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

resource symbolicname 'Microsoft.Compute/restorePointCollections@2024-07-01' = {
  name: 'string'
  location: 'string'
  tags: {
    tagName1: 'tagValue1'
    tagName2: 'tagValue2'
  }
  properties: {
    source: {
      id: 'string'
    }
  }
}

プロパティ値

restorePointCollections

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

RestorePointCollectionProperties

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

RestorePointCollectionSourceProperties

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

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

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

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

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

リソースの形式

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

{
  "type": "Microsoft.Compute/restorePointCollections",
  "apiVersion": "2024-07-01",
  "name": "string",
  "location": "string",
  "tags": {
    "tagName1": "tagValue1",
    "tagName2": "tagValue2"
  },
  "properties": {
    "source": {
      "id": "string"
    }
  }
}

プロパティ値

restorePointCollections

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

RestorePointCollectionProperties

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

RestorePointCollectionSourceProperties

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

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

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

  • リソース グループの

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

リソースの形式

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

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Compute/restorePointCollections@2024-07-01"
  name = "string"
  location = "string"
  parent_id = "string"
  tags = {
    tagName1 = "tagValue1"
    tagName2 = "tagValue2"
  }
  body = jsonencode({
    properties = {
      source = {
        id = "string"
      }
    }
  })
}

プロパティ値

restorePointCollections

名前 形容 価値
種類 リソースの種類 "Microsoft.Compute/restorePointCollections@2024-07-01"
名前 リソース名 string (必須)
場所 リソースの場所 string (必須)
parent_id リソース グループにデプロイするには、そのリソース グループの ID を使用します。 string (必須)
タグ リソース タグ タグ名と値のディクショナリ。
プロパティ 復元ポイント コレクションのプロパティ。 RestorePointCollectionProperties の

RestorePointCollectionProperties

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

RestorePointCollectionSourceProperties

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