import { IpBlock } from '../../IpBlock';
/** Container registry Get IP Restrictions */
export interface IPRestrictions {
    /** IP Restrictions creation date */
    createdAt: string;
    /** The Description of Whitelisted IpBlock */
    description: string;
    /** Whitelisted IpBlock */
    ipBlock: IpBlock;
    /** IP Restrictions update date */
    updatedAt: string;
}
//# sourceMappingURL=IPRestrictions.d.ts.map