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

com.aliyun.rds20140815.models.CreateDiagnosticReportRequest Maven / Gradle / Ivy

There is a newer version: 6.3.2
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy