Skip to content

Commit e0ef85f

Browse files
author
SDKAuto
committed
CodeGen from PR 16545 in Azure/azure-rest-api-specs
Review request for Microsoft.AppPlatform to add a new field containerProbeSettings to DeploymentSettings in version 2021-09-01-preview (#16545)
1 parent 4c43dbd commit e0ef85f

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

schemas/2021-09-01-preview/Microsoft.AppPlatform.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -955,6 +955,17 @@
955955
"DeploymentSettings": {
956956
"type": "object",
957957
"properties": {
958+
"containerProbeSettings": {
959+
"oneOf": [
960+
{
961+
"$ref": "#/definitions/DeploymentSettingsContainerProbeSettings"
962+
},
963+
{
964+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
965+
}
966+
],
967+
"description": "Container liveness and readiness probe settings"
968+
},
958969
"cpu": {
959970
"oneOf": [
960971
{
@@ -1032,6 +1043,23 @@
10321043
},
10331044
"description": "Deployment settings payload"
10341045
},
1046+
"DeploymentSettingsContainerProbeSettings": {
1047+
"type": "object",
1048+
"properties": {
1049+
"disableProbe": {
1050+
"oneOf": [
1051+
{
1052+
"type": "boolean"
1053+
},
1054+
{
1055+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
1056+
}
1057+
],
1058+
"description": "Indicates whether disable the liveness and readiness probe"
1059+
}
1060+
},
1061+
"description": "Container liveness and readiness probe settings"
1062+
},
10351063
"Error": {
10361064
"type": "object",
10371065
"properties": {

0 commit comments

Comments
 (0)