import * as $dara from '@darabonba/typescript'; export declare class CreateVscRequestTag extends $dara.Model { /** * @example * TestKey */ key?: string; /** * @example * TestValue */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreateVscRequest extends $dara.Model { /** * @example * 123e4567-e89b-12d3-a456-426655440000 */ clientToken?: string; /** * @example * 设备的描述 */ description?: string; /** * @example * false */ dryRun?: boolean; /** * @remarks * This parameter is required. * * @example * i-bp**c262 */ instanceId?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; /** * @example * rg-bp67acfmxazb4p**** */ resourceGroupId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; tag?: CreateVscRequestTag[]; /** * @example * 设备1 */ vscName?: string; /** * @example * Primary */ vscType?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }