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

Microsoft.AppPlatform Spring/apps 2021-09-01-预览版

Bicep 资源定义

可以使用目标操作部署 Spring/apps 资源类型:

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

资源格式

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

resource symbolicname 'Microsoft.AppPlatform/Spring/apps@2021-09-01-preview' = {
  parent: resourceSymbolicName
  identity: {
    principalId: 'string'
    tenantId: 'string'
    type: 'string'
  }
  location: 'string'
  name: 'string'
  properties: {
    activeDeploymentName: 'string'
    customPersistentDisks: [
      {
        customPersistentDiskProperties: {
          mountOptions: [
            'string'
          ]
          mountPath: 'string'
          readOnly: bool
          type: 'string'
          // For remaining properties, see CustomPersistentDiskProperties objects
        }
        storageId: 'string'
      }
    ]
    enableEndToEndTLS: bool
    fqdn: 'string'
    httpsOnly: bool
    loadedCertificates: [
      {
        loadTrustStore: bool
        resourceId: 'string'
      }
    ]
    persistentDisk: {
      mountPath: 'string'
      sizeInGB: int
    }
    public: bool
    temporaryDisk: {
      mountPath: 'string'
      sizeInGB: int
    }
  }
}

CustomPersistentDiskProperties 对象

设置 类型 属性以指定对象的类型。

对于 AzureFileVolume,请使用:

{
  shareName: 'string'
  type: 'AzureFileVolume'
}

属性值

Microsoft.AppPlatform/Spring/apps

名字 描述 价值
身份 应用资源的托管标识类型 ManagedIdentityProperties
位置 应用程序的 GEO 位置,与其父资源始终相同 字符串
名字 资源名称 string (必需)
父母 在 Bicep 中,可以为子资源指定父资源。 仅当子资源在父资源外部声明时,才需要添加此属性。

有关详细信息,请参阅 父资源外部的子资源
类型资源的符号名称:Spring
性能 应用资源的属性 AppResourceProperties

AppResourceProperties

名字 描述 价值
activeDeploymentName (活动部署名称) 应用的活动部署的名称 字符串
自定义持久磁盘 自定义永久性磁盘列表 CustomPersistentDiskResource[]
enableEndToEndTLS 指示是否启用了端到端 TLS。 布尔
FQDN 完全限定的 dns 名称。 字符串
httpsOnly (仅 https) 指示是否只允许 https。 布尔
loadedCertificates 已加载证书的集合 LoadedCertificate[]
持久磁盘 永久性磁盘设置 PersistentDisk (持久磁盘)
公共 指示应用是否公开公共终结点 布尔
临时磁盘 临时磁盘设置 临时磁盘

AzureFileVolume

名字 描述 价值
shareName (共享名称) Azure 文件共享的共享名称。 string (必需)
类型 要作为永久性磁盘装载的基础资源的类型。 “AzureFileVolume”(必需)

CustomPersistentDiskProperties

名字 描述 价值
mountOptions 这些是永久性磁盘的装载选项。 字符串[]
mountPath 永久性磁盘的装载路径。 string (必需)
只读 指示永久性磁盘是否为 readOnly 磁盘。 布尔
类型 对于 AzureFileVolume类型,设置为“AzureFileVolume”。 “AzureFileVolume”(必需)

CustomPersistentDiskResource

名字 描述 价值
customPersistentDiskProperties 自定义永久性磁盘资源有效负载的属性。 CustomPersistentDiskProperties
存储 ID Azure Spring Cloud 存储资源的资源 ID。 string (必需)

LoadedCertificate 证书

名字 描述 价值
loadTrustStore 指示证书是否将加载到默认信任存储中,仅适用于 Java 运行时。 布尔
资源ID 已加载证书的资源 ID string (必需)

ManagedIdentityProperties

名字 描述 价值
principalId (主体ID) 主体 ID 字符串
租户ID 租户 ID 字符串
类型 托管标识的类型 “None”
“SystemAssigned”
“SystemAssigned,UserAssigned”
“UserAssigned”

PersistentDisk (持久磁盘)

名字 描述 价值
mountPath 永久性磁盘的装载路径 字符串
大小(GB) 永久性磁盘的大小(以 GB 为单位) int

约束:
最小值 = 0
最大值 = 50

临时磁盘

名字 描述 价值
mountPath 临时磁盘的装载路径 字符串
大小(GB) 临时磁盘的大小(以 GB 为单位) int

约束:
最小值 = 0
最大值 = 5

用法示例

Azure 快速入门示例

以下 Azure 快速入门模板 包含用于部署此资源类型的 Bicep 示例。

Bicep 文件 描述
部署简单的 Azure Spring Apps 微服务应用程序 此模板部署一个简单的 Azure Spring Apps 微服务应用程序,以在 Azure 上运行。

ARM 模板资源定义

可以使用目标操作部署 Spring/apps 资源类型:

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

资源格式

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

{
  "type": "Microsoft.AppPlatform/Spring/apps",
  "apiVersion": "2021-09-01-preview",
  "name": "string",
  "identity": {
    "principalId": "string",
    "tenantId": "string",
    "type": "string"
  },
  "location": "string",
  "properties": {
    "activeDeploymentName": "string",
    "customPersistentDisks": [
      {
        "customPersistentDiskProperties": {
          "mountOptions": [ "string" ],
          "mountPath": "string",
          "readOnly": "bool",
          "type": "string"
          // For remaining properties, see CustomPersistentDiskProperties objects
        },
        "storageId": "string"
      }
    ],
    "enableEndToEndTLS": "bool",
    "fqdn": "string",
    "httpsOnly": "bool",
    "loadedCertificates": [
      {
        "loadTrustStore": "bool",
        "resourceId": "string"
      }
    ],
    "persistentDisk": {
      "mountPath": "string",
      "sizeInGB": "int"
    },
    "public": "bool",
    "temporaryDisk": {
      "mountPath": "string",
      "sizeInGB": "int"
    }
  }
}

CustomPersistentDiskProperties 对象

设置 类型 属性以指定对象的类型。

对于 AzureFileVolume,请使用:

{
  "shareName": "string",
  "type": "AzureFileVolume"
}

属性值

Microsoft.AppPlatform/Spring/apps

名字 描述 价值
apiVersion API 版本 “2021-09-01-预览”
身份 应用资源的托管标识类型 ManagedIdentityProperties
位置 应用程序的 GEO 位置,与其父资源始终相同 字符串
名字 资源名称 string (必需)
性能 应用资源的属性 AppResourceProperties
类型 资源类型 “Microsoft.AppPlatform/Spring/apps”

AppResourceProperties

名字 描述 价值
activeDeploymentName (活动部署名称) 应用的活动部署的名称 字符串
自定义持久磁盘 自定义永久性磁盘列表 CustomPersistentDiskResource[]
enableEndToEndTLS 指示是否启用了端到端 TLS。 布尔
FQDN 完全限定的 dns 名称。 字符串
httpsOnly (仅 https) 指示是否只允许 https。 布尔
loadedCertificates 已加载证书的集合 LoadedCertificate[]
持久磁盘 永久性磁盘设置 PersistentDisk (持久磁盘)
公共 指示应用是否公开公共终结点 布尔
临时磁盘 临时磁盘设置 临时磁盘

AzureFileVolume

名字 描述 价值
shareName (共享名称) Azure 文件共享的共享名称。 string (必需)
类型 要作为永久性磁盘装载的基础资源的类型。 “AzureFileVolume”(必需)

CustomPersistentDiskProperties

名字 描述 价值
mountOptions 这些是永久性磁盘的装载选项。 字符串[]
mountPath 永久性磁盘的装载路径。 string (必需)
只读 指示永久性磁盘是否为 readOnly 磁盘。 布尔
类型 对于 AzureFileVolume类型,设置为“AzureFileVolume”。 “AzureFileVolume”(必需)

CustomPersistentDiskResource

名字 描述 价值
customPersistentDiskProperties 自定义永久性磁盘资源有效负载的属性。 CustomPersistentDiskProperties
存储 ID Azure Spring Cloud 存储资源的资源 ID。 string (必需)

LoadedCertificate 证书

名字 描述 价值
loadTrustStore 指示证书是否将加载到默认信任存储中,仅适用于 Java 运行时。 布尔
资源ID 已加载证书的资源 ID string (必需)

ManagedIdentityProperties

名字 描述 价值
principalId (主体ID) 主体 ID 字符串
租户ID 租户 ID 字符串
类型 托管标识的类型 “None”
“SystemAssigned”
“SystemAssigned,UserAssigned”
“UserAssigned”

PersistentDisk (持久磁盘)

名字 描述 价值
mountPath 永久性磁盘的装载路径 字符串
大小(GB) 永久性磁盘的大小(以 GB 为单位) int

约束:
最小值 = 0
最大值 = 50

临时磁盘

名字 描述 价值
mountPath 临时磁盘的装载路径 字符串
大小(GB) 临时磁盘的大小(以 GB 为单位) int

约束:
最小值 = 0
最大值 = 5

用法示例

Azure 快速入门模板

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

模板 描述
部署简单的 Azure Spring Apps 微服务应用程序

部署到 Azure
此模板部署一个简单的 Azure Spring Apps 微服务应用程序,以在 Azure 上运行。

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

可以使用目标操作部署 Spring/apps 资源类型:

  • 资源组

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

资源格式

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

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.AppPlatform/Spring/apps@2021-09-01-preview"
  name = "string"
  parent_id = "string"
  identity {
    type = "string"
    identity_ids = [
      "string"
    ]
  }
  location = "string"
  body = {
    properties = {
      activeDeploymentName = "string"
      customPersistentDisks = [
        {
          customPersistentDiskProperties = {
            mountOptions = [
              "string"
            ]
            mountPath = "string"
            readOnly = bool
            type = "string"
            // For remaining properties, see CustomPersistentDiskProperties objects
          }
          storageId = "string"
        }
      ]
      enableEndToEndTLS = bool
      fqdn = "string"
      httpsOnly = bool
      loadedCertificates = [
        {
          loadTrustStore = bool
          resourceId = "string"
        }
      ]
      persistentDisk = {
        mountPath = "string"
        sizeInGB = int
      }
      public = bool
      temporaryDisk = {
        mountPath = "string"
        sizeInGB = int
      }
    }
  }
}

CustomPersistentDiskProperties 对象

设置 类型 属性以指定对象的类型。

对于 AzureFileVolume,请使用:

{
  shareName = "string"
  type = "AzureFileVolume"
}

属性值

Microsoft.AppPlatform/Spring/apps

名字 描述 价值
身份 应用资源的托管标识类型 ManagedIdentityProperties
位置 应用程序的 GEO 位置,与其父资源始终相同 字符串
名字 资源名称 string (必需)
parent_id 此资源的父资源的 ID。 类型资源的 ID:Spring
性能 应用资源的属性 AppResourceProperties
类型 资源类型 “Microsoft.AppPlatform/Spring/apps@2021-09-01-preview”

AppResourceProperties

名字 描述 价值
activeDeploymentName (活动部署名称) 应用的活动部署的名称 字符串
自定义持久磁盘 自定义永久性磁盘列表 CustomPersistentDiskResource[]
enableEndToEndTLS 指示是否启用了端到端 TLS。 布尔
FQDN 完全限定的 dns 名称。 字符串
httpsOnly (仅 https) 指示是否只允许 https。 布尔
loadedCertificates 已加载证书的集合 LoadedCertificate[]
持久磁盘 永久性磁盘设置 PersistentDisk (持久磁盘)
公共 指示应用是否公开公共终结点 布尔
临时磁盘 临时磁盘设置 临时磁盘

AzureFileVolume

名字 描述 价值
shareName (共享名称) Azure 文件共享的共享名称。 string (必需)
类型 要作为永久性磁盘装载的基础资源的类型。 “AzureFileVolume”(必需)

CustomPersistentDiskProperties

名字 描述 价值
mountOptions 这些是永久性磁盘的装载选项。 字符串[]
mountPath 永久性磁盘的装载路径。 string (必需)
只读 指示永久性磁盘是否为 readOnly 磁盘。 布尔
类型 对于 AzureFileVolume类型,设置为“AzureFileVolume”。 “AzureFileVolume”(必需)

CustomPersistentDiskResource

名字 描述 价值
customPersistentDiskProperties 自定义永久性磁盘资源有效负载的属性。 CustomPersistentDiskProperties
存储 ID Azure Spring Cloud 存储资源的资源 ID。 string (必需)

LoadedCertificate 证书

名字 描述 价值
loadTrustStore 指示证书是否将加载到默认信任存储中,仅适用于 Java 运行时。 布尔
资源ID 已加载证书的资源 ID string (必需)

ManagedIdentityProperties

名字 描述 价值
principalId (主体ID) 主体 ID 字符串
租户ID 租户 ID 字符串
类型 托管标识的类型 “None”
“SystemAssigned”
“SystemAssigned,UserAssigned”
“UserAssigned”

PersistentDisk (持久磁盘)

名字 描述 价值
mountPath 永久性磁盘的装载路径 字符串
大小(GB) 永久性磁盘的大小(以 GB 为单位) int

约束:
最小值 = 0
最大值 = 50

临时磁盘

名字 描述 价值
mountPath 临时磁盘的装载路径 字符串
大小(GB) 临时磁盘的大小(以 GB 为单位) int

约束:
最小值 = 0
最大值 = 5