你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Bicep 资源定义
可以使用面向以下操作部署 Spring/apps 资源类型:
有关每个 API 版本中已更改属性的列表,请参阅 更改日志。
若要创建 Microsoft.AppPlatform/Spring/apps 资源,请将以下 Bicep 添加到模板。
resource symbolicname 'Microsoft.AppPlatform/Spring/apps@2023-01-01-preview' = {
name: 'string'
location: 'string'
parent: resourceSymbolicName
identity: {
principalId: 'string'
tenantId: 'string'
type: 'string'
userAssignedIdentities: {}
}
properties: {
addonConfigs: {}
customPersistentDisks: [
{
customPersistentDiskProperties: {
enableSubPath: bool
mountOptions: [
'string'
]
mountPath: 'string'
readOnly: bool
type: 'string'
// For remaining properties, see CustomPersistentDiskProperties objects
}
storageId: 'string'
}
]
enableEndToEndTLS: bool
httpsOnly: bool
ingressSettings: {
backendProtocol: 'string'
clientAuth: {
certificates: [
'string'
]
}
readTimeoutInSeconds: int
sendTimeoutInSeconds: int
sessionAffinity: 'string'
sessionCookieMaxAge: int
}
loadedCertificates: [
{
loadTrustStore: bool
resourceId: 'string'
}
]
persistentDisk: {
mountPath: 'string'
sizeInGB: int
}
public: bool
secrets: [
{
name: 'string'
value: 'string'
}
]
temporaryDisk: {
mountPath: 'string'
sizeInGB: int
}
vnetAddons: {
publicEndpoint: bool
}
}
}
CustomPersistentDiskProperties 对象
设置 type 属性以指定对象的类型。
对于 AzureFileVolume,请使用:
type: 'AzureFileVolume'
shareName: 'string'
属性值
Spring/apps
ManagedIdentityProperties
名称 |
说明 |
值 |
principalId |
系统分配的托管标识的主体 ID。 |
字符串 |
tenantId |
系统分配的托管标识的租户 ID。 |
字符串 |
type |
托管标识的类型 |
“None” “SystemAssigned” “SystemAssigned,UserAssigned” “UserAssigned” |
userAssignedIdentities |
用户分配的托管标识的属性 |
对象 (object) |
AppResourceProperties
CustomPersistentDiskResource
CustomPersistentDiskProperties
名称 |
说明 |
值 |
enableSubPath |
如果设置为 true,它将为每个单独的应用实例创建并装载专用目录。 |
bool |
mountOptions |
这些是永久性磁盘的装载选项。 |
string[] |
mountPath |
永久性磁盘的装载路径。 |
字符串 (必需) |
readOnly |
指示永久性磁盘是否为 readOnly 磁盘。 |
bool |
类型 |
设置对象类型 |
AzureFileVolume (必需) |
AzureFileVolume
名称 |
说明 |
Value |
type |
要装载为永久性磁盘的基础资源的类型。 |
“AzureFileVolume” (必需) |
shareName |
Azure 文件共享的共享名称。 |
字符串 |
IngressSettings
名称 |
说明 |
值 |
backendProtocol |
入口应如何与此应用后端服务通信。 |
'Default' “GRPC” |
clientAuth |
Client-Certification身份验证。 |
IngressSettingsClientAuth |
readTimeoutInSeconds |
入口读取超时(以秒为单位)。 |
int |
sendTimeoutInSeconds |
入口发送超时(以秒为单位)。 |
int |
sessionAffinity |
相关性的类型,将此设置为 Cookie 以启用会话相关性。 |
“Cookie” “None” |
sessionCookieMaxAge |
Cookie 过期前的时间(以秒为单位)。 |
int |
IngressSettingsClientAuth
名称 |
说明 |
值 |
certificates |
证书资源 ID 的集合。 |
string[] |
LoadedCertificate
名称 |
说明 |
值 |
loadTrustStore |
指示证书是否将加载到默认信任存储中,仅适用于 Java 运行时。 |
bool |
ResourceId |
已加载证书的资源 ID |
字符串 (必需) |
PersistentDisk
名称 |
说明 |
值 |
mountPath |
永久性磁盘的装载路径 |
字符串 |
sizeInGB |
永久性磁盘的大小(以 GB 为单位) |
int |
机密
名称 |
说明 |
值 |
name |
机密名称。 |
string |
value |
机密值。 |
字符串 |
TemporaryDisk
名称 |
说明 |
值 |
mountPath |
临时磁盘的装载路径 |
字符串 |
sizeInGB |
临时磁盘的大小(以 GB 为单位) |
int |
AppVNetAddons
名称 |
说明 |
值 |
publicEndpoint |
指示 vnet 注入实例中的应用是否公开可从 Internet 访问的终结点。 |
bool |
快速入门模板
以下快速入门模板部署此资源类型。
ARM 模板资源定义
可以使用面向以下操作部署 Spring/apps 资源类型:
有关每个 API 版本中已更改属性的列表,请参阅 更改日志。
若要创建 Microsoft.AppPlatform/Spring/apps 资源,请将以下 JSON 添加到模板。
{
"type": "Microsoft.AppPlatform/Spring/apps",
"apiVersion": "2023-01-01-preview",
"name": "string",
"location": "string",
"identity": {
"principalId": "string",
"tenantId": "string",
"type": "string",
"userAssignedIdentities": {}
},
"properties": {
"addonConfigs": {},
"customPersistentDisks": [
{
"customPersistentDiskProperties": {
"enableSubPath": "bool",
"mountOptions": [ "string" ],
"mountPath": "string",
"readOnly": "bool",
"type": "string"
// For remaining properties, see CustomPersistentDiskProperties objects
},
"storageId": "string"
}
],
"enableEndToEndTLS": "bool",
"httpsOnly": "bool",
"ingressSettings": {
"backendProtocol": "string",
"clientAuth": {
"certificates": [ "string" ]
},
"readTimeoutInSeconds": "int",
"sendTimeoutInSeconds": "int",
"sessionAffinity": "string",
"sessionCookieMaxAge": "int"
},
"loadedCertificates": [
{
"loadTrustStore": "bool",
"resourceId": "string"
}
],
"persistentDisk": {
"mountPath": "string",
"sizeInGB": "int"
},
"public": "bool",
"secrets": [
{
"name": "string",
"value": "string"
}
],
"temporaryDisk": {
"mountPath": "string",
"sizeInGB": "int"
},
"vnetAddons": {
"publicEndpoint": "bool"
}
}
}
CustomPersistentDiskProperties 对象
设置 type 属性以指定对象的类型。
对于 AzureFileVolume,请使用:
"type": "AzureFileVolume",
"shareName": "string"
属性值
Spring/apps
ManagedIdentityProperties
名称 |
说明 |
值 |
principalId |
系统分配的托管标识的主体 ID。 |
字符串 |
tenantId |
系统分配的托管标识的租户 ID。 |
字符串 |
type |
托管标识的类型 |
“None” “SystemAssigned” “SystemAssigned,UserAssigned” “UserAssigned” |
userAssignedIdentities |
用户分配的托管标识的属性 |
对象 (object) |
AppResourceProperties
CustomPersistentDiskResource
CustomPersistentDiskProperties
名称 |
说明 |
值 |
enableSubPath |
如果设置为 true,它将为每个单独的应用实例创建并装载专用目录。 |
bool |
mountOptions |
这些是永久性磁盘的装载选项。 |
string[] |
mountPath |
永久性磁盘的装载路径。 |
字符串 (必需) |
readOnly |
指示永久性磁盘是否为 readOnly 磁盘。 |
bool |
类型 |
设置对象类型 |
需要 AzureFileVolume () |
AzureFileVolume
名称 |
说明 |
Value |
type |
要装载为永久性磁盘的基础资源的类型。 |
“AzureFileVolume” (所需的) |
shareName |
Azure 文件共享的共享名称。 |
字符串 |
IngressSettings
名称 |
说明 |
值 |
backendProtocol |
入口应如何与此应用后端服务通信。 |
'Default' “GRPC” |
clientAuth |
Client-Certification身份验证。 |
IngressSettingsClientAuth |
readTimeoutInSeconds |
入口读取超时(以秒为单位)。 |
int |
sendTimeoutInSeconds |
入口发送超时(以秒为单位)。 |
int |
sessionAffinity |
相关性的类型,将此设置为 Cookie 以启用会话关联。 |
“Cookie” “None” |
sessionCookieMaxAge |
Cookie 过期前的时间(以秒为单位)。 |
int |
IngressSettingsClientAuth
名称 |
说明 |
值 |
certificates |
证书资源 ID 的集合。 |
string[] |
LoadedCertificate
名称 |
说明 |
值 |
loadTrustStore |
指示证书是否将加载到默认信任存储中,仅适用于 Java 运行时。 |
bool |
ResourceId |
已加载证书的资源 ID |
字符串 (必需) |
PersistentDisk
名称 |
说明 |
值 |
mountPath |
永久性磁盘的装载路径 |
字符串 |
sizeInGB |
永久性磁盘的大小(以 GB 为单位) |
int |
机密
名称 |
说明 |
值 |
name |
机密名称。 |
string |
value |
机密值。 |
字符串 |
TemporaryDisk
名称 |
说明 |
值 |
mountPath |
临时磁盘的装载路径 |
字符串 |
sizeInGB |
临时磁盘的大小(以 GB 为单位) |
int |
AppVNetAddons
名称 |
说明 |
值 |
publicEndpoint |
指示 vnet 注入实例中的应用是否公开可从 Internet 访问的终结点。 |
bool |
快速入门模板
以下快速入门模板部署此资源类型。
可以使用面向以下操作部署 Spring/apps 资源类型:
有关每个 API 版本中已更改属性的列表,请参阅 更改日志。
若要创建 Microsoft.AppPlatform/Spring/apps 资源,请将以下 Terraform 添加到模板。
resource "azapi_resource" "symbolicname" {
type = "Microsoft.AppPlatform/Spring/apps@2023-01-01-preview"
name = "string"
location = "string"
parent_id = "string"
identity {
type = "string"
identity_ids = []
}
body = jsonencode({
properties = {
addonConfigs = {}
customPersistentDisks = [
{
customPersistentDiskProperties = {
enableSubPath = bool
mountOptions = [
"string"
]
mountPath = "string"
readOnly = bool
type = "string"
// For remaining properties, see CustomPersistentDiskProperties objects
}
storageId = "string"
}
]
enableEndToEndTLS = bool
httpsOnly = bool
ingressSettings = {
backendProtocol = "string"
clientAuth = {
certificates = [
"string"
]
}
readTimeoutInSeconds = int
sendTimeoutInSeconds = int
sessionAffinity = "string"
sessionCookieMaxAge = int
}
loadedCertificates = [
{
loadTrustStore = bool
resourceId = "string"
}
]
persistentDisk = {
mountPath = "string"
sizeInGB = int
}
public = bool
secrets = [
{
name = "string"
value = "string"
}
]
temporaryDisk = {
mountPath = "string"
sizeInGB = int
}
vnetAddons = {
publicEndpoint = bool
}
}
})
}
CustomPersistentDiskProperties 对象
设置 type 属性以指定对象的类型。
对于 AzureFileVolume,请使用:
type = "AzureFileVolume"
shareName = "string"
属性值
Spring/apps
ManagedIdentityProperties
名称 |
说明 |
Value |
type |
托管标识的类型 |
“SystemAssigned” “SystemAssigned,UserAssigned” “UserAssigned” |
identity_ids |
用户分配的托管标识的属性 |
用户标识 ID 的数组。 |
AppResourceProperties
CustomPersistentDiskResource
CustomPersistentDiskProperties
名称 |
说明 |
值 |
enableSubPath |
如果设置为 true,它将为每个单独的应用实例创建并装载专用目录。 |
bool |
mountOptions |
这些是永久性磁盘的装载选项。 |
string[] |
mountPath |
永久性磁盘的装载路径。 |
字符串 (必需) |
readOnly |
指示永久性磁盘是否为 readOnly 磁盘。 |
bool |
类型 |
设置对象类型 |
需要 AzureFileVolume () |
AzureFileVolume
名称 |
说明 |
Value |
type |
要装载为永久性磁盘的基础资源的类型。 |
“AzureFileVolume” (所需的) |
shareName |
Azure 文件共享的共享名称。 |
字符串 |
IngressSettings
名称 |
说明 |
值 |
backendProtocol |
入口应如何与此应用后端服务通信。 |
“Default” “GRPC” |
clientAuth |
Client-Certification身份验证。 |
IngressSettingsClientAuth |
readTimeoutInSeconds |
入口读取超时(以秒为单位)。 |
int |
sendTimeoutInSeconds |
入口发送超时(以秒为单位)。 |
int |
sessionAffinity |
相关性的类型,将此设置为 Cookie 以启用会话关联。 |
“Cookie” "None" |
sessionCookieMaxAge |
Cookie 过期前的时间(以秒为单位)。 |
int |
IngressSettingsClientAuth
名称 |
说明 |
值 |
certificates |
证书资源 ID 的集合。 |
string[] |
LoadedCertificate
名称 |
说明 |
值 |
loadTrustStore |
指示证书是否将加载到默认信任存储中,仅适用于 Java 运行时。 |
bool |
ResourceId |
已加载证书的资源 ID |
字符串 (必需) |
PersistentDisk
名称 |
说明 |
值 |
mountPath |
永久性磁盘的装载路径 |
字符串 |
sizeInGB |
永久性磁盘的大小(以 GB 为单位) |
int |
机密
名称 |
说明 |
值 |
name |
机密名称。 |
string |
value |
机密值。 |
字符串 |
TemporaryDisk
名称 |
说明 |
值 |
mountPath |
临时磁盘的装载路径 |
字符串 |
sizeInGB |
临时磁盘的大小(以 GB 为单位) |
int |
AppVNetAddons
名称 |
说明 |
值 |
publicEndpoint |
指示 vnet 注入实例中的应用是否公开可从 Internet 访问的终结点。 |
bool |