Microsoft.DocumentDB databaseAccounts/mongodbUserDefinitions 2023-03-15
- 最新の を
する - 2024-12-01-preview
- 2024-11-15
- 2024-09-01-preview
- 2024-08-15
- 2024-05-15
- 2024-05-15-preview
- 2024-02-15-preview
- 2023-11-15
- 2023-11-15-preview
- 2023-09-15
- 2023-09-15-preview
- 2023-04-15
- 2023-03-15
- 2023-03-15-preview
- 2023-03-01-preview
- 2022-11-15
- 2022-11-15-preview
- 2022-08-15
- 2022-08-15-preview
- 2022-05-15-preview
- 2022-02-15-preview
- 2021-11-15-preview
- 2021-10-15-preview
Bicep リソース定義
databaseAccounts/mongodbUserDefinitions リソースの種類は、次をターゲットとする操作でデプロイできます。
- リソース グループの - リソース グループのデプロイ コマンド 参照
各 API バージョンで変更されたプロパティの一覧については、変更ログの
リソースの形式
Microsoft.DocumentDB/databaseAccounts/mongodbUserDefinitions リソースを作成するには、次の Bicep をテンプレートに追加します。
resource symbolicname 'Microsoft.DocumentDB/databaseAccounts/mongodbUserDefinitions@2023-03-15' = {
parent: resourceSymbolicName
name: 'string'
properties: {
customData: 'string'
databaseName: 'string'
mechanisms: 'string'
password: 'string'
roles: [
{
db: 'string'
role: 'string'
}
]
userName: 'string'
}
}
プロパティ値
Microsoft.DocumentDB/databaseAccounts/mongodbUserDefinitions
名前 | 形容 | 価値 |
---|---|---|
名前 | リソース名 | string (必須) |
親 | Bicep では、子リソースの親リソースを指定できます。 このプロパティを追加する必要があるのは、子リソースが親リソースの外部で宣言されている場合のみです。 詳細については、「親リソースの外部 |
種類のリソースのシンボリック名: databaseAccounts |
プロパティ | Azure Cosmos DB Mongo ユーザー定義を作成および更新するためのプロパティ。 | MongoUserDefinitionResource の |
MongoUserDefinitionResource
名前 | 形容 | 価値 |
---|---|---|
customData | USer 定義のカスタム定義。 | 糸 |
databaseName | このユーザー定義に対してアクセス権が付与されているデータベース名。 | 糸 |
メカニズム | Mongo 認証メカニズム。 現時点では、認証メカニズム SCRAM-SHA-256 のみがサポートされています。 | 糸 |
パスワード | ユーザー定義のパスワード。 応答にユーザー パスワードが含まれていません。 | 糸 |
役割 | ユーザー定義によって継承されるロールのセット。 | ロールの[] |
userName | ユーザー定義のユーザー名。 | 糸 |
役割
名前 | 形容 | 価値 |
---|---|---|
db | ロールが適用されるデータベース名。 | 糸 |
役割 | ロール名。 | 糸 |
ARM テンプレート リソース定義
databaseAccounts/mongodbUserDefinitions リソースの種類は、次をターゲットとする操作でデプロイできます。
- リソース グループの - リソース グループのデプロイ コマンド 参照
各 API バージョンで変更されたプロパティの一覧については、変更ログの
リソースの形式
Microsoft.DocumentDB/databaseAccounts/mongodbUserDefinitions リソースを作成するには、次の JSON をテンプレートに追加します。
{
"type": "Microsoft.DocumentDB/databaseAccounts/mongodbUserDefinitions",
"apiVersion": "2023-03-15",
"name": "string",
"properties": {
"customData": "string",
"databaseName": "string",
"mechanisms": "string",
"password": "string",
"roles": [
{
"db": "string",
"role": "string"
}
],
"userName": "string"
}
}
プロパティ値
Microsoft.DocumentDB/databaseAccounts/mongodbUserDefinitions
名前 | 形容 | 価値 |
---|---|---|
apiVersion | API のバージョン | '2023-03-15' |
名前 | リソース名 | string (必須) |
プロパティ | Azure Cosmos DB Mongo ユーザー定義を作成および更新するためのプロパティ。 | MongoUserDefinitionResource の |
種類 | リソースの種類 | 'Microsoft.DocumentDB/databaseAccounts/mongodbUserDefinitions' |
MongoUserDefinitionResource
名前 | 形容 | 価値 |
---|---|---|
customData | USer 定義のカスタム定義。 | 糸 |
databaseName | このユーザー定義に対してアクセス権が付与されているデータベース名。 | 糸 |
メカニズム | Mongo 認証メカニズム。 現時点では、認証メカニズム SCRAM-SHA-256 のみがサポートされています。 | 糸 |
パスワード | ユーザー定義のパスワード。 応答にユーザー パスワードが含まれていません。 | 糸 |
役割 | ユーザー定義によって継承されるロールのセット。 | ロールの[] |
userName | ユーザー定義のユーザー名。 | 糸 |
役割
名前 | 形容 | 価値 |
---|---|---|
db | ロールが適用されるデータベース名。 | 糸 |
役割 | ロール名。 | 糸 |
Terraform (AzAPI プロバイダー) リソース定義
databaseAccounts/mongodbUserDefinitions リソースの種類は、次をターゲットとする操作でデプロイできます。
- リソース グループの
各 API バージョンで変更されたプロパティの一覧については、変更ログの
リソースの形式
Microsoft.DocumentDB/databaseAccounts/mongodbUserDefinitions リソースを作成するには、次の Terraform をテンプレートに追加します。
resource "azapi_resource" "symbolicname" {
type = "Microsoft.DocumentDB/databaseAccounts/mongodbUserDefinitions@2023-03-15"
name = "string"
body = jsonencode({
properties = {
customData = "string"
databaseName = "string"
mechanisms = "string"
password = "string"
roles = [
{
db = "string"
role = "string"
}
]
userName = "string"
}
})
}
プロパティ値
Microsoft.DocumentDB/databaseAccounts/mongodbUserDefinitions
名前 | 形容 | 価値 |
---|---|---|
名前 | リソース名 | string (必須) |
parent_id | このリソースの親であるリソースの ID。 | 種類のリソースの ID: databaseAccounts |
プロパティ | Azure Cosmos DB Mongo ユーザー定義を作成および更新するためのプロパティ。 | MongoUserDefinitionResource の |
種類 | リソースの種類 | "Microsoft.DocumentDB/databaseAccounts/mongodbUserDefinitions@2023-03-15" |
MongoUserDefinitionResource
名前 | 形容 | 価値 |
---|---|---|
customData | USer 定義のカスタム定義。 | 糸 |
databaseName | このユーザー定義に対してアクセス権が付与されているデータベース名。 | 糸 |
メカニズム | Mongo 認証メカニズム。 現時点では、認証メカニズム SCRAM-SHA-256 のみがサポートされています。 | 糸 |
パスワード | ユーザー定義のパスワード。 応答にユーザー パスワードが含まれていません。 | 糸 |
役割 | ユーザー定義によって継承されるロールのセット。 | ロールの[] |
userName | ユーザー定義のユーザー名。 | 糸 |
役割
名前 | 形容 | 価値 |
---|---|---|
db | ロールが適用されるデータベース名。 | 糸 |
役割 | ロール名。 | 糸 |