import * as $dara from '@darabonba/typescript'; export declare class DescribeVpcAccessesRequestTag extends $dara.Model { /** * @remarks * The tag key. * * @example * appname */ key?: string; /** * @remarks * The tag value. * * @example * product */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeVpcAccessesRequest extends $dara.Model { /** * @remarks * Whether to conduct precise queries * * @example * false */ accurateQuery?: boolean; /** * @remarks * The ID of the instance. * * @example * 10.199.26.*** */ instanceId?: string; /** * @remarks * The name of the authorization. The name must be unique. * * @example * wuying-edm-svc */ name?: string; /** * @remarks * The number of the page to return. Pages start from page 1. Default value: 1. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries to return on each page. Maximum value: 100. Default value: 10. * * @example * 10 */ pageSize?: number; /** * @remarks * The service port. * * @example * 8080 */ port?: string; securityToken?: string; /** * @remarks * The port number. */ tag?: DescribeVpcAccessesRequestTag[]; /** * @remarks * The ID of the VPC authorization. * * @example * vpc-*****ssds24 */ vpcAccessId?: string; /** * @remarks * The ID of the VPC. * * @example * vpc-uf657qec7lx42paw3qxxx */ vpcId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }