com.aliyun.rds20140815.models.CreateDiagnosticReportRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rds20140815 Show documentation
Show all versions of rds20140815 Show documentation
Alibaba Cloud rds (20140815) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.rds20140815.models;
import com.aliyun.tea.*;
public class CreateDiagnosticReportRequest extends TeaModel {
/**
* The ID of the instance.
* This parameter is required.
*
* example:
* rm-uf6wjk521****
*/
@NameInMap("DBInstanceId")
public String DBInstanceId;
/**
* The end time of the monitored data that is used to generate the diagnostic report. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mmZ format. The time must be in UTC.
* This parameter is required.
*
* example:
* 2018-06-12T15:00Z
*/
@NameInMap("EndTime")
public String endTime;
/**
* The start time of the monitored data that is used to generate the diagnostic report. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mmZ format. The time must be in UTC.
* This parameter is required.
*
* example:
* 2018-06-11T15:00Z
*/
@NameInMap("StartTime")
public String startTime;
public static CreateDiagnosticReportRequest build(java.util.Map map) throws Exception {
CreateDiagnosticReportRequest self = new CreateDiagnosticReportRequest();
return TeaModel.build(map, self);
}
public CreateDiagnosticReportRequest setDBInstanceId(String DBInstanceId) {
this.DBInstanceId = DBInstanceId;
return this;
}
public String getDBInstanceId() {
return this.DBInstanceId;
}
public CreateDiagnosticReportRequest setEndTime(String endTime) {
this.endTime = endTime;
return this;
}
public String getEndTime() {
return this.endTime;
}
public CreateDiagnosticReportRequest setStartTime(String startTime) {
this.startTime = startTime;
return this;
}
public String getStartTime() {
return this.startTime;
}
}