Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -3066,23 +3066,43 @@
"properties": {
"serviceRuntimeSubnetId": {
"description": "Fully qualified resource Id of the subnet to host Azure Spring Cloud Service Runtime",
"type": "string"
"type": "string",
"x-ms-mutability": [
"create",
"read"
]
},
"appSubnetId": {
"description": "Fully qualified resource Id of the subnet to host Azure Spring Cloud Apps",
"type": "string"
"type": "string",
"x-ms-mutability": [
"create",
"read"
]
},
"serviceCidr": {
"description": "Azure Spring Cloud service reserved CIDR",
"type": "string"
"type": "string",
"x-ms-mutability": [
"create",
"read"
]
},
"serviceRuntimeNetworkResourceGroup": {
"description": "Name of the resource group containing network resources of Azure Spring Cloud Service Runtime",
"type": "string"
"type": "string",
"x-ms-mutability": [
"create",
"read"
]
},
"appNetworkResourceGroup": {
"description": "Name of the resource group containing network resources of Azure Spring Cloud Apps",
"type": "string"
"type": "string",
"x-ms-mutability": [
"create",
"read"
]
},
"outboundIPs": {
"description": "Desired outbound IP resources for Azure Spring Cloud instance.",
Expand Down Expand Up @@ -3413,11 +3433,16 @@
},
"fqdn": {
"description": "Fully qualified dns Name.",
"type": "string"
"type": "string",
"x-ms-mutability": [
"create",
"read"
]
},
"httpsOnly": {
"description": "Indicate if only https is allowed.",
"type": "boolean"
"type": "boolean",
"default": false
},
"createdTime": {
"format": "date-time",
Expand All @@ -3435,7 +3460,8 @@
},
"enableEndToEndTLS": {
"description": "Indicate if end to end TLS is enabled.",
"type": "boolean"
"type": "boolean",
"default": false
}
}
},
Expand All @@ -3452,7 +3478,8 @@
},
"mountPath": {
"description": "Mount path of the temporary disk",
"type": "string"
"type": "string",
"default": "/tmp"
}
}
},
Expand Down Expand Up @@ -4018,6 +4045,7 @@
},
"runtimeVersion": {
"description": "Runtime version",
"default": "Java_8",
"enum": [
"Java_8",
"Java_11",
Expand Down