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

com.tencentcloudapi.cvm.v20170312.models.CreateDisasterRecoverGroupRequest Maven / Gradle / Ivy

There is a newer version: 3.1.1164
Show newest version
/*
 * 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 CreateDisasterRecoverGroupRequest extends AbstractModel{

    /**
    * 分散置放群组名称,长度1-60个字符,支持中、英文。
    */
    @SerializedName("Name")
    @Expose
    private String Name;

    /**
    * 分散置放群组类型,取值范围:
  • HOST:物理机
  • SW:交换机
  • RACK:机架 */ @SerializedName("Type") @Expose private String Type; /** * 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。
    更多详细信息请参阅:如何保证幂等性。 */ @SerializedName("ClientToken") @Expose private String ClientToken; /** * Get 分散置放群组名称,长度1-60个字符,支持中、英文。 * @return Name 分散置放群组名称,长度1-60个字符,支持中、英文。 */ public String getName() { return this.Name; } /** * Set 分散置放群组名称,长度1-60个字符,支持中、英文。 * @param Name 分散置放群组名称,长度1-60个字符,支持中、英文。 */ public void setName(String Name) { this.Name = Name; } /** * Get 分散置放群组类型,取值范围:
  • HOST:物理机
  • SW:交换机
  • RACK:机架 * @return Type 分散置放群组类型,取值范围:
  • HOST:物理机
  • SW:交换机
  • RACK:机架 */ public String getType() { return this.Type; } /** * Set 分散置放群组类型,取值范围:
  • HOST:物理机
  • SW:交换机
  • RACK:机架 * @param Type 分散置放群组类型,取值范围:
  • HOST:物理机
  • SW:交换机
  • RACK:机架 */ public void setType(String Type) { this.Type = Type; } /** * 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; } public CreateDisasterRecoverGroupRequest() { } /** * 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 CreateDisasterRecoverGroupRequest(CreateDisasterRecoverGroupRequest source) { if (source.Name != null) { this.Name = new String(source.Name); } if (source.Type != null) { this.Type = new String(source.Type); } if (source.ClientToken != null) { this.ClientToken = new String(source.ClientToken); } } /** * Internal implementation, normal users should not use it. */ public void toMap(HashMap map, String prefix) { this.setParamSimple(map, prefix + "Name", this.Name); this.setParamSimple(map, prefix + "Type", this.Type); this.setParamSimple(map, prefix + "ClientToken", this.ClientToken); } }




  • © 2015 - 2025 Weber Informatics LLC | Privacy Policy