Bicep 資源定義
Spring 資源類型可以使用目標作業來部署:
如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔。
若要建立 Microsoft.AppPlatform/Spring 資源,請將下列 Bicep 新增至範本。
resource symbolicname 'Microsoft.AppPlatform/Spring@2020-07-01' = {
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
名字 |
描述 |
價值 |
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 的階層 |
字串 |
快速入門範例
下列快速入門範例會部署此資源類型。
ARM 樣本資源定義
Spring 資源類型可以使用目標作業來部署:
如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔。
若要建立 Microsoft.AppPlatform/Spring 資源,請將下列 JSON 新增至範本。
{
"type": "Microsoft.AppPlatform/Spring",
"apiVersion": "2020-07-01",
"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
名字 |
描述 |
價值 |
apiVersion |
API 版本 |
'2020-07-01' |
位置 |
資源的地理位置。 |
字串 |
名字 |
資源名稱 |
字串 (必要) |
性能 |
服務資源的屬性 |
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 的階層 |
字串 |
快速入門範本
下列快速入門範本會部署此資源類型。
Spring 資源類型可以使用目標作業來部署:
如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔。
若要建立 Microsoft.AppPlatform/Spring 資源,請將下列 Terraform 新增至範本。
resource "azapi_resource" "symbolicname" {
type = "Microsoft.AppPlatform/Spring@2020-07-01"
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
名字 |
描述 |
價值 |
位置 |
資源的地理位置。 |
字串 |
名字 |
資源名稱 |
字串 (必要) |
性能 |
服務資源的屬性 |
ClusterResourceProperties |
sku |
服務資源的 SKU |
Sku |
標籤 |
資源標籤 |
標記名稱和值的字典。 |
類型 |
資源類型 |
“Microsoft.AppPlatform/Spring@2020-07-01” |
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 的階層 |
字串 |