Akamai · Schema
config-get
Contains details about a security configuration.
CDNCloudEdge ComputingNetworksPlatformSecurity
Properties
| Name | Type | Description |
|---|---|---|
| description | string | __Read-only__ Describes the security configuration. |
| id | integer | __Read-only__ Uniquely identifies the security configuration. |
| latestVersion | integer | __Read-only__ The latest version of the security configuration. |
| name | string | __Read-only__ The security configuration name. |
| productionHostnames | array | __Read-only__ The list of hostnames protected by this security configuration in the production network. |
| productionVersion | integer | __Read-only__ The latest security configuration version active in the production network. |
| stagingVersion | integer | __Read-only__ The latest security configuration version active in the staging network. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/akamai/main/json-schema/appsec-config-get-schema.json",
"title": "config-get",
"additionalProperties": false,
"description": "Contains details about a security configuration.",
"properties": {
"description": {
"description": "__Read-only__ Describes the security configuration.",
"readOnly": true,
"type": "string"
},
"id": {
"description": "__Read-only__ Uniquely identifies the security configuration.",
"readOnly": true,
"type": "integer"
},
"latestVersion": {
"description": "__Read-only__ The latest version of the security configuration.",
"readOnly": true,
"type": "integer"
},
"name": {
"description": "__Read-only__ The security configuration name.",
"readOnly": true,
"type": "string"
},
"productionHostnames": {
"description": "__Read-only__ The list of hostnames protected by this security configuration in the production network.",
"items": {
"type": "string"
},
"readOnly": true,
"type": "array"
},
"productionVersion": {
"description": "__Read-only__ The latest security configuration version active in the production network.",
"readOnly": true,
"type": "integer"
},
"stagingVersion": {
"description": "__Read-only__ The latest security configuration version active in the staging network.",
"readOnly": true,
"type": "integer"
}
},
"required": [
"id",
"latestVersion",
"name"
],
"type": "object",
"x-akamai": {
"file-path": "schemas/config-get.yaml"
}
}