import * as $dara from '@darabonba/typescript'; export declare class ModifyApiGroupInstanceRequestTag extends $dara.Model { /** * @remarks * The tag key. * * This parameter is required. * * @example * env */ key?: string; /** * @remarks * The tag value. * * This parameter is required. * * @example * 123 */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ModifyApiGroupInstanceRequest extends $dara.Model { /** * @remarks * The ID of the API group. * * This parameter is required. * * @example * 01c97ed08a614118849b00079753d1e2 */ groupId?: string; /** * @remarks * The remarks. * * @example * migrate */ remark?: string; securityToken?: string; /** * @remarks * The tag of objects that match the rule. You can specify multiple tags. */ tag?: ModifyApiGroupInstanceRequestTag[]; /** * @remarks * The ID of the instance to which you want to migrate the API group. * * This parameter is required. * * @example * apigateway-bj-c325375b1ebe */ targetInstanceId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }