import * as $dara from '@darabonba/typescript'; export declare class ListPrivateDNSRequest extends $dara.Model { /** * @remarks * The internal domain name. * * @example * api.demo.com */ intranetDomain?: string; pageNumber?: number; pageSize?: number; securityToken?: string; /** * @remarks * The internal domain name resolution type. Valid values: * * * VPC: resolution for virtual private cloud (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. * * @example * A */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }