
com.tencentcloudapi.clb.v20180317.models.ExclusiveCluster 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.clb.v20180317.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class ExclusiveCluster extends AbstractModel{
/**
* 4层独占集群列表
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("L4Clusters")
@Expose
private ClusterItem [] L4Clusters;
/**
* 7层独占集群列表
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("L7Clusters")
@Expose
private ClusterItem [] L7Clusters;
/**
* vpcgw集群
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("ClassicalCluster")
@Expose
private ClusterItem ClassicalCluster;
/**
* Get 4层独占集群列表
注意:此字段可能返回 null,表示取不到有效值。
* @return L4Clusters 4层独占集群列表
注意:此字段可能返回 null,表示取不到有效值。
*/
public ClusterItem [] getL4Clusters() {
return this.L4Clusters;
}
/**
* Set 4层独占集群列表
注意:此字段可能返回 null,表示取不到有效值。
* @param L4Clusters 4层独占集群列表
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setL4Clusters(ClusterItem [] L4Clusters) {
this.L4Clusters = L4Clusters;
}
/**
* Get 7层独占集群列表
注意:此字段可能返回 null,表示取不到有效值。
* @return L7Clusters 7层独占集群列表
注意:此字段可能返回 null,表示取不到有效值。
*/
public ClusterItem [] getL7Clusters() {
return this.L7Clusters;
}
/**
* Set 7层独占集群列表
注意:此字段可能返回 null,表示取不到有效值。
* @param L7Clusters 7层独占集群列表
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setL7Clusters(ClusterItem [] L7Clusters) {
this.L7Clusters = L7Clusters;
}
/**
* Get vpcgw集群
注意:此字段可能返回 null,表示取不到有效值。
* @return ClassicalCluster vpcgw集群
注意:此字段可能返回 null,表示取不到有效值。
*/
public ClusterItem getClassicalCluster() {
return this.ClassicalCluster;
}
/**
* Set vpcgw集群
注意:此字段可能返回 null,表示取不到有效值。
* @param ClassicalCluster vpcgw集群
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setClassicalCluster(ClusterItem ClassicalCluster) {
this.ClassicalCluster = ClassicalCluster;
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamArrayObj(map, prefix + "L4Clusters.", this.L4Clusters);
this.setParamArrayObj(map, prefix + "L7Clusters.", this.L7Clusters);
this.setParamObj(map, prefix + "ClassicalCluster.", this.ClassicalCluster);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy