// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class ModifyDiskDefaultKMSKeyIdRequest extends $dara.Model { /** * @remarks * The ID of the new KMS key. * * This parameter is required. * * @example * 0e478b7a-4262-4802-b8cb-00d3fb40**** */ KMSKeyId?: string; ownerId?: number; /** * @remarks * The region ID. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/2679950.html) operation to query the most recent region list. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; resourceOwnerId?: number; static names(): { [key: string]: string } { return { KMSKeyId: 'KMSKeyId', ownerId: 'OwnerId', regionId: 'RegionId', resourceOwnerId: 'ResourceOwnerId', }; } static types(): { [key: string]: any } { return { KMSKeyId: 'string', ownerId: 'number', regionId: 'string', resourceOwnerId: 'number', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }