@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
12 lines • 412 B
TypeScript
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