import * as $dara from '@darabonba/typescript'; export declare class CreatePrivateDNSRequestRecords extends $dara.Model { /** * @remarks * The resolution record. * * @example * 192.168.0.1 */ record?: string; /** * @remarks * The weight of the record. * * @example * 100 */ weight?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreatePrivateDNSRequest extends $dara.Model { /** * @remarks * The internal domain name. * * This parameter is required. * * @example * api.demo.com */ intranetDomain?: string; /** * @remarks * The resolution records. This parameter is valid only when Type is set to A. */ records?: CreatePrivateDNSRequestRecords[]; securityToken?: string; /** * @remarks * The internal domain name resolution type. Valid values: * * * VPC: resolution for VPC access authorizations. A resolution of this type can be bound only to traditional dedicated instances. * * A: resolution that supports A records. A resolution of this type can be bound only to VPC integration dedicated instances. * * This parameter is required. * * @example * A */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }