// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class ChangeResourceGroupRequest extends $dara.Model { /** * @remarks * The ID of the new resource group. You can view the available resource groups in the Resource Management console. * * This parameter is required. * * @example * rg-aek2vezare**** */ newResourceGroupId?: string; /** * @remarks * The region ID. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The resource ID. * * This parameter is required. * * @example * ggxw4lnjuz@cfd34a78f****** */ resourceId?: string; /** * @remarks * The resource type. * * @example * APPLICATION */ resourceType?: string; static names(): { [key: string]: string } { return { newResourceGroupId: 'NewResourceGroupId', regionId: 'RegionId', resourceId: 'ResourceId', resourceType: 'ResourceType', }; } static types(): { [key: string]: any } { return { newResourceGroupId: 'string', regionId: 'string', resourceId: 'string', resourceType: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }