import * as $dara from '@darabonba/typescript'; export declare class RegistryNetworkConfig extends $dara.Model { /** * @remarks * 镜像仓库的安全组ID * * @example * sg-xxxxxxxxxxxxx */ securityGroupId?: string; /** * @remarks * 镜像仓库所在的交换机ID * * @example * vsw-xxxxxxxxxxxxx */ vSwitchId?: string; /** * @remarks * 镜像仓库所在的VPC ID * * @example * vpc-xxxxxxxxxxxxx */ vpcId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }