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

com.tencentcloudapi.dcdb.v20180411.models.DescribeDBSlowLogsRequest Maven / Gradle / Ivy

There is a newer version: 3.1.1102
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.dcdb.v20180411.models;

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

public class DescribeDBSlowLogsRequest extends AbstractModel{

    /**
    * 实例 ID,形如:dcdbt-hw0qj6m1
    */
    @SerializedName("InstanceId")
    @Expose
    private String InstanceId;

    /**
    * 从结果的第几条数据开始返回
    */
    @SerializedName("Offset")
    @Expose
    private Long Offset;

    /**
    * 返回的结果条数
    */
    @SerializedName("Limit")
    @Expose
    private Long Limit;

    /**
    * 查询的起始时间,形如2016-07-23 14:55:20
    */
    @SerializedName("StartTime")
    @Expose
    private String StartTime;

    /**
    * 实例的分片ID,形如shard-53ima8ln
    */
    @SerializedName("ShardId")
    @Expose
    private String ShardId;

    /**
    * 查询的结束时间,形如2016-08-22 14:55:20。如果不填,那么查询结束时间就是当前时间
    */
    @SerializedName("EndTime")
    @Expose
    private String EndTime;

    /**
    * 要查询的具体数据库名称
    */
    @SerializedName("Db")
    @Expose
    private String Db;

    /**
    * 排序指标,取值为query_time_sum或者query_count。不填默认按照query_time_sum排序
    */
    @SerializedName("OrderBy")
    @Expose
    private String OrderBy;

    /**
    * 排序类型,desc(降序)或者asc(升序)。不填默认desc排序
    */
    @SerializedName("OrderByType")
    @Expose
    private String OrderByType;

    /**
    * 是否查询从机的慢查询,0-主机; 1-从机。不填默认查询主机慢查询
    */
    @SerializedName("Slave")
    @Expose
    private Long Slave;

    /**
     * Get 实例 ID,形如:dcdbt-hw0qj6m1 
     * @return InstanceId 实例 ID,形如:dcdbt-hw0qj6m1
     */
    public String getInstanceId() {
        return this.InstanceId;
    }

    /**
     * Set 实例 ID,形如:dcdbt-hw0qj6m1
     * @param InstanceId 实例 ID,形如:dcdbt-hw0qj6m1
     */
    public void setInstanceId(String InstanceId) {
        this.InstanceId = InstanceId;
    }

    /**
     * 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 查询的起始时间,形如2016-07-23 14:55:20 
     * @return StartTime 查询的起始时间,形如2016-07-23 14:55:20
     */
    public String getStartTime() {
        return this.StartTime;
    }

    /**
     * Set 查询的起始时间,形如2016-07-23 14:55:20
     * @param StartTime 查询的起始时间,形如2016-07-23 14:55:20
     */
    public void setStartTime(String StartTime) {
        this.StartTime = StartTime;
    }

    /**
     * Get 实例的分片ID,形如shard-53ima8ln 
     * @return ShardId 实例的分片ID,形如shard-53ima8ln
     */
    public String getShardId() {
        return this.ShardId;
    }

    /**
     * Set 实例的分片ID,形如shard-53ima8ln
     * @param ShardId 实例的分片ID,形如shard-53ima8ln
     */
    public void setShardId(String ShardId) {
        this.ShardId = ShardId;
    }

    /**
     * Get 查询的结束时间,形如2016-08-22 14:55:20。如果不填,那么查询结束时间就是当前时间 
     * @return EndTime 查询的结束时间,形如2016-08-22 14:55:20。如果不填,那么查询结束时间就是当前时间
     */
    public String getEndTime() {
        return this.EndTime;
    }

    /**
     * Set 查询的结束时间,形如2016-08-22 14:55:20。如果不填,那么查询结束时间就是当前时间
     * @param EndTime 查询的结束时间,形如2016-08-22 14:55:20。如果不填,那么查询结束时间就是当前时间
     */
    public void setEndTime(String EndTime) {
        this.EndTime = EndTime;
    }

    /**
     * Get 要查询的具体数据库名称 
     * @return Db 要查询的具体数据库名称
     */
    public String getDb() {
        return this.Db;
    }

    /**
     * Set 要查询的具体数据库名称
     * @param Db 要查询的具体数据库名称
     */
    public void setDb(String Db) {
        this.Db = Db;
    }

    /**
     * Get 排序指标,取值为query_time_sum或者query_count。不填默认按照query_time_sum排序 
     * @return OrderBy 排序指标,取值为query_time_sum或者query_count。不填默认按照query_time_sum排序
     */
    public String getOrderBy() {
        return this.OrderBy;
    }

    /**
     * Set 排序指标,取值为query_time_sum或者query_count。不填默认按照query_time_sum排序
     * @param OrderBy 排序指标,取值为query_time_sum或者query_count。不填默认按照query_time_sum排序
     */
    public void setOrderBy(String OrderBy) {
        this.OrderBy = OrderBy;
    }

    /**
     * Get 排序类型,desc(降序)或者asc(升序)。不填默认desc排序 
     * @return OrderByType 排序类型,desc(降序)或者asc(升序)。不填默认desc排序
     */
    public String getOrderByType() {
        return this.OrderByType;
    }

    /**
     * Set 排序类型,desc(降序)或者asc(升序)。不填默认desc排序
     * @param OrderByType 排序类型,desc(降序)或者asc(升序)。不填默认desc排序
     */
    public void setOrderByType(String OrderByType) {
        this.OrderByType = OrderByType;
    }

    /**
     * Get 是否查询从机的慢查询,0-主机; 1-从机。不填默认查询主机慢查询 
     * @return Slave 是否查询从机的慢查询,0-主机; 1-从机。不填默认查询主机慢查询
     */
    public Long getSlave() {
        return this.Slave;
    }

    /**
     * Set 是否查询从机的慢查询,0-主机; 1-从机。不填默认查询主机慢查询
     * @param Slave 是否查询从机的慢查询,0-主机; 1-从机。不填默认查询主机慢查询
     */
    public void setSlave(Long Slave) {
        this.Slave = Slave;
    }

    public DescribeDBSlowLogsRequest() {
    }

    /**
     * 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 DescribeDBSlowLogsRequest(DescribeDBSlowLogsRequest source) {
        if (source.InstanceId != null) {
            this.InstanceId = new String(source.InstanceId);
        }
        if (source.Offset != null) {
            this.Offset = new Long(source.Offset);
        }
        if (source.Limit != null) {
            this.Limit = new Long(source.Limit);
        }
        if (source.StartTime != null) {
            this.StartTime = new String(source.StartTime);
        }
        if (source.ShardId != null) {
            this.ShardId = new String(source.ShardId);
        }
        if (source.EndTime != null) {
            this.EndTime = new String(source.EndTime);
        }
        if (source.Db != null) {
            this.Db = new String(source.Db);
        }
        if (source.OrderBy != null) {
            this.OrderBy = new String(source.OrderBy);
        }
        if (source.OrderByType != null) {
            this.OrderByType = new String(source.OrderByType);
        }
        if (source.Slave != null) {
            this.Slave = new Long(source.Slave);
        }
    }


    /**
     * Internal implementation, normal users should not use it.
     */
    public void toMap(HashMap map, String prefix) {
        this.setParamSimple(map, prefix + "InstanceId", this.InstanceId);
        this.setParamSimple(map, prefix + "Offset", this.Offset);
        this.setParamSimple(map, prefix + "Limit", this.Limit);
        this.setParamSimple(map, prefix + "StartTime", this.StartTime);
        this.setParamSimple(map, prefix + "ShardId", this.ShardId);
        this.setParamSimple(map, prefix + "EndTime", this.EndTime);
        this.setParamSimple(map, prefix + "Db", this.Db);
        this.setParamSimple(map, prefix + "OrderBy", this.OrderBy);
        this.setParamSimple(map, prefix + "OrderByType", this.OrderByType);
        this.setParamSimple(map, prefix + "Slave", this.Slave);

    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy