共用方式為


Microsoft.CognitiveServices 帳戶/部署 2021-10-01

Bicep 資源定義

帳戶/部署資源類型可以使用目標作業來部署:

如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔

資源格式

若要建立 Microsoft.CognitiveServices/accounts/deployments 資源,請將下列 Bicep 新增至範本。

resource symbolicname 'Microsoft.CognitiveServices/accounts/deployments@2021-10-01' = {
  parent: resourceSymbolicName
  name: 'string'
  properties: {
    model: {
      format: 'string'
      name: 'string'
      version: 'string'
    }
    scaleSettings: {
      capacity: int
      scaleType: 'string'
    }
  }
}

屬性值

DeploymentModel

名字 描述 價值
格式 部署模型格式。 字串
名字 部署模型名稱。 字串
版本 部署模型版本。 字串

DeploymentProperties

名字 描述 價值
認知服務帳戶部署模型的屬性。 DeploymentModel
scaleSettings 認知服務帳戶部署模型的屬性。 DeploymentScaleSettings

DeploymentScaleSettings

名字 描述 價值
能力 部署容量。 int
scaleType 部署調整類型。 'Manual'
'Standard'

Microsoft.CognitiveServices/accounts/deployments

名字 描述 價值
名字 資源名稱 字串 (必要)
父母 在 Bicep 中,您可以指定子資源的父資源。 只有在父資源外部宣告子資源時,才需要新增這個屬性。

如需詳細資訊,請參閱 父資源外部的子資源
類型的資源符號名稱:帳戶
性能 認知服務帳戶部署的屬性。 DeploymentProperties

快速入門範例

下列快速入門範例會部署此資源類型。

Bicep 檔案 描述
使用受控虛擬網路部署安全的 Azure AI Studio 此範本會建立安全的 Azure AI Studio 環境,並具有健全的網路和身分識別安全性限制。

ARM 樣本資源定義

帳戶/部署資源類型可以使用目標作業來部署:

如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔

資源格式

若要建立 Microsoft.CognitiveServices/accounts/deployments 資源,請將下列 JSON 新增至範本。

{
  "type": "Microsoft.CognitiveServices/accounts/deployments",
  "apiVersion": "2021-10-01",
  "name": "string",
  "properties": {
    "model": {
      "format": "string",
      "name": "string",
      "version": "string"
    },
    "scaleSettings": {
      "capacity": "int",
      "scaleType": "string"
    }
  }
}

屬性值

DeploymentModel

名字 描述 價值
格式 部署模型格式。 字串
名字 部署模型名稱。 字串
版本 部署模型版本。 字串

DeploymentProperties

名字 描述 價值
認知服務帳戶部署模型的屬性。 DeploymentModel
scaleSettings 認知服務帳戶部署模型的屬性。 DeploymentScaleSettings

DeploymentScaleSettings

名字 描述 價值
能力 部署容量。 int
scaleType 部署調整類型。 'Manual'
'Standard'

Microsoft.CognitiveServices/accounts/deployments

名字 描述 價值
apiVersion API 版本 '2021-10-01'
名字 資源名稱 字串 (必要)
性能 認知服務帳戶部署的屬性。 DeploymentProperties
類型 資源類型 'Microsoft.CognitiveServices/accounts/deployments'

快速入門範本

下列快速入門範本會部署此資源類型。

範本 描述
使用受控虛擬網路部署安全的 Azure AI Studio

部署至 Azure
此範本會建立安全的 Azure AI Studio 環境,並具有健全的網路和身分識別安全性限制。

Terraform (AzAPI 提供者) 資源定義

帳戶/部署資源類型可以使用目標作業來部署:

  • 資源群組

如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔

資源格式

若要建立 Microsoft.CognitiveServices/accounts/deployments 資源,請將下列 Terraform 新增至您的範本。

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.CognitiveServices/accounts/deployments@2021-10-01"
  name = "string"
  body = jsonencode({
    properties = {
      model = {
        format = "string"
        name = "string"
        version = "string"
      }
      scaleSettings = {
        capacity = int
        scaleType = "string"
      }
    }
  })
}

屬性值

DeploymentModel

名字 描述 價值
格式 部署模型格式。 字串
名字 部署模型名稱。 字串
版本 部署模型版本。 字串

DeploymentProperties

名字 描述 價值
認知服務帳戶部署模型的屬性。 DeploymentModel
scaleSettings 認知服務帳戶部署模型的屬性。 DeploymentScaleSettings

DeploymentScaleSettings

名字 描述 價值
能力 部署容量。 int
scaleType 部署調整類型。 'Manual'
'Standard'

Microsoft.CognitiveServices/accounts/deployments

名字 描述 價值
名字 資源名稱 字串 (必要)
parent_id 此資源為父系之資源的標識碼。 類型的資源標識碼:帳戶
性能 認知服務帳戶部署的屬性。 DeploymentProperties
類型 資源類型 “Microsoft.CognitiveServices/accounts/deployments@2021-10-01”