Microsoft.DocumentDB databaseAccounts/mongodbDatabases/collections 2023-03-01-preview
[アーティクル] 12/18/2024
2 人の共同作成者
フィードバック
この記事の内容
Bicep リソース定義
databaseAccounts/mongodbDatabases/collections リソースの種類は、次をターゲットとする操作でデプロイできます。
リソース グループの - リソース グループのデプロイ コマンド 参照
各 API バージョンで変更されたプロパティの一覧については、変更ログの参照してください。
Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections リソースを作成するには、次の Bicep をテンプレートに追加します。
resource symbolicname 'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections@2023-03-01-preview' = {
parent: resourceSymbolicName
identity: {
type: 'string'
userAssignedIdentities: {
{customized property}: {}
}
}
location: 'string'
name: 'string'
properties: {
options: {
autoscaleSettings: {
maxThroughput: int
}
throughput: int
}
resource: {
analyticalStorageTtl: int
createMode: 'string'
id: 'string'
indexes: [
{
key: {
keys: [
'string'
]
}
options: {
expireAfterSeconds: int
unique: bool
}
}
]
restoreParameters: {
restoreSource: 'string'
restoreTimestampInUtc: 'string'
}
shardKey: {
{customized property}: 'string'
}
}
}
tags: {
{customized property}: 'string'
}
}
プロパティ値
AutoscaleSettings
名前
形容
価値
maxThroughput
リソースをスケールアップできる最大スループットを表します。
int
Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties
CreateUpdateOptionsOrMongoDBCollectionGetPropertiesOptions
名前
形容
価値
autoscaleSettings
自動スケール設定を指定します。
AutoscaleSettings
スループット
1 秒あたりの要求ユニット数。 たとえば、"throughput": 10000 です。
int
ManagedServiceIdentity
名前
形容
価値
種類
リソースに使用される ID の種類。 型 'SystemAssigned,UserAssigned' には、暗黙的に作成された ID とユーザー割り当て ID のセットの両方が含まれます。 型 'None' は、サービスからすべての ID を削除します。
'None' 'SystemAssigned' 'SystemAssigned,UserAssigned' 'UserAssigned'
userAssignedIdentities
リソースに関連付けられているユーザー ID の一覧。 ユーザー ID ディクショナリ のキー参照は、'/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}' という形式の ARM リソース ID になります。
ManagedServiceIdentityUserAssignedIdentities の
ManagedServiceIdentityUserAssignedIdentities
Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections
MongoDBCollectionCreateUpdatePropertiesOrMongoDBCollectionGetProperties
MongoDBCollectionResourceOrMongoDBCollectionGetPropertiesResource
名前
形容
価値
analyticalStorageTtl
分析 TTL。
int
createMode
リソースの作成モードを示す列挙型。
'Default' 'PointInTimeRestore' 'Restore'
身分証明書
Cosmos DB MongoDB コレクションの名前
string (必須)
索引
インデックス キーの一覧
MongoIndex []
restoreParameters
復元に関する情報を示すパラメーター
ResourceRestoreParameters
shardKey
要求に適用されるシャード キーのキーと値のペア。
ShardKeys
MongoIndex
MongoIndexKeys
名前
形容
価値
キー
Azure Cosmos DB サービス内の各 MongoDB コレクションのキーの一覧
string[]
MongoIndexOptions
名前
形容
価値
expireAfterSeconds
秒後に有効期限が切れる
int
ユニーク
一意かどうか
bool
ResourceRestoreParameters
名前
形容
価値
restoreSource
復元を開始する必要がある復元可能なデータベース アカウントの ID。 例: /subscriptions/{subscriptionId}/providers/Microsoft.DocumentDB/locations/{location}/restorableDatabaseAccounts/{restorableDatabaseAccountName}
糸
restoreTimestampInUtc
アカウントを復元する必要がある時間 (ISO-8601 形式)。
糸
ShardKeys
クイック スタートのサンプル
次のクイック スタート サンプルでは、このリソースの種類をデプロイします。
Bicep ファイル
形容
MongoDB API 用の Azure Cosmos アカウントを作成する
このテンプレートでは、2 つのコレクションで共有スループットと専用スループットを使用して、MongoDB API 4.2 用の Azure Cosmos DB アカウントを 2 つのリージョンに作成します。
MongoDB API 自動スケール 用の Azure Cosmos アカウントを作成する
このテンプレートでは、共有スループットと専用自動スケーリング スループットの両方を使用して、MongoDB API 4.2 用の Azure Cosmos DB アカウントを 2 つのリージョンに作成します。
ARM テンプレート リソース定義
databaseAccounts/mongodbDatabases/collections リソースの種類は、次をターゲットとする操作でデプロイできます。
リソース グループの - リソース グループのデプロイ コマンド 参照
各 API バージョンで変更されたプロパティの一覧については、変更ログの参照してください。
Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections リソースを作成するには、次の JSON をテンプレートに追加します。
{
"type": "Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections",
"apiVersion": "2023-03-01-preview",
"name": "string",
"identity": {
"type": "string",
"userAssignedIdentities": {
"{customized property}": {
}
}
},
"location": "string",
"properties": {
"options": {
"autoscaleSettings": {
"maxThroughput": "int"
},
"throughput": "int"
},
"resource": {
"analyticalStorageTtl": "int",
"createMode": "string",
"id": "string",
"indexes": [
{
"key": {
"keys": [ "string" ]
},
"options": {
"expireAfterSeconds": "int",
"unique": "bool"
}
}
],
"restoreParameters": {
"restoreSource": "string",
"restoreTimestampInUtc": "string"
},
"shardKey": {
"{customized property}": "string"
}
}
},
"tags": {
"{customized property}": "string"
}
}
プロパティ値
AutoscaleSettings
名前
形容
価値
maxThroughput
リソースをスケールアップできる最大スループットを表します。
int
Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties
CreateUpdateOptionsOrMongoDBCollectionGetPropertiesOptions
名前
形容
価値
autoscaleSettings
自動スケール設定を指定します。
AutoscaleSettings
スループット
1 秒あたりの要求ユニット数。 たとえば、"throughput": 10000 です。
int
ManagedServiceIdentity
名前
形容
価値
種類
リソースに使用される ID の種類。 型 'SystemAssigned,UserAssigned' には、暗黙的に作成された ID とユーザー割り当て ID のセットの両方が含まれます。 型 'None' は、サービスからすべての ID を削除します。
'None' 'SystemAssigned' 'SystemAssigned,UserAssigned' 'UserAssigned'
userAssignedIdentities
リソースに関連付けられているユーザー ID の一覧。 ユーザー ID ディクショナリ のキー参照は、'/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}' という形式の ARM リソース ID になります。
ManagedServiceIdentityUserAssignedIdentities の
ManagedServiceIdentityUserAssignedIdentities
Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections
名前
形容
価値
apiVersion
API のバージョン
'2023-03-01-preview'
同一性
リソースの ID。
ManagedServiceIdentity の
場所
リソースが属するリソース グループの場所。
糸
名前
リソース名
string (必須)
プロパティ
Azure Cosmos DB MongoDB コレクションを作成および更新するためのプロパティ。
MongoDBCollectionCreateUpdatePropertiesOrMongoDBCollectionGetProperties (必須)
タグ
リソース タグ
タグ名と値のディクショナリ。 テンプレート の タグを参照してください
種類
リソースの種類
'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections'
MongoDBCollectionCreateUpdatePropertiesOrMongoDBCollectionGetProperties
MongoDBCollectionResourceOrMongoDBCollectionGetPropertiesResource
名前
形容
価値
analyticalStorageTtl
分析 TTL。
int
createMode
リソースの作成モードを示す列挙型。
'Default' 'PointInTimeRestore' 'Restore'
身分証明書
Cosmos DB MongoDB コレクションの名前
string (必須)
索引
インデックス キーの一覧
MongoIndex []
restoreParameters
復元に関する情報を示すパラメーター
ResourceRestoreParameters
shardKey
要求に適用されるシャード キーのキーと値のペア。
ShardKeys
MongoIndex
MongoIndexKeys
名前
形容
価値
キー
Azure Cosmos DB サービス内の各 MongoDB コレクションのキーの一覧
string[]
MongoIndexOptions
名前
形容
価値
expireAfterSeconds
秒後に有効期限が切れる
int
ユニーク
一意かどうか
bool
ResourceRestoreParameters
名前
形容
価値
restoreSource
復元を開始する必要がある復元可能なデータベース アカウントの ID。 例: /subscriptions/{subscriptionId}/providers/Microsoft.DocumentDB/locations/{location}/restorableDatabaseAccounts/{restorableDatabaseAccountName}
糸
restoreTimestampInUtc
アカウントを復元する必要がある時間 (ISO-8601 形式)。
糸
ShardKeys
クイック スタート テンプレート
次のクイック スタート テンプレートでは、このリソースの種類をデプロイします。
テンプレート
形容
MongoDB API 用の Azure Cosmos アカウントを作成する Azure にデプロイする
このテンプレートでは、2 つのコレクションで共有スループットと専用スループットを使用して、MongoDB API 4.2 用の Azure Cosmos DB アカウントを 2 つのリージョンに作成します。
MongoDB API 自動スケール 用の Azure Cosmos アカウントを作成する Azure にデプロイする
このテンプレートでは、共有スループットと専用自動スケーリング スループットの両方を使用して、MongoDB API 4.2 用の Azure Cosmos DB アカウントを 2 つのリージョンに作成します。
databaseAccounts/mongodbDatabases/collections リソースの種類は、次をターゲットとする操作でデプロイできます。
各 API バージョンで変更されたプロパティの一覧については、変更ログの参照してください。
Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections リソースを作成するには、次の Terraform をテンプレートに追加します。
resource "azapi_resource" "symbolicname" {
type = "Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections@2023-03-01-preview"
name = "string"
identity = {
type = "string"
userAssignedIdentities = {
{customized property} = {
}
}
}
location = "string"
tags = {
{customized property} = "string"
}
body = jsonencode({
properties = {
options = {
autoscaleSettings = {
maxThroughput = int
}
throughput = int
}
resource = {
analyticalStorageTtl = int
createMode = "string"
id = "string"
indexes = [
{
key = {
keys = [
"string"
]
}
options = {
expireAfterSeconds = int
unique = bool
}
}
]
restoreParameters = {
restoreSource = "string"
restoreTimestampInUtc = "string"
}
shardKey = {
{customized property} = "string"
}
}
}
})
}
プロパティ値
AutoscaleSettings
名前
形容
価値
maxThroughput
リソースをスケールアップできる最大スループットを表します。
int
Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties
CreateUpdateOptionsOrMongoDBCollectionGetPropertiesOptions
名前
形容
価値
autoscaleSettings
自動スケール設定を指定します。
AutoscaleSettings
スループット
1 秒あたりの要求ユニット数。 たとえば、"throughput": 10000 です。
int
ManagedServiceIdentity
名前
形容
価値
種類
リソースに使用される ID の種類。 型 'SystemAssigned,UserAssigned' には、暗黙的に作成された ID とユーザー割り当て ID のセットの両方が含まれます。 型 'None' は、サービスからすべての ID を削除します。
'None' 'SystemAssigned' 'SystemAssigned,UserAssigned' 'UserAssigned'
userAssignedIdentities
リソースに関連付けられているユーザー ID の一覧。 ユーザー ID ディクショナリ のキー参照は、'/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}' という形式の ARM リソース ID になります。
ManagedServiceIdentityUserAssignedIdentities の
ManagedServiceIdentityUserAssignedIdentities
Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections
MongoDBCollectionCreateUpdatePropertiesOrMongoDBCollectionGetProperties
MongoDBCollectionResourceOrMongoDBCollectionGetPropertiesResource
名前
形容
価値
analyticalStorageTtl
分析 TTL。
int
createMode
リソースの作成モードを示す列挙型。
'Default' 'PointInTimeRestore' 'Restore'
身分証明書
Cosmos DB MongoDB コレクションの名前
string (必須)
索引
インデックス キーの一覧
MongoIndex []
restoreParameters
復元に関する情報を示すパラメーター
ResourceRestoreParameters
shardKey
要求に適用されるシャード キーのキーと値のペア。
ShardKeys
MongoIndex
MongoIndexKeys
名前
形容
価値
キー
Azure Cosmos DB サービス内の各 MongoDB コレクションのキーの一覧
string[]
MongoIndexOptions
名前
形容
価値
expireAfterSeconds
秒後に有効期限が切れる
int
ユニーク
一意かどうか
bool
ResourceRestoreParameters
名前
形容
価値
restoreSource
復元を開始する必要がある復元可能なデータベース アカウントの ID。 例: /subscriptions/{subscriptionId}/providers/Microsoft.DocumentDB/locations/{location}/restorableDatabaseAccounts/{restorableDatabaseAccountName}
糸
restoreTimestampInUtc
アカウントを復元する必要がある時間 (ISO-8601 形式)。
糸
ShardKeys