你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

Microsoft.Solutions 应用程序 2017-12-01

Bicep 资源定义

应用程序资源类型可以部署到: 资源组

若要了解资源组部署,请参阅 Bicep

有关每个 API 版本中更改的属性的列表,请参阅 更改日志

资源格式

若要创建 Microsoft.Solutions/applications 资源,请将以下 Bicep 添加到模板。

resource symbolicname 'Microsoft.Solutions/applications@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'
  }
  kind: 'string'
  identity: {
    type: 'SystemAssigned'
  }
  managedBy: 'string'
  plan: {
    name: 'string'
    product: 'string'
    promotionCode: 'string'
    publisher: 'string'
    version: 'string'
  }
  properties: {
    applicationDefinitionId: 'string'
    managedResourceGroupId: 'string'
    parameters: any()
    uiDefinitionUri: 'string'
  }
}

属性值

applications

名称 说明
name 资源名称 字符串 (必需)
location 资源位置 字符串
标记 资源标记 标记名称和值的字典。 请参阅 模板中的标记
sku 资源的 SKU。 Sku
kind 托管应用程序的类型。 允许的值为 MarketPlace 和 ServiceCatalog。 字符串 (必需)
identity 资源的标识。 标识
managedBy 管理此资源的资源的 ID。 字符串
plan 计划信息。 规划
properties 托管应用程序属性。 ApplicationProperties (必需)

标识

名称 说明 Value
type 标识类型。 “SystemAssigned”

计划

名称 说明
name 计划名称。 字符串 (必需)
product 产品代码。 字符串 (必需)
promotionCode 促销代码。 string
publisher 发布者 ID。 字符串 (必需)
版本 计划的版本。 字符串 (必需)

ApplicationProperties

名称 说明
applicationDefinitionId 托管应用程序定义 ID 的完全限定路径。 字符串
managedResourceGroupId 托管资源组 ID。 字符串 (必需)
parameters 定义托管应用程序参数的名称和值对。 它可以是 JObject 或格式正确的 JSON 字符串。 对于 Bicep,可以使用 any () 函数。
uiDefinitionUri UI 定义文件所在的 Blob URI。 字符串

SKU

名称 说明
容量 SKU 容量。 int
family SKU 系列。 字符串
模型 SKU 模型。 字符串
name SKU 名称。 字符串 (必需)
大小 SKU 大小。 string
SKU 层。 string

快速入门模板

以下快速入门模板部署此资源类型。

模板 说明
使用自定义视图创建托管应用程序

部署到 Azure
此模板创建具有自定义默认视图的托管应用程序。
创建部署链接模板的托管应用程序

部署到 Azure
此模板创建部署链接模板的托管应用程序。
创建包含指标和警报的托管应用程序

部署到 Azure
此模板创建具有应用程序指标和警报的托管应用程序。

ARM 模板资源定义

应用程序资源类型可以部署到: 资源组

若要了解资源组部署,请参阅 ARM 模板

有关每个 API 版本中已更改属性的列表,请参阅 更改日志

资源格式

若要创建 Microsoft.Solutions/applications 资源,请将以下 JSON 添加到模板。

{
  "type": "Microsoft.Solutions/applications",
  "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"
  },
  "kind": "string",
  "identity": {
    "type": "SystemAssigned"
  },
  "managedBy": "string",
  "plan": {
    "name": "string",
    "product": "string",
    "promotionCode": "string",
    "publisher": "string",
    "version": "string"
  },
  "properties": {
    "applicationDefinitionId": "string",
    "managedResourceGroupId": "string",
    "parameters": {},
    "uiDefinitionUri": "string"
  }
}

属性值

applications

名称 说明 Value
type 资源类型 “Microsoft.Solutions/applications”
apiVersion 资源 API 版本 '2017-12-01'
name 资源名称 字符串 (必需)
location 资源位置 string
标记 资源标记 标记名称和值的字典。 请参阅 模板中的标记
sku 资源的 SKU。 Sku
kind 托管应用程序的类型。 允许的值为 MarketPlace 和 ServiceCatalog。 字符串 (必需)
identity 资源的标识。 标识
managedBy 管理此资源的资源的 ID。 string
plan 计划信息。 规划
properties 托管应用程序属性。 ApplicationProperties (必需)

标识

名称 说明 Value
type 标识类型。 “SystemAssigned”

计划

名称 说明
name 计划名称。 字符串 (必需)
product 产品代码。 字符串 (必需)
promotionCode 促销代码。 string
publisher 发布者 ID。 字符串 (必需)
版本 计划的版本。 字符串 (必需)

ApplicationProperties

名称 说明
applicationDefinitionId 托管应用程序定义 ID 的完全限定路径。 字符串
managedResourceGroupId 托管资源组 ID。 字符串 (必需)
parameters 定义托管应用程序参数的名称和值对。 它可以是 JObject 或格式正确的 JSON 字符串。
uiDefinitionUri UI 定义文件所在的 Blob URI。 字符串

SKU

名称 说明
容量 SKU 容量。 int
family SKU 系列。 字符串
模型 SKU 模型。 字符串
name SKU 名称。 字符串 (必需)
大小 SKU 大小。 字符串
SKU 层。 字符串

快速入门模板

以下快速入门模板部署此资源类型。

模板 说明
使用自定义视图创建托管应用程序

部署到 Azure
此模板创建具有自定义默认视图的托管应用程序。
创建部署链接模板的托管应用程序

部署到 Azure
此模板创建部署链接模板的托管应用程序。
创建包含指标和警报的托管应用程序

部署到 Azure
此模板创建具有应用程序指标和警报的托管应用程序。

Terraform (AzAPI 提供程序) 资源定义

应用程序资源类型可以部署到: 资源组

有关每个 API 版本中更改的属性的列表,请参阅 更改日志

资源格式

若要创建 Microsoft.Solutions/applications 资源,请将以下 Terraform 添加到模板。

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Solutions/applications@2017-12-01"
  name = "string"
  location = "string"
  parent_id = "string"
  tags = {
    tagName1 = "tagValue1"
    tagName2 = "tagValue2"
  }
  identity {
    type = "SystemAssigned"
  }
  body = jsonencode({
    properties = {
      applicationDefinitionId = "string"
      managedResourceGroupId = "string"
      uiDefinitionUri = "string"
    }
    sku = {
      capacity = int
      family = "string"
      model = "string"
      name = "string"
      size = "string"
      tier = "string"
    }
    kind = "string"
    managedBy = "string"
    plan = {
      name = "string"
      product = "string"
      promotionCode = "string"
      publisher = "string"
      version = "string"
    }
  })
}

属性值

applications

名称 说明 Value
type 资源类型 “Microsoft.Solutions/applications@2017-12-01”
name 资源名称 字符串 (必需)
location 资源位置 字符串
parent_id 若要部署到资源组,请使用该资源组的 ID。 字符串 (必需)
标记 资源标记 标记名称和值的字典。
sku 资源的 SKU。 Sku
kind 托管应用程序的类型。 允许的值为 MarketPlace 和 ServiceCatalog。 字符串 (必需)
identity 资源的标识。 标识
managedBy 管理此资源的资源的 ID。 string
plan 计划信息。 规划
properties 托管应用程序属性。 ApplicationProperties (必需)

标识

名称 说明 Value
type 标识类型。 “SystemAssigned”

计划

名称 说明
name 计划名称。 字符串 (必需)
product 产品代码。 字符串 (必需)
promotionCode 促销代码。 string
publisher 发布者 ID。 字符串 (必需)
版本 计划的版本。 字符串 (必需)

ApplicationProperties

名称 说明
applicationDefinitionId 托管应用程序定义 ID 的完全限定路径。 字符串
managedResourceGroupId 托管资源组 ID。 字符串 (必需)
parameters 定义托管应用程序参数的名称和值对。 它可以是 JObject 或格式正确的 JSON 字符串。
uiDefinitionUri UI 定义文件所在的 Blob URI。 string

SKU

名称 说明
容量 SKU 容量。 int
family SKU 系列。 字符串
模型 SKU 模型。 字符串
name SKU 名称。 字符串 (必需)
大小 SKU 大小。 字符串
SKU 层。 字符串