diff --git a/specification/app/resource-manager/Microsoft.App/preview/2022-11-01-preview/ManagedEnvironments.json b/specification/app/resource-manager/Microsoft.App/preview/2022-11-01-preview/ManagedEnvironments.json index 2ecb7b564c2a..d019afcb08aa 100644 --- a/specification/app/resource-manager/Microsoft.App/preview/2022-11-01-preview/ManagedEnvironments.json +++ b/specification/app/resource-manager/Microsoft.App/preview/2022-11-01-preview/ManagedEnvironments.json @@ -1102,6 +1102,34 @@ } } }, + "ManagedEnvironmentQuota": { + "type": "object", + "description": "Managed environment quota status", + "properties": { + "cores": { + "description": "The cores quota status", + "$ref": "#/definitions/QuotaStatus" + } + } + }, + "QuotaStatus": { + "type": "object", + "description": "Quota status", + "properties": { + "total": { + "type": "number", + "format": "double", + "readOnly": true, + "description": "Total quota amount" + }, + "used": { + "type": "number", + "format": "double", + "readOnly": true, + "description": "Used quota amount" + } + } + }, "VnetConfiguration": { "type": "object", "description": "Configuration properties for apps environment to join a Virtual Network", @@ -1277,6 +1305,10 @@ "daprConfiguration": { "$ref": "#/definitions/DaprConfiguration", "description": "The configuration of Dapr component." + }, + "quotas": { + "$ref": "#/definitions/ManagedEnvironmentQuota", + "description": "Quota status for the environment." } }, "x-ms-client-flatten": true diff --git a/specification/app/resource-manager/Microsoft.App/preview/2022-11-01-preview/examples/ManagedEnvironments_Get.json b/specification/app/resource-manager/Microsoft.App/preview/2022-11-01-preview/examples/ManagedEnvironments_Get.json index 193eb85f6c10..7e769084abed 100644 --- a/specification/app/resource-manager/Microsoft.App/preview/2022-11-01-preview/examples/ManagedEnvironments_Get.json +++ b/specification/app/resource-manager/Microsoft.App/preview/2022-11-01-preview/examples/ManagedEnvironments_Get.json @@ -59,6 +59,12 @@ }, "daprConfiguration": { "version": "1.9" + }, + "quotas": { + "cores": { + "total": 2.34, + "used": 1.23 + } } } }