import * as $dara from '@darabonba/typescript'; export declare class ModifyStorageCapacityUnitAttributeRequest extends $dara.Model { /** * @remarks * The new description of the SCU. The description must be 2 to 256 characters in length and cannot start with [http:// or https://.](http://https://%E3%80%82) * * @example * testNewScuDescription */ description?: string; /** * @remarks * The new name of the SCU. The name must be 2 to 128 characters in length. It must start with a letter and cannot start with [http:// or https://. It can contain letters, digits, colons (:), underscores (_), and hyphens (-).](http://https://%E3%80%82%E3%80%81%EF%BC%88:%EF%BC%89%E3%80%81%EF%BC%88_%EF%BC%89%EF%BC%88-%EF%BC%89%E3%80%82) * * @example * testNewScuName */ name?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The region ID of the SCU. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * The ID of the SCU. * * This parameter is required. * * @example * scu-bp67acfmxazb4p**** */ storageCapacityUnitId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }