interface SecurityGroupRule {
    action: SecurityGroupRuleAction;
    destPortFrom?: number;
    destPortTo?: number;
    direction: SecurityGroupRuleDirection;
    editable: boolean;
    id: string;
    ipRange: string;
    position: number;
    protocol: SecurityGroupRuleProtocol;
    zone: Zone;
}

Properties

destPortFrom?: number
destPortTo?: number
editable: boolean
id: string
ipRange: string
position: number
zone: Zone

Zone to target. If none is passed will use default zone from the config.