![JAR search and dependency download from the Maven repository](/logo.png)
com.tencentcloudapi.rum.v20210622.models.DescribeRumLogListRequest 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.rum.v20210622.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 DescribeRumLogListRequest extends AbstractModel {
/**
* Sorting order (required). Valid values: `desc`, `asc`.
*/
@SerializedName("OrderBy")
@Expose
private String OrderBy;
/**
* Start time in milliseconds. It is in timestamp format and is required.
*/
@SerializedName("StartTime")
@Expose
private String StartTime;
/**
* The number of raw logs returned for a single query. This parameter is required. Maximum value: `100`.
*/
@SerializedName("Limit")
@Expose
private Long Limit;
/**
* Page number
*/
@SerializedName("Page")
@Expose
private Long Page;
/**
* Query statement, which is required and can contain up to 4,096 characters.
*/
@SerializedName("Query")
@Expose
private String Query;
/**
* End time in milliseconds. It is in timestamp format and is required.
*/
@SerializedName("EndTime")
@Expose
private String EndTime;
/**
* Project ID (required)
*/
@SerializedName("ID")
@Expose
private Long ID;
/**
* Get Sorting order (required). Valid values: `desc`, `asc`.
* @return OrderBy Sorting order (required). Valid values: `desc`, `asc`.
*/
public String getOrderBy() {
return this.OrderBy;
}
/**
* Set Sorting order (required). Valid values: `desc`, `asc`.
* @param OrderBy Sorting order (required). Valid values: `desc`, `asc`.
*/
public void setOrderBy(String OrderBy) {
this.OrderBy = OrderBy;
}
/**
* Get Start time in milliseconds. It is in timestamp format and is required.
* @return StartTime Start time in milliseconds. It is in timestamp format and is required.
*/
public String getStartTime() {
return this.StartTime;
}
/**
* Set Start time in milliseconds. It is in timestamp format and is required.
* @param StartTime Start time in milliseconds. It is in timestamp format and is required.
*/
public void setStartTime(String StartTime) {
this.StartTime = StartTime;
}
/**
* Get The number of raw logs returned for a single query. This parameter is required. Maximum value: `100`.
* @return Limit The number of raw logs returned for a single query. This parameter is required. Maximum value: `100`.
*/
public Long getLimit() {
return this.Limit;
}
/**
* Set The number of raw logs returned for a single query. This parameter is required. Maximum value: `100`.
* @param Limit The number of raw logs returned for a single query. This parameter is required. Maximum value: `100`.
*/
public void setLimit(Long Limit) {
this.Limit = Limit;
}
/**
* Get Page number
* @return Page Page number
*/
public Long getPage() {
return this.Page;
}
/**
* Set Page number
* @param Page Page number
*/
public void setPage(Long Page) {
this.Page = Page;
}
/**
* Get Query statement, which is required and can contain up to 4,096 characters.
* @return Query Query statement, which is required and can contain up to 4,096 characters.
*/
public String getQuery() {
return this.Query;
}
/**
* Set Query statement, which is required and can contain up to 4,096 characters.
* @param Query Query statement, which is required and can contain up to 4,096 characters.
*/
public void setQuery(String Query) {
this.Query = Query;
}
/**
* Get End time in milliseconds. It is in timestamp format and is required.
* @return EndTime End time in milliseconds. It is in timestamp format and is required.
*/
public String getEndTime() {
return this.EndTime;
}
/**
* Set End time in milliseconds. It is in timestamp format and is required.
* @param EndTime End time in milliseconds. It is in timestamp format and is required.
*/
public void setEndTime(String EndTime) {
this.EndTime = EndTime;
}
/**
* Get Project ID (required)
* @return ID Project ID (required)
*/
public Long getID() {
return this.ID;
}
/**
* Set Project ID (required)
* @param ID Project ID (required)
*/
public void setID(Long ID) {
this.ID = ID;
}
public DescribeRumLogListRequest() {
}
/**
* 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 DescribeRumLogListRequest(DescribeRumLogListRequest source) {
if (source.OrderBy != null) {
this.OrderBy = new String(source.OrderBy);
}
if (source.StartTime != null) {
this.StartTime = new String(source.StartTime);
}
if (source.Limit != null) {
this.Limit = new Long(source.Limit);
}
if (source.Page != null) {
this.Page = new Long(source.Page);
}
if (source.Query != null) {
this.Query = new String(source.Query);
}
if (source.EndTime != null) {
this.EndTime = new String(source.EndTime);
}
if (source.ID != null) {
this.ID = new Long(source.ID);
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamSimple(map, prefix + "OrderBy", this.OrderBy);
this.setParamSimple(map, prefix + "StartTime", this.StartTime);
this.setParamSimple(map, prefix + "Limit", this.Limit);
this.setParamSimple(map, prefix + "Page", this.Page);
this.setParamSimple(map, prefix + "Query", this.Query);
this.setParamSimple(map, prefix + "EndTime", this.EndTime);
this.setParamSimple(map, prefix + "ID", this.ID);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy