Scaleway · Schema
scaleway.k8s.v1.ACLRule
AICloud ComputingContainersDatabaseEuropean CloudInfrastructureKubernetesServerlessStorage
Properties
| Name | Type | Description |
|---|---|---|
| id | string | ID of the ACL rule. (UUID format) |
| ip | string | IP subnet to allow. (IP network) |
| scaleway_ranges | boolean | Allow access to cluster from all Scaleway ranges as defined in https://www.scaleway.com/en/docs/console/account/reference-content/scaleway-network-information/#ip-ranges-used-by-scaleway. Only one rul |
| description | string | Description of the ACL. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/scaleway.k8s.v1.ACLRule",
"title": "scaleway.k8s.v1.ACLRule",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "ID of the ACL rule. (UUID format)",
"example": "6170692e-7363-616c-6577-61792e636f6d"
},
"ip": {
"type": "string",
"description": "IP subnet to allow. (IP network)",
"example": "1.2.3.4/32",
"nullable": true,
"x-one-of": "allowed"
},
"scaleway_ranges": {
"type": "boolean",
"description": "Allow access to cluster from all Scaleway ranges as defined in https://www.scaleway.com/en/docs/console/account/reference-content/scaleway-network-information/#ip-ranges-used-by-scaleway.\nOnly one rule with this field set to true can be added.",
"nullable": true,
"x-one-of": "allowed"
},
"description": {
"type": "string",
"description": "Description of the ACL."
}
},
"x-properties-order": [
"id",
"ip",
"scaleway_ranges",
"description"
]
}