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

com.aliyun.sdk.service.emr20210320.models.GetDoctorHDFSUGIResponseBody Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.emr20210320.models;

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

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

GetDoctorHDFSUGIResponseBody

*/ public class GetDoctorHDFSUGIResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("Data") private Data data; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private GetDoctorHDFSUGIResponseBody(Builder builder) { this.data = builder.data; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static GetDoctorHDFSUGIResponseBody create() { return builder().build(); } /** * @return data */ public Data getData() { return this.data; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private Data data; private String requestId; /** * The results of HDFS analysis. */ public Builder data(Data data) { this.data = data; return this; } /** * The request ID. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public GetDoctorHDFSUGIResponseBody build() { return new GetDoctorHDFSUGIResponseBody(this); } } public static class TotalDataSize extends TeaModel { @com.aliyun.core.annotation.NameInMap("Description") private String description; @com.aliyun.core.annotation.NameInMap("Name") private String name; @com.aliyun.core.annotation.NameInMap("Unit") private String unit; @com.aliyun.core.annotation.NameInMap("Value") private Long value; private TotalDataSize(Builder builder) { this.description = builder.description; this.name = builder.name; this.unit = builder.unit; this.value = builder.value; } public static Builder builder() { return new Builder(); } public static TotalDataSize create() { return builder().build(); } /** * @return description */ public String getDescription() { return this.description; } /** * @return name */ public String getName() { return this.name; } /** * @return unit */ public String getUnit() { return this.unit; } /** * @return value */ public Long getValue() { return this.value; } public static final class Builder { private String description; private String name; private String unit; private Long value; /** * The description of the metric. */ public Builder description(String description) { this.description = description; return this; } /** * The name of the metric. */ public Builder name(String name) { this.name = name; return this; } /** * The unit. */ public Builder unit(String unit) { this.unit = unit; return this; } /** * The value of the metric. */ public Builder value(Long value) { this.value = value; return this; } public TotalDataSize build() { return new TotalDataSize(this); } } } public static class TotalDirCount extends TeaModel { @com.aliyun.core.annotation.NameInMap("Description") private String description; @com.aliyun.core.annotation.NameInMap("Name") private String name; @com.aliyun.core.annotation.NameInMap("Unit") private String unit; @com.aliyun.core.annotation.NameInMap("Value") private Long value; private TotalDirCount(Builder builder) { this.description = builder.description; this.name = builder.name; this.unit = builder.unit; this.value = builder.value; } public static Builder builder() { return new Builder(); } public static TotalDirCount create() { return builder().build(); } /** * @return description */ public String getDescription() { return this.description; } /** * @return name */ public String getName() { return this.name; } /** * @return unit */ public String getUnit() { return this.unit; } /** * @return value */ public Long getValue() { return this.value; } public static final class Builder { private String description; private String name; private String unit; private Long value; /** * The description of the metric. */ public Builder description(String description) { this.description = description; return this; } /** * The name of the metric. */ public Builder name(String name) { this.name = name; return this; } /** * The unit of the metric. */ public Builder unit(String unit) { this.unit = unit; return this; } /** * The value of the metric. */ public Builder value(Long value) { this.value = value; return this; } public TotalDirCount build() { return new TotalDirCount(this); } } } public static class TotalFileCount extends TeaModel { @com.aliyun.core.annotation.NameInMap("Description") private String description; @com.aliyun.core.annotation.NameInMap("Name") private String name; @com.aliyun.core.annotation.NameInMap("Unit") private String unit; @com.aliyun.core.annotation.NameInMap("Value") private Long value; private TotalFileCount(Builder builder) { this.description = builder.description; this.name = builder.name; this.unit = builder.unit; this.value = builder.value; } public static Builder builder() { return new Builder(); } public static TotalFileCount create() { return builder().build(); } /** * @return description */ public String getDescription() { return this.description; } /** * @return name */ public String getName() { return this.name; } /** * @return unit */ public String getUnit() { return this.unit; } /** * @return value */ public Long getValue() { return this.value; } public static final class Builder { private String description; private String name; private String unit; private Long value; /** * The description of the metric. */ public Builder description(String description) { this.description = description; return this; } /** * The name of the metric. */ public Builder name(String name) { this.name = name; return this; } /** * The unit of the metric. */ public Builder unit(String unit) { this.unit = unit; return this; } /** * The value of the metric. */ public Builder value(Long value) { this.value = value; return this; } public TotalFileCount build() { return new TotalFileCount(this); } } } public static class Metrics extends TeaModel { @com.aliyun.core.annotation.NameInMap("TotalDataSize") private TotalDataSize totalDataSize; @com.aliyun.core.annotation.NameInMap("TotalDirCount") private TotalDirCount totalDirCount; @com.aliyun.core.annotation.NameInMap("TotalFileCount") private TotalFileCount totalFileCount; private Metrics(Builder builder) { this.totalDataSize = builder.totalDataSize; this.totalDirCount = builder.totalDirCount; this.totalFileCount = builder.totalFileCount; } public static Builder builder() { return new Builder(); } public static Metrics create() { return builder().build(); } /** * @return totalDataSize */ public TotalDataSize getTotalDataSize() { return this.totalDataSize; } /** * @return totalDirCount */ public TotalDirCount getTotalDirCount() { return this.totalDirCount; } /** * @return totalFileCount */ public TotalFileCount getTotalFileCount() { return this.totalFileCount; } public static final class Builder { private TotalDataSize totalDataSize; private TotalDirCount totalDirCount; private TotalFileCount totalFileCount; /** * The total data size. */ public Builder totalDataSize(TotalDataSize totalDataSize) { this.totalDataSize = totalDataSize; return this; } /** * The total number of directories. */ public Builder totalDirCount(TotalDirCount totalDirCount) { this.totalDirCount = totalDirCount; return this; } /** * The total number of files. */ public Builder totalFileCount(TotalFileCount totalFileCount) { this.totalFileCount = totalFileCount; return this; } public Metrics build() { return new Metrics(this); } } } public static class Data extends TeaModel { @com.aliyun.core.annotation.NameInMap("Metrics") private Metrics metrics; private Data(Builder builder) { this.metrics = builder.metrics; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return metrics */ public Metrics getMetrics() { return this.metrics; } public static final class Builder { private Metrics metrics; /** * The metric information. */ public Builder metrics(Metrics metrics) { this.metrics = metrics; return this; } public Data build() { return new Data(this); } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy