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

com.aliyun.sdk.service.gpdb20160503.models.DescribeAvailableResourcesRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.gpdb20160503.models;

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

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

DescribeAvailableResourcesRequest

*/ public class DescribeAvailableResourcesRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ChargeType") private String chargeType; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Region") @com.aliyun.core.annotation.Validation(required = true) private String region; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ZoneId") @com.aliyun.core.annotation.Validation(required = true) private String zoneId; private DescribeAvailableResourcesRequest(Builder builder) { super(builder); this.chargeType = builder.chargeType; this.region = builder.region; this.zoneId = builder.zoneId; } public static Builder builder() { return new Builder(); } public static DescribeAvailableResourcesRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return chargeType */ public String getChargeType() { return this.chargeType; } /** * @return region */ public String getRegion() { return this.region; } /** * @return zoneId */ public String getZoneId() { return this.zoneId; } public static final class Builder extends Request.Builder { private String chargeType; private String region; private String zoneId; private Builder() { super(); } private Builder(DescribeAvailableResourcesRequest request) { super(request); this.chargeType = request.chargeType; this.region = request.region; this.zoneId = request.zoneId; } /** * The billing method. Valid values: *

* * * **Postpaid**: pay-as-you-go. * * **Prepaid**: subscription. */ public Builder chargeType(String chargeType) { this.putQueryParameter("ChargeType", chargeType); this.chargeType = chargeType; return this; } /** * The region ID. *

* * > You can call the [DescribeRegions](~~86912~~) operation to query the most recent region list. */ public Builder region(String region) { this.putQueryParameter("Region", region); this.region = region; return this; } /** * The zone ID. *

* * > You can call the [DescribeRegions](~~86912~~) operation to query the most recent zone list. */ public Builder zoneId(String zoneId) { this.putQueryParameter("ZoneId", zoneId); this.zoneId = zoneId; return this; } @Override public DescribeAvailableResourcesRequest build() { return new DescribeAvailableResourcesRequest(this); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy