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

com.aliyun.sdk.service.cs20151215.models.GetClusterDiagnosisResultResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cs20151215.models;

import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * {@link GetClusterDiagnosisResultResponseBody} extends {@link TeaModel}
 *
 * 

GetClusterDiagnosisResultResponseBody

*/ public class GetClusterDiagnosisResultResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("code") private Long code; @com.aliyun.core.annotation.NameInMap("created") private String created; @com.aliyun.core.annotation.NameInMap("diagnosis_id") private String diagnosisId; @com.aliyun.core.annotation.NameInMap("finished") private String finished; @com.aliyun.core.annotation.NameInMap("message") private String message; @com.aliyun.core.annotation.NameInMap("result") private String result; @com.aliyun.core.annotation.NameInMap("status") private Long status; @com.aliyun.core.annotation.NameInMap("target") private String target; @com.aliyun.core.annotation.NameInMap("type") private String type; private GetClusterDiagnosisResultResponseBody(Builder builder) { this.code = builder.code; this.created = builder.created; this.diagnosisId = builder.diagnosisId; this.finished = builder.finished; this.message = builder.message; this.result = builder.result; this.status = builder.status; this.target = builder.target; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static GetClusterDiagnosisResultResponseBody create() { return builder().build(); } /** * @return code */ public Long getCode() { return this.code; } /** * @return created */ public String getCreated() { return this.created; } /** * @return diagnosisId */ public String getDiagnosisId() { return this.diagnosisId; } /** * @return finished */ public String getFinished() { return this.finished; } /** * @return message */ public String getMessage() { return this.message; } /** * @return result */ public String getResult() { return this.result; } /** * @return status */ public Long getStatus() { return this.status; } /** * @return target */ public String getTarget() { return this.target; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private Long code; private String created; private String diagnosisId; private String finished; private String message; private String result; private Long status; private String target; private String type; /** * code. */ public Builder code(Long code) { this.code = code; return this; } /** * created. */ public Builder created(String created) { this.created = created; return this; } /** * diagnosis_id. */ public Builder diagnosisId(String diagnosisId) { this.diagnosisId = diagnosisId; return this; } /** * finished. */ public Builder finished(String finished) { this.finished = finished; return this; } /** * message. */ public Builder message(String message) { this.message = message; return this; } /** * result. */ public Builder result(String result) { this.result = result; return this; } /** * status. */ public Builder status(Long status) { this.status = status; return this; } /** * target. */ public Builder target(String target) { this.target = target; return this; } /** * type. */ public Builder type(String type) { this.type = type; return this; } public GetClusterDiagnosisResultResponseBody build() { return new GetClusterDiagnosisResultResponseBody(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy