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

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

There is a newer version: 2.0.29
Show newest version
// 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 UpdateControlPlaneLogResponseBody} extends {@link TeaModel}
 *
 * 

UpdateControlPlaneLogResponseBody

*/ public class UpdateControlPlaneLogResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("cluster_id") private String clusterId; @com.aliyun.core.annotation.NameInMap("request_id") private String requestId; @com.aliyun.core.annotation.NameInMap("task_id") private String taskId; private UpdateControlPlaneLogResponseBody(Builder builder) { this.clusterId = builder.clusterId; this.requestId = builder.requestId; this.taskId = builder.taskId; } public static Builder builder() { return new Builder(); } public static UpdateControlPlaneLogResponseBody create() { return builder().build(); } /** * @return clusterId */ public String getClusterId() { return this.clusterId; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return taskId */ public String getTaskId() { return this.taskId; } public static final class Builder { private String clusterId; private String requestId; private String taskId; /** * The cluster ID. */ public Builder clusterId(String clusterId) { this.clusterId = clusterId; return this; } /** * The request ID. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * The task ID. */ public Builder taskId(String taskId) { this.taskId = taskId; return this; } public UpdateControlPlaneLogResponseBody build() { return new UpdateControlPlaneLogResponseBody(this); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy