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/DeleteUdfArtifactResult.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 DeleteUdfArtifactResult} extends {@link TeaModel} * * <p>DeleteUdfArtifactResult</p> */ public class DeleteUdfArtifactResult extends TeaModel { @com.aliyun.core.annotation.NameInMap("deleteSuccess") private Boolean deleteSuccess; @com.aliyun.core.annotation.NameInMap("message") private String message; @com.aliyun.core.annotation.NameInMap("referencedClasses") private java.util.List<UdfClass> referencedClasses; private DeleteUdfArtifactResult(Builder builder) { this.deleteSuccess = builder.deleteSuccess; this.message = builder.message; this.referencedClasses = builder.referencedClasses; } public static Builder builder() { return new Builder(); } public static DeleteUdfArtifactResult create() { return builder().build(); } /** * @return deleteSuccess */ public Boolean getDeleteSuccess() { return this.deleteSuccess; } /** * @return message */ public String getMessage() { return this.message; } /** * @return referencedClasses */ public java.util.List<UdfClass> getReferencedClasses() { return this.referencedClasses; } public static final class Builder { private Boolean deleteSuccess; private String message; private java.util.List<UdfClass> referencedClasses; /** * deleteSuccess. */ public Builder deleteSuccess(Boolean deleteSuccess) { this.deleteSuccess = deleteSuccess; return this; } /** * message. */ public Builder message(String message) { this.message = message; return this; } /** * referencedClasses. */ public Builder referencedClasses(java.util.List<UdfClass> referencedClasses) { this.referencedClasses = referencedClasses; return this; } public DeleteUdfArtifactResult build() { return new DeleteUdfArtifactResult(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/DeleteUdfFunctionRequest.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 DeleteUdfFunctionRequest} extends {@link RequestModel} * * <p>DeleteUdfFunctionRequest</p> */ public class DeleteUdfFunctionRequest 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("functionName") @com.aliyun.core.annotation.Validation(required = true) private String functionName; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("className") @com.aliyun.core.annotation.Validation(required = true) private String className; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("udfArtifactName") @com.aliyun.core.annotation.Validation(required = true) private String udfArtifactName; @com.aliyun.core.annotation.Header @com.aliyun.core.annotation.NameInMap("workspace") @com.aliyun.core.annotation.Validation(required = true) private String workspace; private DeleteUdfFunctionRequest(Builder builder) { super(builder); this.namespace = builder.namespace; this.functionName = builder.functionName; this.className = builder.className; this.udfArtifactName = builder.udfArtifactName; this.workspace = builder.workspace; } public static Builder builder() { return new Builder(); } public static DeleteUdfFunctionRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return namespace */ public String getNamespace() { return this.namespace; } /** * @return functionName */ public String getFunctionName() { return this.functionName; } /** * @return className */ public String getClassName() { return this.className; } /** * @return udfArtifactName */ public String getUdfArtifactName() { return this.udfArtifactName; } /** * @return workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder extends Request.Builder<DeleteUdfFunctionRequest, Builder> { private String namespace; private String functionName; private String className; private String udfArtifactName; private String workspace; private Builder() { super(); } private Builder(DeleteUdfFunctionRequest request) { super(request); this.namespace = request.namespace; this.functionName = request.functionName; this.className = request.className; this.udfArtifactName = request.udfArtifactName; this.workspace = request.workspace; } /** * <p>The name of the namespace.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>u-gs3rgla9-default</p> */ public Builder namespace(String namespace) { this.putPathParameter("namespace", namespace); this.namespace = namespace; return this; } /** * <p>The name of the UDF that you want to delete.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>category</p> */ public Builder functionName(String functionName) { this.putPathParameter("functionName", functionName); this.functionName = functionName; return this; } /** * <p>The name of the class that corresponds to the UDF.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>Category</p> */ public Builder className(String className) { this.putQueryParameter("className", className); this.className = className; return this; } /** * <p>The name of the resource that corresponds to the UDF that you want to delete.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>test-udf</p> */ public Builder udfArtifactName(String udfArtifactName) { this.putQueryParameter("udfArtifactName", udfArtifactName); this.udfArtifactName = udfArtifactName; 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 DeleteUdfFunctionRequest build() { return new DeleteUdfFunctionRequest(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/DeleteUdfFunctionResponse.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 DeleteUdfFunctionResponse} extends {@link TeaModel} * * <p>DeleteUdfFunctionResponse</p> */ public class DeleteUdfFunctionResponse 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 DeleteUdfFunctionResponseBody body; private DeleteUdfFunctionResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DeleteUdfFunctionResponse 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 DeleteUdfFunctionResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DeleteUdfFunctionResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DeleteUdfFunctionResponseBody body); @Override DeleteUdfFunctionResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DeleteUdfFunctionResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DeleteUdfFunctionResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DeleteUdfFunctionResponse 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(DeleteUdfFunctionResponseBody body) { this.body = body; return this; } @Override public DeleteUdfFunctionResponse build() { return new DeleteUdfFunctionResponse(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/DeleteUdfFunctionResponseBody.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 DeleteUdfFunctionResponseBody} extends {@link TeaModel} * * <p>DeleteUdfFunctionResponseBody</p> */ public class DeleteUdfFunctionResponseBody 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 DeleteUdfFunctionResponseBody(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 DeleteUdfFunctionResponseBody 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; /** * <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>&quot;&quot;</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>&quot;&quot;</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 DeleteUdfFunctionResponseBody build() { return new DeleteUdfFunctionResponseBody(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/DeleteVariableRequest.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 DeleteVariableRequest} extends {@link RequestModel} * * <p>DeleteVariableRequest</p> */ public class DeleteVariableRequest 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.Header @com.aliyun.core.annotation.NameInMap("workspace") @com.aliyun.core.annotation.Validation(required = true) private String workspace; private DeleteVariableRequest(Builder builder) { super(builder); this.namespace = builder.namespace; this.name = builder.name; this.workspace = builder.workspace; } public static Builder builder() { return new Builder(); } public static DeleteVariableRequest 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 workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder extends Request.Builder<DeleteVariableRequest, Builder> { private String namespace; private String name; private String workspace; private Builder() { super(); } private Builder(DeleteVariableRequest request) { super(request); this.namespace = request.namespace; this.name = request.name; 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 variable that you want to delete.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>variableName</p> */ public Builder name(String name) { this.putPathParameter("name", name); this.name = name; 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 DeleteVariableRequest build() { return new DeleteVariableRequest(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/DeleteVariableResponse.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 DeleteVariableResponse} extends {@link TeaModel} * * <p>DeleteVariableResponse</p> */ public class DeleteVariableResponse 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 DeleteVariableResponseBody body; private DeleteVariableResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DeleteVariableResponse 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 DeleteVariableResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DeleteVariableResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DeleteVariableResponseBody body); @Override DeleteVariableResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DeleteVariableResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DeleteVariableResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DeleteVariableResponse 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(DeleteVariableResponseBody body) { this.body = body; return this; } @Override public DeleteVariableResponse build() { return new DeleteVariableResponse(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/DeleteVariableResponseBody.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 DeleteVariableResponseBody} extends {@link TeaModel} * * <p>DeleteVariableResponseBody</p> */ public class DeleteVariableResponseBody 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 DeleteVariableResponseBody(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 DeleteVariableResponseBody 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; /** * <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>&quot;&quot;</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>&quot;&quot;</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 DeleteVariableResponseBody build() { return new DeleteVariableResponseBody(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/DeployDeploymentDraftAsyncRequest.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 DeployDeploymentDraftAsyncRequest} extends {@link RequestModel} * * <p>DeployDeploymentDraftAsyncRequest</p> */ public class DeployDeploymentDraftAsyncRequest 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 DraftDeployParams body; @com.aliyun.core.annotation.Header @com.aliyun.core.annotation.NameInMap("workspace") @com.aliyun.core.annotation.Validation(required = true) private String workspace; private DeployDeploymentDraftAsyncRequest(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 DeployDeploymentDraftAsyncRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return namespace */ public String getNamespace() { return this.namespace; } /** * @return body */ public DraftDeployParams getBody() { return this.body; } /** * @return workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder extends Request.Builder<DeployDeploymentDraftAsyncRequest, Builder> { private String namespace; private DraftDeployParams body; private String workspace; private Builder() { super(); } private Builder(DeployDeploymentDraftAsyncRequest request) { super(request); this.namespace = request.namespace; 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> */ public Builder body(DraftDeployParams 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 DeployDeploymentDraftAsyncRequest build() { return new DeployDeploymentDraftAsyncRequest(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/DeployDeploymentDraftAsyncResponse.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 DeployDeploymentDraftAsyncResponse} extends {@link TeaModel} * * <p>DeployDeploymentDraftAsyncResponse</p> */ public class DeployDeploymentDraftAsyncResponse 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 DeployDeploymentDraftAsyncResponseBody body; private DeployDeploymentDraftAsyncResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DeployDeploymentDraftAsyncResponse 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 DeployDeploymentDraftAsyncResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DeployDeploymentDraftAsyncResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DeployDeploymentDraftAsyncResponseBody body); @Override DeployDeploymentDraftAsyncResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DeployDeploymentDraftAsyncResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DeployDeploymentDraftAsyncResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DeployDeploymentDraftAsyncResponse 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(DeployDeploymentDraftAsyncResponseBody body) { this.body = body; return this; } @Override public DeployDeploymentDraftAsyncResponse build() { return new DeployDeploymentDraftAsyncResponse(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/DeployDeploymentDraftAsyncResponseBody.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 DeployDeploymentDraftAsyncResponseBody} extends {@link TeaModel} * * <p>DeployDeploymentDraftAsyncResponseBody</p> */ public class DeployDeploymentDraftAsyncResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private Data 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 DeployDeploymentDraftAsyncResponseBody(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 DeployDeploymentDraftAsyncResponseBody create() { return builder().build(); } /** * @return data */ public Data 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 Data data; private String errorCode; private String errorMessage; private Integer httpCode; private String requestId; private Boolean success; /** * data. */ public Builder data(Data 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 DeployDeploymentDraftAsyncResponseBody build() { return new DeployDeploymentDraftAsyncResponseBody(this); } } /** * * {@link DeployDeploymentDraftAsyncResponseBody} extends {@link TeaModel} * * <p>DeployDeploymentDraftAsyncResponseBody</p> */ public static class Data extends TeaModel { @com.aliyun.core.annotation.NameInMap("ticketId") private String ticketId; private Data(Builder builder) { this.ticketId = builder.ticketId; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return ticketId */ public String getTicketId() { return this.ticketId; } public static final class Builder { private String ticketId; /** * ticketId. */ public Builder ticketId(String ticketId) { this.ticketId = ticketId; return this; } public Data build() { return new Data(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/Deployment.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 Deployment} extends {@link TeaModel} * * <p>Deployment</p> */ public class Deployment extends TeaModel { @com.aliyun.core.annotation.NameInMap("artifact") private Artifact artifact; @com.aliyun.core.annotation.NameInMap("batchResourceSetting") private BatchResourceSetting batchResourceSetting; @com.aliyun.core.annotation.NameInMap("createdAt") private String createdAt; @com.aliyun.core.annotation.NameInMap("creator") private String creator; @com.aliyun.core.annotation.NameInMap("creatorName") private String creatorName; @com.aliyun.core.annotation.NameInMap("deploymentHasChanged") private Boolean deploymentHasChanged; @com.aliyun.core.annotation.NameInMap("deploymentId") private String deploymentId; @com.aliyun.core.annotation.NameInMap("deploymentTarget") private BriefDeploymentTarget deploymentTarget; @com.aliyun.core.annotation.NameInMap("description") private String description; @com.aliyun.core.annotation.NameInMap("engineVersion") private String engineVersion; @com.aliyun.core.annotation.NameInMap("executionMode") private String executionMode; @com.aliyun.core.annotation.NameInMap("flinkConf") private java.util.Map<String, ?> flinkConf; @com.aliyun.core.annotation.NameInMap("jobSummary") private JobSummary jobSummary; @com.aliyun.core.annotation.NameInMap("labels") private java.util.Map<String, ?> labels; @com.aliyun.core.annotation.NameInMap("localVariables") private java.util.List<LocalVariable> localVariables; @com.aliyun.core.annotation.NameInMap("logging") private Logging logging; @com.aliyun.core.annotation.NameInMap("modifiedAt") private String modifiedAt; @com.aliyun.core.annotation.NameInMap("modifier") private String modifier; @com.aliyun.core.annotation.NameInMap("modifierName") private String modifierName; @com.aliyun.core.annotation.NameInMap("name") private String name; @com.aliyun.core.annotation.NameInMap("namespace") private String namespace; @com.aliyun.core.annotation.NameInMap("referencedDeploymentDraftId") private String referencedDeploymentDraftId; @com.aliyun.core.annotation.NameInMap("streamingResourceSetting") private StreamingResourceSetting streamingResourceSetting; @com.aliyun.core.annotation.NameInMap("workspace") private String workspace; private Deployment(Builder builder) { this.artifact = builder.artifact; this.batchResourceSetting = builder.batchResourceSetting; this.createdAt = builder.createdAt; this.creator = builder.creator; this.creatorName = builder.creatorName; this.deploymentHasChanged = builder.deploymentHasChanged; this.deploymentId = builder.deploymentId; this.deploymentTarget = builder.deploymentTarget; this.description = builder.description; this.engineVersion = builder.engineVersion; this.executionMode = builder.executionMode; this.flinkConf = builder.flinkConf; this.jobSummary = builder.jobSummary; this.labels = builder.labels; this.localVariables = builder.localVariables; this.logging = builder.logging; this.modifiedAt = builder.modifiedAt; this.modifier = builder.modifier; this.modifierName = builder.modifierName; this.name = builder.name; this.namespace = builder.namespace; this.referencedDeploymentDraftId = builder.referencedDeploymentDraftId; this.streamingResourceSetting = builder.streamingResourceSetting; this.workspace = builder.workspace; } public static Builder builder() { return new Builder(); } public static Deployment create() { return builder().build(); } /** * @return artifact */ public Artifact getArtifact() { return this.artifact; } /** * @return batchResourceSetting */ public BatchResourceSetting getBatchResourceSetting() { return this.batchResourceSetting; } /** * @return createdAt */ public String getCreatedAt() { return this.createdAt; } /** * @return creator */ public String getCreator() { return this.creator; } /** * @return creatorName */ public String getCreatorName() { return this.creatorName; } /** * @return deploymentHasChanged */ public Boolean getDeploymentHasChanged() { return this.deploymentHasChanged; } /** * @return deploymentId */ public String getDeploymentId() { return this.deploymentId; } /** * @return deploymentTarget */ public BriefDeploymentTarget getDeploymentTarget() { return this.deploymentTarget; } /** * @return description */ public String getDescription() { return this.description; } /** * @return engineVersion */ public String getEngineVersion() { return this.engineVersion; } /** * @return executionMode */ public String getExecutionMode() { return this.executionMode; } /** * @return flinkConf */ public java.util.Map<String, ?> getFlinkConf() { return this.flinkConf; } /** * @return jobSummary */ public JobSummary getJobSummary() { return this.jobSummary; } /** * @return labels */ public java.util.Map<String, ?> getLabels() { return this.labels; } /** * @return localVariables */ public java.util.List<LocalVariable> getLocalVariables() { return this.localVariables; } /** * @return logging */ public Logging getLogging() { return this.logging; } /** * @return modifiedAt */ public String getModifiedAt() { return this.modifiedAt; } /** * @return modifier */ public String getModifier() { return this.modifier; } /** * @return modifierName */ public String getModifierName() { return this.modifierName; } /** * @return name */ public String getName() { return this.name; } /** * @return namespace */ public String getNamespace() { return this.namespace; } /** * @return referencedDeploymentDraftId */ public String getReferencedDeploymentDraftId() { return this.referencedDeploymentDraftId; } /** * @return streamingResourceSetting */ public StreamingResourceSetting getStreamingResourceSetting() { return this.streamingResourceSetting; } /** * @return workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder { private Artifact artifact; private BatchResourceSetting batchResourceSetting; private String createdAt; private String creator; private String creatorName; private Boolean deploymentHasChanged; private String deploymentId; private BriefDeploymentTarget deploymentTarget; private String description; private String engineVersion; private String executionMode; private java.util.Map<String, ?> flinkConf; private JobSummary jobSummary; private java.util.Map<String, ?> labels; private java.util.List<LocalVariable> localVariables; private Logging logging; private String modifiedAt; private String modifier; private String modifierName; private String name; private String namespace; private String referencedDeploymentDraftId; private StreamingResourceSetting streamingResourceSetting; private String workspace; /** * artifact. */ public Builder artifact(Artifact artifact) { this.artifact = artifact; return this; } /** * batchResourceSetting. */ public Builder batchResourceSetting(BatchResourceSetting batchResourceSetting) { this.batchResourceSetting = batchResourceSetting; return this; } /** * createdAt. */ public Builder createdAt(String createdAt) { this.createdAt = createdAt; return this; } /** * creator. */ public Builder creator(String creator) { this.creator = creator; return this; } /** * creatorName. */ public Builder creatorName(String creatorName) { this.creatorName = creatorName; return this; } /** * deploymentHasChanged. */ public Builder deploymentHasChanged(Boolean deploymentHasChanged) { this.deploymentHasChanged = deploymentHasChanged; return this; } /** * deploymentId. */ public Builder deploymentId(String deploymentId) { this.deploymentId = deploymentId; return this; } /** * deploymentTarget. */ public Builder deploymentTarget(BriefDeploymentTarget deploymentTarget) { this.deploymentTarget = deploymentTarget; return this; } /** * description. */ public Builder description(String description) { this.description = description; return this; } /** * engineVersion. */ public Builder engineVersion(String engineVersion) { this.engineVersion = engineVersion; return this; } /** * executionMode. */ public Builder executionMode(String executionMode) { this.executionMode = executionMode; return this; } /** * flinkConf. */ public Builder flinkConf(java.util.Map<String, ?> flinkConf) { this.flinkConf = flinkConf; return this; } /** * jobSummary. */ public Builder jobSummary(JobSummary jobSummary) { this.jobSummary = jobSummary; return this; } /** * labels. */ public Builder labels(java.util.Map<String, ?> labels) { this.labels = labels; return this; } /** * localVariables. */ public Builder localVariables(java.util.List<LocalVariable> localVariables) { this.localVariables = localVariables; return this; } /** * logging. */ public Builder logging(Logging logging) { this.logging = logging; return this; } /** * modifiedAt. */ public Builder modifiedAt(String modifiedAt) { this.modifiedAt = modifiedAt; return this; } /** * modifier. */ public Builder modifier(String modifier) { this.modifier = modifier; return this; } /** * modifierName. */ public Builder modifierName(String modifierName) { this.modifierName = modifierName; return this; } /** * name. */ public Builder name(String name) { this.name = name; return this; } /** * namespace. */ public Builder namespace(String namespace) { this.namespace = namespace; return this; } /** * referencedDeploymentDraftId. */ public Builder referencedDeploymentDraftId(String referencedDeploymentDraftId) { this.referencedDeploymentDraftId = referencedDeploymentDraftId; return this; } /** * streamingResourceSetting. */ public Builder streamingResourceSetting(StreamingResourceSetting streamingResourceSetting) { this.streamingResourceSetting = streamingResourceSetting; return this; } /** * workspace. */ public Builder workspace(String workspace) { this.workspace = workspace; return this; } public Deployment build() { return new Deployment(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/DeploymentDraft.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 DeploymentDraft} extends {@link TeaModel} * * <p>DeploymentDraft</p> */ public class DeploymentDraft extends TeaModel { @com.aliyun.core.annotation.NameInMap("artifact") private Artifact artifact; @com.aliyun.core.annotation.NameInMap("createdAt") private Long createdAt; @com.aliyun.core.annotation.NameInMap("creator") private String creator; @com.aliyun.core.annotation.NameInMap("creatorName") private String creatorName; @com.aliyun.core.annotation.NameInMap("deploymentDraftId") private String deploymentDraftId; @com.aliyun.core.annotation.NameInMap("engineVersion") private String engineVersion; @com.aliyun.core.annotation.NameInMap("executionMode") private String executionMode; @com.aliyun.core.annotation.NameInMap("labels") private java.util.Map<String, ?> labels; @com.aliyun.core.annotation.NameInMap("localVariables") private java.util.List<LocalVariable> localVariables; @com.aliyun.core.annotation.NameInMap("lock") private Lock lock; @com.aliyun.core.annotation.NameInMap("modifiedAt") private Long modifiedAt; @com.aliyun.core.annotation.NameInMap("modifier") private String modifier; @com.aliyun.core.annotation.NameInMap("modifierName") private String modifierName; @com.aliyun.core.annotation.NameInMap("name") private String name; @com.aliyun.core.annotation.NameInMap("namespace") private String namespace; @com.aliyun.core.annotation.NameInMap("parentId") private String parentId; @com.aliyun.core.annotation.NameInMap("referencedDeploymentId") private String referencedDeploymentId; @com.aliyun.core.annotation.NameInMap("workspace") private String workspace; private DeploymentDraft(Builder builder) { this.artifact = builder.artifact; this.createdAt = builder.createdAt; this.creator = builder.creator; this.creatorName = builder.creatorName; this.deploymentDraftId = builder.deploymentDraftId; this.engineVersion = builder.engineVersion; this.executionMode = builder.executionMode; this.labels = builder.labels; this.localVariables = builder.localVariables; this.lock = builder.lock; this.modifiedAt = builder.modifiedAt; this.modifier = builder.modifier; this.modifierName = builder.modifierName; this.name = builder.name; this.namespace = builder.namespace; this.parentId = builder.parentId; this.referencedDeploymentId = builder.referencedDeploymentId; this.workspace = builder.workspace; } public static Builder builder() { return new Builder(); } public static DeploymentDraft create() { return builder().build(); } /** * @return artifact */ public Artifact getArtifact() { return this.artifact; } /** * @return createdAt */ public Long getCreatedAt() { return this.createdAt; } /** * @return creator */ public String getCreator() { return this.creator; } /** * @return creatorName */ public String getCreatorName() { return this.creatorName; } /** * @return deploymentDraftId */ public String getDeploymentDraftId() { return this.deploymentDraftId; } /** * @return engineVersion */ public String getEngineVersion() { return this.engineVersion; } /** * @return executionMode */ public String getExecutionMode() { return this.executionMode; } /** * @return labels */ public java.util.Map<String, ?> getLabels() { return this.labels; } /** * @return localVariables */ public java.util.List<LocalVariable> getLocalVariables() { return this.localVariables; } /** * @return lock */ public Lock getLock() { return this.lock; } /** * @return modifiedAt */ public Long getModifiedAt() { return this.modifiedAt; } /** * @return modifier */ public String getModifier() { return this.modifier; } /** * @return modifierName */ public String getModifierName() { return this.modifierName; } /** * @return name */ public String getName() { return this.name; } /** * @return namespace */ public String getNamespace() { return this.namespace; } /** * @return parentId */ public String getParentId() { return this.parentId; } /** * @return referencedDeploymentId */ public String getReferencedDeploymentId() { return this.referencedDeploymentId; } /** * @return workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder { private Artifact artifact; private Long createdAt; private String creator; private String creatorName; private String deploymentDraftId; private String engineVersion; private String executionMode; private java.util.Map<String, ?> labels; private java.util.List<LocalVariable> localVariables; private Lock lock; private Long modifiedAt; private String modifier; private String modifierName; private String name; private String namespace; private String parentId; private String referencedDeploymentId; private String workspace; /** * artifact. */ public Builder artifact(Artifact artifact) { this.artifact = artifact; return this; } /** * createdAt. */ public Builder createdAt(Long createdAt) { this.createdAt = createdAt; return this; } /** * creator. */ public Builder creator(String creator) { this.creator = creator; return this; } /** * creatorName. */ public Builder creatorName(String creatorName) { this.creatorName = creatorName; return this; } /** * deploymentDraftId. */ public Builder deploymentDraftId(String deploymentDraftId) { this.deploymentDraftId = deploymentDraftId; return this; } /** * engineVersion. */ public Builder engineVersion(String engineVersion) { this.engineVersion = engineVersion; return this; } /** * executionMode. */ public Builder executionMode(String executionMode) { this.executionMode = executionMode; return this; } /** * labels. */ public Builder labels(java.util.Map<String, ?> labels) { this.labels = labels; return this; } /** * localVariables. */ public Builder localVariables(java.util.List<LocalVariable> localVariables) { this.localVariables = localVariables; return this; } /** * lock. */ public Builder lock(Lock lock) { this.lock = lock; return this; } /** * modifiedAt. */ public Builder modifiedAt(Long modifiedAt) { this.modifiedAt = modifiedAt; return this; } /** * modifier. */ public Builder modifier(String modifier) { this.modifier = modifier; return this; } /** * modifierName. */ public Builder modifierName(String modifierName) { this.modifierName = modifierName; return this; } /** * name. */ public Builder name(String name) { this.name = name; return this; } /** * namespace. */ public Builder namespace(String namespace) { this.namespace = namespace; return this; } /** * parentId. */ public Builder parentId(String parentId) { this.parentId = parentId; return this; } /** * referencedDeploymentId. */ public Builder referencedDeploymentId(String referencedDeploymentId) { this.referencedDeploymentId = referencedDeploymentId; return this; } /** * workspace. */ public Builder workspace(String workspace) { this.workspace = workspace; return this; } public DeploymentDraft build() { return new DeploymentDraft(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/DeploymentRestoreStrategy.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 DeploymentRestoreStrategy} extends {@link TeaModel} * * <p>DeploymentRestoreStrategy</p> */ public class DeploymentRestoreStrategy extends TeaModel { @com.aliyun.core.annotation.NameInMap("allowNonRestoredState") private Boolean allowNonRestoredState; @com.aliyun.core.annotation.NameInMap("jobStartTimeInMs") private Long jobStartTimeInMs; @com.aliyun.core.annotation.NameInMap("kind") private String kind; @com.aliyun.core.annotation.NameInMap("savepointId") private String savepointId; private DeploymentRestoreStrategy(Builder builder) { this.allowNonRestoredState = builder.allowNonRestoredState; this.jobStartTimeInMs = builder.jobStartTimeInMs; this.kind = builder.kind; this.savepointId = builder.savepointId; } public static Builder builder() { return new Builder(); } public static DeploymentRestoreStrategy create() { return builder().build(); } /** * @return allowNonRestoredState */ public Boolean getAllowNonRestoredState() { return this.allowNonRestoredState; } /** * @return jobStartTimeInMs */ public Long getJobStartTimeInMs() { return this.jobStartTimeInMs; } /** * @return kind */ public String getKind() { return this.kind; } /** * @return savepointId */ public String getSavepointId() { return this.savepointId; } public static final class Builder { private Boolean allowNonRestoredState; private Long jobStartTimeInMs; private String kind; private String savepointId; /** * allowNonRestoredState. */ public Builder allowNonRestoredState(Boolean allowNonRestoredState) { this.allowNonRestoredState = allowNonRestoredState; return this; } /** * jobStartTimeInMs. */ public Builder jobStartTimeInMs(Long jobStartTimeInMs) { this.jobStartTimeInMs = jobStartTimeInMs; return this; } /** * kind. */ public Builder kind(String kind) { this.kind = kind; return this; } /** * savepointId. */ public Builder savepointId(String savepointId) { this.savepointId = savepointId; return this; } public DeploymentRestoreStrategy build() { return new DeploymentRestoreStrategy(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/DeploymentTarget.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 DeploymentTarget} extends {@link TeaModel} * * <p>DeploymentTarget</p> */ public class DeploymentTarget extends TeaModel { @com.aliyun.core.annotation.NameInMap("name") private String name; @com.aliyun.core.annotation.NameInMap("namespace") private String namespace; @com.aliyun.core.annotation.NameInMap("quota") private ResourceQuota quota; private DeploymentTarget(Builder builder) { this.name = builder.name; this.namespace = builder.namespace; this.quota = builder.quota; } public static Builder builder() { return new Builder(); } public static DeploymentTarget create() { return builder().build(); } /** * @return name */ public String getName() { return this.name; } /** * @return namespace */ public String getNamespace() { return this.namespace; } /** * @return quota */ public ResourceQuota getQuota() { return this.quota; } public static final class Builder { private String name; private String namespace; private ResourceQuota quota; /** * name. */ public Builder name(String name) { this.name = name; return this; } /** * namespace. */ public Builder namespace(String namespace) { this.namespace = namespace; return this; } /** * quota. */ public Builder quota(ResourceQuota quota) { this.quota = quota; return this; } public DeploymentTarget build() { return new DeploymentTarget(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/DraftDeployParams.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 DraftDeployParams} extends {@link TeaModel} * * <p>DraftDeployParams</p> */ public class DraftDeployParams extends TeaModel { @com.aliyun.core.annotation.NameInMap("deploymentDraftId") private String deploymentDraftId; @com.aliyun.core.annotation.NameInMap("deploymentTarget") private BriefDeploymentTarget deploymentTarget; @com.aliyun.core.annotation.NameInMap("skipValidate") private Boolean skipValidate; private DraftDeployParams(Builder builder) { this.deploymentDraftId = builder.deploymentDraftId; this.deploymentTarget = builder.deploymentTarget; this.skipValidate = builder.skipValidate; } public static Builder builder() { return new Builder(); } public static DraftDeployParams create() { return builder().build(); } /** * @return deploymentDraftId */ public String getDeploymentDraftId() { return this.deploymentDraftId; } /** * @return deploymentTarget */ public BriefDeploymentTarget getDeploymentTarget() { return this.deploymentTarget; } /** * @return skipValidate */ public Boolean getSkipValidate() { return this.skipValidate; } public static final class Builder { private String deploymentDraftId; private BriefDeploymentTarget deploymentTarget; private Boolean skipValidate; /** * deploymentDraftId. */ public Builder deploymentDraftId(String deploymentDraftId) { this.deploymentDraftId = deploymentDraftId; return this; } /** * deploymentTarget. */ public Builder deploymentTarget(BriefDeploymentTarget deploymentTarget) { this.deploymentTarget = deploymentTarget; return this; } /** * skipValidate. */ public Builder skipValidate(Boolean skipValidate) { this.skipValidate = skipValidate; return this; } public DraftDeployParams build() { return new DraftDeployParams(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/DraftDeployResult.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 DraftDeployResult} extends {@link TeaModel} * * <p>DraftDeployResult</p> */ public class DraftDeployResult extends TeaModel { @com.aliyun.core.annotation.NameInMap("artifactValidationDetail") private ValidateStatementResult artifactValidationDetail; @com.aliyun.core.annotation.NameInMap("deploymentId") private String deploymentId; @com.aliyun.core.annotation.NameInMap("message") private String message; @com.aliyun.core.annotation.NameInMap("success") private Boolean success; private DraftDeployResult(Builder builder) { this.artifactValidationDetail = builder.artifactValidationDetail; this.deploymentId = builder.deploymentId; this.message = builder.message; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static DraftDeployResult create() { return builder().build(); } /** * @return artifactValidationDetail */ public ValidateStatementResult getArtifactValidationDetail() { return this.artifactValidationDetail; } /** * @return deploymentId */ public String getDeploymentId() { return this.deploymentId; } /** * @return message */ public String getMessage() { return this.message; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private ValidateStatementResult artifactValidationDetail; private String deploymentId; private String message; private Boolean success; /** * artifactValidationDetail. */ public Builder artifactValidationDetail(ValidateStatementResult artifactValidationDetail) { this.artifactValidationDetail = artifactValidationDetail; return this; } /** * deploymentId. */ public Builder deploymentId(String deploymentId) { this.deploymentId = deploymentId; return this; } /** * message. */ public Builder message(String message) { this.message = message; return this; } /** * success. */ public Builder success(Boolean success) { this.success = success; return this; } public DraftDeployResult build() { return new DraftDeployResult(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/Edge.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 Edge} extends {@link TeaModel} * * <p>Edge</p> */ public class Edge extends TeaModel { @com.aliyun.core.annotation.NameInMap("columnLineage") private java.util.List<Relation> columnLineage; @com.aliyun.core.annotation.NameInMap("tableLineage") private java.util.List<Relation> tableLineage; private Edge(Builder builder) { this.columnLineage = builder.columnLineage; this.tableLineage = builder.tableLineage; } public static Builder builder() { return new Builder(); } public static Edge create() { return builder().build(); } /** * @return columnLineage */ public java.util.List<Relation> getColumnLineage() { return this.columnLineage; } /** * @return tableLineage */ public java.util.List<Relation> getTableLineage() { return this.tableLineage; } public static final class Builder { private java.util.List<Relation> columnLineage; private java.util.List<Relation> tableLineage; /** * columnLineage. */ public Builder columnLineage(java.util.List<Relation> columnLineage) { this.columnLineage = columnLineage; return this; } /** * tableLineage. */ public Builder tableLineage(java.util.List<Relation> tableLineage) { this.tableLineage = tableLineage; return this; } public Edge build() { return new Edge(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/EditableNamespace.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 EditableNamespace} extends {@link TeaModel} * * <p>EditableNamespace</p> */ public class EditableNamespace extends TeaModel { @com.aliyun.core.annotation.NameInMap("Namespace") private String namespace; @com.aliyun.core.annotation.NameInMap("Role") private String role; @com.aliyun.core.annotation.NameInMap("WorkspaceId") private String workspaceId; private EditableNamespace(Builder builder) { this.namespace = builder.namespace; this.role = builder.role; this.workspaceId = builder.workspaceId; } public static Builder builder() { return new Builder(); } public static EditableNamespace create() { return builder().build(); } /** * @return namespace */ public String getNamespace() { return this.namespace; } /** * @return role */ public String getRole() { return this.role; } /** * @return workspaceId */ public String getWorkspaceId() { return this.workspaceId; } public static final class Builder { private String namespace; private String role; private String workspaceId; /** * Namespace. */ public Builder namespace(String namespace) { this.namespace = namespace; return this; } /** * Role. */ public Builder role(String role) { this.role = role; return this; } /** * WorkspaceId. */ public Builder workspaceId(String workspaceId) { this.workspaceId = workspaceId; return this; } public EditableNamespace build() { return new EditableNamespace(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/EngineVersionMetadata.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 EngineVersionMetadata} extends {@link TeaModel} * * <p>EngineVersionMetadata</p> */ public class EngineVersionMetadata extends TeaModel { @com.aliyun.core.annotation.NameInMap("engineVersion") @com.aliyun.core.annotation.Validation(required = true) private String engineVersion; @com.aliyun.core.annotation.NameInMap("features") private EngineVersionSupportedFeatures features; @com.aliyun.core.annotation.NameInMap("status") @com.aliyun.core.annotation.Validation(required = true) private String status; private EngineVersionMetadata(Builder builder) { this.engineVersion = builder.engineVersion; this.features = builder.features; this.status = builder.status; } public static Builder builder() { return new Builder(); } public static EngineVersionMetadata create() { return builder().build(); } /** * @return engineVersion */ public String getEngineVersion() { return this.engineVersion; } /** * @return features */ public EngineVersionSupportedFeatures getFeatures() { return this.features; } /** * @return status */ public String getStatus() { return this.status; } public static final class Builder { private String engineVersion; private EngineVersionSupportedFeatures features; private String status; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>vvr-6.0.0-flink-1.15</p> */ public Builder engineVersion(String engineVersion) { this.engineVersion = engineVersion; return this; } /** * features. */ public Builder features(EngineVersionSupportedFeatures features) { this.features = features; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>STABLE</p> */ public Builder status(String status) { this.status = status; return this; } public EngineVersionMetadata build() { return new EngineVersionMetadata(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/EngineVersionMetadataIndex.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 EngineVersionMetadataIndex} extends {@link TeaModel} * * <p>EngineVersionMetadataIndex</p> */ public class EngineVersionMetadataIndex extends TeaModel { @com.aliyun.core.annotation.NameInMap("defaultEngineVersion") private String defaultEngineVersion; @com.aliyun.core.annotation.NameInMap("engineVersionMetadata") private java.util.List<EngineVersionMetadata> engineVersionMetadata; private EngineVersionMetadataIndex(Builder builder) { this.defaultEngineVersion = builder.defaultEngineVersion; this.engineVersionMetadata = builder.engineVersionMetadata; } public static Builder builder() { return new Builder(); } public static EngineVersionMetadataIndex create() { return builder().build(); } /** * @return defaultEngineVersion */ public String getDefaultEngineVersion() { return this.defaultEngineVersion; } /** * @return engineVersionMetadata */ public java.util.List<EngineVersionMetadata> getEngineVersionMetadata() { return this.engineVersionMetadata; } public static final class Builder { private String defaultEngineVersion; private java.util.List<EngineVersionMetadata> engineVersionMetadata; /** * defaultEngineVersion. */ public Builder defaultEngineVersion(String defaultEngineVersion) { this.defaultEngineVersion = defaultEngineVersion; return this; } /** * engineVersionMetadata. */ public Builder engineVersionMetadata(java.util.List<EngineVersionMetadata> engineVersionMetadata) { this.engineVersionMetadata = engineVersionMetadata; return this; } public EngineVersionMetadataIndex build() { return new EngineVersionMetadataIndex(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/EngineVersionSupportedFeatures.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 EngineVersionSupportedFeatures} extends {@link TeaModel} * * <p>EngineVersionSupportedFeatures</p> */ public class EngineVersionSupportedFeatures extends TeaModel { @com.aliyun.core.annotation.NameInMap("supportNativeSavepoint") private Boolean supportNativeSavepoint; @com.aliyun.core.annotation.NameInMap("useForSqlDeployments") private Boolean useForSqlDeployments; private EngineVersionSupportedFeatures(Builder builder) { this.supportNativeSavepoint = builder.supportNativeSavepoint; this.useForSqlDeployments = builder.useForSqlDeployments; } public static Builder builder() { return new Builder(); } public static EngineVersionSupportedFeatures create() { return builder().build(); } /** * @return supportNativeSavepoint */ public Boolean getSupportNativeSavepoint() { return this.supportNativeSavepoint; } /** * @return useForSqlDeployments */ public Boolean getUseForSqlDeployments() { return this.useForSqlDeployments; } public static final class Builder { private Boolean supportNativeSavepoint; private Boolean useForSqlDeployments; /** * supportNativeSavepoint. */ public Builder supportNativeSavepoint(Boolean supportNativeSavepoint) { this.supportNativeSavepoint = supportNativeSavepoint; return this; } /** * useForSqlDeployments. */ public Builder useForSqlDeployments(Boolean useForSqlDeployments) { this.useForSqlDeployments = useForSqlDeployments; return this; } public EngineVersionSupportedFeatures build() { return new EngineVersionSupportedFeatures(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/ErrorDetails.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 ErrorDetails} extends {@link TeaModel} * * <p>ErrorDetails</p> */ public class ErrorDetails 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("invalidflinkConf") private java.util.List<String> invalidflinkConf; @com.aliyun.core.annotation.NameInMap("lineNumber") private String lineNumber; @com.aliyun.core.annotation.NameInMap("message") private String message; private ErrorDetails(Builder builder) { this.columnNumber = builder.columnNumber; this.endColumnNumber = builder.endColumnNumber; this.endLineNumber = builder.endLineNumber; this.invalidflinkConf = builder.invalidflinkConf; this.lineNumber = builder.lineNumber; this.message = builder.message; } public static Builder builder() { return new Builder(); } public static ErrorDetails 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 invalidflinkConf */ public java.util.List<String> getInvalidflinkConf() { return this.invalidflinkConf; } /** * @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 java.util.List<String> invalidflinkConf; 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; } /** * invalidflinkConf. */ public Builder invalidflinkConf(java.util.List<String> invalidflinkConf) { this.invalidflinkConf = invalidflinkConf; 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 ErrorDetails build() { return new ErrorDetails(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/Event.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 Event} extends {@link TeaModel} * * <p>Event</p> */ public class Event extends TeaModel { @com.aliyun.core.annotation.NameInMap("createdAt") private String createdAt; @com.aliyun.core.annotation.NameInMap("deploymentId") private String deploymentId; @com.aliyun.core.annotation.NameInMap("eventId") private String eventId; @com.aliyun.core.annotation.NameInMap("eventName") private String eventName; @com.aliyun.core.annotation.NameInMap("jobId") private String jobId; @com.aliyun.core.annotation.NameInMap("message") private String message; @com.aliyun.core.annotation.NameInMap("namespace") private String namespace; @com.aliyun.core.annotation.NameInMap("workspace") private String workspace; private Event(Builder builder) { this.createdAt = builder.createdAt; this.deploymentId = builder.deploymentId; this.eventId = builder.eventId; this.eventName = builder.eventName; this.jobId = builder.jobId; this.message = builder.message; this.namespace = builder.namespace; this.workspace = builder.workspace; } public static Builder builder() { return new Builder(); } public static Event create() { return builder().build(); } /** * @return createdAt */ public String getCreatedAt() { return this.createdAt; } /** * @return deploymentId */ public String getDeploymentId() { return this.deploymentId; } /** * @return eventId */ public String getEventId() { return this.eventId; } /** * @return eventName */ public String getEventName() { return this.eventName; } /** * @return jobId */ public String getJobId() { return this.jobId; } /** * @return message */ public String getMessage() { return this.message; } /** * @return namespace */ public String getNamespace() { return this.namespace; } /** * @return workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder { private String createdAt; private String deploymentId; private String eventId; private String eventName; private String jobId; private String message; private String namespace; private String workspace; /** * createdAt. */ public Builder createdAt(String createdAt) { this.createdAt = createdAt; return this; } /** * deploymentId. */ public Builder deploymentId(String deploymentId) { this.deploymentId = deploymentId; return this; } /** * eventId. */ public Builder eventId(String eventId) { this.eventId = eventId; return this; } /** * eventName. */ public Builder eventName(String eventName) { this.eventName = eventName; return this; } /** * jobId. */ public Builder jobId(String jobId) { this.jobId = jobId; return this; } /** * message. */ public Builder message(String message) { this.message = message; return this; } /** * namespace. */ public Builder namespace(String namespace) { this.namespace = namespace; return this; } /** * workspace. */ public Builder workspace(String workspace) { this.workspace = workspace; return this; } public Event build() { return new Event(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/ExecuteSqlStatementRequest.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 ExecuteSqlStatementRequest} extends {@link RequestModel} * * <p>ExecuteSqlStatementRequest</p> */ public class ExecuteSqlStatementRequest 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 SqlStatementWithContext body; @com.aliyun.core.annotation.Header @com.aliyun.core.annotation.NameInMap("workspace") @com.aliyun.core.annotation.Validation(required = true) private String workspace; private ExecuteSqlStatementRequest(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 ExecuteSqlStatementRequest 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<ExecuteSqlStatementRequest, Builder> { private String namespace; private SqlStatementWithContext body; private String workspace; private Builder() { super(); } private Builder(ExecuteSqlStatementRequest request) { super(request); this.namespace = request.namespace; 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; } /** * body. */ public Builder body(SqlStatementWithContext 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 ExecuteSqlStatementRequest build() { return new ExecuteSqlStatementRequest(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/ExecuteSqlStatementResponse.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 ExecuteSqlStatementResponse} extends {@link TeaModel} * * <p>ExecuteSqlStatementResponse</p> */ public class ExecuteSqlStatementResponse 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 ExecuteSqlStatementResponseBody body; private ExecuteSqlStatementResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static ExecuteSqlStatementResponse 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 ExecuteSqlStatementResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<ExecuteSqlStatementResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(ExecuteSqlStatementResponseBody body); @Override ExecuteSqlStatementResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<ExecuteSqlStatementResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private ExecuteSqlStatementResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(ExecuteSqlStatementResponse 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(ExecuteSqlStatementResponseBody body) { this.body = body; return this; } @Override public ExecuteSqlStatementResponse build() { return new ExecuteSqlStatementResponse(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/ExecuteSqlStatementResponseBody.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 ExecuteSqlStatementResponseBody} extends {@link TeaModel} * * <p>ExecuteSqlStatementResponseBody</p> */ public class ExecuteSqlStatementResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private SqlStatementExecuteResult 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 ExecuteSqlStatementResponseBody(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 ExecuteSqlStatementResponseBody create() { return builder().build(); } /** * @return data */ public SqlStatementExecuteResult 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 SqlStatementExecuteResult data; private String errorCode; private String errorMessage; private Integer httpCode; private String requestId; private Boolean success; /** * data. */ public Builder data(SqlStatementExecuteResult 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 ExecuteSqlStatementResponseBody build() { return new ExecuteSqlStatementResponseBody(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/ExpertResourceSetting.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 ExpertResourceSetting} extends {@link TeaModel} * * <p>ExpertResourceSetting</p> */ public class ExpertResourceSetting extends TeaModel { @com.aliyun.core.annotation.NameInMap("jobmanagerResourceSettingSpec") private BasicResourceSettingSpec jobmanagerResourceSettingSpec; @com.aliyun.core.annotation.NameInMap("resourcePlan") private String resourcePlan; private ExpertResourceSetting(Builder builder) { this.jobmanagerResourceSettingSpec = builder.jobmanagerResourceSettingSpec; this.resourcePlan = builder.resourcePlan; } public static Builder builder() { return new Builder(); } public static ExpertResourceSetting create() { return builder().build(); } /** * @return jobmanagerResourceSettingSpec */ public BasicResourceSettingSpec getJobmanagerResourceSettingSpec() { return this.jobmanagerResourceSettingSpec; } /** * @return resourcePlan */ public String getResourcePlan() { return this.resourcePlan; } public static final class Builder { private BasicResourceSettingSpec jobmanagerResourceSettingSpec; private String resourcePlan; /** * jobmanagerResourceSettingSpec. */ public Builder jobmanagerResourceSettingSpec(BasicResourceSettingSpec jobmanagerResourceSettingSpec) { this.jobmanagerResourceSettingSpec = jobmanagerResourceSettingSpec; return this; } /** * resourcePlan. */ public Builder resourcePlan(String resourcePlan) { this.resourcePlan = resourcePlan; return this; } public ExpertResourceSetting build() { return new ExpertResourceSetting(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/FlinkApiProxyRequest.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 FlinkApiProxyRequest} extends {@link RequestModel} * * <p>FlinkApiProxyRequest</p> */ public class FlinkApiProxyRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("flinkApiPath") @com.aliyun.core.annotation.Validation(required = true) private String flinkApiPath; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("namespace") @com.aliyun.core.annotation.Validation(required = true) private String namespace; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("resourceId") @com.aliyun.core.annotation.Validation(required = true) private String resourceId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("resourceType") @com.aliyun.core.annotation.Validation(required = true) private String resourceType; @com.aliyun.core.annotation.Header @com.aliyun.core.annotation.NameInMap("workspace") @com.aliyun.core.annotation.Validation(required = true) private String workspace; private FlinkApiProxyRequest(Builder builder) { super(builder); this.flinkApiPath = builder.flinkApiPath; this.namespace = builder.namespace; this.resourceId = builder.resourceId; this.resourceType = builder.resourceType; this.workspace = builder.workspace; } public static Builder builder() { return new Builder(); } public static FlinkApiProxyRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return flinkApiPath */ public String getFlinkApiPath() { return this.flinkApiPath; } /** * @return namespace */ public String getNamespace() { return this.namespace; } /** * @return resourceId */ public String getResourceId() { return this.resourceId; } /** * @return resourceType */ public String getResourceType() { return this.resourceType; } /** * @return workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder extends Request.Builder<FlinkApiProxyRequest, Builder> { private String flinkApiPath; private String namespace; private String resourceId; private String resourceType; private String workspace; private Builder() { super(); } private Builder(FlinkApiProxyRequest request) { super(request); this.flinkApiPath = request.flinkApiPath; this.namespace = request.namespace; this.resourceId = request.resourceId; this.resourceType = request.resourceType; this.workspace = request.workspace; } /** * <p>The path of the Flink UI.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>/jobs/4df35f8e54554b23bf7dcd38a151****</p> */ public Builder flinkApiPath(String flinkApiPath) { this.putQueryParameter("flinkApiPath", flinkApiPath); this.flinkApiPath = flinkApiPath; return this; } /** * <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.putQueryParameter("namespace", namespace); this.namespace = namespace; return this; } /** * <p>The resource ID.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>5a27a3aa-c5b9-4dc1-8c86-be57d2d6****</p> */ public Builder resourceId(String resourceId) { this.putQueryParameter("resourceId", resourceId); this.resourceId = resourceId; return this; } /** * <p>The type of the resource. Valid values:</p> * <ul> * <li>jobs</li> * <li>sessionclusters</li> * </ul> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>jobs</p> */ public Builder resourceType(String resourceType) { this.putQueryParameter("resourceType", resourceType); this.resourceType = resourceType; 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 FlinkApiProxyRequest build() { return new FlinkApiProxyRequest(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/FlinkApiProxyResponse.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 FlinkApiProxyResponse} extends {@link TeaModel} * * <p>FlinkApiProxyResponse</p> */ public class FlinkApiProxyResponse 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 FlinkApiProxyResponseBody body; private FlinkApiProxyResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static FlinkApiProxyResponse 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 FlinkApiProxyResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<FlinkApiProxyResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(FlinkApiProxyResponseBody body); @Override FlinkApiProxyResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<FlinkApiProxyResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private FlinkApiProxyResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(FlinkApiProxyResponse 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(FlinkApiProxyResponseBody body) { this.body = body; return this; } @Override public FlinkApiProxyResponse build() { return new FlinkApiProxyResponse(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/FlinkApiProxyResponseBody.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 FlinkApiProxyResponseBody} extends {@link TeaModel} * * <p>FlinkApiProxyResponseBody</p> */ public class FlinkApiProxyResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private String 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 FlinkApiProxyResponseBody(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 FlinkApiProxyResponseBody create() { return builder().build(); } /** * @return data */ public String 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 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 result of the proxy request was returned.</li> * <li>If the value of success was false, a null value was returned.</li> * </ul> * * <strong>example:</strong> * <p>{ &quot;jobs&quot;: [ { &quot;jid&quot;: &quot;4df35f8e54554b23bf7dcd38a151****&quot;, &quot;name&quot;: &quot;69d001d5-419a-4bfc-9c2e-849cacd3****&quot;, &quot;state&quot;: &quot;RUNNING&quot;, &quot;start-time&quot;: 1659154942068, &quot;end-time&quot;: -1, &quot;duration&quot;: 188161756, &quot;last-modification&quot;: 1659154968305, &quot;tasks&quot;: { &quot;total&quot;: 2, &quot;created&quot;: 0, &quot;scheduled&quot;: 0, &quot;deploying&quot;: 0, &quot;running&quot;: 2, &quot;finished&quot;: 0, &quot;canceling&quot;: 0, &quot;canceled&quot;: 0, &quot;failed&quot;: 0, &quot;reconciling&quot;: 0, &quot;initializing&quot;: 0 } } ] }</p> */ public Builder data(String 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>&quot;&quot;</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>&quot;&quot;</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 FlinkApiProxyResponseBody build() { return new FlinkApiProxyResponseBody(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/Folder.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 Folder} extends {@link TeaModel} * * <p>Folder</p> */ public class Folder extends TeaModel { @com.aliyun.core.annotation.NameInMap("createdAt") private Long createdAt; @com.aliyun.core.annotation.NameInMap("folderId") private String folderId; @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("parentId") private String parentId; @com.aliyun.core.annotation.NameInMap("subFolder") private java.util.List<SubFolder> subFolder; @com.aliyun.core.annotation.NameInMap("workspace") private String workspace; private Folder(Builder builder) { this.createdAt = builder.createdAt; this.folderId = builder.folderId; this.modifiedAt = builder.modifiedAt; this.name = builder.name; this.namespace = builder.namespace; this.parentId = builder.parentId; this.subFolder = builder.subFolder; this.workspace = builder.workspace; } public static Builder builder() { return new Builder(); } public static Folder create() { return builder().build(); } /** * @return createdAt */ public Long getCreatedAt() { return this.createdAt; } /** * @return folderId */ public String getFolderId() { return this.folderId; } /** * @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 parentId */ public String getParentId() { return this.parentId; } /** * @return subFolder */ public java.util.List<SubFolder> getSubFolder() { return this.subFolder; } /** * @return workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder { private Long createdAt; private String folderId; private Long modifiedAt; private String name; private String namespace; private String parentId; private java.util.List<SubFolder> subFolder; private String workspace; /** * createdAt. */ public Builder createdAt(Long createdAt) { this.createdAt = createdAt; return this; } /** * folderId. */ public Builder folderId(String folderId) { this.folderId = folderId; 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; } /** * parentId. */ public Builder parentId(String parentId) { this.parentId = parentId; return this; } /** * subFolder. */ public Builder subFolder(java.util.List<SubFolder> subFolder) { this.subFolder = subFolder; return this; } /** * workspace. */ public Builder workspace(String workspace) { this.workspace = workspace; return this; } public Folder build() { return new Folder(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/GenerateResourcePlanWithFlinkConfAsyncRequest.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 GenerateResourcePlanWithFlinkConfAsyncRequest} extends {@link RequestModel} * * <p>GenerateResourcePlanWithFlinkConfAsyncRequest</p> */ public class GenerateResourcePlanWithFlinkConfAsyncRequest 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") private java.util.Map<String, ?> body; @com.aliyun.core.annotation.Header @com.aliyun.core.annotation.NameInMap("workspace") @com.aliyun.core.annotation.Validation(required = true) private String workspace; private GenerateResourcePlanWithFlinkConfAsyncRequest(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 GenerateResourcePlanWithFlinkConfAsyncRequest 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 java.util.Map<String, ?> getBody() { return this.body; } /** * @return workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder extends Request.Builder<GenerateResourcePlanWithFlinkConfAsyncRequest, Builder> { private String namespace; private String deploymentId; private java.util.Map<String, ?> body; private String workspace; private Builder() { super(); } private Builder(GenerateResourcePlanWithFlinkConfAsyncRequest 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, which is the unique identifier of the deployment.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>737d0921-c5ac-47fc-9ba9-07a1e0b4****</p> */ public Builder deploymentId(String deploymentId) { this.putPathParameter("deploymentId", deploymentId); this.deploymentId = deploymentId; return this; } /** * <p>The Flink configuration that is used to generate a resource plan.</p> */ public Builder body(java.util.Map<String, ?> 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 GenerateResourcePlanWithFlinkConfAsyncRequest build() { return new GenerateResourcePlanWithFlinkConfAsyncRequest(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/GenerateResourcePlanWithFlinkConfAsyncResponse.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 GenerateResourcePlanWithFlinkConfAsyncResponse} extends {@link TeaModel} * * <p>GenerateResourcePlanWithFlinkConfAsyncResponse</p> */ public class GenerateResourcePlanWithFlinkConfAsyncResponse 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 GenerateResourcePlanWithFlinkConfAsyncResponseBody body; private GenerateResourcePlanWithFlinkConfAsyncResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static GenerateResourcePlanWithFlinkConfAsyncResponse 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 GenerateResourcePlanWithFlinkConfAsyncResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<GenerateResourcePlanWithFlinkConfAsyncResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(GenerateResourcePlanWithFlinkConfAsyncResponseBody body); @Override GenerateResourcePlanWithFlinkConfAsyncResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<GenerateResourcePlanWithFlinkConfAsyncResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private GenerateResourcePlanWithFlinkConfAsyncResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(GenerateResourcePlanWithFlinkConfAsyncResponse 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(GenerateResourcePlanWithFlinkConfAsyncResponseBody body) { this.body = body; return this; } @Override public GenerateResourcePlanWithFlinkConfAsyncResponse build() { return new GenerateResourcePlanWithFlinkConfAsyncResponse(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/GenerateResourcePlanWithFlinkConfAsyncResponseBody.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 GenerateResourcePlanWithFlinkConfAsyncResponseBody} extends {@link TeaModel} * * <p>GenerateResourcePlanWithFlinkConfAsyncResponseBody</p> */ public class GenerateResourcePlanWithFlinkConfAsyncResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private Data 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 GenerateResourcePlanWithFlinkConfAsyncResponseBody(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 GenerateResourcePlanWithFlinkConfAsyncResponseBody create() { return builder().build(); } /** * @return data */ public Data 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 Data 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 asynchronous generation result was returned.</li> * <li>If the value of success was false, a null value was returned.</li> * </ul> */ public Builder data(Data 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>&quot;&quot;</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>&quot;&quot;</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 GenerateResourcePlanWithFlinkConfAsyncResponseBody build() { return new GenerateResourcePlanWithFlinkConfAsyncResponseBody(this); } } /** * * {@link GenerateResourcePlanWithFlinkConfAsyncResponseBody} extends {@link TeaModel} * * <p>GenerateResourcePlanWithFlinkConfAsyncResponseBody</p> */ public static class Data extends TeaModel { @com.aliyun.core.annotation.NameInMap("ticketId") private String ticketId; private Data(Builder builder) { this.ticketId = builder.ticketId; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return ticketId */ public String getTicketId() { return this.ticketId; } public static final class Builder { private String ticketId; /** * <p>The ID of the ticket for you to query the asynchronous generation result.</p> * * <strong>example:</strong> * <p>b3dcdb25-bf36-457d-92ba-a36077e8****</p> */ public Builder ticketId(String ticketId) { this.ticketId = ticketId; return this; } public Data build() { return new Data(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/GetAppliedScheduledPlanRequest.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 GetAppliedScheduledPlanRequest} extends {@link RequestModel} * * <p>GetAppliedScheduledPlanRequest</p> */ public class GetAppliedScheduledPlanRequest 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.Query @com.aliyun.core.annotation.NameInMap("deploymentId") @com.aliyun.core.annotation.Validation(required = true) private String deploymentId; @com.aliyun.core.annotation.Header @com.aliyun.core.annotation.NameInMap("workspace") @com.aliyun.core.annotation.Validation(required = true) private String workspace; private GetAppliedScheduledPlanRequest(Builder builder) { super(builder); this.namespace = builder.namespace; this.deploymentId = builder.deploymentId; this.workspace = builder.workspace; } public static Builder builder() { return new Builder(); } public static GetAppliedScheduledPlanRequest 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 workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder extends Request.Builder<GetAppliedScheduledPlanRequest, Builder> { private String namespace; private String deploymentId; private String workspace; private Builder() { super(); } private Builder(GetAppliedScheduledPlanRequest request) { super(request); this.namespace = request.namespace; this.deploymentId = request.deploymentId; 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>5737ef81-d2f1-49cf-8752-30910809****</p> */ public Builder deploymentId(String deploymentId) { this.putQueryParameter("deploymentId", deploymentId); this.deploymentId = deploymentId; 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 GetAppliedScheduledPlanRequest build() { return new GetAppliedScheduledPlanRequest(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/GetAppliedScheduledPlanResponse.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 GetAppliedScheduledPlanResponse} extends {@link TeaModel} * * <p>GetAppliedScheduledPlanResponse</p> */ public class GetAppliedScheduledPlanResponse 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 GetAppliedScheduledPlanResponseBody body; private GetAppliedScheduledPlanResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static GetAppliedScheduledPlanResponse 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 GetAppliedScheduledPlanResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<GetAppliedScheduledPlanResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(GetAppliedScheduledPlanResponseBody body); @Override GetAppliedScheduledPlanResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<GetAppliedScheduledPlanResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private GetAppliedScheduledPlanResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(GetAppliedScheduledPlanResponse 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(GetAppliedScheduledPlanResponseBody body) { this.body = body; return this; } @Override public GetAppliedScheduledPlanResponse build() { return new GetAppliedScheduledPlanResponse(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/GetAppliedScheduledPlanResponseBody.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 GetAppliedScheduledPlanResponseBody} extends {@link TeaModel} * * <p>GetAppliedScheduledPlanResponseBody</p> */ public class GetAppliedScheduledPlanResponseBody 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 GetAppliedScheduledPlanResponseBody(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 GetAppliedScheduledPlanResponseBody 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 GetAppliedScheduledPlanResponseBody build() { return new GetAppliedScheduledPlanResponseBody(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/GetCatalogsRequest.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 GetCatalogsRequest} extends {@link RequestModel} * * <p>GetCatalogsRequest</p> */ public class GetCatalogsRequest 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.Query @com.aliyun.core.annotation.NameInMap("catalogName") private String catalogName; @com.aliyun.core.annotation.Header @com.aliyun.core.annotation.NameInMap("workspace") @com.aliyun.core.annotation.Validation(required = true) private String workspace; private GetCatalogsRequest(Builder builder) { super(builder); this.namespace = builder.namespace; this.catalogName = builder.catalogName; this.workspace = builder.workspace; } public static Builder builder() { return new Builder(); } public static GetCatalogsRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return namespace */ public String getNamespace() { return this.namespace; } /** * @return catalogName */ public String getCatalogName() { return this.catalogName; } /** * @return workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder extends Request.Builder<GetCatalogsRequest, Builder> { private String namespace; private String catalogName; private String workspace; private Builder() { super(); } private Builder(GetCatalogsRequest request) { super(request); this.namespace = request.namespace; this.catalogName = request.catalogName; 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; } /** * catalogName. */ public Builder catalogName(String catalogName) { this.putQueryParameter("catalogName", catalogName); this.catalogName = catalogName; 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 GetCatalogsRequest build() { return new GetCatalogsRequest(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/GetCatalogsResponse.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 GetCatalogsResponse} extends {@link TeaModel} * * <p>GetCatalogsResponse</p> */ public class GetCatalogsResponse 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 GetCatalogsResponseBody body; private GetCatalogsResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static GetCatalogsResponse 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 GetCatalogsResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<GetCatalogsResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(GetCatalogsResponseBody body); @Override GetCatalogsResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<GetCatalogsResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private GetCatalogsResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(GetCatalogsResponse 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(GetCatalogsResponseBody body) { this.body = body; return this; } @Override public GetCatalogsResponse build() { return new GetCatalogsResponse(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/GetCatalogsResponseBody.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 GetCatalogsResponseBody} extends {@link TeaModel} * * <p>GetCatalogsResponseBody</p> */ public class GetCatalogsResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private java.util.List<Catalog> 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 GetCatalogsResponseBody(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 GetCatalogsResponseBody create() { return builder().build(); } /** * @return data */ public java.util.List<Catalog> 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 java.util.List<Catalog> data; private String errorCode; private String errorMessage; private Integer httpCode; private String requestId; private Boolean success; /** * data. */ public Builder data(java.util.List<Catalog> 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 GetCatalogsResponseBody build() { return new GetCatalogsResponseBody(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/GetDatabasesRequest.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 GetDatabasesRequest} extends {@link RequestModel} * * <p>GetDatabasesRequest</p> */ public class GetDatabasesRequest 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("catalogName") @com.aliyun.core.annotation.Validation(required = true) private String catalogName; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("databaseName") private String databaseName; @com.aliyun.core.annotation.Header @com.aliyun.core.annotation.NameInMap("workspace") @com.aliyun.core.annotation.Validation(required = true) private String workspace; private GetDatabasesRequest(Builder builder) { super(builder); this.namespace = builder.namespace; this.catalogName = builder.catalogName; this.databaseName = builder.databaseName; this.workspace = builder.workspace; } public static Builder builder() { return new Builder(); } public static GetDatabasesRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return namespace */ public String getNamespace() { return this.namespace; } /** * @return catalogName */ public String getCatalogName() { return this.catalogName; } /** * @return databaseName */ public String getDatabaseName() { return this.databaseName; } /** * @return workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder extends Request.Builder<GetDatabasesRequest, Builder> { private String namespace; private String catalogName; private String databaseName; private String workspace; private Builder() { super(); } private Builder(GetDatabasesRequest request) { super(request); this.namespace = request.namespace; this.catalogName = request.catalogName; this.databaseName = request.databaseName; 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>paimon</p> */ public Builder catalogName(String catalogName) { this.putPathParameter("catalogName", catalogName); this.catalogName = catalogName; return this; } /** * databaseName. */ public Builder databaseName(String databaseName) { this.putQueryParameter("databaseName", databaseName); this.databaseName = databaseName; 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 GetDatabasesRequest build() { return new GetDatabasesRequest(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/GetDatabasesResponse.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 GetDatabasesResponse} extends {@link TeaModel} * * <p>GetDatabasesResponse</p> */ public class GetDatabasesResponse 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 GetDatabasesResponseBody body; private GetDatabasesResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static GetDatabasesResponse 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 GetDatabasesResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<GetDatabasesResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(GetDatabasesResponseBody body); @Override GetDatabasesResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<GetDatabasesResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private GetDatabasesResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(GetDatabasesResponse 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(GetDatabasesResponseBody body) { this.body = body; return this; } @Override public GetDatabasesResponse build() { return new GetDatabasesResponse(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/GetDatabasesResponseBody.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 GetDatabasesResponseBody} extends {@link TeaModel} * * <p>GetDatabasesResponseBody</p> */ public class GetDatabasesResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private java.util.List<Database> 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 GetDatabasesResponseBody(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 GetDatabasesResponseBody create() { return builder().build(); } /** * @return data */ public java.util.List<Database> 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 java.util.List<Database> data; private String errorCode; private String errorMessage; private Integer httpCode; private String requestId; private Boolean success; /** * data. */ public Builder data(java.util.List<Database> 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 GetDatabasesResponseBody build() { return new GetDatabasesResponseBody(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/GetDeployDeploymentDraftResultRequest.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 GetDeployDeploymentDraftResultRequest} extends {@link RequestModel} * * <p>GetDeployDeploymentDraftResultRequest</p> */ public class GetDeployDeploymentDraftResultRequest 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("ticketId") @com.aliyun.core.annotation.Validation(required = true) private String ticketId; @com.aliyun.core.annotation.Header @com.aliyun.core.annotation.NameInMap("workspace") @com.aliyun.core.annotation.Validation(required = true) private String workspace; private GetDeployDeploymentDraftResultRequest(Builder builder) { super(builder); this.namespace = builder.namespace; this.ticketId = builder.ticketId; this.workspace = builder.workspace; } public static Builder builder() { return new Builder(); } public static GetDeployDeploymentDraftResultRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return namespace */ public String getNamespace() { return this.namespace; } /** * @return ticketId */ public String getTicketId() { return this.ticketId; } /** * @return workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder extends Request.Builder<GetDeployDeploymentDraftResultRequest, Builder> { private String namespace; private String ticketId; private String workspace; private Builder() { super(); } private Builder(GetDeployDeploymentDraftResultRequest request) { super(request); this.namespace = request.namespace; this.ticketId = request.ticketId; 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>88a8fc49-e090-430a-85d8-3ee8c79c****</p> */ public Builder ticketId(String ticketId) { this.putPathParameter("ticketId", ticketId); this.ticketId = ticketId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>710d6a64d8****</p> */ public Builder workspace(String workspace) { this.putHeaderParameter("workspace", workspace); this.workspace = workspace; return this; } @Override public GetDeployDeploymentDraftResultRequest build() { return new GetDeployDeploymentDraftResultRequest(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/GetDeployDeploymentDraftResultResponse.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 GetDeployDeploymentDraftResultResponse} extends {@link TeaModel} * * <p>GetDeployDeploymentDraftResultResponse</p> */ public class GetDeployDeploymentDraftResultResponse 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 GetDeployDeploymentDraftResultResponseBody body; private GetDeployDeploymentDraftResultResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static GetDeployDeploymentDraftResultResponse 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 GetDeployDeploymentDraftResultResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<GetDeployDeploymentDraftResultResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(GetDeployDeploymentDraftResultResponseBody body); @Override GetDeployDeploymentDraftResultResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<GetDeployDeploymentDraftResultResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private GetDeployDeploymentDraftResultResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(GetDeployDeploymentDraftResultResponse 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(GetDeployDeploymentDraftResultResponseBody body) { this.body = body; return this; } @Override public GetDeployDeploymentDraftResultResponse build() { return new GetDeployDeploymentDraftResultResponse(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/GetDeployDeploymentDraftResultResponseBody.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 GetDeployDeploymentDraftResultResponseBody} extends {@link TeaModel} * * <p>GetDeployDeploymentDraftResultResponseBody</p> */ public class GetDeployDeploymentDraftResultResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private AsyncDraftDeployResult 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 GetDeployDeploymentDraftResultResponseBody(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 GetDeployDeploymentDraftResultResponseBody create() { return builder().build(); } /** * @return data */ public AsyncDraftDeployResult 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 AsyncDraftDeployResult data; private String errorCode; private String errorMessage; private Integer httpCode; private String requestId; private Boolean success; /** * data. */ public Builder data(AsyncDraftDeployResult 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 GetDeployDeploymentDraftResultResponseBody build() { return new GetDeployDeploymentDraftResultResponseBody(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/GetDeploymentDraftLockRequest.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 GetDeploymentDraftLockRequest} extends {@link RequestModel} * * <p>GetDeploymentDraftLockRequest</p> */ public class GetDeploymentDraftLockRequest 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.Query @com.aliyun.core.annotation.NameInMap("deploymentDraftId") @com.aliyun.core.annotation.Validation(required = true) private String deploymentDraftId; @com.aliyun.core.annotation.Header @com.aliyun.core.annotation.NameInMap("workspace") @com.aliyun.core.annotation.Validation(required = true) private String workspace; private GetDeploymentDraftLockRequest(Builder builder) { super(builder); this.namespace = builder.namespace; this.deploymentDraftId = builder.deploymentDraftId; this.workspace = builder.workspace; } public static Builder builder() { return new Builder(); } public static GetDeploymentDraftLockRequest 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 workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder extends Request.Builder<GetDeploymentDraftLockRequest, Builder> { private String namespace; private String deploymentDraftId; private String workspace; private Builder() { super(); } private Builder(GetDeploymentDraftLockRequest request) { super(request); this.namespace = request.namespace; this.deploymentDraftId = request.deploymentDraftId; 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.putQueryParameter("deploymentDraftId", deploymentDraftId); this.deploymentDraftId = deploymentDraftId; 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 GetDeploymentDraftLockRequest build() { return new GetDeploymentDraftLockRequest(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/GetDeploymentDraftLockResponse.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 GetDeploymentDraftLockResponse} extends {@link TeaModel} * * <p>GetDeploymentDraftLockResponse</p> */ public class GetDeploymentDraftLockResponse 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 GetDeploymentDraftLockResponseBody body; private GetDeploymentDraftLockResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static GetDeploymentDraftLockResponse 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 GetDeploymentDraftLockResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<GetDeploymentDraftLockResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(GetDeploymentDraftLockResponseBody body); @Override GetDeploymentDraftLockResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<GetDeploymentDraftLockResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private GetDeploymentDraftLockResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(GetDeploymentDraftLockResponse 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(GetDeploymentDraftLockResponseBody body) { this.body = body; return this; } @Override public GetDeploymentDraftLockResponse build() { return new GetDeploymentDraftLockResponse(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/GetDeploymentDraftLockResponseBody.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 GetDeploymentDraftLockResponseBody} extends {@link TeaModel} * * <p>GetDeploymentDraftLockResponseBody</p> */ public class GetDeploymentDraftLockResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private Lock 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 GetDeploymentDraftLockResponseBody(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 GetDeploymentDraftLockResponseBody create() { return builder().build(); } /** * @return data */ public Lock 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 Lock data; private String errorCode; private String errorMessage; private Integer httpCode; private String requestId; private Boolean success; /** * data. */ public Builder data(Lock 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 GetDeploymentDraftLockResponseBody build() { return new GetDeploymentDraftLockResponseBody(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/GetDeploymentDraftRequest.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 GetDeploymentDraftRequest} extends {@link RequestModel} * * <p>GetDeploymentDraftRequest</p> */ public class GetDeploymentDraftRequest 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.Header @com.aliyun.core.annotation.NameInMap("workspace") @com.aliyun.core.annotation.Validation(required = true) private String workspace; private GetDeploymentDraftRequest(Builder builder) { super(builder); this.namespace = builder.namespace; this.deploymentDraftId = builder.deploymentDraftId; this.workspace = builder.workspace; } public static Builder builder() { return new Builder(); } public static GetDeploymentDraftRequest 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 workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder extends Request.Builder<GetDeploymentDraftRequest, Builder> { private String namespace; private String deploymentDraftId; private String workspace; private Builder() { super(); } private Builder(GetDeploymentDraftRequest request) { super(request); this.namespace = request.namespace; this.deploymentDraftId = request.deploymentDraftId; 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> * * <strong>example:</strong> * <p>a14bd5d90a****</p> */ public Builder workspace(String workspace) { this.putHeaderParameter("workspace", workspace); this.workspace = workspace; return this; } @Override public GetDeploymentDraftRequest build() { return new GetDeploymentDraftRequest(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/GetDeploymentDraftResponse.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 GetDeploymentDraftResponse} extends {@link TeaModel} * * <p>GetDeploymentDraftResponse</p> */ public class GetDeploymentDraftResponse 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 GetDeploymentDraftResponseBody body; private GetDeploymentDraftResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static GetDeploymentDraftResponse 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 GetDeploymentDraftResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<GetDeploymentDraftResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(GetDeploymentDraftResponseBody body); @Override GetDeploymentDraftResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<GetDeploymentDraftResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private GetDeploymentDraftResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(GetDeploymentDraftResponse 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(GetDeploymentDraftResponseBody body) { this.body = body; return this; } @Override public GetDeploymentDraftResponse build() { return new GetDeploymentDraftResponse(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/GetDeploymentDraftResponseBody.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 GetDeploymentDraftResponseBody} extends {@link TeaModel} * * <p>GetDeploymentDraftResponseBody</p> */ public class GetDeploymentDraftResponseBody 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 GetDeploymentDraftResponseBody(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 GetDeploymentDraftResponseBody 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 GetDeploymentDraftResponseBody build() { return new GetDeploymentDraftResponseBody(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/GetDeploymentRequest.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 GetDeploymentRequest} extends {@link RequestModel} * * <p>GetDeploymentRequest</p> */ public class GetDeploymentRequest 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.Header @com.aliyun.core.annotation.NameInMap("workspace") @com.aliyun.core.annotation.Validation(required = true) private String workspace; private GetDeploymentRequest(Builder builder) { super(builder); this.namespace = builder.namespace; this.deploymentId = builder.deploymentId; this.workspace = builder.workspace; } public static Builder builder() { return new Builder(); } public static GetDeploymentRequest 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 workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder extends Request.Builder<GetDeploymentRequest, Builder> { private String namespace; private String deploymentId; private String workspace; private Builder() { super(); } private Builder(GetDeploymentRequest request) { super(request); this.namespace = request.namespace; this.deploymentId = request.deploymentId; 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 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 GetDeploymentRequest build() { return new GetDeploymentRequest(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/GetDeploymentResponse.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 GetDeploymentResponse} extends {@link TeaModel} * * <p>GetDeploymentResponse</p> */ public class GetDeploymentResponse 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 GetDeploymentResponseBody body; private GetDeploymentResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static GetDeploymentResponse 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 GetDeploymentResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<GetDeploymentResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(GetDeploymentResponseBody body); @Override GetDeploymentResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<GetDeploymentResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private GetDeploymentResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(GetDeploymentResponse 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(GetDeploymentResponseBody body) { this.body = body; return this; } @Override public GetDeploymentResponse build() { return new GetDeploymentResponse(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/GetDeploymentResponseBody.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 GetDeploymentResponseBody} extends {@link TeaModel} * * <p>GetDeploymentResponseBody</p> */ public class GetDeploymentResponseBody 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 GetDeploymentResponseBody(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 GetDeploymentResponseBody 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 details of the deployment were 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>&quot;&quot;</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>&quot;&quot;</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 GetDeploymentResponseBody build() { return new GetDeploymentResponseBody(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/GetEventsRequest.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 GetEventsRequest} extends {@link RequestModel} * * <p>GetEventsRequest</p> */ public class GetEventsRequest 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.Query @com.aliyun.core.annotation.NameInMap("deploymentId") private String deploymentId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("pageIndex") private Integer pageIndex; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("pageSize") @com.aliyun.core.annotation.Validation(maximum = 100, minimum = 1) private Integer pageSize; @com.aliyun.core.annotation.Header @com.aliyun.core.annotation.NameInMap("workspace") @com.aliyun.core.annotation.Validation(required = true) private String workspace; private GetEventsRequest(Builder builder) { super(builder); this.namespace = builder.namespace; this.deploymentId = builder.deploymentId; this.pageIndex = builder.pageIndex; this.pageSize = builder.pageSize; this.workspace = builder.workspace; } public static Builder builder() { return new Builder(); } public static GetEventsRequest 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 pageIndex */ public Integer getPageIndex() { return this.pageIndex; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder extends Request.Builder<GetEventsRequest, Builder> { private String namespace; private String deploymentId; private Integer pageIndex; private Integer pageSize; private String workspace; private Builder() { super(); } private Builder(GetEventsRequest request) { super(request); this.namespace = request.namespace; this.deploymentId = request.deploymentId; this.pageIndex = request.pageIndex; this.pageSize = request.pageSize; 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; } /** * deploymentId. */ public Builder deploymentId(String deploymentId) { this.putQueryParameter("deploymentId", deploymentId); this.deploymentId = deploymentId; return this; } /** * pageIndex. */ public Builder pageIndex(Integer pageIndex) { this.putQueryParameter("pageIndex", pageIndex); this.pageIndex = pageIndex; return this; } /** * pageSize. */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("pageSize", pageSize); this.pageSize = pageSize; 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 GetEventsRequest build() { return new GetEventsRequest(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/GetEventsResponse.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 GetEventsResponse} extends {@link TeaModel} * * <p>GetEventsResponse</p> */ public class GetEventsResponse 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 GetEventsResponseBody body; private GetEventsResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static GetEventsResponse 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 GetEventsResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<GetEventsResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(GetEventsResponseBody body); @Override GetEventsResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<GetEventsResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private GetEventsResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(GetEventsResponse 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(GetEventsResponseBody body) { this.body = body; return this; } @Override public GetEventsResponse build() { return new GetEventsResponse(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/GetEventsResponseBody.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 GetEventsResponseBody} extends {@link TeaModel} * * <p>GetEventsResponseBody</p> */ public class GetEventsResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private java.util.List<Event> 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("pageIndex") private Integer pageIndex; @com.aliyun.core.annotation.NameInMap("pageSize") private Integer pageSize; @com.aliyun.core.annotation.NameInMap("requestId") private String requestId; @com.aliyun.core.annotation.NameInMap("success") private Boolean success; @com.aliyun.core.annotation.NameInMap("totalSize") private Integer totalSize; private GetEventsResponseBody(Builder builder) { this.data = builder.data; this.errorCode = builder.errorCode; this.errorMessage = builder.errorMessage; this.httpCode = builder.httpCode; this.pageIndex = builder.pageIndex; this.pageSize = builder.pageSize; this.requestId = builder.requestId; this.success = builder.success; this.totalSize = builder.totalSize; } public static Builder builder() { return new Builder(); } public static GetEventsResponseBody create() { return builder().build(); } /** * @return data */ public java.util.List<Event> 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 pageIndex */ public Integer getPageIndex() { return this.pageIndex; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } /** * @return totalSize */ public Integer getTotalSize() { return this.totalSize; } public static final class Builder { private java.util.List<Event> data; private String errorCode; private String errorMessage; private Integer httpCode; private Integer pageIndex; private Integer pageSize; private String requestId; private Boolean success; private Integer totalSize; /** * data. */ public Builder data(java.util.List<Event> 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; } /** * pageIndex. */ public Builder pageIndex(Integer pageIndex) { this.pageIndex = pageIndex; return this; } /** * pageSize. */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * requestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * success. */ public Builder success(Boolean success) { this.success = success; return this; } /** * totalSize. */ public Builder totalSize(Integer totalSize) { this.totalSize = totalSize; return this; } public GetEventsResponseBody build() { return new GetEventsResponseBody(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/GetFolderRequest.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 GetFolderRequest} extends {@link RequestModel} * * <p>GetFolderRequest</p> */ public class GetFolderRequest 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.Query @com.aliyun.core.annotation.NameInMap("folderId") private String folderId; @com.aliyun.core.annotation.Header @com.aliyun.core.annotation.NameInMap("workspace") @com.aliyun.core.annotation.Validation(required = true) private String workspace; private GetFolderRequest(Builder builder) { super(builder); this.namespace = builder.namespace; this.folderId = builder.folderId; this.workspace = builder.workspace; } public static Builder builder() { return new Builder(); } public static GetFolderRequest 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 workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder extends Request.Builder<GetFolderRequest, Builder> { private String namespace; private String folderId; private String workspace; private Builder() { super(); } private Builder(GetFolderRequest request) { super(request); this.namespace = request.namespace; this.folderId = request.folderId; 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; } /** * folderId. */ public Builder folderId(String folderId) { this.putQueryParameter("folderId", folderId); this.folderId = folderId; 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 GetFolderRequest build() { return new GetFolderRequest(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/GetFolderResponse.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 GetFolderResponse} extends {@link TeaModel} * * <p>GetFolderResponse</p> */ public class GetFolderResponse 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 GetFolderResponseBody body; private GetFolderResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static GetFolderResponse 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 GetFolderResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<GetFolderResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(GetFolderResponseBody body); @Override GetFolderResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<GetFolderResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private GetFolderResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(GetFolderResponse 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(GetFolderResponseBody body) { this.body = body; return this; } @Override public GetFolderResponse build() { return new GetFolderResponse(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/GetFolderResponseBody.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 GetFolderResponseBody} extends {@link TeaModel} * * <p>GetFolderResponseBody</p> */ public class GetFolderResponseBody 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 GetFolderResponseBody(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 GetFolderResponseBody 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; /** * <p>The data structure of the folder.</p> */ 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 GetFolderResponseBody build() { return new GetFolderResponseBody(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/GetGenerateResourcePlanResultRequest.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 GetGenerateResourcePlanResultRequest} extends {@link RequestModel} * * <p>GetGenerateResourcePlanResultRequest</p> */ public class GetGenerateResourcePlanResultRequest 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("ticketId") @com.aliyun.core.annotation.Validation(required = true) private String ticketId; @com.aliyun.core.annotation.Header @com.aliyun.core.annotation.NameInMap("workspace") @com.aliyun.core.annotation.Validation(required = true) private String workspace; private GetGenerateResourcePlanResultRequest(Builder builder) { super(builder); this.namespace = builder.namespace; this.ticketId = builder.ticketId; this.workspace = builder.workspace; } public static Builder builder() { return new Builder(); } public static GetGenerateResourcePlanResultRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return namespace */ public String getNamespace() { return this.namespace; } /** * @return ticketId */ public String getTicketId() { return this.ticketId; } /** * @return workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder extends Request.Builder<GetGenerateResourcePlanResultRequest, Builder> { private String namespace; private String ticketId; private String workspace; private Builder() { super(); } private Builder(GetGenerateResourcePlanResultRequest request) { super(request); this.namespace = request.namespace; this.ticketId = request.ticketId; 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 ID of the asynchronous ticket. You can submit an application for an asynchronous operation to obtain this ticket ID.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>88a8fc49-e090-430a-85d8-3ee8c79c****</p> */ public Builder ticketId(String ticketId) { this.putPathParameter("ticketId", ticketId); this.ticketId = ticketId; 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 GetGenerateResourcePlanResultRequest build() { return new GetGenerateResourcePlanResultRequest(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/GetGenerateResourcePlanResultResponse.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 GetGenerateResourcePlanResultResponse} extends {@link TeaModel} * * <p>GetGenerateResourcePlanResultResponse</p> */ public class GetGenerateResourcePlanResultResponse 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 GetGenerateResourcePlanResultResponseBody body; private GetGenerateResourcePlanResultResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static GetGenerateResourcePlanResultResponse 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 GetGenerateResourcePlanResultResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<GetGenerateResourcePlanResultResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(GetGenerateResourcePlanResultResponseBody body); @Override GetGenerateResourcePlanResultResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<GetGenerateResourcePlanResultResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private GetGenerateResourcePlanResultResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(GetGenerateResourcePlanResultResponse 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(GetGenerateResourcePlanResultResponseBody body) { this.body = body; return this; } @Override public GetGenerateResourcePlanResultResponse build() { return new GetGenerateResourcePlanResultResponse(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/GetGenerateResourcePlanResultResponseBody.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 GetGenerateResourcePlanResultResponseBody} extends {@link TeaModel} * * <p>GetGenerateResourcePlanResultResponseBody</p> */ public class GetGenerateResourcePlanResultResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private AsyncResourcePlanOperationResult 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 GetGenerateResourcePlanResultResponseBody(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 GetGenerateResourcePlanResultResponseBody create() { return builder().build(); } /** * @return data */ public AsyncResourcePlanOperationResult 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 AsyncResourcePlanOperationResult 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 asynchronous generation result was returned.</li> * <li>If the value of success was false, a null value was returned.</li> * </ul> */ public Builder data(AsyncResourcePlanOperationResult 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>&quot;&quot;</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>&quot;&quot;</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 GetGenerateResourcePlanResultResponseBody build() { return new GetGenerateResourcePlanResultResponseBody(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/GetHotUpdateJobResultRequest.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 GetHotUpdateJobResultRequest} extends {@link RequestModel} * * <p>GetHotUpdateJobResultRequest</p> */ public class GetHotUpdateJobResultRequest 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("jobHotUpdateId") @com.aliyun.core.annotation.Validation(required = true) private String jobHotUpdateId; @com.aliyun.core.annotation.Header @com.aliyun.core.annotation.NameInMap("workspace") @com.aliyun.core.annotation.Validation(required = true) private String workspace; private GetHotUpdateJobResultRequest(Builder builder) { super(builder); this.namespace = builder.namespace; this.jobHotUpdateId = builder.jobHotUpdateId; this.workspace = builder.workspace; } public static Builder builder() { return new Builder(); } public static GetHotUpdateJobResultRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return namespace */ public String getNamespace() { return this.namespace; } /** * @return jobHotUpdateId */ public String getJobHotUpdateId() { return this.jobHotUpdateId; } /** * @return workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder extends Request.Builder<GetHotUpdateJobResultRequest, Builder> { private String namespace; private String jobHotUpdateId; private String workspace; private Builder() { super(); } private Builder(GetHotUpdateJobResultRequest request) { super(request); this.namespace = request.namespace; this.jobHotUpdateId = request.jobHotUpdateId; 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>123hashd****</p> */ public Builder jobHotUpdateId(String jobHotUpdateId) { this.putPathParameter("jobHotUpdateId", jobHotUpdateId); this.jobHotUpdateId = jobHotUpdateId; 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 GetHotUpdateJobResultRequest build() { return new GetHotUpdateJobResultRequest(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/GetHotUpdateJobResultResponse.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 GetHotUpdateJobResultResponse} extends {@link TeaModel} * * <p>GetHotUpdateJobResultResponse</p> */ public class GetHotUpdateJobResultResponse 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 GetHotUpdateJobResultResponseBody body; private GetHotUpdateJobResultResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static GetHotUpdateJobResultResponse 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 GetHotUpdateJobResultResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<GetHotUpdateJobResultResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(GetHotUpdateJobResultResponseBody body); @Override GetHotUpdateJobResultResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<GetHotUpdateJobResultResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private GetHotUpdateJobResultResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(GetHotUpdateJobResultResponse 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(GetHotUpdateJobResultResponseBody body) { this.body = body; return this; } @Override public GetHotUpdateJobResultResponse build() { return new GetHotUpdateJobResultResponse(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/GetHotUpdateJobResultResponseBody.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 GetHotUpdateJobResultResponseBody} extends {@link TeaModel} * * <p>GetHotUpdateJobResultResponseBody</p> */ public class GetHotUpdateJobResultResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private HotUpdateJobResult 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 GetHotUpdateJobResultResponseBody(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 GetHotUpdateJobResultResponseBody create() { return builder().build(); } /** * @return data */ public HotUpdateJobResult 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 HotUpdateJobResult data; private String errorCode; private String errorMessage; private Integer httpCode; private String requestId; private Boolean success; /** * data. */ public Builder data(HotUpdateJobResult 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 GetHotUpdateJobResultResponseBody build() { return new GetHotUpdateJobResultResponseBody(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/GetJobDiagnosisRequest.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 GetJobDiagnosisRequest} extends {@link RequestModel} * * <p>GetJobDiagnosisRequest</p> */ public class GetJobDiagnosisRequest 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.Path @com.aliyun.core.annotation.NameInMap("jobId") @com.aliyun.core.annotation.Validation(required = true) private String jobId; @com.aliyun.core.annotation.Header @com.aliyun.core.annotation.NameInMap("workspace") @com.aliyun.core.annotation.Validation(required = true) private String workspace; private GetJobDiagnosisRequest(Builder builder) { super(builder); this.namespace = builder.namespace; this.deploymentId = builder.deploymentId; this.jobId = builder.jobId; this.workspace = builder.workspace; } public static Builder builder() { return new Builder(); } public static GetJobDiagnosisRequest 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 jobId */ public String getJobId() { return this.jobId; } /** * @return workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder extends Request.Builder<GetJobDiagnosisRequest, Builder> { private String namespace; private String deploymentId; private String jobId; private String workspace; private Builder() { super(); } private Builder(GetJobDiagnosisRequest request) { super(request); this.namespace = request.namespace; this.deploymentId = request.deploymentId; this.jobId = request.jobId; 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>737d0921-c5ac-47fc-9ba9-07a1e0b4****</p> */ public Builder deploymentId(String deploymentId) { this.putPathParameter("deploymentId", deploymentId); this.deploymentId = deploymentId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>5af678c0-7db0-4650-94c2-d2604f0a****</p> */ public Builder jobId(String jobId) { this.putPathParameter("jobId", jobId); this.jobId = jobId; 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 GetJobDiagnosisRequest build() { return new GetJobDiagnosisRequest(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/GetJobDiagnosisResponse.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 GetJobDiagnosisResponse} extends {@link TeaModel} * * <p>GetJobDiagnosisResponse</p> */ public class GetJobDiagnosisResponse 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 GetJobDiagnosisResponseBody body; private GetJobDiagnosisResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static GetJobDiagnosisResponse 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 GetJobDiagnosisResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<GetJobDiagnosisResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(GetJobDiagnosisResponseBody body); @Override GetJobDiagnosisResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<GetJobDiagnosisResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private GetJobDiagnosisResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(GetJobDiagnosisResponse 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(GetJobDiagnosisResponseBody body) { this.body = body; return this; } @Override public GetJobDiagnosisResponse build() { return new GetJobDiagnosisResponse(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/GetJobDiagnosisResponseBody.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 GetJobDiagnosisResponseBody} extends {@link TeaModel} * * <p>GetJobDiagnosisResponseBody</p> */ public class GetJobDiagnosisResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("accessDeniedDetail") private String accessDeniedDetail; @com.aliyun.core.annotation.NameInMap("data") private JobDiagnosis 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 GetJobDiagnosisResponseBody(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 GetJobDiagnosisResponseBody create() { return builder().build(); } /** * @return accessDeniedDetail */ public String getAccessDeniedDetail() { return this.accessDeniedDetail; } /** * @return data */ public JobDiagnosis 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 JobDiagnosis 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(JobDiagnosis 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 GetJobDiagnosisResponseBody build() { return new GetJobDiagnosisResponseBody(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/GetJobRequest.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 GetJobRequest} extends {@link RequestModel} * * <p>GetJobRequest</p> */ public class GetJobRequest 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.Header @com.aliyun.core.annotation.NameInMap("workspace") @com.aliyun.core.annotation.Validation(required = true) private String workspace; private GetJobRequest(Builder builder) { super(builder); this.namespace = builder.namespace; this.jobId = builder.jobId; this.workspace = builder.workspace; } public static Builder builder() { return new Builder(); } public static GetJobRequest 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 workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder extends Request.Builder<GetJobRequest, Builder> { private String namespace; private String jobId; private String workspace; private Builder() { super(); } private Builder(GetJobRequest request) { super(request); this.namespace = request.namespace; this.jobId = request.jobId; 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>5af678c0-7db0-4650-94c2-d2604f0a****</p> */ public Builder jobId(String jobId) { this.putPathParameter("jobId", jobId); this.jobId = jobId; 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 GetJobRequest build() { return new GetJobRequest(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/GetJobResponse.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 GetJobResponse} extends {@link TeaModel} * * <p>GetJobResponse</p> */ public class GetJobResponse 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 GetJobResponseBody body; private GetJobResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static GetJobResponse 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 GetJobResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<GetJobResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(GetJobResponseBody body); @Override GetJobResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<GetJobResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private GetJobResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(GetJobResponse 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(GetJobResponseBody body) { this.body = body; return this; } @Override public GetJobResponse build() { return new GetJobResponse(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/GetJobResponseBody.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 GetJobResponseBody} extends {@link TeaModel} * * <p>GetJobResponseBody</p> */ public class GetJobResponseBody 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 GetJobResponseBody(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 GetJobResponseBody 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 details of the job 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>&quot;&quot;</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>&quot;&quot;</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 GetJobResponseBody build() { return new GetJobResponseBody(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/GetLatestJobStartLogRequest.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 GetLatestJobStartLogRequest} extends {@link RequestModel} * * <p>GetLatestJobStartLogRequest</p> */ public class GetLatestJobStartLogRequest 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.Header @com.aliyun.core.annotation.NameInMap("workspace") @com.aliyun.core.annotation.Validation(required = true) private String workspace; private GetLatestJobStartLogRequest(Builder builder) { super(builder); this.namespace = builder.namespace; this.deploymentId = builder.deploymentId; this.workspace = builder.workspace; } public static Builder builder() { return new Builder(); } public static GetLatestJobStartLogRequest 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 workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder extends Request.Builder<GetLatestJobStartLogRequest, Builder> { private String namespace; private String deploymentId; private String workspace; private Builder() { super(); } private Builder(GetLatestJobStartLogRequest request) { super(request); this.namespace = request.namespace; this.deploymentId = request.deploymentId; 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 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 GetLatestJobStartLogRequest build() { return new GetLatestJobStartLogRequest(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/GetLatestJobStartLogResponse.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 GetLatestJobStartLogResponse} extends {@link TeaModel} * * <p>GetLatestJobStartLogResponse</p> */ public class GetLatestJobStartLogResponse 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 GetLatestJobStartLogResponseBody body; private GetLatestJobStartLogResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static GetLatestJobStartLogResponse 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 GetLatestJobStartLogResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<GetLatestJobStartLogResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(GetLatestJobStartLogResponseBody body); @Override GetLatestJobStartLogResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<GetLatestJobStartLogResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private GetLatestJobStartLogResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(GetLatestJobStartLogResponse 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(GetLatestJobStartLogResponseBody body) { this.body = body; return this; } @Override public GetLatestJobStartLogResponse build() { return new GetLatestJobStartLogResponse(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/GetLatestJobStartLogResponseBody.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 GetLatestJobStartLogResponseBody} extends {@link TeaModel} * * <p>GetLatestJobStartLogResponseBody</p> */ public class GetLatestJobStartLogResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private String 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 GetLatestJobStartLogResponseBody(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 GetLatestJobStartLogResponseBody create() { return builder().build(); } /** * @return data */ public String 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 data; private String errorCode; private String errorMessage; private Integer httpCode; private String requestId; private Boolean success; /** * <p>If the value of success was false, the latest logs of the deployment were returned. If the value of success was true, a null value was returned.</p> * * <strong>example:</strong> * <p>&quot;[main] INFO org.apache.flink.runtime.entrypoint.ClusterEntrypoint [] - --------------------------------------------------------------------------------\n2024-05-22 11:46:39,871 [main] INFO org.apache.flink.runtime.entrypoint.ClusterEntrypoint&quot;</p> */ public Builder data(String 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>&quot;&quot;</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>&quot;&quot;</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-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 GetLatestJobStartLogResponseBody build() { return new GetLatestJobStartLogResponseBody(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/GetLineageInfoParams.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 GetLineageInfoParams} extends {@link TeaModel} * * <p>GetLineageInfoParams</p> */ public class GetLineageInfoParams extends TeaModel { @com.aliyun.core.annotation.NameInMap("depth") private Long depth; @com.aliyun.core.annotation.NameInMap("direction") private String direction; @com.aliyun.core.annotation.NameInMap("id") private String id; @com.aliyun.core.annotation.NameInMap("idType") private String idType; @com.aliyun.core.annotation.NameInMap("isColumnLevel") private Boolean isColumnLevel; @com.aliyun.core.annotation.NameInMap("isTemporary") private Boolean isTemporary; @com.aliyun.core.annotation.NameInMap("namespace") private String namespace; @com.aliyun.core.annotation.NameInMap("workspace") private String workspace; private GetLineageInfoParams(Builder builder) { this.depth = builder.depth; this.direction = builder.direction; this.id = builder.id; this.idType = builder.idType; this.isColumnLevel = builder.isColumnLevel; this.isTemporary = builder.isTemporary; this.namespace = builder.namespace; this.workspace = builder.workspace; } public static Builder builder() { return new Builder(); } public static GetLineageInfoParams create() { return builder().build(); } /** * @return depth */ public Long getDepth() { return this.depth; } /** * @return direction */ public String getDirection() { return this.direction; } /** * @return id */ public String getId() { return this.id; } /** * @return idType */ public String getIdType() { return this.idType; } /** * @return isColumnLevel */ public Boolean getIsColumnLevel() { return this.isColumnLevel; } /** * @return isTemporary */ public Boolean getIsTemporary() { return this.isTemporary; } /** * @return namespace */ public String getNamespace() { return this.namespace; } /** * @return workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder { private Long depth; private String direction; private String id; private String idType; private Boolean isColumnLevel; private Boolean isTemporary; private String namespace; private String workspace; /** * depth. */ public Builder depth(Long depth) { this.depth = depth; return this; } /** * direction. */ public Builder direction(String direction) { this.direction = direction; return this; } /** * id. */ public Builder id(String id) { this.id = id; return this; } /** * idType. */ public Builder idType(String idType) { this.idType = idType; return this; } /** * isColumnLevel. */ public Builder isColumnLevel(Boolean isColumnLevel) { this.isColumnLevel = isColumnLevel; return this; } /** * isTemporary. */ public Builder isTemporary(Boolean isTemporary) { this.isTemporary = isTemporary; return this; } /** * namespace. */ public Builder namespace(String namespace) { this.namespace = namespace; return this; } /** * workspace. */ public Builder workspace(String workspace) { this.workspace = workspace; return this; } public GetLineageInfoParams build() { return new GetLineageInfoParams(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/GetLineageInfoRequest.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 GetLineageInfoRequest} extends {@link RequestModel} * * <p>GetLineageInfoRequest</p> */ public class GetLineageInfoRequest extends Request { @com.aliyun.core.annotation.Body @com.aliyun.core.annotation.NameInMap("body") private GetLineageInfoParams body; @com.aliyun.core.annotation.Header @com.aliyun.core.annotation.NameInMap("workspace") @com.aliyun.core.annotation.Validation(required = true) private String workspace; private GetLineageInfoRequest(Builder builder) { super(builder); this.body = builder.body; this.workspace = builder.workspace; } public static Builder builder() { return new Builder(); } public static GetLineageInfoRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return body */ public GetLineageInfoParams getBody() { return this.body; } /** * @return workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder extends Request.Builder<GetLineageInfoRequest, Builder> { private GetLineageInfoParams body; private String workspace; private Builder() { super(); } private Builder(GetLineageInfoRequest request) { super(request); this.body = request.body; this.workspace = request.workspace; } /** * <p>The parameters about the lineage information.</p> */ public Builder body(GetLineageInfoParams 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>710d6a64d8****</p> */ public Builder workspace(String workspace) { this.putHeaderParameter("workspace", workspace); this.workspace = workspace; return this; } @Override public GetLineageInfoRequest build() { return new GetLineageInfoRequest(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/GetLineageInfoResponse.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 GetLineageInfoResponse} extends {@link TeaModel} * * <p>GetLineageInfoResponse</p> */ public class GetLineageInfoResponse 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 GetLineageInfoResponseBody body; private GetLineageInfoResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static GetLineageInfoResponse 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 GetLineageInfoResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<GetLineageInfoResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(GetLineageInfoResponseBody body); @Override GetLineageInfoResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<GetLineageInfoResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private GetLineageInfoResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(GetLineageInfoResponse 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(GetLineageInfoResponseBody body) { this.body = body; return this; } @Override public GetLineageInfoResponse build() { return new GetLineageInfoResponse(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/GetLineageInfoResponseBody.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 GetLineageInfoResponseBody} extends {@link TeaModel} * * <p>GetLineageInfoResponseBody</p> */ public class GetLineageInfoResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private LineageInfo 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 GetLineageInfoResponseBody(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 GetLineageInfoResponseBody create() { return builder().build(); } /** * @return data */ public LineageInfo 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 LineageInfo data; private String errorCode; private String errorMessage; private Integer httpCode; private String requestId; private Boolean success; /** * <p>The lineage information.</p> */ public Builder data(LineageInfo 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>&quot;&quot;</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>&quot;&quot;</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 GetLineageInfoResponseBody build() { return new GetLineageInfoResponseBody(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/GetMemberRequest.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 GetMemberRequest} extends {@link RequestModel} * * <p>GetMemberRequest</p> */ public class GetMemberRequest 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("member") @com.aliyun.core.annotation.Validation(required = true) private String member; @com.aliyun.core.annotation.Header @com.aliyun.core.annotation.NameInMap("workspace") @com.aliyun.core.annotation.Validation(required = true) private String workspace; private GetMemberRequest(Builder builder) { super(builder); this.namespace = builder.namespace; this.member = builder.member; this.workspace = builder.workspace; } public static Builder builder() { return new Builder(); } public static GetMemberRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return namespace */ public String getNamespace() { return this.namespace; } /** * @return member */ public String getMember() { return this.member; } /** * @return workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder extends Request.Builder<GetMemberRequest, Builder> { private String namespace; private String member; private String workspace; private Builder() { super(); } private Builder(GetMemberRequest request) { super(request); this.namespace = request.namespace; this.member = request.member; 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 display name of the member.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>user:223769</p> */ public Builder member(String member) { this.putPathParameter("member", member); this.member = member; 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 GetMemberRequest build() { return new GetMemberRequest(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/GetMemberResponse.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 GetMemberResponse} extends {@link TeaModel} * * <p>GetMemberResponse</p> */ public class GetMemberResponse 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 GetMemberResponseBody body; private GetMemberResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static GetMemberResponse 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 GetMemberResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<GetMemberResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(GetMemberResponseBody body); @Override GetMemberResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<GetMemberResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private GetMemberResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(GetMemberResponse 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(GetMemberResponseBody body) { this.body = body; return this; } @Override public GetMemberResponse build() { return new GetMemberResponse(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/GetMemberResponseBody.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 GetMemberResponseBody} extends {@link TeaModel} * * <p>GetMemberResponseBody</p> */ public class GetMemberResponseBody 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 GetMemberResponseBody(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 GetMemberResponseBody 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; /** * <ul> * <li>If the value of success was false, a null value was returned.</li> * <li>If the value of success was true, the authorization information was returned.</li> * </ul> */ 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>&quot;&quot;</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>&quot;&quot;</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 GetMemberResponseBody build() { return new GetMemberResponseBody(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/GetSavepointRequest.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 GetSavepointRequest} extends {@link RequestModel} * * <p>GetSavepointRequest</p> */ public class GetSavepointRequest 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("savepointId") @com.aliyun.core.annotation.Validation(required = true) private String savepointId; @com.aliyun.core.annotation.Header @com.aliyun.core.annotation.NameInMap("workspace") @com.aliyun.core.annotation.Validation(required = true) private String workspace; private GetSavepointRequest(Builder builder) { super(builder); this.namespace = builder.namespace; this.savepointId = builder.savepointId; this.workspace = builder.workspace; } public static Builder builder() { return new Builder(); } public static GetSavepointRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return namespace */ public String getNamespace() { return this.namespace; } /** * @return savepointId */ public String getSavepointId() { return this.savepointId; } /** * @return workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder extends Request.Builder<GetSavepointRequest, Builder> { private String namespace; private String savepointId; private String workspace; private Builder() { super(); } private Builder(GetSavepointRequest request) { super(request); this.namespace = request.namespace; this.savepointId = request.savepointId; 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 savepoint ID.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>88a8fc49-e090-430a-85d8-3ee8c79c****</p> */ public Builder savepointId(String savepointId) { this.putPathParameter("savepointId", savepointId); this.savepointId = savepointId; 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 GetSavepointRequest build() { return new GetSavepointRequest(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/GetSavepointResponse.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 GetSavepointResponse} extends {@link TeaModel} * * <p>GetSavepointResponse</p> */ public class GetSavepointResponse 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 GetSavepointResponseBody body; private GetSavepointResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static GetSavepointResponse 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 GetSavepointResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<GetSavepointResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(GetSavepointResponseBody body); @Override GetSavepointResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<GetSavepointResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private GetSavepointResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(GetSavepointResponse 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(GetSavepointResponseBody body) { this.body = body; return this; } @Override public GetSavepointResponse build() { return new GetSavepointResponse(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/GetSavepointResponseBody.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 GetSavepointResponseBody} extends {@link TeaModel} * * <p>GetSavepointResponseBody</p> */ public class GetSavepointResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private Savepoint 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 GetSavepointResponseBody(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 GetSavepointResponseBody create() { return builder().build(); } /** * @return data */ public Savepoint 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 Savepoint 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 savepoint information was returned.</li> * <li>If the value of success was false, a null value was returned.</li> * </ul> */ public Builder data(Savepoint 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>&quot;&quot;</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>&quot;&quot;</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 GetSavepointResponseBody build() { return new GetSavepointResponseBody(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/GetSessionClusterRequest.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 GetSessionClusterRequest} extends {@link RequestModel} * * <p>GetSessionClusterRequest</p> */ public class GetSessionClusterRequest 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 GetSessionClusterRequest(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 GetSessionClusterRequest 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<GetSessionClusterRequest, Builder> { private String namespace; private String sessionClusterName; private String workspace; private Builder() { super(); } private Builder(GetSessionClusterRequest 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 GetSessionClusterRequest build() { return new GetSessionClusterRequest(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/GetSessionClusterResponse.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 GetSessionClusterResponse} extends {@link TeaModel} * * <p>GetSessionClusterResponse</p> */ public class GetSessionClusterResponse 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 GetSessionClusterResponseBody body; private GetSessionClusterResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static GetSessionClusterResponse 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 GetSessionClusterResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<GetSessionClusterResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(GetSessionClusterResponseBody body); @Override GetSessionClusterResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<GetSessionClusterResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private GetSessionClusterResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(GetSessionClusterResponse 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(GetSessionClusterResponseBody body) { this.body = body; return this; } @Override public GetSessionClusterResponse build() { return new GetSessionClusterResponse(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/GetSessionClusterResponseBody.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 GetSessionClusterResponseBody} extends {@link TeaModel} * * <p>GetSessionClusterResponseBody</p> */ public class GetSessionClusterResponseBody 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 GetSessionClusterResponseBody(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 GetSessionClusterResponseBody 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 GetSessionClusterResponseBody build() { return new GetSessionClusterResponseBody(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/GetTablesRequest.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 GetTablesRequest} extends {@link RequestModel} * * <p>GetTablesRequest</p> */ public class GetTablesRequest 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("catalogName") @com.aliyun.core.annotation.Validation(required = true) private String catalogName; @com.aliyun.core.annotation.Path @com.aliyun.core.annotation.NameInMap("databaseName") @com.aliyun.core.annotation.Validation(required = true) private String databaseName; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("tableName") private String tableName; @com.aliyun.core.annotation.Header @com.aliyun.core.annotation.NameInMap("workspace") @com.aliyun.core.annotation.Validation(required = true) private String workspace; private GetTablesRequest(Builder builder) { super(builder); this.namespace = builder.namespace; this.catalogName = builder.catalogName; this.databaseName = builder.databaseName; this.tableName = builder.tableName; this.workspace = builder.workspace; } public static Builder builder() { return new Builder(); } public static GetTablesRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return namespace */ public String getNamespace() { return this.namespace; } /** * @return catalogName */ public String getCatalogName() { return this.catalogName; } /** * @return databaseName */ public String getDatabaseName() { return this.databaseName; } /** * @return tableName */ public String getTableName() { return this.tableName; } /** * @return workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder extends Request.Builder<GetTablesRequest, Builder> { private String namespace; private String catalogName; private String databaseName; private String tableName; private String workspace; private Builder() { super(); } private Builder(GetTablesRequest request) { super(request); this.namespace = request.namespace; this.catalogName = request.catalogName; this.databaseName = request.databaseName; this.tableName = request.tableName; this.workspace = request.workspace; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>u-gs3rgla9-default</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>paimon</p> */ public Builder catalogName(String catalogName) { this.putPathParameter("catalogName", catalogName); this.catalogName = catalogName; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>paimon-ods</p> */ public Builder databaseName(String databaseName) { this.putPathParameter("databaseName", databaseName); this.databaseName = databaseName; return this; } /** * tableName. */ public Builder tableName(String tableName) { this.putQueryParameter("tableName", tableName); this.tableName = tableName; 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 GetTablesRequest build() { return new GetTablesRequest(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/GetTablesResponse.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 GetTablesResponse} extends {@link TeaModel} * * <p>GetTablesResponse</p> */ public class GetTablesResponse 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 GetTablesResponseBody body; private GetTablesResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static GetTablesResponse 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 GetTablesResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<GetTablesResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(GetTablesResponseBody body); @Override GetTablesResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<GetTablesResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private GetTablesResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(GetTablesResponse 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(GetTablesResponseBody body) { this.body = body; return this; } @Override public GetTablesResponse build() { return new GetTablesResponse(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/GetTablesResponseBody.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 GetTablesResponseBody} extends {@link TeaModel} * * <p>GetTablesResponseBody</p> */ public class GetTablesResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private java.util.List<Table> 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 GetTablesResponseBody(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 GetTablesResponseBody create() { return builder().build(); } /** * @return data */ public java.util.List<Table> 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 java.util.List<Table> 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 list and details of tables that meet the condition were returned. If the value of success was false, a null value was returned.</p> */ public Builder data(java.util.List<Table> 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 GetTablesResponseBody build() { return new GetTablesResponseBody(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/GetUdfArtifactsRequest.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 GetUdfArtifactsRequest} extends {@link RequestModel} * * <p>GetUdfArtifactsRequest</p> */ public class GetUdfArtifactsRequest 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.Query @com.aliyun.core.annotation.NameInMap("udfArtifactName") private String udfArtifactName; @com.aliyun.core.annotation.Header @com.aliyun.core.annotation.NameInMap("workspace") @com.aliyun.core.annotation.Validation(required = true) private String workspace; private GetUdfArtifactsRequest(Builder builder) { super(builder); this.namespace = builder.namespace; this.udfArtifactName = builder.udfArtifactName; this.workspace = builder.workspace; } public static Builder builder() { return new Builder(); } public static GetUdfArtifactsRequest 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 workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder extends Request.Builder<GetUdfArtifactsRequest, Builder> { private String namespace; private String udfArtifactName; private String workspace; private Builder() { super(); } private Builder(GetUdfArtifactsRequest request) { super(request); this.namespace = request.namespace; this.udfArtifactName = request.udfArtifactName; 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 or Python file that corresponds to the UDF.</p> * * <strong>example:</strong> * <p>test-udf</p> */ public Builder udfArtifactName(String udfArtifactName) { this.putQueryParameter("udfArtifactName", udfArtifactName); this.udfArtifactName = udfArtifactName; return this; } /** * <p>The workspace ID.</p> * <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 GetUdfArtifactsRequest build() { return new GetUdfArtifactsRequest(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/GetUdfArtifactsResponse.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 GetUdfArtifactsResponse} extends {@link TeaModel} * * <p>GetUdfArtifactsResponse</p> */ public class GetUdfArtifactsResponse 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 GetUdfArtifactsResponseBody body; private GetUdfArtifactsResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static GetUdfArtifactsResponse 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 GetUdfArtifactsResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<GetUdfArtifactsResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(GetUdfArtifactsResponseBody body); @Override GetUdfArtifactsResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<GetUdfArtifactsResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private GetUdfArtifactsResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(GetUdfArtifactsResponse 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(GetUdfArtifactsResponseBody body) { this.body = body; return this; } @Override public GetUdfArtifactsResponse build() { return new GetUdfArtifactsResponse(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/GetUdfArtifactsResponseBody.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 GetUdfArtifactsResponseBody} extends {@link TeaModel} * * <p>GetUdfArtifactsResponseBody</p> */ public class GetUdfArtifactsResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private java.util.List<UdfArtifact> 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 GetUdfArtifactsResponseBody(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 GetUdfArtifactsResponseBody create() { return builder().build(); } /** * @return data */ public java.util.List<UdfArtifact> 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 java.util.List<UdfArtifact> 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 details of the JAR or Python file that corresponds to the UDF were returned. If the value of success was false, a null value was returned.</p> */ public Builder data(java.util.List<UdfArtifact> 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>&quot;&quot;</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>&quot;&quot;</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 GetUdfArtifactsResponseBody build() { return new GetUdfArtifactsResponseBody(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/HotUpdateJobFailureInfo.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 HotUpdateJobFailureInfo} extends {@link TeaModel} * * <p>HotUpdateJobFailureInfo</p> */ public class HotUpdateJobFailureInfo extends TeaModel { @com.aliyun.core.annotation.NameInMap("failureSeverity") private String failureSeverity; @com.aliyun.core.annotation.NameInMap("message") private String message; @com.aliyun.core.annotation.NameInMap("reason") private String reason; private HotUpdateJobFailureInfo(Builder builder) { this.failureSeverity = builder.failureSeverity; this.message = builder.message; this.reason = builder.reason; } public static Builder builder() { return new Builder(); } public static HotUpdateJobFailureInfo create() { return builder().build(); } /** * @return failureSeverity */ public String getFailureSeverity() { return this.failureSeverity; } /** * @return message */ public String getMessage() { return this.message; } /** * @return reason */ public String getReason() { return this.reason; } public static final class Builder { private String failureSeverity; private String message; private String reason; /** * failureSeverity. */ public Builder failureSeverity(String failureSeverity) { this.failureSeverity = failureSeverity; return this; } /** * message. */ public Builder message(String message) { this.message = message; return this; } /** * reason. */ public Builder reason(String reason) { this.reason = reason; return this; } public HotUpdateJobFailureInfo build() { return new HotUpdateJobFailureInfo(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/HotUpdateJobParams.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 HotUpdateJobParams} extends {@link TeaModel} * * <p>HotUpdateJobParams</p> */ public class HotUpdateJobParams extends TeaModel { @com.aliyun.core.annotation.NameInMap("rescaleJobParam") private RescaleJobParam rescaleJobParam; @com.aliyun.core.annotation.NameInMap("updateJobConfigParam") private UpdateJobConfigParam updateJobConfigParam; private HotUpdateJobParams(Builder builder) { this.rescaleJobParam = builder.rescaleJobParam; this.updateJobConfigParam = builder.updateJobConfigParam; } public static Builder builder() { return new Builder(); } public static HotUpdateJobParams create() { return builder().build(); } /** * @return rescaleJobParam */ public RescaleJobParam getRescaleJobParam() { return this.rescaleJobParam; } /** * @return updateJobConfigParam */ public UpdateJobConfigParam getUpdateJobConfigParam() { return this.updateJobConfigParam; } public static final class Builder { private RescaleJobParam rescaleJobParam; private UpdateJobConfigParam updateJobConfigParam; /** * rescaleJobParam. */ public Builder rescaleJobParam(RescaleJobParam rescaleJobParam) { this.rescaleJobParam = rescaleJobParam; return this; } /** * updateJobConfigParam. */ public Builder updateJobConfigParam(UpdateJobConfigParam updateJobConfigParam) { this.updateJobConfigParam = updateJobConfigParam; return this; } public HotUpdateJobParams build() { return new HotUpdateJobParams(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/HotUpdateJobRequest.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 HotUpdateJobRequest} extends {@link RequestModel} * * <p>HotUpdateJobRequest</p> */ public class HotUpdateJobRequest 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.Header @com.aliyun.core.annotation.NameInMap("workspace") @com.aliyun.core.annotation.Validation(required = true) private String workspace; private HotUpdateJobRequest(Builder builder) { super(builder); this.namespace = builder.namespace; this.jobId = builder.jobId; this.workspace = builder.workspace; } public static Builder builder() { return new Builder(); } public static HotUpdateJobRequest 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 workspace */ public String getWorkspace() { return this.workspace; } public static final class Builder extends Request.Builder<HotUpdateJobRequest, Builder> { private String namespace; private String jobId; private String workspace; private Builder() { super(); } private Builder(HotUpdateJobRequest request) { super(request); this.namespace = request.namespace; this.jobId = request.jobId; 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 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 HotUpdateJobRequest build() { return new HotUpdateJobRequest(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/HotUpdateJobResponse.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 HotUpdateJobResponse} extends {@link TeaModel} * * <p>HotUpdateJobResponse</p> */ public class HotUpdateJobResponse 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 HotUpdateJobResponseBody body; private HotUpdateJobResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static HotUpdateJobResponse 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 HotUpdateJobResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<HotUpdateJobResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(HotUpdateJobResponseBody body); @Override HotUpdateJobResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<HotUpdateJobResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private HotUpdateJobResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(HotUpdateJobResponse 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(HotUpdateJobResponseBody body) { this.body = body; return this; } @Override public HotUpdateJobResponse build() { return new HotUpdateJobResponse(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/HotUpdateJobResponseBody.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 HotUpdateJobResponseBody} extends {@link TeaModel} * * <p>HotUpdateJobResponseBody</p> */ public class HotUpdateJobResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("data") private HotUpdateJobResult 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 HotUpdateJobResponseBody(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 HotUpdateJobResponseBody create() { return builder().build(); } /** * @return data */ public HotUpdateJobResult 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 HotUpdateJobResult data; private String errorCode; private String errorMessage; private Integer httpCode; private String requestId; private Boolean success; /** * <p>The dynamic update result.</p> */ public Builder data(HotUpdateJobResult 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>&quot;&quot;</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>&quot;&quot;</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 HotUpdateJobResponseBody build() { return new HotUpdateJobResponseBody(this); } } }