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

com.aliyun.sdk.service.emr20210320.models.CreateClusterResponseBody 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 CreateClusterResponseBody} extends {@link TeaModel}
 *
 * 

CreateClusterResponseBody

*/ public class CreateClusterResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("ClusterId") private String clusterId; @com.aliyun.core.annotation.NameInMap("OperationId") private String operationId; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private CreateClusterResponseBody(Builder builder) { this.clusterId = builder.clusterId; this.operationId = builder.operationId; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static CreateClusterResponseBody create() { return builder().build(); } /** * @return clusterId */ public String getClusterId() { return this.clusterId; } /** * @return operationId */ public String getOperationId() { return this.operationId; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private String clusterId; private String operationId; private String requestId; /** * The ID of cluster. */ public Builder clusterId(String clusterId) { this.clusterId = clusterId; return this; } /** * The ID of the operation. */ public Builder operationId(String operationId) { this.operationId = operationId; return this; } /** * The ID of the request. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public CreateClusterResponseBody build() { return new CreateClusterResponseBody(this); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy