Microsoft.Compute restorePointCollections 2023-03-01

Bicep リソース定義

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

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

リソース形式

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

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

プロパティ値

restorePointCollections

名前 説明
name リソース名 string (必須)
location リソースの場所 string (必須)
tags リソース タグ タグの名前と値のディクショナリ。 「テンプレート内のタグ」を参照してください
properties 復元ポイントコレクションのプロパティ。 RestorePointCollectionProperties

RestorePointCollectionProperties

名前 説明
source この復元ポイント コレクションの作成元となるソース リソースのプロパティ。 RestorePointCollectionSourceProperties

RestorePointCollectionSourceProperties

名前 説明
id この復元ポイント コレクションの作成に使用されるソース リソースのリソース ID string

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

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

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

リソース形式

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

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

プロパティ値

restorePointCollections

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

RestorePointCollectionProperties

名前 説明
source この復元ポイント コレクションの作成元となるソース リソースのプロパティ。 RestorePointCollectionSourceProperties

RestorePointCollectionSourceProperties

名前 説明
id この復元ポイント コレクションの作成に使用されるソース リソースのリソース ID string

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

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

  • リソース グループ

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

リソース形式

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

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

プロパティ値

restorePointCollections

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

RestorePointCollectionProperties

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

RestorePointCollectionSourceProperties

名前 説明
id この復元ポイント コレクションの作成に使用されるソース リソースのリソース ID string