Skip to content

Commit

Permalink
CodeGen from PR 16545 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Review request for Microsoft.AppPlatform to add a new field containerProbeSettings to DeploymentSettings in version 2021-09-01-preview (#16545)
  • Loading branch information
SDKAuto committed Oct 27, 2021
1 parent 4c43dbd commit e0ef85f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions schemas/2021-09-01-preview/Microsoft.AppPlatform.json
Original file line number Diff line number Diff line change
Expand Up @@ -955,6 +955,17 @@
"DeploymentSettings": {
"type": "object",
"properties": {
"containerProbeSettings": {
"oneOf": [
{
"$ref": "#/definitions/DeploymentSettingsContainerProbeSettings"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Container liveness and readiness probe settings"
},
"cpu": {
"oneOf": [
{
Expand Down Expand Up @@ -1032,6 +1043,23 @@
},
"description": "Deployment settings payload"
},
"DeploymentSettingsContainerProbeSettings": {
"type": "object",
"properties": {
"disableProbe": {
"oneOf": [
{
"type": "boolean"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Indicates whether disable the liveness and readiness probe"
}
},
"description": "Container liveness and readiness probe settings"
},
"Error": {
"type": "object",
"properties": {
Expand Down

0 comments on commit e0ef85f

Please sign in to comment.