你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Microsoft.App builders/builds 2023-11-02-preview
Bicep 资源定义
可以使用目标操作部署生成器/生成资源类型:
- 资源组 - 请参阅 资源组部署命令
有关每个 API 版本中已更改属性的列表,请参阅 更改日志。
资源格式
若要创建 Microsoft.App/builders/builds 资源,请将以下 Bicep 添加到模板。
resource symbolicname 'Microsoft.App/builders/builds@2023-11-02-preview' = {
parent: resourceSymbolicName
name: 'string'
properties: {
configuration: {
baseOs: 'string'
environmentVariables: [
{
name: 'string'
value: 'string'
}
]
platform: 'string'
platformVersion: 'string'
preBuildSteps: [
{
description: 'string'
httpGet: {
fileName: 'string'
headers: [
'string'
]
url: 'string'
}
scripts: [
'string'
]
}
]
}
destinationContainerRegistry: {
image: 'string'
server: 'string'
}
}
}
属性值
BuildConfiguration
名字 | 描述 | 价值 |
---|---|---|
baseOs | 用于生成和运行应用的基本 OS。 | 字符串 |
environmentVariables | 要传递给生成的环境变量列表,不应在环境变量中使用机密。 | EnvironmentVariable[] |
平台 | 用于生成和运行应用的平台。 | 字符串 |
platformVersion | 用于生成和运行应用的平台版本。 | 字符串 |
preBuildSteps | 生成之前要执行的步骤列表。 | PreBuildStep[] |
BuildProperties
名字 | 描述 | 价值 |
---|---|---|
配置 | 生成配置。 | BuildConfiguration |
destinationContainerRegistry | 最终映像将上传到的容器注册表。 | ContainerRegistryWithCustomImage |
ContainerRegistryWithCustomImage
名字 | 描述 | 价值 |
---|---|---|
图像 | 最终映像应作为上传的完整名称,包括映像名称和标记。 | 字符串 |
服务器 | 应将最终映像上传到的容器注册表的登录服务器。 生成器资源需要定义此容器注册表以及用于访问它的标识。 | string (必需) |
EnvironmentVariable
名字 | 描述 | 价值 |
---|---|---|
名字 | 环境变量名称。 | string (必需) |
价值 | 环境变量值。 | string (必需) |
HttpGet
名字 | 描述 | 价值 |
---|---|---|
文件名 | 请求应保存到的文件的名称。 | 字符串 |
头 | 要随请求一起发送的标头列表。 | string[] |
url | 要对其发出 HTTP GET 请求的 URL。 | string (必需) |
Microsoft.App/builders/builds
名字 | 描述 | 价值 |
---|---|---|
名字 | 资源名称 | 字符串 约束: 最小长度 = 2 最大长度 = 64 模式 = ^[-\w\._\(\)]+$ (必需) |
父母 | 在 Bicep 中,可以为子资源指定父资源。 仅当子资源在父资源外部声明时,才需要添加此属性。 有关详细信息,请参阅 父资源外部的子资源。 |
类型资源的符号名称:生成器 |
性能 | 此资源的资源特定属性。 | BuildProperties |
PreBuildStep
名字 | 描述 | 价值 |
---|---|---|
描述 | 预生成步骤的说明。 | 字符串 |
httpGet | Http 获取在生成之前发送的请求。 | HttpGet |
脚本 | 要运行的自定义命令列表。 | string[] |
ARM 模板资源定义
可以使用目标操作部署生成器/生成资源类型:
- 资源组 - 请参阅 资源组部署命令
有关每个 API 版本中已更改属性的列表,请参阅 更改日志。
资源格式
若要创建 Microsoft.App/builders/builds 资源,请将以下 JSON 添加到模板。
{
"type": "Microsoft.App/builders/builds",
"apiVersion": "2023-11-02-preview",
"name": "string",
"properties": {
"configuration": {
"baseOs": "string",
"environmentVariables": [
{
"name": "string",
"value": "string"
}
],
"platform": "string",
"platformVersion": "string",
"preBuildSteps": [
{
"description": "string",
"httpGet": {
"fileName": "string",
"headers": [ "string" ],
"url": "string"
},
"scripts": [ "string" ]
}
]
},
"destinationContainerRegistry": {
"image": "string",
"server": "string"
}
}
}
属性值
BuildConfiguration
名字 | 描述 | 价值 |
---|---|---|
baseOs | 用于生成和运行应用的基本 OS。 | 字符串 |
environmentVariables | 要传递给生成的环境变量列表,不应在环境变量中使用机密。 | EnvironmentVariable[] |
平台 | 用于生成和运行应用的平台。 | 字符串 |
platformVersion | 用于生成和运行应用的平台版本。 | 字符串 |
preBuildSteps | 生成之前要执行的步骤列表。 | PreBuildStep[] |
BuildProperties
名字 | 描述 | 价值 |
---|---|---|
配置 | 生成配置。 | BuildConfiguration |
destinationContainerRegistry | 最终映像将上传到的容器注册表。 | ContainerRegistryWithCustomImage |
ContainerRegistryWithCustomImage
名字 | 描述 | 价值 |
---|---|---|
图像 | 最终映像应作为上传的完整名称,包括映像名称和标记。 | 字符串 |
服务器 | 应将最终映像上传到的容器注册表的登录服务器。 生成器资源需要定义此容器注册表以及用于访问它的标识。 | string (必需) |
EnvironmentVariable
名字 | 描述 | 价值 |
---|---|---|
名字 | 环境变量名称。 | string (必需) |
价值 | 环境变量值。 | string (必需) |
HttpGet
名字 | 描述 | 价值 |
---|---|---|
文件名 | 请求应保存到的文件的名称。 | 字符串 |
头 | 要随请求一起发送的标头列表。 | string[] |
url | 要对其发出 HTTP GET 请求的 URL。 | string (必需) |
Microsoft.App/builders/builds
名字 | 描述 | 价值 |
---|---|---|
apiVersion | API 版本 | '2023-11-02-preview' |
名字 | 资源名称 | 字符串 约束: 最小长度 = 2 最大长度 = 64 模式 = ^[-\w\._\(\)]+$ (必需) |
性能 | 此资源的资源特定属性。 | BuildProperties |
类型 | 资源类型 | “Microsoft.App/builders/builds” |
PreBuildStep
名字 | 描述 | 价值 |
---|---|---|
描述 | 预生成步骤的说明。 | 字符串 |
httpGet | Http 获取在生成之前发送的请求。 | HttpGet |
脚本 | 要运行的自定义命令列表。 | string[] |
Terraform (AzAPI 提供程序)资源定义
可以使用目标操作部署生成器/生成资源类型:
- 资源组
有关每个 API 版本中已更改属性的列表,请参阅 更改日志。
资源格式
若要创建 Microsoft.App/builders/builds 资源,请将以下 Terraform 添加到模板。
resource "azapi_resource" "symbolicname" {
type = "Microsoft.App/builders/builds@2023-11-02-preview"
name = "string"
body = jsonencode({
properties = {
configuration = {
baseOs = "string"
environmentVariables = [
{
name = "string"
value = "string"
}
]
platform = "string"
platformVersion = "string"
preBuildSteps = [
{
description = "string"
httpGet = {
fileName = "string"
headers = [
"string"
]
url = "string"
}
scripts = [
"string"
]
}
]
}
destinationContainerRegistry = {
image = "string"
server = "string"
}
}
})
}
属性值
BuildConfiguration
名字 | 描述 | 价值 |
---|---|---|
baseOs | 用于生成和运行应用的基本 OS。 | 字符串 |
environmentVariables | 要传递给生成的环境变量列表,不应在环境变量中使用机密。 | EnvironmentVariable[] |
平台 | 用于生成和运行应用的平台。 | 字符串 |
platformVersion | 用于生成和运行应用的平台版本。 | 字符串 |
preBuildSteps | 生成之前要执行的步骤列表。 | PreBuildStep[] |
BuildProperties
名字 | 描述 | 价值 |
---|---|---|
配置 | 生成配置。 | BuildConfiguration |
destinationContainerRegistry | 最终映像将上传到的容器注册表。 | ContainerRegistryWithCustomImage |
ContainerRegistryWithCustomImage
名字 | 描述 | 价值 |
---|---|---|
图像 | 最终映像应作为上传的完整名称,包括映像名称和标记。 | 字符串 |
服务器 | 应将最终映像上传到的容器注册表的登录服务器。 生成器资源需要定义此容器注册表以及用于访问它的标识。 | string (必需) |
EnvironmentVariable
名字 | 描述 | 价值 |
---|---|---|
名字 | 环境变量名称。 | string (必需) |
价值 | 环境变量值。 | string (必需) |
HttpGet
名字 | 描述 | 价值 |
---|---|---|
文件名 | 请求应保存到的文件的名称。 | 字符串 |
头 | 要随请求一起发送的标头列表。 | string[] |
url | 要对其发出 HTTP GET 请求的 URL。 | string (必需) |
Microsoft.App/builders/builds
名字 | 描述 | 价值 |
---|---|---|
名字 | 资源名称 | 字符串 约束: 最小长度 = 2 最大长度 = 64 模式 = ^[-\w\._\(\)]+$ (必需) |
parent_id | 此资源的父资源的 ID。 | 类型资源的 ID:生成器 |
性能 | 此资源的资源特定属性。 | BuildProperties |
类型 | 资源类型 | “Microsoft.App/builders/builds@2023-11-02-preview” |
PreBuildStep
名字 | 描述 | 价值 |
---|---|---|
描述 | 预生成步骤的说明。 | 字符串 |
httpGet | Http 获取在生成之前发送的请求。 | HttpGet |
脚本 | 要运行的自定义命令列表。 | string[] |