Share via


Microsoft.DocumentDB throughputPools 2024-02-15-preview

Bicep 리소스 정의

다음을 대상으로 하는 작업으로 throughputPools 리소스 종류를 배포할 수 있습니다.

각 API 버전에서 변경된 속성 목록은 변경 로그를 참조하세요.

리소스 형식

Microsoft.DocumentDB/throughputPools 리소스를 만들려면 템플릿에 다음 Bicep을 추가합니다.

resource symbolicname 'Microsoft.DocumentDB/throughputPools@2024-02-15-preview' = {
  name: 'string'
  location: 'string'
  tags: {
    tagName1: 'tagValue1'
    tagName2: 'tagValue2'
  }
  properties: {
    maxThroughput: int
    provisioningState: 'string'
  }
}

속성 값

throughputPools

Name Description
name 리소스 이름 string(필수)
위치 리소스가 있는 지리적 위치 string(필수)
tags 리소스 태그. 태그 이름 및 값의 사전입니다. 템플릿의 태그를 참조하세요.
properties Azure Cosmos DB 처리량 풀을 업데이트하는 속성입니다. ThroughputPoolProperties

ThroughputPoolProperties

Name Description
maxThroughput 풀의 CosmosDB 리소스 간에 공유할 처리량의 값입니다. int
provisioningState ThroughputPool의 프로비전 상태입니다. 'Canceled'
'삭제 중'
'실패'
'초기화'
'InternallyReady'
'Online'
'성공'
'초기화되지 않음'
'업데이트 중'

ARM 템플릿 리소스 정의

다음을 대상으로 하는 작업으로 throughputPools 리소스 종류를 배포할 수 있습니다.

각 API 버전에서 변경된 속성 목록은 변경 로그를 참조하세요.

리소스 형식

Microsoft.DocumentDB/throughputPools 리소스를 만들려면 템플릿에 다음 JSON을 추가합니다.

{
  "type": "Microsoft.DocumentDB/throughputPools",
  "apiVersion": "2024-02-15-preview",
  "name": "string",
  "location": "string",
  "tags": {
    "tagName1": "tagValue1",
    "tagName2": "tagValue2"
  },
  "properties": {
    "maxThroughput": "int",
    "provisioningState": "string"
  }
}

속성 값

throughputPools

Name Description
형식 리소스 종류 'Microsoft.DocumentDB/throughputPools'
apiVersion 리소스 api 버전 '2024-02-15-preview'
name 리소스 이름 string(필수)
위치 리소스가 있는 지리적 위치 string(필수)
tags 리소스 태그. 태그 이름 및 값의 사전입니다. 템플릿의 태그를 참조하세요.
properties Azure Cosmos DB 처리량 풀을 업데이트하는 속성입니다. ThroughputPoolProperties

ThroughputPoolProperties

Name Description
maxThroughput 풀의 CosmosDB 리소스 간에 공유할 처리량의 값입니다. int
provisioningState ThroughputPool의 프로비전 상태입니다. 'Canceled'
'삭제 중'
'실패'
'초기화'
'InternallyReady'
'Online'
'성공'
'초기화되지 않음'
'업데이트 중'

Terraform(AzAPI 공급자) 리소스 정의

다음을 대상으로 하는 작업으로 throughputPools 리소스 종류를 배포할 수 있습니다.

  • 리소스 그룹

각 API 버전에서 변경된 속성 목록은 변경 로그를 참조하세요.

리소스 형식

Microsoft.DocumentDB/throughputPools 리소스를 만들려면 템플릿에 다음 Terraform을 추가합니다.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.DocumentDB/throughputPools@2024-02-15-preview"
  name = "string"
  location = "string"
  parent_id = "string"
  tags = {
    tagName1 = "tagValue1"
    tagName2 = "tagValue2"
  }
  body = jsonencode({
    properties = {
      maxThroughput = int
      provisioningState = "string"
    }
  })
}

속성 값

throughputPools

Name Description
형식 리소스 종류 "Microsoft.DocumentDB/throughputPools@2024-02-15-preview"
name 리소스 이름 string(필수)
위치 리소스가 있는 지리적 위치 string(필수)
parent_id 리소스 그룹에 배포하려면 해당 리소스 그룹의 ID를 사용합니다. string(필수)
tags 리소스 태그. 태그 이름 및 값의 사전입니다.
properties Azure Cosmos DB 처리량 풀을 업데이트하는 속성입니다. ThroughputPoolProperties

ThroughputPoolProperties

Name Description
maxThroughput 풀의 CosmosDB 리소스 간에 공유할 처리량의 값입니다. int
provisioningState ThroughputPool의 프로비전 상태입니다. "취소됨"
"삭제 중"
"실패"
"초기화"
"InternallyReady"
"온라인"
"성공"
"초기화되지 않음"
"업데이트 중"