// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class ModifyDedicatedHostsChargeTypeRequest extends $dara.Model { /** * @remarks * Specifies whether to automatically complete the payment. Valid value: * * * true: The payment is automatically completed. Ensure that your account balance is sufficient. Otherwise, your order becomes invalid and must be canceled. * * false: An order is generated but no payment is made. * * Default value: true. * * > If you do not have sufficient balance in your account, you can set `AutoPay` to `false` to generate an unpaid order. Then, you can pay for the order. * * @example * false */ autoPay?: boolean; /** * @remarks * The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The `token` can contain only ASCII characters and cannot exceed 64 characters in length. For more information, see [How to ensure idempotence](https://help.aliyun.com/document_detail/25693.html). * * @example * e4567-e89b-12d3-a456-426655440000 */ clientToken?: string; /** * @remarks * The new billing method for the dedicated host. Valid value: * * * PrePaid: changes the billing method from pay-as-you-go to subscription. * * PostPaid: changes the billing method from subscription to pay-as-you-go. * * Default value: PrePaid. * * @example * PrePaid */ dedicatedHostChargeType?: string; /** * @remarks * The IDs of the dedicated hosts. The value can be a JSON array that consists of up to 20 dedicated host IDs. Separate the IDs with commas (,). * * This parameter is required. * * @example * ["dh-bp181e5064b5sotr****","dh-bp18064b5sotrr9c****"] */ dedicatedHostIds?: string; /** * @remarks * Specifies whether to return the billing details of the order when the billing method is changed from subscription to pay-as-you-go. * * Indicates whether the nfs volume is set to the read-only mode. Default value: false. * * @example * false */ detailFee?: boolean; /** * @remarks * Specifies whether to perform only a dry run. Valid value: * * * true: performs only a dry run. The system checks the request for potential issues, including invalid AccessKey pairs, unauthorized Resource Access Management (RAM) users, and missing parameter values. If the request fails the dry run, an error message is returned. If the request passes the dry run, the `DryRunOperation` error code is returned. * * false: performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed. * * Indicates whether the nfs volume is set to the read-only mode. Default value: false. * * @example * false */ dryRun?: boolean; ownerAccount?: string; ownerId?: number; /** * @remarks * The renewal duration of the subscription dedicated hosts. Valid values: * * * If you set `PeriodUnit` to Week, valid values of `Period` are 1, 2, 3, and 4. * * If you set `PeriodUnit` to Month, valid values of `Period` are 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 24, 36, 48, and 60. * * @example * 1 */ period?: number; /** * @remarks * The unit of the renewal duration specified by `Period`. Valid values: * * * Week * * Month * * Default value: Month. * * @example * Month */ periodUnit?: string; /** * @remarks * The region ID of the dedicated hosts. 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; static names(): { [key: string]: string } { return { autoPay: 'AutoPay', clientToken: 'ClientToken', dedicatedHostChargeType: 'DedicatedHostChargeType', dedicatedHostIds: 'DedicatedHostIds', detailFee: 'DetailFee', dryRun: 'DryRun', ownerAccount: 'OwnerAccount', ownerId: 'OwnerId', period: 'Period', periodUnit: 'PeriodUnit', regionId: 'RegionId', resourceOwnerAccount: 'ResourceOwnerAccount', resourceOwnerId: 'ResourceOwnerId', }; } static types(): { [key: string]: any } { return { autoPay: 'boolean', clientToken: 'string', dedicatedHostChargeType: 'string', dedicatedHostIds: 'string', detailFee: 'boolean', dryRun: 'boolean', ownerAccount: 'string', ownerId: 'number', period: 'number', periodUnit: 'string', regionId: 'string', resourceOwnerAccount: 'string', resourceOwnerId: 'number', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }