
com.tencentcloudapi.bm.v20180423.models.DescribeCustomImagesRequest 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.bm.v20180423.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class DescribeCustomImagesRequest extends AbstractModel{
/**
* 偏移量
*/
@SerializedName("Offset")
@Expose
private Long Offset;
/**
* 数量限制
*/
@SerializedName("Limit")
@Expose
private Long Limit;
/**
* 排序字段,仅支持CreateTime
*/
@SerializedName("OrderField")
@Expose
private String OrderField;
/**
* 排序方式 0:递增(默认) 1:递减
*/
@SerializedName("Order")
@Expose
private Long Order;
/**
* 按ImageId查找指定镜像信息,ImageId字段存在时其他字段失效
*/
@SerializedName("ImageId")
@Expose
private String ImageId;
/**
* 模糊查询过滤,可以查询镜像ID或镜像名
*/
@SerializedName("SearchKey")
@Expose
private String SearchKey;
/**
*
镜像状态过滤列表,有效取值为:
- 1:制作中
- 2:制作失败
- 3:正常
- 4:删除中
*/
@SerializedName("ImageStatus")
@Expose
private Long [] ImageStatus;
/**
* Get 偏移量
* @return Offset 偏移量
*/
public Long getOffset() {
return this.Offset;
}
/**
* Set 偏移量
* @param Offset 偏移量
*/
public void setOffset(Long Offset) {
this.Offset = Offset;
}
/**
* Get 数量限制
* @return Limit 数量限制
*/
public Long getLimit() {
return this.Limit;
}
/**
* Set 数量限制
* @param Limit 数量限制
*/
public void setLimit(Long Limit) {
this.Limit = Limit;
}
/**
* Get 排序字段,仅支持CreateTime
* @return OrderField 排序字段,仅支持CreateTime
*/
public String getOrderField() {
return this.OrderField;
}
/**
* Set 排序字段,仅支持CreateTime
* @param OrderField 排序字段,仅支持CreateTime
*/
public void setOrderField(String OrderField) {
this.OrderField = OrderField;
}
/**
* Get 排序方式 0:递增(默认) 1:递减
* @return Order 排序方式 0:递增(默认) 1:递减
*/
public Long getOrder() {
return this.Order;
}
/**
* Set 排序方式 0:递增(默认) 1:递减
* @param Order 排序方式 0:递增(默认) 1:递减
*/
public void setOrder(Long Order) {
this.Order = Order;
}
/**
* Get 按ImageId查找指定镜像信息,ImageId字段存在时其他字段失效
* @return ImageId 按ImageId查找指定镜像信息,ImageId字段存在时其他字段失效
*/
public String getImageId() {
return this.ImageId;
}
/**
* Set 按ImageId查找指定镜像信息,ImageId字段存在时其他字段失效
* @param ImageId 按ImageId查找指定镜像信息,ImageId字段存在时其他字段失效
*/
public void setImageId(String ImageId) {
this.ImageId = ImageId;
}
/**
* Get 模糊查询过滤,可以查询镜像ID或镜像名
* @return SearchKey 模糊查询过滤,可以查询镜像ID或镜像名
*/
public String getSearchKey() {
return this.SearchKey;
}
/**
* Set 模糊查询过滤,可以查询镜像ID或镜像名
* @param SearchKey 模糊查询过滤,可以查询镜像ID或镜像名
*/
public void setSearchKey(String SearchKey) {
this.SearchKey = SearchKey;
}
/**
* Get
镜像状态过滤列表,有效取值为:
- 1:制作中
- 2:制作失败
- 3:正常
- 4:删除中
* @return ImageStatus
镜像状态过滤列表,有效取值为:
- 1:制作中
- 2:制作失败
- 3:正常
- 4:删除中
*/
public Long [] getImageStatus() {
return this.ImageStatus;
}
/**
* Set
镜像状态过滤列表,有效取值为:
- 1:制作中
- 2:制作失败
- 3:正常
- 4:删除中
* @param ImageStatus
镜像状态过滤列表,有效取值为:
- 1:制作中
- 2:制作失败
- 3:正常
- 4:删除中
*/
public void setImageStatus(Long [] ImageStatus) {
this.ImageStatus = ImageStatus;
}
public DescribeCustomImagesRequest() {
}
/**
* 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 DescribeCustomImagesRequest(DescribeCustomImagesRequest source) {
if (source.Offset != null) {
this.Offset = new Long(source.Offset);
}
if (source.Limit != null) {
this.Limit = new Long(source.Limit);
}
if (source.OrderField != null) {
this.OrderField = new String(source.OrderField);
}
if (source.Order != null) {
this.Order = new Long(source.Order);
}
if (source.ImageId != null) {
this.ImageId = new String(source.ImageId);
}
if (source.SearchKey != null) {
this.SearchKey = new String(source.SearchKey);
}
if (source.ImageStatus != null) {
this.ImageStatus = new Long[source.ImageStatus.length];
for (int i = 0; i < source.ImageStatus.length; i++) {
this.ImageStatus[i] = new Long(source.ImageStatus[i]);
}
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Offset", this.Offset);
this.setParamSimple(map, prefix + "Limit", this.Limit);
this.setParamSimple(map, prefix + "OrderField", this.OrderField);
this.setParamSimple(map, prefix + "Order", this.Order);
this.setParamSimple(map, prefix + "ImageId", this.ImageId);
this.setParamSimple(map, prefix + "SearchKey", this.SearchKey);
this.setParamArraySimple(map, prefix + "ImageStatus.", this.ImageStatus);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy