import * as $dara from '@darabonba/typescript'; export declare class ListPrivateDNSResponseBodyPrivateDNSListRecords 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 ListPrivateDNSResponseBodyPrivateDNSList extends $dara.Model { /** * @remarks * The instances that are associated with the resolution. */ bindInstances?: string[]; /** * @remarks * The time when the resolution was created. The time is displayed in UTC. * * @example * 2023-05-10T08:17:00Z */ createdTime?: string; /** * @remarks * The internal domain name. * * @example * api.demo.com */ intranetDomain?: string; /** * @remarks * The resolution records. */ records?: ListPrivateDNSResponseBodyPrivateDNSListRecords[]; /** * @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. * * @example * A */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListPrivateDNSResponseBody extends $dara.Model { /** * @remarks * The page number of the returned page. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries per page. * * @example * 10 */ pageSize?: number; /** * @remarks * The internal domain name resolutions. */ privateDNSList?: ListPrivateDNSResponseBodyPrivateDNSList[]; /** * @remarks * The request ID. * * @example * CEF72CEB-54B6-4AE8-B225-F876FF7BZ016 */ requestId?: string; /** * @remarks * The total number of entries returned. * * @example * 2 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }