
ksyun.client.krds.sqlauditlinechart.v20160701.SqlAuditLineChartRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ksyun-java-sdk Show documentation
Show all versions of ksyun-java-sdk Show documentation
The KSYUN Web Services SDK for Java provides Java APIs
for building software on KSYUN' cost-effective, scalable, and reliable
infrastructure products. The KSYUN Java SDK allows developers to code
against APIs for all of KSYUN's infrastructure web services (KSC
S3, KSC KEC, KSC RDS etc).
The newest version!
package ksyun.client.krds.sqlauditlinechart.v20160701;
import common.annotation.KsYunField;
import lombok.Data;
/**
* @Classname SqlAuditLineChartRequest
* @Description 请求参数
*/
@Data
public class SqlAuditLineChartRequest {
/**
* 实例ID
*/
@KsYunField(name = "DBInstanceIdentifier")
private String DBInstanceIdentifier;
/**
* 查询间隔 最近1小时:LASTEST_ONE_HOUR
最近3小时:LASTEST_THREE_HOUR
最近1天:LASTEST_ONE_DAY
最近1周:LASTEST_ONE_WEEK
自定义查询时间:CUSTOM
注意:自定义查询时间的时候必须填写startTime和endTime
注意:最近1小时,最近3小时均以5分钟为时间间隔聚合;最近一天以30分钟聚合;最近一周以6小时聚合
*/
@KsYunField(name = "TimeRange")
private String TimeRange;
/**
* 查询开始时间 例如:2021-09-01 14:42:51
*/
@KsYunField(name = "StartTime")
private String StartTime;
/**
* 查询结束时间 例如:2021-09-01 13:42:51
*/
@KsYunField(name = "EndTime")
private String EndTime;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy