index int64 | repo_id string | file_path string | content string |
|---|---|---|---|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/StartJobWithParamsResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link StartJobWithParamsResponseBody} extends {@link TeaModel}
*
* <p>StartJobWithParamsResponseBody</p>
*/
public class StartJobWithParamsResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("accessDeniedDetail")
private String accessDeniedDetail;
@com.aliyun.core.annotation.NameInMap("data")
private Job data;
@com.aliyun.core.annotation.NameInMap("errorCode")
private String errorCode;
@com.aliyun.core.annotation.NameInMap("errorMessage")
private String errorMessage;
@com.aliyun.core.annotation.NameInMap("httpCode")
private Integer httpCode;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("success")
private Boolean success;
private StartJobWithParamsResponseBody(Builder builder) {
this.accessDeniedDetail = builder.accessDeniedDetail;
this.data = builder.data;
this.errorCode = builder.errorCode;
this.errorMessage = builder.errorMessage;
this.httpCode = builder.httpCode;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static StartJobWithParamsResponseBody create() {
return builder().build();
}
/**
* @return accessDeniedDetail
*/
public String getAccessDeniedDetail() {
return this.accessDeniedDetail;
}
/**
* @return data
*/
public Job getData() {
return this.data;
}
/**
* @return errorCode
*/
public String getErrorCode() {
return this.errorCode;
}
/**
* @return errorMessage
*/
public String getErrorMessage() {
return this.errorMessage;
}
/**
* @return httpCode
*/
public Integer getHttpCode() {
return this.httpCode;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String accessDeniedDetail;
private Job data;
private String errorCode;
private String errorMessage;
private Integer httpCode;
private String requestId;
private Boolean success;
/**
* accessDeniedDetail.
*/
public Builder accessDeniedDetail(String accessDeniedDetail) {
this.accessDeniedDetail = accessDeniedDetail;
return this;
}
/**
* <p>The details of the job of the deployment returned.</p>
*/
public Builder data(Job data) {
this.data = data;
return this;
}
/**
* <p>If the value of success was false, an error code was returned. If the value of success was true, a null value was returned.</p>
*
* <strong>example:</strong>
* <p>""</p>
*/
public Builder errorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
/**
* <p>If the value of success was false, an error message was returned. If the value of success was true, a null value was returned.</p>
*
* <strong>example:</strong>
* <p>""</p>
*/
public Builder errorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
/**
* <p>The status code returned. The value was fixed to 200. The status code 200 indicates that the request was successful.</p>
*
* <strong>example:</strong>
* <p>200</p>
*/
public Builder httpCode(Integer httpCode) {
this.httpCode = httpCode;
return this;
}
/**
* <p>The request ID.</p>
*
* <strong>example:</strong>
* <p>CBC799F0-AS7S-1D30-8A4F-882ED4DD****</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Indicates whether the request was successful.</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public StartJobWithParamsResponseBody build() {
return new StartJobWithParamsResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/StartSessionClusterRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link StartSessionClusterRequest} extends {@link RequestModel}
*
* <p>StartSessionClusterRequest</p>
*/
public class StartSessionClusterRequest extends Request {
@com.aliyun.core.annotation.Path
@com.aliyun.core.annotation.NameInMap("namespace")
@com.aliyun.core.annotation.Validation(required = true)
private String namespace;
@com.aliyun.core.annotation.Path
@com.aliyun.core.annotation.NameInMap("sessionClusterName")
@com.aliyun.core.annotation.Validation(required = true)
private String sessionClusterName;
@com.aliyun.core.annotation.Header
@com.aliyun.core.annotation.NameInMap("workspace")
@com.aliyun.core.annotation.Validation(required = true)
private String workspace;
private StartSessionClusterRequest(Builder builder) {
super(builder);
this.namespace = builder.namespace;
this.sessionClusterName = builder.sessionClusterName;
this.workspace = builder.workspace;
}
public static Builder builder() {
return new Builder();
}
public static StartSessionClusterRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return namespace
*/
public String getNamespace() {
return this.namespace;
}
/**
* @return sessionClusterName
*/
public String getSessionClusterName() {
return this.sessionClusterName;
}
/**
* @return workspace
*/
public String getWorkspace() {
return this.workspace;
}
public static final class Builder extends Request.Builder<StartSessionClusterRequest, Builder> {
private String namespace;
private String sessionClusterName;
private String workspace;
private Builder() {
super();
}
private Builder(StartSessionClusterRequest request) {
super(request);
this.namespace = request.namespace;
this.sessionClusterName = request.sessionClusterName;
this.workspace = request.workspace;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>default-namespace</p>
*/
public Builder namespace(String namespace) {
this.putPathParameter("namespace", namespace);
this.namespace = namespace;
return this;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>test-session</p>
*/
public Builder sessionClusterName(String sessionClusterName) {
this.putPathParameter("sessionClusterName", sessionClusterName);
this.sessionClusterName = sessionClusterName;
return this;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>a14bda1c4a****</p>
*/
public Builder workspace(String workspace) {
this.putHeaderParameter("workspace", workspace);
this.workspace = workspace;
return this;
}
@Override
public StartSessionClusterRequest build() {
return new StartSessionClusterRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/StartSessionClusterResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link StartSessionClusterResponse} extends {@link TeaModel}
*
* <p>StartSessionClusterResponse</p>
*/
public class StartSessionClusterResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private StartSessionClusterResponseBody body;
private StartSessionClusterResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static StartSessionClusterResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public StartSessionClusterResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<StartSessionClusterResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(StartSessionClusterResponseBody body);
@Override
StartSessionClusterResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<StartSessionClusterResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private StartSessionClusterResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(StartSessionClusterResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(StartSessionClusterResponseBody body) {
this.body = body;
return this;
}
@Override
public StartSessionClusterResponse build() {
return new StartSessionClusterResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/StartSessionClusterResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link StartSessionClusterResponseBody} extends {@link TeaModel}
*
* <p>StartSessionClusterResponseBody</p>
*/
public class StartSessionClusterResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("errorCode")
private String errorCode;
@com.aliyun.core.annotation.NameInMap("errorMessage")
private String errorMessage;
@com.aliyun.core.annotation.NameInMap("httpCode")
private Integer httpCode;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("success")
private Boolean success;
private StartSessionClusterResponseBody(Builder builder) {
this.errorCode = builder.errorCode;
this.errorMessage = builder.errorMessage;
this.httpCode = builder.httpCode;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static StartSessionClusterResponseBody create() {
return builder().build();
}
/**
* @return errorCode
*/
public String getErrorCode() {
return this.errorCode;
}
/**
* @return errorMessage
*/
public String getErrorMessage() {
return this.errorMessage;
}
/**
* @return httpCode
*/
public Integer getHttpCode() {
return this.httpCode;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String errorCode;
private String errorMessage;
private Integer httpCode;
private String requestId;
private Boolean success;
/**
* errorCode.
*/
public Builder errorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
/**
* errorMessage.
*/
public Builder errorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
/**
* httpCode.
*/
public Builder httpCode(Integer httpCode) {
this.httpCode = httpCode;
return this;
}
/**
* requestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* success.
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public StartSessionClusterResponseBody build() {
return new StartSessionClusterResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/StopApplyScheduledPlanRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link StopApplyScheduledPlanRequest} extends {@link RequestModel}
*
* <p>StopApplyScheduledPlanRequest</p>
*/
public class StopApplyScheduledPlanRequest extends Request {
@com.aliyun.core.annotation.Path
@com.aliyun.core.annotation.NameInMap("namespace")
@com.aliyun.core.annotation.Validation(required = true)
private String namespace;
@com.aliyun.core.annotation.Path
@com.aliyun.core.annotation.NameInMap("scheduledPlanId")
@com.aliyun.core.annotation.Validation(required = true)
private String scheduledPlanId;
@com.aliyun.core.annotation.Header
@com.aliyun.core.annotation.NameInMap("workspace")
@com.aliyun.core.annotation.Validation(required = true)
private String workspace;
private StopApplyScheduledPlanRequest(Builder builder) {
super(builder);
this.namespace = builder.namespace;
this.scheduledPlanId = builder.scheduledPlanId;
this.workspace = builder.workspace;
}
public static Builder builder() {
return new Builder();
}
public static StopApplyScheduledPlanRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return namespace
*/
public String getNamespace() {
return this.namespace;
}
/**
* @return scheduledPlanId
*/
public String getScheduledPlanId() {
return this.scheduledPlanId;
}
/**
* @return workspace
*/
public String getWorkspace() {
return this.workspace;
}
public static final class Builder extends Request.Builder<StopApplyScheduledPlanRequest, Builder> {
private String namespace;
private String scheduledPlanId;
private String workspace;
private Builder() {
super();
}
private Builder(StopApplyScheduledPlanRequest request) {
super(request);
this.namespace = request.namespace;
this.scheduledPlanId = request.scheduledPlanId;
this.workspace = request.workspace;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>default-namespace</p>
*/
public Builder namespace(String namespace) {
this.putPathParameter("namespace", namespace);
this.namespace = namespace;
return this;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>f420c2e7-6d3f-4683-81d0-3ea8585*****</p>
*/
public Builder scheduledPlanId(String scheduledPlanId) {
this.putPathParameter("scheduledPlanId", scheduledPlanId);
this.scheduledPlanId = scheduledPlanId;
return this;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>a14bd5d90a****</p>
*/
public Builder workspace(String workspace) {
this.putHeaderParameter("workspace", workspace);
this.workspace = workspace;
return this;
}
@Override
public StopApplyScheduledPlanRequest build() {
return new StopApplyScheduledPlanRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/StopApplyScheduledPlanResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link StopApplyScheduledPlanResponse} extends {@link TeaModel}
*
* <p>StopApplyScheduledPlanResponse</p>
*/
public class StopApplyScheduledPlanResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private StopApplyScheduledPlanResponseBody body;
private StopApplyScheduledPlanResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static StopApplyScheduledPlanResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public StopApplyScheduledPlanResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<StopApplyScheduledPlanResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(StopApplyScheduledPlanResponseBody body);
@Override
StopApplyScheduledPlanResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<StopApplyScheduledPlanResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private StopApplyScheduledPlanResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(StopApplyScheduledPlanResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(StopApplyScheduledPlanResponseBody body) {
this.body = body;
return this;
}
@Override
public StopApplyScheduledPlanResponse build() {
return new StopApplyScheduledPlanResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/StopApplyScheduledPlanResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link StopApplyScheduledPlanResponseBody} extends {@link TeaModel}
*
* <p>StopApplyScheduledPlanResponseBody</p>
*/
public class StopApplyScheduledPlanResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("data")
private ScheduledPlanAppliedInfo data;
@com.aliyun.core.annotation.NameInMap("errorCode")
private String errorCode;
@com.aliyun.core.annotation.NameInMap("errorMessage")
private String errorMessage;
@com.aliyun.core.annotation.NameInMap("httpCode")
private Integer httpCode;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("success")
private Boolean success;
private StopApplyScheduledPlanResponseBody(Builder builder) {
this.data = builder.data;
this.errorCode = builder.errorCode;
this.errorMessage = builder.errorMessage;
this.httpCode = builder.httpCode;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static StopApplyScheduledPlanResponseBody create() {
return builder().build();
}
/**
* @return data
*/
public ScheduledPlanAppliedInfo getData() {
return this.data;
}
/**
* @return errorCode
*/
public String getErrorCode() {
return this.errorCode;
}
/**
* @return errorMessage
*/
public String getErrorMessage() {
return this.errorMessage;
}
/**
* @return httpCode
*/
public Integer getHttpCode() {
return this.httpCode;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private ScheduledPlanAppliedInfo data;
private String errorCode;
private String errorMessage;
private Integer httpCode;
private String requestId;
private Boolean success;
/**
* data.
*/
public Builder data(ScheduledPlanAppliedInfo data) {
this.data = data;
return this;
}
/**
* errorCode.
*/
public Builder errorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
/**
* errorMessage.
*/
public Builder errorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
/**
* httpCode.
*/
public Builder httpCode(Integer httpCode) {
this.httpCode = httpCode;
return this;
}
/**
* requestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* success.
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public StopApplyScheduledPlanResponseBody build() {
return new StopApplyScheduledPlanResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/StopJobRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link StopJobRequest} extends {@link RequestModel}
*
* <p>StopJobRequest</p>
*/
public class StopJobRequest extends Request {
@com.aliyun.core.annotation.Path
@com.aliyun.core.annotation.NameInMap("namespace")
@com.aliyun.core.annotation.Validation(required = true)
private String namespace;
@com.aliyun.core.annotation.Path
@com.aliyun.core.annotation.NameInMap("jobId")
@com.aliyun.core.annotation.Validation(required = true)
private String jobId;
@com.aliyun.core.annotation.Body
@com.aliyun.core.annotation.NameInMap("body")
@com.aliyun.core.annotation.Validation(required = true)
private StopJobRequestBody body;
@com.aliyun.core.annotation.Header
@com.aliyun.core.annotation.NameInMap("workspace")
@com.aliyun.core.annotation.Validation(required = true)
private String workspace;
private StopJobRequest(Builder builder) {
super(builder);
this.namespace = builder.namespace;
this.jobId = builder.jobId;
this.body = builder.body;
this.workspace = builder.workspace;
}
public static Builder builder() {
return new Builder();
}
public static StopJobRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return namespace
*/
public String getNamespace() {
return this.namespace;
}
/**
* @return jobId
*/
public String getJobId() {
return this.jobId;
}
/**
* @return body
*/
public StopJobRequestBody getBody() {
return this.body;
}
/**
* @return workspace
*/
public String getWorkspace() {
return this.workspace;
}
public static final class Builder extends Request.Builder<StopJobRequest, Builder> {
private String namespace;
private String jobId;
private StopJobRequestBody body;
private String workspace;
private Builder() {
super();
}
private Builder(StopJobRequest request) {
super(request);
this.namespace = request.namespace;
this.jobId = request.jobId;
this.body = request.body;
this.workspace = request.workspace;
}
/**
* <p>The name of the namespace.</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>default-namespace</p>
*/
public Builder namespace(String namespace) {
this.putPathParameter("namespace", namespace);
this.namespace = namespace;
return this;
}
/**
* <p>The job ID.</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>88a8fc49-e090-430a-85d8-3ee8c79c****</p>
*/
public Builder jobId(String jobId) {
this.putPathParameter("jobId", jobId);
this.jobId = jobId;
return this;
}
/**
* <p>The parameter that is used to stop the job.</p>
* <p>This parameter is required.</p>
*/
public Builder body(StopJobRequestBody body) {
this.putBodyParameter("body", body);
this.body = body;
return this;
}
/**
* <p>The workspace ID.</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>a14bd5d90a****</p>
*/
public Builder workspace(String workspace) {
this.putHeaderParameter("workspace", workspace);
this.workspace = workspace;
return this;
}
@Override
public StopJobRequest build() {
return new StopJobRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/StopJobRequestBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link StopJobRequestBody} extends {@link TeaModel}
*
* <p>StopJobRequestBody</p>
*/
public class StopJobRequestBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("stopStrategy")
@com.aliyun.core.annotation.Validation(required = true)
private String stopStrategy;
private StopJobRequestBody(Builder builder) {
this.stopStrategy = builder.stopStrategy;
}
public static Builder builder() {
return new Builder();
}
public static StopJobRequestBody create() {
return builder().build();
}
/**
* @return stopStrategy
*/
public String getStopStrategy() {
return this.stopStrategy;
}
public static final class Builder {
private String stopStrategy;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>NONE</p>
*/
public Builder stopStrategy(String stopStrategy) {
this.stopStrategy = stopStrategy;
return this;
}
public StopJobRequestBody build() {
return new StopJobRequestBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/StopJobResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link StopJobResponse} extends {@link TeaModel}
*
* <p>StopJobResponse</p>
*/
public class StopJobResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private StopJobResponseBody body;
private StopJobResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static StopJobResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public StopJobResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<StopJobResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(StopJobResponseBody body);
@Override
StopJobResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<StopJobResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private StopJobResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(StopJobResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(StopJobResponseBody body) {
this.body = body;
return this;
}
@Override
public StopJobResponse build() {
return new StopJobResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/StopJobResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link StopJobResponseBody} extends {@link TeaModel}
*
* <p>StopJobResponseBody</p>
*/
public class StopJobResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("accessDeniedDetail")
private String accessDeniedDetail;
@com.aliyun.core.annotation.NameInMap("data")
private Job data;
@com.aliyun.core.annotation.NameInMap("errorCode")
private String errorCode;
@com.aliyun.core.annotation.NameInMap("errorMessage")
private String errorMessage;
@com.aliyun.core.annotation.NameInMap("httpCode")
private Integer httpCode;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("success")
private Boolean success;
private StopJobResponseBody(Builder builder) {
this.accessDeniedDetail = builder.accessDeniedDetail;
this.data = builder.data;
this.errorCode = builder.errorCode;
this.errorMessage = builder.errorMessage;
this.httpCode = builder.httpCode;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static StopJobResponseBody create() {
return builder().build();
}
/**
* @return accessDeniedDetail
*/
public String getAccessDeniedDetail() {
return this.accessDeniedDetail;
}
/**
* @return data
*/
public Job getData() {
return this.data;
}
/**
* @return errorCode
*/
public String getErrorCode() {
return this.errorCode;
}
/**
* @return errorMessage
*/
public String getErrorMessage() {
return this.errorMessage;
}
/**
* @return httpCode
*/
public Integer getHttpCode() {
return this.httpCode;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String accessDeniedDetail;
private Job data;
private String errorCode;
private String errorMessage;
private Integer httpCode;
private String requestId;
private Boolean success;
/**
* accessDeniedDetail.
*/
public Builder accessDeniedDetail(String accessDeniedDetail) {
this.accessDeniedDetail = accessDeniedDetail;
return this;
}
/**
* <ul>
* <li>If the value of success was true, the job that you stopped was returned.</li>
* <li>If the value of success was false, a null value was returned.</li>
* </ul>
*/
public Builder data(Job data) {
this.data = data;
return this;
}
/**
* <ul>
* <li>If the value of success was false, an error code was returned.</li>
* <li>If the value of success was true, a null value was returned.</li>
* </ul>
*
* <strong>example:</strong>
* <p>""</p>
*/
public Builder errorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
/**
* <ul>
* <li>If the value of success was false, an error message was returned.</li>
* <li>If the value of success was true, a null value was returned.</li>
* </ul>
*
* <strong>example:</strong>
* <p>""</p>
*/
public Builder errorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
/**
* <p>The value was fixed to 200.</p>
*
* <strong>example:</strong>
* <p>200</p>
*/
public Builder httpCode(Integer httpCode) {
this.httpCode = httpCode;
return this;
}
/**
* <p>The request ID.</p>
*
* <strong>example:</strong>
* <p>CBC799F0-AS7S-1D30-8A4F-882ED4DD****</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Indicates whether the request was successful.</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public StopJobResponseBody build() {
return new StopJobResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/StopSessionClusterRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link StopSessionClusterRequest} extends {@link RequestModel}
*
* <p>StopSessionClusterRequest</p>
*/
public class StopSessionClusterRequest extends Request {
@com.aliyun.core.annotation.Path
@com.aliyun.core.annotation.NameInMap("namespace")
@com.aliyun.core.annotation.Validation(required = true)
private String namespace;
@com.aliyun.core.annotation.Path
@com.aliyun.core.annotation.NameInMap("sessionClusterName")
@com.aliyun.core.annotation.Validation(required = true)
private String sessionClusterName;
@com.aliyun.core.annotation.Header
@com.aliyun.core.annotation.NameInMap("workspace")
@com.aliyun.core.annotation.Validation(required = true)
private String workspace;
private StopSessionClusterRequest(Builder builder) {
super(builder);
this.namespace = builder.namespace;
this.sessionClusterName = builder.sessionClusterName;
this.workspace = builder.workspace;
}
public static Builder builder() {
return new Builder();
}
public static StopSessionClusterRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return namespace
*/
public String getNamespace() {
return this.namespace;
}
/**
* @return sessionClusterName
*/
public String getSessionClusterName() {
return this.sessionClusterName;
}
/**
* @return workspace
*/
public String getWorkspace() {
return this.workspace;
}
public static final class Builder extends Request.Builder<StopSessionClusterRequest, Builder> {
private String namespace;
private String sessionClusterName;
private String workspace;
private Builder() {
super();
}
private Builder(StopSessionClusterRequest request) {
super(request);
this.namespace = request.namespace;
this.sessionClusterName = request.sessionClusterName;
this.workspace = request.workspace;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>default-namespace</p>
*/
public Builder namespace(String namespace) {
this.putPathParameter("namespace", namespace);
this.namespace = namespace;
return this;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>test-session</p>
*/
public Builder sessionClusterName(String sessionClusterName) {
this.putPathParameter("sessionClusterName", sessionClusterName);
this.sessionClusterName = sessionClusterName;
return this;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>a14bd5d90a****</p>
*/
public Builder workspace(String workspace) {
this.putHeaderParameter("workspace", workspace);
this.workspace = workspace;
return this;
}
@Override
public StopSessionClusterRequest build() {
return new StopSessionClusterRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/StopSessionClusterResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link StopSessionClusterResponse} extends {@link TeaModel}
*
* <p>StopSessionClusterResponse</p>
*/
public class StopSessionClusterResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private StopSessionClusterResponseBody body;
private StopSessionClusterResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static StopSessionClusterResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public StopSessionClusterResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<StopSessionClusterResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(StopSessionClusterResponseBody body);
@Override
StopSessionClusterResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<StopSessionClusterResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private StopSessionClusterResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(StopSessionClusterResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(StopSessionClusterResponseBody body) {
this.body = body;
return this;
}
@Override
public StopSessionClusterResponse build() {
return new StopSessionClusterResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/StopSessionClusterResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link StopSessionClusterResponseBody} extends {@link TeaModel}
*
* <p>StopSessionClusterResponseBody</p>
*/
public class StopSessionClusterResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("errorCode")
private String errorCode;
@com.aliyun.core.annotation.NameInMap("errorMessage")
private String errorMessage;
@com.aliyun.core.annotation.NameInMap("httpCode")
private Integer httpCode;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("success")
private Boolean success;
private StopSessionClusterResponseBody(Builder builder) {
this.errorCode = builder.errorCode;
this.errorMessage = builder.errorMessage;
this.httpCode = builder.httpCode;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static StopSessionClusterResponseBody create() {
return builder().build();
}
/**
* @return errorCode
*/
public String getErrorCode() {
return this.errorCode;
}
/**
* @return errorMessage
*/
public String getErrorMessage() {
return this.errorMessage;
}
/**
* @return httpCode
*/
public Integer getHttpCode() {
return this.httpCode;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String errorCode;
private String errorMessage;
private Integer httpCode;
private String requestId;
private Boolean success;
/**
* errorCode.
*/
public Builder errorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
/**
* errorMessage.
*/
public Builder errorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
/**
* httpCode.
*/
public Builder httpCode(Integer httpCode) {
this.httpCode = httpCode;
return this;
}
/**
* requestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* success.
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public StopSessionClusterResponseBody build() {
return new StopSessionClusterResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/StreamingResourceSetting.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link StreamingResourceSetting} extends {@link TeaModel}
*
* <p>StreamingResourceSetting</p>
*/
public class StreamingResourceSetting extends TeaModel {
@com.aliyun.core.annotation.NameInMap("basicResourceSetting")
private BasicResourceSetting basicResourceSetting;
@com.aliyun.core.annotation.NameInMap("expertResourceSetting")
private ExpertResourceSetting expertResourceSetting;
@com.aliyun.core.annotation.NameInMap("resourceSettingMode")
private String resourceSettingMode;
private StreamingResourceSetting(Builder builder) {
this.basicResourceSetting = builder.basicResourceSetting;
this.expertResourceSetting = builder.expertResourceSetting;
this.resourceSettingMode = builder.resourceSettingMode;
}
public static Builder builder() {
return new Builder();
}
public static StreamingResourceSetting create() {
return builder().build();
}
/**
* @return basicResourceSetting
*/
public BasicResourceSetting getBasicResourceSetting() {
return this.basicResourceSetting;
}
/**
* @return expertResourceSetting
*/
public ExpertResourceSetting getExpertResourceSetting() {
return this.expertResourceSetting;
}
/**
* @return resourceSettingMode
*/
public String getResourceSettingMode() {
return this.resourceSettingMode;
}
public static final class Builder {
private BasicResourceSetting basicResourceSetting;
private ExpertResourceSetting expertResourceSetting;
private String resourceSettingMode;
/**
* basicResourceSetting.
*/
public Builder basicResourceSetting(BasicResourceSetting basicResourceSetting) {
this.basicResourceSetting = basicResourceSetting;
return this;
}
/**
* expertResourceSetting.
*/
public Builder expertResourceSetting(ExpertResourceSetting expertResourceSetting) {
this.expertResourceSetting = expertResourceSetting;
return this;
}
/**
* resourceSettingMode.
*/
public Builder resourceSettingMode(String resourceSettingMode) {
this.resourceSettingMode = resourceSettingMode;
return this;
}
public StreamingResourceSetting build() {
return new StreamingResourceSetting(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/SubFolder.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link SubFolder} extends {@link TeaModel}
*
* <p>SubFolder</p>
*/
public class SubFolder extends TeaModel {
@com.aliyun.core.annotation.NameInMap("folderId")
private String folderId;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
@com.aliyun.core.annotation.NameInMap("parentId")
private String parentId;
private SubFolder(Builder builder) {
this.folderId = builder.folderId;
this.name = builder.name;
this.parentId = builder.parentId;
}
public static Builder builder() {
return new Builder();
}
public static SubFolder create() {
return builder().build();
}
/**
* @return folderId
*/
public String getFolderId() {
return this.folderId;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return parentId
*/
public String getParentId() {
return this.parentId;
}
public static final class Builder {
private String folderId;
private String name;
private String parentId;
/**
* folderId.
*/
public Builder folderId(String folderId) {
this.folderId = folderId;
return this;
}
/**
* name.
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* parentId.
*/
public Builder parentId(String parentId) {
this.parentId = parentId;
return this;
}
public SubFolder build() {
return new SubFolder(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/Table.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link Table} extends {@link TeaModel}
*
* <p>Table</p>
*/
public class Table extends TeaModel {
@com.aliyun.core.annotation.NameInMap("comment")
private String comment;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
@com.aliyun.core.annotation.NameInMap("partitionKeys")
private java.util.List<String> partitionKeys;
@com.aliyun.core.annotation.NameInMap("properties")
private java.util.Map<String, ?> properties;
@com.aliyun.core.annotation.NameInMap("schema")
private Schema schema;
private Table(Builder builder) {
this.comment = builder.comment;
this.name = builder.name;
this.partitionKeys = builder.partitionKeys;
this.properties = builder.properties;
this.schema = builder.schema;
}
public static Builder builder() {
return new Builder();
}
public static Table create() {
return builder().build();
}
/**
* @return comment
*/
public String getComment() {
return this.comment;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return partitionKeys
*/
public java.util.List<String> getPartitionKeys() {
return this.partitionKeys;
}
/**
* @return properties
*/
public java.util.Map<String, ?> getProperties() {
return this.properties;
}
/**
* @return schema
*/
public Schema getSchema() {
return this.schema;
}
public static final class Builder {
private String comment;
private String name;
private java.util.List<String> partitionKeys;
private java.util.Map<String, ?> properties;
private Schema schema;
/**
* comment.
*/
public Builder comment(String comment) {
this.comment = comment;
return this;
}
/**
* name.
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* partitionKeys.
*/
public Builder partitionKeys(java.util.List<String> partitionKeys) {
this.partitionKeys = partitionKeys;
return this;
}
/**
* properties.
*/
public Builder properties(java.util.Map<String, ?> properties) {
this.properties = properties;
return this;
}
/**
* schema.
*/
public Builder schema(Schema schema) {
this.schema = schema;
return this;
}
public Table build() {
return new Table(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/TableColumn.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link TableColumn} extends {@link TeaModel}
*
* <p>TableColumn</p>
*/
public class TableColumn extends TeaModel {
@com.aliyun.core.annotation.NameInMap("expression")
private String expression;
@com.aliyun.core.annotation.NameInMap("metadataInfo")
private MetadataInfo metadataInfo;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
@com.aliyun.core.annotation.NameInMap("nullable")
private Boolean nullable;
@com.aliyun.core.annotation.NameInMap("type")
private String type;
private TableColumn(Builder builder) {
this.expression = builder.expression;
this.metadataInfo = builder.metadataInfo;
this.name = builder.name;
this.nullable = builder.nullable;
this.type = builder.type;
}
public static Builder builder() {
return new Builder();
}
public static TableColumn create() {
return builder().build();
}
/**
* @return expression
*/
public String getExpression() {
return this.expression;
}
/**
* @return metadataInfo
*/
public MetadataInfo getMetadataInfo() {
return this.metadataInfo;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return nullable
*/
public Boolean getNullable() {
return this.nullable;
}
/**
* @return type
*/
public String getType() {
return this.type;
}
public static final class Builder {
private String expression;
private MetadataInfo metadataInfo;
private String name;
private Boolean nullable;
private String type;
/**
* expression.
*/
public Builder expression(String expression) {
this.expression = expression;
return this;
}
/**
* metadataInfo.
*/
public Builder metadataInfo(MetadataInfo metadataInfo) {
this.metadataInfo = metadataInfo;
return this;
}
/**
* name.
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* nullable.
*/
public Builder nullable(Boolean nullable) {
this.nullable = nullable;
return this;
}
/**
* type.
*/
public Builder type(String type) {
this.type = type;
return this;
}
public TableColumn build() {
return new TableColumn(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/TableMeta.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link TableMeta} extends {@link TeaModel}
*
* <p>TableMeta</p>
*/
public class TableMeta extends TeaModel {
@com.aliyun.core.annotation.NameInMap("catalogName")
private String catalogName;
@com.aliyun.core.annotation.NameInMap("databaseName")
private String databaseName;
@com.aliyun.core.annotation.NameInMap("tableName")
private String tableName;
private TableMeta(Builder builder) {
this.catalogName = builder.catalogName;
this.databaseName = builder.databaseName;
this.tableName = builder.tableName;
}
public static Builder builder() {
return new Builder();
}
public static TableMeta create() {
return builder().build();
}
/**
* @return catalogName
*/
public String getCatalogName() {
return this.catalogName;
}
/**
* @return databaseName
*/
public String getDatabaseName() {
return this.databaseName;
}
/**
* @return tableName
*/
public String getTableName() {
return this.tableName;
}
public static final class Builder {
private String catalogName;
private String databaseName;
private String tableName;
/**
* catalogName.
*/
public Builder catalogName(String catalogName) {
this.catalogName = catalogName;
return this;
}
/**
* databaseName.
*/
public Builder databaseName(String databaseName) {
this.databaseName = databaseName;
return this;
}
/**
* tableName.
*/
public Builder tableName(String tableName) {
this.tableName = tableName;
return this;
}
public TableMeta build() {
return new TableMeta(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UdfArtifact.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UdfArtifact} extends {@link TeaModel}
*
* <p>UdfArtifact</p>
*/
public class UdfArtifact extends TeaModel {
@com.aliyun.core.annotation.NameInMap("artifactType")
private String artifactType;
@com.aliyun.core.annotation.NameInMap("createdAt")
private Long createdAt;
@com.aliyun.core.annotation.NameInMap("creator")
private String creator;
@com.aliyun.core.annotation.NameInMap("dependencyJarUris")
private java.util.List<String> dependencyJarUris;
@com.aliyun.core.annotation.NameInMap("jarUrl")
private String jarUrl;
@com.aliyun.core.annotation.NameInMap("modifiedAt")
private Long modifiedAt;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
@com.aliyun.core.annotation.NameInMap("namespace")
private String namespace;
@com.aliyun.core.annotation.NameInMap("udfClasses")
private java.util.List<UdfClass> udfClasses;
private UdfArtifact(Builder builder) {
this.artifactType = builder.artifactType;
this.createdAt = builder.createdAt;
this.creator = builder.creator;
this.dependencyJarUris = builder.dependencyJarUris;
this.jarUrl = builder.jarUrl;
this.modifiedAt = builder.modifiedAt;
this.name = builder.name;
this.namespace = builder.namespace;
this.udfClasses = builder.udfClasses;
}
public static Builder builder() {
return new Builder();
}
public static UdfArtifact create() {
return builder().build();
}
/**
* @return artifactType
*/
public String getArtifactType() {
return this.artifactType;
}
/**
* @return createdAt
*/
public Long getCreatedAt() {
return this.createdAt;
}
/**
* @return creator
*/
public String getCreator() {
return this.creator;
}
/**
* @return dependencyJarUris
*/
public java.util.List<String> getDependencyJarUris() {
return this.dependencyJarUris;
}
/**
* @return jarUrl
*/
public String getJarUrl() {
return this.jarUrl;
}
/**
* @return modifiedAt
*/
public Long getModifiedAt() {
return this.modifiedAt;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return namespace
*/
public String getNamespace() {
return this.namespace;
}
/**
* @return udfClasses
*/
public java.util.List<UdfClass> getUdfClasses() {
return this.udfClasses;
}
public static final class Builder {
private String artifactType;
private Long createdAt;
private String creator;
private java.util.List<String> dependencyJarUris;
private String jarUrl;
private Long modifiedAt;
private String name;
private String namespace;
private java.util.List<UdfClass> udfClasses;
/**
* artifactType.
*/
public Builder artifactType(String artifactType) {
this.artifactType = artifactType;
return this;
}
/**
* createdAt.
*/
public Builder createdAt(Long createdAt) {
this.createdAt = createdAt;
return this;
}
/**
* creator.
*/
public Builder creator(String creator) {
this.creator = creator;
return this;
}
/**
* dependencyJarUris.
*/
public Builder dependencyJarUris(java.util.List<String> dependencyJarUris) {
this.dependencyJarUris = dependencyJarUris;
return this;
}
/**
* jarUrl.
*/
public Builder jarUrl(String jarUrl) {
this.jarUrl = jarUrl;
return this;
}
/**
* modifiedAt.
*/
public Builder modifiedAt(Long modifiedAt) {
this.modifiedAt = modifiedAt;
return this;
}
/**
* name.
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* namespace.
*/
public Builder namespace(String namespace) {
this.namespace = namespace;
return this;
}
/**
* udfClasses.
*/
public Builder udfClasses(java.util.List<UdfClass> udfClasses) {
this.udfClasses = udfClasses;
return this;
}
public UdfArtifact build() {
return new UdfArtifact(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UdfClass.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UdfClass} extends {@link TeaModel}
*
* <p>UdfClass</p>
*/
public class UdfClass extends TeaModel {
@com.aliyun.core.annotation.NameInMap("className")
private String className;
@com.aliyun.core.annotation.NameInMap("classType")
private String classType;
@com.aliyun.core.annotation.NameInMap("functionNames")
private java.util.List<String> functionNames;
@com.aliyun.core.annotation.NameInMap("udfArtifactName")
private String udfArtifactName;
private UdfClass(Builder builder) {
this.className = builder.className;
this.classType = builder.classType;
this.functionNames = builder.functionNames;
this.udfArtifactName = builder.udfArtifactName;
}
public static Builder builder() {
return new Builder();
}
public static UdfClass create() {
return builder().build();
}
/**
* @return className
*/
public String getClassName() {
return this.className;
}
/**
* @return classType
*/
public String getClassType() {
return this.classType;
}
/**
* @return functionNames
*/
public java.util.List<String> getFunctionNames() {
return this.functionNames;
}
/**
* @return udfArtifactName
*/
public String getUdfArtifactName() {
return this.udfArtifactName;
}
public static final class Builder {
private String className;
private String classType;
private java.util.List<String> functionNames;
private String udfArtifactName;
/**
* className.
*/
public Builder className(String className) {
this.className = className;
return this;
}
/**
* classType.
*/
public Builder classType(String classType) {
this.classType = classType;
return this;
}
/**
* functionNames.
*/
public Builder functionNames(java.util.List<String> functionNames) {
this.functionNames = functionNames;
return this;
}
/**
* udfArtifactName.
*/
public Builder udfArtifactName(String udfArtifactName) {
this.udfArtifactName = udfArtifactName;
return this;
}
public UdfClass build() {
return new UdfClass(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UdfFunction.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UdfFunction} extends {@link TeaModel}
*
* <p>UdfFunction</p>
*/
public class UdfFunction extends TeaModel {
@com.aliyun.core.annotation.NameInMap("className")
private String className;
@com.aliyun.core.annotation.NameInMap("functionName")
private String functionName;
@com.aliyun.core.annotation.NameInMap("udfArtifactName")
private String udfArtifactName;
private UdfFunction(Builder builder) {
this.className = builder.className;
this.functionName = builder.functionName;
this.udfArtifactName = builder.udfArtifactName;
}
public static Builder builder() {
return new Builder();
}
public static UdfFunction create() {
return builder().build();
}
/**
* @return className
*/
public String getClassName() {
return this.className;
}
/**
* @return functionName
*/
public String getFunctionName() {
return this.functionName;
}
/**
* @return udfArtifactName
*/
public String getUdfArtifactName() {
return this.udfArtifactName;
}
public static final class Builder {
private String className;
private String functionName;
private String udfArtifactName;
/**
* className.
*/
public Builder className(String className) {
this.className = className;
return this;
}
/**
* functionName.
*/
public Builder functionName(String functionName) {
this.functionName = functionName;
return this;
}
/**
* udfArtifactName.
*/
public Builder udfArtifactName(String udfArtifactName) {
this.udfArtifactName = udfArtifactName;
return this;
}
public UdfFunction build() {
return new UdfFunction(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UpdateDeploymentDraftRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpdateDeploymentDraftRequest} extends {@link RequestModel}
*
* <p>UpdateDeploymentDraftRequest</p>
*/
public class UpdateDeploymentDraftRequest extends Request {
@com.aliyun.core.annotation.Path
@com.aliyun.core.annotation.NameInMap("namespace")
@com.aliyun.core.annotation.Validation(required = true)
private String namespace;
@com.aliyun.core.annotation.Path
@com.aliyun.core.annotation.NameInMap("deploymentDraftId")
@com.aliyun.core.annotation.Validation(required = true)
private String deploymentDraftId;
@com.aliyun.core.annotation.Body
@com.aliyun.core.annotation.NameInMap("body")
@com.aliyun.core.annotation.Validation(required = true)
private DeploymentDraft body;
@com.aliyun.core.annotation.Header
@com.aliyun.core.annotation.NameInMap("workspace")
@com.aliyun.core.annotation.Validation(required = true)
private String workspace;
private UpdateDeploymentDraftRequest(Builder builder) {
super(builder);
this.namespace = builder.namespace;
this.deploymentDraftId = builder.deploymentDraftId;
this.body = builder.body;
this.workspace = builder.workspace;
}
public static Builder builder() {
return new Builder();
}
public static UpdateDeploymentDraftRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return namespace
*/
public String getNamespace() {
return this.namespace;
}
/**
* @return deploymentDraftId
*/
public String getDeploymentDraftId() {
return this.deploymentDraftId;
}
/**
* @return body
*/
public DeploymentDraft getBody() {
return this.body;
}
/**
* @return workspace
*/
public String getWorkspace() {
return this.workspace;
}
public static final class Builder extends Request.Builder<UpdateDeploymentDraftRequest, Builder> {
private String namespace;
private String deploymentDraftId;
private DeploymentDraft body;
private String workspace;
private Builder() {
super();
}
private Builder(UpdateDeploymentDraftRequest request) {
super(request);
this.namespace = request.namespace;
this.deploymentDraftId = request.deploymentDraftId;
this.body = request.body;
this.workspace = request.workspace;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>default-namespace</p>
*/
public Builder namespace(String namespace) {
this.putPathParameter("namespace", namespace);
this.namespace = namespace;
return this;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>c84d73be-40ad-4627-8bdd-fa1eba51b234</p>
*/
public Builder deploymentDraftId(String deploymentDraftId) {
this.putPathParameter("deploymentDraftId", deploymentDraftId);
this.deploymentDraftId = deploymentDraftId;
return this;
}
/**
* <p>This parameter is required.</p>
*/
public Builder body(DeploymentDraft body) {
this.putBodyParameter("body", body);
this.body = body;
return this;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>a14bd5d90a****</p>
*/
public Builder workspace(String workspace) {
this.putHeaderParameter("workspace", workspace);
this.workspace = workspace;
return this;
}
@Override
public UpdateDeploymentDraftRequest build() {
return new UpdateDeploymentDraftRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UpdateDeploymentDraftResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpdateDeploymentDraftResponse} extends {@link TeaModel}
*
* <p>UpdateDeploymentDraftResponse</p>
*/
public class UpdateDeploymentDraftResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private UpdateDeploymentDraftResponseBody body;
private UpdateDeploymentDraftResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static UpdateDeploymentDraftResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public UpdateDeploymentDraftResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<UpdateDeploymentDraftResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(UpdateDeploymentDraftResponseBody body);
@Override
UpdateDeploymentDraftResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<UpdateDeploymentDraftResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private UpdateDeploymentDraftResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(UpdateDeploymentDraftResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(UpdateDeploymentDraftResponseBody body) {
this.body = body;
return this;
}
@Override
public UpdateDeploymentDraftResponse build() {
return new UpdateDeploymentDraftResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UpdateDeploymentDraftResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpdateDeploymentDraftResponseBody} extends {@link TeaModel}
*
* <p>UpdateDeploymentDraftResponseBody</p>
*/
public class UpdateDeploymentDraftResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("data")
private DeploymentDraft data;
@com.aliyun.core.annotation.NameInMap("errorCode")
private String errorCode;
@com.aliyun.core.annotation.NameInMap("errorMessage")
private String errorMessage;
@com.aliyun.core.annotation.NameInMap("httpCode")
private Integer httpCode;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("success")
private Boolean success;
private UpdateDeploymentDraftResponseBody(Builder builder) {
this.data = builder.data;
this.errorCode = builder.errorCode;
this.errorMessage = builder.errorMessage;
this.httpCode = builder.httpCode;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static UpdateDeploymentDraftResponseBody create() {
return builder().build();
}
/**
* @return data
*/
public DeploymentDraft getData() {
return this.data;
}
/**
* @return errorCode
*/
public String getErrorCode() {
return this.errorCode;
}
/**
* @return errorMessage
*/
public String getErrorMessage() {
return this.errorMessage;
}
/**
* @return httpCode
*/
public Integer getHttpCode() {
return this.httpCode;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private DeploymentDraft data;
private String errorCode;
private String errorMessage;
private Integer httpCode;
private String requestId;
private Boolean success;
/**
* data.
*/
public Builder data(DeploymentDraft data) {
this.data = data;
return this;
}
/**
* errorCode.
*/
public Builder errorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
/**
* errorMessage.
*/
public Builder errorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
/**
* httpCode.
*/
public Builder httpCode(Integer httpCode) {
this.httpCode = httpCode;
return this;
}
/**
* requestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* success.
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public UpdateDeploymentDraftResponseBody build() {
return new UpdateDeploymentDraftResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UpdateDeploymentRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpdateDeploymentRequest} extends {@link RequestModel}
*
* <p>UpdateDeploymentRequest</p>
*/
public class UpdateDeploymentRequest extends Request {
@com.aliyun.core.annotation.Path
@com.aliyun.core.annotation.NameInMap("namespace")
@com.aliyun.core.annotation.Validation(required = true)
private String namespace;
@com.aliyun.core.annotation.Path
@com.aliyun.core.annotation.NameInMap("deploymentId")
@com.aliyun.core.annotation.Validation(required = true)
private String deploymentId;
@com.aliyun.core.annotation.Body
@com.aliyun.core.annotation.NameInMap("body")
@com.aliyun.core.annotation.Validation(required = true)
private Deployment body;
@com.aliyun.core.annotation.Header
@com.aliyun.core.annotation.NameInMap("workspace")
@com.aliyun.core.annotation.Validation(required = true)
private String workspace;
private UpdateDeploymentRequest(Builder builder) {
super(builder);
this.namespace = builder.namespace;
this.deploymentId = builder.deploymentId;
this.body = builder.body;
this.workspace = builder.workspace;
}
public static Builder builder() {
return new Builder();
}
public static UpdateDeploymentRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return namespace
*/
public String getNamespace() {
return this.namespace;
}
/**
* @return deploymentId
*/
public String getDeploymentId() {
return this.deploymentId;
}
/**
* @return body
*/
public Deployment getBody() {
return this.body;
}
/**
* @return workspace
*/
public String getWorkspace() {
return this.workspace;
}
public static final class Builder extends Request.Builder<UpdateDeploymentRequest, Builder> {
private String namespace;
private String deploymentId;
private Deployment body;
private String workspace;
private Builder() {
super();
}
private Builder(UpdateDeploymentRequest request) {
super(request);
this.namespace = request.namespace;
this.deploymentId = request.deploymentId;
this.body = request.body;
this.workspace = request.workspace;
}
/**
* <p>The name of the namespace.</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>default-namespace</p>
*/
public Builder namespace(String namespace) {
this.putPathParameter("namespace", namespace);
this.namespace = namespace;
return this;
}
/**
* <p>The deployment ID.</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>58718c99-3b29-4c5e-93bb-c9fc4ec6****</p>
*/
public Builder deploymentId(String deploymentId) {
this.putPathParameter("deploymentId", deploymentId);
this.deploymentId = deploymentId;
return this;
}
/**
* <p>The information about the deployment that you want to update.</p>
* <p>This parameter is required.</p>
*/
public Builder body(Deployment body) {
this.putBodyParameter("body", body);
this.body = body;
return this;
}
/**
* <p>The workspace ID.</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>a14bd5d90a****</p>
*/
public Builder workspace(String workspace) {
this.putHeaderParameter("workspace", workspace);
this.workspace = workspace;
return this;
}
@Override
public UpdateDeploymentRequest build() {
return new UpdateDeploymentRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UpdateDeploymentResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpdateDeploymentResponse} extends {@link TeaModel}
*
* <p>UpdateDeploymentResponse</p>
*/
public class UpdateDeploymentResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private UpdateDeploymentResponseBody body;
private UpdateDeploymentResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static UpdateDeploymentResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public UpdateDeploymentResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<UpdateDeploymentResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(UpdateDeploymentResponseBody body);
@Override
UpdateDeploymentResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<UpdateDeploymentResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private UpdateDeploymentResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(UpdateDeploymentResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(UpdateDeploymentResponseBody body) {
this.body = body;
return this;
}
@Override
public UpdateDeploymentResponse build() {
return new UpdateDeploymentResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UpdateDeploymentResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpdateDeploymentResponseBody} extends {@link TeaModel}
*
* <p>UpdateDeploymentResponseBody</p>
*/
public class UpdateDeploymentResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("data")
private Deployment data;
@com.aliyun.core.annotation.NameInMap("errorCode")
private String errorCode;
@com.aliyun.core.annotation.NameInMap("errorMessage")
private String errorMessage;
@com.aliyun.core.annotation.NameInMap("httpCode")
private Integer httpCode;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("success")
private Boolean success;
private UpdateDeploymentResponseBody(Builder builder) {
this.data = builder.data;
this.errorCode = builder.errorCode;
this.errorMessage = builder.errorMessage;
this.httpCode = builder.httpCode;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static UpdateDeploymentResponseBody create() {
return builder().build();
}
/**
* @return data
*/
public Deployment getData() {
return this.data;
}
/**
* @return errorCode
*/
public String getErrorCode() {
return this.errorCode;
}
/**
* @return errorMessage
*/
public String getErrorMessage() {
return this.errorMessage;
}
/**
* @return httpCode
*/
public Integer getHttpCode() {
return this.httpCode;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private Deployment data;
private String errorCode;
private String errorMessage;
private Integer httpCode;
private String requestId;
private Boolean success;
/**
* <ul>
* <li>If the value of success was true, the information about the deployment after the update was returned.</li>
* <li>If the value of success was false, a null value was returned.</li>
* </ul>
*/
public Builder data(Deployment data) {
this.data = data;
return this;
}
/**
* <ul>
* <li>If the value of success was false, an error code was returned.</li>
* <li>If the value of success was true, a null value was returned.</li>
* </ul>
*
* <strong>example:</strong>
* <p>""</p>
*/
public Builder errorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
/**
* <ul>
* <li>If the value of success was false, an error message was returned.</li>
* <li>If the value of success was true, a null value was returned.</li>
* </ul>
*
* <strong>example:</strong>
* <p>""</p>
*/
public Builder errorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
/**
* <p>The value was fixed to 200.</p>
*
* <strong>example:</strong>
* <p>200</p>
*/
public Builder httpCode(Integer httpCode) {
this.httpCode = httpCode;
return this;
}
/**
* <p>The request ID.</p>
*
* <strong>example:</strong>
* <p>CBC799F0-AS7S-1D30-8A4F-882ED4DD****</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Indicates whether the request was successful.</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public UpdateDeploymentResponseBody build() {
return new UpdateDeploymentResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UpdateDeploymentTargetRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpdateDeploymentTargetRequest} extends {@link RequestModel}
*
* <p>UpdateDeploymentTargetRequest</p>
*/
public class UpdateDeploymentTargetRequest extends Request {
@com.aliyun.core.annotation.Path
@com.aliyun.core.annotation.NameInMap("namespace")
@com.aliyun.core.annotation.Validation(required = true)
private String namespace;
@com.aliyun.core.annotation.Path
@com.aliyun.core.annotation.NameInMap("deploymentTargetName")
@com.aliyun.core.annotation.Validation(required = true)
private String deploymentTargetName;
@com.aliyun.core.annotation.Body
@com.aliyun.core.annotation.NameInMap("body")
private ResourceSpec body;
@com.aliyun.core.annotation.Header
@com.aliyun.core.annotation.NameInMap("workspace")
@com.aliyun.core.annotation.Validation(required = true)
private String workspace;
private UpdateDeploymentTargetRequest(Builder builder) {
super(builder);
this.namespace = builder.namespace;
this.deploymentTargetName = builder.deploymentTargetName;
this.body = builder.body;
this.workspace = builder.workspace;
}
public static Builder builder() {
return new Builder();
}
public static UpdateDeploymentTargetRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return namespace
*/
public String getNamespace() {
return this.namespace;
}
/**
* @return deploymentTargetName
*/
public String getDeploymentTargetName() {
return this.deploymentTargetName;
}
/**
* @return body
*/
public ResourceSpec getBody() {
return this.body;
}
/**
* @return workspace
*/
public String getWorkspace() {
return this.workspace;
}
public static final class Builder extends Request.Builder<UpdateDeploymentTargetRequest, Builder> {
private String namespace;
private String deploymentTargetName;
private ResourceSpec body;
private String workspace;
private Builder() {
super();
}
private Builder(UpdateDeploymentTargetRequest request) {
super(request);
this.namespace = request.namespace;
this.deploymentTargetName = request.deploymentTargetName;
this.body = request.body;
this.workspace = request.workspace;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>default-namespace</p>
*/
public Builder namespace(String namespace) {
this.putPathParameter("namespace", namespace);
this.namespace = namespace;
return this;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>test-dt</p>
*/
public Builder deploymentTargetName(String deploymentTargetName) {
this.putPathParameter("deploymentTargetName", deploymentTargetName);
this.deploymentTargetName = deploymentTargetName;
return this;
}
/**
* body.
*/
public Builder body(ResourceSpec body) {
this.putBodyParameter("body", body);
this.body = body;
return this;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>a14bd5d90a****</p>
*/
public Builder workspace(String workspace) {
this.putHeaderParameter("workspace", workspace);
this.workspace = workspace;
return this;
}
@Override
public UpdateDeploymentTargetRequest build() {
return new UpdateDeploymentTargetRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UpdateDeploymentTargetResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpdateDeploymentTargetResponse} extends {@link TeaModel}
*
* <p>UpdateDeploymentTargetResponse</p>
*/
public class UpdateDeploymentTargetResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private UpdateDeploymentTargetResponseBody body;
private UpdateDeploymentTargetResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static UpdateDeploymentTargetResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public UpdateDeploymentTargetResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<UpdateDeploymentTargetResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(UpdateDeploymentTargetResponseBody body);
@Override
UpdateDeploymentTargetResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<UpdateDeploymentTargetResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private UpdateDeploymentTargetResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(UpdateDeploymentTargetResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(UpdateDeploymentTargetResponseBody body) {
this.body = body;
return this;
}
@Override
public UpdateDeploymentTargetResponse build() {
return new UpdateDeploymentTargetResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UpdateDeploymentTargetResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpdateDeploymentTargetResponseBody} extends {@link TeaModel}
*
* <p>UpdateDeploymentTargetResponseBody</p>
*/
public class UpdateDeploymentTargetResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("data")
private DeploymentTarget data;
@com.aliyun.core.annotation.NameInMap("errorCode")
private String errorCode;
@com.aliyun.core.annotation.NameInMap("errorMessage")
private String errorMessage;
@com.aliyun.core.annotation.NameInMap("httpCode")
private Integer httpCode;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("success")
private Boolean success;
private UpdateDeploymentTargetResponseBody(Builder builder) {
this.data = builder.data;
this.errorCode = builder.errorCode;
this.errorMessage = builder.errorMessage;
this.httpCode = builder.httpCode;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static UpdateDeploymentTargetResponseBody create() {
return builder().build();
}
/**
* @return data
*/
public DeploymentTarget getData() {
return this.data;
}
/**
* @return errorCode
*/
public String getErrorCode() {
return this.errorCode;
}
/**
* @return errorMessage
*/
public String getErrorMessage() {
return this.errorMessage;
}
/**
* @return httpCode
*/
public Integer getHttpCode() {
return this.httpCode;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private DeploymentTarget data;
private String errorCode;
private String errorMessage;
private Integer httpCode;
private String requestId;
private Boolean success;
/**
* data.
*/
public Builder data(DeploymentTarget data) {
this.data = data;
return this;
}
/**
* errorCode.
*/
public Builder errorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
/**
* errorMessage.
*/
public Builder errorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
/**
* httpCode.
*/
public Builder httpCode(Integer httpCode) {
this.httpCode = httpCode;
return this;
}
/**
* requestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* success.
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public UpdateDeploymentTargetResponseBody build() {
return new UpdateDeploymentTargetResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UpdateFolderRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpdateFolderRequest} extends {@link RequestModel}
*
* <p>UpdateFolderRequest</p>
*/
public class UpdateFolderRequest extends Request {
@com.aliyun.core.annotation.Path
@com.aliyun.core.annotation.NameInMap("namespace")
@com.aliyun.core.annotation.Validation(required = true)
private String namespace;
@com.aliyun.core.annotation.Path
@com.aliyun.core.annotation.NameInMap("folderId")
@com.aliyun.core.annotation.Validation(required = true)
private String folderId;
@com.aliyun.core.annotation.Body
@com.aliyun.core.annotation.NameInMap("body")
@com.aliyun.core.annotation.Validation(required = true)
private Folder body;
@com.aliyun.core.annotation.Header
@com.aliyun.core.annotation.NameInMap("workspace")
@com.aliyun.core.annotation.Validation(required = true)
private String workspace;
private UpdateFolderRequest(Builder builder) {
super(builder);
this.namespace = builder.namespace;
this.folderId = builder.folderId;
this.body = builder.body;
this.workspace = builder.workspace;
}
public static Builder builder() {
return new Builder();
}
public static UpdateFolderRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return namespace
*/
public String getNamespace() {
return this.namespace;
}
/**
* @return folderId
*/
public String getFolderId() {
return this.folderId;
}
/**
* @return body
*/
public Folder getBody() {
return this.body;
}
/**
* @return workspace
*/
public String getWorkspace() {
return this.workspace;
}
public static final class Builder extends Request.Builder<UpdateFolderRequest, Builder> {
private String namespace;
private String folderId;
private Folder body;
private String workspace;
private Builder() {
super();
}
private Builder(UpdateFolderRequest request) {
super(request);
this.namespace = request.namespace;
this.folderId = request.folderId;
this.body = request.body;
this.workspace = request.workspace;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>default-namespace</p>
*/
public Builder namespace(String namespace) {
this.putPathParameter("namespace", namespace);
this.namespace = namespace;
return this;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>13803</p>
*/
public Builder folderId(String folderId) {
this.putPathParameter("folderId", folderId);
this.folderId = folderId;
return this;
}
/**
* <p>This parameter is required.</p>
*/
public Builder body(Folder body) {
this.putBodyParameter("body", body);
this.body = body;
return this;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>f89a0c1ca8****</p>
*/
public Builder workspace(String workspace) {
this.putHeaderParameter("workspace", workspace);
this.workspace = workspace;
return this;
}
@Override
public UpdateFolderRequest build() {
return new UpdateFolderRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UpdateFolderResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpdateFolderResponse} extends {@link TeaModel}
*
* <p>UpdateFolderResponse</p>
*/
public class UpdateFolderResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private UpdateFolderResponseBody body;
private UpdateFolderResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static UpdateFolderResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public UpdateFolderResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<UpdateFolderResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(UpdateFolderResponseBody body);
@Override
UpdateFolderResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<UpdateFolderResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private UpdateFolderResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(UpdateFolderResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(UpdateFolderResponseBody body) {
this.body = body;
return this;
}
@Override
public UpdateFolderResponse build() {
return new UpdateFolderResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UpdateFolderResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpdateFolderResponseBody} extends {@link TeaModel}
*
* <p>UpdateFolderResponseBody</p>
*/
public class UpdateFolderResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("data")
private Folder data;
@com.aliyun.core.annotation.NameInMap("errorCode")
private String errorCode;
@com.aliyun.core.annotation.NameInMap("errorMessage")
private String errorMessage;
@com.aliyun.core.annotation.NameInMap("httpCode")
private Integer httpCode;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("success")
private Boolean success;
private UpdateFolderResponseBody(Builder builder) {
this.data = builder.data;
this.errorCode = builder.errorCode;
this.errorMessage = builder.errorMessage;
this.httpCode = builder.httpCode;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static UpdateFolderResponseBody create() {
return builder().build();
}
/**
* @return data
*/
public Folder getData() {
return this.data;
}
/**
* @return errorCode
*/
public String getErrorCode() {
return this.errorCode;
}
/**
* @return errorMessage
*/
public String getErrorMessage() {
return this.errorMessage;
}
/**
* @return httpCode
*/
public Integer getHttpCode() {
return this.httpCode;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private Folder data;
private String errorCode;
private String errorMessage;
private Integer httpCode;
private String requestId;
private Boolean success;
/**
* data.
*/
public Builder data(Folder data) {
this.data = data;
return this;
}
/**
* errorCode.
*/
public Builder errorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
/**
* errorMessage.
*/
public Builder errorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
/**
* httpCode.
*/
public Builder httpCode(Integer httpCode) {
this.httpCode = httpCode;
return this;
}
/**
* requestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* success.
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public UpdateFolderResponseBody build() {
return new UpdateFolderResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UpdateJobConfigParam.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpdateJobConfigParam} extends {@link TeaModel}
*
* <p>UpdateJobConfigParam</p>
*/
public class UpdateJobConfigParam extends TeaModel {
@com.aliyun.core.annotation.NameInMap("newFlinkConf")
private java.util.Map<String, ?> newFlinkConf;
private UpdateJobConfigParam(Builder builder) {
this.newFlinkConf = builder.newFlinkConf;
}
public static Builder builder() {
return new Builder();
}
public static UpdateJobConfigParam create() {
return builder().build();
}
/**
* @return newFlinkConf
*/
public java.util.Map<String, ?> getNewFlinkConf() {
return this.newFlinkConf;
}
public static final class Builder {
private java.util.Map<String, ?> newFlinkConf;
/**
* newFlinkConf.
*/
public Builder newFlinkConf(java.util.Map<String, ?> newFlinkConf) {
this.newFlinkConf = newFlinkConf;
return this;
}
public UpdateJobConfigParam build() {
return new UpdateJobConfigParam(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UpdateMemberRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpdateMemberRequest} extends {@link RequestModel}
*
* <p>UpdateMemberRequest</p>
*/
public class UpdateMemberRequest extends Request {
@com.aliyun.core.annotation.Path
@com.aliyun.core.annotation.NameInMap("namespace")
@com.aliyun.core.annotation.Validation(required = true)
private String namespace;
@com.aliyun.core.annotation.Body
@com.aliyun.core.annotation.NameInMap("body")
private Member body;
@com.aliyun.core.annotation.Header
@com.aliyun.core.annotation.NameInMap("workspace")
@com.aliyun.core.annotation.Validation(required = true)
private String workspace;
private UpdateMemberRequest(Builder builder) {
super(builder);
this.namespace = builder.namespace;
this.body = builder.body;
this.workspace = builder.workspace;
}
public static Builder builder() {
return new Builder();
}
public static UpdateMemberRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return namespace
*/
public String getNamespace() {
return this.namespace;
}
/**
* @return body
*/
public Member getBody() {
return this.body;
}
/**
* @return workspace
*/
public String getWorkspace() {
return this.workspace;
}
public static final class Builder extends Request.Builder<UpdateMemberRequest, Builder> {
private String namespace;
private Member body;
private String workspace;
private Builder() {
super();
}
private Builder(UpdateMemberRequest request) {
super(request);
this.namespace = request.namespace;
this.body = request.body;
this.workspace = request.workspace;
}
/**
* <p>The name of the namespace.</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>default-namespace</p>
*/
public Builder namespace(String namespace) {
this.putPathParameter("namespace", namespace);
this.namespace = namespace;
return this;
}
/**
* <p>The permission information about the member.</p>
*/
public Builder body(Member body) {
this.putBodyParameter("body", body);
this.body = body;
return this;
}
/**
* <p>The workspace ID.</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>a14bd5d90a****</p>
*/
public Builder workspace(String workspace) {
this.putHeaderParameter("workspace", workspace);
this.workspace = workspace;
return this;
}
@Override
public UpdateMemberRequest build() {
return new UpdateMemberRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UpdateMemberResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpdateMemberResponse} extends {@link TeaModel}
*
* <p>UpdateMemberResponse</p>
*/
public class UpdateMemberResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private UpdateMemberResponseBody body;
private UpdateMemberResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static UpdateMemberResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public UpdateMemberResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<UpdateMemberResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(UpdateMemberResponseBody body);
@Override
UpdateMemberResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<UpdateMemberResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private UpdateMemberResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(UpdateMemberResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(UpdateMemberResponseBody body) {
this.body = body;
return this;
}
@Override
public UpdateMemberResponse build() {
return new UpdateMemberResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UpdateMemberResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpdateMemberResponseBody} extends {@link TeaModel}
*
* <p>UpdateMemberResponseBody</p>
*/
public class UpdateMemberResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("data")
private Member data;
@com.aliyun.core.annotation.NameInMap("errorCode")
private String errorCode;
@com.aliyun.core.annotation.NameInMap("errorMessage")
private String errorMessage;
@com.aliyun.core.annotation.NameInMap("httpCode")
private Integer httpCode;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("success")
private Boolean success;
private UpdateMemberResponseBody(Builder builder) {
this.data = builder.data;
this.errorCode = builder.errorCode;
this.errorMessage = builder.errorMessage;
this.httpCode = builder.httpCode;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static UpdateMemberResponseBody create() {
return builder().build();
}
/**
* @return data
*/
public Member getData() {
return this.data;
}
/**
* @return errorCode
*/
public String getErrorCode() {
return this.errorCode;
}
/**
* @return errorMessage
*/
public String getErrorMessage() {
return this.errorMessage;
}
/**
* @return httpCode
*/
public Integer getHttpCode() {
return this.httpCode;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private Member data;
private String errorCode;
private String errorMessage;
private Integer httpCode;
private String requestId;
private Boolean success;
/**
* <p>If the value of success was true, the member that was created was returned. If the value of success was false, a null value was returned.</p>
*/
public Builder data(Member data) {
this.data = data;
return this;
}
/**
* <ul>
* <li>If the value of success was false, an error code was returned.</li>
* <li>If the value of success was true, a null value was returned.</li>
* </ul>
*
* <strong>example:</strong>
* <p>""</p>
*/
public Builder errorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
/**
* <ul>
* <li>If the value of success was false, an error message was returned.</li>
* <li>If the value of success was true, a null value was returned.</li>
* </ul>
*
* <strong>example:</strong>
* <p>""</p>
*/
public Builder errorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
/**
* <p>The status code returned. The value was fixed to 200. The status code 200 indicates that the request was successful.</p>
*
* <strong>example:</strong>
* <p>200</p>
*/
public Builder httpCode(Integer httpCode) {
this.httpCode = httpCode;
return this;
}
/**
* <p>The request ID.</p>
*
* <strong>example:</strong>
* <p>CBC799F0-AS7S-1D30-8A4F-882ED4DD****</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Indicates whether the request was successful.</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public UpdateMemberResponseBody build() {
return new UpdateMemberResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UpdateScheduledPlanRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpdateScheduledPlanRequest} extends {@link RequestModel}
*
* <p>UpdateScheduledPlanRequest</p>
*/
public class UpdateScheduledPlanRequest extends Request {
@com.aliyun.core.annotation.Path
@com.aliyun.core.annotation.NameInMap("namespace")
@com.aliyun.core.annotation.Validation(required = true)
private String namespace;
@com.aliyun.core.annotation.Path
@com.aliyun.core.annotation.NameInMap("scheduledPlanId")
@com.aliyun.core.annotation.Validation(required = true)
private String scheduledPlanId;
@com.aliyun.core.annotation.Body
@com.aliyun.core.annotation.NameInMap("body")
private ScheduledPlan body;
@com.aliyun.core.annotation.Header
@com.aliyun.core.annotation.NameInMap("workspace")
@com.aliyun.core.annotation.Validation(required = true)
private String workspace;
private UpdateScheduledPlanRequest(Builder builder) {
super(builder);
this.namespace = builder.namespace;
this.scheduledPlanId = builder.scheduledPlanId;
this.body = builder.body;
this.workspace = builder.workspace;
}
public static Builder builder() {
return new Builder();
}
public static UpdateScheduledPlanRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return namespace
*/
public String getNamespace() {
return this.namespace;
}
/**
* @return scheduledPlanId
*/
public String getScheduledPlanId() {
return this.scheduledPlanId;
}
/**
* @return body
*/
public ScheduledPlan getBody() {
return this.body;
}
/**
* @return workspace
*/
public String getWorkspace() {
return this.workspace;
}
public static final class Builder extends Request.Builder<UpdateScheduledPlanRequest, Builder> {
private String namespace;
private String scheduledPlanId;
private ScheduledPlan body;
private String workspace;
private Builder() {
super();
}
private Builder(UpdateScheduledPlanRequest request) {
super(request);
this.namespace = request.namespace;
this.scheduledPlanId = request.scheduledPlanId;
this.body = request.body;
this.workspace = request.workspace;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>default-namespace</p>
*/
public Builder namespace(String namespace) {
this.putPathParameter("namespace", namespace);
this.namespace = namespace;
return this;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>f420c2e7-6d3f-4683-81d0-3ea8585*****</p>
*/
public Builder scheduledPlanId(String scheduledPlanId) {
this.putPathParameter("scheduledPlanId", scheduledPlanId);
this.scheduledPlanId = scheduledPlanId;
return this;
}
/**
* body.
*/
public Builder body(ScheduledPlan body) {
this.putBodyParameter("body", body);
this.body = body;
return this;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>a14bd5d90a****</p>
*/
public Builder workspace(String workspace) {
this.putHeaderParameter("workspace", workspace);
this.workspace = workspace;
return this;
}
@Override
public UpdateScheduledPlanRequest build() {
return new UpdateScheduledPlanRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UpdateScheduledPlanResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpdateScheduledPlanResponse} extends {@link TeaModel}
*
* <p>UpdateScheduledPlanResponse</p>
*/
public class UpdateScheduledPlanResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private UpdateScheduledPlanResponseBody body;
private UpdateScheduledPlanResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static UpdateScheduledPlanResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public UpdateScheduledPlanResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<UpdateScheduledPlanResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(UpdateScheduledPlanResponseBody body);
@Override
UpdateScheduledPlanResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<UpdateScheduledPlanResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private UpdateScheduledPlanResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(UpdateScheduledPlanResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(UpdateScheduledPlanResponseBody body) {
this.body = body;
return this;
}
@Override
public UpdateScheduledPlanResponse build() {
return new UpdateScheduledPlanResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UpdateScheduledPlanResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpdateScheduledPlanResponseBody} extends {@link TeaModel}
*
* <p>UpdateScheduledPlanResponseBody</p>
*/
public class UpdateScheduledPlanResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("data")
private ScheduledPlan data;
@com.aliyun.core.annotation.NameInMap("errorCode")
private String errorCode;
@com.aliyun.core.annotation.NameInMap("errorMessage")
private String errorMessage;
@com.aliyun.core.annotation.NameInMap("httpCode")
private Integer httpCode;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("success")
private Boolean success;
private UpdateScheduledPlanResponseBody(Builder builder) {
this.data = builder.data;
this.errorCode = builder.errorCode;
this.errorMessage = builder.errorMessage;
this.httpCode = builder.httpCode;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static UpdateScheduledPlanResponseBody create() {
return builder().build();
}
/**
* @return data
*/
public ScheduledPlan getData() {
return this.data;
}
/**
* @return errorCode
*/
public String getErrorCode() {
return this.errorCode;
}
/**
* @return errorMessage
*/
public String getErrorMessage() {
return this.errorMessage;
}
/**
* @return httpCode
*/
public Integer getHttpCode() {
return this.httpCode;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private ScheduledPlan data;
private String errorCode;
private String errorMessage;
private Integer httpCode;
private String requestId;
private Boolean success;
/**
* data.
*/
public Builder data(ScheduledPlan data) {
this.data = data;
return this;
}
/**
* errorCode.
*/
public Builder errorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
/**
* errorMessage.
*/
public Builder errorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
/**
* httpCode.
*/
public Builder httpCode(Integer httpCode) {
this.httpCode = httpCode;
return this;
}
/**
* requestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* success.
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public UpdateScheduledPlanResponseBody build() {
return new UpdateScheduledPlanResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UpdateSessionClusterRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpdateSessionClusterRequest} extends {@link RequestModel}
*
* <p>UpdateSessionClusterRequest</p>
*/
public class UpdateSessionClusterRequest extends Request {
@com.aliyun.core.annotation.Path
@com.aliyun.core.annotation.NameInMap("namespace")
@com.aliyun.core.annotation.Validation(required = true)
private String namespace;
@com.aliyun.core.annotation.Path
@com.aliyun.core.annotation.NameInMap("sessionClusterName")
@com.aliyun.core.annotation.Validation(required = true)
private String sessionClusterName;
@com.aliyun.core.annotation.Body
@com.aliyun.core.annotation.NameInMap("body")
private SessionCluster body;
@com.aliyun.core.annotation.Header
@com.aliyun.core.annotation.NameInMap("workspace")
@com.aliyun.core.annotation.Validation(required = true)
private String workspace;
private UpdateSessionClusterRequest(Builder builder) {
super(builder);
this.namespace = builder.namespace;
this.sessionClusterName = builder.sessionClusterName;
this.body = builder.body;
this.workspace = builder.workspace;
}
public static Builder builder() {
return new Builder();
}
public static UpdateSessionClusterRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return namespace
*/
public String getNamespace() {
return this.namespace;
}
/**
* @return sessionClusterName
*/
public String getSessionClusterName() {
return this.sessionClusterName;
}
/**
* @return body
*/
public SessionCluster getBody() {
return this.body;
}
/**
* @return workspace
*/
public String getWorkspace() {
return this.workspace;
}
public static final class Builder extends Request.Builder<UpdateSessionClusterRequest, Builder> {
private String namespace;
private String sessionClusterName;
private SessionCluster body;
private String workspace;
private Builder() {
super();
}
private Builder(UpdateSessionClusterRequest request) {
super(request);
this.namespace = request.namespace;
this.sessionClusterName = request.sessionClusterName;
this.body = request.body;
this.workspace = request.workspace;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>default-namespace</p>
*/
public Builder namespace(String namespace) {
this.putPathParameter("namespace", namespace);
this.namespace = namespace;
return this;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>test-session</p>
*/
public Builder sessionClusterName(String sessionClusterName) {
this.putPathParameter("sessionClusterName", sessionClusterName);
this.sessionClusterName = sessionClusterName;
return this;
}
/**
* body.
*/
public Builder body(SessionCluster body) {
this.putBodyParameter("body", body);
this.body = body;
return this;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>710d6a64d8c34d</p>
*/
public Builder workspace(String workspace) {
this.putHeaderParameter("workspace", workspace);
this.workspace = workspace;
return this;
}
@Override
public UpdateSessionClusterRequest build() {
return new UpdateSessionClusterRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UpdateSessionClusterResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpdateSessionClusterResponse} extends {@link TeaModel}
*
* <p>UpdateSessionClusterResponse</p>
*/
public class UpdateSessionClusterResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private UpdateSessionClusterResponseBody body;
private UpdateSessionClusterResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static UpdateSessionClusterResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public UpdateSessionClusterResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<UpdateSessionClusterResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(UpdateSessionClusterResponseBody body);
@Override
UpdateSessionClusterResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<UpdateSessionClusterResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private UpdateSessionClusterResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(UpdateSessionClusterResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(UpdateSessionClusterResponseBody body) {
this.body = body;
return this;
}
@Override
public UpdateSessionClusterResponse build() {
return new UpdateSessionClusterResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UpdateSessionClusterResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpdateSessionClusterResponseBody} extends {@link TeaModel}
*
* <p>UpdateSessionClusterResponseBody</p>
*/
public class UpdateSessionClusterResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("data")
private SessionCluster data;
@com.aliyun.core.annotation.NameInMap("errorCode")
private String errorCode;
@com.aliyun.core.annotation.NameInMap("errorMessage")
private String errorMessage;
@com.aliyun.core.annotation.NameInMap("httpCode")
private Integer httpCode;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("success")
private Boolean success;
private UpdateSessionClusterResponseBody(Builder builder) {
this.data = builder.data;
this.errorCode = builder.errorCode;
this.errorMessage = builder.errorMessage;
this.httpCode = builder.httpCode;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static UpdateSessionClusterResponseBody create() {
return builder().build();
}
/**
* @return data
*/
public SessionCluster getData() {
return this.data;
}
/**
* @return errorCode
*/
public String getErrorCode() {
return this.errorCode;
}
/**
* @return errorMessage
*/
public String getErrorMessage() {
return this.errorMessage;
}
/**
* @return httpCode
*/
public Integer getHttpCode() {
return this.httpCode;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private SessionCluster data;
private String errorCode;
private String errorMessage;
private Integer httpCode;
private String requestId;
private Boolean success;
/**
* data.
*/
public Builder data(SessionCluster data) {
this.data = data;
return this;
}
/**
* errorCode.
*/
public Builder errorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
/**
* errorMessage.
*/
public Builder errorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
/**
* httpCode.
*/
public Builder httpCode(Integer httpCode) {
this.httpCode = httpCode;
return this;
}
/**
* requestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* success.
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public UpdateSessionClusterResponseBody build() {
return new UpdateSessionClusterResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UpdateUdfArtifactRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpdateUdfArtifactRequest} extends {@link RequestModel}
*
* <p>UpdateUdfArtifactRequest</p>
*/
public class UpdateUdfArtifactRequest extends Request {
@com.aliyun.core.annotation.Path
@com.aliyun.core.annotation.NameInMap("namespace")
@com.aliyun.core.annotation.Validation(required = true)
private String namespace;
@com.aliyun.core.annotation.Path
@com.aliyun.core.annotation.NameInMap("udfArtifactName")
@com.aliyun.core.annotation.Validation(required = true)
private String udfArtifactName;
@com.aliyun.core.annotation.Body
@com.aliyun.core.annotation.NameInMap("body")
@com.aliyun.core.annotation.Validation(required = true)
private UdfArtifact body;
@com.aliyun.core.annotation.Header
@com.aliyun.core.annotation.NameInMap("workspace")
@com.aliyun.core.annotation.Validation(required = true)
private String workspace;
private UpdateUdfArtifactRequest(Builder builder) {
super(builder);
this.namespace = builder.namespace;
this.udfArtifactName = builder.udfArtifactName;
this.body = builder.body;
this.workspace = builder.workspace;
}
public static Builder builder() {
return new Builder();
}
public static UpdateUdfArtifactRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return namespace
*/
public String getNamespace() {
return this.namespace;
}
/**
* @return udfArtifactName
*/
public String getUdfArtifactName() {
return this.udfArtifactName;
}
/**
* @return body
*/
public UdfArtifact getBody() {
return this.body;
}
/**
* @return workspace
*/
public String getWorkspace() {
return this.workspace;
}
public static final class Builder extends Request.Builder<UpdateUdfArtifactRequest, Builder> {
private String namespace;
private String udfArtifactName;
private UdfArtifact body;
private String workspace;
private Builder() {
super();
}
private Builder(UpdateUdfArtifactRequest request) {
super(request);
this.namespace = request.namespace;
this.udfArtifactName = request.udfArtifactName;
this.body = request.body;
this.workspace = request.workspace;
}
/**
* <p>The name of the namespace.</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>default-namespace</p>
*/
public Builder namespace(String namespace) {
this.putPathParameter("namespace", namespace);
this.namespace = namespace;
return this;
}
/**
* <p>The name of the JAR file of the UDF.</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>test-udf</p>
*/
public Builder udfArtifactName(String udfArtifactName) {
this.putPathParameter("udfArtifactName", udfArtifactName);
this.udfArtifactName = udfArtifactName;
return this;
}
/**
* <p>The details of the JAR file of the UDF.</p>
* <p>This parameter is required.</p>
*/
public Builder body(UdfArtifact body) {
this.putBodyParameter("body", body);
this.body = body;
return this;
}
/**
* <p>The workspace ID.</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>a14bd5d90a****</p>
*/
public Builder workspace(String workspace) {
this.putHeaderParameter("workspace", workspace);
this.workspace = workspace;
return this;
}
@Override
public UpdateUdfArtifactRequest build() {
return new UpdateUdfArtifactRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UpdateUdfArtifactResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpdateUdfArtifactResponse} extends {@link TeaModel}
*
* <p>UpdateUdfArtifactResponse</p>
*/
public class UpdateUdfArtifactResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private UpdateUdfArtifactResponseBody body;
private UpdateUdfArtifactResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static UpdateUdfArtifactResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public UpdateUdfArtifactResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<UpdateUdfArtifactResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(UpdateUdfArtifactResponseBody body);
@Override
UpdateUdfArtifactResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<UpdateUdfArtifactResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private UpdateUdfArtifactResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(UpdateUdfArtifactResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(UpdateUdfArtifactResponseBody body) {
this.body = body;
return this;
}
@Override
public UpdateUdfArtifactResponse build() {
return new UpdateUdfArtifactResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UpdateUdfArtifactResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpdateUdfArtifactResponseBody} extends {@link TeaModel}
*
* <p>UpdateUdfArtifactResponseBody</p>
*/
public class UpdateUdfArtifactResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("data")
private UpdateUdfArtifactResult data;
@com.aliyun.core.annotation.NameInMap("errorCode")
private String errorCode;
@com.aliyun.core.annotation.NameInMap("errorMessage")
private String errorMessage;
@com.aliyun.core.annotation.NameInMap("httpCode")
private Integer httpCode;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("success")
private Boolean success;
private UpdateUdfArtifactResponseBody(Builder builder) {
this.data = builder.data;
this.errorCode = builder.errorCode;
this.errorMessage = builder.errorMessage;
this.httpCode = builder.httpCode;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static UpdateUdfArtifactResponseBody create() {
return builder().build();
}
/**
* @return data
*/
public UpdateUdfArtifactResult getData() {
return this.data;
}
/**
* @return errorCode
*/
public String getErrorCode() {
return this.errorCode;
}
/**
* @return errorMessage
*/
public String getErrorMessage() {
return this.errorMessage;
}
/**
* @return httpCode
*/
public Integer getHttpCode() {
return this.httpCode;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private UpdateUdfArtifactResult data;
private String errorCode;
private String errorMessage;
private Integer httpCode;
private String requestId;
private Boolean success;
/**
* <p>The result of updating the JAR file of the UDF.</p>
*/
public Builder data(UpdateUdfArtifactResult data) {
this.data = data;
return this;
}
/**
* <ul>
* <li>If the value of success was false, an error code was returned.</li>
* <li>If the value of success was true, a null value was returned.</li>
* </ul>
*
* <strong>example:</strong>
* <p>""</p>
*/
public Builder errorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
/**
* <ul>
* <li>If the value of success was false, an error message was returned.</li>
* <li>If the value of success was true, a null value was returned.</li>
* </ul>
*
* <strong>example:</strong>
* <p>""</p>
*/
public Builder errorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
/**
* <p>The status code returned. The value was fixed to 200. The status code 200 indicates that the request was successful.</p>
*
* <strong>example:</strong>
* <p>200</p>
*/
public Builder httpCode(Integer httpCode) {
this.httpCode = httpCode;
return this;
}
/**
* <p>The request ID.</p>
*
* <strong>example:</strong>
* <p>CBC799F0-ABCD-1D30-8A4F-882ED4DD****</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Indicates whether the request was successful.</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public UpdateUdfArtifactResponseBody build() {
return new UpdateUdfArtifactResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UpdateUdfArtifactResult.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpdateUdfArtifactResult} extends {@link TeaModel}
*
* <p>UpdateUdfArtifactResult</p>
*/
public class UpdateUdfArtifactResult extends TeaModel {
@com.aliyun.core.annotation.NameInMap("collidingClasses")
private java.util.List<UdfClass> collidingClasses;
@com.aliyun.core.annotation.NameInMap("message")
private String message;
@com.aliyun.core.annotation.NameInMap("missingClasses")
private java.util.List<UdfClass> missingClasses;
@com.aliyun.core.annotation.NameInMap("udfArtifact")
private UdfArtifact udfArtifact;
@com.aliyun.core.annotation.NameInMap("updateSuccess")
private Boolean updateSuccess;
private UpdateUdfArtifactResult(Builder builder) {
this.collidingClasses = builder.collidingClasses;
this.message = builder.message;
this.missingClasses = builder.missingClasses;
this.udfArtifact = builder.udfArtifact;
this.updateSuccess = builder.updateSuccess;
}
public static Builder builder() {
return new Builder();
}
public static UpdateUdfArtifactResult create() {
return builder().build();
}
/**
* @return collidingClasses
*/
public java.util.List<UdfClass> getCollidingClasses() {
return this.collidingClasses;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return missingClasses
*/
public java.util.List<UdfClass> getMissingClasses() {
return this.missingClasses;
}
/**
* @return udfArtifact
*/
public UdfArtifact getUdfArtifact() {
return this.udfArtifact;
}
/**
* @return updateSuccess
*/
public Boolean getUpdateSuccess() {
return this.updateSuccess;
}
public static final class Builder {
private java.util.List<UdfClass> collidingClasses;
private String message;
private java.util.List<UdfClass> missingClasses;
private UdfArtifact udfArtifact;
private Boolean updateSuccess;
/**
* collidingClasses.
*/
public Builder collidingClasses(java.util.List<UdfClass> collidingClasses) {
this.collidingClasses = collidingClasses;
return this;
}
/**
* message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* missingClasses.
*/
public Builder missingClasses(java.util.List<UdfClass> missingClasses) {
this.missingClasses = missingClasses;
return this;
}
/**
* udfArtifact.
*/
public Builder udfArtifact(UdfArtifact udfArtifact) {
this.udfArtifact = udfArtifact;
return this;
}
/**
* updateSuccess.
*/
public Builder updateSuccess(Boolean updateSuccess) {
this.updateSuccess = updateSuccess;
return this;
}
public UpdateUdfArtifactResult build() {
return new UpdateUdfArtifactResult(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UpdateVariableRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpdateVariableRequest} extends {@link RequestModel}
*
* <p>UpdateVariableRequest</p>
*/
public class UpdateVariableRequest extends Request {
@com.aliyun.core.annotation.Path
@com.aliyun.core.annotation.NameInMap("namespace")
@com.aliyun.core.annotation.Validation(required = true)
private String namespace;
@com.aliyun.core.annotation.Path
@com.aliyun.core.annotation.NameInMap("name")
@com.aliyun.core.annotation.Validation(required = true)
private String name;
@com.aliyun.core.annotation.Body
@com.aliyun.core.annotation.NameInMap("body")
@com.aliyun.core.annotation.Validation(required = true)
private Variable body;
@com.aliyun.core.annotation.Header
@com.aliyun.core.annotation.NameInMap("workspace")
@com.aliyun.core.annotation.Validation(required = true)
private String workspace;
private UpdateVariableRequest(Builder builder) {
super(builder);
this.namespace = builder.namespace;
this.name = builder.name;
this.body = builder.body;
this.workspace = builder.workspace;
}
public static Builder builder() {
return new Builder();
}
public static UpdateVariableRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return namespace
*/
public String getNamespace() {
return this.namespace;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return body
*/
public Variable getBody() {
return this.body;
}
/**
* @return workspace
*/
public String getWorkspace() {
return this.workspace;
}
public static final class Builder extends Request.Builder<UpdateVariableRequest, Builder> {
private String namespace;
private String name;
private Variable body;
private String workspace;
private Builder() {
super();
}
private Builder(UpdateVariableRequest request) {
super(request);
this.namespace = request.namespace;
this.name = request.name;
this.body = request.body;
this.workspace = request.workspace;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>default-namespace</p>
*/
public Builder namespace(String namespace) {
this.putPathParameter("namespace", namespace);
this.namespace = namespace;
return this;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>vvp_ds_0522</p>
*/
public Builder name(String name) {
this.putPathParameter("name", name);
this.name = name;
return this;
}
/**
* <p>This parameter is required.</p>
*/
public Builder body(Variable body) {
this.putBodyParameter("body", body);
this.body = body;
return this;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>a14bd5d90a****</p>
*/
public Builder workspace(String workspace) {
this.putHeaderParameter("workspace", workspace);
this.workspace = workspace;
return this;
}
@Override
public UpdateVariableRequest build() {
return new UpdateVariableRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UpdateVariableResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpdateVariableResponse} extends {@link TeaModel}
*
* <p>UpdateVariableResponse</p>
*/
public class UpdateVariableResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private UpdateVariableResponseBody body;
private UpdateVariableResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static UpdateVariableResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public UpdateVariableResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<UpdateVariableResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(UpdateVariableResponseBody body);
@Override
UpdateVariableResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<UpdateVariableResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private UpdateVariableResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(UpdateVariableResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(UpdateVariableResponseBody body) {
this.body = body;
return this;
}
@Override
public UpdateVariableResponse build() {
return new UpdateVariableResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/UpdateVariableResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link UpdateVariableResponseBody} extends {@link TeaModel}
*
* <p>UpdateVariableResponseBody</p>
*/
public class UpdateVariableResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("accessDeniedDetail")
private String accessDeniedDetail;
@com.aliyun.core.annotation.NameInMap("data")
private Variable data;
@com.aliyun.core.annotation.NameInMap("errorCode")
private String errorCode;
@com.aliyun.core.annotation.NameInMap("errorMessage")
private String errorMessage;
@com.aliyun.core.annotation.NameInMap("httpCode")
private Integer httpCode;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("success")
private Boolean success;
private UpdateVariableResponseBody(Builder builder) {
this.accessDeniedDetail = builder.accessDeniedDetail;
this.data = builder.data;
this.errorCode = builder.errorCode;
this.errorMessage = builder.errorMessage;
this.httpCode = builder.httpCode;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static UpdateVariableResponseBody create() {
return builder().build();
}
/**
* @return accessDeniedDetail
*/
public String getAccessDeniedDetail() {
return this.accessDeniedDetail;
}
/**
* @return data
*/
public Variable getData() {
return this.data;
}
/**
* @return errorCode
*/
public String getErrorCode() {
return this.errorCode;
}
/**
* @return errorMessage
*/
public String getErrorMessage() {
return this.errorMessage;
}
/**
* @return httpCode
*/
public Integer getHttpCode() {
return this.httpCode;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String accessDeniedDetail;
private Variable data;
private String errorCode;
private String errorMessage;
private Integer httpCode;
private String requestId;
private Boolean success;
/**
* accessDeniedDetail.
*/
public Builder accessDeniedDetail(String accessDeniedDetail) {
this.accessDeniedDetail = accessDeniedDetail;
return this;
}
/**
* data.
*/
public Builder data(Variable data) {
this.data = data;
return this;
}
/**
* errorCode.
*/
public Builder errorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
/**
* errorMessage.
*/
public Builder errorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
/**
* httpCode.
*/
public Builder httpCode(Integer httpCode) {
this.httpCode = httpCode;
return this;
}
/**
* requestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* success.
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public UpdateVariableResponseBody build() {
return new UpdateVariableResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/ValidateSqlStatementRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link ValidateSqlStatementRequest} extends {@link RequestModel}
*
* <p>ValidateSqlStatementRequest</p>
*/
public class ValidateSqlStatementRequest extends Request {
@com.aliyun.core.annotation.Path
@com.aliyun.core.annotation.NameInMap("namespace")
@com.aliyun.core.annotation.Validation(required = true)
private String namespace;
@com.aliyun.core.annotation.Body
@com.aliyun.core.annotation.NameInMap("body")
@com.aliyun.core.annotation.Validation(required = true)
private SqlStatementWithContext body;
@com.aliyun.core.annotation.Header
@com.aliyun.core.annotation.NameInMap("workspace")
@com.aliyun.core.annotation.Validation(required = true)
private String workspace;
private ValidateSqlStatementRequest(Builder builder) {
super(builder);
this.namespace = builder.namespace;
this.body = builder.body;
this.workspace = builder.workspace;
}
public static Builder builder() {
return new Builder();
}
public static ValidateSqlStatementRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return namespace
*/
public String getNamespace() {
return this.namespace;
}
/**
* @return body
*/
public SqlStatementWithContext getBody() {
return this.body;
}
/**
* @return workspace
*/
public String getWorkspace() {
return this.workspace;
}
public static final class Builder extends Request.Builder<ValidateSqlStatementRequest, Builder> {
private String namespace;
private SqlStatementWithContext body;
private String workspace;
private Builder() {
super();
}
private Builder(ValidateSqlStatementRequest request) {
super(request);
this.namespace = request.namespace;
this.body = request.body;
this.workspace = request.workspace;
}
/**
* <p>The name of the namespace.</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>default-namespace</p>
*/
public Builder namespace(String namespace) {
this.putPathParameter("namespace", namespace);
this.namespace = namespace;
return this;
}
/**
* <p>The content of the code that you want to verify.</p>
* <p>This parameter is required.</p>
*/
public Builder body(SqlStatementWithContext body) {
this.putBodyParameter("body", body);
this.body = body;
return this;
}
/**
* <p>The workspace ID.</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>a14bd5d90a****</p>
*/
public Builder workspace(String workspace) {
this.putHeaderParameter("workspace", workspace);
this.workspace = workspace;
return this;
}
@Override
public ValidateSqlStatementRequest build() {
return new ValidateSqlStatementRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/ValidateSqlStatementResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link ValidateSqlStatementResponse} extends {@link TeaModel}
*
* <p>ValidateSqlStatementResponse</p>
*/
public class ValidateSqlStatementResponse extends Response {
@com.aliyun.core.annotation.NameInMap("headers")
private java.util.Map<String, String> headers;
@com.aliyun.core.annotation.NameInMap("statusCode")
private Integer statusCode;
@com.aliyun.core.annotation.NameInMap("body")
private ValidateSqlStatementResponseBody body;
private ValidateSqlStatementResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static ValidateSqlStatementResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public ValidateSqlStatementResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<ValidateSqlStatementResponse, Builder> {
Builder headers(java.util.Map<String, String> headers);
Builder statusCode(Integer statusCode);
Builder body(ValidateSqlStatementResponseBody body);
@Override
ValidateSqlStatementResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<ValidateSqlStatementResponse, Builder>
implements Builder {
private java.util.Map<String, String> headers;
private Integer statusCode;
private ValidateSqlStatementResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(ValidateSqlStatementResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(ValidateSqlStatementResponseBody body) {
this.body = body;
return this;
}
@Override
public ValidateSqlStatementResponse build() {
return new ValidateSqlStatementResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/ValidateSqlStatementResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link ValidateSqlStatementResponseBody} extends {@link TeaModel}
*
* <p>ValidateSqlStatementResponseBody</p>
*/
public class ValidateSqlStatementResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("data")
private SqlStatementValidationResult data;
@com.aliyun.core.annotation.NameInMap("errorCode")
private String errorCode;
@com.aliyun.core.annotation.NameInMap("errorMessage")
private String errorMessage;
@com.aliyun.core.annotation.NameInMap("httpCode")
private Integer httpCode;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("success")
private Boolean success;
private ValidateSqlStatementResponseBody(Builder builder) {
this.data = builder.data;
this.errorCode = builder.errorCode;
this.errorMessage = builder.errorMessage;
this.httpCode = builder.httpCode;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static ValidateSqlStatementResponseBody create() {
return builder().build();
}
/**
* @return data
*/
public SqlStatementValidationResult getData() {
return this.data;
}
/**
* @return errorCode
*/
public String getErrorCode() {
return this.errorCode;
}
/**
* @return errorMessage
*/
public String getErrorMessage() {
return this.errorMessage;
}
/**
* @return httpCode
*/
public Integer getHttpCode() {
return this.httpCode;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private SqlStatementValidationResult data;
private String errorCode;
private String errorMessage;
private Integer httpCode;
private String requestId;
private Boolean success;
/**
* <p>The returned data, which represents the details of SQL validation results.</p>
*/
public Builder data(SqlStatementValidationResult data) {
this.data = data;
return this;
}
/**
* <p>If the value of success was false, an error code was returned. If the value of success was true, a null value was returned.</p>
*
* <strong>example:</strong>
* <p>""</p>
*/
public Builder errorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
/**
* <p>If the value of success was false, an error message was returned. If the value of success was true, a null value was returned.</p>
*
* <strong>example:</strong>
* <p>""</p>
*/
public Builder errorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
/**
* <p>The status code returned. The value was fixed to 200.</p>
*
* <strong>example:</strong>
* <p>200</p>
*/
public Builder httpCode(Integer httpCode) {
this.httpCode = httpCode;
return this;
}
/**
* <p>The request ID.</p>
*
* <strong>example:</strong>
* <p>CBC799F0-****-1D30-8A4F-882ED4DD5E02</p>
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* <p>Indicates whether the request was successful.</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public ValidateSqlStatementResponseBody build() {
return new ValidateSqlStatementResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/ValidateStatementResult.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link ValidateStatementResult} extends {@link TeaModel}
*
* <p>ValidateStatementResult</p>
*/
public class ValidateStatementResult extends TeaModel {
@com.aliyun.core.annotation.NameInMap("errorDetails")
private ValidationErrorDetails errorDetails;
@com.aliyun.core.annotation.NameInMap("validationResult")
private String validationResult;
private ValidateStatementResult(Builder builder) {
this.errorDetails = builder.errorDetails;
this.validationResult = builder.validationResult;
}
public static Builder builder() {
return new Builder();
}
public static ValidateStatementResult create() {
return builder().build();
}
/**
* @return errorDetails
*/
public ValidationErrorDetails getErrorDetails() {
return this.errorDetails;
}
/**
* @return validationResult
*/
public String getValidationResult() {
return this.validationResult;
}
public static final class Builder {
private ValidationErrorDetails errorDetails;
private String validationResult;
/**
* errorDetails.
*/
public Builder errorDetails(ValidationErrorDetails errorDetails) {
this.errorDetails = errorDetails;
return this;
}
/**
* validationResult.
*/
public Builder validationResult(String validationResult) {
this.validationResult = validationResult;
return this;
}
public ValidateStatementResult build() {
return new ValidateStatementResult(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/ValidationErrorDetails.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link ValidationErrorDetails} extends {@link TeaModel}
*
* <p>ValidationErrorDetails</p>
*/
public class ValidationErrorDetails extends TeaModel {
@com.aliyun.core.annotation.NameInMap("columnNumber")
private String columnNumber;
@com.aliyun.core.annotation.NameInMap("endColumnNumber")
private String endColumnNumber;
@com.aliyun.core.annotation.NameInMap("endLineNumber")
private String endLineNumber;
@com.aliyun.core.annotation.NameInMap("lineNumber")
private String lineNumber;
@com.aliyun.core.annotation.NameInMap("message")
private String message;
private ValidationErrorDetails(Builder builder) {
this.columnNumber = builder.columnNumber;
this.endColumnNumber = builder.endColumnNumber;
this.endLineNumber = builder.endLineNumber;
this.lineNumber = builder.lineNumber;
this.message = builder.message;
}
public static Builder builder() {
return new Builder();
}
public static ValidationErrorDetails create() {
return builder().build();
}
/**
* @return columnNumber
*/
public String getColumnNumber() {
return this.columnNumber;
}
/**
* @return endColumnNumber
*/
public String getEndColumnNumber() {
return this.endColumnNumber;
}
/**
* @return endLineNumber
*/
public String getEndLineNumber() {
return this.endLineNumber;
}
/**
* @return lineNumber
*/
public String getLineNumber() {
return this.lineNumber;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
public static final class Builder {
private String columnNumber;
private String endColumnNumber;
private String endLineNumber;
private String lineNumber;
private String message;
/**
* columnNumber.
*/
public Builder columnNumber(String columnNumber) {
this.columnNumber = columnNumber;
return this;
}
/**
* endColumnNumber.
*/
public Builder endColumnNumber(String endColumnNumber) {
this.endColumnNumber = endColumnNumber;
return this;
}
/**
* endLineNumber.
*/
public Builder endLineNumber(String endLineNumber) {
this.endLineNumber = endLineNumber;
return this;
}
/**
* lineNumber.
*/
public Builder lineNumber(String lineNumber) {
this.lineNumber = lineNumber;
return this;
}
/**
* message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
public ValidationErrorDetails build() {
return new ValidationErrorDetails(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/Variable.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link Variable} extends {@link TeaModel}
*
* <p>Variable</p>
*/
public class Variable extends TeaModel {
@com.aliyun.core.annotation.NameInMap("description")
private String description;
@com.aliyun.core.annotation.NameInMap("kind")
@com.aliyun.core.annotation.Validation(required = true)
private String kind;
@com.aliyun.core.annotation.NameInMap("name")
@com.aliyun.core.annotation.Validation(required = true)
private String name;
@com.aliyun.core.annotation.NameInMap("value")
@com.aliyun.core.annotation.Validation(required = true)
private String value;
private Variable(Builder builder) {
this.description = builder.description;
this.kind = builder.kind;
this.name = builder.name;
this.value = builder.value;
}
public static Builder builder() {
return new Builder();
}
public static Variable create() {
return builder().build();
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return kind
*/
public String getKind() {
return this.kind;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return value
*/
public String getValue() {
return this.value;
}
public static final class Builder {
private String description;
private String kind;
private String name;
private String value;
/**
* description.
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>Plain</p>
*/
public Builder kind(String kind) {
this.kind = kind;
return this;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>variableName</p>
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>variableValue</p>
*/
public Builder value(String value) {
this.value = value;
return this;
}
public Variable build() {
return new Variable(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718 | java-sources/com/aliyun/alibabacloud-ververica20220718/1.0.11/com/aliyun/sdk/service/ververica20220718/models/WatermarkSpec.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ververica20220718.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link WatermarkSpec} extends {@link TeaModel}
*
* <p>WatermarkSpec</p>
*/
public class WatermarkSpec extends TeaModel {
@com.aliyun.core.annotation.NameInMap("column")
private String column;
@com.aliyun.core.annotation.NameInMap("watermarkExpression")
private String watermarkExpression;
private WatermarkSpec(Builder builder) {
this.column = builder.column;
this.watermarkExpression = builder.watermarkExpression;
}
public static Builder builder() {
return new Builder();
}
public static WatermarkSpec create() {
return builder().build();
}
/**
* @return column
*/
public String getColumn() {
return this.column;
}
/**
* @return watermarkExpression
*/
public String getWatermarkExpression() {
return this.watermarkExpression;
}
public static final class Builder {
private String column;
private String watermarkExpression;
/**
* column.
*/
public Builder column(String column) {
this.column = column;
return this;
}
/**
* watermarkExpression.
*/
public Builder watermarkExpression(String watermarkExpression) {
this.watermarkExpression = watermarkExpression;
return this;
}
public WatermarkSpec build() {
return new WatermarkSpec(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/AsyncClient.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930;
import com.aliyun.core.utils.SdkAutoCloseable;
import com.aliyun.sdk.service.viapi20210930.models.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import java.util.concurrent.CompletableFuture;
public interface AsyncClient extends SdkAutoCloseable {
static DefaultAsyncClientBuilder builder() {
return new DefaultAsyncClientBuilder();
}
static AsyncClient create() {
return builder().build();
}
CompletableFuture<CheckServiceLinkedRoleForDeletingResponse> checkServiceLinkedRoleForDeleting(CheckServiceLinkedRoleForDeletingRequest request);
CompletableFuture<CreateAiStoreBucketResponse> createAiStoreBucket(CreateAiStoreBucketRequest request);
CompletableFuture<CreateAiStoreReceiveConfigResponse> createAiStoreReceiveConfig(CreateAiStoreReceiveConfigRequest request);
CompletableFuture<CreateAiStoreUserTaskResponse> createAiStoreUserTask(CreateAiStoreUserTaskRequest request);
CompletableFuture<DeleteAiStoreUserTaskResponse> deleteAiStoreUserTask(DeleteAiStoreUserTaskRequest request);
CompletableFuture<DisableAiStoreUserTaskResponse> disableAiStoreUserTask(DisableAiStoreUserTaskRequest request);
CompletableFuture<EnableAiStoreUserTaskResponse> enableAiStoreUserTask(EnableAiStoreUserTaskRequest request);
CompletableFuture<GetAiStoreReceiveConfigResponse> getAiStoreReceiveConfig(GetAiStoreReceiveConfigRequest request);
CompletableFuture<GetAiStoreUserTaskResponse> getAiStoreUserTask(GetAiStoreUserTaskRequest request);
CompletableFuture<GetAiStoreUserTaskByNameResponse> getAiStoreUserTaskByName(GetAiStoreUserTaskByNameRequest request);
CompletableFuture<ListAiStoreBucketsResponse> listAiStoreBuckets(ListAiStoreBucketsRequest request);
CompletableFuture<QueryAiStoreApiTreeResponse> queryAiStoreApiTree(QueryAiStoreApiTreeRequest request);
CompletableFuture<QueryAiStoreRegionsResponse> queryAiStoreRegions(QueryAiStoreRegionsRequest request);
CompletableFuture<QueryAiStoreUserTaskPageResponse> queryAiStoreUserTaskPage(QueryAiStoreUserTaskPageRequest request);
CompletableFuture<UpdateAiStoreUserTaskResponse> updateAiStoreUserTask(UpdateAiStoreUserTaskRequest request);
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/DefaultAsyncClient.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930;
import com.aliyun.core.http.*;
import com.aliyun.sdk.service.viapi20210930.models.*;
import darabonba.core.utils.*;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import java.util.concurrent.CompletableFuture;
/**
* <p>Main client.</p>
*/
public final class DefaultAsyncClient implements AsyncClient {
protected final String product;
protected final String version;
protected final String endpointRule;
protected final java.util.Map<String, String> endpointMap;
protected final TeaRequest REQUEST;
protected final TeaAsyncHandler handler;
protected DefaultAsyncClient(ClientConfiguration configuration) {
this.handler = new TeaAsyncHandler(configuration);
this.product = "viapi";
this.version = "2021-09-30";
this.endpointRule = "";
this.endpointMap = new java.util.HashMap<>();
this.REQUEST = TeaRequest.create().setProduct(product).setEndpointRule(endpointRule).setEndpointMap(endpointMap).setVersion(version);
}
@Override
public void close() {
this.handler.close();
}
@Override
public CompletableFuture<CheckServiceLinkedRoleForDeletingResponse> checkServiceLinkedRoleForDeleting(CheckServiceLinkedRoleForDeletingRequest request) {
try {
this.handler.validateRequestModel(request);
TeaRequest teaRequest = REQUEST.copy().setStyle(RequestStyle.RPC).setAction("CheckServiceLinkedRoleForDeleting").setMethod(HttpMethod.POST).setPathRegex("/").setBodyType(BodyType.JSON).setBodyIsForm(false).setReqBodyType(BodyType.JSON).formModel(request);
ClientExecutionParams params = new ClientExecutionParams().withInput(request).withRequest(teaRequest).withOutput(CheckServiceLinkedRoleForDeletingResponse.create());
return this.handler.execute(params);
} catch (Exception e) {
CompletableFuture<CheckServiceLinkedRoleForDeletingResponse> future = new CompletableFuture<>();
future.completeExceptionally(e);
return future;
}
}
@Override
public CompletableFuture<CreateAiStoreBucketResponse> createAiStoreBucket(CreateAiStoreBucketRequest request) {
try {
this.handler.validateRequestModel(request);
TeaRequest teaRequest = REQUEST.copy().setStyle(RequestStyle.RPC).setAction("CreateAiStoreBucket").setMethod(HttpMethod.POST).setPathRegex("/").setBodyType(BodyType.JSON).setBodyIsForm(true).setReqBodyType(BodyType.FORM).formModel(request);
ClientExecutionParams params = new ClientExecutionParams().withInput(request).withRequest(teaRequest).withOutput(CreateAiStoreBucketResponse.create());
return this.handler.execute(params);
} catch (Exception e) {
CompletableFuture<CreateAiStoreBucketResponse> future = new CompletableFuture<>();
future.completeExceptionally(e);
return future;
}
}
@Override
public CompletableFuture<CreateAiStoreReceiveConfigResponse> createAiStoreReceiveConfig(CreateAiStoreReceiveConfigRequest request) {
try {
this.handler.validateRequestModel(request);
TeaRequest teaRequest = REQUEST.copy().setStyle(RequestStyle.RPC).setAction("CreateAiStoreReceiveConfig").setMethod(HttpMethod.POST).setPathRegex("/").setBodyType(BodyType.JSON).setBodyIsForm(true).setReqBodyType(BodyType.FORM).formModel(request);
ClientExecutionParams params = new ClientExecutionParams().withInput(request).withRequest(teaRequest).withOutput(CreateAiStoreReceiveConfigResponse.create());
return this.handler.execute(params);
} catch (Exception e) {
CompletableFuture<CreateAiStoreReceiveConfigResponse> future = new CompletableFuture<>();
future.completeExceptionally(e);
return future;
}
}
@Override
public CompletableFuture<CreateAiStoreUserTaskResponse> createAiStoreUserTask(CreateAiStoreUserTaskRequest request) {
try {
this.handler.validateRequestModel(request);
TeaRequest teaRequest = REQUEST.copy().setStyle(RequestStyle.RPC).setAction("CreateAiStoreUserTask").setMethod(HttpMethod.POST).setPathRegex("/").setBodyType(BodyType.JSON).setBodyIsForm(true).setReqBodyType(BodyType.FORM).formModel(request);
ClientExecutionParams params = new ClientExecutionParams().withInput(request).withRequest(teaRequest).withOutput(CreateAiStoreUserTaskResponse.create());
return this.handler.execute(params);
} catch (Exception e) {
CompletableFuture<CreateAiStoreUserTaskResponse> future = new CompletableFuture<>();
future.completeExceptionally(e);
return future;
}
}
@Override
public CompletableFuture<DeleteAiStoreUserTaskResponse> deleteAiStoreUserTask(DeleteAiStoreUserTaskRequest request) {
try {
this.handler.validateRequestModel(request);
TeaRequest teaRequest = REQUEST.copy().setStyle(RequestStyle.RPC).setAction("DeleteAiStoreUserTask").setMethod(HttpMethod.POST).setPathRegex("/").setBodyType(BodyType.JSON).setBodyIsForm(true).setReqBodyType(BodyType.FORM).formModel(request);
ClientExecutionParams params = new ClientExecutionParams().withInput(request).withRequest(teaRequest).withOutput(DeleteAiStoreUserTaskResponse.create());
return this.handler.execute(params);
} catch (Exception e) {
CompletableFuture<DeleteAiStoreUserTaskResponse> future = new CompletableFuture<>();
future.completeExceptionally(e);
return future;
}
}
@Override
public CompletableFuture<DisableAiStoreUserTaskResponse> disableAiStoreUserTask(DisableAiStoreUserTaskRequest request) {
try {
this.handler.validateRequestModel(request);
TeaRequest teaRequest = REQUEST.copy().setStyle(RequestStyle.RPC).setAction("DisableAiStoreUserTask").setMethod(HttpMethod.POST).setPathRegex("/").setBodyType(BodyType.JSON).setBodyIsForm(true).setReqBodyType(BodyType.FORM).formModel(request);
ClientExecutionParams params = new ClientExecutionParams().withInput(request).withRequest(teaRequest).withOutput(DisableAiStoreUserTaskResponse.create());
return this.handler.execute(params);
} catch (Exception e) {
CompletableFuture<DisableAiStoreUserTaskResponse> future = new CompletableFuture<>();
future.completeExceptionally(e);
return future;
}
}
@Override
public CompletableFuture<EnableAiStoreUserTaskResponse> enableAiStoreUserTask(EnableAiStoreUserTaskRequest request) {
try {
this.handler.validateRequestModel(request);
TeaRequest teaRequest = REQUEST.copy().setStyle(RequestStyle.RPC).setAction("EnableAiStoreUserTask").setMethod(HttpMethod.POST).setPathRegex("/").setBodyType(BodyType.JSON).setBodyIsForm(true).setReqBodyType(BodyType.FORM).formModel(request);
ClientExecutionParams params = new ClientExecutionParams().withInput(request).withRequest(teaRequest).withOutput(EnableAiStoreUserTaskResponse.create());
return this.handler.execute(params);
} catch (Exception e) {
CompletableFuture<EnableAiStoreUserTaskResponse> future = new CompletableFuture<>();
future.completeExceptionally(e);
return future;
}
}
@Override
public CompletableFuture<GetAiStoreReceiveConfigResponse> getAiStoreReceiveConfig(GetAiStoreReceiveConfigRequest request) {
try {
this.handler.validateRequestModel(request);
TeaRequest teaRequest = REQUEST.copy().setStyle(RequestStyle.RPC).setAction("GetAiStoreReceiveConfig").setMethod(HttpMethod.POST).setPathRegex("/").setBodyType(BodyType.JSON).setBodyIsForm(true).setReqBodyType(BodyType.FORM).formModel(request);
ClientExecutionParams params = new ClientExecutionParams().withInput(request).withRequest(teaRequest).withOutput(GetAiStoreReceiveConfigResponse.create());
return this.handler.execute(params);
} catch (Exception e) {
CompletableFuture<GetAiStoreReceiveConfigResponse> future = new CompletableFuture<>();
future.completeExceptionally(e);
return future;
}
}
@Override
public CompletableFuture<GetAiStoreUserTaskResponse> getAiStoreUserTask(GetAiStoreUserTaskRequest request) {
try {
this.handler.validateRequestModel(request);
TeaRequest teaRequest = REQUEST.copy().setStyle(RequestStyle.RPC).setAction("GetAiStoreUserTask").setMethod(HttpMethod.POST).setPathRegex("/").setBodyType(BodyType.JSON).setBodyIsForm(true).setReqBodyType(BodyType.FORM).formModel(request);
ClientExecutionParams params = new ClientExecutionParams().withInput(request).withRequest(teaRequest).withOutput(GetAiStoreUserTaskResponse.create());
return this.handler.execute(params);
} catch (Exception e) {
CompletableFuture<GetAiStoreUserTaskResponse> future = new CompletableFuture<>();
future.completeExceptionally(e);
return future;
}
}
@Override
public CompletableFuture<GetAiStoreUserTaskByNameResponse> getAiStoreUserTaskByName(GetAiStoreUserTaskByNameRequest request) {
try {
this.handler.validateRequestModel(request);
TeaRequest teaRequest = REQUEST.copy().setStyle(RequestStyle.RPC).setAction("GetAiStoreUserTaskByName").setMethod(HttpMethod.POST).setPathRegex("/").setBodyType(BodyType.JSON).setBodyIsForm(true).setReqBodyType(BodyType.FORM).formModel(request);
ClientExecutionParams params = new ClientExecutionParams().withInput(request).withRequest(teaRequest).withOutput(GetAiStoreUserTaskByNameResponse.create());
return this.handler.execute(params);
} catch (Exception e) {
CompletableFuture<GetAiStoreUserTaskByNameResponse> future = new CompletableFuture<>();
future.completeExceptionally(e);
return future;
}
}
@Override
public CompletableFuture<ListAiStoreBucketsResponse> listAiStoreBuckets(ListAiStoreBucketsRequest request) {
try {
this.handler.validateRequestModel(request);
TeaRequest teaRequest = REQUEST.copy().setStyle(RequestStyle.RPC).setAction("ListAiStoreBuckets").setMethod(HttpMethod.POST).setPathRegex("/").setBodyType(BodyType.JSON).setBodyIsForm(true).setReqBodyType(BodyType.FORM).formModel(request);
ClientExecutionParams params = new ClientExecutionParams().withInput(request).withRequest(teaRequest).withOutput(ListAiStoreBucketsResponse.create());
return this.handler.execute(params);
} catch (Exception e) {
CompletableFuture<ListAiStoreBucketsResponse> future = new CompletableFuture<>();
future.completeExceptionally(e);
return future;
}
}
@Override
public CompletableFuture<QueryAiStoreApiTreeResponse> queryAiStoreApiTree(QueryAiStoreApiTreeRequest request) {
try {
this.handler.validateRequestModel(request);
TeaRequest teaRequest = REQUEST.copy().setStyle(RequestStyle.RPC).setAction("QueryAiStoreApiTree").setMethod(HttpMethod.POST).setPathRegex("/").setBodyType(BodyType.JSON).setBodyIsForm(false).setReqBodyType(BodyType.JSON).formModel(request);
ClientExecutionParams params = new ClientExecutionParams().withInput(request).withRequest(teaRequest).withOutput(QueryAiStoreApiTreeResponse.create());
return this.handler.execute(params);
} catch (Exception e) {
CompletableFuture<QueryAiStoreApiTreeResponse> future = new CompletableFuture<>();
future.completeExceptionally(e);
return future;
}
}
@Override
public CompletableFuture<QueryAiStoreRegionsResponse> queryAiStoreRegions(QueryAiStoreRegionsRequest request) {
try {
this.handler.validateRequestModel(request);
TeaRequest teaRequest = REQUEST.copy().setStyle(RequestStyle.RPC).setAction("QueryAiStoreRegions").setMethod(HttpMethod.POST).setPathRegex("/").setBodyType(BodyType.JSON).setBodyIsForm(false).setReqBodyType(BodyType.JSON).formModel(request);
ClientExecutionParams params = new ClientExecutionParams().withInput(request).withRequest(teaRequest).withOutput(QueryAiStoreRegionsResponse.create());
return this.handler.execute(params);
} catch (Exception e) {
CompletableFuture<QueryAiStoreRegionsResponse> future = new CompletableFuture<>();
future.completeExceptionally(e);
return future;
}
}
@Override
public CompletableFuture<QueryAiStoreUserTaskPageResponse> queryAiStoreUserTaskPage(QueryAiStoreUserTaskPageRequest request) {
try {
this.handler.validateRequestModel(request);
TeaRequest teaRequest = REQUEST.copy().setStyle(RequestStyle.RPC).setAction("QueryAiStoreUserTaskPage").setMethod(HttpMethod.POST).setPathRegex("/").setBodyType(BodyType.JSON).setBodyIsForm(false).setReqBodyType(BodyType.JSON).formModel(request);
ClientExecutionParams params = new ClientExecutionParams().withInput(request).withRequest(teaRequest).withOutput(QueryAiStoreUserTaskPageResponse.create());
return this.handler.execute(params);
} catch (Exception e) {
CompletableFuture<QueryAiStoreUserTaskPageResponse> future = new CompletableFuture<>();
future.completeExceptionally(e);
return future;
}
}
@Override
public CompletableFuture<UpdateAiStoreUserTaskResponse> updateAiStoreUserTask(UpdateAiStoreUserTaskRequest request) {
try {
this.handler.validateRequestModel(request);
TeaRequest teaRequest = REQUEST.copy().setStyle(RequestStyle.RPC).setAction("UpdateAiStoreUserTask").setMethod(HttpMethod.POST).setPathRegex("/").setBodyType(BodyType.JSON).setBodyIsForm(true).setReqBodyType(BodyType.FORM).formModel(request);
ClientExecutionParams params = new ClientExecutionParams().withInput(request).withRequest(teaRequest).withOutput(UpdateAiStoreUserTaskResponse.create());
return this.handler.execute(params);
} catch (Exception e) {
CompletableFuture<UpdateAiStoreUserTaskResponse> future = new CompletableFuture<>();
future.completeExceptionally(e);
return future;
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/DefaultAsyncClientBuilder.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930;
import com.aliyun.sdk.gateway.pop.BaseClientBuilder;
public final class DefaultAsyncClientBuilder extends BaseClientBuilder<DefaultAsyncClientBuilder, AsyncClient> {
@Override
protected String serviceName() {
return "viapi20210930";
}
@Override
protected final AsyncClient buildClient() {
return new DefaultAsyncClient(super.applyClientConfiguration());
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/AiStoreApiNode.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link AiStoreApiNode} extends {@link TeaModel}
*
* <p>AiStoreApiNode</p>
*/
public class AiStoreApiNode extends TeaModel {
@NameInMap("Apis")
private java.util.List < AiStoreUserTask > apis;
@NameInMap("Product")
private String product;
@NameInMap("ProductDesc")
private String productDesc;
private AiStoreApiNode(Builder builder) {
this.apis = builder.apis;
this.product = builder.product;
this.productDesc = builder.productDesc;
}
public static Builder builder() {
return new Builder();
}
public static AiStoreApiNode create() {
return builder().build();
}
/**
* @return apis
*/
public java.util.List < AiStoreUserTask > getApis() {
return this.apis;
}
/**
* @return product
*/
public String getProduct() {
return this.product;
}
/**
* @return productDesc
*/
public String getProductDesc() {
return this.productDesc;
}
public static final class Builder {
private java.util.List < AiStoreUserTask > apis;
private String product;
private String productDesc;
/**
* Apis.
*/
public Builder apis(java.util.List < AiStoreUserTask > apis) {
this.apis = apis;
return this;
}
/**
* Product.
*/
public Builder product(String product) {
this.product = product;
return this;
}
/**
* ProductDesc.
*/
public Builder productDesc(String productDesc) {
this.productDesc = productDesc;
return this;
}
public AiStoreApiNode build() {
return new AiStoreApiNode(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/AiStoreReceiveConfig.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link AiStoreReceiveConfig} extends {@link TeaModel}
*
* <p>AiStoreReceiveConfig</p>
*/
public class AiStoreReceiveConfig extends TeaModel {
@NameInMap("Custom")
private String custom;
@NameInMap("DingTalk")
private DingTalk dingTalk;
@NameInMap("EventBridge")
private EventBridge eventBridge;
@NameInMap("Http")
private Http http;
@NameInMap("Https")
private Https https;
@NameInMap("Mns")
private Mns mns;
@NameInMap("RocketMQ")
private RocketMQ rocketMQ;
private AiStoreReceiveConfig(Builder builder) {
this.custom = builder.custom;
this.dingTalk = builder.dingTalk;
this.eventBridge = builder.eventBridge;
this.http = builder.http;
this.https = builder.https;
this.mns = builder.mns;
this.rocketMQ = builder.rocketMQ;
}
public static Builder builder() {
return new Builder();
}
public static AiStoreReceiveConfig create() {
return builder().build();
}
/**
* @return custom
*/
public String getCustom() {
return this.custom;
}
/**
* @return dingTalk
*/
public DingTalk getDingTalk() {
return this.dingTalk;
}
/**
* @return eventBridge
*/
public EventBridge getEventBridge() {
return this.eventBridge;
}
/**
* @return http
*/
public Http getHttp() {
return this.http;
}
/**
* @return https
*/
public Https getHttps() {
return this.https;
}
/**
* @return mns
*/
public Mns getMns() {
return this.mns;
}
/**
* @return rocketMQ
*/
public RocketMQ getRocketMQ() {
return this.rocketMQ;
}
public static final class Builder {
private String custom;
private DingTalk dingTalk;
private EventBridge eventBridge;
private Http http;
private Https https;
private Mns mns;
private RocketMQ rocketMQ;
/**
* Custom.
*/
public Builder custom(String custom) {
this.custom = custom;
return this;
}
/**
* DingTalk.
*/
public Builder dingTalk(DingTalk dingTalk) {
this.dingTalk = dingTalk;
return this;
}
/**
* EventBridge.
*/
public Builder eventBridge(EventBridge eventBridge) {
this.eventBridge = eventBridge;
return this;
}
/**
* Http.
*/
public Builder http(Http http) {
this.http = http;
return this;
}
/**
* Https.
*/
public Builder https(Https https) {
this.https = https;
return this;
}
/**
* Mns.
*/
public Builder mns(Mns mns) {
this.mns = mns;
return this;
}
/**
* RocketMQ.
*/
public Builder rocketMQ(RocketMQ rocketMQ) {
this.rocketMQ = rocketMQ;
return this;
}
public AiStoreReceiveConfig build() {
return new AiStoreReceiveConfig(this);
}
}
public static class DingTalk extends TeaModel {
@NameInMap("Address")
private String address;
@NameInMap("Secret")
private String secret;
private DingTalk(Builder builder) {
this.address = builder.address;
this.secret = builder.secret;
}
public static Builder builder() {
return new Builder();
}
public static DingTalk create() {
return builder().build();
}
/**
* @return address
*/
public String getAddress() {
return this.address;
}
/**
* @return secret
*/
public String getSecret() {
return this.secret;
}
public static final class Builder {
private String address;
private String secret;
/**
* Address.
*/
public Builder address(String address) {
this.address = address;
return this;
}
/**
* Secret.
*/
public Builder secret(String secret) {
this.secret = secret;
return this;
}
public DingTalk build() {
return new DingTalk(this);
}
}
}
public static class EventBridge extends TeaModel {
@NameInMap("EventBus")
private String eventBus;
@NameInMap("EventRule")
private String eventRule;
private EventBridge(Builder builder) {
this.eventBus = builder.eventBus;
this.eventRule = builder.eventRule;
}
public static Builder builder() {
return new Builder();
}
public static EventBridge create() {
return builder().build();
}
/**
* @return eventBus
*/
public String getEventBus() {
return this.eventBus;
}
/**
* @return eventRule
*/
public String getEventRule() {
return this.eventRule;
}
public static final class Builder {
private String eventBus;
private String eventRule;
/**
* EventBus.
*/
public Builder eventBus(String eventBus) {
this.eventBus = eventBus;
return this;
}
/**
* EventRule.
*/
public Builder eventRule(String eventRule) {
this.eventRule = eventRule;
return this;
}
public EventBridge build() {
return new EventBridge(this);
}
}
}
public static class Http extends TeaModel {
@NameInMap("Url")
private String url;
private Http(Builder builder) {
this.url = builder.url;
}
public static Builder builder() {
return new Builder();
}
public static Http create() {
return builder().build();
}
/**
* @return url
*/
public String getUrl() {
return this.url;
}
public static final class Builder {
private String url;
/**
* Url.
*/
public Builder url(String url) {
this.url = url;
return this;
}
public Http build() {
return new Http(this);
}
}
}
public static class Https extends TeaModel {
@NameInMap("Url")
private String url;
private Https(Builder builder) {
this.url = builder.url;
}
public static Builder builder() {
return new Builder();
}
public static Https create() {
return builder().build();
}
/**
* @return url
*/
public String getUrl() {
return this.url;
}
public static final class Builder {
private String url;
/**
* Url.
*/
public Builder url(String url) {
this.url = url;
return this;
}
public Https build() {
return new Https(this);
}
}
}
public static class Mns extends TeaModel {
@NameInMap("Queue")
private String queue;
private Mns(Builder builder) {
this.queue = builder.queue;
}
public static Builder builder() {
return new Builder();
}
public static Mns create() {
return builder().build();
}
/**
* @return queue
*/
public String getQueue() {
return this.queue;
}
public static final class Builder {
private String queue;
/**
* Queue.
*/
public Builder queue(String queue) {
this.queue = queue;
return this;
}
public Mns build() {
return new Mns(this);
}
}
}
public static class RocketMQ extends TeaModel {
@NameInMap("InstanceId")
private String instanceId;
@NameInMap("TopicName")
private String topicName;
private RocketMQ(Builder builder) {
this.instanceId = builder.instanceId;
this.topicName = builder.topicName;
}
public static Builder builder() {
return new Builder();
}
public static RocketMQ create() {
return builder().build();
}
/**
* @return instanceId
*/
public String getInstanceId() {
return this.instanceId;
}
/**
* @return topicName
*/
public String getTopicName() {
return this.topicName;
}
public static final class Builder {
private String instanceId;
private String topicName;
/**
* InstanceId.
*/
public Builder instanceId(String instanceId) {
this.instanceId = instanceId;
return this;
}
/**
* TopicName.
*/
public Builder topicName(String topicName) {
this.topicName = topicName;
return this;
}
public RocketMQ build() {
return new RocketMQ(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/AiStoreTemplate.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link AiStoreTemplate} extends {@link TeaModel}
*
* <p>AiStoreTemplate</p>
*/
public class AiStoreTemplate extends TeaModel {
@NameInMap("TemplateContext")
private String templateContext;
@NameInMap("TemplateVariable")
private String templateVariable;
private AiStoreTemplate(Builder builder) {
this.templateContext = builder.templateContext;
this.templateVariable = builder.templateVariable;
}
public static Builder builder() {
return new Builder();
}
public static AiStoreTemplate create() {
return builder().build();
}
/**
* @return templateContext
*/
public String getTemplateContext() {
return this.templateContext;
}
/**
* @return templateVariable
*/
public String getTemplateVariable() {
return this.templateVariable;
}
public static final class Builder {
private String templateContext;
private String templateVariable;
/**
* TemplateContext.
*/
public Builder templateContext(String templateContext) {
this.templateContext = templateContext;
return this;
}
/**
* TemplateVariable.
*/
public Builder templateVariable(String templateVariable) {
this.templateVariable = templateVariable;
return this;
}
public AiStoreTemplate build() {
return new AiStoreTemplate(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/AiStoreUserTask.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link AiStoreUserTask} extends {@link TeaModel}
*
* <p>AiStoreUserTask</p>
*/
public class AiStoreUserTask extends TeaModel {
@NameInMap("ApiDesc")
private String apiDesc;
@NameInMap("ApiName")
private String apiName;
@NameInMap("BucketKeyPrefix")
private String bucketKeyPrefix;
@NameInMap("BucketName")
private String bucketName;
@NameInMap("DisableTime")
private String disableTime;
@NameInMap("EnableTime")
private String enableTime;
@NameInMap("GmtCreate")
private String gmtCreate;
@NameInMap("GmtModified")
private String gmtModified;
@NameInMap("Id")
private Long id;
@NameInMap("Name")
private String name;
@NameInMap("ParamInfo")
private String paramInfo;
@NameInMap("Product")
private String product;
@NameInMap("ProductDesc")
private String productDesc;
@NameInMap("ReceiveConfig")
private String receiveConfig;
@NameInMap("Region")
private String region;
@NameInMap("RegionDesc")
private String regionDesc;
@NameInMap("Remark")
private String remark;
@NameInMap("Status")
private String status;
@NameInMap("TaskVersion")
private String taskVersion;
@NameInMap("Version")
private String version;
private AiStoreUserTask(Builder builder) {
this.apiDesc = builder.apiDesc;
this.apiName = builder.apiName;
this.bucketKeyPrefix = builder.bucketKeyPrefix;
this.bucketName = builder.bucketName;
this.disableTime = builder.disableTime;
this.enableTime = builder.enableTime;
this.gmtCreate = builder.gmtCreate;
this.gmtModified = builder.gmtModified;
this.id = builder.id;
this.name = builder.name;
this.paramInfo = builder.paramInfo;
this.product = builder.product;
this.productDesc = builder.productDesc;
this.receiveConfig = builder.receiveConfig;
this.region = builder.region;
this.regionDesc = builder.regionDesc;
this.remark = builder.remark;
this.status = builder.status;
this.taskVersion = builder.taskVersion;
this.version = builder.version;
}
public static Builder builder() {
return new Builder();
}
public static AiStoreUserTask create() {
return builder().build();
}
/**
* @return apiDesc
*/
public String getApiDesc() {
return this.apiDesc;
}
/**
* @return apiName
*/
public String getApiName() {
return this.apiName;
}
/**
* @return bucketKeyPrefix
*/
public String getBucketKeyPrefix() {
return this.bucketKeyPrefix;
}
/**
* @return bucketName
*/
public String getBucketName() {
return this.bucketName;
}
/**
* @return disableTime
*/
public String getDisableTime() {
return this.disableTime;
}
/**
* @return enableTime
*/
public String getEnableTime() {
return this.enableTime;
}
/**
* @return gmtCreate
*/
public String getGmtCreate() {
return this.gmtCreate;
}
/**
* @return gmtModified
*/
public String getGmtModified() {
return this.gmtModified;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return paramInfo
*/
public String getParamInfo() {
return this.paramInfo;
}
/**
* @return product
*/
public String getProduct() {
return this.product;
}
/**
* @return productDesc
*/
public String getProductDesc() {
return this.productDesc;
}
/**
* @return receiveConfig
*/
public String getReceiveConfig() {
return this.receiveConfig;
}
/**
* @return region
*/
public String getRegion() {
return this.region;
}
/**
* @return regionDesc
*/
public String getRegionDesc() {
return this.regionDesc;
}
/**
* @return remark
*/
public String getRemark() {
return this.remark;
}
/**
* @return status
*/
public String getStatus() {
return this.status;
}
/**
* @return taskVersion
*/
public String getTaskVersion() {
return this.taskVersion;
}
/**
* @return version
*/
public String getVersion() {
return this.version;
}
public static final class Builder {
private String apiDesc;
private String apiName;
private String bucketKeyPrefix;
private String bucketName;
private String disableTime;
private String enableTime;
private String gmtCreate;
private String gmtModified;
private Long id;
private String name;
private String paramInfo;
private String product;
private String productDesc;
private String receiveConfig;
private String region;
private String regionDesc;
private String remark;
private String status;
private String taskVersion;
private String version;
/**
* ApiDesc.
*/
public Builder apiDesc(String apiDesc) {
this.apiDesc = apiDesc;
return this;
}
/**
* ApiName.
*/
public Builder apiName(String apiName) {
this.apiName = apiName;
return this;
}
/**
* BucketKeyPrefix.
*/
public Builder bucketKeyPrefix(String bucketKeyPrefix) {
this.bucketKeyPrefix = bucketKeyPrefix;
return this;
}
/**
* BucketName.
*/
public Builder bucketName(String bucketName) {
this.bucketName = bucketName;
return this;
}
/**
* DisableTime.
*/
public Builder disableTime(String disableTime) {
this.disableTime = disableTime;
return this;
}
/**
* EnableTime.
*/
public Builder enableTime(String enableTime) {
this.enableTime = enableTime;
return this;
}
/**
* GmtCreate.
*/
public Builder gmtCreate(String gmtCreate) {
this.gmtCreate = gmtCreate;
return this;
}
/**
* GmtModified.
*/
public Builder gmtModified(String gmtModified) {
this.gmtModified = gmtModified;
return this;
}
/**
* Id.
*/
public Builder id(Long id) {
this.id = id;
return this;
}
/**
* Name.
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* ParamInfo.
*/
public Builder paramInfo(String paramInfo) {
this.paramInfo = paramInfo;
return this;
}
/**
* Product.
*/
public Builder product(String product) {
this.product = product;
return this;
}
/**
* ProductDesc.
*/
public Builder productDesc(String productDesc) {
this.productDesc = productDesc;
return this;
}
/**
* ReceiveConfig.
*/
public Builder receiveConfig(String receiveConfig) {
this.receiveConfig = receiveConfig;
return this;
}
/**
* Region.
*/
public Builder region(String region) {
this.region = region;
return this;
}
/**
* RegionDesc.
*/
public Builder regionDesc(String regionDesc) {
this.regionDesc = regionDesc;
return this;
}
/**
* Remark.
*/
public Builder remark(String remark) {
this.remark = remark;
return this;
}
/**
* Status.
*/
public Builder status(String status) {
this.status = status;
return this;
}
/**
* TaskVersion.
*/
public Builder taskVersion(String taskVersion) {
this.taskVersion = taskVersion;
return this;
}
/**
* Version.
*/
public Builder version(String version) {
this.version = version;
return this;
}
public AiStoreUserTask build() {
return new AiStoreUserTask(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/CheckServiceLinkedRoleForDeletingRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CheckServiceLinkedRoleForDeletingRequest} extends {@link RequestModel}
*
* <p>CheckServiceLinkedRoleForDeletingRequest</p>
*/
public class CheckServiceLinkedRoleForDeletingRequest extends Request {
@Query
@NameInMap("AccountId")
private String accountId;
@Query
@NameInMap("DeletionTaskId")
private String deletionTaskId;
@Query
@NameInMap("RoleArn")
private String roleArn;
@Query
@NameInMap("SPIRegionId")
private String SPIRegionId;
@Query
@NameInMap("ServiceName")
private String serviceName;
private CheckServiceLinkedRoleForDeletingRequest(Builder builder) {
super(builder);
this.accountId = builder.accountId;
this.deletionTaskId = builder.deletionTaskId;
this.roleArn = builder.roleArn;
this.SPIRegionId = builder.SPIRegionId;
this.serviceName = builder.serviceName;
}
public static Builder builder() {
return new Builder();
}
public static CheckServiceLinkedRoleForDeletingRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return accountId
*/
public String getAccountId() {
return this.accountId;
}
/**
* @return deletionTaskId
*/
public String getDeletionTaskId() {
return this.deletionTaskId;
}
/**
* @return roleArn
*/
public String getRoleArn() {
return this.roleArn;
}
/**
* @return SPIRegionId
*/
public String getSPIRegionId() {
return this.SPIRegionId;
}
/**
* @return serviceName
*/
public String getServiceName() {
return this.serviceName;
}
public static final class Builder extends Request.Builder<CheckServiceLinkedRoleForDeletingRequest, Builder> {
private String accountId;
private String deletionTaskId;
private String roleArn;
private String SPIRegionId;
private String serviceName;
private Builder() {
super();
}
private Builder(CheckServiceLinkedRoleForDeletingRequest request) {
super(request);
this.accountId = request.accountId;
this.deletionTaskId = request.deletionTaskId;
this.roleArn = request.roleArn;
this.SPIRegionId = request.SPIRegionId;
this.serviceName = request.serviceName;
}
/**
* AccountId.
*/
public Builder accountId(String accountId) {
this.putQueryParameter("AccountId", accountId);
this.accountId = accountId;
return this;
}
/**
* DeletionTaskId.
*/
public Builder deletionTaskId(String deletionTaskId) {
this.putQueryParameter("DeletionTaskId", deletionTaskId);
this.deletionTaskId = deletionTaskId;
return this;
}
/**
* RoleArn.
*/
public Builder roleArn(String roleArn) {
this.putQueryParameter("RoleArn", roleArn);
this.roleArn = roleArn;
return this;
}
/**
* SPIRegionId.
*/
public Builder SPIRegionId(String SPIRegionId) {
this.putQueryParameter("SPIRegionId", SPIRegionId);
this.SPIRegionId = SPIRegionId;
return this;
}
/**
* ServiceName.
*/
public Builder serviceName(String serviceName) {
this.putQueryParameter("ServiceName", serviceName);
this.serviceName = serviceName;
return this;
}
@Override
public CheckServiceLinkedRoleForDeletingRequest build() {
return new CheckServiceLinkedRoleForDeletingRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/CheckServiceLinkedRoleForDeletingResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CheckServiceLinkedRoleForDeletingResponse} extends {@link TeaModel}
*
* <p>CheckServiceLinkedRoleForDeletingResponse</p>
*/
public class CheckServiceLinkedRoleForDeletingResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private CheckServiceLinkedRoleForDeletingResponseBody body;
private CheckServiceLinkedRoleForDeletingResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static CheckServiceLinkedRoleForDeletingResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public CheckServiceLinkedRoleForDeletingResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<CheckServiceLinkedRoleForDeletingResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(CheckServiceLinkedRoleForDeletingResponseBody body);
@Override
CheckServiceLinkedRoleForDeletingResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<CheckServiceLinkedRoleForDeletingResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private CheckServiceLinkedRoleForDeletingResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(CheckServiceLinkedRoleForDeletingResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(CheckServiceLinkedRoleForDeletingResponseBody body) {
this.body = body;
return this;
}
@Override
public CheckServiceLinkedRoleForDeletingResponse build() {
return new CheckServiceLinkedRoleForDeletingResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/CheckServiceLinkedRoleForDeletingResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CheckServiceLinkedRoleForDeletingResponseBody} extends {@link TeaModel}
*
* <p>CheckServiceLinkedRoleForDeletingResponseBody</p>
*/
public class CheckServiceLinkedRoleForDeletingResponseBody extends TeaModel {
@NameInMap("Deletable")
private Boolean deletable;
@NameInMap("RequestId")
private String requestId;
@NameInMap("RoleUsages")
private java.util.List < RoleUsages> roleUsages;
private CheckServiceLinkedRoleForDeletingResponseBody(Builder builder) {
this.deletable = builder.deletable;
this.requestId = builder.requestId;
this.roleUsages = builder.roleUsages;
}
public static Builder builder() {
return new Builder();
}
public static CheckServiceLinkedRoleForDeletingResponseBody create() {
return builder().build();
}
/**
* @return deletable
*/
public Boolean getDeletable() {
return this.deletable;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return roleUsages
*/
public java.util.List < RoleUsages> getRoleUsages() {
return this.roleUsages;
}
public static final class Builder {
private Boolean deletable;
private String requestId;
private java.util.List < RoleUsages> roleUsages;
/**
* Deletable.
*/
public Builder deletable(Boolean deletable) {
this.deletable = deletable;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* RoleUsages.
*/
public Builder roleUsages(java.util.List < RoleUsages> roleUsages) {
this.roleUsages = roleUsages;
return this;
}
public CheckServiceLinkedRoleForDeletingResponseBody build() {
return new CheckServiceLinkedRoleForDeletingResponseBody(this);
}
}
public static class RoleUsages extends TeaModel {
@NameInMap("Region")
private String region;
@NameInMap("Resources")
private java.util.List < byte[] > resources;
private RoleUsages(Builder builder) {
this.region = builder.region;
this.resources = builder.resources;
}
public static Builder builder() {
return new Builder();
}
public static RoleUsages create() {
return builder().build();
}
/**
* @return region
*/
public String getRegion() {
return this.region;
}
/**
* @return resources
*/
public java.util.List < byte[] > getResources() {
return this.resources;
}
public static final class Builder {
private String region;
private java.util.List < byte[] > resources;
/**
* Region.
*/
public Builder region(String region) {
this.region = region;
return this;
}
/**
* Resources.
*/
public Builder resources(java.util.List < byte[] > resources) {
this.resources = resources;
return this;
}
public RoleUsages build() {
return new RoleUsages(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/CreateAiStoreBucketRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CreateAiStoreBucketRequest} extends {@link RequestModel}
*
* <p>CreateAiStoreBucketRequest</p>
*/
public class CreateAiStoreBucketRequest extends Request {
@Body
@NameInMap("BucketName")
private String bucketName;
private CreateAiStoreBucketRequest(Builder builder) {
super(builder);
this.bucketName = builder.bucketName;
}
public static Builder builder() {
return new Builder();
}
public static CreateAiStoreBucketRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return bucketName
*/
public String getBucketName() {
return this.bucketName;
}
public static final class Builder extends Request.Builder<CreateAiStoreBucketRequest, Builder> {
private String bucketName;
private Builder() {
super();
}
private Builder(CreateAiStoreBucketRequest request) {
super(request);
this.bucketName = request.bucketName;
}
/**
* BucketName.
*/
public Builder bucketName(String bucketName) {
this.putBodyParameter("BucketName", bucketName);
this.bucketName = bucketName;
return this;
}
@Override
public CreateAiStoreBucketRequest build() {
return new CreateAiStoreBucketRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/CreateAiStoreBucketResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CreateAiStoreBucketResponse} extends {@link TeaModel}
*
* <p>CreateAiStoreBucketResponse</p>
*/
public class CreateAiStoreBucketResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private CreateAiStoreBucketResponseBody body;
private CreateAiStoreBucketResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static CreateAiStoreBucketResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public CreateAiStoreBucketResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<CreateAiStoreBucketResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(CreateAiStoreBucketResponseBody body);
@Override
CreateAiStoreBucketResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<CreateAiStoreBucketResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private CreateAiStoreBucketResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(CreateAiStoreBucketResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(CreateAiStoreBucketResponseBody body) {
this.body = body;
return this;
}
@Override
public CreateAiStoreBucketResponse build() {
return new CreateAiStoreBucketResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/CreateAiStoreBucketResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CreateAiStoreBucketResponseBody} extends {@link TeaModel}
*
* <p>CreateAiStoreBucketResponseBody</p>
*/
public class CreateAiStoreBucketResponseBody extends TeaModel {
@NameInMap("Data")
private String data;
@NameInMap("RequestId")
private String requestId;
private CreateAiStoreBucketResponseBody(Builder builder) {
this.data = builder.data;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static CreateAiStoreBucketResponseBody create() {
return builder().build();
}
/**
* @return data
*/
public String getData() {
return this.data;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String data;
private String requestId;
/**
* Data.
*/
public Builder data(String data) {
this.data = data;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public CreateAiStoreBucketResponseBody build() {
return new CreateAiStoreBucketResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/CreateAiStoreReceiveConfigRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CreateAiStoreReceiveConfigRequest} extends {@link RequestModel}
*
* <p>CreateAiStoreReceiveConfigRequest</p>
*/
public class CreateAiStoreReceiveConfigRequest extends Request {
@Body
@NameInMap("ApiName")
private String apiName;
@Body
@NameInMap("Product")
private String product;
private CreateAiStoreReceiveConfigRequest(Builder builder) {
super(builder);
this.apiName = builder.apiName;
this.product = builder.product;
}
public static Builder builder() {
return new Builder();
}
public static CreateAiStoreReceiveConfigRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return apiName
*/
public String getApiName() {
return this.apiName;
}
/**
* @return product
*/
public String getProduct() {
return this.product;
}
public static final class Builder extends Request.Builder<CreateAiStoreReceiveConfigRequest, Builder> {
private String apiName;
private String product;
private Builder() {
super();
}
private Builder(CreateAiStoreReceiveConfigRequest request) {
super(request);
this.apiName = request.apiName;
this.product = request.product;
}
/**
* ApiName.
*/
public Builder apiName(String apiName) {
this.putBodyParameter("ApiName", apiName);
this.apiName = apiName;
return this;
}
/**
* Product.
*/
public Builder product(String product) {
this.putBodyParameter("Product", product);
this.product = product;
return this;
}
@Override
public CreateAiStoreReceiveConfigRequest build() {
return new CreateAiStoreReceiveConfigRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/CreateAiStoreReceiveConfigResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CreateAiStoreReceiveConfigResponse} extends {@link TeaModel}
*
* <p>CreateAiStoreReceiveConfigResponse</p>
*/
public class CreateAiStoreReceiveConfigResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private CreateAiStoreReceiveConfigResponseBody body;
private CreateAiStoreReceiveConfigResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static CreateAiStoreReceiveConfigResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public CreateAiStoreReceiveConfigResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<CreateAiStoreReceiveConfigResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(CreateAiStoreReceiveConfigResponseBody body);
@Override
CreateAiStoreReceiveConfigResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<CreateAiStoreReceiveConfigResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private CreateAiStoreReceiveConfigResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(CreateAiStoreReceiveConfigResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(CreateAiStoreReceiveConfigResponseBody body) {
this.body = body;
return this;
}
@Override
public CreateAiStoreReceiveConfigResponse build() {
return new CreateAiStoreReceiveConfigResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/CreateAiStoreReceiveConfigResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CreateAiStoreReceiveConfigResponseBody} extends {@link TeaModel}
*
* <p>CreateAiStoreReceiveConfigResponseBody</p>
*/
public class CreateAiStoreReceiveConfigResponseBody extends TeaModel {
@NameInMap("Data")
private AiStoreReceiveConfig data;
@NameInMap("RequestId")
private String requestId;
private CreateAiStoreReceiveConfigResponseBody(Builder builder) {
this.data = builder.data;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static CreateAiStoreReceiveConfigResponseBody create() {
return builder().build();
}
/**
* @return data
*/
public AiStoreReceiveConfig getData() {
return this.data;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private AiStoreReceiveConfig data;
private String requestId;
/**
* Data.
*/
public Builder data(AiStoreReceiveConfig data) {
this.data = data;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public CreateAiStoreReceiveConfigResponseBody build() {
return new CreateAiStoreReceiveConfigResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/CreateAiStoreUserTaskRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CreateAiStoreUserTaskRequest} extends {@link RequestModel}
*
* <p>CreateAiStoreUserTaskRequest</p>
*/
public class CreateAiStoreUserTaskRequest extends Request {
@Body
@NameInMap("ApiName")
private String apiName;
@Body
@NameInMap("BucketKeyPrefix")
private String bucketKeyPrefix;
@Body
@NameInMap("BucketName")
private String bucketName;
@Body
@NameInMap("CreateConfig")
private String createConfig;
@Body
@NameInMap("Name")
private String name;
@Body
@NameInMap("ParamInfo")
private String paramInfo;
@Body
@NameInMap("Product")
private String product;
@Body
@NameInMap("ReceiveConfig")
private String receiveConfig;
@Body
@NameInMap("Remark")
private String remark;
@Body
@NameInMap("Status")
private String status;
private CreateAiStoreUserTaskRequest(Builder builder) {
super(builder);
this.apiName = builder.apiName;
this.bucketKeyPrefix = builder.bucketKeyPrefix;
this.bucketName = builder.bucketName;
this.createConfig = builder.createConfig;
this.name = builder.name;
this.paramInfo = builder.paramInfo;
this.product = builder.product;
this.receiveConfig = builder.receiveConfig;
this.remark = builder.remark;
this.status = builder.status;
}
public static Builder builder() {
return new Builder();
}
public static CreateAiStoreUserTaskRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return apiName
*/
public String getApiName() {
return this.apiName;
}
/**
* @return bucketKeyPrefix
*/
public String getBucketKeyPrefix() {
return this.bucketKeyPrefix;
}
/**
* @return bucketName
*/
public String getBucketName() {
return this.bucketName;
}
/**
* @return createConfig
*/
public String getCreateConfig() {
return this.createConfig;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return paramInfo
*/
public String getParamInfo() {
return this.paramInfo;
}
/**
* @return product
*/
public String getProduct() {
return this.product;
}
/**
* @return receiveConfig
*/
public String getReceiveConfig() {
return this.receiveConfig;
}
/**
* @return remark
*/
public String getRemark() {
return this.remark;
}
/**
* @return status
*/
public String getStatus() {
return this.status;
}
public static final class Builder extends Request.Builder<CreateAiStoreUserTaskRequest, Builder> {
private String apiName;
private String bucketKeyPrefix;
private String bucketName;
private String createConfig;
private String name;
private String paramInfo;
private String product;
private String receiveConfig;
private String remark;
private String status;
private Builder() {
super();
}
private Builder(CreateAiStoreUserTaskRequest request) {
super(request);
this.apiName = request.apiName;
this.bucketKeyPrefix = request.bucketKeyPrefix;
this.bucketName = request.bucketName;
this.createConfig = request.createConfig;
this.name = request.name;
this.paramInfo = request.paramInfo;
this.product = request.product;
this.receiveConfig = request.receiveConfig;
this.remark = request.remark;
this.status = request.status;
}
/**
* ApiName.
*/
public Builder apiName(String apiName) {
this.putBodyParameter("ApiName", apiName);
this.apiName = apiName;
return this;
}
/**
* BucketKeyPrefix.
*/
public Builder bucketKeyPrefix(String bucketKeyPrefix) {
this.putBodyParameter("BucketKeyPrefix", bucketKeyPrefix);
this.bucketKeyPrefix = bucketKeyPrefix;
return this;
}
/**
* BucketName.
*/
public Builder bucketName(String bucketName) {
this.putBodyParameter("BucketName", bucketName);
this.bucketName = bucketName;
return this;
}
/**
* CreateConfig.
*/
public Builder createConfig(String createConfig) {
this.putBodyParameter("CreateConfig", createConfig);
this.createConfig = createConfig;
return this;
}
/**
* Name.
*/
public Builder name(String name) {
this.putBodyParameter("Name", name);
this.name = name;
return this;
}
/**
* ParamInfo.
*/
public Builder paramInfo(String paramInfo) {
this.putBodyParameter("ParamInfo", paramInfo);
this.paramInfo = paramInfo;
return this;
}
/**
* Product.
*/
public Builder product(String product) {
this.putBodyParameter("Product", product);
this.product = product;
return this;
}
/**
* ReceiveConfig.
*/
public Builder receiveConfig(String receiveConfig) {
this.putBodyParameter("ReceiveConfig", receiveConfig);
this.receiveConfig = receiveConfig;
return this;
}
/**
* Remark.
*/
public Builder remark(String remark) {
this.putBodyParameter("Remark", remark);
this.remark = remark;
return this;
}
/**
* Status.
*/
public Builder status(String status) {
this.putBodyParameter("Status", status);
this.status = status;
return this;
}
@Override
public CreateAiStoreUserTaskRequest build() {
return new CreateAiStoreUserTaskRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/CreateAiStoreUserTaskResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CreateAiStoreUserTaskResponse} extends {@link TeaModel}
*
* <p>CreateAiStoreUserTaskResponse</p>
*/
public class CreateAiStoreUserTaskResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private CreateAiStoreUserTaskResponseBody body;
private CreateAiStoreUserTaskResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static CreateAiStoreUserTaskResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public CreateAiStoreUserTaskResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<CreateAiStoreUserTaskResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(CreateAiStoreUserTaskResponseBody body);
@Override
CreateAiStoreUserTaskResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<CreateAiStoreUserTaskResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private CreateAiStoreUserTaskResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(CreateAiStoreUserTaskResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(CreateAiStoreUserTaskResponseBody body) {
this.body = body;
return this;
}
@Override
public CreateAiStoreUserTaskResponse build() {
return new CreateAiStoreUserTaskResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/CreateAiStoreUserTaskResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link CreateAiStoreUserTaskResponseBody} extends {@link TeaModel}
*
* <p>CreateAiStoreUserTaskResponseBody</p>
*/
public class CreateAiStoreUserTaskResponseBody extends TeaModel {
@NameInMap("Data")
private Long data;
@NameInMap("RequestId")
private String requestId;
private CreateAiStoreUserTaskResponseBody(Builder builder) {
this.data = builder.data;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static CreateAiStoreUserTaskResponseBody create() {
return builder().build();
}
/**
* @return data
*/
public Long getData() {
return this.data;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private Long data;
private String requestId;
/**
* Data.
*/
public Builder data(Long data) {
this.data = data;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public CreateAiStoreUserTaskResponseBody build() {
return new CreateAiStoreUserTaskResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/DeleteAiStoreUserTaskRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DeleteAiStoreUserTaskRequest} extends {@link RequestModel}
*
* <p>DeleteAiStoreUserTaskRequest</p>
*/
public class DeleteAiStoreUserTaskRequest extends Request {
@Body
@NameInMap("AistoreVersion")
private String aistoreVersion;
@Body
@NameInMap("Id")
@Validation(required = true)
private Long id;
private DeleteAiStoreUserTaskRequest(Builder builder) {
super(builder);
this.aistoreVersion = builder.aistoreVersion;
this.id = builder.id;
}
public static Builder builder() {
return new Builder();
}
public static DeleteAiStoreUserTaskRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return aistoreVersion
*/
public String getAistoreVersion() {
return this.aistoreVersion;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
public static final class Builder extends Request.Builder<DeleteAiStoreUserTaskRequest, Builder> {
private String aistoreVersion;
private Long id;
private Builder() {
super();
}
private Builder(DeleteAiStoreUserTaskRequest request) {
super(request);
this.aistoreVersion = request.aistoreVersion;
this.id = request.id;
}
/**
* AistoreVersion.
*/
public Builder aistoreVersion(String aistoreVersion) {
this.putBodyParameter("AistoreVersion", aistoreVersion);
this.aistoreVersion = aistoreVersion;
return this;
}
/**
* Id.
*/
public Builder id(Long id) {
this.putBodyParameter("Id", id);
this.id = id;
return this;
}
@Override
public DeleteAiStoreUserTaskRequest build() {
return new DeleteAiStoreUserTaskRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/DeleteAiStoreUserTaskResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DeleteAiStoreUserTaskResponse} extends {@link TeaModel}
*
* <p>DeleteAiStoreUserTaskResponse</p>
*/
public class DeleteAiStoreUserTaskResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private DeleteAiStoreUserTaskResponseBody body;
private DeleteAiStoreUserTaskResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DeleteAiStoreUserTaskResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DeleteAiStoreUserTaskResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DeleteAiStoreUserTaskResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(DeleteAiStoreUserTaskResponseBody body);
@Override
DeleteAiStoreUserTaskResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DeleteAiStoreUserTaskResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private DeleteAiStoreUserTaskResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DeleteAiStoreUserTaskResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DeleteAiStoreUserTaskResponseBody body) {
this.body = body;
return this;
}
@Override
public DeleteAiStoreUserTaskResponse build() {
return new DeleteAiStoreUserTaskResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/DeleteAiStoreUserTaskResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DeleteAiStoreUserTaskResponseBody} extends {@link TeaModel}
*
* <p>DeleteAiStoreUserTaskResponseBody</p>
*/
public class DeleteAiStoreUserTaskResponseBody extends TeaModel {
@NameInMap("Data")
private Boolean data;
@NameInMap("RequestId")
private String requestId;
private DeleteAiStoreUserTaskResponseBody(Builder builder) {
this.data = builder.data;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static DeleteAiStoreUserTaskResponseBody create() {
return builder().build();
}
/**
* @return data
*/
public Boolean getData() {
return this.data;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private Boolean data;
private String requestId;
/**
* Data.
*/
public Builder data(Boolean data) {
this.data = data;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public DeleteAiStoreUserTaskResponseBody build() {
return new DeleteAiStoreUserTaskResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/DisableAiStoreUserTaskRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DisableAiStoreUserTaskRequest} extends {@link RequestModel}
*
* <p>DisableAiStoreUserTaskRequest</p>
*/
public class DisableAiStoreUserTaskRequest extends Request {
@Body
@NameInMap("AistoreVersion")
private String aistoreVersion;
@Body
@NameInMap("Id")
@Validation(required = true)
private Long id;
private DisableAiStoreUserTaskRequest(Builder builder) {
super(builder);
this.aistoreVersion = builder.aistoreVersion;
this.id = builder.id;
}
public static Builder builder() {
return new Builder();
}
public static DisableAiStoreUserTaskRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return aistoreVersion
*/
public String getAistoreVersion() {
return this.aistoreVersion;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
public static final class Builder extends Request.Builder<DisableAiStoreUserTaskRequest, Builder> {
private String aistoreVersion;
private Long id;
private Builder() {
super();
}
private Builder(DisableAiStoreUserTaskRequest request) {
super(request);
this.aistoreVersion = request.aistoreVersion;
this.id = request.id;
}
/**
* AistoreVersion.
*/
public Builder aistoreVersion(String aistoreVersion) {
this.putBodyParameter("AistoreVersion", aistoreVersion);
this.aistoreVersion = aistoreVersion;
return this;
}
/**
* Id.
*/
public Builder id(Long id) {
this.putBodyParameter("Id", id);
this.id = id;
return this;
}
@Override
public DisableAiStoreUserTaskRequest build() {
return new DisableAiStoreUserTaskRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/DisableAiStoreUserTaskResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DisableAiStoreUserTaskResponse} extends {@link TeaModel}
*
* <p>DisableAiStoreUserTaskResponse</p>
*/
public class DisableAiStoreUserTaskResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private DisableAiStoreUserTaskResponseBody body;
private DisableAiStoreUserTaskResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static DisableAiStoreUserTaskResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public DisableAiStoreUserTaskResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<DisableAiStoreUserTaskResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(DisableAiStoreUserTaskResponseBody body);
@Override
DisableAiStoreUserTaskResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<DisableAiStoreUserTaskResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private DisableAiStoreUserTaskResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(DisableAiStoreUserTaskResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(DisableAiStoreUserTaskResponseBody body) {
this.body = body;
return this;
}
@Override
public DisableAiStoreUserTaskResponse build() {
return new DisableAiStoreUserTaskResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/DisableAiStoreUserTaskResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DisableAiStoreUserTaskResponseBody} extends {@link TeaModel}
*
* <p>DisableAiStoreUserTaskResponseBody</p>
*/
public class DisableAiStoreUserTaskResponseBody extends TeaModel {
@NameInMap("Data")
private Boolean data;
@NameInMap("RequestId")
private String requestId;
private DisableAiStoreUserTaskResponseBody(Builder builder) {
this.data = builder.data;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static DisableAiStoreUserTaskResponseBody create() {
return builder().build();
}
/**
* @return data
*/
public Boolean getData() {
return this.data;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private Boolean data;
private String requestId;
/**
* Data.
*/
public Builder data(Boolean data) {
this.data = data;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public DisableAiStoreUserTaskResponseBody build() {
return new DisableAiStoreUserTaskResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/EnableAiStoreUserTaskRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link EnableAiStoreUserTaskRequest} extends {@link RequestModel}
*
* <p>EnableAiStoreUserTaskRequest</p>
*/
public class EnableAiStoreUserTaskRequest extends Request {
@Body
@NameInMap("AistoreVersion")
private String aistoreVersion;
@Body
@NameInMap("Id")
@Validation(required = true)
private Long id;
private EnableAiStoreUserTaskRequest(Builder builder) {
super(builder);
this.aistoreVersion = builder.aistoreVersion;
this.id = builder.id;
}
public static Builder builder() {
return new Builder();
}
public static EnableAiStoreUserTaskRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return aistoreVersion
*/
public String getAistoreVersion() {
return this.aistoreVersion;
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
public static final class Builder extends Request.Builder<EnableAiStoreUserTaskRequest, Builder> {
private String aistoreVersion;
private Long id;
private Builder() {
super();
}
private Builder(EnableAiStoreUserTaskRequest request) {
super(request);
this.aistoreVersion = request.aistoreVersion;
this.id = request.id;
}
/**
* AistoreVersion.
*/
public Builder aistoreVersion(String aistoreVersion) {
this.putBodyParameter("AistoreVersion", aistoreVersion);
this.aistoreVersion = aistoreVersion;
return this;
}
/**
* Id.
*/
public Builder id(Long id) {
this.putBodyParameter("Id", id);
this.id = id;
return this;
}
@Override
public EnableAiStoreUserTaskRequest build() {
return new EnableAiStoreUserTaskRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/EnableAiStoreUserTaskResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link EnableAiStoreUserTaskResponse} extends {@link TeaModel}
*
* <p>EnableAiStoreUserTaskResponse</p>
*/
public class EnableAiStoreUserTaskResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private EnableAiStoreUserTaskResponseBody body;
private EnableAiStoreUserTaskResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static EnableAiStoreUserTaskResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public EnableAiStoreUserTaskResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<EnableAiStoreUserTaskResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(EnableAiStoreUserTaskResponseBody body);
@Override
EnableAiStoreUserTaskResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<EnableAiStoreUserTaskResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private EnableAiStoreUserTaskResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(EnableAiStoreUserTaskResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(EnableAiStoreUserTaskResponseBody body) {
this.body = body;
return this;
}
@Override
public EnableAiStoreUserTaskResponse build() {
return new EnableAiStoreUserTaskResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/EnableAiStoreUserTaskResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link EnableAiStoreUserTaskResponseBody} extends {@link TeaModel}
*
* <p>EnableAiStoreUserTaskResponseBody</p>
*/
public class EnableAiStoreUserTaskResponseBody extends TeaModel {
@NameInMap("Data")
private String data;
@NameInMap("RequestId")
private String requestId;
private EnableAiStoreUserTaskResponseBody(Builder builder) {
this.data = builder.data;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static EnableAiStoreUserTaskResponseBody create() {
return builder().build();
}
/**
* @return data
*/
public String getData() {
return this.data;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String data;
private String requestId;
/**
* Data.
*/
public Builder data(String data) {
this.data = data;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public EnableAiStoreUserTaskResponseBody build() {
return new EnableAiStoreUserTaskResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/GetAiStoreReceiveConfigRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link GetAiStoreReceiveConfigRequest} extends {@link RequestModel}
*
* <p>GetAiStoreReceiveConfigRequest</p>
*/
public class GetAiStoreReceiveConfigRequest extends Request {
@Body
@NameInMap("ApiName")
private String apiName;
@Body
@NameInMap("Product")
private String product;
private GetAiStoreReceiveConfigRequest(Builder builder) {
super(builder);
this.apiName = builder.apiName;
this.product = builder.product;
}
public static Builder builder() {
return new Builder();
}
public static GetAiStoreReceiveConfigRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return apiName
*/
public String getApiName() {
return this.apiName;
}
/**
* @return product
*/
public String getProduct() {
return this.product;
}
public static final class Builder extends Request.Builder<GetAiStoreReceiveConfigRequest, Builder> {
private String apiName;
private String product;
private Builder() {
super();
}
private Builder(GetAiStoreReceiveConfigRequest request) {
super(request);
this.apiName = request.apiName;
this.product = request.product;
}
/**
* ApiName.
*/
public Builder apiName(String apiName) {
this.putBodyParameter("ApiName", apiName);
this.apiName = apiName;
return this;
}
/**
* Product.
*/
public Builder product(String product) {
this.putBodyParameter("Product", product);
this.product = product;
return this;
}
@Override
public GetAiStoreReceiveConfigRequest build() {
return new GetAiStoreReceiveConfigRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/GetAiStoreReceiveConfigResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link GetAiStoreReceiveConfigResponse} extends {@link TeaModel}
*
* <p>GetAiStoreReceiveConfigResponse</p>
*/
public class GetAiStoreReceiveConfigResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private GetAiStoreReceiveConfigResponseBody body;
private GetAiStoreReceiveConfigResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static GetAiStoreReceiveConfigResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public GetAiStoreReceiveConfigResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<GetAiStoreReceiveConfigResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(GetAiStoreReceiveConfigResponseBody body);
@Override
GetAiStoreReceiveConfigResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<GetAiStoreReceiveConfigResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private GetAiStoreReceiveConfigResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(GetAiStoreReceiveConfigResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(GetAiStoreReceiveConfigResponseBody body) {
this.body = body;
return this;
}
@Override
public GetAiStoreReceiveConfigResponse build() {
return new GetAiStoreReceiveConfigResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/GetAiStoreReceiveConfigResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link GetAiStoreReceiveConfigResponseBody} extends {@link TeaModel}
*
* <p>GetAiStoreReceiveConfigResponseBody</p>
*/
public class GetAiStoreReceiveConfigResponseBody extends TeaModel {
@NameInMap("Data")
private AiStoreReceiveConfig data;
@NameInMap("RequestId")
private String requestId;
private GetAiStoreReceiveConfigResponseBody(Builder builder) {
this.data = builder.data;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static GetAiStoreReceiveConfigResponseBody create() {
return builder().build();
}
/**
* @return data
*/
public AiStoreReceiveConfig getData() {
return this.data;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private AiStoreReceiveConfig data;
private String requestId;
/**
* Data.
*/
public Builder data(AiStoreReceiveConfig data) {
this.data = data;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public GetAiStoreReceiveConfigResponseBody build() {
return new GetAiStoreReceiveConfigResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/GetAiStoreUserTaskByNameRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link GetAiStoreUserTaskByNameRequest} extends {@link RequestModel}
*
* <p>GetAiStoreUserTaskByNameRequest</p>
*/
public class GetAiStoreUserTaskByNameRequest extends Request {
@Body
@NameInMap("Name")
@Validation(required = true)
private String name;
private GetAiStoreUserTaskByNameRequest(Builder builder) {
super(builder);
this.name = builder.name;
}
public static Builder builder() {
return new Builder();
}
public static GetAiStoreUserTaskByNameRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return name
*/
public String getName() {
return this.name;
}
public static final class Builder extends Request.Builder<GetAiStoreUserTaskByNameRequest, Builder> {
private String name;
private Builder() {
super();
}
private Builder(GetAiStoreUserTaskByNameRequest request) {
super(request);
this.name = request.name;
}
/**
* Name.
*/
public Builder name(String name) {
this.putBodyParameter("Name", name);
this.name = name;
return this;
}
@Override
public GetAiStoreUserTaskByNameRequest build() {
return new GetAiStoreUserTaskByNameRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/GetAiStoreUserTaskByNameResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link GetAiStoreUserTaskByNameResponse} extends {@link TeaModel}
*
* <p>GetAiStoreUserTaskByNameResponse</p>
*/
public class GetAiStoreUserTaskByNameResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private GetAiStoreUserTaskByNameResponseBody body;
private GetAiStoreUserTaskByNameResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static GetAiStoreUserTaskByNameResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public GetAiStoreUserTaskByNameResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<GetAiStoreUserTaskByNameResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(GetAiStoreUserTaskByNameResponseBody body);
@Override
GetAiStoreUserTaskByNameResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<GetAiStoreUserTaskByNameResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private GetAiStoreUserTaskByNameResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(GetAiStoreUserTaskByNameResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(GetAiStoreUserTaskByNameResponseBody body) {
this.body = body;
return this;
}
@Override
public GetAiStoreUserTaskByNameResponse build() {
return new GetAiStoreUserTaskByNameResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/GetAiStoreUserTaskByNameResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link GetAiStoreUserTaskByNameResponseBody} extends {@link TeaModel}
*
* <p>GetAiStoreUserTaskByNameResponseBody</p>
*/
public class GetAiStoreUserTaskByNameResponseBody extends TeaModel {
@NameInMap("Data")
private AiStoreUserTask data;
@NameInMap("RequestId")
private String requestId;
private GetAiStoreUserTaskByNameResponseBody(Builder builder) {
this.data = builder.data;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static GetAiStoreUserTaskByNameResponseBody create() {
return builder().build();
}
/**
* @return data
*/
public AiStoreUserTask getData() {
return this.data;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private AiStoreUserTask data;
private String requestId;
/**
* Data.
*/
public Builder data(AiStoreUserTask data) {
this.data = data;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public GetAiStoreUserTaskByNameResponseBody build() {
return new GetAiStoreUserTaskByNameResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/GetAiStoreUserTaskRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link GetAiStoreUserTaskRequest} extends {@link RequestModel}
*
* <p>GetAiStoreUserTaskRequest</p>
*/
public class GetAiStoreUserTaskRequest extends Request {
@Body
@NameInMap("Id")
@Validation(required = true)
private Long id;
private GetAiStoreUserTaskRequest(Builder builder) {
super(builder);
this.id = builder.id;
}
public static Builder builder() {
return new Builder();
}
public static GetAiStoreUserTaskRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return id
*/
public Long getId() {
return this.id;
}
public static final class Builder extends Request.Builder<GetAiStoreUserTaskRequest, Builder> {
private Long id;
private Builder() {
super();
}
private Builder(GetAiStoreUserTaskRequest request) {
super(request);
this.id = request.id;
}
/**
* Id.
*/
public Builder id(Long id) {
this.putBodyParameter("Id", id);
this.id = id;
return this;
}
@Override
public GetAiStoreUserTaskRequest build() {
return new GetAiStoreUserTaskRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/GetAiStoreUserTaskResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link GetAiStoreUserTaskResponse} extends {@link TeaModel}
*
* <p>GetAiStoreUserTaskResponse</p>
*/
public class GetAiStoreUserTaskResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private GetAiStoreUserTaskResponseBody body;
private GetAiStoreUserTaskResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static GetAiStoreUserTaskResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public GetAiStoreUserTaskResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<GetAiStoreUserTaskResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(GetAiStoreUserTaskResponseBody body);
@Override
GetAiStoreUserTaskResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<GetAiStoreUserTaskResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private GetAiStoreUserTaskResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(GetAiStoreUserTaskResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(GetAiStoreUserTaskResponseBody body) {
this.body = body;
return this;
}
@Override
public GetAiStoreUserTaskResponse build() {
return new GetAiStoreUserTaskResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/GetAiStoreUserTaskResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link GetAiStoreUserTaskResponseBody} extends {@link TeaModel}
*
* <p>GetAiStoreUserTaskResponseBody</p>
*/
public class GetAiStoreUserTaskResponseBody extends TeaModel {
@NameInMap("Data")
private AiStoreUserTask data;
@NameInMap("RequestId")
private String requestId;
private GetAiStoreUserTaskResponseBody(Builder builder) {
this.data = builder.data;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static GetAiStoreUserTaskResponseBody create() {
return builder().build();
}
/**
* @return data
*/
public AiStoreUserTask getData() {
return this.data;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private AiStoreUserTask data;
private String requestId;
/**
* Data.
*/
public Builder data(AiStoreUserTask data) {
this.data = data;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public GetAiStoreUserTaskResponseBody build() {
return new GetAiStoreUserTaskResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/ListAiStoreBucketsRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListAiStoreBucketsRequest} extends {@link RequestModel}
*
* <p>ListAiStoreBucketsRequest</p>
*/
public class ListAiStoreBucketsRequest extends Request {
@Body
@NameInMap("ApiName")
private String apiName;
@Body
@NameInMap("Product")
private String product;
private ListAiStoreBucketsRequest(Builder builder) {
super(builder);
this.apiName = builder.apiName;
this.product = builder.product;
}
public static Builder builder() {
return new Builder();
}
public static ListAiStoreBucketsRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return apiName
*/
public String getApiName() {
return this.apiName;
}
/**
* @return product
*/
public String getProduct() {
return this.product;
}
public static final class Builder extends Request.Builder<ListAiStoreBucketsRequest, Builder> {
private String apiName;
private String product;
private Builder() {
super();
}
private Builder(ListAiStoreBucketsRequest request) {
super(request);
this.apiName = request.apiName;
this.product = request.product;
}
/**
* ApiName.
*/
public Builder apiName(String apiName) {
this.putBodyParameter("ApiName", apiName);
this.apiName = apiName;
return this;
}
/**
* Product.
*/
public Builder product(String product) {
this.putBodyParameter("Product", product);
this.product = product;
return this;
}
@Override
public ListAiStoreBucketsRequest build() {
return new ListAiStoreBucketsRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/ListAiStoreBucketsResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListAiStoreBucketsResponse} extends {@link TeaModel}
*
* <p>ListAiStoreBucketsResponse</p>
*/
public class ListAiStoreBucketsResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private ListAiStoreBucketsResponseBody body;
private ListAiStoreBucketsResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static ListAiStoreBucketsResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public ListAiStoreBucketsResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<ListAiStoreBucketsResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(ListAiStoreBucketsResponseBody body);
@Override
ListAiStoreBucketsResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<ListAiStoreBucketsResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private ListAiStoreBucketsResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(ListAiStoreBucketsResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(ListAiStoreBucketsResponseBody body) {
this.body = body;
return this;
}
@Override
public ListAiStoreBucketsResponse build() {
return new ListAiStoreBucketsResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/ListAiStoreBucketsResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListAiStoreBucketsResponseBody} extends {@link TeaModel}
*
* <p>ListAiStoreBucketsResponseBody</p>
*/
public class ListAiStoreBucketsResponseBody extends TeaModel {
@NameInMap("Data")
private java.util.List < String > data;
@NameInMap("RequestId")
private String requestId;
private ListAiStoreBucketsResponseBody(Builder builder) {
this.data = builder.data;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static ListAiStoreBucketsResponseBody create() {
return builder().build();
}
/**
* @return data
*/
public java.util.List < String > getData() {
return this.data;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private java.util.List < String > data;
private String requestId;
/**
* Data.
*/
public Builder data(java.util.List < String > data) {
this.data = data;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public ListAiStoreBucketsResponseBody build() {
return new ListAiStoreBucketsResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/QueryAiStoreApiTreeRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link QueryAiStoreApiTreeRequest} extends {@link RequestModel}
*
* <p>QueryAiStoreApiTreeRequest</p>
*/
public class QueryAiStoreApiTreeRequest extends Request {
private QueryAiStoreApiTreeRequest(Builder builder) {
super(builder);
}
public static Builder builder() {
return new Builder();
}
public static QueryAiStoreApiTreeRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
public static final class Builder extends Request.Builder<QueryAiStoreApiTreeRequest, Builder> {
private Builder() {
super();
}
private Builder(QueryAiStoreApiTreeRequest request) {
super(request);
}
@Override
public QueryAiStoreApiTreeRequest build() {
return new QueryAiStoreApiTreeRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930 | java-sources/com/aliyun/alibabacloud-viapi20210930/1.0.0/com/aliyun/sdk/service/viapi20210930/models/QueryAiStoreApiTreeResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.viapi20210930.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link QueryAiStoreApiTreeResponse} extends {@link TeaModel}
*
* <p>QueryAiStoreApiTreeResponse</p>
*/
public class QueryAiStoreApiTreeResponse extends Response {
@NameInMap("headers")
private java.util.Map < String, String > headers;
@NameInMap("statusCode")
private Integer statusCode;
@NameInMap("body")
private QueryAiStoreApiTreeResponseBody body;
private QueryAiStoreApiTreeResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.statusCode = builder.statusCode;
this.body = builder.body;
}
public static QueryAiStoreApiTreeResponse create() {
return new BuilderImpl().build();
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
/**
* @return headers
*/
public java.util.Map < String, String > getHeaders() {
return this.headers;
}
/**
* @return statusCode
*/
public Integer getStatusCode() {
return this.statusCode;
}
/**
* @return body
*/
public QueryAiStoreApiTreeResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<QueryAiStoreApiTreeResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder statusCode(Integer statusCode);
Builder body(QueryAiStoreApiTreeResponseBody body);
@Override
QueryAiStoreApiTreeResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<QueryAiStoreApiTreeResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private Integer statusCode;
private QueryAiStoreApiTreeResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(QueryAiStoreApiTreeResponse response) {
super(response);
this.headers = response.headers;
this.statusCode = response.statusCode;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* statusCode.
*/
@Override
public Builder statusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* body.
*/
@Override
public Builder body(QueryAiStoreApiTreeResponseBody body) {
this.body = body;
return this;
}
@Override
public QueryAiStoreApiTreeResponse build() {
return new QueryAiStoreApiTreeResponse(this);
}
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.