Skip to content

Commit

Permalink
Product Backlog Item 12546377: [AFDX][CDN][RP][SWAGGER] Add CustomDom…
Browse files Browse the repository at this point in the history
…ains property definition end EndpointProperties per swagger issue? (#20)
  • Loading branch information
jessicl-ms authored Nov 12, 2021
1 parent 9ca9ec6 commit 5a3cac1
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2598,6 +2598,21 @@
"$ref": "#/definitions/DeepCreatedOriginGroup"
}
},
"customDomains": {
"description": "The custom domains under the endpoint.",
"type": "array",
"readOnly": true,
"items": {
"hostName": {
"description": "The host name of the custom domain. Must be a domain name.",
"type": "string"
},
"validationData": {
"description": "Special validation or data may be required when delivering CDN to some regions due to local compliance reasons. E.g. ICP license number of a custom domain is required to deliver content in China.",
"type": "string"
}
}
},
"resourceState": {
"description": "Resource status of the endpoint.",
"readOnly": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,15 @@
}
}
],
"customDomains": [
{
"name": "www-someDomain-net",
"properties": {
"hostName": "www.someDomain.Net",
"validationData": null
}
}
],
"contentTypesToCompress": [],
"isCompressionEnabled": false,
"optimizationType": "DynamicSiteAcceleration",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,15 @@
}
}
],
"customDomains": [
{
"name": "www-someDomain-net",
"properties": {
"hostName": "www.someDomain.Net",
"validationData": null
}
}
],
"contentTypesToCompress": [],
"isCompressionEnabled": false,
"optimizationType": "DynamicSiteAcceleration",
Expand Down

0 comments on commit 5a3cac1

Please sign in to comment.