All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tencentcloudapi.emr.v20190103.models.DescribeInstancesRequest Maven / Gradle / Ivy

There is a newer version: 3.1.1105
Show newest version
/*
 * 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.emr.v20190103.models;

import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;

public class DescribeInstancesRequest extends AbstractModel{

    /**
    * 集群筛选策略。取值范围:
  • clusterList:表示查询除了已销毁集群之外的集群列表。
  • monitorManage:表示查询除了已销毁、创建中以及创建失败的集群之外的集群列表。
  • cloudHardwareManage/componentManage:目前这两个取值为预留取值,暂时和monitorManage表示同样的含义。
  • */ @SerializedName("DisplayStrategy") @Expose private String DisplayStrategy; /** * 按照一个或者多个实例ID查询。实例ID形如: emr-xxxxxxxx 。(此参数的具体格式可参考API[简介](https://cloud.tencent.com/document/api/213/15688)的 Ids.N 一节)。如果不填写实例ID,返回该APPID下所有实例列表。 */ @SerializedName("InstanceIds") @Expose private String [] InstanceIds; /** * 页编号,默认值为0,表示第一页。 */ @SerializedName("Offset") @Expose private Long Offset; /** * 每页返回数量,默认值为10,最大值为100。 */ @SerializedName("Limit") @Expose private Long Limit; /** * 建议必填-1,表示拉取所有项目下的集群。 不填默认值为0,表示拉取默认项目下的集群。 实例所属项目ID。该参数可以通过调用 [DescribeProjects](https://cloud.tencent.com/document/product/651/78725) 的返回值中的 projectId 字段来获取。 */ @SerializedName("ProjectId") @Expose private Long ProjectId; /** * 排序字段。取值范围:
  • clusterId:表示按照实例ID排序。
  • addTime:表示按照实例创建时间排序。
  • status:表示按照实例的状态码排序。
  • */ @SerializedName("OrderField") @Expose private String OrderField; /** * 按照OrderField升序或者降序进行排序。取值范围:
  • 0:表示降序。
  • 1:表示升序。
  • 默认值为0。 */ @SerializedName("Asc") @Expose private Long Asc; /** * Get 集群筛选策略。取值范围:
  • clusterList:表示查询除了已销毁集群之外的集群列表。
  • monitorManage:表示查询除了已销毁、创建中以及创建失败的集群之外的集群列表。
  • cloudHardwareManage/componentManage:目前这两个取值为预留取值,暂时和monitorManage表示同样的含义。
  • * @return DisplayStrategy 集群筛选策略。取值范围:
  • clusterList:表示查询除了已销毁集群之外的集群列表。
  • monitorManage:表示查询除了已销毁、创建中以及创建失败的集群之外的集群列表。
  • cloudHardwareManage/componentManage:目前这两个取值为预留取值,暂时和monitorManage表示同样的含义。
  • */ public String getDisplayStrategy() { return this.DisplayStrategy; } /** * Set 集群筛选策略。取值范围:
  • clusterList:表示查询除了已销毁集群之外的集群列表。
  • monitorManage:表示查询除了已销毁、创建中以及创建失败的集群之外的集群列表。
  • cloudHardwareManage/componentManage:目前这两个取值为预留取值,暂时和monitorManage表示同样的含义。
  • * @param DisplayStrategy 集群筛选策略。取值范围:
  • clusterList:表示查询除了已销毁集群之外的集群列表。
  • monitorManage:表示查询除了已销毁、创建中以及创建失败的集群之外的集群列表。
  • cloudHardwareManage/componentManage:目前这两个取值为预留取值,暂时和monitorManage表示同样的含义。
  • */ public void setDisplayStrategy(String DisplayStrategy) { this.DisplayStrategy = DisplayStrategy; } /** * Get 按照一个或者多个实例ID查询。实例ID形如: emr-xxxxxxxx 。(此参数的具体格式可参考API[简介](https://cloud.tencent.com/document/api/213/15688)的 Ids.N 一节)。如果不填写实例ID,返回该APPID下所有实例列表。 * @return InstanceIds 按照一个或者多个实例ID查询。实例ID形如: emr-xxxxxxxx 。(此参数的具体格式可参考API[简介](https://cloud.tencent.com/document/api/213/15688)的 Ids.N 一节)。如果不填写实例ID,返回该APPID下所有实例列表。 */ public String [] getInstanceIds() { return this.InstanceIds; } /** * Set 按照一个或者多个实例ID查询。实例ID形如: emr-xxxxxxxx 。(此参数的具体格式可参考API[简介](https://cloud.tencent.com/document/api/213/15688)的 Ids.N 一节)。如果不填写实例ID,返回该APPID下所有实例列表。 * @param InstanceIds 按照一个或者多个实例ID查询。实例ID形如: emr-xxxxxxxx 。(此参数的具体格式可参考API[简介](https://cloud.tencent.com/document/api/213/15688)的 Ids.N 一节)。如果不填写实例ID,返回该APPID下所有实例列表。 */ public void setInstanceIds(String [] InstanceIds) { this.InstanceIds = InstanceIds; } /** * Get 页编号,默认值为0,表示第一页。 * @return Offset 页编号,默认值为0,表示第一页。 */ public Long getOffset() { return this.Offset; } /** * Set 页编号,默认值为0,表示第一页。 * @param Offset 页编号,默认值为0,表示第一页。 */ public void setOffset(Long Offset) { this.Offset = Offset; } /** * Get 每页返回数量,默认值为10,最大值为100。 * @return Limit 每页返回数量,默认值为10,最大值为100。 */ public Long getLimit() { return this.Limit; } /** * Set 每页返回数量,默认值为10,最大值为100。 * @param Limit 每页返回数量,默认值为10,最大值为100。 */ public void setLimit(Long Limit) { this.Limit = Limit; } /** * Get 建议必填-1,表示拉取所有项目下的集群。 不填默认值为0,表示拉取默认项目下的集群。 实例所属项目ID。该参数可以通过调用 [DescribeProjects](https://cloud.tencent.com/document/product/651/78725) 的返回值中的 projectId 字段来获取。 * @return ProjectId 建议必填-1,表示拉取所有项目下的集群。 不填默认值为0,表示拉取默认项目下的集群。 实例所属项目ID。该参数可以通过调用 [DescribeProjects](https://cloud.tencent.com/document/product/651/78725) 的返回值中的 projectId 字段来获取。 */ public Long getProjectId() { return this.ProjectId; } /** * Set 建议必填-1,表示拉取所有项目下的集群。 不填默认值为0,表示拉取默认项目下的集群。 实例所属项目ID。该参数可以通过调用 [DescribeProjects](https://cloud.tencent.com/document/product/651/78725) 的返回值中的 projectId 字段来获取。 * @param ProjectId 建议必填-1,表示拉取所有项目下的集群。 不填默认值为0,表示拉取默认项目下的集群。 实例所属项目ID。该参数可以通过调用 [DescribeProjects](https://cloud.tencent.com/document/product/651/78725) 的返回值中的 projectId 字段来获取。 */ public void setProjectId(Long ProjectId) { this.ProjectId = ProjectId; } /** * Get 排序字段。取值范围:
  • clusterId:表示按照实例ID排序。
  • addTime:表示按照实例创建时间排序。
  • status:表示按照实例的状态码排序。
  • * @return OrderField 排序字段。取值范围:
  • clusterId:表示按照实例ID排序。
  • addTime:表示按照实例创建时间排序。
  • status:表示按照实例的状态码排序。
  • */ public String getOrderField() { return this.OrderField; } /** * Set 排序字段。取值范围:
  • clusterId:表示按照实例ID排序。
  • addTime:表示按照实例创建时间排序。
  • status:表示按照实例的状态码排序。
  • * @param OrderField 排序字段。取值范围:
  • clusterId:表示按照实例ID排序。
  • addTime:表示按照实例创建时间排序。
  • status:表示按照实例的状态码排序。
  • */ public void setOrderField(String OrderField) { this.OrderField = OrderField; } /** * Get 按照OrderField升序或者降序进行排序。取值范围:
  • 0:表示降序。
  • 1:表示升序。
  • 默认值为0。 * @return Asc 按照OrderField升序或者降序进行排序。取值范围:
  • 0:表示降序。
  • 1:表示升序。
  • 默认值为0。 */ public Long getAsc() { return this.Asc; } /** * Set 按照OrderField升序或者降序进行排序。取值范围:
  • 0:表示降序。
  • 1:表示升序。
  • 默认值为0。 * @param Asc 按照OrderField升序或者降序进行排序。取值范围:
  • 0:表示降序。
  • 1:表示升序。
  • 默认值为0。 */ public void setAsc(Long Asc) { this.Asc = Asc; } 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.DisplayStrategy != null) { this.DisplayStrategy = new String(source.DisplayStrategy); } 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]); } } if (source.Offset != null) { this.Offset = new Long(source.Offset); } if (source.Limit != null) { this.Limit = new Long(source.Limit); } if (source.ProjectId != null) { this.ProjectId = new Long(source.ProjectId); } if (source.OrderField != null) { this.OrderField = new String(source.OrderField); } if (source.Asc != null) { this.Asc = new Long(source.Asc); } } /** * Internal implementation, normal users should not use it. */ public void toMap(HashMap map, String prefix) { this.setParamSimple(map, prefix + "DisplayStrategy", this.DisplayStrategy); this.setParamArraySimple(map, prefix + "InstanceIds.", this.InstanceIds); this.setParamSimple(map, prefix + "Offset", this.Offset); this.setParamSimple(map, prefix + "Limit", this.Limit); this.setParamSimple(map, prefix + "ProjectId", this.ProjectId); this.setParamSimple(map, prefix + "OrderField", this.OrderField); this.setParamSimple(map, prefix + "Asc", this.Asc); } }




    © 2015 - 2024 Weber Informatics LLC | Privacy Policy