From 0c0ae18a28eca7a56ae72636ba72138304e4334c Mon Sep 17 00:00:00 2001 From: RakeshMohan-MSFT Date: Wed, 30 Mar 2022 12:23:34 +0530 Subject: [PATCH 1/2] As discussed with Elle Tojaroon, making the changes to include possible options for the domainValidationMethod property. with the following values public const string CNameValidationValue = "cname-delegation"; public const string HttpTokenValidationValue = "http-token"; --- .../Microsoft.Web/stable/2021-01-15/Certificates.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2021-01-15/Certificates.json b/specification/web/resource-manager/Microsoft.Web/stable/2021-01-15/Certificates.json index d13f0cb4be44..7cb54a273178 100644 --- a/specification/web/resource-manager/Microsoft.Web/stable/2021-01-15/Certificates.json +++ b/specification/web/resource-manager/Microsoft.Web/stable/2021-01-15/Certificates.json @@ -442,7 +442,15 @@ }, "domainValidationMethod": { "description": "Method of domain validation for free cert", - "type": "string" + "enum": [ + "CNameValidationValue", + "HttpTokenValidationValue" + ], + "type": "string", + "x-ms-enum": { + "name": "ValidationMethod", + "modelAsString": false + } } }, "x-ms-client-flatten": true From f30a1b2aa570ed82a7f2fc7d4918c4b1e7df1a85 Mon Sep 17 00:00:00 2001 From: RakeshMohan-MSFT Date: Wed, 30 Mar 2022 13:54:12 +0530 Subject: [PATCH 2/2] Updating just the description of the domainValidationMethod with the possible values 'CNameValidationValue', 'HttpTokenValidationValue' --- .../stable/2021-01-15/Certificates.json | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/specification/web/resource-manager/Microsoft.Web/stable/2021-01-15/Certificates.json b/specification/web/resource-manager/Microsoft.Web/stable/2021-01-15/Certificates.json index 7cb54a273178..d378cc1e18b8 100644 --- a/specification/web/resource-manager/Microsoft.Web/stable/2021-01-15/Certificates.json +++ b/specification/web/resource-manager/Microsoft.Web/stable/2021-01-15/Certificates.json @@ -441,16 +441,8 @@ "type": "string" }, "domainValidationMethod": { - "description": "Method of domain validation for free cert", - "enum": [ - "CNameValidationValue", - "HttpTokenValidationValue" - ], - "type": "string", - "x-ms-enum": { - "name": "ValidationMethod", - "modelAsString": false - } + "description": "Method of domain validation for free cert. Possible values include: 'CNameValidationValue', 'HttpTokenValidationValue'", + "type": "string" } }, "x-ms-client-flatten": true