import * as $dara from '@darabonba/typescript'; export declare class ModifyReservedInstanceAttributeRequest extends $dara.Model { /** * @remarks * The error code. * * @example * ri-example */ description?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The ID of the reserved instance. * * This parameter is required. * * @example * cn-hangzhou */ regionId?: string; /** * @remarks * The new name of the reserved instance. 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 (-). * * This parameter is required. * * @example * ecsri-uf61hdhue4kcorqsk**** */ reservedInstanceId?: string; /** * @remarks * The new description of the reserved instance. The description must be 2 to 256 characters in length. It cannot start with `http://` or `https://`. * * This parameter is empty by default. * * @example * testReservedInstanceName */ reservedInstanceName?: string; resourceOwnerAccount?: string; resourceOwnerId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }