
com.tencentcloudapi.tcb.v20180608.models.DescribeCloudBaseRunPodListRequest 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.tcb.v20180608.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class DescribeCloudBaseRunPodListRequest extends AbstractModel{
/**
* 环境id
*/
@SerializedName("EnvId")
@Expose
private String EnvId;
/**
* 服务名
*/
@SerializedName("ServerName")
@Expose
private String ServerName;
/**
* 版本名
*/
@SerializedName("VersionName")
@Expose
private String VersionName;
/**
* 分页限制
*/
@SerializedName("Limit")
@Expose
private Long Limit;
/**
* 分页偏移量
*/
@SerializedName("Offset")
@Expose
private Long Offset;
/**
* 容器状态
*/
@SerializedName("Status")
@Expose
private String Status;
/**
* 容器名
*/
@SerializedName("PodName")
@Expose
private String PodName;
/**
* Get 环境id
* @return EnvId 环境id
*/
public String getEnvId() {
return this.EnvId;
}
/**
* Set 环境id
* @param EnvId 环境id
*/
public void setEnvId(String EnvId) {
this.EnvId = EnvId;
}
/**
* Get 服务名
* @return ServerName 服务名
*/
public String getServerName() {
return this.ServerName;
}
/**
* Set 服务名
* @param ServerName 服务名
*/
public void setServerName(String ServerName) {
this.ServerName = ServerName;
}
/**
* Get 版本名
* @return VersionName 版本名
*/
public String getVersionName() {
return this.VersionName;
}
/**
* Set 版本名
* @param VersionName 版本名
*/
public void setVersionName(String VersionName) {
this.VersionName = VersionName;
}
/**
* Get 分页限制
* @return Limit 分页限制
*/
public Long getLimit() {
return this.Limit;
}
/**
* Set 分页限制
* @param Limit 分页限制
*/
public void setLimit(Long Limit) {
this.Limit = Limit;
}
/**
* Get 分页偏移量
* @return Offset 分页偏移量
*/
public Long getOffset() {
return this.Offset;
}
/**
* Set 分页偏移量
* @param Offset 分页偏移量
*/
public void setOffset(Long Offset) {
this.Offset = Offset;
}
/**
* Get 容器状态
* @return Status 容器状态
*/
public String getStatus() {
return this.Status;
}
/**
* Set 容器状态
* @param Status 容器状态
*/
public void setStatus(String Status) {
this.Status = Status;
}
/**
* Get 容器名
* @return PodName 容器名
*/
public String getPodName() {
return this.PodName;
}
/**
* Set 容器名
* @param PodName 容器名
*/
public void setPodName(String PodName) {
this.PodName = PodName;
}
public DescribeCloudBaseRunPodListRequest() {
}
/**
* 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 DescribeCloudBaseRunPodListRequest(DescribeCloudBaseRunPodListRequest source) {
if (source.EnvId != null) {
this.EnvId = new String(source.EnvId);
}
if (source.ServerName != null) {
this.ServerName = new String(source.ServerName);
}
if (source.VersionName != null) {
this.VersionName = new String(source.VersionName);
}
if (source.Limit != null) {
this.Limit = new Long(source.Limit);
}
if (source.Offset != null) {
this.Offset = new Long(source.Offset);
}
if (source.Status != null) {
this.Status = new String(source.Status);
}
if (source.PodName != null) {
this.PodName = new String(source.PodName);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "EnvId", this.EnvId);
this.setParamSimple(map, prefix + "ServerName", this.ServerName);
this.setParamSimple(map, prefix + "VersionName", this.VersionName);
this.setParamSimple(map, prefix + "Limit", this.Limit);
this.setParamSimple(map, prefix + "Offset", this.Offset);
this.setParamSimple(map, prefix + "Status", this.Status);
this.setParamSimple(map, prefix + "PodName", this.PodName);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy