
com.tencentcloudapi.pts.v20210728.models.Load 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.pts.v20210728.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class Load extends AbstractModel{
/**
* 施压配置
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("LoadSpec")
@Expose
private LoadSpec LoadSpec;
/**
* 压力来源
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("VpcLoadDistribution")
@Expose
private VpcLoadDistribution VpcLoadDistribution;
/**
* 压力分布
注意:此字段可能返回 null,表示取不到有效值。
*/
@SerializedName("GeoRegionsLoadDistribution")
@Expose
private GeoRegionsLoadItem [] GeoRegionsLoadDistribution;
/**
* Get 施压配置
注意:此字段可能返回 null,表示取不到有效值。
* @return LoadSpec 施压配置
注意:此字段可能返回 null,表示取不到有效值。
*/
public LoadSpec getLoadSpec() {
return this.LoadSpec;
}
/**
* Set 施压配置
注意:此字段可能返回 null,表示取不到有效值。
* @param LoadSpec 施压配置
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setLoadSpec(LoadSpec LoadSpec) {
this.LoadSpec = LoadSpec;
}
/**
* Get 压力来源
注意:此字段可能返回 null,表示取不到有效值。
* @return VpcLoadDistribution 压力来源
注意:此字段可能返回 null,表示取不到有效值。
*/
public VpcLoadDistribution getVpcLoadDistribution() {
return this.VpcLoadDistribution;
}
/**
* Set 压力来源
注意:此字段可能返回 null,表示取不到有效值。
* @param VpcLoadDistribution 压力来源
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setVpcLoadDistribution(VpcLoadDistribution VpcLoadDistribution) {
this.VpcLoadDistribution = VpcLoadDistribution;
}
/**
* Get 压力分布
注意:此字段可能返回 null,表示取不到有效值。
* @return GeoRegionsLoadDistribution 压力分布
注意:此字段可能返回 null,表示取不到有效值。
*/
public GeoRegionsLoadItem [] getGeoRegionsLoadDistribution() {
return this.GeoRegionsLoadDistribution;
}
/**
* Set 压力分布
注意:此字段可能返回 null,表示取不到有效值。
* @param GeoRegionsLoadDistribution 压力分布
注意:此字段可能返回 null,表示取不到有效值。
*/
public void setGeoRegionsLoadDistribution(GeoRegionsLoadItem [] GeoRegionsLoadDistribution) {
this.GeoRegionsLoadDistribution = GeoRegionsLoadDistribution;
}
public Load() {
}
/**
* 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 Load(Load source) {
if (source.LoadSpec != null) {
this.LoadSpec = new LoadSpec(source.LoadSpec);
}
if (source.VpcLoadDistribution != null) {
this.VpcLoadDistribution = new VpcLoadDistribution(source.VpcLoadDistribution);
}
if (source.GeoRegionsLoadDistribution != null) {
this.GeoRegionsLoadDistribution = new GeoRegionsLoadItem[source.GeoRegionsLoadDistribution.length];
for (int i = 0; i < source.GeoRegionsLoadDistribution.length; i++) {
this.GeoRegionsLoadDistribution[i] = new GeoRegionsLoadItem(source.GeoRegionsLoadDistribution[i]);
}
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamObj(map, prefix + "LoadSpec.", this.LoadSpec);
this.setParamObj(map, prefix + "VpcLoadDistribution.", this.VpcLoadDistribution);
this.setParamArrayObj(map, prefix + "GeoRegionsLoadDistribution.", this.GeoRegionsLoadDistribution);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy