共用方式為


Microsoft.AppPlatform Spring 2021-09-01-preview

Bicep 資源定義

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

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

資源格式

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

resource symbolicname 'Microsoft.AppPlatform/Spring@2021-09-01-preview' = {
  location: 'string'
  name: 'string'
  properties: {
    networkProfile: {
      appNetworkResourceGroup: 'string'
      appSubnetId: 'string'
      serviceCidr: 'string'
      serviceRuntimeNetworkResourceGroup: 'string'
      serviceRuntimeSubnetId: 'string'
    }
  }
  sku: {
    capacity: int
    name: 'string'
    tier: 'string'
  }
  tags: {
    {customized property}: 'string'
  }
}

屬性值

ClusterResourceProperties

名字 描述 價值
networkProfile 服務的網路配置檔 NetworkProfile

Microsoft.AppPlatform/Spring

名字 描述 價值
位置 資源的地理位置。 字串
名字 資源名稱 字串 (必要)
性能 服務資源的屬性 ClusterResourceProperties
sku 服務資源的 SKU Sku
標籤 資源標籤 標記名稱和值的字典。 請參閱範本中的 標籤

NetworkProfile

名字 描述 價值
appNetworkResourceGroup 包含 Azure Spring Cloud Apps 網路資源的資源群組名稱 字串
appSubnetId 用來裝載 Azure Spring Cloud Apps 之子網的完整資源識別碼 字串
serviceCidr Azure Spring Cloud 服務保留 CIDR 字串
serviceRuntimeNetworkResourceGroup 包含 Azure Spring Cloud Service Runtime 網路資源的資源群組名稱 字串
serviceRuntimeSubnetId 要裝載 Azure Spring Cloud Service Runtime 之子網的完整資源標識符 字串

Sku

名字 描述 價值
能力 目標資源的目前容量 int
名字 Sku 的名稱 字串
Sku 的階層 字串

TrackedResourceTags

名字 描述 價值

快速入門範例

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

Bicep 檔案 描述
部署簡單的 Azure Spring Apps 微服務應用程式 此範本會部署簡單的 Azure Spring Apps 微服務應用程式,以在 Azure 上執行。

ARM 樣本資源定義

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

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

資源格式

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

{
  "type": "Microsoft.AppPlatform/Spring",
  "apiVersion": "2021-09-01-preview",
  "name": "string",
  "location": "string",
  "properties": {
    "networkProfile": {
      "appNetworkResourceGroup": "string",
      "appSubnetId": "string",
      "serviceCidr": "string",
      "serviceRuntimeNetworkResourceGroup": "string",
      "serviceRuntimeSubnetId": "string"
    }
  },
  "sku": {
    "capacity": "int",
    "name": "string",
    "tier": "string"
  },
  "tags": {
    "{customized property}": "string"
  }
}

屬性值

ClusterResourceProperties

名字 描述 價值
networkProfile 服務的網路配置檔 NetworkProfile

Microsoft.AppPlatform/Spring

名字 描述 價值
apiVersion API 版本 '2021-09-01-preview'
位置 資源的地理位置。 字串
名字 資源名稱 字串 (必要)
性能 服務資源的屬性 ClusterResourceProperties
sku 服務資源的 SKU Sku
標籤 資源標籤 標記名稱和值的字典。 請參閱範本中的 標籤
類型 資源類型 'Microsoft.AppPlatform/Spring'

NetworkProfile

名字 描述 價值
appNetworkResourceGroup 包含 Azure Spring Cloud Apps 網路資源的資源群組名稱 字串
appSubnetId 用來裝載 Azure Spring Cloud Apps 之子網的完整資源識別碼 字串
serviceCidr Azure Spring Cloud 服務保留 CIDR 字串
serviceRuntimeNetworkResourceGroup 包含 Azure Spring Cloud Service Runtime 網路資源的資源群組名稱 字串
serviceRuntimeSubnetId 要裝載 Azure Spring Cloud Service Runtime 之子網的完整資源標識符 字串

Sku

名字 描述 價值
能力 目標資源的目前容量 int
名字 Sku 的名稱 字串
Sku 的階層 字串

TrackedResourceTags

名字 描述 價值

快速入門範本

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

範本 描述
部署簡單的 Azure Spring Apps 微服務應用程式

部署至 Azure
此範本會部署簡單的 Azure Spring Apps 微服務應用程式,以在 Azure 上執行。

Terraform (AzAPI 提供者) 資源定義

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

  • 資源群組

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

資源格式

若要建立 Microsoft.AppPlatform/Spring 資源,請將下列 Terraform 新增至範本。

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.AppPlatform/Spring@2021-09-01-preview"
  name = "string"
  location = "string"
  sku = {
    capacity = int
    name = "string"
    tier = "string"
  }
  tags = {
    {customized property} = "string"
  }
  body = jsonencode({
    properties = {
      networkProfile = {
        appNetworkResourceGroup = "string"
        appSubnetId = "string"
        serviceCidr = "string"
        serviceRuntimeNetworkResourceGroup = "string"
        serviceRuntimeSubnetId = "string"
      }
    }
  })
}

屬性值

ClusterResourceProperties

名字 描述 價值
networkProfile 服務的網路配置檔 NetworkProfile

Microsoft.AppPlatform/Spring

名字 描述 價值
位置 資源的地理位置。 字串
名字 資源名稱 字串 (必要)
性能 服務資源的屬性 ClusterResourceProperties
sku 服務資源的 SKU Sku
標籤 資源標籤 標記名稱和值的字典。
類型 資源類型 “Microsoft.AppPlatform/Spring@2021-09-01-preview”

NetworkProfile

名字 描述 價值
appNetworkResourceGroup 包含 Azure Spring Cloud Apps 網路資源的資源群組名稱 字串
appSubnetId 用來裝載 Azure Spring Cloud Apps 之子網的完整資源識別碼 字串
serviceCidr Azure Spring Cloud 服務保留 CIDR 字串
serviceRuntimeNetworkResourceGroup 包含 Azure Spring Cloud Service Runtime 網路資源的資源群組名稱 字串
serviceRuntimeSubnetId 要裝載 Azure Spring Cloud Service Runtime 之子網的完整資源標識符 字串

Sku

名字 描述 價值
能力 目標資源的目前容量 int
名字 Sku 的名稱 字串
Sku 的階層 字串

TrackedResourceTags

名字 描述 價值