From f3cc02fc91022dea721282b279700da8ff5f95fd Mon Sep 17 00:00:00 2001 From: Zhou Liu Date: Fri, 5 Mar 2021 11:52:52 +0800 Subject: [PATCH 1/8] add optional field: ResourceRequest in the swagger --- .../2020-11-01-preview/appplatform.json | 22 +++++++++++++++++-- .../examples/Deployments_CreateOrUpdate.json | 18 +++++++++++++-- .../examples/Deployments_Get.json | 4 ++++ .../examples/Deployments_List.json | 4 ++++ .../examples/Deployments_ListForCluster.json | 4 ++++ .../examples/Deployments_Update.json | 8 +++++++ 6 files changed, 56 insertions(+), 4 deletions(-) diff --git a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/appplatform.json b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/appplatform.json index b8af027e3cb6..fd8444945e9f 100644 --- a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/appplatform.json +++ b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/appplatform.json @@ -3925,16 +3925,20 @@ "properties": { "cpu": { "format": "int32", - "description": "Required CPU, basic tier should be 1, standard tier should be in range (1, 4)", + "description": "Required CPU, basic tier should be 1, standard tier should be in range (1, 4), it will be deprecated since api version 2021-03-03-preview, Please leverage the ResourceRequest field to set the cpu size.", "default": 1, "type": "integer" }, "memoryInGB": { "format": "int32", - "description": "Required Memory size in GB, basic tier should be in range (1, 2), standard tier should be in range (1, 8)", + "description": "Required Memory size in GB, basic tier should be in range (1, 2), standard tier should be in range (1, 8), it will be deprecated since api version 2021-03-03-preview, Please leverage the ResourceRequest field to set the memory size.", "default": 1, "type": "integer" }, + "resourceRequest": { + "$ref": "#/definitions/ResourceRequest", + "description": "The request of quantity for cpu and memory size." + }, "jvmOptions": { "description": "JVM parameter", "type": "string" @@ -4014,6 +4018,20 @@ } } }, + "ResourceRequest": { + "description": "Deployment resource request payload", + "type": "object", + "properties": { + "cpu": { + "description": "Required CPU, 1c can be represent by 1 or 1000m, basic tier should be 500m or 1, standard tier should be 500m or the value in range (1, 4).", + "type": "string" + }, + "memory": { + "description": "Required Memory size, 1GB can be represent by 1Gi or 1024Mi, basic tier should be 500m or the value in range (1, 2), standard tier should be 500m or the value in range (1, 8).", + "type": "string" + } + } + }, "LogFileUrlResponse": { "description": "Log file URL payload", "required": [ diff --git a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_CreateOrUpdate.json b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_CreateOrUpdate.json index 5bea58897fbd..df1790675500 100644 --- a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_CreateOrUpdate.json +++ b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_CreateOrUpdate.json @@ -9,8 +9,10 @@ "artifactSelector": "sub-module-1" }, "deploymentSettings": { - "cpu": 1, - "memoryInGB": 3, + "resourceRequest": { + "cpu": "1000m", + "memory": "3Gi" + }, "jvmOptions": "-Xms1G -Xmx3G", "environmentVariables": { "env": "test" @@ -46,6 +48,10 @@ "deploymentSettings": { "cpu": 1, "memoryInGB": 3, + "resourceRequest": { + "cpu": "1000m", + "memory": "3Gi" + }, "jvmOptions": "-Xms1G -Xmx3G", "environmentVariables": { "env": "test" @@ -87,6 +93,10 @@ "deploymentSettings": { "cpu": 1, "memoryInGB": 3, + "resourceRequest": { + "cpu": "1000m", + "memory": "3Gi" + }, "jvmOptions": "-Xms1G -Xmx3G", "environmentVariables": { "env": "test" @@ -128,6 +138,10 @@ "deploymentSettings": { "cpu": 1, "memoryInGB": 3, + "resourceRequest": { + "cpu": "1000m", + "memory": "3Gi" + }, "jvmOptions": "-Xms1G -Xmx3G", "environmentVariables": { "env": "test" diff --git a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_Get.json b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_Get.json index ca86e0e1fd4b..99ba88ca41c6 100644 --- a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_Get.json +++ b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_Get.json @@ -21,6 +21,10 @@ "deploymentSettings": { "cpu": 1, "memoryInGB": 3, + "resourceRequest": { + "cpu": "1000m", + "memory": "3Gi" + }, "jvmOptions": "-Xms1G -Xmx3G", "environmentVariables": { "env": "test" diff --git a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_List.json b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_List.json index b65b092368b0..22ebb0b984e8 100644 --- a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_List.json +++ b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_List.json @@ -22,6 +22,10 @@ "deploymentSettings": { "cpu": 1, "memoryInGB": 3, + "resourceRequest": { + "cpu": "1000m", + "memory": "3Gi" + }, "jvmOptions": "-Xms1G -Xmx3G", "environmentVariables": { "env": "test" diff --git a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_ListForCluster.json b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_ListForCluster.json index b65b092368b0..22ebb0b984e8 100644 --- a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_ListForCluster.json +++ b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_ListForCluster.json @@ -22,6 +22,10 @@ "deploymentSettings": { "cpu": 1, "memoryInGB": 3, + "resourceRequest": { + "cpu": "1000m", + "memory": "3Gi" + }, "jvmOptions": "-Xms1G -Xmx3G", "environmentVariables": { "env": "test" diff --git a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_Update.json b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_Update.json index fceacd9307f4..8b79237f1a76 100644 --- a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_Update.json +++ b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_Update.json @@ -32,6 +32,10 @@ "deploymentSettings": { "cpu": 1, "memoryInGB": 3, + "resourceRequest": { + "cpu": "1000m", + "memory": "3Gi" + }, "jvmOptions": "-Xms1G -Xmx3G", "environmentVariables": { "env": "test" @@ -73,6 +77,10 @@ "deploymentSettings": { "cpu": 1, "memoryInGB": 3, + "resourceRequest": { + "cpu": "1000m", + "memory": "3Gi" + }, "jvmOptions": "-Xms1G -Xmx3G", "environmentVariables": { "env": "test" From acfbe383e6d2f4fd8247bd91ebf13fe101321663 Mon Sep 17 00:00:00 2001 From: Zhou Liu Date: Fri, 5 Mar 2021 13:18:10 +0800 Subject: [PATCH 2/8] fix the typo --- .../preview/2020-11-01-preview/appplatform.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/appplatform.json b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/appplatform.json index fd8444945e9f..5a9d4dc9883a 100644 --- a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/appplatform.json +++ b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/appplatform.json @@ -3925,13 +3925,13 @@ "properties": { "cpu": { "format": "int32", - "description": "Required CPU, basic tier should be 1, standard tier should be in range (1, 4), it will be deprecated since api version 2021-03-03-preview, Please leverage the ResourceRequest field to set the cpu size.", + "description": "Required CPU, basic tier should be 1, standard tier should be in range (1, 4), it will be deprecated since api version 2020-11-01-preview, please leverage the ResourceRequest field to set the cpu size.", "default": 1, "type": "integer" }, "memoryInGB": { "format": "int32", - "description": "Required Memory size in GB, basic tier should be in range (1, 2), standard tier should be in range (1, 8), it will be deprecated since api version 2021-03-03-preview, Please leverage the ResourceRequest field to set the memory size.", + "description": "Required Memory size in GB, basic tier should be in range (1, 2), standard tier should be in range (1, 8), it will be deprecated since api version 2020-11-01-preview, please leverage the ResourceRequest field to set the memory size.", "default": 1, "type": "integer" }, From 4b010d0275d797e0489d63807803d72b018096b4 Mon Sep 17 00:00:00 2001 From: Zhou Liu Date: Mon, 8 Mar 2021 11:32:11 +0800 Subject: [PATCH 3/8] fix typo and refine description --- .../preview/2020-11-01-preview/appplatform.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/appplatform.json b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/appplatform.json index 5a9d4dc9883a..f5627914fb17 100644 --- a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/appplatform.json +++ b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/appplatform.json @@ -3925,19 +3925,19 @@ "properties": { "cpu": { "format": "int32", - "description": "Required CPU, basic tier should be 1, standard tier should be in range (1, 4), it will be deprecated since api version 2020-11-01-preview, please leverage the ResourceRequest field to set the cpu size.", + "description": "Required CPU. This should be 1 for Basic tier, and in range [1, 4] for Standard tier. This is deprecated starting from API version 2020-11-01-preview. Please use the ResourceRequest field to set the CPU size.", "default": 1, "type": "integer" }, "memoryInGB": { "format": "int32", - "description": "Required Memory size in GB, basic tier should be in range (1, 2), standard tier should be in range (1, 8), it will be deprecated since api version 2020-11-01-preview, please leverage the ResourceRequest field to set the memory size.", + "description": "Required Memory size in GB. This should be in range [1, 2] for Basic tier, and in range [1, 8] for Standard tier. This is deprecated starting from API version 2020-11-01-preview. Please use the ResourceRequest field to set the the memory size.", "default": 1, "type": "integer" }, "resourceRequest": { "$ref": "#/definitions/ResourceRequest", - "description": "The request of quantity for cpu and memory size." + "description": "The requested resource quantity." }, "jvmOptions": { "description": "JVM parameter", @@ -4023,11 +4023,11 @@ "type": "object", "properties": { "cpu": { - "description": "Required CPU, 1c can be represent by 1 or 1000m, basic tier should be 500m or 1, standard tier should be 500m or the value in range (1, 4).", + "description": "Required CPU. 1 core can be represented by 1 or 1000m. This should be 500m or 1 for Basic tier, and {500m, 1, 2, 3, 4} for Standard tier.", "type": "string" }, "memory": { - "description": "Required Memory size, 1GB can be represent by 1Gi or 1024Mi, basic tier should be 500m or the value in range (1, 2), standard tier should be 500m or the value in range (1, 8).", + "description": "Required memory. 1 GB can be represented by 1Gi or 1024Mi. This should be {500m, 1Gi, 2Gi} for Basic tier, and {500m, 1Gi, 2Gi, ..., 8Gi} for Standard tier.", "type": "string" } } From 9845b66b7b7bf93e8cc2264e48c5251a9cbe0737 Mon Sep 17 00:00:00 2001 From: Zhou Liu Date: Mon, 8 Mar 2021 13:47:48 +0800 Subject: [PATCH 4/8] refine the field name of ResourceRequest --- .../preview/2020-11-01-preview/appplatform.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/appplatform.json b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/appplatform.json index f5627914fb17..b85e814c64e7 100644 --- a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/appplatform.json +++ b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/appplatform.json @@ -3925,18 +3925,18 @@ "properties": { "cpu": { "format": "int32", - "description": "Required CPU. This should be 1 for Basic tier, and in range [1, 4] for Standard tier. This is deprecated starting from API version 2020-11-01-preview. Please use the ResourceRequest field to set the CPU size.", + "description": "Required CPU. This should be 1 for Basic tier, and in range [1, 4] for Standard tier. This is deprecated starting from API version 2020-11-01-preview. Please use the ResourceRequests field to set the CPU size.", "default": 1, "type": "integer" }, "memoryInGB": { "format": "int32", - "description": "Required Memory size in GB. This should be in range [1, 2] for Basic tier, and in range [1, 8] for Standard tier. This is deprecated starting from API version 2020-11-01-preview. Please use the ResourceRequest field to set the the memory size.", + "description": "Required Memory size in GB. This should be in range [1, 2] for Basic tier, and in range [1, 8] for Standard tier. This is deprecated starting from API version 2020-11-01-preview. Please use the ResourceRequests field to set the the memory size.", "default": 1, "type": "integer" }, - "resourceRequest": { - "$ref": "#/definitions/ResourceRequest", + "resourceRequests": { + "$ref": "#/definitions/ResourceRequests", "description": "The requested resource quantity." }, "jvmOptions": { @@ -4018,7 +4018,7 @@ } } }, - "ResourceRequest": { + "ResourceRequests": { "description": "Deployment resource request payload", "type": "object", "properties": { From 7254037642bbe33acd6b362d4e41a6dfa6396a71 Mon Sep 17 00:00:00 2001 From: Zhou Liu Date: Mon, 8 Mar 2021 13:53:58 +0800 Subject: [PATCH 5/8] change ResourceRequest to ResourceRequests --- .../examples/Deployments_CreateOrUpdate.json | 8 ++++---- .../2020-11-01-preview/examples/Deployments_Get.json | 2 +- .../2020-11-01-preview/examples/Deployments_List.json | 2 +- .../examples/Deployments_ListForCluster.json | 2 +- .../2020-11-01-preview/examples/Deployments_Update.json | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_CreateOrUpdate.json b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_CreateOrUpdate.json index df1790675500..c4687bfc06c4 100644 --- a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_CreateOrUpdate.json +++ b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_CreateOrUpdate.json @@ -9,7 +9,7 @@ "artifactSelector": "sub-module-1" }, "deploymentSettings": { - "resourceRequest": { + "resourceRequests": { "cpu": "1000m", "memory": "3Gi" }, @@ -48,7 +48,7 @@ "deploymentSettings": { "cpu": 1, "memoryInGB": 3, - "resourceRequest": { + "resourceRequests": { "cpu": "1000m", "memory": "3Gi" }, @@ -93,7 +93,7 @@ "deploymentSettings": { "cpu": 1, "memoryInGB": 3, - "resourceRequest": { + "resourceRequests": { "cpu": "1000m", "memory": "3Gi" }, @@ -138,7 +138,7 @@ "deploymentSettings": { "cpu": 1, "memoryInGB": 3, - "resourceRequest": { + "resourceRequests": { "cpu": "1000m", "memory": "3Gi" }, diff --git a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_Get.json b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_Get.json index 99ba88ca41c6..90f0e01a7baa 100644 --- a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_Get.json +++ b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_Get.json @@ -21,7 +21,7 @@ "deploymentSettings": { "cpu": 1, "memoryInGB": 3, - "resourceRequest": { + "resourceRequests": { "cpu": "1000m", "memory": "3Gi" }, diff --git a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_List.json b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_List.json index 22ebb0b984e8..a0b855ad17cf 100644 --- a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_List.json +++ b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_List.json @@ -22,7 +22,7 @@ "deploymentSettings": { "cpu": 1, "memoryInGB": 3, - "resourceRequest": { + "resourceRequests": { "cpu": "1000m", "memory": "3Gi" }, diff --git a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_ListForCluster.json b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_ListForCluster.json index 22ebb0b984e8..a0b855ad17cf 100644 --- a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_ListForCluster.json +++ b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_ListForCluster.json @@ -22,7 +22,7 @@ "deploymentSettings": { "cpu": 1, "memoryInGB": 3, - "resourceRequest": { + "resourceRequests": { "cpu": "1000m", "memory": "3Gi" }, diff --git a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_Update.json b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_Update.json index 8b79237f1a76..691a3bab01b4 100644 --- a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_Update.json +++ b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/examples/Deployments_Update.json @@ -32,7 +32,7 @@ "deploymentSettings": { "cpu": 1, "memoryInGB": 3, - "resourceRequest": { + "resourceRequests": { "cpu": "1000m", "memory": "3Gi" }, @@ -77,7 +77,7 @@ "deploymentSettings": { "cpu": 1, "memoryInGB": 3, - "resourceRequest": { + "resourceRequests": { "cpu": "1000m", "memory": "3Gi" }, From 7e731aa3be42bf56ce6e985cfbac4804f1645892 Mon Sep 17 00:00:00 2001 From: Zhou Liu Date: Tue, 9 Mar 2021 13:09:56 +0800 Subject: [PATCH 6/8] fix typo --- .../preview/2020-11-01-preview/appplatform.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/appplatform.json b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/appplatform.json index b85e814c64e7..3d1943d32a13 100644 --- a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/appplatform.json +++ b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/appplatform.json @@ -4027,7 +4027,7 @@ "type": "string" }, "memory": { - "description": "Required memory. 1 GB can be represented by 1Gi or 1024Mi. This should be {500m, 1Gi, 2Gi} for Basic tier, and {500m, 1Gi, 2Gi, ..., 8Gi} for Standard tier.", + "description": "Required memory. 1 GB can be represented by 1Gi or 1024Mi. This should be {500Mi, 1Gi, 2Gi} for Basic tier, and {500Mi, 1Gi, 2Gi, ..., 8Gi} for Standard tier.", "type": "string" } } From 99a88e919f561fd519f439629596e479c26c4e22 Mon Sep 17 00:00:00 2001 From: Zhou Liu Date: Tue, 9 Mar 2021 13:13:22 +0800 Subject: [PATCH 7/8] fix typo --- .../preview/2020-11-01-preview/appplatform.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/appplatform.json b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/appplatform.json index 3d1943d32a13..3319b000d6f4 100644 --- a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/appplatform.json +++ b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/appplatform.json @@ -4027,7 +4027,7 @@ "type": "string" }, "memory": { - "description": "Required memory. 1 GB can be represented by 1Gi or 1024Mi. This should be {500Mi, 1Gi, 2Gi} for Basic tier, and {500Mi, 1Gi, 2Gi, ..., 8Gi} for Standard tier.", + "description": "Required memory. 1 GB can be represented by 1Gi or 1024Mi. This should be {512Mi, 1Gi, 2Gi} for Basic tier, and {512Mi, 1Gi, 2Gi, ..., 8Gi} for Standard tier.", "type": "string" } } From 31133b15b52957afb6c049e250b24d04b51f968f Mon Sep 17 00:00:00 2001 From: Zhou Liu Date: Tue, 9 Mar 2021 13:19:23 +0800 Subject: [PATCH 8/8] fix typo in description --- .../preview/2020-11-01-preview/appplatform.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/appplatform.json b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/appplatform.json index 3319b000d6f4..93babf76c060 100644 --- a/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/appplatform.json +++ b/specification/appplatform/resource-manager/Microsoft.AppPlatform/preview/2020-11-01-preview/appplatform.json @@ -3925,13 +3925,13 @@ "properties": { "cpu": { "format": "int32", - "description": "Required CPU. This should be 1 for Basic tier, and in range [1, 4] for Standard tier. This is deprecated starting from API version 2020-11-01-preview. Please use the ResourceRequests field to set the CPU size.", + "description": "Required CPU. This should be 1 for Basic tier, and in range [1, 4] for Standard tier. This is deprecated starting from API version 2020-11-01-preview. Please use the resourceRequests field to set the CPU size.", "default": 1, "type": "integer" }, "memoryInGB": { "format": "int32", - "description": "Required Memory size in GB. This should be in range [1, 2] for Basic tier, and in range [1, 8] for Standard tier. This is deprecated starting from API version 2020-11-01-preview. Please use the ResourceRequests field to set the the memory size.", + "description": "Required Memory size in GB. This should be in range [1, 2] for Basic tier, and in range [1, 8] for Standard tier. This is deprecated starting from API version 2020-11-01-preview. Please use the resourceRequests field to set the the memory size.", "default": 1, "type": "integer" },