com.aliyun.sdk.service.ecs20140526.models.CreateDiagnosticReportResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-ecs20140526 Show documentation
Show all versions of alibabacloud-ecs20140526 Show documentation
Alibaba Cloud Ecs (20140526) Async SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ecs20140526.models;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link CreateDiagnosticReportResponseBody} extends {@link TeaModel}
*
* CreateDiagnosticReportResponseBody
*/
public class CreateDiagnosticReportResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("ReportId")
private String reportId;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
private CreateDiagnosticReportResponseBody(Builder builder) {
this.reportId = builder.reportId;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static CreateDiagnosticReportResponseBody create() {
return builder().build();
}
/**
* @return reportId
*/
public String getReportId() {
return this.reportId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String reportId;
private String requestId;
/**
* The ID of the diagnostic report, which is the unique identifier of the report.
*
* example:
* dr-uf6i0tv2refv8wz*****
*/
public Builder reportId(String reportId) {
this.reportId = reportId;
return this;
}
/**
* The ID of the request.
*
* example:
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE*****
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public CreateDiagnosticReportResponseBody build() {
return new CreateDiagnosticReportResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy