com.tencentcloudapi.tcss.v20201101.models.AffectedWorkloadItem 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.tcss.v20201101.models;
import com.tencentcloudapi.common.AbstractModel;
import com.tencentcloudapi.common.SSEResponseModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class AffectedWorkloadItem extends AbstractModel {
/**
* Cluster ID
*/
@SerializedName("ClusterId")
@Expose
private String ClusterId;
/**
* Cluster name
*/
@SerializedName("ClusterName")
@Expose
private String ClusterName;
/**
* Workload name
*/
@SerializedName("WorkloadName")
@Expose
private String WorkloadName;
/**
* Workload type
*/
@SerializedName("WorkloadType")
@Expose
private String WorkloadType;
/**
* Region
*/
@SerializedName("Region")
@Expose
private String Region;
/**
* Verification information of the check result
*/
@SerializedName("VerifyInfo")
@Expose
private String VerifyInfo;
/**
* Get Cluster ID
* @return ClusterId Cluster ID
*/
public String getClusterId() {
return this.ClusterId;
}
/**
* Set Cluster ID
* @param ClusterId Cluster ID
*/
public void setClusterId(String ClusterId) {
this.ClusterId = ClusterId;
}
/**
* Get Cluster name
* @return ClusterName Cluster name
*/
public String getClusterName() {
return this.ClusterName;
}
/**
* Set Cluster name
* @param ClusterName Cluster name
*/
public void setClusterName(String ClusterName) {
this.ClusterName = ClusterName;
}
/**
* Get Workload name
* @return WorkloadName Workload name
*/
public String getWorkloadName() {
return this.WorkloadName;
}
/**
* Set Workload name
* @param WorkloadName Workload name
*/
public void setWorkloadName(String WorkloadName) {
this.WorkloadName = WorkloadName;
}
/**
* Get Workload type
* @return WorkloadType Workload type
*/
public String getWorkloadType() {
return this.WorkloadType;
}
/**
* Set Workload type
* @param WorkloadType Workload type
*/
public void setWorkloadType(String WorkloadType) {
this.WorkloadType = WorkloadType;
}
/**
* Get Region
* @return Region Region
*/
public String getRegion() {
return this.Region;
}
/**
* Set Region
* @param Region Region
*/
public void setRegion(String Region) {
this.Region = Region;
}
/**
* Get Verification information of the check result
* @return VerifyInfo Verification information of the check result
*/
public String getVerifyInfo() {
return this.VerifyInfo;
}
/**
* Set Verification information of the check result
* @param VerifyInfo Verification information of the check result
*/
public void setVerifyInfo(String VerifyInfo) {
this.VerifyInfo = VerifyInfo;
}
public AffectedWorkloadItem() {
}
/**
* 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 AffectedWorkloadItem(AffectedWorkloadItem source) {
if (source.ClusterId != null) {
this.ClusterId = new String(source.ClusterId);
}
if (source.ClusterName != null) {
this.ClusterName = new String(source.ClusterName);
}
if (source.WorkloadName != null) {
this.WorkloadName = new String(source.WorkloadName);
}
if (source.WorkloadType != null) {
this.WorkloadType = new String(source.WorkloadType);
}
if (source.Region != null) {
this.Region = new String(source.Region);
}
if (source.VerifyInfo != null) {
this.VerifyInfo = new String(source.VerifyInfo);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "ClusterId", this.ClusterId);
this.setParamSimple(map, prefix + "ClusterName", this.ClusterName);
this.setParamSimple(map, prefix + "WorkloadName", this.WorkloadName);
this.setParamSimple(map, prefix + "WorkloadType", this.WorkloadType);
this.setParamSimple(map, prefix + "Region", this.Region);
this.setParamSimple(map, prefix + "VerifyInfo", this.VerifyInfo);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy