import * as $dara from '@darabonba/typescript'; export declare class SetVpcAccessRequestTag extends $dara.Model { /** * @remarks * The key of the tag. * * @example * key */ key?: string; /** * @remarks * The value of the tag. * * @example * 123 */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class SetVpcAccessRequest extends $dara.Model { /** * @remarks * The description of the VPC. * * @example * description of the VPC */ description?: string; /** * @remarks * The ID of an ECS or SLB instance in the VPC. * * This parameter is required. * * @example * i-uf6bzcg1pr4oh5jjmxxx */ instanceId?: string; /** * @remarks * The name of the authorization. The name must be unique. * * This parameter is required. * * @example * test */ name?: string; /** * @remarks * The port number that corresponds to the instance. * * This parameter is required. * * @example * 80 */ port?: number; securityToken?: string; /** * @remarks * The tag of objects that match the rule. You can specify multiple tags. */ tag?: SetVpcAccessRequestTag[]; /** * @remarks * The ID of the VPC. The VPC must be an available one that belongs to the same account as the API. * * This parameter is required. * * @example * vpc-uf657qec7lx42paw3qxxx */ vpcId?: string; /** * @remarks * The host of the backend service. * * @example * iot.hu***ng.com */ vpcTargetHostName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }