Akamai · Schema
hostnames
Contains a list of selected hostnames for the specified configuration version.
CDNCloudEdge ComputingNetworksPlatformSecurity
Properties
| Name | Type | Description |
|---|---|---|
| hostnameList | array | The list of hostnames for a configuration version. |
| mode | string | The type of update you want to make to the evaluation hostname list. Use `append` to add additional hostnames, `remove` to delete the hostnames from the list, or `replace` to replace the existing list |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/hostnames",
"title": "hostnames",
"additionalProperties": false,
"description": "Contains a list of selected hostnames for the specified configuration version.",
"properties": {
"hostnameList": {
"description": "The list of hostnames for a configuration version.",
"items": {
"additionalProperties": false,
"properties": {
"hostname": {
"description": "The hostname on which to match the request.",
"type": "string"
}
},
"required": [
"hostname"
],
"type": "object"
},
"type": "array"
},
"mode": {
"description": "The type of update you want to make to the evaluation hostname list. Use `append` to add additional hostnames, `remove` to delete the hostnames from the list, or `replace` to replace the existing list with the hostnames you pass in your request.",
"enum": [
"append",
"remove",
"replace"
],
"type": "string"
}
},
"required": [
"hostnameList"
],
"type": "object",
"x-akamai": {
"file-path": "schemas/hostnames.yaml"
}
}