interface ACLRule {
    description: string;
    id: string;
    ip?: string;
    scalewayRanges?: boolean;
}

Properties

description: string

Description of the ACL.

id: string

ID of the ACL rule.

ip?: string

IP subnet to allow.

One-of ('allowed'): at most one of 'ip', 'scalewayRanges' could be set.

scalewayRanges?: boolean

Only one rule with this field set to true can be added.

One-of ('allowed'): at most one of 'ip', 'scalewayRanges' could be set.