import * as $dara from '@darabonba/typescript'; export declare class DescribeStorageCapacityUnitsRequestTag extends $dara.Model { /** * @remarks * The key of tag N to be added to the SCU. * * @example * TestKey */ key?: string; /** * @remarks * The value of tag N to be added to the SCU. * * @example * TestValue */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeStorageCapacityUnitsRequest extends $dara.Model { /** * @remarks * The allocation type. Valid values: * * * Normal: queries SCUs that belong to the current Alibaba Cloud account. * * Shared: queries SCUs shared between the Alibaba Cloud account and RAM users. * * Default value: Normal. * * @example * Normal */ allocationType?: string; /** * @remarks * The capacity of the SCU. Unit: GiB. Valid values: 20, 40, 100, 200, 500, 1024, 2048, 5120, 10240, 20480, and 51200. * * @example * 20 */ capacity?: number; /** * @remarks * The name of the SCU. The name must be 2 to 128 characters in length. It must start with a letter but cannot start with `http://` or `https://`. It can contain letters, digits, colons (:), underscores (_), and hyphens (-). * * @example * testScuName */ name?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The number of the page to return. * * Pages start from page 1. * * Default value: 1. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries per page. * * Valid values: 1 to 100. * * Default value: 10. * * @example * 1 */ pageSize?: 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 states of SCUs. The array is 1 to 4 in length. * * @example * Active */ status?: string[]; /** * @remarks * The IDs of the SCUs. You can specify 1 to 100 SCU IDs. * * @example * scu-bp67acfmxazb4p**** */ storageCapacityUnitId?: string[]; /** * @remarks * The tags to add to the SCU. You can add up to 20 tags. */ tag?: DescribeStorageCapacityUnitsRequestTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }