Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 29 additions & 1 deletion schemas/2019-05-01-preview/Microsoft.AppPlatform.json
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,17 @@
],
"description": "Deployment resource properties payload"
},
"sku": {
"oneOf": [
{
"$ref": "#/definitions/Sku"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Sku of Azure Spring Cloud"
},
"type": {
"type": "string",
"enum": [
Expand Down Expand Up @@ -684,13 +695,18 @@
],
"description": "Required Memory size in GB, basic tier should be in range (1, 2), standard tier should be in range (1, 8)"
},
"netCoreMainEntryPath": {
"type": "string",
"description": "The path to the .NET executable relative to zip root"
},
"runtimeVersion": {
"oneOf": [
{
"type": "string",
"enum": [
"Java_8",
"Java_11"
"Java_11",
"NetCore_31"
]
},
{
Expand Down Expand Up @@ -1016,6 +1032,17 @@
],
"description": "Deployment resource properties payload"
},
"sku": {
"oneOf": [
{
"$ref": "#/definitions/Sku"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Sku of Azure Spring Cloud"
},
"type": {
"type": "string",
"enum": [
Expand Down Expand Up @@ -1181,6 +1208,7 @@
"type": "string",
"enum": [
"Jar",
"NetCoreZip",
"Source"
]
},
Expand Down