Skip to content
Closed
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
37 changes: 37 additions & 0 deletions schemas/2019-05-01-preview/Microsoft.AppPlatform.json
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,17 @@
],
"description": "Config server git properties payload"
},
"networkProfile": {
"oneOf": [
{
"$ref": "#/definitions/NetworkProfile"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Service network profile payload"
},
"trace": {
"oneOf": [
{
Expand Down Expand Up @@ -814,6 +825,32 @@
},
"description": "Managed identity properties retrieved from ARM request headers."
},
"NetworkProfile": {
"type": "object",
"properties": {
"appNetworkResourceGroup": {
"type": "string",
"description": "Name of the resource group containing network resources of Azure Spring Cloud Apps"
},
"appSubnetId": {
"type": "string",
"description": "Fully qualified resource Id of the subnet to host Azure Spring Cloud Apps"
},
"serviceCidr": {
"type": "string",
"description": "Azure Spring Cloud service reserved CIDR"
},
"serviceRuntimeNetworkResourceGroup": {
"type": "string",
"description": "Name of the resource group containing network resources of Azure Spring Cloud Service Runtime"
},
"serviceRuntimeSubnetId": {
"type": "string",
"description": "Fully qualified resource Id of the subnet to host Azure Spring Cloud Service Runtime"
}
},
"description": "Service network profile payload"
},
"PersistentDisk": {
"type": "object",
"properties": {
Expand Down