Skip to content

Commit

Permalink
rename verification id to custom domain verification id (#24874)
Browse files Browse the repository at this point in the history
Co-authored-by: Chenghui Yu <[email protected]>
  • Loading branch information
Seris370 and Chenghui Yu authored Jul 27, 2023
1 parent b2a8611 commit c134692
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
"application/json"
],
"paths": {
"/subscriptions/{subscriptionId}/providers/Microsoft.App/getVerificationId": {
"/subscriptions/{subscriptionId}/providers/Microsoft.App/getCustomDomainVerificationId": {
"post": {
"tags": [
"Subscriptions"
],
"description": "Get the verification id of a subscription used for verifying custom domains",
"operationId": "GetVerificationId",
"operationId": "GetCustomDomainVerificationId",
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter"
Expand All @@ -32,9 +32,9 @@
],
"responses": {
"200": {
"description": "OK. The verification id has been returned successfully.",
"description": "OK. The custom domain verification id has been returned successfully.",
"schema": {
"$ref": "#/definitions/VerificationId"
"$ref": "#/definitions/CustomDomainVerificationId"
}
},
"default": {
Expand All @@ -46,15 +46,15 @@
},
"x-ms-examples": {
"List all operations": {
"$ref": "./examples/Subscriptions_GetVerificationId.json"
"$ref": "./examples/Subscriptions_GetCustomDomainVerificationId.json"
}
}
}
}
},
"definitions": {
"VerificationId": {
"description": "Verification Id of a subscription",
"CustomDomainVerificationId": {
"description": "Custom domain verification Id of a subscription",
"type": "string",
"readOnly": true
}
Expand Down

0 comments on commit c134692

Please sign in to comment.