com.tencentcloudapi.cvm.v20170312.models.RenewHostsRequest Maven / Gradle / Ivy
/*
* 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 RenewHostsRequest extends AbstractModel{
/**
* 一个或多个待操作的CDH实例ID。每次请求的CDH实例的上限为100。
*/
@SerializedName("HostIds")
@Expose
private String [] HostIds;
/**
* 预付费模式,即包年包月相关参数设置。通过该参数可以指定包年包月实例的购买时长、是否设置自动续费等属性。若指定实例的付费模式为预付费则该参数必传。
*/
@SerializedName("HostChargePrepaid")
@Expose
private ChargePrepaid HostChargePrepaid;
/**
* Get 一个或多个待操作的CDH实例ID。每次请求的CDH实例的上限为100。
* @return HostIds 一个或多个待操作的CDH实例ID。每次请求的CDH实例的上限为100。
*/
public String [] getHostIds() {
return this.HostIds;
}
/**
* Set 一个或多个待操作的CDH实例ID。每次请求的CDH实例的上限为100。
* @param HostIds 一个或多个待操作的CDH实例ID。每次请求的CDH实例的上限为100。
*/
public void setHostIds(String [] HostIds) {
this.HostIds = HostIds;
}
/**
* Get 预付费模式,即包年包月相关参数设置。通过该参数可以指定包年包月实例的购买时长、是否设置自动续费等属性。若指定实例的付费模式为预付费则该参数必传。
* @return HostChargePrepaid 预付费模式,即包年包月相关参数设置。通过该参数可以指定包年包月实例的购买时长、是否设置自动续费等属性。若指定实例的付费模式为预付费则该参数必传。
*/
public ChargePrepaid getHostChargePrepaid() {
return this.HostChargePrepaid;
}
/**
* Set 预付费模式,即包年包月相关参数设置。通过该参数可以指定包年包月实例的购买时长、是否设置自动续费等属性。若指定实例的付费模式为预付费则该参数必传。
* @param HostChargePrepaid 预付费模式,即包年包月相关参数设置。通过该参数可以指定包年包月实例的购买时长、是否设置自动续费等属性。若指定实例的付费模式为预付费则该参数必传。
*/
public void setHostChargePrepaid(ChargePrepaid HostChargePrepaid) {
this.HostChargePrepaid = HostChargePrepaid;
}
public RenewHostsRequest() {
}
/**
* 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 RenewHostsRequest(RenewHostsRequest source) {
if (source.HostIds != null) {
this.HostIds = new String[source.HostIds.length];
for (int i = 0; i < source.HostIds.length; i++) {
this.HostIds[i] = new String(source.HostIds[i]);
}
}
if (source.HostChargePrepaid != null) {
this.HostChargePrepaid = new ChargePrepaid(source.HostChargePrepaid);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamArraySimple(map, prefix + "HostIds.", this.HostIds);
this.setParamObj(map, prefix + "HostChargePrepaid.", this.HostChargePrepaid);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy