import { IpBlock } from '../../IpBlock';
import { NetworkAclStateEnum } from './NetworkAclStateEnum';
/** ACL for allowing ip blocks to access to your cluster */
export interface NetworkAcl {
    /** IP Block to allow */
    block: IpBlock;
    /** description of this ACL */
    description?: string;
    /** State of the NetworkAcl. */
    state: NetworkAclStateEnum;
}
//# sourceMappingURL=NetworkAcl.d.ts.map