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 @@ -420,6 +420,40 @@
}
}
},
"FreeLimitExhaustionBehaviorCapability": {
"description": "Supported free limit exhaustion behavior options",
"type": "object",
"properties": {
"exhaustionBehaviorType": {
"description": "Free limit exhaustion behavior type",
"enum": [
"AutoPause",
"BillOverUsage"
],
"type": "string",
"readOnly": true,
"x-ms-enum": {
"name": "FreeLimitExhaustionBehavior",
"modelAsString": true
}
},
"status": {
"description": "Free limit exhaustion behavior status",
"enum": [
"Visible",
"Available",
"Default",
"Disabled"
],
"type": "string",
"readOnly": true,
"x-ms-enum": {
"name": "CapabilityStatus",
"modelAsString": false
}
}
}
},
"InstancePoolEditionCapability": {
"description": "The instance pool capability",
"type": "object",
Expand Down Expand Up @@ -1216,6 +1250,15 @@
"type": "boolean",
"readOnly": true
},
"supportedFreeLimitExhaustionBehaviors": {
"description": "List of supported free limit exhaustion behaviors",
"type": "array",
"items": {
"$ref": "#/definitions/FreeLimitExhaustionBehaviorCapability"
},
"readOnly": true,
"x-ms-identifiers": []
},
"status": {
"description": "The status of the capability.",
"enum": [
Expand Down