All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.sdk.service.ecs20140526.models.ModifyReservedInstancesRequest Maven / Gradle / Ivy

There is a newer version: 5.0.29
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ecs20140526.models;

import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * {@link ModifyReservedInstancesRequest} extends {@link RequestModel}
 *
 * 

ModifyReservedInstancesRequest

*/ public class ModifyReservedInstancesRequest extends Request { @Query @NameInMap("Configuration") private java.util.List < Configuration> configuration; @Query @NameInMap("OwnerAccount") private String ownerAccount; @Query @NameInMap("OwnerId") private Long ownerId; @Query @NameInMap("RegionId") @Validation(required = true) private String regionId; @Query @NameInMap("ReservedInstanceId") @Validation(required = true) private java.util.List < String > reservedInstanceId; @Query @NameInMap("ResourceOwnerAccount") private String resourceOwnerAccount; @Query @NameInMap("ResourceOwnerId") private Long resourceOwnerId; private ModifyReservedInstancesRequest(Builder builder) { super(builder); this.configuration = builder.configuration; this.ownerAccount = builder.ownerAccount; this.ownerId = builder.ownerId; this.regionId = builder.regionId; this.reservedInstanceId = builder.reservedInstanceId; this.resourceOwnerAccount = builder.resourceOwnerAccount; this.resourceOwnerId = builder.resourceOwnerId; } public static Builder builder() { return new Builder(); } public static ModifyReservedInstancesRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return configuration */ public java.util.List < Configuration> getConfiguration() { return this.configuration; } /** * @return ownerAccount */ public String getOwnerAccount() { return this.ownerAccount; } /** * @return ownerId */ public Long getOwnerId() { return this.ownerId; } /** * @return regionId */ public String getRegionId() { return this.regionId; } /** * @return reservedInstanceId */ public java.util.List < String > getReservedInstanceId() { return this.reservedInstanceId; } /** * @return resourceOwnerAccount */ public String getResourceOwnerAccount() { return this.resourceOwnerAccount; } /** * @return resourceOwnerId */ public Long getResourceOwnerId() { return this.resourceOwnerId; } public static final class Builder extends Request.Builder { private java.util.List < Configuration> configuration; private String ownerAccount; private Long ownerId; private String regionId; private java.util.List < String > reservedInstanceId; private String resourceOwnerAccount; private Long resourceOwnerId; private Builder() { super(); } private Builder(ModifyReservedInstancesRequest request) { super(request); this.configuration = request.configuration; this.ownerAccount = request.ownerAccount; this.ownerId = request.ownerId; this.regionId = request.regionId; this.reservedInstanceId = request.reservedInstanceId; this.resourceOwnerAccount = request.resourceOwnerAccount; this.resourceOwnerId = request.resourceOwnerId; } /** * The configurations of reserved instance N. */ public Builder configuration(java.util.List < Configuration> configuration) { this.putQueryParameter("Configuration", configuration); this.configuration = configuration; return this; } /** * OwnerAccount. */ public Builder ownerAccount(String ownerAccount) { this.putQueryParameter("OwnerAccount", ownerAccount); this.ownerAccount = ownerAccount; return this; } /** * OwnerId. */ public Builder ownerId(Long ownerId) { this.putQueryParameter("OwnerId", ownerId); this.ownerId = ownerId; return this; } /** * The IDs of reserved instances. Valid values of N: 1 to 20. */ public Builder regionId(String regionId) { this.putQueryParameter("RegionId", regionId); this.regionId = regionId; return this; } /** * The IDs of reserved instances. Valid values of N: 1 to 20. */ public Builder reservedInstanceId(java.util.List < String > reservedInstanceId) { this.putQueryParameter("ReservedInstanceId", reservedInstanceId); this.reservedInstanceId = reservedInstanceId; return this; } /** * ResourceOwnerAccount. */ public Builder resourceOwnerAccount(String resourceOwnerAccount) { this.putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount); this.resourceOwnerAccount = resourceOwnerAccount; return this; } /** * ResourceOwnerId. */ public Builder resourceOwnerId(Long resourceOwnerId) { this.putQueryParameter("ResourceOwnerId", resourceOwnerId); this.resourceOwnerId = resourceOwnerId; return this; } @Override public ModifyReservedInstancesRequest build() { return new ModifyReservedInstancesRequest(this); } } public static class Configuration extends TeaModel { @NameInMap("InstanceAmount") private Integer instanceAmount; @NameInMap("InstanceType") private String instanceType; @NameInMap("ReservedInstanceName") private String reservedInstanceName; @NameInMap("Scope") private String scope; @NameInMap("ZoneId") private String zoneId; private Configuration(Builder builder) { this.instanceAmount = builder.instanceAmount; this.instanceType = builder.instanceType; this.reservedInstanceName = builder.reservedInstanceName; this.scope = builder.scope; this.zoneId = builder.zoneId; } public static Builder builder() { return new Builder(); } public static Configuration create() { return builder().build(); } /** * @return instanceAmount */ public Integer getInstanceAmount() { return this.instanceAmount; } /** * @return instanceType */ public String getInstanceType() { return this.instanceType; } /** * @return reservedInstanceName */ public String getReservedInstanceName() { return this.reservedInstanceName; } /** * @return scope */ public String getScope() { return this.scope; } /** * @return zoneId */ public String getZoneId() { return this.zoneId; } public static final class Builder { private Integer instanceAmount; private String instanceType; private String reservedInstanceName; private String scope; private String zoneId; /** * The ID of the request. */ public Builder instanceAmount(Integer instanceAmount) { this.instanceAmount = instanceAmount; return this; } /** * The number of pay-as-you-go instances of the same instance type that the reserved instance can match. The value of this parameter must be greater than or equal to 1. Valid values of N: 1 to 100. */ public Builder instanceType(String instanceType) { this.instanceType = instanceType; return this; } /** * The zone ID of reserved instance N. Valid values of N: 1 to 100. *

* * This parameter is required when `Scope` is set to `Zone`. * * You can call the [DescribeZones](~~25609~~) operation to query the most recent zone list. */ public Builder reservedInstanceName(String reservedInstanceName) { this.reservedInstanceName = reservedInstanceName; return this; } /** * The instance type that reserved instance N can match. Valid values of N: 1 to 100. *

* * > The supported instance types are regularly updated. For more information, see the "Attributes" section of [Overview](~~100370~~). */ public Builder scope(String scope) { this.scope = scope; return this; } /** * The scope of reserved instance N. Valid values: *

* * * Region * * Zone * * Valid values of N: 1 to 100. * * Default value: Region. */ public Builder zoneId(String zoneId) { this.zoneId = zoneId; return this; } public Configuration build() { return new Configuration(this); } } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy