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

Microsoft.AppPlatform Spring/apps/deployments 2020-11-01-preview

Bicep 资源定义

Spring/apps/deployments 资源类型可以使用面向以下操作进行部署:

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

资源格式

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

resource symbolicname 'Microsoft.AppPlatform/Spring/apps/deployments@2020-11-01-preview' = {
  name: 'string'
  sku: {
    capacity: int
    name: 'string'
    tier: 'string'
  }
  parent: resourceSymbolicName
  properties: {
    deploymentSettings: {
      cpu: int
      environmentVariables: {}
      jvmOptions: 'string'
      memoryInGB: int
      netCoreMainEntryPath: 'string'
      runtimeVersion: 'string'
    }
    source: {
      artifactSelector: 'string'
      relativePath: 'string'
      type: 'string'
      version: 'string'
    }
  }
}

属性值

Spring/apps/deployments

名称 说明
name 资源名称

了解如何在 Bicep 中设置子资源的名称和类型。
字符串 (必需)
sku 部署资源的 SKU Sku
父级 (parent) 在 Bicep 中,可以为子资源指定父资源。 仅当子资源在父资源外部声明时,才需要添加此属性。

有关详细信息,请参阅 父资源之外的子资源
类型为 的资源的符号名称: 应用
properties 部署资源的属性 DeploymentResourceProperties

DeploymentResourceProperties

名称 说明
deploymentSettings 部署的部署设置 DeploymentSettings
source 已上传部署的源信息。 UserSourceInfo

DeploymentSettings

名称 说明
cpu 所需的 CPU,基本层应为 1,标准层应位于范围 (1、4) int
environmentVariables 环境变量的集合 对象 (object)
jvmOptions JVM 参数 字符串
memoryInGB 所需的内存大小(以 GB 为单位),基本层应位于 (1、2) 范围内,标准层应位于 (1、8) int
netCoreMainEntryPath 相对于 zip 根目录的 .NET 可执行文件的路径 字符串
runtimeVersion 运行时版本 “Java_11”
“Java_8”
“NetCore_31”

UserSourceInfo

名称 说明
artifactSelector 用于多模块项目部署的项目选择器。 这应该是
目标模块/项目的相对路径。
字符串
relativePath 存储源的存储的相对路径 字符串
type 上传的源的类型 “Jar”
“NetCoreZip”
'Source'
版本 源的版本 字符串

SKU

名称 说明
容量 目标资源的当前容量 int
name SKU 的名称 字符串
SKU 层 字符串

ARM 模板资源定义

Spring/apps/deployments 资源类型可以通过针对以下操作进行部署:

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

资源格式

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

{
  "type": "Microsoft.AppPlatform/Spring/apps/deployments",
  "apiVersion": "2020-11-01-preview",
  "name": "string",
  "sku": {
    "capacity": "int",
    "name": "string",
    "tier": "string"
  },
  "properties": {
    "deploymentSettings": {
      "cpu": "int",
      "environmentVariables": {},
      "jvmOptions": "string",
      "memoryInGB": "int",
      "netCoreMainEntryPath": "string",
      "runtimeVersion": "string"
    },
    "source": {
      "artifactSelector": "string",
      "relativePath": "string",
      "type": "string",
      "version": "string"
    }
  }
}

属性值

Spring/apps/deployments

名称 说明 Value
type 资源类型 “Microsoft.AppPlatform/Spring/apps/deployments”
apiVersion 资源 API 版本 “2020-11-01-preview”
name 资源名称

了解如何在 JSON ARM 模板中为子资源设置名称和类型。
字符串 (必需)
sku 部署资源的 SKU Sku
properties 部署资源的属性 DeploymentResourceProperties

DeploymentResourceProperties

名称 说明
deploymentSettings 部署的部署设置 DeploymentSettings
source 已上传部署的源信息。 UserSourceInfo

DeploymentSettings

名称 说明
cpu 必需的 CPU,基本层应为 1,标准层应位于 1、4 (范围内) int
environmentVariables 环境变量的集合 对象 (object)
jvmOptions JVM 参数 字符串
memoryInGB 所需的内存大小(以 GB 为单位),基本层应在 1、2) (范围内,标准层的范围应 (1、8) int
netCoreMainEntryPath 相对于 zip 根目录的 .NET 可执行文件的路径 字符串
runtimeVersion 运行时版本 “Java_11”
“Java_8”
“NetCore_31”

UserSourceInfo

名称 说明
artifactSelector 要用于多模块项目的部署的项目的选择器。 这应为
目标模块/项目的相对路径。
字符串
relativePath 存储源的存储的相对路径 字符串
type 上传的源的类型 “Jar”
“NetCoreZip”
“源”
版本 源的版本 字符串

SKU

名称 说明
容量 目标资源的当前容量 int
name SKU 的名称 字符串
SKU 层 字符串

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

Spring/apps/deployments 资源类型可以通过针对以下操作进行部署:

  • 资源组

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

资源格式

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

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.AppPlatform/Spring/apps/deployments@2020-11-01-preview"
  name = "string"
  parent_id = "string"
  body = jsonencode({
    properties = {
      deploymentSettings = {
        cpu = int
        environmentVariables = {}
        jvmOptions = "string"
        memoryInGB = int
        netCoreMainEntryPath = "string"
        runtimeVersion = "string"
      }
      source = {
        artifactSelector = "string"
        relativePath = "string"
        type = "string"
        version = "string"
      }
    }
    sku = {
      capacity = int
      name = "string"
      tier = "string"
    }
  })
}

属性值

Spring/apps/deployments

名称 说明 Value
type 资源类型 “Microsoft.AppPlatform/Spring/apps/deployments@2020-11-01-preview”
name 资源名称 字符串 (必需)
parent_id 此资源的父资源 ID。 类型为“应用”的资源的 ID
sku 部署资源的 SKU Sku
properties 部署资源的属性 DeploymentResourceProperties

DeploymentResourceProperties

名称 说明
deploymentSettings 部署的部署设置 DeploymentSettings
source 已上传部署的源信息。 UserSourceInfo

DeploymentSettings

名称 说明
cpu 必需的 CPU,基本层应为 1,标准层应位于 1、4 (范围内) int
environmentVariables 环境变量的集合 对象 (object)
jvmOptions JVM 参数 字符串
memoryInGB 所需的内存大小(以 GB 为单位),基本层应在 1、2) (范围内,标准层的范围应 (1、8) int
netCoreMainEntryPath 相对于 zip 根目录的 .NET 可执行文件的路径 字符串
runtimeVersion 运行时版本 “Java_11”
“Java_8”
“NetCore_31”

UserSourceInfo

名称 说明
artifactSelector 要用于多模块项目的部署的项目的选择器。 这应为
目标模块/项目的相对路径。
字符串
relativePath 存储源的存储的相对路径 字符串
type 上传的源的类型 “Jar”
“NetCoreZip”
“源”
版本 源的版本 字符串

SKU

名称 说明
容量 目标资源的当前容量 int
name SKU 的名称 字符串
SKU 层 字符串