![JAR search and dependency download from the Maven repository](/logo.png)
com.tencentcloudapi.cynosdb.v20190107.models.DescribeInstancesRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Tencent Cloud API SDK for Java
/*
* 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.cynosdb.v20190107.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 DescribeInstancesRequest extends AbstractModel {
/**
* Number of returned results. Default value: 20. Maximum value: 100
*/
@SerializedName("Limit")
@Expose
private Long Limit;
/**
* Record offset. Default value: 0
*/
@SerializedName("Offset")
@Expose
private Long Offset;
/**
* Sort by field. Valid values:
CREATETIME: creation time
PERIODENDTIME: expiration time
*/
@SerializedName("OrderBy")
@Expose
private String OrderBy;
/**
* Sorting order. Valid values:
ASC: ascending
DESC: descending
*/
@SerializedName("OrderByType")
@Expose
private String OrderByType;
/**
* Filter. If more than one filter exists, the logical relationship between these filters is `AND`.
*/
@SerializedName("Filters")
@Expose
private QueryFilter [] Filters;
/**
* Engine type. Currently, `MYSQL` is supported.
*/
@SerializedName("DbType")
@Expose
private String DbType;
/**
* Instance status. Valid values:
creating
running
isolating
isolated
activating: Removing the instance from isolation
offlining: Eliminating the instance
offlined: Instance eliminated
*/
@SerializedName("Status")
@Expose
private String Status;
/**
* Instance ID list
*/
@SerializedName("InstanceIds")
@Expose
private String [] InstanceIds;
/**
* Get Number of returned results. Default value: 20. Maximum value: 100
* @return Limit Number of returned results. Default value: 20. Maximum value: 100
*/
public Long getLimit() {
return this.Limit;
}
/**
* Set Number of returned results. Default value: 20. Maximum value: 100
* @param Limit Number of returned results. Default value: 20. Maximum value: 100
*/
public void setLimit(Long Limit) {
this.Limit = Limit;
}
/**
* Get Record offset. Default value: 0
* @return Offset Record offset. Default value: 0
*/
public Long getOffset() {
return this.Offset;
}
/**
* Set Record offset. Default value: 0
* @param Offset Record offset. Default value: 0
*/
public void setOffset(Long Offset) {
this.Offset = Offset;
}
/**
* Get Sort by field. Valid values:
CREATETIME: creation time
PERIODENDTIME: expiration time
* @return OrderBy Sort by field. Valid values:
CREATETIME: creation time
PERIODENDTIME: expiration time
*/
public String getOrderBy() {
return this.OrderBy;
}
/**
* Set Sort by field. Valid values:
CREATETIME: creation time
PERIODENDTIME: expiration time
* @param OrderBy Sort by field. Valid values:
CREATETIME: creation time
PERIODENDTIME: expiration time
*/
public void setOrderBy(String OrderBy) {
this.OrderBy = OrderBy;
}
/**
* Get Sorting order. Valid values:
ASC: ascending
DESC: descending
* @return OrderByType Sorting order. Valid values:
ASC: ascending
DESC: descending
*/
public String getOrderByType() {
return this.OrderByType;
}
/**
* Set Sorting order. Valid values:
ASC: ascending
DESC: descending
* @param OrderByType Sorting order. Valid values:
ASC: ascending
DESC: descending
*/
public void setOrderByType(String OrderByType) {
this.OrderByType = OrderByType;
}
/**
* Get Filter. If more than one filter exists, the logical relationship between these filters is `AND`.
* @return Filters Filter. If more than one filter exists, the logical relationship between these filters is `AND`.
*/
public QueryFilter [] getFilters() {
return this.Filters;
}
/**
* Set Filter. If more than one filter exists, the logical relationship between these filters is `AND`.
* @param Filters Filter. If more than one filter exists, the logical relationship between these filters is `AND`.
*/
public void setFilters(QueryFilter [] Filters) {
this.Filters = Filters;
}
/**
* Get Engine type. Currently, `MYSQL` is supported.
* @return DbType Engine type. Currently, `MYSQL` is supported.
*/
public String getDbType() {
return this.DbType;
}
/**
* Set Engine type. Currently, `MYSQL` is supported.
* @param DbType Engine type. Currently, `MYSQL` is supported.
*/
public void setDbType(String DbType) {
this.DbType = DbType;
}
/**
* Get Instance status. Valid values:
creating
running
isolating
isolated
activating: Removing the instance from isolation
offlining: Eliminating the instance
offlined: Instance eliminated
* @return Status Instance status. Valid values:
creating
running
isolating
isolated
activating: Removing the instance from isolation
offlining: Eliminating the instance
offlined: Instance eliminated
*/
public String getStatus() {
return this.Status;
}
/**
* Set Instance status. Valid values:
creating
running
isolating
isolated
activating: Removing the instance from isolation
offlining: Eliminating the instance
offlined: Instance eliminated
* @param Status Instance status. Valid values:
creating
running
isolating
isolated
activating: Removing the instance from isolation
offlining: Eliminating the instance
offlined: Instance eliminated
*/
public void setStatus(String Status) {
this.Status = Status;
}
/**
* Get Instance ID list
* @return InstanceIds Instance ID list
*/
public String [] getInstanceIds() {
return this.InstanceIds;
}
/**
* Set Instance ID list
* @param InstanceIds Instance ID list
*/
public void setInstanceIds(String [] InstanceIds) {
this.InstanceIds = InstanceIds;
}
public DescribeInstancesRequest() {
}
/**
* 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 DescribeInstancesRequest(DescribeInstancesRequest source) {
if (source.Limit != null) {
this.Limit = new Long(source.Limit);
}
if (source.Offset != null) {
this.Offset = new Long(source.Offset);
}
if (source.OrderBy != null) {
this.OrderBy = new String(source.OrderBy);
}
if (source.OrderByType != null) {
this.OrderByType = new String(source.OrderByType);
}
if (source.Filters != null) {
this.Filters = new QueryFilter[source.Filters.length];
for (int i = 0; i < source.Filters.length; i++) {
this.Filters[i] = new QueryFilter(source.Filters[i]);
}
}
if (source.DbType != null) {
this.DbType = new String(source.DbType);
}
if (source.Status != null) {
this.Status = new String(source.Status);
}
if (source.InstanceIds != null) {
this.InstanceIds = new String[source.InstanceIds.length];
for (int i = 0; i < source.InstanceIds.length; i++) {
this.InstanceIds[i] = new String(source.InstanceIds[i]);
}
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "Limit", this.Limit);
this.setParamSimple(map, prefix + "Offset", this.Offset);
this.setParamSimple(map, prefix + "OrderBy", this.OrderBy);
this.setParamSimple(map, prefix + "OrderByType", this.OrderByType);
this.setParamArrayObj(map, prefix + "Filters.", this.Filters);
this.setParamSimple(map, prefix + "DbType", this.DbType);
this.setParamSimple(map, prefix + "Status", this.Status);
this.setParamArraySimple(map, prefix + "InstanceIds.", this.InstanceIds);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy