Microsoft.DocumentDB throughputPools/throughputPoolAccounts 2023-11-15-preview
Bicep リソース定義
throughputPools/throughputPoolAccounts リソースの種類は、次をターゲットとする操作でデプロイできます。
- リソース グループ - リソース グループのデプロイ コマンドを参照してください
各 API バージョンの変更されたプロパティの一覧については、「 変更ログ」を参照してください。
リソース形式
Microsoft.DocumentDB/throughputPools/throughputPoolAccounts リソースを作成するには、次の Bicep をテンプレートに追加します。
resource symbolicname 'Microsoft.DocumentDB/throughputPools/throughputPoolAccounts@2023-11-15-preview' = {
name: 'string'
parent: resourceSymbolicName
properties: {
accountLocation: 'string'
accountResourceIdentifier: 'string'
provisioningState: 'string'
}
}
プロパティ値
throughputPools/throughputPoolAccounts
名前 | 説明 | 値 |
---|---|---|
name | リソース名 Bicep で子リソースの名前と型を設定する方法を参照してください。 |
string (必須) |
parent | Bicep では、子リソースの親リソースを指定できます。 このプロパティを追加する必要があるのは、子リソースが親リソースの外部で宣言されている場合のみです。 詳細については、「 親リソースの外部の子リソース」を参照してください。 |
種類のリソースのシンボル名: throughputPools |
properties | Throughputpool の一部である Azure Cosmos DB グローバル データベース アカウント。 | ThroughputPoolAccountProperties |
ThroughputPoolAccountProperties
名前 | 説明 | 値 |
---|---|---|
accountLocation | throughputPool 内のグローバル データベース アカウントの場所。 | string |
accountResourceIdentifier | throughputPool 内のグローバル データベース アカウントのリソース識別子。 | string |
provisioningState | ThroughputPool アカウントのプロビジョニング状態。 | 'Canceled' '削除中' 'Failed' '初期化中' 'InternallyReady' 'Online' 'Succeeded' '初期化されていない' '更新中' |
ARM テンプレート リソース定義
throughputPools/throughputPoolAccounts リソースの種類は、次をターゲットとする操作でデプロイできます。
- リソース グループ - リソース グループのデプロイ コマンドを参照してください
各 API バージョンの変更されたプロパティの一覧については、「 変更ログ」を参照してください。
リソース形式
Microsoft.DocumentDB/throughputPools/throughputPoolAccounts リソースを作成するには、次の JSON をテンプレートに追加します。
{
"type": "Microsoft.DocumentDB/throughputPools/throughputPoolAccounts",
"apiVersion": "2023-11-15-preview",
"name": "string",
"properties": {
"accountLocation": "string",
"accountResourceIdentifier": "string",
"provisioningState": "string"
}
}
プロパティ値
throughputPools/throughputPoolAccounts
名前 | 説明 | 値 |
---|---|---|
type | リソースの種類 | 'Microsoft.DocumentDB/throughputPools/throughputPoolAccounts' |
apiVersion | リソース API のバージョン | '2023-11-15-preview' |
name | リソース名 JSON ARM テンプレートで子リソースの名前と型を設定する方法を参照してください。 |
string (必須) |
properties | Throughputpool の一部である Azure Cosmos DB グローバル データベース アカウント。 | ThroughputPoolAccountProperties |
ThroughputPoolAccountProperties
名前 | 説明 | 値 |
---|---|---|
accountLocation | throughputPool 内のグローバル データベース アカウントの場所。 | string |
accountResourceIdentifier | throughputPool 内のグローバル データベース アカウントのリソース識別子。 | string |
provisioningState | ThroughputPool アカウントのプロビジョニング状態。 | 'Canceled' '削除中' 'Failed' '初期化中' 'InternallyReady' 'Online' 'Succeeded' '初期化されていない' '更新中' |
Terraform (AzAPI プロバイダー) リソース定義
throughputPools/throughputPoolAccounts リソースの種類は、次をターゲットとする操作でデプロイできます。
- リソース グループ
各 API バージョンの変更されたプロパティの一覧については、「 変更ログ」を参照してください。
リソース形式
Microsoft.DocumentDB/throughputPools/throughputPoolAccounts リソースを作成するには、次の Terraform をテンプレートに追加します。
resource "azapi_resource" "symbolicname" {
type = "Microsoft.DocumentDB/throughputPools/throughputPoolAccounts@2023-11-15-preview"
name = "string"
parent_id = "string"
body = jsonencode({
properties = {
accountLocation = "string"
accountResourceIdentifier = "string"
provisioningState = "string"
}
})
}
プロパティ値
throughputPools/throughputPoolAccounts
名前 | 説明 | 値 |
---|---|---|
type | リソースの種類 | "Microsoft.DocumentDB/throughputPools/throughputPoolAccounts@2023-11-15-preview" |
name | リソース名 | string (必須) |
parent_id | このリソースの親であるリソースの ID。 | 種類のリソースの ID: throughputPools |
properties | Throughputpool の一部である Azure Cosmos DB グローバル データベース アカウント。 | ThroughputPoolAccountProperties |
ThroughputPoolAccountProperties
名前 | 説明 | 値 |
---|---|---|
accountLocation | throughputPool 内のグローバル データベース アカウントの場所。 | string |
accountResourceIdentifier | throughputPool 内のグローバル データベース アカウントのリソース識別子。 | string |
provisioningState | ThroughputPool アカウントのプロビジョニング状態。 | "キャンセル済み" "削除中" "Failed" "初期化中" "InternallyReady" "オンライン" "Succeeded" "初期化されていません" "更新中" |