com.tencentcloudapi.dlc.v20210125.models.DescribeTasksRequest 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.dlc.v20210125.models;
import com.tencentcloudapi.common.AbstractModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class DescribeTasksRequest extends AbstractModel{
/**
* Number of returned results. Default value: 10. Maximum value: 100.
*/
@SerializedName("Limit")
@Expose
private Long Limit;
/**
* Offset. Default value: 0.
*/
@SerializedName("Offset")
@Expose
private Long Offset;
/**
* Filter. The following filters are supported, and the `Name` input parameter must be one of them. Up to 50 `task-id` values can be filtered, while up to 5 other parameters can be filtered in total.
task-id - String - (filter by task ID). `task-id` format: e386471f-139a-4e59-877f-50ece8135b99.
task-state - String - (filter exactly by task status). Valid values: `0` (initial), `1` (running), `2` (succeeded), `-1` (failed).
task-sql-keyword - String - (filter fuzzily by SQL statement keyword, such as `DROP TABLE`).
task-operator- string (filter by sub-UIN)
task-kind - string (filter by task type)
*/
@SerializedName("Filters")
@Expose
private Filter [] Filters;
/**
* Sorting field. Valid values: `create-time` (default value), `update-time`.
*/
@SerializedName("SortBy")
@Expose
private String SortBy;
/**
* Sorting order. Valid values: `asc` (ascending order), `desc` (descending order). Default value: `asc`.
*/
@SerializedName("Sorting")
@Expose
private String Sorting;
/**
* Start time in the format of `yyyy-mm-dd HH:MM:SS`, which is the current time seven days ago by default.
*/
@SerializedName("StartTime")
@Expose
private String StartTime;
/**
* End time in the format of `yyyy-mm-dd HH:MM:SS`, which is the current time by default. The time span is (0, 30] days. Data in the last 45 days can be queried.
*/
@SerializedName("EndTime")
@Expose
private String EndTime;
/**
* Filter by compute resource name
*/
@SerializedName("DataEngineName")
@Expose
private String DataEngineName;
/**
* Get Number of returned results. Default value: 10. Maximum value: 100.
* @return Limit Number of returned results. Default value: 10. Maximum value: 100.
*/
public Long getLimit() {
return this.Limit;
}
/**
* Set Number of returned results. Default value: 10. Maximum value: 100.
* @param Limit Number of returned results. Default value: 10. Maximum value: 100.
*/
public void setLimit(Long Limit) {
this.Limit = Limit;
}
/**
* Get Offset. Default value: 0.
* @return Offset Offset. Default value: 0.
*/
public Long getOffset() {
return this.Offset;
}
/**
* Set Offset. Default value: 0.
* @param Offset Offset. Default value: 0.
*/
public void setOffset(Long Offset) {
this.Offset = Offset;
}
/**
* Get Filter. The following filters are supported, and the `Name` input parameter must be one of them. Up to 50 `task-id` values can be filtered, while up to 5 other parameters can be filtered in total.
task-id - String - (filter by task ID). `task-id` format: e386471f-139a-4e59-877f-50ece8135b99.
task-state - String - (filter exactly by task status). Valid values: `0` (initial), `1` (running), `2` (succeeded), `-1` (failed).
task-sql-keyword - String - (filter fuzzily by SQL statement keyword, such as `DROP TABLE`).
task-operator- string (filter by sub-UIN)
task-kind - string (filter by task type)
* @return Filters Filter. The following filters are supported, and the `Name` input parameter must be one of them. Up to 50 `task-id` values can be filtered, while up to 5 other parameters can be filtered in total.
task-id - String - (filter by task ID). `task-id` format: e386471f-139a-4e59-877f-50ece8135b99.
task-state - String - (filter exactly by task status). Valid values: `0` (initial), `1` (running), `2` (succeeded), `-1` (failed).
task-sql-keyword - String - (filter fuzzily by SQL statement keyword, such as `DROP TABLE`).
task-operator- string (filter by sub-UIN)
task-kind - string (filter by task type)
*/
public Filter [] getFilters() {
return this.Filters;
}
/**
* Set Filter. The following filters are supported, and the `Name` input parameter must be one of them. Up to 50 `task-id` values can be filtered, while up to 5 other parameters can be filtered in total.
task-id - String - (filter by task ID). `task-id` format: e386471f-139a-4e59-877f-50ece8135b99.
task-state - String - (filter exactly by task status). Valid values: `0` (initial), `1` (running), `2` (succeeded), `-1` (failed).
task-sql-keyword - String - (filter fuzzily by SQL statement keyword, such as `DROP TABLE`).
task-operator- string (filter by sub-UIN)
task-kind - string (filter by task type)
* @param Filters Filter. The following filters are supported, and the `Name` input parameter must be one of them. Up to 50 `task-id` values can be filtered, while up to 5 other parameters can be filtered in total.
task-id - String - (filter by task ID). `task-id` format: e386471f-139a-4e59-877f-50ece8135b99.
task-state - String - (filter exactly by task status). Valid values: `0` (initial), `1` (running), `2` (succeeded), `-1` (failed).
task-sql-keyword - String - (filter fuzzily by SQL statement keyword, such as `DROP TABLE`).
task-operator- string (filter by sub-UIN)
task-kind - string (filter by task type)
*/
public void setFilters(Filter [] Filters) {
this.Filters = Filters;
}
/**
* Get Sorting field. Valid values: `create-time` (default value), `update-time`.
* @return SortBy Sorting field. Valid values: `create-time` (default value), `update-time`.
*/
public String getSortBy() {
return this.SortBy;
}
/**
* Set Sorting field. Valid values: `create-time` (default value), `update-time`.
* @param SortBy Sorting field. Valid values: `create-time` (default value), `update-time`.
*/
public void setSortBy(String SortBy) {
this.SortBy = SortBy;
}
/**
* Get Sorting order. Valid values: `asc` (ascending order), `desc` (descending order). Default value: `asc`.
* @return Sorting Sorting order. Valid values: `asc` (ascending order), `desc` (descending order). Default value: `asc`.
*/
public String getSorting() {
return this.Sorting;
}
/**
* Set Sorting order. Valid values: `asc` (ascending order), `desc` (descending order). Default value: `asc`.
* @param Sorting Sorting order. Valid values: `asc` (ascending order), `desc` (descending order). Default value: `asc`.
*/
public void setSorting(String Sorting) {
this.Sorting = Sorting;
}
/**
* Get Start time in the format of `yyyy-mm-dd HH:MM:SS`, which is the current time seven days ago by default.
* @return StartTime Start time in the format of `yyyy-mm-dd HH:MM:SS`, which is the current time seven days ago by default.
*/
public String getStartTime() {
return this.StartTime;
}
/**
* Set Start time in the format of `yyyy-mm-dd HH:MM:SS`, which is the current time seven days ago by default.
* @param StartTime Start time in the format of `yyyy-mm-dd HH:MM:SS`, which is the current time seven days ago by default.
*/
public void setStartTime(String StartTime) {
this.StartTime = StartTime;
}
/**
* Get End time in the format of `yyyy-mm-dd HH:MM:SS`, which is the current time by default. The time span is (0, 30] days. Data in the last 45 days can be queried.
* @return EndTime End time in the format of `yyyy-mm-dd HH:MM:SS`, which is the current time by default. The time span is (0, 30] days. Data in the last 45 days can be queried.
*/
public String getEndTime() {
return this.EndTime;
}
/**
* Set End time in the format of `yyyy-mm-dd HH:MM:SS`, which is the current time by default. The time span is (0, 30] days. Data in the last 45 days can be queried.
* @param EndTime End time in the format of `yyyy-mm-dd HH:MM:SS`, which is the current time by default. The time span is (0, 30] days. Data in the last 45 days can be queried.
*/
public void setEndTime(String EndTime) {
this.EndTime = EndTime;
}
/**
* Get Filter by compute resource name
* @return DataEngineName Filter by compute resource name
*/
public String getDataEngineName() {
return this.DataEngineName;
}
/**
* Set Filter by compute resource name
* @param DataEngineName Filter by compute resource name
*/
public void setDataEngineName(String DataEngineName) {
this.DataEngineName = DataEngineName;
}
public DescribeTasksRequest() {
}
/**
* 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 DescribeTasksRequest(DescribeTasksRequest source) {
if (source.Limit != null) {
this.Limit = new Long(source.Limit);
}
if (source.Offset != null) {
this.Offset = new Long(source.Offset);
}
if (source.Filters != null) {
this.Filters = new Filter[source.Filters.length];
for (int i = 0; i < source.Filters.length; i++) {
this.Filters[i] = new Filter(source.Filters[i]);
}
}
if (source.SortBy != null) {
this.SortBy = new String(source.SortBy);
}
if (source.Sorting != null) {
this.Sorting = new String(source.Sorting);
}
if (source.StartTime != null) {
this.StartTime = new String(source.StartTime);
}
if (source.EndTime != null) {
this.EndTime = new String(source.EndTime);
}
if (source.DataEngineName != null) {
this.DataEngineName = new String(source.DataEngineName);
}
}
/**
* 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.setParamArrayObj(map, prefix + "Filters.", this.Filters);
this.setParamSimple(map, prefix + "SortBy", this.SortBy);
this.setParamSimple(map, prefix + "Sorting", this.Sorting);
this.setParamSimple(map, prefix + "StartTime", this.StartTime);
this.setParamSimple(map, prefix + "EndTime", this.EndTime);
this.setParamSimple(map, prefix + "DataEngineName", this.DataEngineName);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy