Microsoft.DocumentDB databaseAccounts/apis/databases/collections/settings 2016-03-19
Bicep-Ressourcendefinition
Der Ressourcentyp databaseAccounts/apis/databases/collections/settings kann mit Vorgängen bereitgestellt werden, die auf Folgendes abzielen:
- Ressourcengruppen – Siehe Bereitstellungsbefehle für Ressourcengruppen
Eine Liste der geänderten Eigenschaften in jeder API-Version finden Sie im Änderungsprotokoll.
Ressourcenformat
Um eine Microsoft.DocumentDB/databaseAccounts/apis/databases/collections/settings-Ressource zu erstellen, fügen Sie ihrer Vorlage die folgende Bicep-Ressource hinzu.
resource symbolicname 'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections/settings@2016-03-19' = {
name: 'throughput'
parent: resourceSymbolicName
properties: {
resource: {
throughput: int
}
}
}
Eigenschaftswerte
databaseAccounts/apis/databases/collections/settings
Name | BESCHREIBUNG | Wert |
---|---|---|
name | Der Ressourcenname Weitere Informationen finden Sie unter Festlegen von Namen und Typen für untergeordnete Ressourcen in Bicep. |
"Durchsatz" |
parent | In Bicep können Sie die übergeordnete Ressource für eine untergeordnete Ressource angeben. Sie müssen diese Eigenschaft nur hinzufügen, wenn die untergeordnete Ressource außerhalb der übergeordneten Ressource deklariert wird. Weitere Informationen finden Sie unter Untergeordnete Ressource außerhalb der übergeordneten Ressource. |
Symbolischer Name für Ressource vom Typ: Collections |
properties | Eigenschaften zum Aktualisieren des Azure Cosmos DB-Ressourcendurchsatzes. | ThroughputUpdatePropertiesOrThroughputProperties (erforderlich) |
ThroughputUpdatePropertiesOrThroughputProperties
Name | BESCHREIBUNG | Wert |
---|---|---|
resource | Das JSON-Standardformat eines Ressourcendurchsatzes | ThroughputResource (erforderlich) |
ThroughputResource
Name | BESCHREIBUNG | Wert |
---|---|---|
throughput | Wert des Cosmos DB-Ressourcendurchsatzes | int (erforderlich) |
Ressourcendefinition mit einer ARM-Vorlage
Der Ressourcentyp databaseAccounts/apis/databases/collections/settings kann mit Vorgängen bereitgestellt werden, die auf Folgendes abzielen:
- Ressourcengruppen – Siehe Bereitstellungsbefehle für Ressourcengruppen
Eine Liste der geänderten Eigenschaften in jeder API-Version finden Sie im Änderungsprotokoll.
Ressourcenformat
Um eine Microsoft.DocumentDB/databaseAccounts/apis/databases/collections/settings-Ressource zu erstellen, fügen Sie der Vorlage den folgenden JSON-Code hinzu.
{
"type": "Microsoft.DocumentDB/databaseAccounts/apis/databases/collections/settings",
"apiVersion": "2016-03-19",
"name": "throughput",
"properties": {
"resource": {
"throughput": "int"
}
}
}
Eigenschaftswerte
databaseAccounts/apis/databases/collections/settings
Name | BESCHREIBUNG | Wert |
---|---|---|
type | Der Ressourcentyp | "Microsoft.DocumentDB/databaseAccounts/apis/databases/collections/settings" |
apiVersion | Die Version der Ressourcen-API | '2016-03-19' |
name | Der Ressourcenname Weitere Informationen finden Sie unter Festlegen von Namen und Typen für untergeordnete Ressourcen in JSON-ARM-Vorlagen. |
"Durchsatz" |
properties | Eigenschaften zum Aktualisieren des Azure Cosmos DB-Ressourcendurchsatzes. | ThroughputUpdatePropertiesOrThroughputProperties (erforderlich) |
ThroughputUpdatePropertiesOrThroughputProperties
Name | BESCHREIBUNG | Wert |
---|---|---|
resource | Das JSON-Standardformat eines Ressourcendurchsatzes | ThroughputResource (erforderlich) |
ThroughputResource
Name | BESCHREIBUNG | Wert |
---|---|---|
throughput | Wert des Cosmos DB-Ressourcendurchsatzes | int (erforderlich) |
Terraform-Ressourcendefinition (AzAPI-Anbieter)
Der Ressourcentyp databaseAccounts/apis/databases/collections/settings kann mit Vorgängen bereitgestellt werden, die auf Folgendes abzielen:
- Ressourcengruppen
Eine Liste der geänderten Eigenschaften in jeder API-Version finden Sie im Änderungsprotokoll.
Ressourcenformat
Um eine Microsoft.DocumentDB/databaseAccounts/apis/databases/collections/settings-Ressource zu erstellen, fügen Sie der Vorlage die folgende Terraform-Ressource hinzu.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.DocumentDB/databaseAccounts/apis/databases/collections/settings@2016-03-19"
name = "throughput"
parent_id = "string"
body = jsonencode({
properties = {
resource = {
throughput = int
}
}
})
}
Eigenschaftswerte
databaseAccounts/apis/databases/collections/settings
Name | BESCHREIBUNG | Wert |
---|---|---|
type | Der Ressourcentyp | "Microsoft.DocumentDB/databaseAccounts/apis/databases/collections/settings@2016-03-19" |
name | Der Ressourcenname | "Durchsatz" |
parent_id | Die ID der Ressource, die die übergeordnete Ressource für diese Ressource ist. | ID für Ressource vom Typ: Sammlungen |
properties | Eigenschaften zum Aktualisieren des Azure Cosmos DB-Ressourcendurchsatzes. | ThroughputUpdatePropertiesOrThroughputProperties (erforderlich) |
ThroughputUpdatePropertiesOrThroughputProperties
Name | BESCHREIBUNG | Wert |
---|---|---|
resource | Das JSON-Standardformat eines Ressourcendurchsatzes | ThroughputResource (erforderlich) |
ThroughputResource
Name | BESCHREIBUNG | Wert |
---|---|---|
throughput | Wert des Cosmos DB-Ressourcendurchsatzes | int (erforderlich) |