Share via


Microsoft.DocumentDB databaseAccounts/apis/keyspaces/tables/settings 2015-04-01

Bicep-Ressourcendefinition

Der Ressourcentyp databaseAccounts/apis/keyspaces/tables/settings kann mit Vorgängen bereitgestellt werden, die auf Folgendes abzielen:

Eine Liste der geänderten Eigenschaften in jeder API-Version finden Sie im Änderungsprotokoll.

Ressourcenformat

Um eine Ressource Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables/settings zu erstellen, fügen Sie der Vorlage die folgende Bicep-Ressource hinzu.

resource symbolicname 'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables/settings@2015-04-01' = {
  name: 'throughput'
  parent: resourceSymbolicName
  properties: {
    resource: {
      throughput: int
    }
  }
}

Eigenschaftswerte

databaseAccounts/apis/keyspaces/tables/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: Tabellen
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/keyspaces/tables/settings kann mit Vorgängen bereitgestellt werden, die auf Folgendes abzielen:

Eine Liste der geänderten Eigenschaften in jeder API-Version finden Sie im Änderungsprotokoll.

Ressourcenformat

Um eine Ressource Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables/settings zu erstellen, fügen Sie der Vorlage den folgenden JSON-Code hinzu.

{
  "type": "Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables/settings",
  "apiVersion": "2015-04-01",
  "name": "throughput",
  "properties": {
    "resource": {
      "throughput": "int"
    }
  }
}

Eigenschaftswerte

databaseAccounts/apis/keyspaces/tables/settings

Name BESCHREIBUNG Wert
type Der Ressourcentyp "Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables/settings"
apiVersion Die Version der Ressourcen-API '2015-04-01'
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/keyspaces/tables/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 Ressource Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables/settings zu erstellen, fügen Sie der Vorlage die folgende Terraform-Ressource hinzu.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables/settings@2015-04-01"
  name = "throughput"
  parent_id = "string"
  body = jsonencode({
    properties = {
      resource = {
        throughput = int
      }
    }
  })
}

Eigenschaftswerte

databaseAccounts/apis/keyspaces/tables/settings

Name BESCHREIBUNG Wert
type Der Ressourcentyp "Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables/settings@2015-04-01"
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: Tabellen
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)