com.tencentcloudapi.cvm.v20170312.models.InquirePricePurchaseReservedInstancesOfferingRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-cvm Show documentation
Show all versions of tencentcloud-sdk-java-cvm Show documentation
Tencent Cloud Open API SDK for Java
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.tencentcloudapi.cvm.v20170312.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class InquirePricePurchaseReservedInstancesOfferingRequest extends AbstractModel{
/**
* 购买预留实例计费数量
*/
@SerializedName("InstanceCount")
@Expose
private Long InstanceCount;
/**
* 预留实例计费配置ID
*/
@SerializedName("ReservedInstancesOfferingId")
@Expose
private String ReservedInstancesOfferingId;
/**
* 试运行
*/
@SerializedName("DryRun")
@Expose
private Boolean DryRun;
/**
* 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。
更多详细信息请参阅:如何保证幂等性
*/
@SerializedName("ClientToken")
@Expose
private String ClientToken;
/**
* 预留实例显示名称。
不指定实例显示名称则默认显示‘未命名’。 最多支持60个字符(包含模式串)。
*/
@SerializedName("ReservedInstanceName")
@Expose
private String ReservedInstanceName;
/**
* Get 购买预留实例计费数量
* @return InstanceCount 购买预留实例计费数量
*/
public Long getInstanceCount() {
return this.InstanceCount;
}
/**
* Set 购买预留实例计费数量
* @param InstanceCount 购买预留实例计费数量
*/
public void setInstanceCount(Long InstanceCount) {
this.InstanceCount = InstanceCount;
}
/**
* Get 预留实例计费配置ID
* @return ReservedInstancesOfferingId 预留实例计费配置ID
*/
public String getReservedInstancesOfferingId() {
return this.ReservedInstancesOfferingId;
}
/**
* Set 预留实例计费配置ID
* @param ReservedInstancesOfferingId 预留实例计费配置ID
*/
public void setReservedInstancesOfferingId(String ReservedInstancesOfferingId) {
this.ReservedInstancesOfferingId = ReservedInstancesOfferingId;
}
/**
* Get 试运行
* @return DryRun 试运行
*/
public Boolean getDryRun() {
return this.DryRun;
}
/**
* Set 试运行
* @param DryRun 试运行
*/
public void setDryRun(Boolean DryRun) {
this.DryRun = DryRun;
}
/**
* Get 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。
更多详细信息请参阅:如何保证幂等性
* @return ClientToken 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。
更多详细信息请参阅:如何保证幂等性
*/
public String getClientToken() {
return this.ClientToken;
}
/**
* Set 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。
更多详细信息请参阅:如何保证幂等性
* @param ClientToken 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。
更多详细信息请参阅:如何保证幂等性
*/
public void setClientToken(String ClientToken) {
this.ClientToken = ClientToken;
}
/**
* Get 预留实例显示名称。
不指定实例显示名称则默认显示‘未命名’。 最多支持60个字符(包含模式串)。
* @return ReservedInstanceName 预留实例显示名称。
不指定实例显示名称则默认显示‘未命名’。 最多支持60个字符(包含模式串)。
*/
public String getReservedInstanceName() {
return this.ReservedInstanceName;
}
/**
* Set 预留实例显示名称。
不指定实例显示名称则默认显示‘未命名’。 最多支持60个字符(包含模式串)。
* @param ReservedInstanceName 预留实例显示名称。
不指定实例显示名称则默认显示‘未命名’。 最多支持60个字符(包含模式串)。
*/
public void setReservedInstanceName(String ReservedInstanceName) {
this.ReservedInstanceName = ReservedInstanceName;
}
public InquirePricePurchaseReservedInstancesOfferingRequest() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public InquirePricePurchaseReservedInstancesOfferingRequest(InquirePricePurchaseReservedInstancesOfferingRequest source) {
if (source.InstanceCount != null) {
this.InstanceCount = new Long(source.InstanceCount);
}
if (source.ReservedInstancesOfferingId != null) {
this.ReservedInstancesOfferingId = new String(source.ReservedInstancesOfferingId);
}
if (source.DryRun != null) {
this.DryRun = new Boolean(source.DryRun);
}
if (source.ClientToken != null) {
this.ClientToken = new String(source.ClientToken);
}
if (source.ReservedInstanceName != null) {
this.ReservedInstanceName = new String(source.ReservedInstanceName);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "InstanceCount", this.InstanceCount);
this.setParamSimple(map, prefix + "ReservedInstancesOfferingId", this.ReservedInstancesOfferingId);
this.setParamSimple(map, prefix + "DryRun", this.DryRun);
this.setParamSimple(map, prefix + "ClientToken", this.ClientToken);
this.setParamSimple(map, prefix + "ReservedInstanceName", this.ReservedInstanceName);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy