你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Microsoft.Solutions 应用程序定义 2017-12-01
Bicep 资源定义
applicationDefinitions 资源类型可以部署到: 资源组。
若要了解资源组部署,请参阅 Bicep。
有关每个 API 版本中更改的属性的列表,请参阅 更改日志。
若要创建 Microsoft.Solutions/applicationDefinitions 资源,请将以下 Bicep 添加到模板。
resource symbolicname 'Microsoft.Solutions/applicationDefinitions@2017-12-01' = {
name: 'string'
location: 'string'
tags: {
tagName1: 'tagValue1'
tagName2: 'tagValue2'
}
sku: {
capacity: int
family: 'string'
model: 'string'
name: 'string'
size: 'string'
tier: 'string'
}
identity: {
type: 'SystemAssigned'
}
managedBy: 'string'
properties: {
artifacts: [
{
name: 'string'
type: 'string'
uri: 'string'
}
]
authorizations: [
{
principalId: 'string'
roleDefinitionId: 'string'
}
]
createUiDefinition: any()
description: 'string'
displayName: 'string'
isEnabled: 'string'
mainTemplate: any()
packageFileUri: 'string'
}
}
属性值
applicationDefinitions
标识
名称 |
说明 |
Value |
type |
标识类型。 |
“SystemAssigned” |
ApplicationDefinitionProperties
名称 |
说明 |
Value |
项目 |
托管应用程序项目的集合。 门户将使用指定为项目的文件来构造从托管应用程序定义创建托管应用程序的用户体验。 |
ApplicationArtifact[] |
授权 |
托管应用程序提供程序授权。 |
ApplicationProviderAuthorization[] (必需的) |
createUiDefinition |
包含 Microsoft.Solutions/applications 资源的后备模板的 createUiDefinition json。 它可以是 JObject 或格式正确的 JSON 字符串。 |
对于 Bicep,可以使用 any () 函数。 |
description |
托管应用程序定义说明。 |
字符串 |
displayName |
托管应用程序定义显示名称。 |
字符串 |
isEnabled |
一个值,该值指示是否启用包。 |
字符串 |
mainTemplate |
包含要预配的资源的内联主模板 json。 它可以是 JObject 或格式正确的 JSON 字符串。 |
对于 Bicep,可以使用 any () 函数。 |
packageFileUri |
托管应用程序定义包文件 URI。 使用此元素 |
字符串 |
ApplicationArtifact
名称 |
说明 |
Value |
name |
托管应用程序项目名称。 |
字符串 |
type |
托管应用程序项目类型。 |
“Custom” “模板” |
uri |
托管应用程序项目 Blob URI。 |
字符串 |
ApplicationProviderAuthorization
名称 |
说明 |
Value |
principalId |
提供程序的主体标识符。 这是提供程序将用来调用 ARM 来管理托管应用程序资源的标识。 |
字符串 (必需) |
roleDefinitionId |
提供程序的角色定义标识符。 此角色将定义提供程序必须对托管应用程序的容器资源组拥有的所有权限。 此角色定义不能具有删除资源组的权限。 |
字符串 (必需) |
SKU
名称 |
说明 |
Value |
容量 |
SKU 容量。 |
int |
family |
SKU 系列。 |
字符串 |
模型 |
SKU 模型。 |
字符串 |
name |
SKU 名称。 |
字符串 (必需) |
大小 |
SKU 大小。 |
字符串 |
层 |
SKU 层。 |
字符串 |
快速入门模板
以下快速入门模板部署此资源类型。
ARM 模板资源定义
applicationDefinitions 资源类型可以部署到: 资源组。
若要了解资源组部署,请参阅 ARM 模板。
有关每个 API 版本中更改的属性的列表,请参阅 更改日志。
若要创建 Microsoft.Solutions/applicationDefinitions 资源,请将以下 JSON 添加到模板。
{
"type": "Microsoft.Solutions/applicationDefinitions",
"apiVersion": "2017-12-01",
"name": "string",
"location": "string",
"tags": {
"tagName1": "tagValue1",
"tagName2": "tagValue2"
},
"sku": {
"capacity": "int",
"family": "string",
"model": "string",
"name": "string",
"size": "string",
"tier": "string"
},
"identity": {
"type": "SystemAssigned"
},
"managedBy": "string",
"properties": {
"artifacts": [
{
"name": "string",
"type": "string",
"uri": "string"
}
],
"authorizations": [
{
"principalId": "string",
"roleDefinitionId": "string"
}
],
"createUiDefinition": {},
"description": "string",
"displayName": "string",
"isEnabled": "string",
"mainTemplate": {},
"packageFileUri": "string"
}
}
属性值
applicationDefinitions
名称 |
说明 |
Value |
type |
资源类型 |
“Microsoft.Solutions/applicationDefinitions” |
apiVersion |
资源 API 版本 |
'2017-12-01' |
name |
资源名称 |
字符串 (必需) |
location |
资源位置 |
字符串 |
标记 |
资源标记 |
标记名称和值的字典。 请参阅 模板中的标记 |
sku |
资源的 SKU。 |
Sku |
identity |
资源的标识。 |
标识 |
managedBy |
管理此资源的资源的 ID。 |
string |
properties |
托管应用程序定义属性。 |
ApplicationDefinitionProperties (必需) |
标识
名称 |
说明 |
Value |
type |
标识类型。 |
“SystemAssigned” |
ApplicationDefinitionProperties
名称 |
说明 |
Value |
项目 |
托管应用程序项目的集合。 门户将使用指定为项目的文件来构造从托管应用程序定义创建托管应用程序的用户体验。 |
ApplicationArtifact[] |
授权 |
托管应用程序提供程序授权。 |
ApplicationProviderAuthorization[] (必需的) |
createUiDefinition |
包含 Microsoft.Solutions/applications 资源的后备模板的 createUiDefinition json。 它可以是 JObject 或格式正确的 JSON 字符串。 |
|
description |
托管应用程序定义说明。 |
字符串 |
displayName |
托管应用程序定义显示名称。 |
字符串 |
isEnabled |
一个值,该值指示是否启用包。 |
字符串 |
mainTemplate |
包含要预配的资源的内联主模板 json。 它可以是 JObject 或格式正确的 JSON 字符串。 |
|
packageFileUri |
托管应用程序定义包文件 URI。 使用此元素 |
字符串 |
ApplicationArtifact
名称 |
说明 |
Value |
name |
托管应用程序项目名称。 |
字符串 |
type |
托管应用程序项目类型。 |
“Custom” “模板” |
uri |
托管应用程序项目 Blob URI。 |
字符串 |
ApplicationProviderAuthorization
名称 |
说明 |
Value |
principalId |
提供程序的主体标识符。 这是提供程序将用来调用 ARM 来管理托管应用程序资源的标识。 |
字符串 (必需) |
roleDefinitionId |
提供程序的角色定义标识符。 此角色将定义提供程序必须对托管应用程序的容器资源组拥有的所有权限。 此角色定义不能具有删除资源组的权限。 |
字符串 (必需) |
SKU
名称 |
说明 |
Value |
容量 |
SKU 容量。 |
int |
family |
SKU 系列。 |
字符串 |
模型 |
SKU 模型。 |
字符串 |
name |
SKU 名称。 |
字符串 (必需) |
大小 |
SKU 大小。 |
字符串 |
层 |
SKU 层。 |
字符串 |
快速入门模板
以下快速入门模板部署此资源类型。
applicationDefinitions 资源类型可以部署到: 资源组。
有关每个 API 版本中更改的属性的列表,请参阅 更改日志。
若要创建 Microsoft.Solutions/applicationDefinitions 资源,请将以下 Terraform 添加到模板。
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Solutions/applicationDefinitions@2017-12-01"
name = "string"
location = "string"
parent_id = "string"
tags = {
tagName1 = "tagValue1"
tagName2 = "tagValue2"
}
identity {
type = "SystemAssigned"
}
body = jsonencode({
properties = {
artifacts = [
{
name = "string"
type = "string"
uri = "string"
}
]
authorizations = [
{
principalId = "string"
roleDefinitionId = "string"
}
]
description = "string"
displayName = "string"
isEnabled = "string"
packageFileUri = "string"
}
sku = {
capacity = int
family = "string"
model = "string"
name = "string"
size = "string"
tier = "string"
}
managedBy = "string"
})
}
属性值
applicationDefinitions
名称 |
说明 |
Value |
type |
资源类型 |
“Microsoft.Solutions/applicationDefinitions@2017-12-01” |
name |
资源名称 |
字符串 (必需) |
location |
资源位置 |
字符串 |
parent_id |
若要部署到资源组,请使用该资源组的 ID。 |
字符串 (必需) |
标记 |
资源标记 |
标记名称和值的字典。 |
sku |
资源的 SKU。 |
Sku |
identity |
资源的标识。 |
标识 |
managedBy |
管理此资源的资源的 ID。 |
string |
properties |
托管应用程序定义属性。 |
ApplicationDefinitionProperties (必需) |
标识
名称 |
说明 |
Value |
type |
标识类型。 |
“SystemAssigned” |
ApplicationDefinitionProperties
名称 |
说明 |
Value |
项目 |
托管应用程序项目的集合。 门户将使用指定为项目的文件来构造从托管应用程序定义创建托管应用程序的用户体验。 |
ApplicationArtifact[] |
授权 |
托管应用程序提供程序授权。 |
ApplicationProviderAuthorization[] (必需的) |
createUiDefinition |
包含 Microsoft.Solutions/applications 资源的后备模板的 createUiDefinition json。 它可以是 JObject 或格式正确的 JSON 字符串。 |
|
description |
托管应用程序定义说明。 |
字符串 |
displayName |
托管应用程序定义显示名称。 |
字符串 |
isEnabled |
一个值,该值指示是否启用包。 |
字符串 |
mainTemplate |
包含要预配的资源的内联主模板 json。 它可以是 JObject 或格式正确的 JSON 字符串。 |
|
packageFileUri |
托管应用程序定义包文件 URI。 使用此元素 |
字符串 |
ApplicationArtifact
名称 |
说明 |
Value |
name |
托管应用程序项目名称。 |
字符串 |
type |
托管应用程序项目类型。 |
“Custom” “模板” |
uri |
托管应用程序项目 Blob URI。 |
字符串 |
ApplicationProviderAuthorization
名称 |
说明 |
Value |
principalId |
提供程序的主体标识符。 这是提供程序将用来调用 ARM 来管理托管应用程序资源的标识。 |
字符串 (必需) |
roleDefinitionId |
提供程序的角色定义标识符。 此角色将定义提供程序必须对托管应用程序的容器资源组拥有的所有权限。 此角色定义不能具有删除资源组的权限。 |
字符串 (必需) |
SKU
名称 |
说明 |
Value |
容量 |
SKU 容量。 |
int |
family |
SKU 系列。 |
字符串 |
模型 |
SKU 模型。 |
字符串 |
name |
SKU 名称。 |
字符串 (必需) |
大小 |
SKU 大小。 |
字符串 |
层 |
SKU 层。 |
字符串 |