com.tencentcloudapi.as.v20180419.models.DetailedStatusMessage 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.as.v20180419.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 DetailedStatusMessage extends AbstractModel {
/**
* Error type
*/
@SerializedName("Code")
@Expose
private String Code;
/**
* AZ information
*/
@SerializedName("Zone")
@Expose
private String Zone;
/**
* Instance ID
*/
@SerializedName("InstanceId")
@Expose
private String InstanceId;
/**
* Instance billing mode
*/
@SerializedName("InstanceChargeType")
@Expose
private String InstanceChargeType;
/**
* Subnet ID
*/
@SerializedName("SubnetId")
@Expose
private String SubnetId;
/**
* Error message
*/
@SerializedName("Message")
@Expose
private String Message;
/**
* Instance type
*/
@SerializedName("InstanceType")
@Expose
private String InstanceType;
/**
* Get Error type
* @return Code Error type
*/
public String getCode() {
return this.Code;
}
/**
* Set Error type
* @param Code Error type
*/
public void setCode(String Code) {
this.Code = Code;
}
/**
* Get AZ information
* @return Zone AZ information
*/
public String getZone() {
return this.Zone;
}
/**
* Set AZ information
* @param Zone AZ information
*/
public void setZone(String Zone) {
this.Zone = Zone;
}
/**
* Get Instance ID
* @return InstanceId Instance ID
*/
public String getInstanceId() {
return this.InstanceId;
}
/**
* Set Instance ID
* @param InstanceId Instance ID
*/
public void setInstanceId(String InstanceId) {
this.InstanceId = InstanceId;
}
/**
* Get Instance billing mode
* @return InstanceChargeType Instance billing mode
*/
public String getInstanceChargeType() {
return this.InstanceChargeType;
}
/**
* Set Instance billing mode
* @param InstanceChargeType Instance billing mode
*/
public void setInstanceChargeType(String InstanceChargeType) {
this.InstanceChargeType = InstanceChargeType;
}
/**
* Get Subnet ID
* @return SubnetId Subnet ID
*/
public String getSubnetId() {
return this.SubnetId;
}
/**
* Set Subnet ID
* @param SubnetId Subnet ID
*/
public void setSubnetId(String SubnetId) {
this.SubnetId = SubnetId;
}
/**
* Get Error message
* @return Message Error message
*/
public String getMessage() {
return this.Message;
}
/**
* Set Error message
* @param Message Error message
*/
public void setMessage(String Message) {
this.Message = Message;
}
/**
* Get Instance type
* @return InstanceType Instance type
*/
public String getInstanceType() {
return this.InstanceType;
}
/**
* Set Instance type
* @param InstanceType Instance type
*/
public void setInstanceType(String InstanceType) {
this.InstanceType = InstanceType;
}
public DetailedStatusMessage() {
}
/**
* 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 DetailedStatusMessage(DetailedStatusMessage source) {
if (source.Code != null) {
this.Code = new String(source.Code);
}
if (source.Zone != null) {
this.Zone = new String(source.Zone);
}
if (source.InstanceId != null) {
this.InstanceId = new String(source.InstanceId);
}
if (source.InstanceChargeType != null) {
this.InstanceChargeType = new String(source.InstanceChargeType);
}
if (source.SubnetId != null) {
this.SubnetId = new String(source.SubnetId);
}
if (source.Message != null) {
this.Message = new String(source.Message);
}
if (source.InstanceType != null) {
this.InstanceType = new String(source.InstanceType);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Code", this.Code);
this.setParamSimple(map, prefix + "Zone", this.Zone);
this.setParamSimple(map, prefix + "InstanceId", this.InstanceId);
this.setParamSimple(map, prefix + "InstanceChargeType", this.InstanceChargeType);
this.setParamSimple(map, prefix + "SubnetId", this.SubnetId);
this.setParamSimple(map, prefix + "Message", this.Message);
this.setParamSimple(map, prefix + "InstanceType", this.InstanceType);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy