删除指定的模板。删除后,该模板将无法再用于创建新的沙箱。
diff --git a/agentrun-20250910/src/main/java/com/aliyun/sdk/service/agentrun20250910/DefaultAsyncClient.java b/agentrun-20250910/src/main/java/com/aliyun/sdk/service/agentrun20250910/DefaultAsyncClient.java index b0e5949536e..be620ca8666 100644 --- a/agentrun-20250910/src/main/java/com/aliyun/sdk/service/agentrun20250910/DefaultAsyncClient.java +++ b/agentrun-20250910/src/main/java/com/aliyun/sdk/service/agentrun20250910/DefaultAsyncClient.java @@ -426,6 +426,24 @@ public CompletableFuture删除指定的模板。删除后,该模板将无法再用于创建新的沙箱。
@@ -1022,7 +1040,7 @@ public CompletableFutureCreateSandboxInput
*/ public class CreateSandboxInput extends TeaModel { + @com.aliyun.core.annotation.NameInMap("sandboxId") + private String sandboxId; + @com.aliyun.core.annotation.NameInMap("sandboxIdleTimeoutSeconds") @com.aliyun.core.annotation.Validation(maximum = 21600, minimum = 1) private Integer sandboxIdleTimeoutSeconds; @@ -26,6 +29,7 @@ public class CreateSandboxInput extends TeaModel { private String templateName; private CreateSandboxInput(Builder builder) { + this.sandboxId = builder.sandboxId; this.sandboxIdleTimeoutSeconds = builder.sandboxIdleTimeoutSeconds; this.templateName = builder.templateName; } @@ -42,6 +46,13 @@ public Builder toBuilder() { return new Builder(this); } + /** + * @return sandboxId + */ + public String getSandboxId() { + return this.sandboxId; + } + /** * @return sandboxIdleTimeoutSeconds */ @@ -57,6 +68,7 @@ public String getTemplateName() { } public static final class Builder { + private String sandboxId; private Integer sandboxIdleTimeoutSeconds; private String templateName; @@ -64,10 +76,19 @@ private Builder() { } private Builder(CreateSandboxInput model) { + this.sandboxId = model.sandboxId; this.sandboxIdleTimeoutSeconds = model.sandboxIdleTimeoutSeconds; this.templateName = model.templateName; } + /** + * sandboxId. + */ + public Builder sandboxId(String sandboxId) { + this.sandboxId = sandboxId; + return this; + } + /** *沙箱空闲超时时间(秒)
*/ diff --git a/agentrun-20250910/src/main/java/com/aliyun/sdk/service/agentrun20250910/models/DeleteSandboxRequest.java b/agentrun-20250910/src/main/java/com/aliyun/sdk/service/agentrun20250910/models/DeleteSandboxRequest.java new file mode 100644 index 00000000000..e0ae77536de --- /dev/null +++ b/agentrun-20250910/src/main/java/com/aliyun/sdk/service/agentrun20250910/models/DeleteSandboxRequest.java @@ -0,0 +1,81 @@ +// This file is auto-generated, don't edit it. Thanks. +package com.aliyun.sdk.service.agentrun20250910.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 DeleteSandboxRequest} extends {@link RequestModel} + * + *DeleteSandboxRequest
+ */ +public class DeleteSandboxRequest extends Request { + @com.aliyun.core.annotation.Path + @com.aliyun.core.annotation.NameInMap("sandboxId") + @com.aliyun.core.annotation.Validation(required = true) + private String sandboxId; + + private DeleteSandboxRequest(Builder builder) { + super(builder); + this.sandboxId = builder.sandboxId; + } + + public static Builder builder() { + return new Builder(); + } + + public static DeleteSandboxRequest create() { + return builder().build(); + } + +@Override + public Builder toBuilder() { + return new Builder(this); + } + + /** + * @return sandboxId + */ + public String getSandboxId() { + return this.sandboxId; + } + + public static final class Builder extends Request.BuilderThis parameter is required.
+ * + * example: + *sb-1234567
+ */ + public Builder sandboxId(String sandboxId) { + this.putPathParameter("sandboxId", sandboxId); + this.sandboxId = sandboxId; + return this; + } + + @Override + public DeleteSandboxRequest build() { + return new DeleteSandboxRequest(this); + } + + } + +} diff --git a/agentrun-20250910/src/main/java/com/aliyun/sdk/service/agentrun20250910/models/DeleteSandboxResponse.java b/agentrun-20250910/src/main/java/com/aliyun/sdk/service/agentrun20250910/models/DeleteSandboxResponse.java new file mode 100644 index 00000000000..01a5eb11fc6 --- /dev/null +++ b/agentrun-20250910/src/main/java/com/aliyun/sdk/service/agentrun20250910/models/DeleteSandboxResponse.java @@ -0,0 +1,131 @@ +// This file is auto-generated, don't edit it. Thanks. +package com.aliyun.sdk.service.agentrun20250910.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 DeleteSandboxResponse} extends {@link TeaModel} + * + *DeleteSandboxResponse
+ */ +public class DeleteSandboxResponse extends Response { + @com.aliyun.core.annotation.NameInMap("headers") + private java.util.Map按模板类型过滤
* diff --git a/agentrun-20250910/src/main/java/com/aliyun/sdk/service/agentrun20250910/models/Sandbox.java b/agentrun-20250910/src/main/java/com/aliyun/sdk/service/agentrun20250910/models/Sandbox.java index cb7f4c6edc2..9ca1340d323 100644 --- a/agentrun-20250910/src/main/java/com/aliyun/sdk/service/agentrun20250910/models/Sandbox.java +++ b/agentrun-20250910/src/main/java/com/aliyun/sdk/service/agentrun20250910/models/Sandbox.java @@ -17,9 +17,6 @@ *Sandbox
*/ public class Sandbox extends TeaModel { - @com.aliyun.core.annotation.NameInMap("SandboxIdleTTLInSeconds") - private Integer sandboxIdleTTLInSeconds; - @com.aliyun.core.annotation.NameInMap("createdAt") @com.aliyun.core.annotation.Validation(required = true) private String createdAt; @@ -40,6 +37,9 @@ public class Sandbox extends TeaModel { @com.aliyun.core.annotation.Validation(required = true) private String sandboxId; + @com.aliyun.core.annotation.NameInMap("sandboxIdleTTLInSeconds") + private Integer sandboxIdleTTLInSeconds; + @com.aliyun.core.annotation.NameInMap("sandboxIdleTimeoutSeconds") @com.aliyun.core.annotation.Validation(maximum = 21600, minimum = 1) private Integer sandboxIdleTimeoutSeconds; @@ -56,13 +56,13 @@ public class Sandbox extends TeaModel { private String templateName; private Sandbox(Builder builder) { - this.sandboxIdleTTLInSeconds = builder.sandboxIdleTTLInSeconds; this.createdAt = builder.createdAt; this.endedAt = builder.endedAt; this.lastUpdatedAt = builder.lastUpdatedAt; this.metadata = builder.metadata; this.sandboxArn = builder.sandboxArn; this.sandboxId = builder.sandboxId; + this.sandboxIdleTTLInSeconds = builder.sandboxIdleTTLInSeconds; this.sandboxIdleTimeoutSeconds = builder.sandboxIdleTimeoutSeconds; this.status = builder.status; this.templateId = builder.templateId; @@ -81,13 +81,6 @@ public Builder toBuilder() { return new Builder(this); } - /** - * @return sandboxIdleTTLInSeconds - */ - public Integer getSandboxIdleTTLInSeconds() { - return this.sandboxIdleTTLInSeconds; - } - /** * @return createdAt */ @@ -130,6 +123,13 @@ public String getSandboxId() { return this.sandboxId; } + /** + * @return sandboxIdleTTLInSeconds + */ + public Integer getSandboxIdleTTLInSeconds() { + return this.sandboxIdleTTLInSeconds; + } + /** * @return sandboxIdleTimeoutSeconds */ @@ -159,13 +159,13 @@ public String getTemplateName() { } public static final class Builder { - private Integer sandboxIdleTTLInSeconds; private String createdAt; private String endedAt; private String lastUpdatedAt; private java.util.Map沙箱创建时间
*This parameter is required.
@@ -245,6 +237,14 @@ public Builder sandboxId(String sandboxId) { return this; } + /** + * sandboxIdleTTLInSeconds. + */ + public Builder sandboxIdleTTLInSeconds(Integer sandboxIdleTTLInSeconds) { + this.sandboxIdleTTLInSeconds = sandboxIdleTTLInSeconds; + return this; + } + /** *沙箱空闲超时时间(秒)
*/ diff --git a/agentrun-20250910/src/main/java/com/aliyun/sdk/service/agentrun20250910/models/StopSandboxResponse.java b/agentrun-20250910/src/main/java/com/aliyun/sdk/service/agentrun20250910/models/StopSandboxResponse.java index 140491abe63..7b0d00bbd2d 100644 --- a/agentrun-20250910/src/main/java/com/aliyun/sdk/service/agentrun20250910/models/StopSandboxResponse.java +++ b/agentrun-20250910/src/main/java/com/aliyun/sdk/service/agentrun20250910/models/StopSandboxResponse.java @@ -24,7 +24,7 @@ public class StopSandboxResponse extends Response { private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") - private DeleteSandboxResult body; + private StopSandboxResult body; private StopSandboxResponse(BuilderImpl builder) { super(builder); @@ -59,7 +59,7 @@ public Integer getStatusCode() { /** * @return body */ - public DeleteSandboxResult getBody() { + public StopSandboxResult getBody() { return this.body; } @@ -69,7 +69,7 @@ public interface Builder extends Response.BuilderStopSandboxResult
+ */ +public class StopSandboxResult extends TeaModel { + @com.aliyun.core.annotation.NameInMap("code") + private String code; + + @com.aliyun.core.annotation.NameInMap("data") + private Sandbox data; + + @com.aliyun.core.annotation.NameInMap("requestId") + private String requestId; + + private StopSandboxResult(Builder builder) { + this.code = builder.code; + this.data = builder.data; + this.requestId = builder.requestId; + } + + public static Builder builder() { + return new Builder(); + } + + public static StopSandboxResult create() { + return builder().build(); + } + + public Builder toBuilder() { + return new Builder(this); + } + + /** + * @return code + */ + public String getCode() { + return this.code; + } + + /** + * @return data + */ + public Sandbox getData() { + return this.data; + } + + /** + * @return requestId + */ + public String getRequestId() { + return this.requestId; + } + + public static final class Builder { + private String code; + private Sandbox data; + private String requestId; + + private Builder() { + } + + private Builder(StopSandboxResult model) { + this.code = model.code; + this.data = model.data; + this.requestId = model.requestId; + } + + /** + * code. + */ + public Builder code(String code) { + this.code = code; + return this; + } + + /** + * data. + */ + public Builder data(Sandbox data) { + this.data = data; + return this; + } + + /** + * requestId. + */ + public Builder requestId(String requestId) { + this.requestId = requestId; + return this; + } + + public StopSandboxResult build() { + return new StopSandboxResult(this); + } + + } + +} diff --git a/dms-enterprise-20181101/ChangeLog.txt b/dms-enterprise-20181101/ChangeLog.txt index 932cdaf093e..7d4b6a0b6a3 100644 --- a/dms-enterprise-20181101/ChangeLog.txt +++ b/dms-enterprise-20181101/ChangeLog.txt @@ -1,3 +1,6 @@ +2025-11-23 Version: 1.53.41 +- Generated java-async 2018-11-01 for dms-enterprise. + 2025-09-26 Version: 1.53.40 - Generated java-async 2018-11-01 for dms-enterprise. diff --git a/dms-enterprise-20181101/pom.xml b/dms-enterprise-20181101/pom.xml index c0e99e665c3..8ac7f901ab3 100644 --- a/dms-enterprise-20181101/pom.xml +++ b/dms-enterprise-20181101/pom.xml @@ -3,7 +3,7 @@You must be a database administrator (DBA) or a DMS administrator. For more information, see View system roles.
+ * * @param request the request parameters of AddInstance AddInstanceRequest * @return AddInstanceResponse */ @@ -92,7 +95,7 @@ static AsyncClient create() { /** * description : - *根据用户提供的数据库ID,回答对应引擎的语法问题
+ *You can call this operation to answer the syntax questions of the corresponding engine according to the specified database ID.
* * @param request the request parameters of AnswerSqlSyntaxByMetaAgent AnswerSqlSyntaxByMetaAgentRequest * @return AnswerSqlSyntaxByMetaAgentResponse @@ -163,6 +166,15 @@ static AsyncClient create() { */ CompletableFuture带有DMS脱敏能力的聊天API接口
+ * + * @param request the request parameters of ChatWithDesensitize ChatWithDesensitizeRequest + * @return ChatWithDesensitizeResponse + */ + CompletableFutureCurrently, this feature is in the phased release phase. Only users who have phased out can use this feature and related APIs. For more information about the policy feature, see Manage policies.
+ * * @param request the request parameters of CreateAbacPolicy CreateAbacPolicyRequest * @return CreateAbacPolicyResponse */ @@ -340,6 +355,9 @@ static AsyncClient create() { CompletableFutureYou can call this API operation only for database instances that are managed in Security Collaboration mode.
+ * * @param request the request parameters of CreateProcCorrectOrder CreateProcCorrectOrderRequest * @return CreateProcCorrectOrderResponse */ @@ -429,6 +447,13 @@ static AsyncClient create() { CompletableFutureBefore you call this API operation, make sure that the security rule set is not associated with an instance.
+ * * @param request the request parameters of DeleteStandardGroup DeleteStandardGroupRequest * @return DeleteStandardGroupResponse */ @@ -685,6 +713,9 @@ static AsyncClient create() { CompletableFutureEdits the business knowledge of the metadata represented by the specified GUID.
+ * * @param request the request parameters of EditMetaKnowledgeAsset EditMetaKnowledgeAssetRequest * @return EditMetaKnowledgeAssetResponse */ @@ -737,7 +768,7 @@ static AsyncClient create() { /** * description : - *根据用户提供的SQL,报错信息和数据库ID,分析SQL报错原因并修复
+ *You can call this operation to analyze and fix SQL errors based on the specified SQL statement, error message, and database ID.
* * @param request the request parameters of FixSqlByMetaAgent FixSqlByMetaAgentRequest * @return FixSqlByMetaAgentResponse @@ -1152,6 +1183,9 @@ static AsyncClient create() { CompletableFutureThis API can be called only for database instances that are enabled for security hosting.
+ * * @param request the request parameters of GetTableKnowledgeInfo GetTableKnowledgeInfoRequest * @return GetTableKnowledgeInfoResponse */ @@ -1676,6 +1710,12 @@ static AsyncClient create() { */ CompletableFuture根据用户提供的SQL数据库ID,分析SQL性能并优化
+ *You can call this operation to analyze and optimize the SQL statements in the specified database.
* * @param request the request parameters of OptimizeSqlByMetaAgent OptimizeSqlByMetaAgentRequest * @return OptimizeSqlByMetaAgentResponse @@ -1989,6 +2029,14 @@ static AsyncClient create() { CompletableFutureAn edge can be created only when the following conditions are met:
+ *You can call this operation to modify node configurations.
+ * * @param request the request parameters of UpdateTaskContentV2 UpdateTaskContentV2Request * @return UpdateTaskContentV2Response */ diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/DefaultAsyncClient.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/DefaultAsyncClient.java index ee4cd922bc0..77c7a43b873 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/DefaultAsyncClient.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/DefaultAsyncClient.java @@ -76,6 +76,9 @@ public CompletableFutureYou must be a database administrator (DBA) or a DMS administrator. For more information, see View system roles.
+ * * @param request the request parameters of AddInstance AddInstanceRequest * @return AddInstanceResponse */ @@ -208,7 +211,7 @@ public CompletableFuture根据用户提供的数据库ID,回答对应引擎的语法问题
+ *You can call this operation to answer the syntax questions of the corresponding engine according to the specified database ID.
* * @param request the request parameters of AnswerSqlSyntaxByMetaAgent AnswerSqlSyntaxByMetaAgentRequest * @return AnswerSqlSyntaxByMetaAgentResponse @@ -399,6 +402,27 @@ public CompletableFuture带有DMS脱敏能力的聊天API接口
+ * + * @param request the request parameters of ChatWithDesensitize ChatWithDesensitizeRequest + * @return ChatWithDesensitizeResponse + */ + @Override + public CompletableFutureCurrently, this feature is in the phased release phase. Only users who have phased out can use this feature and related APIs. For more information about the policy feature, see Manage policies.
+ * * @param request the request parameters of CreateAbacPolicy CreateAbacPolicyRequest * @return CreateAbacPolicyResponse */ @@ -828,6 +855,9 @@ public CompletableFutureYou can call this API operation only for database instances that are managed in Security Collaboration mode.
+ * * @param request the request parameters of CreateProcCorrectOrder CreateProcCorrectOrderRequest * @return CreateProcCorrectOrderResponse */ @@ -1061,6 +1091,13 @@ public CompletableFutureBefore you call this API operation, make sure that the security rule set is not associated with an instance.
+ * * @param request the request parameters of DeleteStandardGroup DeleteStandardGroupRequest * @return DeleteStandardGroupResponse */ @@ -1677,6 +1717,9 @@ public CompletableFutureEdits the business knowledge of the metadata represented by the specified GUID.
+ * * @param request the request parameters of EditMetaKnowledgeAsset EditMetaKnowledgeAssetRequest * @return EditMetaKnowledgeAssetResponse */ @@ -1801,7 +1844,7 @@ public CompletableFuture根据用户提供的SQL,报错信息和数据库ID,分析SQL报错原因并修复
+ *You can call this operation to analyze and fix SQL errors based on the specified SQL statement, error message, and database ID.
* * @param request the request parameters of FixSqlByMetaAgent FixSqlByMetaAgentRequest * @return FixSqlByMetaAgentResponse @@ -2948,6 +2991,9 @@ public CompletableFutureThis API can be called only for database instances that are enabled for security hosting.
+ * * @param request the request parameters of GetTableKnowledgeInfo GetTableKnowledgeInfoRequest * @return GetTableKnowledgeInfoResponse */ @@ -4432,6 +4478,24 @@ public CompletableFuture根据用户提供的SQL数据库ID,分析SQL性能并优化
+ *You can call this operation to analyze and optimize the SQL statements in the specified database.
* * @param request the request parameters of OptimizeSqlByMetaAgent OptimizeSqlByMetaAgentRequest * @return OptimizeSqlByMetaAgentResponse @@ -5297,6 +5361,14 @@ public CompletableFutureAn edge can be created only when the following conditions are met:
+ *You can call this operation to modify node configurations.
+ * * @param request the request parameters of UpdateTaskContentV2 UpdateTaskContentV2Request * @return UpdateTaskContentV2Response */ diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AddAuthorityTemplateItemsRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AddAuthorityTemplateItemsRequest.java index 181812fb8e7..c045accf2a1 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AddAuthorityTemplateItemsRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AddAuthorityTemplateItemsRequest.java @@ -112,6 +112,7 @@ public Builder regionId(String regionId) { } /** + *The resources that you want to add to the permission template.
*This parameter is required.
*/ public Builder items(java.util.ListThe ID of the permission template. You can call the CreateAuthorityTemplate operation to obtain the value of this parameter.
*This parameter is required.
* * example: @@ -134,7 +136,13 @@ public Builder templateId(Long templateId) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the tenant ID, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -242,7 +250,17 @@ private Builder(Items model) { } /** - * DbId. + *The database ID. Databases are divided into physical databases and logical databases.
+ *+ *+ * + * example: + *This parameter is required if the ResourceType parameter is set to META_DB, LOGIC_DB, META_TABLE, or LOGIC_TABLE.
+ *
2478****
*/ public Builder dbId(Integer dbId) { this.dbId = dbId; @@ -250,7 +268,13 @@ public Builder dbId(Integer dbId) { } /** - * InstanceId. + *The instance ID. You can call the ListInstances or GetInstance operation to query the instance ID.
+ *+ *+ * + * example: + *This parameter is required if the ResourceType parameter is set to INSTANCE.
+ *
237****
*/ public Builder instanceId(Integer instanceId) { this.instanceId = instanceId; @@ -258,7 +282,7 @@ public Builder instanceId(Integer instanceId) { } /** - * PermissionTypes. + *The permission types.
*/ public Builder permissionTypes(java.util.ListThe type of the resource from which you want to remove tags. Valid values:
+ *This parameter is required.
* * example: @@ -277,7 +309,13 @@ public Builder resourceType(String resourceType) { } /** - * TableName. + *The table name. You can call the ListTables operation to query the name of the table.
+ *+ *+ * + * example: + *This parameter is required if the ResourceType parameter is set to META_TABLE or LOGIC_TABLE.
+ *
test_table
*/ public Builder tableName(String tableName) { this.tableName = tableName; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AddAuthorityTemplateItemsResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AddAuthorityTemplateItemsResponseBody.java index 6ab76ac26d9..213a59f406b 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AddAuthorityTemplateItemsResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AddAuthorityTemplateItemsResponseBody.java @@ -106,7 +106,10 @@ private Builder(AddAuthorityTemplateItemsResponseBody model) { } /** - * Data. + *Indicates whether the resource is added to the permission template.
+ * + * example: + *true
*/ public Builder data(Boolean data) { this.data = data; @@ -114,7 +117,10 @@ public Builder data(Boolean data) { } /** - * ErrorCode. + *The error code returned if the request failed. The error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -122,7 +128,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -130,7 +139,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID. You can use the ID to query logs and troubleshoot issues.
+ * + * example: + *3D3FB827-E667-50DB-AD59-C83F8237FECB
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -138,7 +150,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AddInstanceRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AddInstanceRequest.java index 0b9bcf9c002..b4727377522 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AddInstanceRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AddInstanceRequest.java @@ -487,7 +487,20 @@ public Builder regionId(String regionId) { } /** - * DataLinkName. + *The name of the database link for cross-database queries.
+ *+ *+ *
This property must be specified when UseDsql is set to 1.
+ *The name can contain only lowercase letters and underscores (_).
+ *The name must be unique within a tenant.
+ *dblink_test
*/ public Builder dataLinkName(String dataLinkName) { this.putQueryParameter("DataLinkName", dataLinkName); @@ -496,6 +509,7 @@ public Builder dataLinkName(String dataLinkName) { } /** + *The password of the database account.
*This parameter is required.
* * example: @@ -508,6 +522,7 @@ public Builder databasePassword(String databasePassword) { } /** + *The name of the database account.
*This parameter is required.
* * example: @@ -520,7 +535,10 @@ public Builder databaseUser(String databaseUser) { } /** - * DbaId. + *The ID of the user who assumes the database administrator (DBA) role. You can call the ListUsers or GetInstance operation to obtain the value of this parameter.
+ * + * example: + *27****
*/ public Builder dbaId(Long dbaId) { this.putQueryParameter("DbaId", dbaId); @@ -529,7 +547,18 @@ public Builder dbaId(Long dbaId) { } /** - * DdlOnline. + *Specifies whether to enable Lock-free Schema Change. Valid values:
+ *+ *+ * + * example: + *Supported databases include ApsaraDB RDS for MySQL, PolarDB for MySQL, ApsaraDB MyBase for MySQL, and third-party MySQL databases.
+ *
2
*/ public Builder ddlOnline(Integer ddlOnline) { this.putQueryParameter("DdlOnline", ddlOnline); @@ -538,7 +567,13 @@ public Builder ddlOnline(Integer ddlOnline) { } /** - * EcsInstanceId. + *The ID of the instance. If your instance is a database instance connected by using a database gateway, specify the gateway ID for this parameter.
+ *+ *+ * + * example: + *This parameter is required if InstanceSource is set to ECS_OWN or GATEWAY.
+ *
i-2zei9gs1t7h8l7ac****
*/ public Builder ecsInstanceId(String ecsInstanceId) { this.putQueryParameter("EcsInstanceId", ecsInstanceId); @@ -547,7 +582,13 @@ public Builder ecsInstanceId(String ecsInstanceId) { } /** - * EcsRegion. + *The region in which the ECS instance resides.
+ *+ *+ * + * example: + *This parameter is required if InstanceSource is set to RDS, ECS_OWN, GATEWAY, or VPC_IDC.
+ *
cn-hangzhou
*/ public Builder ecsRegion(String ecsRegion) { this.putQueryParameter("EcsRegion", ecsRegion); @@ -556,7 +597,14 @@ public Builder ecsRegion(String ecsRegion) { } /** - * EnableSellCommon. + *Specifies whether to enable Security Collaboration for the database instance. Valid values:
+ *Y
*/ public Builder enableSellCommon(String enableSellCommon) { this.putQueryParameter("EnableSellCommon", enableSellCommon); @@ -565,7 +613,14 @@ public Builder enableSellCommon(String enableSellCommon) { } /** - * EnableSellSitd. + *Specifies whether to enable sensitive data protection. Valid values:
+ *Y
*/ public Builder enableSellSitd(String enableSellSitd) { this.putQueryParameter("EnableSellSitd", enableSellSitd); @@ -574,7 +629,14 @@ public Builder enableSellSitd(String enableSellSitd) { } /** - * EnableSellStable. + *Specifies whether to enable Stable Change for the database instance. Valid values:
+ *NULL
*/ public Builder enableSellStable(String enableSellStable) { this.putQueryParameter("EnableSellStable", enableSellStable); @@ -583,6 +645,11 @@ public Builder enableSellStable(String enableSellStable) { } /** + *Specifies whether to enable the security hosting feature for the database instance. Valid values:
+ *This parameter is required.
* * example: @@ -595,6 +662,17 @@ public Builder enableSellTrust(String enableSellTrust) { } /** + *The type of the environment to which the database instance belongs. Valid values:
+ *This parameter is required.
* * example: @@ -607,6 +685,7 @@ public Builder envType(String envType) { } /** + *The timeout period for exporting data from the database instance. Unit: seconds.
*This parameter is required.
* * example: @@ -619,6 +698,7 @@ public Builder exportTimeout(Integer exportTimeout) { } /** + *The endpoint that is used to connect to the database.
*This parameter is required.
* * example: @@ -631,6 +711,7 @@ public Builder host(String host) { } /** + *The alias of the database instance. Specify an alias that can help you identify the database instance in DMS.
*This parameter is required.
*/ public Builder instanceAlias(String instanceAlias) { @@ -640,6 +721,14 @@ public Builder instanceAlias(String instanceAlias) { } /** + *The source of the database instance. Valid values:
+ *This parameter is required.
* * example: @@ -652,6 +741,7 @@ public Builder instanceSource(String instanceSource) { } /** + *The type of the database instance. For more information about the valid values of this parameter, see DbType parameter.
*This parameter is required.
* * example: @@ -664,6 +754,11 @@ public Builder instanceType(String instanceType) { } /** + *The network type. Valid values:
+ *This parameter is required.
* * example: @@ -676,6 +771,7 @@ public Builder networkType(String networkType) { } /** + *The port that is used to connect to the database.
*This parameter is required.
* * example: @@ -688,6 +784,7 @@ public Builder port(Integer port) { } /** + *The timeout period for querying data from the database instance. Unit: seconds.
*This parameter is required.
* * example: @@ -700,7 +797,7 @@ public Builder queryTimeout(Integer queryTimeout) { } /** - * SafeRule. + *The name of the security rule set for the database instance. This parameter is required if Security Collaboration is enabled. You can call theListStandardGroups or GetInstance operation to obtain the name of the security rule set from GroupName.
*/ public Builder safeRule(String safeRule) { this.putQueryParameter("SafeRule", safeRule); @@ -709,7 +806,13 @@ public Builder safeRule(String safeRule) { } /** - * Sid. + *The system ID (SID) of the database instance.
+ *+ *+ * + * example: + *This parameter is required if InstanceType is set to ORACLE.
+ *
testSid
*/ public Builder sid(String sid) { this.putQueryParameter("Sid", sid); @@ -718,7 +821,14 @@ public Builder sid(String sid) { } /** - * SkipTest. + *Specifies whether to skip the connectivity test. Valid values:
+ *false
*/ public Builder skipTest(Boolean skipTest) { this.putQueryParameter("SkipTest", skipTest); @@ -727,7 +837,10 @@ public Builder skipTest(Boolean skipTest) { } /** - * TemplateId. + *The ID of the classification and grading template. You can call the ListClassificationTemplates operation to query the template ID.
+ * + * example: + *31***
*/ public Builder templateId(Long templateId) { this.putQueryParameter("TemplateId", templateId); @@ -736,7 +849,10 @@ public Builder templateId(Long templateId) { } /** - * TemplateType. + *The type of the classification and grading template. You can call the ListClassificationTemplates operation to query the template type.
+ * + * example: + *INNER
*/ public Builder templateType(String templateType) { this.putQueryParameter("TemplateType", templateType); @@ -745,7 +861,13 @@ public Builder templateType(String templateType) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *You can move the pointer over the profile picture in the upper-right corner of the DMS console to obtain the tenant ID.
+ *
23****
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -754,7 +876,17 @@ public Builder tid(Long tid) { } /** - * UseDsql. + *Specifies whether to enable cross-database query for the database instance. Valid values:
+ *+ *+ * + * example: + *Supported databases include MySQL, SQL Server, PostgreSQL, PolarDB for Oracle, and Redis.
+ *
1
*/ public Builder useDsql(Integer useDsql) { this.putQueryParameter("UseDsql", useDsql); @@ -763,7 +895,23 @@ public Builder useDsql(Integer useDsql) { } /** - * UseSsl. + *Specifies whether to allow Data Management Service (DMS) to connect to the database instance by using SSL connections. Before you use SSL connections, make sure that the SSL encryption feature is enabled for the database instance. Valid values:
+ *+ *+ *
This parameter is available only for a MySQL or Redis database instance.
+ *SSL encrypts network connections at the transport layer to improve the security and integrity of data in transmission. However, SSL increases the response time of network connections.
+ *0
*/ public Builder useSsl(Integer useSsl) { this.putQueryParameter("UseSsl", useSsl); @@ -772,7 +920,13 @@ public Builder useSsl(Integer useSsl) { } /** - * VpcId. + *The ID of the instance connected over a VPC.
+ *+ *+ * + * example: + *This parameter is required if InstanceSource is set to VPC_IDC.
+ *
vpc-2zef4o1hu7ljd****
*/ public Builder vpcId(String vpcId) { this.putQueryParameter("VpcId", vpcId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AddInstanceResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AddInstanceResponseBody.java index fed112828ff..fe4d945fbd2 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AddInstanceResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AddInstanceResponseBody.java @@ -93,7 +93,10 @@ private Builder(AddInstanceResponseBody model) { } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -101,7 +104,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -109,7 +115,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The ID of the request. You can use the ID to query logs and troubleshoot issues.
+ * + * example: + *0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -117,7 +126,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AddTableToCategoryRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AddTableToCategoryRequest.java index 34d842c39fd..68e26bb86fb 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AddTableToCategoryRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AddTableToCategoryRequest.java @@ -142,6 +142,7 @@ public Builder regionId(String regionId) { } /** + *The ID of the associated category.
*This parameter is required.
* * example: @@ -154,6 +155,7 @@ public Builder categoryId(Long categoryId) { } /** + *The ID of a physical database: You can call the ListDatabases or SearchDatabase operation to obtain the physical database ID.
*This parameter is required.
* * example: @@ -166,6 +168,7 @@ public Builder dbId(Long dbId) { } /** + *The name of the table. You can call the ListTables operation to query the table name.
*This parameter is required.
* * example: @@ -178,7 +181,10 @@ public Builder tableName(String tableName) { } /** - * TableSchemaName. + *The schema name of the table, which is required only for SQL Server instances.
+ * + * example: + *dbo
*/ public Builder tableSchemaName(String tableSchemaName) { this.putQueryParameter("TableSchemaName", tableSchemaName); @@ -187,7 +193,10 @@ public Builder tableSchemaName(String tableSchemaName) { } /** - * Tid. + *The tenant ID. You can call the GetUserActiveTenant or ListUserTenants operation to obtain the tenant ID.
+ * + * example: + *3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AddTableToCategoryResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AddTableToCategoryResponseBody.java index 1e2b1ab4c89..1ba1ba2e31b 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AddTableToCategoryResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AddTableToCategoryResponseBody.java @@ -93,7 +93,10 @@ private Builder(AddTableToCategoryResponseBody model) { } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -101,7 +104,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -109,7 +115,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID.
+ * + * example: + *C51420E3-144A-4A94-B473-8662FCF4AD10
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -117,7 +126,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AnswerSqlSyntaxByMetaAgentRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AnswerSqlSyntaxByMetaAgentRequest.java index d230f2ab5a4..49037ec8c08 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AnswerSqlSyntaxByMetaAgentRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AnswerSqlSyntaxByMetaAgentRequest.java @@ -111,6 +111,7 @@ public Builder regionId(String regionId) { } /** + *The ID of the database. You can call the ListDatabases operation to obtain the ID.
*This parameter is required.
* * example: @@ -123,7 +124,10 @@ public Builder dbId(String dbId) { } /** - * Model. + *The name of the selected model. You can use only Qwen series models.
+ * + * example: + *qwen-plus
*/ public Builder model(String model) { this.putQueryParameter("Model", model); @@ -132,7 +136,10 @@ public Builder model(String model) { } /** - * Query. + *The syntax question.
+ * + * example: + *怎么获取当前时间的字符串
*/ public Builder query(String query) { this.putQueryParameter("Query", query); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AnswerSqlSyntaxByMetaAgentResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AnswerSqlSyntaxByMetaAgentResponseBody.java index 166c6c32bfb..dea47305393 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AnswerSqlSyntaxByMetaAgentResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/AnswerSqlSyntaxByMetaAgentResponseBody.java @@ -106,7 +106,7 @@ private Builder(AnswerSqlSyntaxByMetaAgentResponseBody model) { } /** - * Data. + *The data returned.
*/ public Builder data(Data data) { this.data = data; @@ -114,7 +114,10 @@ public Builder data(Data data) { } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -122,7 +125,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -141,7 +147,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; @@ -207,7 +220,10 @@ private Builder(Data model) { } /** - * Content. + *The answer to the question.
+ * + * example: + *mysql数据库类型下...
*/ public Builder content(String content) { this.content = content; @@ -215,7 +231,10 @@ public Builder content(String content) { } /** - * SessionId. + *The session ID.
+ * + * example: + *f63a6eed-0e3c-4564-8533-b1295db8d6ff
*/ public Builder sessionId(String sessionId) { this.sessionId = sessionId; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/BatchCreateDataLakePartitionsRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/BatchCreateDataLakePartitionsRequest.java index a9cb4516f94..daec714d28b 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/BatchCreateDataLakePartitionsRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/BatchCreateDataLakePartitionsRequest.java @@ -199,6 +199,7 @@ public Builder regionId(String regionId) { } /** + *The catalog name.
*This parameter is required.
* * example: @@ -211,6 +212,7 @@ public Builder catalogName(String catalogName) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -223,6 +225,7 @@ public Builder dataRegion(String dataRegion) { } /** + *The name of the database that you want to query.
*This parameter is required.
* * example: @@ -235,7 +238,14 @@ public Builder dbName(String dbName) { } /** - * IfNotExists. + *Specifies whether to ignore this exception if the name of the new partition is the same as that of an existing partition. Valid values:
+ *true
*/ public Builder ifNotExists(Boolean ifNotExists) { this.putQueryParameter("IfNotExists", ifNotExists); @@ -244,7 +254,10 @@ public Builder ifNotExists(Boolean ifNotExists) { } /** - * NeedResult. + *Specifies whether to return partition information. If the value is true, Partitions is returned.
+ * + * example: + *true
*/ public Builder needResult(Boolean needResult) { this.putQueryParameter("NeedResult", needResult); @@ -253,6 +266,7 @@ public Builder needResult(Boolean needResult) { } /** + *The information about the new partitions.
*This parameter is required.
*/ public Builder partitionInputs(java.util.ListThe name of the table.
*This parameter is required.
* * example: @@ -275,7 +290,13 @@ public Builder tableName(String tableName) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the tenant ID, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -284,7 +305,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/BatchCreateDataLakePartitionsResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/BatchCreateDataLakePartitionsResponseBody.java index 362c6e6442a..029e53e6eee 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/BatchCreateDataLakePartitionsResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/BatchCreateDataLakePartitionsResponseBody.java @@ -106,7 +106,10 @@ private Builder(BatchCreateDataLakePartitionsResponseBody model) { } /** - * ErrorCode. + *The error code.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -114,7 +117,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -122,7 +128,7 @@ public Builder errorMessage(String errorMessage) { } /** - * Partitions. + *The details about the new partitions. This parameter is returned when the NeedResult parameter is set to true.
*/ public Builder partitions(java.util.ListThe request ID. You can use the ID to query logs and troubleshoot issues.
+ * + * example: + *0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -138,7 +147,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(String success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/BatchDeleteDataLakePartitionsRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/BatchDeleteDataLakePartitionsRequest.java index 70f15d7a451..6e21b10748b 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/BatchDeleteDataLakePartitionsRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/BatchDeleteDataLakePartitionsRequest.java @@ -185,6 +185,7 @@ public Builder regionId(String regionId) { } /** + *The name of the data catalog.
*This parameter is required.
* * example: @@ -197,6 +198,7 @@ public Builder catalogName(String catalogName) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -209,6 +211,7 @@ public Builder dataRegion(String dataRegion) { } /** + *The database name.
*This parameter is required.
* * example: @@ -221,7 +224,10 @@ public Builder dbName(String dbName) { } /** - * IfExists. + *Specifies whether to ignore the exception if the partition that you want to delete does not exist.
+ * + * example: + *true
*/ public Builder ifExists(Boolean ifExists) { this.putQueryParameter("IfExists", ifExists); @@ -230,6 +236,7 @@ public Builder ifExists(Boolean ifExists) { } /** + *The values in a partition key column.
*This parameter is required.
*/ public Builder partitionValuesList(java.util.ListThe table name.
*This parameter is required.
* * example: @@ -251,7 +259,13 @@ public Builder tableName(String tableName) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3****
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -260,7 +274,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/BatchDeleteDataLakePartitionsResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/BatchDeleteDataLakePartitionsResponseBody.java index d66bf14999a..bf7cda87228 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/BatchDeleteDataLakePartitionsResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/BatchDeleteDataLakePartitionsResponseBody.java @@ -106,7 +106,10 @@ private Builder(BatchDeleteDataLakePartitionsResponseBody model) { } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -114,7 +117,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -122,7 +128,7 @@ public Builder errorMessage(String errorMessage) { } /** - * PartitionErrors. + *The error messages.
*/ public Builder partitionErrors(java.util.ListThe request ID. You can use the ID to query logs and troubleshoot issues.
+ * + * example: + *5B96E35F-A58E-5399-9041-09CF9A1E46EA
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -138,7 +147,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(String success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/BatchUpdateDataLakePartitionsRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/BatchUpdateDataLakePartitionsRequest.java index dc4149758be..ea4cb571e2a 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/BatchUpdateDataLakePartitionsRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/BatchUpdateDataLakePartitionsRequest.java @@ -171,6 +171,7 @@ public Builder regionId(String regionId) { } /** + *The name of the data directory.
*This parameter is required.
* * example: @@ -183,6 +184,7 @@ public Builder catalogName(String catalogName) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -195,6 +197,7 @@ public Builder dataRegion(String dataRegion) { } /** + *The name of the database that you want to query.
*This parameter is required.
* * example: @@ -207,6 +210,7 @@ public Builder dbName(String dbName) { } /** + *The information about the created partition.
*This parameter is required.
*/ public Builder partitionInputs(java.util.ListThe name of the table
*This parameter is required.
* * example: @@ -229,7 +234,13 @@ public Builder tableName(String tableName) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -238,7 +249,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/BatchUpdateDataLakePartitionsResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/BatchUpdateDataLakePartitionsResponseBody.java index 405fe0928c4..d6074dfb225 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/BatchUpdateDataLakePartitionsResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/BatchUpdateDataLakePartitionsResponseBody.java @@ -106,7 +106,10 @@ private Builder(BatchUpdateDataLakePartitionsResponseBody model) { } /** - * ErrorCode. + *The error code returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -114,7 +117,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -122,7 +128,7 @@ public Builder errorMessage(String errorMessage) { } /** - * PartitionErrors. + *The error messages.
*/ public Builder partitionErrors(java.util.ListThe request ID. You can use the ID to query logs and troubleshoot issues.
+ * + * example: + *C5B8E84B-42B6-4374-AD5A-6264E1753378
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -138,7 +147,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ChangeColumnSecurityLevelRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ChangeColumnSecurityLevelRequest.java index 9dfba346df5..b90a91586ac 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ChangeColumnSecurityLevelRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ChangeColumnSecurityLevelRequest.java @@ -172,6 +172,7 @@ public Builder regionId(String regionId) { } /** + *The name of the field. You can call the ListSensitiveColumns or ListColumns operation to query the column name.
*This parameter is required.
* * example: @@ -184,6 +185,11 @@ public Builder columnName(String columnName) { } /** + *The database ID. The database can be a physical database or a logical database.
+ *This parameter is required.
* * example: @@ -196,6 +202,11 @@ public Builder dbId(Long dbId) { } /** + *Specifies whether the database is a logical database. Valid values:
+ *This parameter is required.
* * example: @@ -208,6 +219,7 @@ public Builder isLogic(Boolean isLogic) { } /** + *The new security level of the column. The valid values are the same as the sensitivity levels of the classification template that is associated with the instance. You can call the ListSensitivityLevel operation to obtain the sensitivity levels of the classification template.
*This parameter is required.
* * example: @@ -220,6 +232,10 @@ public Builder newSensitivityLevel(String newSensitivityLevel) { } /** + *The database name. You can call the ListSensitiveColumns or SearchDatabase operation to query the database name.
+ *+ **You can call the ListDatabases operation to query the name of a physical database and call the ListLogicDatabases operation to query the name of a logical database.
+ *
This parameter is required.
* * example: @@ -232,6 +248,7 @@ public Builder schemaName(String schemaName) { } /** + *The name of the table. You can call the ListSensitiveColumns or ListTables operation to query the table name.
*This parameter is required.
* * example: @@ -244,7 +261,13 @@ public Builder tableName(String tableName) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the tenant ID, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
10****
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ChangeColumnSecurityLevelResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ChangeColumnSecurityLevelResponseBody.java index ebe5f52c87b..453a9a541fb 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ChangeColumnSecurityLevelResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ChangeColumnSecurityLevelResponseBody.java @@ -93,7 +93,10 @@ private Builder(ChangeColumnSecurityLevelResponseBody model) { } /** - * ErrorCode. + *The error code returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -101,7 +104,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -109,7 +115,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID. You can use the request ID to locate logs and troubleshoot issues.
+ * + * example: + *E103C5F9-DE47-53F2-BF34-D71DF38F****
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -117,7 +126,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ChatWithDesensitizeRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ChatWithDesensitizeRequest.java new file mode 100644 index 00000000000..35038295b92 --- /dev/null +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ChatWithDesensitizeRequest.java @@ -0,0 +1,460 @@ +// This file is auto-generated, don't edit it. Thanks. +package com.aliyun.sdk.service.dms_enterprise20181101.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 ChatWithDesensitizeRequest} extends {@link RequestModel} + * + *ChatWithDesensitizeRequest
+ */ +public class ChatWithDesensitizeRequest extends Request { + @com.aliyun.core.annotation.Host + @com.aliyun.core.annotation.NameInMap("RegionId") + private String regionId; + + @com.aliyun.core.annotation.Query + @com.aliyun.core.annotation.NameInMap("DesensitizationRule") + private String desensitizationRule; + + @com.aliyun.core.annotation.Query + @com.aliyun.core.annotation.NameInMap("EnableThinking") + private Boolean enableThinking; + + @com.aliyun.core.annotation.Query + @com.aliyun.core.annotation.NameInMap("InstanceId") + @com.aliyun.core.annotation.Validation(required = true) + private Long instanceId; + + @com.aliyun.core.annotation.Query + @com.aliyun.core.annotation.NameInMap("MaxTokens") + private Integer maxTokens; + + @com.aliyun.core.annotation.Body + @com.aliyun.core.annotation.NameInMap("Messages") + @com.aliyun.core.annotation.Validation(required = true) + private java.util.ListThis parameter is required.
+ * + * example: + *123***
+ */ + public Builder instanceId(Long instanceId) { + this.putQueryParameter("InstanceId", instanceId); + this.instanceId = instanceId; + return this; + } + + /** + * MaxTokens. + */ + public Builder maxTokens(Integer maxTokens) { + this.putQueryParameter("MaxTokens", maxTokens); + this.maxTokens = maxTokens; + return this; + } + + /** + *This parameter is required.
+ * + * example: + *[ + * { + * "content": "你好", + * "role": "user" + * } + * ]
+ */ + public Builder messages(java.util.ListChatWithDesensitizeResponse
+ */ +public class ChatWithDesensitizeResponse extends Response { + @com.aliyun.core.annotation.NameInMap("headers") + private java.util.MapChatWithDesensitizeResponseBody
+ */ +public class ChatWithDesensitizeResponseBody 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("RequestId") + private String requestId; + + @com.aliyun.core.annotation.NameInMap("Success") + private Boolean success; + + private ChatWithDesensitizeResponseBody(Builder builder) { + this.data = builder.data; + this.errorCode = builder.errorCode; + this.errorMessage = builder.errorMessage; + this.requestId = builder.requestId; + this.success = builder.success; + } + + public static Builder builder() { + return new Builder(); + } + + public static ChatWithDesensitizeResponseBody create() { + return builder().build(); + } + + public Builder toBuilder() { + return new Builder(this); + } + + /** + * @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 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 String requestId; + private Boolean success; + + private Builder() { + } + + private Builder(ChatWithDesensitizeResponseBody model) { + this.data = model.data; + this.errorCode = model.errorCode; + this.errorMessage = model.errorMessage; + this.requestId = model.requestId; + this.success = model.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; + } + + /** + * RequestId. + */ + public Builder requestId(String requestId) { + this.requestId = requestId; + return this; + } + + /** + * Success. + */ + public Builder success(Boolean success) { + this.success = success; + return this; + } + + public ChatWithDesensitizeResponseBody build() { + return new ChatWithDesensitizeResponseBody(this); + } + + } + + /** + * + * {@link ChatWithDesensitizeResponseBody} extends {@link TeaModel} + * + *ChatWithDesensitizeResponseBody
+ */ + public static class Message extends TeaModel { + @com.aliyun.core.annotation.NameInMap("Content") + private String content; + + @com.aliyun.core.annotation.NameInMap("ReasoningContent") + private String reasoningContent; + + @com.aliyun.core.annotation.NameInMap("Role") + private String role; + + private Message(Builder builder) { + this.content = builder.content; + this.reasoningContent = builder.reasoningContent; + this.role = builder.role; + } + + public static Builder builder() { + return new Builder(); + } + + public static Message create() { + return builder().build(); + } + + /** + * @return content + */ + public String getContent() { + return this.content; + } + + /** + * @return reasoningContent + */ + public String getReasoningContent() { + return this.reasoningContent; + } + + /** + * @return role + */ + public String getRole() { + return this.role; + } + + public static final class Builder { + private String content; + private String reasoningContent; + private String role; + + private Builder() { + } + + private Builder(Message model) { + this.content = model.content; + this.reasoningContent = model.reasoningContent; + this.role = model.role; + } + + /** + * Content. + */ + public Builder content(String content) { + this.content = content; + return this; + } + + /** + * ReasoningContent. + */ + public Builder reasoningContent(String reasoningContent) { + this.reasoningContent = reasoningContent; + return this; + } + + /** + * Role. + */ + public Builder role(String role) { + this.role = role; + return this; + } + + public Message build() { + return new Message(this); + } + + } + + } + /** + * + * {@link ChatWithDesensitizeResponseBody} extends {@link TeaModel} + * + *ChatWithDesensitizeResponseBody
+ */ + public static class Choices extends TeaModel { + @com.aliyun.core.annotation.NameInMap("FinishReason") + private String finishReason; + + @com.aliyun.core.annotation.NameInMap("Message") + private Message message; + + private Choices(Builder builder) { + this.finishReason = builder.finishReason; + this.message = builder.message; + } + + public static Builder builder() { + return new Builder(); + } + + public static Choices create() { + return builder().build(); + } + + /** + * @return finishReason + */ + public String getFinishReason() { + return this.finishReason; + } + + /** + * @return message + */ + public Message getMessage() { + return this.message; + } + + public static final class Builder { + private String finishReason; + private Message message; + + private Builder() { + } + + private Builder(Choices model) { + this.finishReason = model.finishReason; + this.message = model.message; + } + + /** + * FinishReason. + */ + public Builder finishReason(String finishReason) { + this.finishReason = finishReason; + return this; + } + + /** + * Message. + */ + public Builder message(Message message) { + this.message = message; + return this; + } + + public Choices build() { + return new Choices(this); + } + + } + + } + /** + * + * {@link ChatWithDesensitizeResponseBody} extends {@link TeaModel} + * + *ChatWithDesensitizeResponseBody
+ */ + public static class Usage extends TeaModel { + @com.aliyun.core.annotation.NameInMap("CompletionTokens") + private String completionTokens; + + @com.aliyun.core.annotation.NameInMap("PromptTokens") + private String promptTokens; + + @com.aliyun.core.annotation.NameInMap("TotalTokens") + private String totalTokens; + + private Usage(Builder builder) { + this.completionTokens = builder.completionTokens; + this.promptTokens = builder.promptTokens; + this.totalTokens = builder.totalTokens; + } + + public static Builder builder() { + return new Builder(); + } + + public static Usage create() { + return builder().build(); + } + + /** + * @return completionTokens + */ + public String getCompletionTokens() { + return this.completionTokens; + } + + /** + * @return promptTokens + */ + public String getPromptTokens() { + return this.promptTokens; + } + + /** + * @return totalTokens + */ + public String getTotalTokens() { + return this.totalTokens; + } + + public static final class Builder { + private String completionTokens; + private String promptTokens; + private String totalTokens; + + private Builder() { + } + + private Builder(Usage model) { + this.completionTokens = model.completionTokens; + this.promptTokens = model.promptTokens; + this.totalTokens = model.totalTokens; + } + + /** + * CompletionTokens. + */ + public Builder completionTokens(String completionTokens) { + this.completionTokens = completionTokens; + return this; + } + + /** + * PromptTokens. + */ + public Builder promptTokens(String promptTokens) { + this.promptTokens = promptTokens; + return this; + } + + /** + * TotalTokens. + */ + public Builder totalTokens(String totalTokens) { + this.totalTokens = totalTokens; + return this; + } + + public Usage build() { + return new Usage(this); + } + + } + + } + /** + * + * {@link ChatWithDesensitizeResponseBody} extends {@link TeaModel} + * + *ChatWithDesensitizeResponseBody
+ */ + public static class Data extends TeaModel { + @com.aliyun.core.annotation.NameInMap("Choices") + private java.util.ListPrincipal Type. Valid values:userorcustom role.
+ *Valid values:
+ *This parameter is required.
* * example: @@ -153,6 +159,7 @@ public Builder identityType(String identityType) { } /** + *The ID of the policy.
*This parameter is required.
* * example: @@ -165,7 +172,13 @@ public Builder policyId(Long policyId) { } /** - * RoleId. + *The ID of the role.
+ *+ *+ * + * example: + *If IdentityType is set to ROLE, this parameter is required.
+ *
31****
*/ public Builder roleId(Long roleId) { this.putQueryParameter("RoleId", roleId); @@ -174,7 +187,13 @@ public Builder roleId(Long roleId) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -183,7 +202,13 @@ public Builder tid(Long tid) { } /** - * UserId. + *The ID of the user. You can call the GetUser operation to query the user ID.
+ *+ *+ * + * example: + *If IdentityType is set to USER, this parameter is required.
+ *
51****
*/ public Builder userId(Long userId) { this.putQueryParameter("UserId", userId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateAbacAuthorizationResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateAbacAuthorizationResponseBody.java index 6517695f2b7..dc00e8b8f4b 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateAbacAuthorizationResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateAbacAuthorizationResponseBody.java @@ -106,7 +106,10 @@ private Builder(CreateAbacAuthorizationResponseBody model) { } /** - * ErrorCode. + *The error code.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -114,7 +117,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -122,7 +128,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID. You can use the request ID to query logs and troubleshoot issues.
+ * + * example: + *0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -130,7 +139,10 @@ public Builder requestId(String requestId) { } /** - * Result. + *Indicates whether the policy is attached.
+ * + * example: + *true
*/ public Builder result(String result) { this.result = result; @@ -138,7 +150,14 @@ public Builder result(String result) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateAbacPolicyRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateAbacPolicyRequest.java index 623f85fa8f7..df7ecc02ffa 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateAbacPolicyRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateAbacPolicyRequest.java @@ -127,6 +127,7 @@ public Builder regionId(String regionId) { } /** + *The content of the policy. Specifies whether the authorized user can access and use the resources and features defined in the policy.
*This parameter is required.
* * example: @@ -155,7 +156,10 @@ public Builder abacPolicyContent(String abacPolicyContent) { } /** - * AbacPolicyDesc. + *The description of the policy.
+ * + * example: + *test
*/ public Builder abacPolicyDesc(String abacPolicyDesc) { this.putQueryParameter("AbacPolicyDesc", abacPolicyDesc); @@ -164,6 +168,7 @@ public Builder abacPolicyDesc(String abacPolicyDesc) { } /** + *The name of the policy. The name must be unique for the tenant.
*This parameter is required.
* * example: @@ -176,7 +181,13 @@ public Builder abacPolicyName(String abacPolicyName) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the DMS console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateAbacPolicyResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateAbacPolicyResponseBody.java index 1fc9b9260ae..a91b2377aca 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateAbacPolicyResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateAbacPolicyResponseBody.java @@ -106,7 +106,10 @@ private Builder(CreateAbacPolicyResponseBody model) { } /** - * CreatePolicyResult. + *The ID of the policy.
+ * + * example: + *12****
*/ public Builder createPolicyResult(Long createPolicyResult) { this.createPolicyResult = createPolicyResult; @@ -114,7 +117,10 @@ public Builder createPolicyResult(Long createPolicyResult) { } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -122,7 +128,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -130,7 +139,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID.
+ * + * example: + *0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -138,7 +150,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateDataLakeDatabaseRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateDataLakeDatabaseRequest.java index 212cddce3c9..f84cb0599eb 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateDataLakeDatabaseRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateDataLakeDatabaseRequest.java @@ -184,6 +184,7 @@ public Builder regionId(String regionId) { } /** + *The name of the data catalog.
*This parameter is required.
* * example: @@ -196,6 +197,7 @@ public Builder catalogName(String catalogName) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -208,6 +210,7 @@ public Builder dataRegion(String dataRegion) { } /** + *The name of the database that you want to query.
*This parameter is required.
* * example: @@ -220,7 +223,10 @@ public Builder dbName(String dbName) { } /** - * Description. + *The description of the database.
+ * + * example: + *test
*/ public Builder description(String description) { this.putQueryParameter("Description", description); @@ -229,6 +235,7 @@ public Builder description(String description) { } /** + *The storage path of the database. OSS, S3, and S3A are supported.
*This parameter is required.
* * example: @@ -241,7 +248,7 @@ public Builder location(String location) { } /** - * Parameters. + *The key-value pairs of the database attributes.
*/ public Builder parameters(java.util.MapThe ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -260,7 +273,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateDataLakeDatabaseResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateDataLakeDatabaseResponseBody.java index 2bc213b0e48..b2348ddddeb 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateDataLakeDatabaseResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateDataLakeDatabaseResponseBody.java @@ -93,7 +93,10 @@ private Builder(CreateDataLakeDatabaseResponseBody model) { } /** - * ErrorCode. + *The error code returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -101,7 +104,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -109,7 +115,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID. You can use the ID to query logs and troubleshoot issues.
+ * + * example: + *D911009F-3E95-5AFD-8CF1-73F7B4F15D6E
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -117,7 +126,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateDataLakeFunctionRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateDataLakeFunctionRequest.java index 7702f774aa8..d547928b897 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateDataLakeFunctionRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateDataLakeFunctionRequest.java @@ -156,6 +156,7 @@ public Builder regionId(String regionId) { } /** + *The name of the data catalog.
*This parameter is required.
* * example: @@ -168,6 +169,7 @@ public Builder catalogName(String catalogName) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -180,6 +182,7 @@ public Builder dataRegion(String dataRegion) { } /** + *The database name.
*This parameter is required.
* * example: @@ -192,6 +195,7 @@ public Builder dbName(String dbName) { } /** + *The details about the function.
*This parameter is required.
*/ public Builder functionInput(DLFunctionInput functionInput) { @@ -202,7 +206,13 @@ public Builder functionInput(DLFunctionInput functionInput) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3****
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -211,7 +221,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateDataLakeFunctionResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateDataLakeFunctionResponseBody.java index 0b46a3a67f7..943d39e62a6 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateDataLakeFunctionResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateDataLakeFunctionResponseBody.java @@ -106,7 +106,10 @@ private Builder(CreateDataLakeFunctionResponseBody model) { } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -114,7 +117,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -122,7 +128,7 @@ public Builder errorMessage(String errorMessage) { } /** - * Function. + *The details about the function.
*/ public Builder function(DLFunction function) { this.function = function; @@ -130,7 +136,10 @@ public Builder function(DLFunction function) { } /** - * RequestId. + *The request ID. You can use the ID to query logs and troubleshoot issues.
+ * + * example: + *EE214ECD-4330-503A-82F0-FFB039757DC8
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -138,7 +147,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateDataLakePartitionRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateDataLakePartitionRequest.java index 2f367b66cbb..09f62df16a8 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateDataLakePartitionRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateDataLakePartitionRequest.java @@ -199,6 +199,7 @@ public Builder regionId(String regionId) { } /** + *The name of the data catalog.
*This parameter is required.
* * example: @@ -211,6 +212,7 @@ public Builder catalogName(String catalogName) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -223,6 +225,7 @@ public Builder dataRegion(String dataRegion) { } /** + *The database name.
*This parameter is required.
* * example: @@ -235,7 +238,10 @@ public Builder dbName(String dbName) { } /** - * IfNotExists. + *Specifies whether to ignore the exception if the name of the created partition is the same as the name of an existing partition.
+ * + * example: + *true
*/ public Builder ifNotExists(Boolean ifNotExists) { this.putQueryParameter("IfNotExists", ifNotExists); @@ -244,7 +250,14 @@ public Builder ifNotExists(Boolean ifNotExists) { } /** - * NeedResult. + *Specifies whether to return information about the created partition. If the value is true, the Partition parameter is returned. Valid values:
+ *true
*/ public Builder needResult(Boolean needResult) { this.putQueryParameter("NeedResult", needResult); @@ -253,6 +266,7 @@ public Builder needResult(Boolean needResult) { } /** + *The information about the created partition.
*This parameter is required.
*/ public Builder partitionInput(DLPartitionInput partitionInput) { @@ -263,6 +277,7 @@ public Builder partitionInput(DLPartitionInput partitionInput) { } /** + *The name of the table
*This parameter is required.
* * example: @@ -275,7 +290,13 @@ public Builder tableName(String tableName) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the tenant ID, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -284,7 +305,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateDataLakePartitionResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateDataLakePartitionResponseBody.java index a8419717035..19f68510b8e 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateDataLakePartitionResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateDataLakePartitionResponseBody.java @@ -106,7 +106,10 @@ private Builder(CreateDataLakePartitionResponseBody model) { } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -114,7 +117,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -122,7 +128,7 @@ public Builder errorMessage(String errorMessage) { } /** - * Partition. + *The information about the partition.
*/ public Builder partition(DLPartition partition) { this.partition = partition; @@ -130,7 +136,10 @@ public Builder partition(DLPartition partition) { } /** - * RequestId. + *The request ID. You can use the request ID to locate logs and troubleshoot issues.
+ * + * example: + *427688B8-ADFB-4C4E-9D45-EF5C1FD6E23D
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -138,7 +147,11 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *The name of the data catalog.
*This parameter is required.
* * example: @@ -168,6 +169,7 @@ public Builder catalogName(String catalogName) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -180,6 +182,7 @@ public Builder dataRegion(String dataRegion) { } /** + *The database name.
*This parameter is required.
* * example: @@ -192,6 +195,7 @@ public Builder dbName(String dbName) { } /** + *The information about the table.
*This parameter is required.
*/ public Builder tableInput(OpenStructDLTableInput tableInput) { @@ -202,7 +206,13 @@ public Builder tableInput(OpenStructDLTableInput tableInput) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *You can move the pointer over the profile picture in the upper-right corner of the DMS console to obtain the tenant ID.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -211,7 +221,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateDataLakeTableResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateDataLakeTableResponseBody.java index a90ed8ec5c0..db6f084a600 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateDataLakeTableResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateDataLakeTableResponseBody.java @@ -106,7 +106,10 @@ private Builder(CreateDataLakeTableResponseBody model) { } /** - * ErrorCode. + *The error code returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -114,7 +117,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -122,7 +128,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The ID of the request. You can use the request ID to locate logs and troubleshoot issues.
+ * + * example: + *7FAD400F-7A5C-4193-8F9A-39D86C4F0231
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -130,7 +139,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; @@ -138,7 +154,7 @@ public Builder success(Boolean success) { } /** - * Table. + *The information about the table.
*/ public Builder table(DLTable table) { this.table = table; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateMetaCategoryRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateMetaCategoryRequest.java index 099c50fd43b..e440daa7607 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateMetaCategoryRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateMetaCategoryRequest.java @@ -112,6 +112,7 @@ public Builder regionId(String regionId) { } /** + *The name of the category.
*This parameter is required.
* * example: @@ -124,7 +125,10 @@ public Builder name(String name) { } /** - * ParentCategoryId. + *The ID of the parent category. The new category is created under this parent category. If this value is left empty, the new category is of the first level.
+ * + * example: + *30000322682
*/ public Builder parentCategoryId(Long parentCategoryId) { this.putQueryParameter("ParentCategoryId", parentCategoryId); @@ -133,7 +137,10 @@ public Builder parentCategoryId(Long parentCategoryId) { } /** - * Tid. + *The ID of the tenant. You can call the GetUserActiveTenant or ListUserTenants operation to obtain the tenant ID.
+ * + * example: + *3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateMetaCategoryResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateMetaCategoryResponseBody.java index 22733346bc2..4ffa6c87869 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateMetaCategoryResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateMetaCategoryResponseBody.java @@ -106,7 +106,7 @@ private Builder(CreateMetaCategoryResponseBody model) { } /** - * Category. + *The information about the category.
*/ public Builder category(MetaCategory category) { this.category = category; @@ -114,7 +114,10 @@ public Builder category(MetaCategory category) { } /** - * ErrorCode. + *The error code returned if the request fails.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -122,7 +125,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message returned if the request fails.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -130,7 +136,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID.
+ * + * example: + *207176D7-A9B3-55CE-A9DA-14E223A31913
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -138,7 +147,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateProcCorrectOrderRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateProcCorrectOrderRequest.java index c88e08bc2c0..73bec416710 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateProcCorrectOrderRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateProcCorrectOrderRequest.java @@ -141,7 +141,11 @@ public Builder regionId(String regionId) { } /** - * AttachmentKey. + *The key of the attachment for the ticket. The attachment provides more instructions for this operation.
+ *You can call the GetUserUploadFileJob operation to query the key of the attachment.
+ * + * example: + *order_attachment.txt
*/ public Builder attachmentKey(String attachmentKey) { this.putQueryParameter("AttachmentKey", attachmentKey); @@ -150,6 +154,7 @@ public Builder attachmentKey(String attachmentKey) { } /** + *The remarks of the ticket.
*This parameter is required.
* * example: @@ -162,6 +167,7 @@ public Builder comment(String comment) { } /** + *The parameters of the ticket.
*This parameter is required.
*/ public Builder param(Param param) { @@ -172,7 +178,7 @@ public Builder param(Param param) { } /** - * RelatedUserList. + *The operators that are related to the ticket.
*/ public Builder relatedUserList(java.util.ListThe ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
4***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -252,6 +264,11 @@ private Builder(DbItemList model) { } /** + *The database ID. Databases are divided into physical databases and logical databases.
+ *This parameter is required.
* * example: @@ -263,6 +280,11 @@ public Builder dbId(Long dbId) { } /** + *Specifies whether the database is a logical database. Valid values:
+ *This parameter is required.
* * example: @@ -400,7 +422,10 @@ private Builder(Param model) { } /** - * Classify. + *The reason for the programmable object change.
+ * + * example: + *test
*/ public Builder classify(String classify) { this.classify = classify; @@ -408,6 +433,7 @@ public Builder classify(String classify) { } /** + *The information about the database.
*This parameter is required.
*/ public Builder dbItemList(java.util.ListThe mode in which the data change ticket is executed after the ticket is approved. Valid values:
+ *COMMITOR
*/ public Builder execMode(String execMode) { this.execMode = execMode; @@ -424,6 +458,7 @@ public Builder execMode(String execMode) { } /** + *The SQL statements for data change.
*This parameter is required.
* * example: @@ -439,7 +474,13 @@ public Builder execSQL(String execSQL) { } /** - * RollbackAttachmentName. + *The key of the attachment that contains the SQL statements used to roll back the data change. You can call the GetUserUploadFileJob operation to obtain the attachment key from the value of AttachmentKey.
+ *+ *+ * + * example: + *This parameter is required if you set RollbackSqlType to ATTACHMENT.
+ *
test_rollback.sql
*/ public Builder rollbackAttachmentName(String rollbackAttachmentName) { this.rollbackAttachmentName = rollbackAttachmentName; @@ -447,7 +488,13 @@ public Builder rollbackAttachmentName(String rollbackAttachmentName) { } /** - * RollbackSQL. + *The SQL statements for rolling back the data change.
+ *+ *+ * + * example: + *This parameter is required if you set the RollbackSqlType parameter to TEXT.
+ *
empty
*/ public Builder rollbackSQL(String rollbackSQL) { this.rollbackSQL = rollbackSQL; @@ -455,7 +502,14 @@ public Builder rollbackSQL(String rollbackSQL) { } /** - * RollbackSqlType. + *The format of the SQL statements used to roll back the data change. Valid values:
+ *TEXT
*/ public Builder rollbackSqlType(String rollbackSqlType) { this.rollbackSqlType = rollbackSqlType; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateProcCorrectOrderResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateProcCorrectOrderResponseBody.java index 128a711bf3e..db9a25fed48 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateProcCorrectOrderResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateProcCorrectOrderResponseBody.java @@ -106,7 +106,7 @@ private Builder(CreateProcCorrectOrderResponseBody model) { } /** - * CreateOrderResult. + *The ticket IDs.
*/ public Builder createOrderResult(java.util.ListThe error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -122,7 +125,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -130,7 +136,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID.
+ * + * example: + *427688B8-ADFB-4C4E-9D45-EF5C1FD6E23D
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -138,7 +147,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateWorkspaceRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateWorkspaceRequest.java index 834bf73dda9..dc19a8af03d 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateWorkspaceRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateWorkspaceRequest.java @@ -119,7 +119,10 @@ private Builder(CreateWorkspaceRequest request) { } /** - * ClientToken. + *The client token that is used to ensure the idempotence of the request.
+ * + * example: + *token-xxx
*/ public Builder clientToken(String clientToken) { this.putBodyParameter("ClientToken", clientToken); @@ -128,6 +131,7 @@ public Builder clientToken(String clientToken) { } /** + *The description of the workspace.
*This parameter is required.
* * example: @@ -140,6 +144,7 @@ public Builder description(String description) { } /** + *The region to which the workspace belongs.
*This parameter is required.
* * example: @@ -152,6 +157,7 @@ public Builder regionId(String regionId) { } /** + *The VPC ID.
*This parameter is required.
* * example: @@ -164,6 +170,7 @@ public Builder vpcId(String vpcId) { } /** + *The name of the workspace.
*This parameter is required.
* * example: diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateWorkspaceResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateWorkspaceResponseBody.java index 9f3df56fa74..bb71833289f 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateWorkspaceResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/CreateWorkspaceResponseBody.java @@ -80,7 +80,10 @@ private Builder(CreateWorkspaceResponseBody model) { } /** - * RequestId. + *The request ID. You can use the request ID to locate logs and troubleshoot issues.
+ * + * example: + *4AC23904-55DE-550B-9676-E8946F07****
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -88,7 +91,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; @@ -96,7 +106,10 @@ public Builder success(Boolean success) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.workspaceId = workspaceId; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteAbacAuthorizationRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteAbacAuthorizationRequest.java index 52a4a5dbe2e..2eec4341054 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteAbacAuthorizationRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteAbacAuthorizationRequest.java @@ -113,6 +113,7 @@ public Builder regionId(String regionId) { } /** + *The authorization ID.
*This parameter is required.
* * example: @@ -125,6 +126,12 @@ public Builder authorizationId(Long authorizationId) { } /** + *The type of object to which you want to attach the policy.********
+ *Valid values:
+ *This parameter is required.
* * example: @@ -137,7 +144,13 @@ public Builder identityType(String identityType) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteAbacAuthorizationResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteAbacAuthorizationResponseBody.java index c60dfa63ecf..edde7fd6e9c 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteAbacAuthorizationResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteAbacAuthorizationResponseBody.java @@ -106,7 +106,10 @@ private Builder(DeleteAbacAuthorizationResponseBody model) { } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -114,7 +117,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -122,7 +128,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID. You can use the ID to query logs and troubleshoot issues.
+ * + * example: + *207176D7-A9B3-55CE-A9DA-14E223A31913
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -130,7 +139,10 @@ public Builder requestId(String requestId) { } /** - * Result. + *Indicates whether the policy is detached from the user.
+ * + * example: + *true
*/ public Builder result(String result) { this.result = result; @@ -138,7 +150,14 @@ public Builder result(String result) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteAbacPolicyRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteAbacPolicyRequest.java index 3852962e9a1..ddbb868f574 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteAbacPolicyRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteAbacPolicyRequest.java @@ -98,6 +98,7 @@ public Builder regionId(String regionId) { } /** + *The ID of the policy.
*This parameter is required.
* * example: @@ -110,7 +111,13 @@ public Builder abacPolicyId(Long abacPolicyId) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the tenant ID, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteAbacPolicyResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteAbacPolicyResponseBody.java index 8ac3b2cd695..d54c58bd2c2 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteAbacPolicyResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteAbacPolicyResponseBody.java @@ -106,7 +106,10 @@ private Builder(DeleteAbacPolicyResponseBody model) { } /** - * DeletePolicyResult. + *Indicates whether the policy is deleted.
+ * + * example: + *true
*/ public Builder deletePolicyResult(Boolean deletePolicyResult) { this.deletePolicyResult = deletePolicyResult; @@ -114,7 +117,10 @@ public Builder deletePolicyResult(Boolean deletePolicyResult) { } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -122,7 +128,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -130,7 +139,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID. You can use the ID to query logs and troubleshoot issues.
+ * + * example: + *0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -138,7 +150,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteAuthorityTemplateRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteAuthorityTemplateRequest.java index 00f7c922a45..72f6cb65887 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteAuthorityTemplateRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteAuthorityTemplateRequest.java @@ -97,6 +97,7 @@ public Builder regionId(String regionId) { } /** + *The ID of the permission template.
*This parameter is required.
* * example: @@ -109,7 +110,10 @@ public Builder templateId(Long templateId) { } /** - * Tid. + *The tenant ID. You can call the GetUserActiveTenant or ListUserTenants operation to obtain the tenant ID.
+ * + * example: + *3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteAuthorityTemplateResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteAuthorityTemplateResponseBody.java index 3091030e871..0e0b05ca225 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteAuthorityTemplateResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteAuthorityTemplateResponseBody.java @@ -106,7 +106,10 @@ private Builder(DeleteAuthorityTemplateResponseBody model) { } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -114,7 +117,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -122,7 +128,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID. You can use the request ID to locate logs and troubleshoot issues.
+ * + * example: + *0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -130,7 +139,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; @@ -138,7 +154,10 @@ public Builder success(Boolean success) { } /** - * Tid. + *The ID of the tenant.
+ * + * example: + *3***
*/ public Builder tid(Long tid) { this.tid = tid; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakeDatabaseRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakeDatabaseRequest.java index c124e4dc252..3f1ada76d4d 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakeDatabaseRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakeDatabaseRequest.java @@ -141,6 +141,7 @@ public Builder regionId(String regionId) { } /** + *The name of the data directory.
*This parameter is required.
* * example: @@ -153,6 +154,7 @@ public Builder catalogName(String catalogName) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -165,6 +167,7 @@ public Builder dataRegion(String dataRegion) { } /** + *The name of the database that you want to query.
*This parameter is required.
* * example: @@ -177,7 +180,13 @@ public Builder dbName(String dbName) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -186,7 +195,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakeDatabaseResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakeDatabaseResponseBody.java index a900a7cb13a..b8784a0c9c5 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakeDatabaseResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakeDatabaseResponseBody.java @@ -93,7 +93,10 @@ private Builder(DeleteDataLakeDatabaseResponseBody model) { } /** - * ErrorCode. + *The error code returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -101,7 +104,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -109,7 +115,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID. You can use the request ID to locate logs and troubleshoot issues.
+ * + * example: + *C51420E3-144A-4A94-B473-8662FCF4AD10
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -117,7 +126,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakeFunctionRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakeFunctionRequest.java index b1e06666ca3..09ff82e6e7e 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakeFunctionRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakeFunctionRequest.java @@ -156,6 +156,7 @@ public Builder regionId(String regionId) { } /** + *The name of the data directory.
*This parameter is required.
* * example: @@ -168,6 +169,7 @@ public Builder catalogName(String catalogName) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -180,6 +182,7 @@ public Builder dataRegion(String dataRegion) { } /** + *The database name.
*This parameter is required.
* * example: @@ -192,6 +195,7 @@ public Builder dbName(String dbName) { } /** + *The function name.
*This parameter is required.
* * example: @@ -204,7 +208,13 @@ public Builder functionName(String functionName) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the tenant ID, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -213,7 +223,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakeFunctionResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakeFunctionResponseBody.java index 735459b369c..0d530b85890 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakeFunctionResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakeFunctionResponseBody.java @@ -93,7 +93,10 @@ private Builder(DeleteDataLakeFunctionResponseBody model) { } /** - * ErrorCode. + *The error code.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -101,7 +104,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -109,7 +115,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID. You can use the ID to locate logs and troubleshoot issues.
+ * + * example: + *B4B07137-F6AE-4756-8474-7F92BB6C4E04
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -117,7 +126,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the operation was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakePartitionRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakePartitionRequest.java index c619517c1c6..d6ee136f3aa 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakePartitionRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakePartitionRequest.java @@ -185,6 +185,7 @@ public Builder regionId(String regionId) { } /** + *The name of the data catalog.
*This parameter is required.
* * example: @@ -197,6 +198,7 @@ public Builder catalogName(String catalogName) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -209,6 +211,7 @@ public Builder dataRegion(String dataRegion) { } /** + *The name of the database that you want to query.
*This parameter is required.
* * example: @@ -221,7 +224,10 @@ public Builder dbName(String dbName) { } /** - * IfExists. + *Specifies whether to ignore the exception if the partition that you want to delete does not exist.
+ * + * example: + *true
*/ public Builder ifExists(Boolean ifExists) { this.putQueryParameter("IfExists", ifExists); @@ -230,6 +236,7 @@ public Builder ifExists(Boolean ifExists) { } /** + *The values in a partition key column.
*This parameter is required.
*/ public Builder partitionValues(java.util.ListThe table name.
*This parameter is required.
* * example: @@ -252,7 +260,13 @@ public Builder tableName(String tableName) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the DMS console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -261,7 +275,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakePartitionResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakePartitionResponseBody.java index 1f363a79071..8daf0523ebf 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakePartitionResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakePartitionResponseBody.java @@ -93,7 +93,10 @@ private Builder(DeleteDataLakePartitionResponseBody model) { } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -101,7 +104,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -109,7 +115,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID. You can use the ID to query logs and troubleshoot issues.
+ * + * example: + *0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -117,7 +126,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakeTableRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakeTableRequest.java index 483b7627989..bfb390d9152 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakeTableRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakeTableRequest.java @@ -156,6 +156,7 @@ public Builder regionId(String regionId) { } /** + *The name of the data catalog.
*This parameter is required.
* * example: @@ -168,6 +169,7 @@ public Builder catalogName(String catalogName) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -180,6 +182,7 @@ public Builder dataRegion(String dataRegion) { } /** + *The database name.
*This parameter is required.
* * example: @@ -192,6 +195,7 @@ public Builder dbName(String dbName) { } /** + *The name of the table.
*This parameter is required.
* * example: @@ -204,7 +208,13 @@ public Builder tableName(String tableName) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the DMS console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -213,7 +223,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakeTableResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakeTableResponseBody.java index 033dacffd95..a57c19c92a7 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakeTableResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteDataLakeTableResponseBody.java @@ -93,7 +93,10 @@ private Builder(DeleteDataLakeTableResponseBody model) { } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -101,7 +104,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -109,7 +115,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID. You can use the request ID to locate logs and troubleshoot issues.
+ * + * example: + *8E88933E-E3D4-5BA8-8CBF-0A1CAE666690
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -117,7 +126,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteMetaCategoryRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteMetaCategoryRequest.java index b17478c2fde..80b5ebacdc0 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteMetaCategoryRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteMetaCategoryRequest.java @@ -98,6 +98,7 @@ public Builder regionId(String regionId) { } /** + *The category ID.
*This parameter is required.
* * example: @@ -110,7 +111,13 @@ public Builder categoryId(Long categoryId) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the DMS console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteMetaCategoryResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteMetaCategoryResponseBody.java index b79665844d2..99a80003e7e 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteMetaCategoryResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteMetaCategoryResponseBody.java @@ -93,7 +93,10 @@ private Builder(DeleteMetaCategoryResponseBody model) { } /** - * ErrorCode. + *The error code returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -101,7 +104,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -109,7 +115,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID.
+ * + * example: + *7FAD400F-7A5C-4193-8F9A-39D86C4F0231
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -117,7 +126,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteStandardGroupRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteStandardGroupRequest.java index a0cdc82b14f..77dbfa98321 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteStandardGroupRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteStandardGroupRequest.java @@ -98,6 +98,7 @@ public Builder regionId(String regionId) { } /** + *The security rule set ID. You can call the ListStandardGroups operation to obtain the ID of the security rule set.
*This parameter is required.
* * example: @@ -110,7 +111,13 @@ public Builder groupId(Long groupId) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
23****
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteStandardGroupResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteStandardGroupResponseBody.java index fa45562c286..6afa511e6d4 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteStandardGroupResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteStandardGroupResponseBody.java @@ -93,7 +93,10 @@ private Builder(DeleteStandardGroupResponseBody model) { } /** - * ErrorCode. + *The error code returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -101,7 +104,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -109,7 +115,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The ID of the request. You can use the request ID to locate logs and troubleshoot issues.
+ * + * example: + *C5B8E84B-42B6-4374-AD5A-6264E1753378
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -117,7 +126,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteWorkspaceRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteWorkspaceRequest.java index 44a7b775c67..87c6324f07d 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteWorkspaceRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteWorkspaceRequest.java @@ -83,6 +83,7 @@ public Builder regionId(String regionId) { } /** + *The ID of the DMS workspace.
*This parameter is required.
* * example: diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteWorkspaceResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteWorkspaceResponseBody.java index 4f848110417..a16f0a54235 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteWorkspaceResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DeleteWorkspaceResponseBody.java @@ -80,7 +80,10 @@ private Builder(DeleteWorkspaceResponseBody model) { } /** - * Data. + *Indicates whether the workspace is deleted successfully.
+ * + * example: + *true
*/ public Builder data(String data) { this.data = data; @@ -99,7 +102,10 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the operation is called successfully.
+ * + * example: + *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DescribeDifyAttributeResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DescribeDifyAttributeResponseBody.java index bcae98000e0..f7cdcb5ad93 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DescribeDifyAttributeResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/DescribeDifyAttributeResponseBody.java @@ -203,6 +203,15 @@ public static class Root extends TeaModel { @com.aliyun.core.annotation.NameInMap("AppUuid") private String appUuid; + @com.aliyun.core.annotation.NameInMap("BillingInstanceId") + private String billingInstanceId; + + @com.aliyun.core.annotation.NameInMap("ChargeType") + private String chargeType; + + @com.aliyun.core.annotation.NameInMap("ExpireTime") + private Long expireTime; + @com.aliyun.core.annotation.NameInMap("Replicas") private String replicas; @@ -215,6 +224,9 @@ public static class Root extends TeaModel { @com.aliyun.core.annotation.NameInMap("Status") private String status; + @com.aliyun.core.annotation.NameInMap("StorageType") + private String storageType; + @com.aliyun.core.annotation.NameInMap("VSwitchId") private String vSwitchId; @@ -229,10 +241,14 @@ public static class Root extends TeaModel { private Root(Builder builder) { this.appUuid = builder.appUuid; + this.billingInstanceId = builder.billingInstanceId; + this.chargeType = builder.chargeType; + this.expireTime = builder.expireTime; this.replicas = builder.replicas; this.resourceQuota = builder.resourceQuota; this.securityGroupId = builder.securityGroupId; this.status = builder.status; + this.storageType = builder.storageType; this.vSwitchId = builder.vSwitchId; this.vpcId = builder.vpcId; this.workspaceId = builder.workspaceId; @@ -254,6 +270,27 @@ public String getAppUuid() { return this.appUuid; } + /** + * @return billingInstanceId + */ + public String getBillingInstanceId() { + return this.billingInstanceId; + } + + /** + * @return chargeType + */ + public String getChargeType() { + return this.chargeType; + } + + /** + * @return expireTime + */ + public Long getExpireTime() { + return this.expireTime; + } + /** * @return replicas */ @@ -282,6 +319,13 @@ public String getStatus() { return this.status; } + /** + * @return storageType + */ + public String getStorageType() { + return this.storageType; + } + /** * @return vSwitchId */ @@ -312,10 +356,14 @@ public String getZoneId() { public static final class Builder { private String appUuid; + private String billingInstanceId; + private String chargeType; + private Long expireTime; private String replicas; private String resourceQuota; private String securityGroupId; private String status; + private String storageType; private String vSwitchId; private String vpcId; private String workspaceId; @@ -326,10 +374,14 @@ private Builder() { private Builder(Root model) { this.appUuid = model.appUuid; + this.billingInstanceId = model.billingInstanceId; + this.chargeType = model.chargeType; + this.expireTime = model.expireTime; this.replicas = model.replicas; this.resourceQuota = model.resourceQuota; this.securityGroupId = model.securityGroupId; this.status = model.status; + this.storageType = model.storageType; this.vSwitchId = model.vSwitchId; this.vpcId = model.vpcId; this.workspaceId = model.workspaceId; @@ -344,6 +396,30 @@ public Builder appUuid(String appUuid) { return this; } + /** + * BillingInstanceId. + */ + public Builder billingInstanceId(String billingInstanceId) { + this.billingInstanceId = billingInstanceId; + return this; + } + + /** + * ChargeType. + */ + public Builder chargeType(String chargeType) { + this.chargeType = chargeType; + return this; + } + + /** + * ExpireTime. + */ + public Builder expireTime(Long expireTime) { + this.expireTime = expireTime; + return this; + } + /** * Replicas. */ @@ -376,6 +452,14 @@ public Builder status(String status) { return this; } + /** + * StorageType. + */ + public Builder storageType(String storageType) { + this.storageType = storageType; + return this; + } + /** * VSwitchId. */ diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/EditMetaKnowledgeAssetRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/EditMetaKnowledgeAssetRequest.java index 0ea16060227..5af73dfb5b4 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/EditMetaKnowledgeAssetRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/EditMetaKnowledgeAssetRequest.java @@ -141,6 +141,7 @@ public Builder regionId(String regionId) { } /** + *Business knowledge content edited by users.
*This parameter is required.
* * example: @@ -153,7 +154,10 @@ public Builder assetDescription(String assetDescription) { } /** - * ColumnName. + *The name of the field. This parameter is used when the edited content is a field.
+ * + * example: + *test_column
*/ public Builder columnName(String columnName) { this.putQueryParameter("ColumnName", columnName); @@ -162,6 +166,7 @@ public Builder columnName(String columnName) { } /** + *The ID of the physical database. You can call the SearchDatabase operation to obtain the ID.
*This parameter is required.
* * example: @@ -174,6 +179,7 @@ public Builder dbId(Integer dbId) { } /** + *The name of the table.
*This parameter is required.
* * example: @@ -186,7 +192,10 @@ public Builder tableName(String tableName) { } /** - * TableSchemaName. + *The schema name of the table, which is required only for SQL Server instances.
+ * + * example: + *dbo
*/ public Builder tableSchemaName(String tableSchemaName) { this.putQueryParameter("TableSchemaName", tableSchemaName); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/EditMetaKnowledgeAssetResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/EditMetaKnowledgeAssetResponseBody.java index 1906c07f5dc..37b98da5941 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/EditMetaKnowledgeAssetResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/EditMetaKnowledgeAssetResponseBody.java @@ -93,7 +93,10 @@ private Builder(EditMetaKnowledgeAssetResponseBody model) { } /** - * ErrorCode. + *The error code returned if the request fails.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -101,7 +104,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message returned if the request fails.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -109,7 +115,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *Request ID.
+ * + * example: + *C51420E3-144A-4A94-B473-8662FCF4AD10
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -117,7 +126,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/FixSqlByMetaAgentRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/FixSqlByMetaAgentRequest.java index aa89e4c72dd..bf135896146 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/FixSqlByMetaAgentRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/FixSqlByMetaAgentRequest.java @@ -140,6 +140,7 @@ public Builder regionId(String regionId) { } /** + *The ID of the database. You can call the ListDatabases operation to obtain the ID.
*This parameter is required.
* * example: @@ -152,7 +153,10 @@ public Builder dbId(String dbId) { } /** - * Error. + *The error message.
+ * + * example: + *unknown column col
*/ public Builder error(String error) { this.putQueryParameter("Error", error); @@ -161,7 +165,10 @@ public Builder error(String error) { } /** - * Model. + *The name of the selected model. You can use only Qwen series models.
+ * + * example: + *qwen-plus
*/ public Builder model(String model) { this.putQueryParameter("Model", model); @@ -170,7 +177,10 @@ public Builder model(String model) { } /** - * Query. + *The remarks.
+ * + * example: + *正确字段是啥?
*/ public Builder query(String query) { this.putQueryParameter("Query", query); @@ -179,6 +189,7 @@ public Builder query(String query) { } /** + *The SQL statement that reports the error.
*This parameter is required.
* * example: diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/FixSqlByMetaAgentResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/FixSqlByMetaAgentResponseBody.java index 2130430dbb5..c864dacad9a 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/FixSqlByMetaAgentResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/FixSqlByMetaAgentResponseBody.java @@ -106,7 +106,7 @@ private Builder(FixSqlByMetaAgentResponseBody model) { } /** - * Data. + *The data returned.
*/ public Builder data(Data data) { this.data = data; @@ -114,7 +114,10 @@ public Builder data(Data data) { } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -122,7 +125,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -141,7 +147,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; @@ -207,7 +220,10 @@ private Builder(Data model) { } /** - * Content. + *The answer.
+ * + * example: + *SQL修复结果...
*/ public Builder content(String content) { this.content = content; @@ -215,7 +231,10 @@ public Builder content(String content) { } /** - * SessionId. + *The session ID.
+ * + * example: + *f63a6eed-0e3c-4564-8533-b1295db8d6ff
*/ public Builder sessionId(String sessionId) { this.sessionId = sessionId; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetAbacPolicyRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetAbacPolicyRequest.java index e3accbe7cb7..8447c5f55d5 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetAbacPolicyRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetAbacPolicyRequest.java @@ -111,7 +111,10 @@ public Builder regionId(String regionId) { } /** - * AbacPolicyId. + *The ID of the policy.
+ * + * example: + *12****
*/ public Builder abacPolicyId(Long abacPolicyId) { this.putQueryParameter("AbacPolicyId", abacPolicyId); @@ -120,7 +123,10 @@ public Builder abacPolicyId(Long abacPolicyId) { } /** - * AbacPolicyName. + *The name of the policy.
+ * + * example: + *policy_test
*/ public Builder abacPolicyName(String abacPolicyName) { this.putQueryParameter("AbacPolicyName", abacPolicyName); @@ -129,7 +135,13 @@ public Builder abacPolicyName(String abacPolicyName) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetAbacPolicyResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetAbacPolicyResponseBody.java index e20b65e48a9..174ce6d47c2 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetAbacPolicyResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetAbacPolicyResponseBody.java @@ -106,7 +106,10 @@ private Builder(GetAbacPolicyResponseBody model) { } /** - * ErrorCode. + *The error code returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -114,7 +117,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -122,7 +128,7 @@ public Builder errorMessage(String errorMessage) { } /** - * Policy. + *The details of the policy.
*/ public Builder policy(Policy policy) { this.policy = policy; @@ -130,7 +136,10 @@ public Builder policy(Policy policy) { } /** - * RequestId. + *The request ID. You can use the ID to query logs and troubleshoot issues.
+ * + * example: + *2B7844DE-A0C3-50ED-A796-8F07D377144C
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -138,7 +147,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; @@ -269,7 +285,10 @@ private Builder(Policy model) { } /** - * AuthorizedQuantity. + *The number of users or custom roles to which the policy is attached.
+ * + * example: + *3
*/ public Builder authorizedQuantity(String authorizedQuantity) { this.authorizedQuantity = authorizedQuantity; @@ -277,7 +296,10 @@ public Builder authorizedQuantity(String authorizedQuantity) { } /** - * CreatorId. + *The ID of the user who create the policy.
+ * + * example: + *51****
*/ public Builder creatorId(Long creatorId) { this.creatorId = creatorId; @@ -285,7 +307,26 @@ public Builder creatorId(Long creatorId) { } /** - * PolicyContent. + *The content of the policy.
+ * + * example: + *{ + * "Statement": [ + * { + * "Action": "", + * "Effect": "Allow", + * "Resource": "", + * "Condition": { + * "StringEqualsIgnoreCase": { + * "dms:DbType": [ + * "redis" + * ] + * } + * } + * } + * ], + * "Version": "1" + * }
*/ public Builder policyContent(String policyContent) { this.policyContent = policyContent; @@ -293,7 +334,10 @@ public Builder policyContent(String policyContent) { } /** - * PolicyDesc. + *The description of the policy.
+ * + * example: + *test
*/ public Builder policyDesc(String policyDesc) { this.policyDesc = policyDesc; @@ -301,7 +345,10 @@ public Builder policyDesc(String policyDesc) { } /** - * PolicyId. + *The ID of the policy.
+ * + * example: + *12****
*/ public Builder policyId(Long policyId) { this.policyId = policyId; @@ -309,7 +356,10 @@ public Builder policyId(Long policyId) { } /** - * PolicyName. + *The name of the policy.
+ * + * example: + *policy_test
*/ public Builder policyName(String policyName) { this.policyName = policyName; @@ -317,7 +367,7 @@ public Builder policyName(String policyName) { } /** - * PolicySource. + *The source of the policy. Valid values:
*/ public Builder policySource(String policySource) { this.policySource = policySource; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetClassificationTemplateRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetClassificationTemplateRequest.java index 77c52788f65..fe04b41c060 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetClassificationTemplateRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetClassificationTemplateRequest.java @@ -97,6 +97,7 @@ public Builder regionId(String regionId) { } /** + *The ID of the instance. You can call the ListInstances or GetInstance operation to query the instance ID.
*This parameter is required.
* * example: @@ -109,7 +110,13 @@ public Builder instanceId(Long instanceId) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
23***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetClassificationTemplateResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetClassificationTemplateResponseBody.java index 887d9204e00..e6fb5d45233 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetClassificationTemplateResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetClassificationTemplateResponseBody.java @@ -106,7 +106,7 @@ private Builder(GetClassificationTemplateResponseBody model) { } /** - * ClassificationResourceTemplateMap. + *The information about the classification template that is associated to the instance.
*/ public Builder classificationResourceTemplateMap(ClassificationResourceTemplateMap classificationResourceTemplateMap) { this.classificationResourceTemplateMap = classificationResourceTemplateMap; @@ -114,7 +114,10 @@ public Builder classificationResourceTemplateMap(ClassificationResourceTemplateM } /** - * ErrorCode. + *The error code returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -122,7 +125,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -130,7 +136,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID. You can use the ID to query logs and troubleshoot issues.
+ * + * example: + *427688B8-ADFB-4C4E-9D45-EF5C1FD6E23D
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -138,7 +147,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; @@ -230,7 +246,10 @@ private Builder(ClassificationResourceTemplateMap model) { } /** - * ResourceId. + *The ID of the resource. The supported resource type is INSTANCE. The resource ID corresponds to the value of InstanceId. You can call the ListInstances operation to obtain the value of InstanceId.
+ * + * example: + *24****
*/ public Builder resourceId(Long resourceId) { this.resourceId = resourceId; @@ -238,7 +257,10 @@ public Builder resourceId(Long resourceId) { } /** - * ResourceType. + *The resource type. The value is fixed as INSTANCE.
+ * + * example: + *INSTANCE
*/ public Builder resourceType(String resourceType) { this.resourceType = resourceType; @@ -246,7 +268,10 @@ public Builder resourceType(String resourceType) { } /** - * TemplateId. + *The ID of the classification and grading template.
+ * + * example: + *3***
*/ public Builder templateId(Long templateId) { this.templateId = templateId; @@ -254,7 +279,14 @@ public Builder templateId(Long templateId) { } /** - * TemplateType. + *The type of the classification and grading template. Valid values:
+ *INNER
*/ public Builder templateType(String templateType) { this.templateType = templateType; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeCatalogRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeCatalogRequest.java index 6e5dbf36a03..aa32ec3536a 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeCatalogRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeCatalogRequest.java @@ -127,6 +127,7 @@ public Builder regionId(String regionId) { } /** + *The name of the data catalog.
*This parameter is required.
* * example: @@ -139,6 +140,7 @@ public Builder catalogName(String catalogName) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -151,7 +153,10 @@ public Builder dataRegion(String dataRegion) { } /** - * Tid. + *The tenant ID. You can call the GetUserActiveTenant or ListUserTenants operation to obtain the tenant ID.
+ * + * example: + *3
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -160,7 +165,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeCatalogResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeCatalogResponseBody.java index 2e6e8a8aded..ed8ec03e9e1 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeCatalogResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeCatalogResponseBody.java @@ -106,7 +106,7 @@ private Builder(GetDataLakeCatalogResponseBody model) { } /** - * Catalog. + *The information about the catalog.
*/ public Builder catalog(DLCatalog catalog) { this.catalog = catalog; @@ -114,7 +114,10 @@ public Builder catalog(DLCatalog catalog) { } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *400
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -122,7 +125,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *code: 404, can not find catalog, name : hiv request id: 6090E571-E5B1-1E6D-BF44-F9E10E8B7EB1
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -130,7 +136,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID. You can use the request ID to locate logs and troubleshoot issues.
+ * + * example: + *FE8EE2F1-4880-46BC-A704-5CF63EAF9A04
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -138,7 +147,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeDatabaseRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeDatabaseRequest.java index 8b6712d939d..9af5b2b9b86 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeDatabaseRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeDatabaseRequest.java @@ -142,6 +142,7 @@ public Builder regionId(String regionId) { } /** + *The name of the data catalog.
*This parameter is required.
* * example: @@ -154,6 +155,7 @@ public Builder catalogName(String catalogName) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -166,6 +168,7 @@ public Builder dataRegion(String dataRegion) { } /** + *The database name.
*This parameter is required.
* * example: @@ -178,7 +181,13 @@ public Builder name(String name) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the tenant ID, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -187,7 +196,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeDatabaseResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeDatabaseResponseBody.java index fe32fca897c..679f8ef714e 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeDatabaseResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeDatabaseResponseBody.java @@ -106,7 +106,7 @@ private Builder(GetDataLakeDatabaseResponseBody model) { } /** - * Database. + *The database information.
*/ public Builder database(DLDatabase database) { this.database = database; @@ -114,7 +114,10 @@ public Builder database(DLDatabase database) { } /** - * ErrorCode. + *The error code returned if the request failed.
+ * + * example: + *404
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -122,7 +125,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *code: 404, can not find catalog, name : hive1 request id: FF737753-9641-1F51-AFDA-7DF541114B29
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -130,7 +136,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID.
+ * + * example: + *E5EE2B9E-2F95-57FA-B284-CB441CEE49D6
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -138,7 +147,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeFunctionRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeFunctionRequest.java index 176725edca7..1cffc5804ab 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeFunctionRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeFunctionRequest.java @@ -156,6 +156,7 @@ public Builder regionId(String regionId) { } /** + *The name of the data catalog.
*This parameter is required.
* * example: @@ -168,6 +169,7 @@ public Builder catalogName(String catalogName) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -180,6 +182,7 @@ public Builder dataRegion(String dataRegion) { } /** + *The database name.
*This parameter is required.
* * example: @@ -192,6 +195,7 @@ public Builder dbName(String dbName) { } /** + *The function name.
*This parameter is required.
* * example: @@ -204,7 +208,13 @@ public Builder functionName(String functionName) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the DMS console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -213,7 +223,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeFunctionResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeFunctionResponseBody.java index 03d954125bc..b0f280b0c2c 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeFunctionResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeFunctionResponseBody.java @@ -106,7 +106,10 @@ private Builder(GetDataLakeFunctionResponseBody model) { } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -114,7 +117,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -122,7 +128,7 @@ public Builder errorMessage(String errorMessage) { } /** - * Function. + *The details about the function.
*/ public Builder function(DLFunction function) { this.function = function; @@ -130,7 +136,10 @@ public Builder function(DLFunction function) { } /** - * RequestId. + *The request ID. You can use the ID to query logs and troubleshoot issues.
+ * + * example: + *D911009F-3E95-5AFD-8CF1-73F7B4F15D6E
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -138,7 +147,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakePartitionRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakePartitionRequest.java index 8db2608bfc9..d7626cb53eb 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakePartitionRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakePartitionRequest.java @@ -171,6 +171,7 @@ public Builder regionId(String regionId) { } /** + *The name of the data catalog.
*This parameter is required.
* * example: @@ -183,6 +184,7 @@ public Builder catalogName(String catalogName) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -195,6 +197,7 @@ public Builder dataRegion(String dataRegion) { } /** + *The database name.
*This parameter is required.
* * example: @@ -207,6 +210,7 @@ public Builder dbName(String dbName) { } /** + *The values in a partition key column.
*This parameter is required.
*/ public Builder partitionValues(java.util.ListThe table name.
*This parameter is required.
* * example: @@ -229,7 +234,13 @@ public Builder tableName(String tableName) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the DMS console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -238,7 +249,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakePartitionResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakePartitionResponseBody.java index 02c5accfbde..9d01c3e33d5 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakePartitionResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakePartitionResponseBody.java @@ -106,7 +106,10 @@ private Builder(GetDataLakePartitionResponseBody model) { } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -114,7 +117,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -122,7 +128,7 @@ public Builder errorMessage(String errorMessage) { } /** - * Partition. + *The queried partition.
*/ public Builder partition(DLPartition partition) { this.partition = partition; @@ -130,7 +136,10 @@ public Builder partition(DLPartition partition) { } /** - * RequestId. + *The request ID. You can use the request ID to locate logs and troubleshoot issues.
+ * + * example: + *FE8EE2F1-4880-46BC-A704-5CF63EAF9A04
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -138,7 +147,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeTableRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeTableRequest.java index 7b3ba187655..0e638bce8e5 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeTableRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeTableRequest.java @@ -157,6 +157,7 @@ public Builder regionId(String regionId) { } /** + *The name of the data catalog.
*This parameter is required.
* * example: @@ -169,6 +170,7 @@ public Builder catalogName(String catalogName) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -181,6 +183,7 @@ public Builder dataRegion(String dataRegion) { } /** + *The name of the database to which the table belongs.
*This parameter is required.
* * example: @@ -193,6 +196,7 @@ public Builder dbName(String dbName) { } /** + *The table name.
*This parameter is required.
* * example: @@ -205,7 +209,10 @@ public Builder name(String name) { } /** - * Tid. + *The tenant ID. You can call the GetUserActiveTenant or ListUserTenants operation to obtain the tenant ID.
+ * + * example: + *3
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -214,7 +221,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeTableResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeTableResponseBody.java index 488c4e4d0ef..616e83d142f 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeTableResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDataLakeTableResponseBody.java @@ -106,7 +106,10 @@ private Builder(GetDataLakeTableResponseBody model) { } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *400
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -114,7 +117,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *Unknown server error
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -122,7 +128,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID. You can use the request ID to locate logs and troubleshoot issues.
+ * + * example: + *4E1D2B4D-3E53-4ABC-999D-1D2520B3471A
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -130,7 +139,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(String success) { this.success = success; @@ -138,7 +154,7 @@ public Builder success(String success) { } /** - * Table. + *The information of the table.
*/ public Builder table(DLTable table) { this.table = table; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDbExportDownloadURLRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDbExportDownloadURLRequest.java index b446e8b40d2..66cd2d72a09 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDbExportDownloadURLRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDbExportDownloadURLRequest.java @@ -97,6 +97,7 @@ public Builder regionId(String regionId) { } /** + *The ticket ID. You can call the ListOrders operation to obtain the ticket ID.
*This parameter is required.
* * example: @@ -109,7 +110,10 @@ public Builder orderId(Long orderId) { } /** - * Tid. + *The ID of the tenant. You can call the GetUserActiveTenant or ListUserTenants operation to obtain the tenant ID.
+ * + * example: + *3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDbExportDownloadURLResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDbExportDownloadURLResponseBody.java index 9624f4f6e0a..df1a34feba6 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDbExportDownloadURLResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetDbExportDownloadURLResponseBody.java @@ -106,7 +106,7 @@ private Builder(GetDbExportDownloadURLResponseBody model) { } /** - * DownloadURLResult. + *The download URL of the exported file.
*/ public Builder downloadURLResult(DownloadURLResult downloadURLResult) { this.downloadURLResult = downloadURLResult; @@ -114,7 +114,10 @@ public Builder downloadURLResult(DownloadURLResult downloadURLResult) { } /** - * ErrorCode. + *The error code returned.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -122,7 +125,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message returned if the request fails.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -130,7 +136,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID. You can use the request ID to locate logs and troubleshoot issues.
+ * + * example: + *0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -138,7 +147,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; @@ -217,7 +233,14 @@ private Builder(DownloadURLResult model) { } /** - * HasResult. + *Indicates whether export results are available for download. Valid values:
+ *true
*/ public Builder hasResult(Boolean hasResult) { this.hasResult = hasResult; @@ -225,7 +248,10 @@ public Builder hasResult(Boolean hasResult) { } /** - * TipMessage. + *The message that indicates an exception.
+ * + * example: + *tip message
*/ public Builder tipMessage(String tipMessage) { this.tipMessage = tipMessage; @@ -233,7 +259,10 @@ public Builder tipMessage(String tipMessage) { } /** - * URL. + *The download URL of the exported file.
+ * + * example: + *https://dms-idb-hangzhou.oss-cn-hangzhou.aliyuncs.com/xxx.zip
*/ public Builder URL(String URL) { this.URL = URL; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetPagedInstanceRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetPagedInstanceRequest.java index ad4938a64a1..fbe527f90ee 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetPagedInstanceRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetPagedInstanceRequest.java @@ -98,6 +98,7 @@ public Builder regionId(String regionId) { } /** + *The ID of data archiving ticket.
*This parameter is required.
* * example: @@ -110,7 +111,13 @@ public Builder orderId(Long orderId) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetPagedInstanceResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetPagedInstanceResponseBody.java index b49dca6a653..9c0e764dca9 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetPagedInstanceResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetPagedInstanceResponseBody.java @@ -158,7 +158,7 @@ private Builder(GetPagedInstanceResponseBody model) { } /** - * Data. + *The data returned.
*/ public Builder data(Data data) { this.data = data; @@ -166,7 +166,10 @@ public Builder data(Data data) { } /** - * ErrorCode. + *The error code returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -174,7 +177,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -182,7 +188,10 @@ public Builder errorMessage(String errorMessage) { } /** - * PageIndex. + *The page number.
+ * + * example: + *1
*/ public Builder pageIndex(Long pageIndex) { this.pageIndex = pageIndex; @@ -190,7 +199,10 @@ public Builder pageIndex(Long pageIndex) { } /** - * PageSize. + *The number of entries to return on each page.
+ * + * example: + *10
*/ public Builder pageSize(Long pageSize) { this.pageSize = pageSize; @@ -198,7 +210,10 @@ public Builder pageSize(Long pageSize) { } /** - * RequestId. + *The request ID. You can use the request ID to query logs and troubleshoot issues.
+ * + * example: + *7FAD400F-7A5C-4193-8F9A-39D86C4F0231
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -206,7 +221,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; @@ -214,7 +236,10 @@ public Builder success(Boolean success) { } /** - * Total. + *The total number of instances.
+ * + * example: + *2
*/ public Builder total(Long total) { this.total = total; @@ -222,7 +247,7 @@ public Builder total(Long total) { } /** - *Id of the request
+ *The trace ID, which is used to track the request.
* * example: *0a06e1e316757357507896067d3780
@@ -473,7 +498,10 @@ private Builder(Instance model) { } /** - * BusinessTime. + *The data timestamp of the task node.
+ * + * example: + *2023-05-14 16:00:57
*/ public Builder businessTime(String businessTime) { this.businessTime = businessTime; @@ -481,7 +509,17 @@ public Builder businessTime(String businessTime) { } /** - * CheckStatus. + *The state of archived data verification. Valid values:
+ *3
*/ public Builder checkStatus(Long checkStatus) { this.checkStatus = checkStatus; @@ -489,7 +527,10 @@ public Builder checkStatus(Long checkStatus) { } /** - * DagId. + *The unique ID of the task flow.
+ * + * example: + *33753
*/ public Builder dagId(Long dagId) { this.dagId = dagId; @@ -497,7 +538,14 @@ public Builder dagId(Long dagId) { } /** - * Delete. + *Indicates whether the source data is deleted. Valid values:
+ *false
*/ public Builder delete(String delete) { this.delete = delete; @@ -505,7 +553,10 @@ public Builder delete(String delete) { } /** - * EndTime. + *The time when the task ended.
+ * + * example: + *2023-04-23 10:23:20
*/ public Builder endTime(String endTime) { this.endTime = endTime; @@ -513,7 +564,10 @@ public Builder endTime(String endTime) { } /** - * GmtCreate. + *The time when the task flow was created.
+ * + * example: + *2023-03-28 10:50:45
*/ public Builder gmtCreate(String gmtCreate) { this.gmtCreate = gmtCreate; @@ -521,7 +575,10 @@ public Builder gmtCreate(String gmtCreate) { } /** - * GmtModified. + *The time when the task flow was last modified.
+ * + * example: + *2023-04-18 15:28:16
*/ public Builder gmtModified(String gmtModified) { this.gmtModified = gmtModified; @@ -529,7 +586,10 @@ public Builder gmtModified(String gmtModified) { } /** - * HistoryDagId. + *The ID of the historical task flow.
+ * + * example: + *6851
*/ public Builder historyDagId(Long historyDagId) { this.historyDagId = historyDagId; @@ -537,7 +597,10 @@ public Builder historyDagId(Long historyDagId) { } /** - * Id. + *The task flow ID.
+ * + * example: + *24271
*/ public Builder id(Long id) { this.id = id; @@ -545,7 +608,10 @@ public Builder id(Long id) { } /** - * LastRunningContext. + *The context of the last execution of the task flow.
+ * + * example: + *{”nodes":[11694,11695]"}
*/ public Builder lastRunningContext(String lastRunningContext) { this.lastRunningContext = lastRunningContext; @@ -553,7 +619,7 @@ public Builder lastRunningContext(String lastRunningContext) { } /** - * Msg. + *The details of the current task execution.
*/ public Builder msg(String msg) { this.msg = msg; @@ -561,7 +627,17 @@ public Builder msg(String msg) { } /** - * Status. + *The state of the archiving task.
+ *1
*/ public Builder status(Long status) { this.status = status; @@ -569,7 +645,15 @@ public Builder status(Long status) { } /** - * TaskType. + *The task type. Valid values:
+ *1
*/ public Builder taskType(Long taskType) { this.taskType = taskType; @@ -577,7 +661,10 @@ public Builder taskType(Long taskType) { } /** - * TenantId. + *The ID of the tenant.
+ * + * example: + *3406
*/ public Builder tenantId(String tenantId) { this.tenantId = tenantId; @@ -585,7 +672,14 @@ public Builder tenantId(String tenantId) { } /** - * TriggerType. + *The mode in which the task flow is triggered. Valid values:
+ *1
*/ public Builder triggerType(Long triggerType) { this.triggerType = triggerType; @@ -593,7 +687,10 @@ public Builder triggerType(Long triggerType) { } /** - * Version. + *The version number.
+ * + * example: + *1
*/ public Builder version(String version) { this.version = version; @@ -647,7 +744,7 @@ private Builder(Data model) { } /** - * Instance. + *The information about the task.
*/ public Builder instance(java.util.ListThe security rule set ID. You can call the ListStandardGroups operation to obtain the ID of the security rule set.
*This parameter is required.
* * example: @@ -110,7 +111,13 @@ public Builder groupId(Long groupId) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the DMS console and move the pointer over the profile picture in the upper-right corner. For more information, see View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
23****
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetStandardGroupResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetStandardGroupResponseBody.java index 949d589cb98..67bd8c86f7c 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetStandardGroupResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetStandardGroupResponseBody.java @@ -106,7 +106,10 @@ private Builder(GetStandardGroupResponseBody model) { } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -114,7 +117,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -122,7 +128,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID. You can use the ID to query logs and troubleshoot issues.
+ * + * example: + *BF7E9543-F431-566A-991A-B5C493EA36C2
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -130,7 +139,7 @@ public Builder requestId(String requestId) { } /** - * StandardGroup. + *The information about the security rule set.
*/ public Builder standardGroup(StandardGroup standardGroup) { this.standardGroup = standardGroup; @@ -138,7 +147,14 @@ public Builder standardGroup(StandardGroup standardGroup) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; @@ -256,7 +272,10 @@ private Builder(StandardGroup model) { } /** - * DbType. + *The engine type.
+ * + * example: + *mysql
*/ public Builder dbType(String dbType) { this.dbType = dbType; @@ -264,7 +283,7 @@ public Builder dbType(String dbType) { } /** - * Description. + *The description of the security rule set.
*/ public Builder description(String description) { this.description = description; @@ -272,7 +291,10 @@ public Builder description(String description) { } /** - * GroupId. + *The ID of the security rule set.
+ * + * example: + *41****
*/ public Builder groupId(Long groupId) { this.groupId = groupId; @@ -280,7 +302,15 @@ public Builder groupId(Long groupId) { } /** - * GroupMode. + *The control mode. Valid values:
+ *COMMON
*/ public Builder groupMode(String groupMode) { this.groupMode = groupMode; @@ -288,7 +318,10 @@ public Builder groupMode(String groupMode) { } /** - * GroupName. + *The name of the security rule set.
+ * + * example: + *poc_test
*/ public Builder groupName(String groupName) { this.groupName = groupName; @@ -296,7 +329,10 @@ public Builder groupName(String groupName) { } /** - * LastMenderId. + *The ID of the user who last modified the security rules.
+ * + * example: + *51****
*/ public Builder lastMenderId(Long lastMenderId) { this.lastMenderId = lastMenderId; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetTableKnowledgeInfoRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetTableKnowledgeInfoRequest.java index 6e732748c06..535e082c454 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetTableKnowledgeInfoRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetTableKnowledgeInfoRequest.java @@ -112,6 +112,7 @@ public Builder regionId(String regionId) { } /** + *The ID of the physical database. You can call the SearchDatabase operation to obtain the ID.
*This parameter is required.
* * example: @@ -124,6 +125,7 @@ public Builder dbId(Integer dbId) { } /** + *The name of the table.
*This parameter is required.
* * example: @@ -136,7 +138,10 @@ public Builder tableName(String tableName) { } /** - * TableSchemaName. + *The schema name of the table, which is required only for SQL Server instances.
+ * + * example: + *dbo
*/ public Builder tableSchemaName(String tableSchemaName) { this.putQueryParameter("TableSchemaName", tableSchemaName); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetTableKnowledgeInfoResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetTableKnowledgeInfoResponseBody.java index 2c8447593dd..6d4147f88db 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetTableKnowledgeInfoResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetTableKnowledgeInfoResponseBody.java @@ -106,7 +106,10 @@ private Builder(GetTableKnowledgeInfoResponseBody model) { } /** - * ErrorCode. + *The error code returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -114,7 +117,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -122,7 +128,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID. You can use the request ID to query logs and troubleshoot issues.
+ * + * example: + *0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -130,7 +139,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; @@ -138,7 +154,10 @@ public Builder success(Boolean success) { } /** - * Table. + *The information about the table.
+ * + * example: + *bill_orders
*/ public Builder table(TableKnowledgeInfo table) { this.table = table; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetWorkspaceRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetWorkspaceRequest.java index 6e3bf448759..e5ddcc0fcd6 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetWorkspaceRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetWorkspaceRequest.java @@ -83,6 +83,7 @@ public Builder regionId(String regionId) { } /** + *The ID of the DMS workspace.
*This parameter is required.
* * example: diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetWorkspaceResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetWorkspaceResponseBody.java index 5fc5f4345a1..94cebdeb2b2 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetWorkspaceResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/GetWorkspaceResponseBody.java @@ -93,7 +93,7 @@ private Builder(GetWorkspaceResponseBody model) { } /** - * Data. + *The data returned.
*/ public Builder data(Data data) { this.data = data; @@ -101,7 +101,10 @@ public Builder data(Data data) { } /** - * Message. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder message(String message) { this.message = message; @@ -109,7 +112,10 @@ public Builder message(String message) { } /** - * RequestId. + *The request ID. You can use the request ID to locate logs and troubleshoot issues.
+ * + * example: + *FE8EE2F1-4880-46BC-A704-5CF63EAF****
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -117,7 +123,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; @@ -261,7 +274,10 @@ private Builder(Data model) { } /** - * Description. + *The description of the workspace.
+ * + * example: + *Test
*/ public Builder description(String description) { this.description = description; @@ -269,7 +285,10 @@ public Builder description(String description) { } /** - * OwnerId. + *The owner ID.
+ * + * example: + *12345****
*/ public Builder ownerId(String ownerId) { this.ownerId = ownerId; @@ -277,7 +296,10 @@ public Builder ownerId(String ownerId) { } /** - * RegionId. + *The ID of the region to which the workspace belongs.
+ * + * example: + *cn-hangzhou
*/ public Builder regionId(String regionId) { this.regionId = regionId; @@ -285,7 +307,10 @@ public Builder regionId(String regionId) { } /** - * ServiceAccountId. + *The ID of the service account.
+ * + * example: + *12345****
*/ public Builder serviceAccountId(String serviceAccountId) { this.serviceAccountId = serviceAccountId; @@ -293,7 +318,13 @@ public Builder serviceAccountId(String serviceAccountId) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the tenant ID, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3322****
*/ public Builder tid(Long tid) { this.tid = tid; @@ -301,7 +332,10 @@ public Builder tid(Long tid) { } /** - * VpcId. + *The VPC ID.
+ * + * example: + *vpc-xxxx
*/ public Builder vpcId(String vpcId) { this.vpcId = vpcId; @@ -309,7 +343,10 @@ public Builder vpcId(String vpcId) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *863020290155****
*/ public Builder workspaceId(Long workspaceId) { this.workspaceId = workspaceId; @@ -317,7 +354,10 @@ public Builder workspaceId(Long workspaceId) { } /** - * WorkspaceName. + *The name of the workspace.
+ * + * example: + *workspace_xxx
*/ public Builder workspaceName(String workspaceName) { this.workspaceName = workspaceName; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAbacAuthorizationsRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAbacAuthorizationsRequest.java index 6dc891d1b8e..9140adf8258 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAbacAuthorizationsRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAbacAuthorizationsRequest.java @@ -140,7 +140,10 @@ public Builder regionId(String regionId) { } /** - * PageNumber. + *The page number.
+ * + * example: + *1
*/ public Builder pageNumber(Long pageNumber) { this.putQueryParameter("PageNumber", pageNumber); @@ -149,7 +152,10 @@ public Builder pageNumber(Long pageNumber) { } /** - * PageSize. + *The number of entries on each page.
+ * + * example: + *20
*/ public Builder pageSize(Long pageSize) { this.putQueryParameter("PageSize", pageSize); @@ -158,7 +164,10 @@ public Builder pageSize(Long pageSize) { } /** - * PolicyId. + *The ID of the policy.
+ * + * example: + *12****
*/ public Builder policyId(String policyId) { this.putQueryParameter("PolicyId", policyId); @@ -167,7 +176,15 @@ public Builder policyId(String policyId) { } /** - * PolicySource. + *The type of the policy. The value can be custom or system.
+ *Valid values:
+ *USER_DEFINE
*/ public Builder policySource(String policySource) { this.putQueryParameter("PolicySource", policySource); @@ -176,7 +193,13 @@ public Builder policySource(String policySource) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the tenant ID, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAbacAuthorizationsResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAbacAuthorizationsResponseBody.java index c91840b6434..b36555c0765 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAbacAuthorizationsResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAbacAuthorizationsResponseBody.java @@ -119,7 +119,7 @@ private Builder(ListAbacAuthorizationsResponseBody model) { } /** - * AuthorizationList. + *The list of users to which the specified policy is attached.
*/ public Builder authorizationList(java.util.ListThe error code that is returned when the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -135,7 +138,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned when the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -143,7 +149,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID. You can use the ID to query logs and troubleshoot issues.
+ * + * example: + *7FAD400F-7A5C-4193-8F9A-39D86C4F0231
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -151,7 +160,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; @@ -159,7 +175,10 @@ public Builder success(Boolean success) { } /** - * TotalCount. + *The number of objects to which the policy is attached.
+ * + * example: + *3
*/ public Builder totalCount(Long totalCount) { this.totalCount = totalCount; @@ -290,7 +309,10 @@ private Builder(AuthorizationList model) { } /** - * AuthorizationId. + *The authorization ID.
+ * + * example: + *32****
*/ public Builder authorizationId(Long authorizationId) { this.authorizationId = authorizationId; @@ -298,7 +320,10 @@ public Builder authorizationId(Long authorizationId) { } /** - * IdentityId. + *The ID of the object to which the policy is attached.
+ * + * example: + *51****
*/ public Builder identityId(Long identityId) { this.identityId = identityId; @@ -306,7 +331,10 @@ public Builder identityId(Long identityId) { } /** - * IdentityName. + *The name of the object to which the policy is attached.
+ * + * example: + *test_user
*/ public Builder identityName(String identityName) { this.identityName = identityName; @@ -314,7 +342,10 @@ public Builder identityName(String identityName) { } /** - * IdentityType. + *The type of the object to which the policy is attached.
+ * + * example: + *USER
*/ public Builder identityType(String identityType) { this.identityType = identityType; @@ -322,7 +353,10 @@ public Builder identityType(String identityType) { } /** - * PolicyId. + *The ID of the policy.
+ * + * example: + *12****
*/ public Builder policyId(Long policyId) { this.policyId = policyId; @@ -330,7 +364,10 @@ public Builder policyId(Long policyId) { } /** - * PolicyName. + *The name of the policy.
+ * + * example: + *policy_test
*/ public Builder policyName(String policyName) { this.policyName = policyName; @@ -338,7 +375,10 @@ public Builder policyName(String policyName) { } /** - * PolicySource. + *The source of the policy.
+ * + * example: + *USER_DEFINE
*/ public Builder policySource(String policySource) { this.policySource = policySource; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAbacPoliciesRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAbacPoliciesRequest.java index 7cf8e229971..bd3adfa54e5 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAbacPoliciesRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAbacPoliciesRequest.java @@ -126,7 +126,10 @@ public Builder regionId(String regionId) { } /** - * PageNumber. + *The page number.
+ * + * example: + *1
*/ public Builder pageNumber(Long pageNumber) { this.putQueryParameter("PageNumber", pageNumber); @@ -135,7 +138,10 @@ public Builder pageNumber(Long pageNumber) { } /** - * PageSize. + *The number of entries to return on each page.
+ * + * example: + *20
*/ public Builder pageSize(Long pageSize) { this.putQueryParameter("PageSize", pageSize); @@ -144,7 +150,10 @@ public Builder pageSize(Long pageSize) { } /** - * SearchKey. + *The search keyword. Fuzzy match is supported.
+ * + * example: + *policy_test
*/ public Builder searchKey(String searchKey) { this.putQueryParameter("SearchKey", searchKey); @@ -153,7 +162,13 @@ public Builder searchKey(String searchKey) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAbacPoliciesResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAbacPoliciesResponseBody.java index e16652df653..47b1bf67685 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAbacPoliciesResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAbacPoliciesResponseBody.java @@ -132,7 +132,10 @@ private Builder(ListAbacPoliciesResponseBody model) { } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -140,7 +143,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -148,7 +154,7 @@ public Builder errorMessage(String errorMessage) { } /** - * PolicyList. + *The details of the permission policies.
*/ public Builder policyList(java.util.ListThe request ID. You can use the request ID to locate logs and troubleshoot issues.
+ * + * example: + *0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -164,7 +173,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; @@ -172,7 +188,10 @@ public Builder success(Boolean success) { } /** - * Tid. + *The ID of the tenant.
+ * + * example: + *3***
*/ public Builder tid(Long tid) { this.tid = tid; @@ -180,7 +199,10 @@ public Builder tid(Long tid) { } /** - * TotalCount. + *The total number of policies.
+ * + * example: + *5
*/ public Builder totalCount(Long totalCount) { this.totalCount = totalCount; @@ -298,7 +320,26 @@ private Builder(PolicyList model) { } /** - * AbacPolicyContent. + *The content of the policy.
+ * + * example: + *{ + * "Statement": [ + * { + * "Action": "", + * "Effect": "Allow", + * "Resource": "", + * "Condition": { + * "StringEqualsIgnoreCase": { + * "dms:DbType": [ + * "redis" + * ] + * } + * } + * } + * ], + * "Version": "1" + * }
*/ public Builder abacPolicyContent(String abacPolicyContent) { this.abacPolicyContent = abacPolicyContent; @@ -306,7 +347,10 @@ public Builder abacPolicyContent(String abacPolicyContent) { } /** - * AbacPolicyDesc. + *The description of the policy.
+ * + * example: + *test
*/ public Builder abacPolicyDesc(String abacPolicyDesc) { this.abacPolicyDesc = abacPolicyDesc; @@ -314,7 +358,10 @@ public Builder abacPolicyDesc(String abacPolicyDesc) { } /** - * AbacPolicyId. + *The ID of the policy.
+ * + * example: + *12****
*/ public Builder abacPolicyId(Long abacPolicyId) { this.abacPolicyId = abacPolicyId; @@ -322,7 +369,10 @@ public Builder abacPolicyId(Long abacPolicyId) { } /** - * AbacPolicyName. + *The name of the policy.
+ * + * example: + *policy_test
*/ public Builder abacPolicyName(String abacPolicyName) { this.abacPolicyName = abacPolicyName; @@ -330,7 +380,10 @@ public Builder abacPolicyName(String abacPolicyName) { } /** - * AbacPolicySource. + *The source of the policy.
+ * + * example: + *USER_DEFINE
*/ public Builder abacPolicySource(String abacPolicySource) { this.abacPolicySource = abacPolicySource; @@ -338,7 +391,10 @@ public Builder abacPolicySource(String abacPolicySource) { } /** - * CreatorId. + *The ID of the user who created the policy.
+ * + * example: + *51****
*/ public Builder creatorId(Long creatorId) { this.creatorId = creatorId; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorityTemplateRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorityTemplateRequest.java index 08954ce0e1d..1b6caca9c9d 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorityTemplateRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorityTemplateRequest.java @@ -125,7 +125,10 @@ public Builder regionId(String regionId) { } /** - * PageNumber. + *The page number.
+ * + * example: + *1
*/ public Builder pageNumber(Integer pageNumber) { this.putQueryParameter("PageNumber", pageNumber); @@ -134,7 +137,15 @@ public Builder pageNumber(Integer pageNumber) { } /** - * PageSize. + *The number of entries per page. Valid values:
+ *10
*/ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); @@ -143,7 +154,7 @@ public Builder pageSize(Integer pageSize) { } /** - * SearchKey. + *The keyword that is used to search for permission templates.
*/ public Builder searchKey(String searchKey) { this.putQueryParameter("SearchKey", searchKey); @@ -152,7 +163,10 @@ public Builder searchKey(String searchKey) { } /** - * Tid. + *The tenant ID. You can call the GetUserActiveTenant or ListUserTenants operation to obtain the tenant ID.
+ * + * example: + *3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorityTemplateResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorityTemplateResponseBody.java index 3ac6d5dc32e..b8aa7b46f24 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorityTemplateResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorityTemplateResponseBody.java @@ -132,7 +132,7 @@ private Builder(ListAuthorityTemplateResponseBody model) { } /** - * AuthorityTemplateViewList. + *The permission templates.
*/ public Builder authorityTemplateViewList(AuthorityTemplateViewList authorityTemplateViewList) { this.authorityTemplateViewList = authorityTemplateViewList; @@ -140,7 +140,10 @@ public Builder authorityTemplateViewList(AuthorityTemplateViewList authorityTemp } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -148,7 +151,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -156,7 +162,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID. You can use the request ID to locate logs and troubleshoot issues.
+ * + * example: + *31853A2B-DC9D-5B39-8492-D2AC8BCF550E
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -164,7 +173,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; @@ -172,7 +188,10 @@ public Builder success(Boolean success) { } /** - * Tid. + *The ID of the tenant.
+ * + * example: + *3***
*/ public Builder tid(Long tid) { this.tid = tid; @@ -180,7 +199,10 @@ public Builder tid(Long tid) { } /** - * TotalCount. + *The total number of permission templates.
+ * + * example: + *10
*/ public Builder totalCount(Long totalCount) { this.totalCount = totalCount; @@ -285,7 +307,10 @@ private Builder(AuthorityTemplateView model) { } /** - * CreateTime. + *The time when the permission template was created. The time is in the yyyy-MM-DD HH:mm:ss format.
+ * + * example: + *2023-10-26 11:37:47
*/ public Builder createTime(String createTime) { this.createTime = createTime; @@ -293,7 +318,10 @@ public Builder createTime(String createTime) { } /** - * CreatorId. + *The ID of the user who created the permission template.
+ * + * example: + *522****
*/ public Builder creatorId(Long creatorId) { this.creatorId = creatorId; @@ -301,7 +329,7 @@ public Builder creatorId(Long creatorId) { } /** - * Description. + *The description of the permission template.
*/ public Builder description(String description) { this.description = description; @@ -309,7 +337,7 @@ public Builder description(String description) { } /** - * Name. + *The name of the permission template.
*/ public Builder name(String name) { this.name = name; @@ -317,7 +345,10 @@ public Builder name(String name) { } /** - * TemplateId. + *The ID of the permission template.
+ * + * example: + *2592
*/ public Builder templateId(Long templateId) { this.templateId = templateId; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedDatabasesForUserRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedDatabasesForUserRequest.java index 3ca92d84493..0a33f23158c 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedDatabasesForUserRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedDatabasesForUserRequest.java @@ -182,7 +182,20 @@ public Builder regionId(String regionId) { } /** - * DbType. + *The type of databases. Valid values:
+ *MySQL
*/ public Builder dbType(String dbType) { this.putQueryParameter("DbType", dbType); @@ -191,7 +204,20 @@ public Builder dbType(String dbType) { } /** - * EnvType. + *The type of the environment in which the database instance is deployed. Valid values:
+ *product
*/ public Builder envType(String envType) { this.putQueryParameter("EnvType", envType); @@ -200,7 +226,14 @@ public Builder envType(String envType) { } /** - * Logic. + *Specifies whether the database is a logical database. Valid values:
+ *false
*/ public Builder logic(Boolean logic) { this.putQueryParameter("Logic", logic); @@ -209,7 +242,10 @@ public Builder logic(Boolean logic) { } /** - * PageNumber. + *The page number.
+ * + * example: + *1
*/ public Builder pageNumber(String pageNumber) { this.putQueryParameter("PageNumber", pageNumber); @@ -218,7 +254,10 @@ public Builder pageNumber(String pageNumber) { } /** - * PageSize. + *The number of entries to return on each page.
+ * + * example: + *20
*/ public Builder pageSize(String pageSize) { this.putQueryParameter("PageSize", pageSize); @@ -227,7 +266,10 @@ public Builder pageSize(String pageSize) { } /** - * SearchKey. + *The search keyword.
+ * + * example: + *policy_test
*/ public Builder searchKey(String searchKey) { this.putQueryParameter("SearchKey", searchKey); @@ -236,7 +278,10 @@ public Builder searchKey(String searchKey) { } /** - * Tid. + *The ID of the tenant.
+ * + * example: + *3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -245,6 +290,7 @@ public Builder tid(Long tid) { } /** + *The ID of the user. You can call the GetUser operation to query the user ID.
*This parameter is required.
* * example: diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedDatabasesForUserResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedDatabasesForUserResponseBody.java index 978ffbc22af..80fe6f5eb2a 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedDatabasesForUserResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedDatabasesForUserResponseBody.java @@ -67,7 +67,7 @@ private Builder(ListAuthorizedDatabasesForUserResponseBody model) { } /** - * Databases. + *The names of the databases on which the user has permissions.
*/ public Builder databases(java.util.ListThe request ID. You can use the ID to query logs and troubleshoot issues.
+ * + * example: + *012AE0B5-4B52-532F-BD7C-1EE9F182089B
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -167,7 +170,10 @@ private Builder(PermissionDetail model) { } /** - * DsType. + *The type of object on which the operation is performed.
+ * + * example: + *DATABASE
*/ public Builder dsType(String dsType) { this.dsType = dsType; @@ -175,7 +181,10 @@ public Builder dsType(String dsType) { } /** - * ExpireDate. + *The time when the permissions expire.
+ * + * example: + *2024-12-06 10:00:00
*/ public Builder expireDate(String expireDate) { this.expireDate = expireDate; @@ -183,7 +192,7 @@ public Builder expireDate(String expireDate) { } /** - * Message. + *If the permission source is a permission policy, the value of this parameter includes the policy name and the operations that are allowed for the user.
*/ public Builder message(String message) { this.message = message; @@ -191,7 +200,15 @@ public Builder message(String message) { } /** - * PermType. + *The type of the permission. Valid values:
+ *CORRECT
*/ public Builder permType(String permType) { this.permType = permType; @@ -349,7 +366,10 @@ private Builder(Databases model) { } /** - * DbId. + *The database ID.
+ * + * example: + *254****
*/ public Builder dbId(String dbId) { this.dbId = dbId; @@ -357,7 +377,10 @@ public Builder dbId(String dbId) { } /** - * DbType. + *The engine of the database.
+ * + * example: + *MYSQL
*/ public Builder dbType(String dbType) { this.dbType = dbType; @@ -365,7 +388,10 @@ public Builder dbType(String dbType) { } /** - * EnvType. + *The type of the environment in which the database instance is deployed.
+ * + * example: + *product
*/ public Builder envType(String envType) { this.envType = envType; @@ -373,7 +399,10 @@ public Builder envType(String envType) { } /** - * InstanceId. + *The ID of the instance.
+ * + * example: + *235****
*/ public Builder instanceId(String instanceId) { this.instanceId = instanceId; @@ -381,7 +410,14 @@ public Builder instanceId(String instanceId) { } /** - * Logic. + *Indicates whether the database is a logical database. Valid values:
+ *false
*/ public Builder logic(Boolean logic) { this.logic = logic; @@ -389,7 +425,7 @@ public Builder logic(Boolean logic) { } /** - * PermissionDetail. + *The details of permissions. The format of the permission details varies with the permission source. For example, if the permission source is a normal permission, the following parameters are returned.
*/ public Builder permissionDetail(PermissionDetail permissionDetail) { this.permissionDetail = permissionDetail; @@ -397,7 +433,10 @@ public Builder permissionDetail(PermissionDetail permissionDetail) { } /** - * SchemaName. + *The database name.
+ * + * example: + *poc_testdb
*/ public Builder schemaName(String schemaName) { this.schemaName = schemaName; @@ -405,7 +444,10 @@ public Builder schemaName(String schemaName) { } /** - * SearchName. + *The name that is used to search for the database.
+ * + * example: + *poc
*/ public Builder searchName(String searchName) { this.searchName = searchName; @@ -413,7 +455,10 @@ public Builder searchName(String searchName) { } /** - * UserId. + *The user IDs.
+ * + * example: + *51****
*/ public Builder userId(String userId) { this.userId = userId; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedInstancesForUserRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedInstancesForUserRequest.java index e86cf4efc01..35da7ff31eb 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedInstancesForUserRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedInstancesForUserRequest.java @@ -168,7 +168,20 @@ public Builder regionId(String regionId) { } /** - * DbType. + *The type of databases. Valid values:
+ *MySQL
*/ public Builder dbType(String dbType) { this.putQueryParameter("DbType", dbType); @@ -177,7 +190,20 @@ public Builder dbType(String dbType) { } /** - * EnvType. + *The type of the environment in which the database instance is deployed. Valid values:
+ *product
*/ public Builder envType(String envType) { this.putQueryParameter("EnvType", envType); @@ -186,7 +212,10 @@ public Builder envType(String envType) { } /** - * PageNumber. + *The page number.
+ * + * example: + *1
*/ public Builder pageNumber(String pageNumber) { this.putQueryParameter("PageNumber", pageNumber); @@ -195,7 +224,10 @@ public Builder pageNumber(String pageNumber) { } /** - * PageSize. + *The number of entries to return on each page.
+ * + * example: + *20
*/ public Builder pageSize(String pageSize) { this.putQueryParameter("PageSize", pageSize); @@ -204,7 +236,10 @@ public Builder pageSize(String pageSize) { } /** - * SearchKey. + *The search keyword.
+ * + * example: + *policy_test
*/ public Builder searchKey(String searchKey) { this.putQueryParameter("SearchKey", searchKey); @@ -213,7 +248,13 @@ public Builder searchKey(String searchKey) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the DMS console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -222,6 +263,10 @@ public Builder tid(Long tid) { } /** + *The ID of the user. You can call the GetUser operation to query the user ID.
+ *+ **If IdentityType is set to USER, this parameter is required.
+ *
This parameter is required.
* * example: diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedInstancesForUserResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedInstancesForUserResponseBody.java index b44959ed4ec..6d3aefdf18c 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedInstancesForUserResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedInstancesForUserResponseBody.java @@ -67,7 +67,7 @@ private Builder(ListAuthorizedInstancesForUserResponseBody model) { } /** - * Instances. + *The list of instances on which the user has permissions.
*/ public Builder instances(java.util.ListThe request ID. You can use the ID to query logs and troubleshoot issues.
+ * + * example: + *B7DB89CC-017D-5503-8953-38FFE241A618
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -167,7 +170,10 @@ private Builder(PermissionDetail model) { } /** - * DsType. + *The type of object on which the operation is performed.
+ * + * example: + *DATABASE
*/ public Builder dsType(String dsType) { this.dsType = dsType; @@ -175,7 +181,10 @@ public Builder dsType(String dsType) { } /** - * ExpireDate. + *The time when the permission expires.
+ * + * example: + *2024-12-06 10:00:00
*/ public Builder expireDate(String expireDate) { this.expireDate = expireDate; @@ -183,7 +192,7 @@ public Builder expireDate(String expireDate) { } /** - * Message. + *If the permission source is a permission policy, the value of this parameter includes the policy name and the operations that are allowed for the user.
*/ public Builder message(String message) { this.message = message; @@ -191,7 +200,15 @@ public Builder message(String message) { } /** - * PermType. + *The type of the permission. Valid values:
+ *CORRECT
*/ public Builder permType(String permType) { this.permType = permType; @@ -349,7 +366,10 @@ private Builder(Instances model) { } /** - * DbType. + *The database engine that the instance runs.
+ * + * example: + *MySQL
*/ public Builder dbType(String dbType) { this.dbType = dbType; @@ -357,7 +377,10 @@ public Builder dbType(String dbType) { } /** - * EnvType. + *The type of the environment to which the database instance belongs.
+ * + * example: + *product
*/ public Builder envType(String envType) { this.envType = envType; @@ -365,7 +388,10 @@ public Builder envType(String envType) { } /** - * Host. + *The endpoint that is used to connect to the instance.
+ * + * example: + *rm-2zex9lrc0gz0****.mysql.rds.aliyuncs.com
*/ public Builder host(String host) { this.host = host; @@ -373,7 +399,10 @@ public Builder host(String host) { } /** - * InstanceAlias. + *The alias of the instance.
+ * + * example: + *DMS_TEST
*/ public Builder instanceAlias(String instanceAlias) { this.instanceAlias = instanceAlias; @@ -381,7 +410,10 @@ public Builder instanceAlias(String instanceAlias) { } /** - * InstanceId. + *The ID of the instance.
+ * + * example: + *21****
*/ public Builder instanceId(String instanceId) { this.instanceId = instanceId; @@ -389,7 +421,7 @@ public Builder instanceId(String instanceId) { } /** - * PermissionDetail. + *The details of permissions. The format of the permission details varies with the permission source. For example, if the permission source is a normal permission, the following parameters are returned.
*/ public Builder permissionDetail(PermissionDetail permissionDetail) { this.permissionDetail = permissionDetail; @@ -397,7 +429,10 @@ public Builder permissionDetail(PermissionDetail permissionDetail) { } /** - * Port. + *The port number that is used to connect to the instance.
+ * + * example: + *3306
*/ public Builder port(String port) { this.port = port; @@ -405,7 +440,10 @@ public Builder port(String port) { } /** - * UserId. + *The user IDs.
+ * + * example: + *51****
*/ public Builder userId(String userId) { this.userId = userId; @@ -413,7 +451,10 @@ public Builder userId(String userId) { } /** - * UserName. + *The user name.
+ * + * example: + *user_test
*/ public Builder userName(String userName) { this.userName = userName; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedUsersForDatabaseRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedUsersForDatabaseRequest.java index a6327ad29a0..0eab1bf37f8 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedUsersForDatabaseRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedUsersForDatabaseRequest.java @@ -154,6 +154,11 @@ public Builder regionId(String regionId) { } /** + *The database ID. The database can be a physical database or a logical database.
+ *This parameter is required.
* * example: @@ -166,7 +171,14 @@ public Builder dbId(String dbId) { } /** - * Logic. + *Specifies whether the database is a logical database. Valid values:
+ *false
*/ public Builder logic(Boolean logic) { this.putQueryParameter("Logic", logic); @@ -175,7 +187,10 @@ public Builder logic(Boolean logic) { } /** - * PageNumber. + *The page number.
+ * + * example: + *1
*/ public Builder pageNumber(String pageNumber) { this.putQueryParameter("PageNumber", pageNumber); @@ -184,7 +199,10 @@ public Builder pageNumber(String pageNumber) { } /** - * PageSize. + *The number of entries to return on each page.
+ * + * example: + *20
*/ public Builder pageSize(String pageSize) { this.putQueryParameter("PageSize", pageSize); @@ -193,7 +211,10 @@ public Builder pageSize(String pageSize) { } /** - * SearchKey. + *The keyword that is used for the search.
+ * + * example: + *poc_test
*/ public Builder searchKey(String searchKey) { this.putQueryParameter("SearchKey", searchKey); @@ -202,7 +223,13 @@ public Builder searchKey(String searchKey) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedUsersForDatabaseResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedUsersForDatabaseResponseBody.java index 2397174f5e1..eabb533d7ca 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedUsersForDatabaseResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedUsersForDatabaseResponseBody.java @@ -67,7 +67,10 @@ private Builder(ListAuthorizedUsersForDatabaseResponseBody model) { } /** - * RequestId. + *The request ID. You can use the ID to locate logs and troubleshoot issues.
+ * + * example: + *FE8EE2F1-4880-46BC-A704-5CF63EAF9A04
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -75,7 +78,7 @@ public Builder requestId(String requestId) { } /** - * Users. + *The list of users that have permissions on the specified instance.
*/ public Builder users(java.util.ListThe UID of the user"s Alibaba Cloud account.
+ * + * example: + *164882191****
*/ public Builder uid(String uid) { this.uid = uid; @@ -162,7 +168,10 @@ public Builder uid(String uid) { } /** - * UserId. + *The user IDs.
+ * + * example: + *51****
*/ public Builder userId(String userId) { this.userId = userId; @@ -170,7 +179,10 @@ public Builder userId(String userId) { } /** - * UserNickName. + *The nickname of the user.
+ * + * example: + *user_test
*/ public Builder userNickName(String userNickName) { this.userNickName = userNickName; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedUsersForInstanceRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedUsersForInstanceRequest.java index c152793d162..fbffa8fe41b 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedUsersForInstanceRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedUsersForInstanceRequest.java @@ -140,6 +140,7 @@ public Builder regionId(String regionId) { } /** + *The ID of the instance. You can call the ListInstances or GetInstance operation to query the instance ID.
*This parameter is required.
* * example: @@ -152,7 +153,10 @@ public Builder instanceId(String instanceId) { } /** - * PageNumber. + *The page number.
+ * + * example: + *1
*/ public Builder pageNumber(String pageNumber) { this.putQueryParameter("PageNumber", pageNumber); @@ -161,7 +165,10 @@ public Builder pageNumber(String pageNumber) { } /** - * PageSize. + *The number of entries to return on each page.
+ * + * example: + *20
*/ public Builder pageSize(String pageSize) { this.putQueryParameter("PageSize", pageSize); @@ -170,7 +177,10 @@ public Builder pageSize(String pageSize) { } /** - * SearchKey. + *The keyword that is used for the search.
+ * + * example: + *poc_test
*/ public Builder searchKey(String searchKey) { this.putQueryParameter("SearchKey", searchKey); @@ -179,7 +189,13 @@ public Builder searchKey(String searchKey) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3****
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedUsersForInstanceResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedUsersForInstanceResponseBody.java index 1a098287bb5..b0cede8daa1 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedUsersForInstanceResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListAuthorizedUsersForInstanceResponseBody.java @@ -67,7 +67,10 @@ private Builder(ListAuthorizedUsersForInstanceResponseBody model) { } /** - * RequestId. + *The request ID. You can use the request ID to locate logs and troubleshoot issues.
+ * + * example: + *0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -75,7 +78,7 @@ public Builder requestId(String requestId) { } /** - * Users. + *The list of users that have permissions on the specified instance.
*/ public Builder users(java.util.ListThe UID of the user"s Alibaba Cloud account.
+ * + * example: + *164882191****
*/ public Builder uid(String uid) { this.uid = uid; @@ -175,7 +181,10 @@ public Builder uid(String uid) { } /** - * UserId. + *The ID of the user.
+ * + * example: + *51***
*/ public Builder userId(String userId) { this.userId = userId; @@ -183,7 +192,10 @@ public Builder userId(String userId) { } /** - * UserNickName. + *The nickname of the user.
+ * + * example: + *user_test
*/ public Builder userNickName(String userNickName) { this.userNickName = userNickName; @@ -191,7 +203,10 @@ public Builder userNickName(String userNickName) { } /** - * UserRealName. + *The real name of the user.
+ * + * example: + *user01
*/ public Builder userRealName(String userRealName) { this.userRealName = userRealName; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeCatalogRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeCatalogRequest.java index 897d7c0bbfb..9131b75de2f 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeCatalogRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeCatalogRequest.java @@ -126,6 +126,7 @@ public Builder regionId(String regionId) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -138,7 +139,10 @@ public Builder dataRegion(String dataRegion) { } /** - * SearchKey. + *The keyword that is used to search for catalogs.
+ * + * example: + *hive
*/ public Builder searchKey(String searchKey) { this.putQueryParameter("SearchKey", searchKey); @@ -147,7 +151,10 @@ public Builder searchKey(String searchKey) { } /** - * Tid. + *The ID of the tenant. You can call the GetUserActiveTenant or ListUserTenants operation to query the ID of the tenant.
+ * + * example: + *3
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -156,7 +163,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeCatalogResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeCatalogResponseBody.java index c5fcfab59e4..7184c440e79 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeCatalogResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeCatalogResponseBody.java @@ -106,7 +106,7 @@ private Builder(ListDataLakeCatalogResponseBody model) { } /** - * CataLogList. + *The list of catalogs.
*/ public Builder cataLogList(java.util.ListThe error code returned if the request failed.
+ * + * example: + *400
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -122,7 +125,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -130,7 +136,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The ID of the request. You can use the request ID to locate logs and troubleshoot issues.
+ * + * example: + *E76DD2E7-EBAC-5724-B163-19AAC233F8F2
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -138,7 +147,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeDatabaseRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeDatabaseRequest.java index 7ac6aee6bc4..62616aeba86 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeDatabaseRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeDatabaseRequest.java @@ -168,6 +168,7 @@ public Builder regionId(String regionId) { } /** + *The name of the data catalog. You can view the name of the data catalog in the DLF console.
*This parameter is required.
* * example: @@ -180,6 +181,7 @@ public Builder catalogName(String catalogName) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -192,7 +194,10 @@ public Builder dataRegion(String dataRegion) { } /** - * MaxResults. + *The number of entries per page. Valid values: 1 to 100.
+ * + * example: + *20
*/ public Builder maxResults(Integer maxResults) { this.putQueryParameter("MaxResults", maxResults); @@ -201,7 +206,14 @@ public Builder maxResults(Integer maxResults) { } /** - * NextToken. + *The pagination token that is used in the next request to retrieve a new page of results. Valid values:
+ *f056501ada12c1cc
*/ public Builder nextToken(String nextToken) { this.putQueryParameter("NextToken", nextToken); @@ -210,7 +222,10 @@ public Builder nextToken(String nextToken) { } /** - * SearchKey. + *The keyword that is used to search for databases.
+ * + * example: + *default
*/ public Builder searchKey(String searchKey) { this.putQueryParameter("SearchKey", searchKey); @@ -219,7 +234,13 @@ public Builder searchKey(String searchKey) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the tenant ID, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -228,7 +249,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeDatabaseResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeDatabaseResponseBody.java index 818223c1a79..ce8273f7c89 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeDatabaseResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeDatabaseResponseBody.java @@ -132,7 +132,7 @@ private Builder(ListDataLakeDatabaseResponseBody model) { } /** - * DatabaseList. + *The list of databases.
*/ public Builder databaseList(java.util.ListThe error code returned if the call failed.
+ * + * example: + *400
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -148,7 +151,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -156,7 +162,10 @@ public Builder errorMessage(String errorMessage) { } /** - * MaxResults. + *The maximum number of entries to be returned in a request. You can use this parameter and NextToken to implement paging.
+ * + * example: + *20
*/ public Builder maxResults(Integer maxResults) { this.maxResults = maxResults; @@ -164,7 +173,10 @@ public Builder maxResults(Integer maxResults) { } /** - * NextToken. + *The pagination token that is used in the next request to retrieve a new page of results. If NextToken is empty, no next page exists. Set this parameter to the value of NextToken obtained from the previous query.
+ * + * example: + *NesLoKLEdIZrKhDT7I2gSw==
*/ public Builder nextToken(String nextToken) { this.nextToken = nextToken; @@ -172,7 +184,10 @@ public Builder nextToken(String nextToken) { } /** - * RequestId. + *The request ID. You can use the ID to locate logs and troubleshoot issues.
+ * + * example: + *4E1D2B4D-3E53-4ABC-999D-1D2520B3471A
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -180,7 +195,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeFunctionNameRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeFunctionNameRequest.java index 601a0c193d8..17b03eeaa35 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeFunctionNameRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeFunctionNameRequest.java @@ -184,6 +184,7 @@ public Builder regionId(String regionId) { } /** + *The name of the data catalog.
*This parameter is required.
* * example: @@ -196,6 +197,7 @@ public Builder catalogName(String catalogName) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -208,6 +210,7 @@ public Builder dataRegion(String dataRegion) { } /** + *The database name.
*This parameter is required.
* * example: @@ -220,7 +223,10 @@ public Builder dbName(String dbName) { } /** - * FunctionNamePattern. + *The regular expression that is used to filter the returned function names.
+ * + * example: + *.*
*/ public Builder functionNamePattern(String functionNamePattern) { this.putQueryParameter("FunctionNamePattern", functionNamePattern); @@ -229,7 +235,10 @@ public Builder functionNamePattern(String functionNamePattern) { } /** - * MaxResults. + *The number of records per page. Valid values: 1 to 100.
+ * + * example: + *20
*/ public Builder maxResults(Integer maxResults) { this.putQueryParameter("MaxResults", maxResults); @@ -238,7 +247,14 @@ public Builder maxResults(Integer maxResults) { } /** - * NextToken. + *The pagination token that is used in the next request to retrieve a new page of results. Valid values:
+ *f056501ada12c1cc
*/ public Builder nextToken(String nextToken) { this.putQueryParameter("NextToken", nextToken); @@ -247,7 +263,13 @@ public Builder nextToken(String nextToken) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the DMS console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -256,7 +278,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeFunctionNameResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeFunctionNameResponseBody.java index 6a74384e189..5ee28ff1666 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeFunctionNameResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeFunctionNameResponseBody.java @@ -132,7 +132,10 @@ private Builder(ListDataLakeFunctionNameResponseBody model) { } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -140,7 +143,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -148,7 +154,7 @@ public Builder errorMessage(String errorMessage) { } /** - * FunctionNameList. + *The information about the list of function names.
*/ public Builder functionNameList(java.util.ListThe number of entries per page.
+ * + * example: + *20
*/ public Builder maxResults(Integer maxResults) { this.maxResults = maxResults; @@ -164,7 +173,10 @@ public Builder maxResults(Integer maxResults) { } /** - * NextToken. + *The token that determines the start point of the next query.
+ * + * example: + *f056501ada12c1cc
*/ public Builder nextToken(String nextToken) { this.nextToken = nextToken; @@ -172,7 +184,10 @@ public Builder nextToken(String nextToken) { } /** - * RequestId. + *The request ID.
+ * + * example: + *F1C78D32-1AFD-58AD-9DD2-C8A0896969DD
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -180,7 +195,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeFunctionRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeFunctionRequest.java index 92ed62be2b4..bb249453865 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeFunctionRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeFunctionRequest.java @@ -183,6 +183,7 @@ public Builder regionId(String regionId) { } /** + *The name of the data catalog.
*This parameter is required.
* * example: @@ -195,6 +196,7 @@ public Builder catalogName(String catalogName) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -207,7 +209,10 @@ public Builder dataRegion(String dataRegion) { } /** - * DbName. + *The name of the database.
+ * + * example: + *default
*/ public Builder dbName(String dbName) { this.putQueryParameter("DbName", dbName); @@ -216,7 +221,10 @@ public Builder dbName(String dbName) { } /** - * FunctionNamePattern. + *The regular expression that is used to filter the returned function names.
+ * + * example: + *.*
*/ public Builder functionNamePattern(String functionNamePattern) { this.putQueryParameter("FunctionNamePattern", functionNamePattern); @@ -225,7 +233,10 @@ public Builder functionNamePattern(String functionNamePattern) { } /** - * MaxResults. + *The number of records per page. Valid values: 1 to 100.
+ * + * example: + *20
*/ public Builder maxResults(Integer maxResults) { this.putQueryParameter("MaxResults", maxResults); @@ -234,7 +245,14 @@ public Builder maxResults(Integer maxResults) { } /** - * NextToken. + *The pagination token that is used in the next request to retrieve a new page of results. Valid values:
+ *f056501ada12c1cc
*/ public Builder nextToken(String nextToken) { this.putQueryParameter("NextToken", nextToken); @@ -243,7 +261,13 @@ public Builder nextToken(String nextToken) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the DMS console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -252,7 +276,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeFunctionResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeFunctionResponseBody.java index 88e82b7de23..6e922e253af 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeFunctionResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeFunctionResponseBody.java @@ -132,7 +132,10 @@ private Builder(ListDataLakeFunctionResponseBody model) { } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -140,7 +143,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -148,7 +154,7 @@ public Builder errorMessage(String errorMessage) { } /** - * FunctionList. + *The information about functions.
*/ public Builder functionList(java.util.ListThe number of records per page.
+ * + * example: + *20
*/ public Builder maxResults(Integer maxResults) { this.maxResults = maxResults; @@ -164,7 +173,10 @@ public Builder maxResults(Integer maxResults) { } /** - * NextToken. + *The token that determines the start point of the next query.
+ * + * example: + *f056501ada12c1cc
*/ public Builder nextToken(String nextToken) { this.nextToken = nextToken; @@ -172,7 +184,10 @@ public Builder nextToken(String nextToken) { } /** - * RequestId. + *The request ID. You can use the ID to query logs and troubleshoot issues.
+ * + * example: + *7FAD400F-7A5C-4193-8F9A-39D86C4F0231
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -180,7 +195,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakePartitionByFilterRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakePartitionByFilterRequest.java index 11c9322fa0c..706f927ad76 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakePartitionByFilterRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakePartitionByFilterRequest.java @@ -200,6 +200,7 @@ public Builder regionId(String regionId) { } /** + *The catalog name.
*This parameter is required.
* * example: @@ -212,6 +213,7 @@ public Builder catalogName(String catalogName) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -224,6 +226,7 @@ public Builder dataRegion(String dataRegion) { } /** + *The database name.
*This parameter is required.
* * example: @@ -236,6 +239,13 @@ public Builder dbName(String dbName) { } /** + *The expression of the query condition. The following operators are supported:
+ *This parameter is required.
* * example: @@ -248,7 +258,10 @@ public Builder filter(String filter) { } /** - * MaxResults. + *The number of entries per page. Valid values: 1 to 100.
+ * + * example: + *20
*/ public Builder maxResults(Integer maxResults) { this.putQueryParameter("MaxResults", maxResults); @@ -257,7 +270,14 @@ public Builder maxResults(Integer maxResults) { } /** - * NextToken. + *The pagination token that is used in the next request to retrieve a new page of results. Valid value:
+ *f056501ada12c1cc
*/ public Builder nextToken(String nextToken) { this.putQueryParameter("NextToken", nextToken); @@ -266,6 +286,7 @@ public Builder nextToken(String nextToken) { } /** + *The table name.
*This parameter is required.
* * example: @@ -278,7 +299,13 @@ public Builder tableName(String tableName) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -287,7 +314,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakePartitionByFilterResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakePartitionByFilterResponseBody.java index 39511cb0213..18d1983090d 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakePartitionByFilterResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakePartitionByFilterResponseBody.java @@ -132,7 +132,10 @@ private Builder(ListDataLakePartitionByFilterResponseBody model) { } /** - * ErrorCode. + *The error code returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -140,7 +143,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -148,7 +154,10 @@ public Builder errorMessage(String errorMessage) { } /** - * MaxResults. + *The number of entries per page.
+ * + * example: + *20
*/ public Builder maxResults(Integer maxResults) { this.maxResults = maxResults; @@ -156,7 +165,10 @@ public Builder maxResults(Integer maxResults) { } /** - * NextToken. + *The information about the token.
+ * + * example: + *NesLoKLEdIZrKhDT7I2gS****
*/ public Builder nextToken(String nextToken) { this.nextToken = nextToken; @@ -164,7 +176,7 @@ public Builder nextToken(String nextToken) { } /** - * PartitionList. + *The queried partitions.
*/ public Builder partitionList(java.util.ListThe ID of the request. You can use the ID to locate logs and troubleshoot issues.
+ * + * example: + *427688B8-ADFB-4C4E-9D45-EF5C1FD6E23D
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -180,7 +195,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakePartitionNameRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakePartitionNameRequest.java index 728e7a91264..f11d5def623 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakePartitionNameRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakePartitionNameRequest.java @@ -185,6 +185,7 @@ public Builder regionId(String regionId) { } /** + *The name of the data catalog.
*This parameter is required.
* * example: @@ -197,6 +198,7 @@ public Builder catalogName(String catalogName) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -209,6 +211,7 @@ public Builder dataRegion(String dataRegion) { } /** + *The database name.
*This parameter is required.
* * example: @@ -221,7 +224,10 @@ public Builder dbName(String dbName) { } /** - * MaxResults. + *The number of records per page. Valid values: 1 to 100.
+ * + * example: + *20
*/ public Builder maxResults(Integer maxResults) { this.putQueryParameter("MaxResults", maxResults); @@ -230,7 +236,14 @@ public Builder maxResults(Integer maxResults) { } /** - * NextToken. + *The pagination token that is used in the next request to retrieve a new page of results. Valid values:
+ *f056501ada12c1cc
*/ public Builder nextToken(String nextToken) { this.putQueryParameter("NextToken", nextToken); @@ -239,6 +252,7 @@ public Builder nextToken(String nextToken) { } /** + *The name of the table.
*This parameter is required.
* * example: @@ -251,7 +265,13 @@ public Builder tableName(String tableName) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the DMS console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -260,7 +280,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakePartitionNameResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakePartitionNameResponseBody.java index cb769db6755..c2306da3980 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakePartitionNameResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakePartitionNameResponseBody.java @@ -132,7 +132,10 @@ private Builder(ListDataLakePartitionNameResponseBody model) { } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -140,7 +143,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -148,7 +154,10 @@ public Builder errorMessage(String errorMessage) { } /** - * MaxResults. + *The number of records per page.
+ * + * example: + *20
*/ public Builder maxResults(Integer maxResults) { this.maxResults = maxResults; @@ -156,7 +165,10 @@ public Builder maxResults(Integer maxResults) { } /** - * NextToken. + *The information about the token.
+ * + * example: + *NesLoKLEdIZrKhDT7I2gS****
*/ public Builder nextToken(String nextToken) { this.nextToken = nextToken; @@ -164,7 +176,7 @@ public Builder nextToken(String nextToken) { } /** - * PartitionNameList. + *The partition names.
*/ public Builder partitionNameList(java.util.ListThe request ID. You can use the request ID to locate logs and troubleshoot issues.
+ * + * example: + *0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -180,7 +195,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakePartitionRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakePartitionRequest.java index 1d0cf97d262..72f13e57f55 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakePartitionRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakePartitionRequest.java @@ -199,6 +199,7 @@ public Builder regionId(String regionId) { } /** + *The name of the data catalog.
*This parameter is required.
* * example: @@ -211,6 +212,7 @@ public Builder catalogName(String catalogName) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -223,6 +225,7 @@ public Builder dataRegion(String dataRegion) { } /** + *The database name.
*This parameter is required.
* * example: @@ -235,7 +238,10 @@ public Builder dbName(String dbName) { } /** - * MaxResults. + *The number of records per page. Valid values: 0 to 100.
+ * + * example: + *20
*/ public Builder maxResults(Integer maxResults) { this.putQueryParameter("MaxResults", maxResults); @@ -244,7 +250,14 @@ public Builder maxResults(Integer maxResults) { } /** - * NextToken. + *The pagination token that is used in the next request to retrieve a new page of results. Valid values:
+ *f056501ada12c1cc
*/ public Builder nextToken(String nextToken) { this.putQueryParameter("NextToken", nextToken); @@ -253,7 +266,7 @@ public Builder nextToken(String nextToken) { } /** - * PartNames. + *The partition names.
*/ public Builder partNames(java.util.ListThe table name.
*This parameter is required.
* * example: @@ -275,7 +289,13 @@ public Builder tableName(String tableName) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -284,7 +304,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakePartitionResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakePartitionResponseBody.java index 0da55d8a6c9..61052ec8d9a 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakePartitionResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakePartitionResponseBody.java @@ -132,7 +132,10 @@ private Builder(ListDataLakePartitionResponseBody model) { } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -140,7 +143,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -148,7 +154,10 @@ public Builder errorMessage(String errorMessage) { } /** - * MaxResults. + *The number of records per page.
+ * + * example: + *20
*/ public Builder maxResults(Integer maxResults) { this.maxResults = maxResults; @@ -156,7 +165,10 @@ public Builder maxResults(Integer maxResults) { } /** - * NextToken. + *The information about the token.
+ * + * example: + *NesLoKLEdIZrKhDT7I2gS****
*/ public Builder nextToken(String nextToken) { this.nextToken = nextToken; @@ -164,7 +176,7 @@ public Builder nextToken(String nextToken) { } /** - * PartitionList. + *The queried partitions.
*/ public Builder partitionList(java.util.ListThe request ID. You can use the ID to query logs and troubleshoot issues.
+ * + * example: + *0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -180,7 +195,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeTableNameRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeTableNameRequest.java index b8640c26c81..c728768a7cc 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeTableNameRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeTableNameRequest.java @@ -198,6 +198,7 @@ public Builder regionId(String regionId) { } /** + *The name of the data catalog.
*This parameter is required.
* * example: @@ -210,6 +211,7 @@ public Builder catalogName(String catalogName) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -222,6 +224,7 @@ public Builder dataRegion(String dataRegion) { } /** + *The database name.
*This parameter is required.
* * example: @@ -234,7 +237,10 @@ public Builder dbName(String dbName) { } /** - * MaxResults. + *The number of records per page. Valid values: 1 to 100.
+ * + * example: + *20
*/ public Builder maxResults(Integer maxResults) { this.putQueryParameter("MaxResults", maxResults); @@ -243,7 +249,14 @@ public Builder maxResults(Integer maxResults) { } /** - * NextToken. + *The pagination token that is used in the next request to retrieve a new page of results. Valid values:
+ *f056501ada12c1cc
*/ public Builder nextToken(String nextToken) { this.putQueryParameter("NextToken", nextToken); @@ -252,7 +265,10 @@ public Builder nextToken(String nextToken) { } /** - * TableNamePattern. + *The regular expression that is used to match the table name.
+ * + * example: + *.*
*/ public Builder tableNamePattern(String tableNamePattern) { this.putQueryParameter("TableNamePattern", tableNamePattern); @@ -261,7 +277,17 @@ public Builder tableNamePattern(String tableNamePattern) { } /** - * TableType. + *The type of the data table. Valid values:
+ *MANAGED_TABLE
*/ public Builder tableType(String tableType) { this.putQueryParameter("TableType", tableType); @@ -270,7 +296,13 @@ public Builder tableType(String tableType) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the DMS console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -279,7 +311,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeTableNameResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeTableNameResponseBody.java index 54cac62c381..bf78cd70604 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeTableNameResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeTableNameResponseBody.java @@ -132,7 +132,10 @@ private Builder(ListDataLakeTableNameResponseBody model) { } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -140,7 +143,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -148,7 +154,10 @@ public Builder errorMessage(String errorMessage) { } /** - * MaxResults. + *The number of records per page.
+ * + * example: + *20
*/ public Builder maxResults(Integer maxResults) { this.maxResults = maxResults; @@ -156,7 +165,10 @@ public Builder maxResults(Integer maxResults) { } /** - * NextToken. + *The information about the token.
+ * + * example: + *NesLoKLEdIZrKhDT7I2gS****
*/ public Builder nextToken(String nextToken) { this.nextToken = nextToken; @@ -164,7 +176,10 @@ public Builder nextToken(String nextToken) { } /** - * RequestId. + *The request ID. You can use the ID to query logs and troubleshoot issues.
+ * + * example: + *C5B8E84B-42B6-4374-AD5A-6264E1753378
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -172,7 +187,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; @@ -180,7 +202,7 @@ public Builder success(Boolean success) { } /** - * TableNameList. + *The table names.
*/ public Builder tableNameList(java.util.ListThe name of the data catalog.
*This parameter is required.
* * example: @@ -210,6 +211,7 @@ public Builder catalogName(String catalogName) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -222,6 +224,7 @@ public Builder dataRegion(String dataRegion) { } /** + *The database name.
*This parameter is required.
* * example: @@ -234,7 +237,10 @@ public Builder dbName(String dbName) { } /** - * MaxResults. + *The number of records per page. Valid values: 1 to 100.
+ * + * example: + *20
*/ public Builder maxResults(Integer maxResults) { this.putQueryParameter("MaxResults", maxResults); @@ -243,7 +249,14 @@ public Builder maxResults(Integer maxResults) { } /** - * NextToken. + *The pagination token that is used in the next request to retrieve a new page of results. Valid values:
+ *f056501ada12c1cc
*/ public Builder nextToken(String nextToken) { this.putQueryParameter("NextToken", nextToken); @@ -252,7 +265,10 @@ public Builder nextToken(String nextToken) { } /** - * TableNamePattern. + *The regular expression that is used to match the names of metadata tables.
+ * + * example: + *.*
*/ public Builder tableNamePattern(String tableNamePattern) { this.putQueryParameter("TableNamePattern", tableNamePattern); @@ -261,7 +277,17 @@ public Builder tableNamePattern(String tableNamePattern) { } /** - * TableType. + *The type of the data table. Valid values:
+ *MANAGED_TABLE
*/ public Builder tableType(String tableType) { this.putQueryParameter("TableType", tableType); @@ -270,7 +296,13 @@ public Builder tableType(String tableType) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the DMS console and move the pointer over the profile picture in the upper-right corner. For more information, see View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -279,7 +311,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeTableResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeTableResponseBody.java index 20b34af42a7..0d026b68442 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeTableResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeTableResponseBody.java @@ -132,7 +132,10 @@ private Builder(ListDataLakeTableResponseBody model) { } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -140,7 +143,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -148,7 +154,10 @@ public Builder errorMessage(String errorMessage) { } /** - * MaxResults. + *The number of records per page.
+ * + * example: + *20
*/ public Builder maxResults(Integer maxResults) { this.maxResults = maxResults; @@ -156,7 +165,10 @@ public Builder maxResults(Integer maxResults) { } /** - * NextToken. + *The information about the token.
+ * + * example: + *NesLoKLEdIZrKhDT7I2gS****
*/ public Builder nextToken(String nextToken) { this.nextToken = nextToken; @@ -164,7 +176,10 @@ public Builder nextToken(String nextToken) { } /** - * RequestId. + *The request ID. You can use the request ID to locate logs and troubleshoot issues.
+ * + * example: + *3D3FB827-E667-50DB-AD59-C83F8237FECB
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -172,7 +187,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; @@ -180,7 +202,7 @@ public Builder success(Boolean success) { } /** - * TableList. + *The details of the tables.
*/ public Builder tableList(java.util.ListThe name of the data catalog to query.
*This parameter is required.
* * example: @@ -197,6 +198,7 @@ public Builder catalogName(String catalogName) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -209,6 +211,7 @@ public Builder dataRegion(String dataRegion) { } /** + *The name of the database to which the table belongs.
*This parameter is required.
* * example: @@ -221,7 +224,10 @@ public Builder dbName(String dbName) { } /** - * Page. + *The page number.
+ * + * example: + *1
*/ public Builder page(Integer page) { this.putQueryParameter("Page", page); @@ -230,7 +236,10 @@ public Builder page(Integer page) { } /** - * Rows. + *The number of entries per page.
+ * + * example: + *10
*/ public Builder rows(Integer rows) { this.putQueryParameter("Rows", rows); @@ -239,7 +248,10 @@ public Builder rows(Integer rows) { } /** - * SearchKey. + *The keyword that is used to search for tables.
+ * + * example: + *test
*/ public Builder searchKey(String searchKey) { this.putQueryParameter("SearchKey", searchKey); @@ -248,7 +260,10 @@ public Builder searchKey(String searchKey) { } /** - * Tid. + *The tenant ID. You can call the GetUserActiveTenant operation to query the tenant ID.
+ * + * example: + *3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -257,7 +272,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeTablebaseInfoResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeTablebaseInfoResponseBody.java index b7f905c983a..5ac99c665de 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeTablebaseInfoResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListDataLakeTablebaseInfoResponseBody.java @@ -119,7 +119,10 @@ private Builder(ListDataLakeTablebaseInfoResponseBody model) { } /** - * ErrorCode. + *The error code returned if the request fails.
+ * + * example: + *400
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -127,7 +130,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message returned if the request failed.
+ * + * example: + *Specified parameter Rows is not valid.
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -135,7 +141,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID.
+ * + * example: + *B43AD641-49C2-5299-9E06-1B37EC1B****
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -143,7 +152,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; @@ -151,7 +167,7 @@ public Builder success(Boolean success) { } /** - * TablebaseInfoList. + *The list of tables in the data lake.
*/ public Builder tablebaseInfoList(java.util.ListThe number of tables that meet the conditions.
+ * + * example: + *100
*/ public Builder totalCount(String totalCount) { this.totalCount = totalCount; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListMetaCategoryRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListMetaCategoryRequest.java index a1e28fa64f2..083f7be4512 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListMetaCategoryRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListMetaCategoryRequest.java @@ -127,6 +127,7 @@ public Builder regionId(String regionId) { } /** + *The number of the page to return. Pages start from page 1.
*This parameter is required.
* * example: @@ -139,6 +140,7 @@ public Builder pageNumber(Integer pageNumber) { } /** + *The number of entries to return on each page.
*This parameter is required.
* * example: @@ -151,7 +153,10 @@ public Builder pageSize(Integer pageSize) { } /** - * ParentCategoryId. + *The parent category ID.
+ * + * example: + *30000322682
*/ public Builder parentCategoryId(Long parentCategoryId) { this.putQueryParameter("ParentCategoryId", parentCategoryId); @@ -160,7 +165,10 @@ public Builder parentCategoryId(Long parentCategoryId) { } /** - * Tid. + *The tenant ID. You can call the GetUserActiveTenant or ListUserTenants operation to query the tenant ID.
+ * + * example: + *3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListMetaCategoryResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListMetaCategoryResponseBody.java index d26bc3b0322..a575028b202 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListMetaCategoryResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListMetaCategoryResponseBody.java @@ -119,7 +119,7 @@ private Builder(ListMetaCategoryResponseBody model) { } /** - * CategoryList. + *The list of categories.
*/ public Builder categoryList(CategoryList categoryList) { this.categoryList = categoryList; @@ -127,7 +127,10 @@ public Builder categoryList(CategoryList categoryList) { } /** - * ErrorCode. + *The error code returned if the request fails.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -135,7 +138,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message returned if the request fails.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -143,7 +149,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The ID of the request.
+ * + * example: + *0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -151,7 +160,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the call was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; @@ -159,7 +175,10 @@ public Builder success(Boolean success) { } /** - * TotalCount. + *The total number of entries returned.
+ * + * example: + *1
*/ public Builder totalCount(Long totalCount) { this.totalCount = totalCount; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListSensitiveColumnInfoRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListSensitiveColumnInfoRequest.java index 895bb362754..c5817dbbf95 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListSensitiveColumnInfoRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListSensitiveColumnInfoRequest.java @@ -167,7 +167,13 @@ public Builder regionId(String regionId) { } /** - * ColumnName. + *The name of the sensitive field. You can call the ListSensitiveColumns operation to query the name of the sensitive field.
+ *+ *+ * + * example: + *You can also call the ListColumns operation to query the name of the sensitive field.
+ *
test_column
*/ public Builder columnName(String columnName) { this.putQueryParameter("ColumnName", columnName); @@ -176,6 +182,7 @@ public Builder columnName(String columnName) { } /** + *The ID of the instance. You can call the ListInstances or GetInstance operation to query the instance ID.
*This parameter is required.
* * example: @@ -188,7 +195,10 @@ public Builder instanceId(Integer instanceId) { } /** - * PageNumber. + *The page number of the returned page.
+ * + * example: + *1
*/ public Builder pageNumber(Integer pageNumber) { this.putQueryParameter("PageNumber", pageNumber); @@ -197,7 +207,10 @@ public Builder pageNumber(Integer pageNumber) { } /** - * PageSize. + *The number of entries to return on each page.
+ * + * example: + *100
*/ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); @@ -206,7 +219,13 @@ public Builder pageSize(Integer pageSize) { } /** - * SchemaName. + *The database name. You can also call the SearchDatabase operation to query the name of the database.
+ *+ *+ * + * example: + *You can also call the ListDatabases operation to query the value of the SchemaName parameter of a physical database, or the ListLogicDatabases operation to query the value of the SchemaName parameter of a logical database.
+ *
test_schema
*/ public Builder schemaName(String schemaName) { this.putQueryParameter("SchemaName", schemaName); @@ -215,7 +234,13 @@ public Builder schemaName(String schemaName) { } /** - * TableName. + *The name of the table. You can call the ListSensitiveColumns operation to query the table name.
+ *+ *+ * + * example: + *You can also call the ListTables operation to query the table name.
+ *
test_table
*/ public Builder tableName(String tableName) { this.putQueryParameter("TableName", tableName); @@ -224,7 +249,13 @@ public Builder tableName(String tableName) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the DMS console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListSensitiveColumnInfoResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListSensitiveColumnInfoResponseBody.java index 8c3e345dbb6..7898be2281d 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListSensitiveColumnInfoResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListSensitiveColumnInfoResponseBody.java @@ -119,7 +119,10 @@ private Builder(ListSensitiveColumnInfoResponseBody model) { } /** - * ErrorCode. + *The error code returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -127,7 +130,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -135,7 +141,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID. You can use the request ID to locate logs and troubleshoot issues.
+ * + * example: + *0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -143,7 +152,7 @@ public Builder requestId(String requestId) { } /** - * SensitiveColumnList. + *The details of the sensitive field.
*/ public Builder sensitiveColumnList(SensitiveColumnList sensitiveColumnList) { this.sensitiveColumnList = sensitiveColumnList; @@ -151,7 +160,14 @@ public Builder sensitiveColumnList(SensitiveColumnList sensitiveColumnList) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; @@ -159,7 +175,10 @@ public Builder success(Boolean success) { } /** - * TotalCount. + *The total number of entries that are returned.
+ * + * example: + *1
*/ public Builder totalCount(Long totalCount) { this.totalCount = totalCount; @@ -225,7 +244,10 @@ private Builder(DefaultDesensitizationRule model) { } /** - * RuleId. + *The masking algorithm ID.
+ * + * example: + *101**
*/ public Builder ruleId(Long ruleId) { this.ruleId = ruleId; @@ -233,7 +255,10 @@ public Builder ruleId(Long ruleId) { } /** - * RuleName. + *The masking algorithm name.
+ * + * example: + *test
*/ public Builder ruleName(String ruleName) { this.ruleName = ruleName; @@ -300,7 +325,10 @@ private Builder(SemiDesensitizationRule model) { } /** - * RuleId. + *The ID of the partial masking algorithm.
+ * + * example: + *10***
*/ public Builder ruleId(Long ruleId) { this.ruleId = ruleId; @@ -308,7 +336,10 @@ public Builder ruleId(Long ruleId) { } /** - * RuleName. + *The partial masking algorithm name.
+ * + * example: + *test01
*/ public Builder ruleName(String ruleName) { this.ruleName = ruleName; @@ -546,7 +577,7 @@ private Builder(SensitiveColumn model) { } /** - * CategoryName. + *The name of the category.
*/ public Builder categoryName(String categoryName) { this.categoryName = categoryName; @@ -554,7 +585,10 @@ public Builder categoryName(String categoryName) { } /** - * ColumnName. + *The name of the sensitive field.
+ * + * example: + *test_column
*/ public Builder columnName(String columnName) { this.columnName = columnName; @@ -562,7 +596,7 @@ public Builder columnName(String columnName) { } /** - * DefaultDesensitizationRule. + *The information about the default masking algorithm.
*/ public Builder defaultDesensitizationRule(DefaultDesensitizationRule defaultDesensitizationRule) { this.defaultDesensitizationRule = defaultDesensitizationRule; @@ -570,7 +604,10 @@ public Builder defaultDesensitizationRule(DefaultDesensitizationRule defaultDese } /** - * InstanceId. + *The ID of the instance.
+ * + * example: + *183****
*/ public Builder instanceId(Integer instanceId) { this.instanceId = instanceId; @@ -578,7 +615,10 @@ public Builder instanceId(Integer instanceId) { } /** - * IsPlain. + *Indicates whether the sensitive field is displayed in plaintext.
+ * + * example: + *False
*/ public Builder isPlain(Boolean isPlain) { this.isPlain = isPlain; @@ -586,7 +626,7 @@ public Builder isPlain(Boolean isPlain) { } /** - * SampleData. + *The sample data.
*/ public Builder sampleData(String sampleData) { this.sampleData = sampleData; @@ -594,7 +634,10 @@ public Builder sampleData(String sampleData) { } /** - * SchemaName. + *The name of the database.
+ * + * example: + *test_schema
*/ public Builder schemaName(String schemaName) { this.schemaName = schemaName; @@ -602,7 +645,12 @@ public Builder schemaName(String schemaName) { } /** - * SecurityLevel. + *The sensitivity level of the field. Valid values:
+ *The list of partial masking algorithms.
*/ public Builder semiDesensitizationRuleList(SemiDesensitizationRuleList semiDesensitizationRuleList) { this.semiDesensitizationRuleList = semiDesensitizationRuleList; @@ -618,7 +666,10 @@ public Builder semiDesensitizationRuleList(SemiDesensitizationRuleList semiDesen } /** - * TableName. + *The name of the table.
+ * + * example: + *test_table
*/ public Builder tableName(String tableName) { this.tableName = tableName; @@ -626,7 +677,10 @@ public Builder tableName(String tableName) { } /** - * UserSensitivityLevel. + *The user-defined sensitivity level.
+ * + * example: + *S1
*/ public Builder userSensitivityLevel(String userSensitivityLevel) { this.userSensitivityLevel = userSensitivityLevel; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListTableColumnsRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListTableColumnsRequest.java index 1a41c3ec592..9ad8c1425d9 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListTableColumnsRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListTableColumnsRequest.java @@ -126,6 +126,7 @@ public Builder regionId(String regionId) { } /** + *The ID of a physical database: You can call the ListDatabases or SearchDatabase operation to obtain the physical database ID.
*This parameter is required.
* * example: @@ -138,6 +139,10 @@ public Builder dbId(Integer dbId) { } /** + *The table name.
+ *+ **You can also call the ListTables operation to query the table name.
+ *
This parameter is required.
* * example: @@ -150,7 +155,10 @@ public Builder tableName(String tableName) { } /** - * TableSchemaName. + *The schema name of the table, which is required only for SQL Server instances.
+ * + * example: + *dbo
*/ public Builder tableSchemaName(String tableSchemaName) { this.putQueryParameter("TableSchemaName", tableSchemaName); @@ -159,7 +167,10 @@ public Builder tableSchemaName(String tableSchemaName) { } /** - * Tid. + *The tenant ID. You can call the GetUserActiveTenant or ListUserTenants operation to obtain the tenant ID.
+ * + * example: + *3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListTableColumnsResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListTableColumnsResponseBody.java index 5c0b3a61a7a..7512909a741 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListTableColumnsResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListTableColumnsResponseBody.java @@ -106,7 +106,7 @@ private Builder(ListTableColumnsResponseBody model) { } /** - * ColumnList. + *The details about fields in the table.
*/ public Builder columnList(ColumnList columnList) { this.columnList = columnList; @@ -114,7 +114,10 @@ public Builder columnList(ColumnList columnList) { } /** - * ErrorCode. + *The error code returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -122,7 +125,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -130,7 +136,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID.
+ * + * example: + *0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -138,7 +147,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; @@ -347,7 +363,14 @@ private Builder(Column model) { } /** - * AutoIncrement. + *Indicates whether the field is an auto-increment field. Valid values:
+ *false
*/ public Builder autoIncrement(Boolean autoIncrement) { this.autoIncrement = autoIncrement; @@ -355,7 +378,10 @@ public Builder autoIncrement(Boolean autoIncrement) { } /** - * ColumnId. + *The ID of the field.
+ * + * example: + *12345
*/ public Builder columnId(String columnId) { this.columnId = columnId; @@ -363,7 +389,10 @@ public Builder columnId(String columnId) { } /** - * ColumnName. + *The field name.
+ * + * example: + *c1
*/ public Builder columnName(String columnName) { this.columnName = columnName; @@ -371,7 +400,10 @@ public Builder columnName(String columnName) { } /** - * ColumnType. + *The data type of the field.
+ * + * example: + *varchar
*/ public Builder columnType(String columnType) { this.columnType = columnType; @@ -379,7 +411,10 @@ public Builder columnType(String columnType) { } /** - * DataLength. + *The length of the field.
+ * + * example: + *32
*/ public Builder dataLength(Long dataLength) { this.dataLength = dataLength; @@ -387,7 +422,10 @@ public Builder dataLength(Long dataLength) { } /** - * DataPrecision. + *The number of valid digits for the column.
+ * + * example: + *0
*/ public Builder dataPrecision(Integer dataPrecision) { this.dataPrecision = dataPrecision; @@ -395,7 +433,10 @@ public Builder dataPrecision(Integer dataPrecision) { } /** - * DataScale. + *The number of decimal places of the field data.
+ * + * example: + *0
*/ public Builder dataScale(Integer dataScale) { this.dataScale = dataScale; @@ -403,7 +444,10 @@ public Builder dataScale(Integer dataScale) { } /** - * DefaultValue. + *The default value of the column.
+ * + * example: + *aaa
*/ public Builder defaultValue(String defaultValue) { this.defaultValue = defaultValue; @@ -411,7 +455,10 @@ public Builder defaultValue(String defaultValue) { } /** - * Description. + *The description of the field.
+ * + * example: + *column desc
*/ public Builder description(String description) { this.description = description; @@ -419,7 +466,16 @@ public Builder description(String description) { } /** - * FunctionType. + *The type of the masking algorithm that is used for the field. Valid values:
+ *NULL
*/ public Builder functionType(String functionType) { this.functionType = functionType; @@ -427,7 +483,14 @@ public Builder functionType(String functionType) { } /** - * Nullable. + *Indicates whether the field can be empty. Valid values:
+ *true
*/ public Builder nullable(Boolean nullable) { this.nullable = nullable; @@ -435,7 +498,15 @@ public Builder nullable(Boolean nullable) { } /** - * SecurityLevel. + *The security level of the field. Valid values:
+ *INNER
*/ public Builder securityLevel(String securityLevel) { this.securityLevel = securityLevel; @@ -443,7 +514,14 @@ public Builder securityLevel(String securityLevel) { } /** - * Sensitive. + *Indicates whether the field is a sensitive column. Valid values:
+ *false
*/ public Builder sensitive(Boolean sensitive) { this.sensitive = sensitive; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListTablesInCategoryRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListTablesInCategoryRequest.java index b1fb3cf6462..888522065c9 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListTablesInCategoryRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListTablesInCategoryRequest.java @@ -128,6 +128,7 @@ public Builder regionId(String regionId) { } /** + *The category ID.
*This parameter is required.
* * example: @@ -140,6 +141,7 @@ public Builder categoryId(Long categoryId) { } /** + *The page number.
*This parameter is required.
* * example: @@ -152,6 +154,7 @@ public Builder pageNumber(Integer pageNumber) { } /** + *The number of entries to return per page.
*This parameter is required.
* * example: @@ -164,7 +167,10 @@ public Builder pageSize(Integer pageSize) { } /** - * Tid. + *The ID of the tenant. You can call the GetUserActiveTenant or ListUserTenants operation to obtain the tenant ID.
+ * + * example: + *3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListTablesInCategoryResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListTablesInCategoryResponseBody.java index b8f091b76aa..f0bdc1885e3 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListTablesInCategoryResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListTablesInCategoryResponseBody.java @@ -119,7 +119,7 @@ private Builder(ListTablesInCategoryResponseBody model) { } /** - * EntityList. + *List of table information associated with the asset category.
*/ public Builder entityList(EntityList entityList) { this.entityList = entityList; @@ -127,7 +127,10 @@ public Builder entityList(EntityList entityList) { } /** - * ErrorCode. + *The error code returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -135,7 +138,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -143,7 +149,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID.
+ * + * example: + *0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -151,7 +160,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; @@ -159,7 +175,10 @@ public Builder success(Boolean success) { } /** - * TotalCount. + *The total number of entries returned.
+ * + * example: + *1
*/ public Builder totalCount(Long totalCount) { this.totalCount = totalCount; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListUserOwnedResourcesRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListUserOwnedResourcesRequest.java new file mode 100644 index 00000000000..67578700201 --- /dev/null +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListUserOwnedResourcesRequest.java @@ -0,0 +1,337 @@ +// This file is auto-generated, don't edit it. Thanks. +package com.aliyun.sdk.service.dms_enterprise20181101.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 ListUserOwnedResourcesRequest} extends {@link RequestModel} + * + *ListUserOwnedResourcesRequest
+ */ +public class ListUserOwnedResourcesRequest extends Request { + @com.aliyun.core.annotation.Host + @com.aliyun.core.annotation.NameInMap("RegionId") + private String regionId; + + @com.aliyun.core.annotation.Query + @com.aliyun.core.annotation.NameInMap("DatabaseName") + private String databaseName; + + @com.aliyun.core.annotation.Query + @com.aliyun.core.annotation.NameInMap("DbType") + private String dbType; + + @com.aliyun.core.annotation.Query + @com.aliyun.core.annotation.NameInMap("EnvType") + private String envType; + + @com.aliyun.core.annotation.Query + @com.aliyun.core.annotation.NameInMap("Logic") + private Boolean logic; + + @com.aliyun.core.annotation.Query + @com.aliyun.core.annotation.NameInMap("OwnerType") + @com.aliyun.core.annotation.Validation(required = true) + private String ownerType; + + @com.aliyun.core.annotation.Query + @com.aliyun.core.annotation.NameInMap("PageNumber") + private Integer pageNumber; + + @com.aliyun.core.annotation.Query + @com.aliyun.core.annotation.NameInMap("PageSize") + private Integer pageSize; + + @com.aliyun.core.annotation.Query + @com.aliyun.core.annotation.NameInMap("Tid") + private Long tid; + + @com.aliyun.core.annotation.Query + @com.aliyun.core.annotation.NameInMap("UserId") + @com.aliyun.core.annotation.Validation(required = true) + private String userId; + + private ListUserOwnedResourcesRequest(Builder builder) { + super(builder); + this.regionId = builder.regionId; + this.databaseName = builder.databaseName; + this.dbType = builder.dbType; + this.envType = builder.envType; + this.logic = builder.logic; + this.ownerType = builder.ownerType; + this.pageNumber = builder.pageNumber; + this.pageSize = builder.pageSize; + this.tid = builder.tid; + this.userId = builder.userId; + } + + public static Builder builder() { + return new Builder(); + } + + public static ListUserOwnedResourcesRequest create() { + return builder().build(); + } + +@Override + public Builder toBuilder() { + return new Builder(this); + } + + /** + * @return regionId + */ + public String getRegionId() { + return this.regionId; + } + + /** + * @return databaseName + */ + public String getDatabaseName() { + return this.databaseName; + } + + /** + * @return dbType + */ + public String getDbType() { + return this.dbType; + } + + /** + * @return envType + */ + public String getEnvType() { + return this.envType; + } + + /** + * @return logic + */ + public Boolean getLogic() { + return this.logic; + } + + /** + * @return ownerType + */ + public String getOwnerType() { + return this.ownerType; + } + + /** + * @return pageNumber + */ + public Integer getPageNumber() { + return this.pageNumber; + } + + /** + * @return pageSize + */ + public Integer getPageSize() { + return this.pageSize; + } + + /** + * @return tid + */ + public Long getTid() { + return this.tid; + } + + /** + * @return userId + */ + public String getUserId() { + return this.userId; + } + + public static final class Builder extends Request.BuilderThe database name.
+ * + * example: + *db_name
+ */ + public Builder databaseName(String databaseName) { + this.putQueryParameter("DatabaseName", databaseName); + this.databaseName = databaseName; + return this; + } + + /** + *The type of the database instance. For more information about the valid values of this parameter, see DbType parameter.
+ * + * example: + *MYSQL
+ */ + public Builder dbType(String dbType) { + this.putQueryParameter("DbType", dbType); + this.dbType = dbType; + return this; + } + + /** + *The type of the environment in which the database instance is deployed. Valid values:
+ *product
+ */ + public Builder envType(String envType) { + this.putQueryParameter("EnvType", envType); + this.envType = envType; + return this; + } + + /** + *Specifies whether the database is a logical database. Valid values:
+ *false
+ */ + public Builder logic(Boolean logic) { + this.putQueryParameter("Logic", logic); + this.logic = logic; + return this; + } + + /** + *The type of the owner. Valid values:
+ *This parameter is required.
+ * + * example: + *INSTANCE
+ */ + public Builder ownerType(String ownerType) { + this.putQueryParameter("OwnerType", ownerType); + this.ownerType = ownerType; + return this; + } + + /** + *The page number.
+ * + * example: + *1
+ */ + public Builder pageNumber(Integer pageNumber) { + this.putQueryParameter("PageNumber", pageNumber); + this.pageNumber = pageNumber; + return this; + } + + /** + *The number of entries to return on each page.
+ * + * example: + *10
+ */ + public Builder pageSize(Integer pageSize) { + this.putQueryParameter("PageSize", pageSize); + this.pageSize = pageSize; + return this; + } + + /** + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
+ */ + public Builder tid(Long tid) { + this.putQueryParameter("Tid", tid); + this.tid = tid; + return this; + } + + /** + *The ID of the user.
+ *This parameter is required.
+ * + * example: + *1***
+ */ + public Builder userId(String userId) { + this.putQueryParameter("UserId", userId); + this.userId = userId; + return this; + } + + @Override + public ListUserOwnedResourcesRequest build() { + return new ListUserOwnedResourcesRequest(this); + } + + } + +} diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListUserOwnedResourcesResponse.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListUserOwnedResourcesResponse.java new file mode 100644 index 00000000000..ab9fd43718c --- /dev/null +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListUserOwnedResourcesResponse.java @@ -0,0 +1,131 @@ +// This file is auto-generated, don't edit it. Thanks. +package com.aliyun.sdk.service.dms_enterprise20181101.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 ListUserOwnedResourcesResponse} extends {@link TeaModel} + * + *ListUserOwnedResourcesResponse
+ */ +public class ListUserOwnedResourcesResponse extends Response { + @com.aliyun.core.annotation.NameInMap("headers") + private java.util.MapListUserOwnedResourcesResponseBody
+ */ +public class ListUserOwnedResourcesResponseBody 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("RequestId") + private String requestId; + + @com.aliyun.core.annotation.NameInMap("Success") + private Boolean success; + + @com.aliyun.core.annotation.NameInMap("TotalCount") + private Long totalCount; + + private ListUserOwnedResourcesResponseBody(Builder builder) { + this.data = builder.data; + this.errorCode = builder.errorCode; + this.errorMessage = builder.errorMessage; + this.requestId = builder.requestId; + this.success = builder.success; + this.totalCount = builder.totalCount; + } + + public static Builder builder() { + return new Builder(); + } + + public static ListUserOwnedResourcesResponseBody create() { + return builder().build(); + } + + public Builder toBuilder() { + return new Builder(this); + } + + /** + * @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 requestId + */ + public String getRequestId() { + return this.requestId; + } + + /** + * @return success + */ + public Boolean getSuccess() { + return this.success; + } + + /** + * @return totalCount + */ + public Long getTotalCount() { + return this.totalCount; + } + + public static final class Builder { + private Data data; + private String errorCode; + private String errorMessage; + private String requestId; + private Boolean success; + private Long totalCount; + + private Builder() { + } + + private Builder(ListUserOwnedResourcesResponseBody model) { + this.data = model.data; + this.errorCode = model.errorCode; + this.errorMessage = model.errorMessage; + this.requestId = model.requestId; + this.success = model.success; + this.totalCount = model.totalCount; + } + + /** + *Indicates whether the request was successful. Valid values:
+ */ + public Builder data(Data data) { + this.data = data; + return this; + } + + /** + *The error code returned if the request failed.
+ * + * example: + *UnknownError
+ */ + public Builder errorCode(String errorCode) { + this.errorCode = errorCode; + return this; + } + + /** + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
+ */ + public Builder errorMessage(String errorMessage) { + this.errorMessage = errorMessage; + return this; + } + + /** + *The request ID. You can use the request ID to locate logs and troubleshoot issues.
+ * + * example: + *8E88933E-E3D4-5BA8-8CBF-0A1CAE666690
+ */ + public Builder requestId(String requestId) { + this.requestId = requestId; + return this; + } + + /** + *Indicates whether the request was successful.
+ * + * example: + *true
+ */ + public Builder success(Boolean success) { + this.success = success; + return this; + } + + /** + *The total number of entries returned. By default, this parameter is not returned.
+ * + * example: + *1
+ */ + public Builder totalCount(Long totalCount) { + this.totalCount = totalCount; + return this; + } + + public ListUserOwnedResourcesResponseBody build() { + return new ListUserOwnedResourcesResponseBody(this); + } + + } + + /** + * + * {@link ListUserOwnedResourcesResponseBody} extends {@link TeaModel} + * + *ListUserOwnedResourcesResponseBody
+ */ + public static class ResourceList extends TeaModel { + @com.aliyun.core.annotation.NameInMap("Alias") + private String alias; + + @com.aliyun.core.annotation.NameInMap("DbId") + private String dbId; + + @com.aliyun.core.annotation.NameInMap("DbInstanceId") + private String dbInstanceId; + + @com.aliyun.core.annotation.NameInMap("DbType") + private String dbType; + + @com.aliyun.core.annotation.NameInMap("EnvType") + private String envType; + + @com.aliyun.core.annotation.NameInMap("Host") + private String host; + + @com.aliyun.core.annotation.NameInMap("InstanceId") + private String instanceId; + + @com.aliyun.core.annotation.NameInMap("Logic") + private Boolean logic; + + @com.aliyun.core.annotation.NameInMap("Port") + private Long port; + + @com.aliyun.core.annotation.NameInMap("SchemaName") + private String schemaName; + + @com.aliyun.core.annotation.NameInMap("SearchName") + private String searchName; + + @com.aliyun.core.annotation.NameInMap("TableId") + private String tableId; + + @com.aliyun.core.annotation.NameInMap("TableName") + private String tableName; + + private ResourceList(Builder builder) { + this.alias = builder.alias; + this.dbId = builder.dbId; + this.dbInstanceId = builder.dbInstanceId; + this.dbType = builder.dbType; + this.envType = builder.envType; + this.host = builder.host; + this.instanceId = builder.instanceId; + this.logic = builder.logic; + this.port = builder.port; + this.schemaName = builder.schemaName; + this.searchName = builder.searchName; + this.tableId = builder.tableId; + this.tableName = builder.tableName; + } + + public static Builder builder() { + return new Builder(); + } + + public static ResourceList create() { + return builder().build(); + } + + /** + * @return alias + */ + public String getAlias() { + return this.alias; + } + + /** + * @return dbId + */ + public String getDbId() { + return this.dbId; + } + + /** + * @return dbInstanceId + */ + public String getDbInstanceId() { + return this.dbInstanceId; + } + + /** + * @return dbType + */ + public String getDbType() { + return this.dbType; + } + + /** + * @return envType + */ + public String getEnvType() { + return this.envType; + } + + /** + * @return host + */ + public String getHost() { + return this.host; + } + + /** + * @return instanceId + */ + public String getInstanceId() { + return this.instanceId; + } + + /** + * @return logic + */ + public Boolean getLogic() { + return this.logic; + } + + /** + * @return port + */ + public Long getPort() { + return this.port; + } + + /** + * @return schemaName + */ + public String getSchemaName() { + return this.schemaName; + } + + /** + * @return searchName + */ + public String getSearchName() { + return this.searchName; + } + + /** + * @return tableId + */ + public String getTableId() { + return this.tableId; + } + + /** + * @return tableName + */ + public String getTableName() { + return this.tableName; + } + + public static final class Builder { + private String alias; + private String dbId; + private String dbInstanceId; + private String dbType; + private String envType; + private String host; + private String instanceId; + private Boolean logic; + private Long port; + private String schemaName; + private String searchName; + private String tableId; + private String tableName; + + private Builder() { + } + + private Builder(ResourceList model) { + this.alias = model.alias; + this.dbId = model.dbId; + this.dbInstanceId = model.dbInstanceId; + this.dbType = model.dbType; + this.envType = model.envType; + this.host = model.host; + this.instanceId = model.instanceId; + this.logic = model.logic; + this.port = model.port; + this.schemaName = model.schemaName; + this.searchName = model.searchName; + this.tableId = model.tableId; + this.tableName = model.tableName; + } + + /** + *The alias of the instance.
+ * + * example: + *DMS_GYX_TESTupdata
+ */ + public Builder alias(String alias) { + this.alias = alias; + return this; + } + + /** + *The ID of the database in DMS.
+ * + * example: + *29697059
+ */ + public Builder dbId(String dbId) { + this.dbId = dbId; + return this; + } + + /** + *The ID of the instance to which the database belongs.
+ * + * example: + *876XXX
+ */ + public Builder dbInstanceId(String dbInstanceId) { + this.dbInstanceId = dbInstanceId; + return this; + } + + /** + *The database engine type. For more information about the valid values of the DbType parameter, see DbType parameter.
+ * + * example: + *MySQL
+ */ + public Builder dbType(String dbType) { + this.dbType = dbType; + return this; + } + + /** + *The type of the environment to which the database instance belongs.
+ * + * example: + *product
+ */ + public Builder envType(String envType) { + this.envType = envType; + return this; + } + + /** + *The endpoint of the instance to which the database belongs.
+ * + * example: + *rm-wz98bw60x1i1303c5.mysql.rds.aliyuncs.com
+ */ + public Builder host(String host) { + this.host = host; + return this; + } + + /** + *The ID of the instance.
+ * + * example: + *291594
+ */ + public Builder instanceId(String instanceId) { + this.instanceId = instanceId; + return this; + } + + /** + *Indicates whether the database is a logical database. Valid values:
+ *false
+ */ + public Builder logic(Boolean logic) { + this.logic = logic; + return this; + } + + /** + *The connection port of the instance to which the database belongs.
+ * + * example: + *6379
+ */ + public Builder port(Long port) { + this.port = port; + return this; + } + + /** + *The name of the database.
+ * + * example: + *as_task_engine
+ */ + public Builder schemaName(String schemaName) { + this.schemaName = schemaName; + return this; + } + + /** + *The query name of the database.
+ * + * example: + *dtstest [dtstest_dms]
+ */ + public Builder searchName(String searchName) { + this.searchName = searchName; + return this; + } + + /** + *The table ID.
+ * + * example: + *1760934555
+ */ + public Builder tableId(String tableId) { + this.tableId = tableId; + return this; + } + + /** + *The table name.
+ * + * example: + *addepmap
+ */ + public Builder tableName(String tableName) { + this.tableName = tableName; + return this; + } + + public ResourceList build() { + return new ResourceList(this); + } + + } + + } + /** + * + * {@link ListUserOwnedResourcesResponseBody} extends {@link TeaModel} + * + *ListUserOwnedResourcesResponseBody
+ */ + public static class Data extends TeaModel { + @com.aliyun.core.annotation.NameInMap("resourceList") + private java.util.ListSpecifies whether the current user has joined the workspace.
+ * + * example: + *true
*/ public Builder alreadyJoined(Boolean alreadyJoined) { this.putQueryParameter("AlreadyJoined", alreadyJoined); @@ -212,7 +215,10 @@ public Builder ownerId(Long ownerId) { } /** - * PageNumber. + *The page number.
+ * + * example: + *1
*/ public Builder pageNumber(Integer pageNumber) { this.putQueryParameter("PageNumber", pageNumber); @@ -221,7 +227,10 @@ public Builder pageNumber(Integer pageNumber) { } /** - * PageSize. + *The number of entries per page.
+ * + * example: + *10
*/ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); @@ -230,7 +239,10 @@ public Builder pageSize(Integer pageSize) { } /** - * Region. + *The region in which the bucket is located.
+ * + * example: + *cn-hangzhou
*/ public Builder region(String region) { this.putQueryParameter("Region", region); @@ -239,7 +251,10 @@ public Builder region(String region) { } /** - * SearchKey. + *The search keyword. Fuzzy match is supported.
+ * + * example: + *poc_test
*/ public Builder searchKey(String searchKey) { this.putQueryParameter("SearchKey", searchKey); @@ -248,7 +263,10 @@ public Builder searchKey(String searchKey) { } /** - * ServiceAccountId. + *The service account ID.
+ * + * example: + *12345
*/ public Builder serviceAccountId(Long serviceAccountId) { this.putQueryParameter("ServiceAccountId", serviceAccountId); @@ -257,7 +275,13 @@ public Builder serviceAccountId(Long serviceAccountId) { } /** - * VpcId. + *The virtual private cloud (VPC) ID.
+ *+ *+ * + * example: + *This parameter cannot be used as a filter.
+ *
vpc-bp10wnlcmor****
*/ public Builder vpcId(String vpcId) { this.putQueryParameter("VpcId", vpcId); @@ -266,7 +290,10 @@ public Builder vpcId(String vpcId) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListWorkspacesResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListWorkspacesResponseBody.java index 767f43daa03..1c1cb3877aa 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListWorkspacesResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ListWorkspacesResponseBody.java @@ -145,7 +145,7 @@ private Builder(ListWorkspacesResponseBody model) { } /** - * Data. + *The dataset.
*/ public Builder data(Data data) { this.data = data; @@ -153,7 +153,10 @@ public Builder data(Data data) { } /** - * ErrorCode. + *The error code.
+ * + * example: + *UserNotExist
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -161,7 +164,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -169,7 +175,10 @@ public Builder errorMessage(String errorMessage) { } /** - * MaxResults. + *The total number of workspaces that meet the condition, which is the same as the TotalCount parameter.
+ * + * example: + *10
*/ public Builder maxResults(Integer maxResults) { this.maxResults = maxResults; @@ -177,7 +186,10 @@ public Builder maxResults(Integer maxResults) { } /** - * NextToken. + *NextToken does not take effect.
+ * + * example: + *token-xxx
*/ public Builder nextToken(String nextToken) { this.nextToken = nextToken; @@ -185,7 +197,10 @@ public Builder nextToken(String nextToken) { } /** - * RequestId. + *The request ID.
+ * + * example: + *EE214ECD-4330-503A-82F0-FFB03975****
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -193,7 +208,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the call was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; @@ -201,7 +223,10 @@ public Builder success(Boolean success) { } /** - * TotalCount. + *The total number of workspaces that meet the conditions.
+ * + * example: + *10
*/ public Builder totalCount(Long totalCount) { this.totalCount = totalCount; @@ -488,7 +513,10 @@ private Builder(BaseWorkspaces model) { } /** - * AlreadyJoined. + *Whether the current user has joined the workspace.
+ * + * example: + *true
*/ public Builder alreadyJoined(Boolean alreadyJoined) { this.alreadyJoined = alreadyJoined; @@ -496,7 +524,10 @@ public Builder alreadyJoined(Boolean alreadyJoined) { } /** - * CreatorId. + *The ID of the creator.
+ * + * example: + *123
*/ public Builder creatorId(Long creatorId) { this.creatorId = creatorId; @@ -504,7 +535,10 @@ public Builder creatorId(Long creatorId) { } /** - * CreatorNickName. + *The nickname of the creator.
+ * + * example: + *work*****
*/ public Builder creatorNickName(String creatorNickName) { this.creatorNickName = creatorNickName; @@ -512,7 +546,10 @@ public Builder creatorNickName(String creatorNickName) { } /** - * CreatorUid. + *The Alibaba Cloud account UID of the creator.
+ * + * example: + *1344****
*/ public Builder creatorUid(String creatorUid) { this.creatorUid = creatorUid; @@ -520,7 +557,10 @@ public Builder creatorUid(String creatorUid) { } /** - * Description. + *The description of the workspace.
+ * + * example: + *Test
*/ public Builder description(String description) { this.description = description; @@ -528,7 +568,10 @@ public Builder description(String description) { } /** - * GmtCreate. + *The creation time.
+ * + * example: + *2025-01-01 00:00:00
*/ public Builder gmtCreate(String gmtCreate) { this.gmtCreate = gmtCreate; @@ -536,7 +579,10 @@ public Builder gmtCreate(String gmtCreate) { } /** - * GmtModified. + *The update time.
+ * + * example: + *2025-01-01 00:00:00
*/ public Builder gmtModified(String gmtModified) { this.gmtModified = gmtModified; @@ -544,7 +590,10 @@ public Builder gmtModified(String gmtModified) { } /** - * Name. + *The name of the workspace.
+ * + * example: + *workspace-xxxx
*/ public Builder name(String name) { this.name = name; @@ -552,7 +601,10 @@ public Builder name(String name) { } /** - * OwnerId. + *The owner ID.
+ * + * example: + *123****
*/ public Builder ownerId(Long ownerId) { this.ownerId = ownerId; @@ -560,7 +612,10 @@ public Builder ownerId(Long ownerId) { } /** - * OwnerNickName. + *The nickname of the owner.
+ * + * example: + *hel****
*/ public Builder ownerNickName(String ownerNickName) { this.ownerNickName = ownerNickName; @@ -568,7 +623,10 @@ public Builder ownerNickName(String ownerNickName) { } /** - * OwnerUid. + *The Alibaba Cloud UID of the owner.
+ * + * example: + *15608564799****
*/ public Builder ownerUid(String ownerUid) { this.ownerUid = ownerUid; @@ -576,7 +634,10 @@ public Builder ownerUid(String ownerUid) { } /** - * Region. + *The region ID.
+ * + * example: + *cn-hangzhou
*/ public Builder region(String region) { this.region = region; @@ -584,7 +645,10 @@ public Builder region(String region) { } /** - * ServiceAccountId. + *The ID of the service account.
+ * + * example: + *12345
*/ public Builder serviceAccountId(Long serviceAccountId) { this.serviceAccountId = serviceAccountId; @@ -592,7 +656,10 @@ public Builder serviceAccountId(Long serviceAccountId) { } /** - * ServiceAccountNickName. + *The nickname of the service account.
+ * + * example: + *testname
*/ public Builder serviceAccountNickName(String serviceAccountNickName) { this.serviceAccountNickName = serviceAccountNickName; @@ -600,7 +667,10 @@ public Builder serviceAccountNickName(String serviceAccountNickName) { } /** - * ServiceAccountUid. + *The Alibaba Cloud account UID of the service account.
+ * + * example: + *1422****
*/ public Builder serviceAccountUid(String serviceAccountUid) { this.serviceAccountUid = serviceAccountUid; @@ -608,7 +678,10 @@ public Builder serviceAccountUid(String serviceAccountUid) { } /** - * TenantId. + *The ID of the tenant to which the workspace belongs.
+ * + * example: + *23456
*/ public Builder tenantId(Long tenantId) { this.tenantId = tenantId; @@ -616,7 +689,10 @@ public Builder tenantId(Long tenantId) { } /** - * VpcId. + *The VPC ID.
+ * + * example: + *vpc-25fl3qjqb****
*/ public Builder vpcId(String vpcId) { this.vpcId = vpcId; @@ -624,7 +700,10 @@ public Builder vpcId(String vpcId) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *8652340494****
*/ public Builder workspaceId(Long workspaceId) { this.workspaceId = workspaceId; @@ -632,7 +711,10 @@ public Builder workspaceId(Long workspaceId) { } /** - * WorkspaceName. + *The name of the workspace.
+ * + * example: + *test-workspace
*/ public Builder workspaceName(String workspaceName) { this.workspaceName = workspaceName; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ModifyInstanceRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ModifyInstanceRequest.java index 33c48f9ab4e..170db2b90d8 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ModifyInstanceRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ModifyInstanceRequest.java @@ -490,7 +490,20 @@ public Builder regionId(String regionId) { } /** - * DataLinkName. + *The name of the database link for cross-database queries.
+ *+ *+ *
This property must be specified when UseDsql is set to 1.
+ *The name can contain only lowercase letters and underscores (_).
+ *The name must be unique within a tenant.
+ *dblink_test
*/ public Builder dataLinkName(String dataLinkName) { this.putQueryParameter("DataLinkName", dataLinkName); @@ -499,7 +512,10 @@ public Builder dataLinkName(String dataLinkName) { } /** - * DatabasePassword. + *The password of the account that is used to log on to the database instance.
+ * + * example: + *test***
*/ public Builder databasePassword(String databasePassword) { this.putQueryParameter("DatabasePassword", databasePassword); @@ -508,7 +524,10 @@ public Builder databasePassword(String databasePassword) { } /** - * DatabaseUser. + *The account that is used to log on to the database instance.
+ * + * example: + *testsdb
*/ public Builder databaseUser(String databaseUser) { this.putQueryParameter("DatabaseUser", databaseUser); @@ -517,7 +536,10 @@ public Builder databaseUser(String databaseUser) { } /** - * DbaId. + *The ID of the user who assumes the database administrator (DBA) role. You can call the ListUsers or GetInstance operation to obtain the value of this parameter.
+ * + * example: + *27****
*/ public Builder dbaId(Long dbaId) { this.putQueryParameter("DbaId", dbaId); @@ -526,7 +548,18 @@ public Builder dbaId(Long dbaId) { } /** - * DdlOnline. + *Specifies whether to enable lock-free schema change. Valid values:
+ *+ *+ * + * example: + *Supported databases include ApsaraDB RDS for MySQL, PolarDB for MySQL, ApsaraDB MyBase for MySQL, and third-party MySQL databases.
+ *
2
*/ public Builder ddlOnline(Integer ddlOnline) { this.putQueryParameter("DdlOnline", ddlOnline); @@ -535,7 +568,13 @@ public Builder ddlOnline(Integer ddlOnline) { } /** - * EcsInstanceId. + *The ID of the ECS instance.
+ *+ *+ * + * example: + *This parameter is required if InstanceSource is set to ECS_OWN.
+ *
i-2zei9gs1t7h8l7ac****
*/ public Builder ecsInstanceId(String ecsInstanceId) { this.putQueryParameter("EcsInstanceId", ecsInstanceId); @@ -544,7 +583,13 @@ public Builder ecsInstanceId(String ecsInstanceId) { } /** - * EcsRegion. + *The region in which the ECS instance resides.
+ *+ *+ * + * example: + *This parameter is required if InstanceSource is set to RDS, ECS_OWN, or VPC_IDC.
+ *
cn-hangzhou
*/ public Builder ecsRegion(String ecsRegion) { this.putQueryParameter("EcsRegion", ecsRegion); @@ -553,7 +598,14 @@ public Builder ecsRegion(String ecsRegion) { } /** - * EnableSellCommon. + *Specifies whether to enable Security Collaboration for the database instance. Valid values:
+ *Y
*/ public Builder enableSellCommon(String enableSellCommon) { this.putQueryParameter("EnableSellCommon", enableSellCommon); @@ -562,7 +614,14 @@ public Builder enableSellCommon(String enableSellCommon) { } /** - * EnableSellSitd. + *Specifies whether to enable sensitive data protection. Valid values:
+ *Y
*/ public Builder enableSellSitd(String enableSellSitd) { this.putQueryParameter("EnableSellSitd", enableSellSitd); @@ -571,7 +630,14 @@ public Builder enableSellSitd(String enableSellSitd) { } /** - * EnableSellStable. + *Specifies whether to enable Stable Change for the database instance. Valid values:
+ *NULL
*/ public Builder enableSellStable(String enableSellStable) { this.putQueryParameter("EnableSellStable", enableSellStable); @@ -580,7 +646,14 @@ public Builder enableSellStable(String enableSellStable) { } /** - * EnableSellTrust. + *Specifies whether to enable the security hosting feature for the database instance. Valid values:
+ *Y
*/ public Builder enableSellTrust(String enableSellTrust) { this.putQueryParameter("EnableSellTrust", enableSellTrust); @@ -589,7 +662,20 @@ public Builder enableSellTrust(String enableSellTrust) { } /** - * EnvType. + *The type of the environment in which the database instance is deployed. Valid values:
+ *dev
*/ public Builder envType(String envType) { this.putQueryParameter("EnvType", envType); @@ -598,7 +684,10 @@ public Builder envType(String envType) { } /** - * ExportTimeout. + *The timeout period for exporting data from the database instance. Unit: seconds.
+ * + * example: + *86400
*/ public Builder exportTimeout(Integer exportTimeout) { this.putQueryParameter("ExportTimeout", exportTimeout); @@ -607,7 +696,10 @@ public Builder exportTimeout(Integer exportTimeout) { } /** - * Host. + *The endpoint that is used to connect to the database instance.
+ * + * example: + *192.XXX.0.56
*/ public Builder host(String host) { this.putQueryParameter("Host", host); @@ -616,7 +708,10 @@ public Builder host(String host) { } /** - * InstanceAlias. + *The alias of the database instance. Specify an alias that can help you quickly identify the database instance in Data Management (DMS).
+ * + * example: + *instance_test
*/ public Builder instanceAlias(String instanceAlias) { this.putQueryParameter("InstanceAlias", instanceAlias); @@ -625,6 +720,7 @@ public Builder instanceAlias(String instanceAlias) { } /** + *The ID of the instance. You can call the ListInstances or GetInstance operation to query the instance ID.
*This parameter is required.
* * example: @@ -637,7 +733,16 @@ public Builder instanceId(String instanceId) { } /** - * InstanceSource. + *The source of the database instance. Valid values:
+ *RDS
*/ public Builder instanceSource(String instanceSource) { this.putQueryParameter("InstanceSource", instanceSource); @@ -646,7 +751,10 @@ public Builder instanceSource(String instanceSource) { } /** - * InstanceType. + *The type of the database instance. For more information about the valid values of this parameter, see DbType parameter.
+ * + * example: + *MySQL
*/ public Builder instanceType(String instanceType) { this.putQueryParameter("InstanceType", instanceType); @@ -655,7 +763,14 @@ public Builder instanceType(String instanceType) { } /** - * NetworkType. + *The network type of the database instance. Valid values:
+ *VPC
*/ public Builder networkType(String networkType) { this.putQueryParameter("NetworkType", networkType); @@ -664,7 +779,10 @@ public Builder networkType(String networkType) { } /** - * Port. + *The port that is used to connect to the database instance.
+ * + * example: + *3306
*/ public Builder port(Integer port) { this.putQueryParameter("Port", port); @@ -673,7 +791,10 @@ public Builder port(Integer port) { } /** - * QueryTimeout. + *The timeout period for querying data from the database instance. Unit: seconds.
+ * + * example: + *7200
*/ public Builder queryTimeout(Integer queryTimeout) { this.putQueryParameter("QueryTimeout", queryTimeout); @@ -682,7 +803,7 @@ public Builder queryTimeout(Integer queryTimeout) { } /** - * SafeRule. + *The name of the security rule set for the database instance. This parameter is required if Security Collaboration is enabled. You can call theListStandardGroups or GetInstance operation to obtain the name of the security rule set from GroupName.
*/ public Builder safeRule(String safeRule) { this.putQueryParameter("SafeRule", safeRule); @@ -691,7 +812,13 @@ public Builder safeRule(String safeRule) { } /** - * Sid. + *The system ID (SID) of the database instance.
+ *+ *+ * + * example: + *This parameter is required if InstanceType is set to ORACLE.
+ *
testSid
*/ public Builder sid(String sid) { this.putQueryParameter("Sid", sid); @@ -700,7 +827,14 @@ public Builder sid(String sid) { } /** - * SkipTest. + *Specifies whether to skip the connectivity test. Valid values:
+ *false
*/ public Builder skipTest(Boolean skipTest) { this.putQueryParameter("SkipTest", skipTest); @@ -709,7 +843,10 @@ public Builder skipTest(Boolean skipTest) { } /** - * TemplateId. + *The ID of the classification and grading template. You can call the ListClassificationTemplates operation to query the template ID.
+ * + * example: + *31***
*/ public Builder templateId(Long templateId) { this.putQueryParameter("TemplateId", templateId); @@ -718,7 +855,10 @@ public Builder templateId(Long templateId) { } /** - * TemplateType. + *The type of the classification and grading template. You can call the ListClassificationTemplates operation to query the template type.
+ * + * example: + *INNER
*/ public Builder templateType(String templateType) { this.putQueryParameter("TemplateType", templateType); @@ -727,7 +867,13 @@ public Builder templateType(String templateType) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *You can move the pointer over the profile picture in the upper-right corner of the DMS console to obtain the tenant ID.
+ *
23****
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -736,7 +882,17 @@ public Builder tid(Long tid) { } /** - * UseDsql. + *Specifies whether to enable cross-instance query for the database instance. Valid values:
+ *+ *+ * + * example: + *Supported databases include MySQL, SQL Server, PostgreSQL, PolarDB for Oracle, and Redis.
+ *
1
*/ public Builder useDsql(Integer useDsql) { this.putQueryParameter("UseDsql", useDsql); @@ -745,7 +901,23 @@ public Builder useDsql(Integer useDsql) { } /** - * UseSsl. + *Specifies whether to allow Data Management Service (DMS) to connect to the database instance by using SSL connections. Before you use SSL connections, make sure that the SSL encryption feature is enabled for the database instance. Valid values:
+ *+ *+ *
This parameter is available only for a MySQL or Redis database instance.
+ *SSL encrypts network connections at the transport layer to improve the security and integrity of data in transmission. However, SSL increases the response time of network connections.
+ *0
*/ public Builder useSsl(Integer useSsl) { this.putQueryParameter("UseSsl", useSsl); @@ -754,7 +926,13 @@ public Builder useSsl(Integer useSsl) { } /** - * VpcId. + *The VPC ID.
+ *+ *+ * + * example: + *This parameter is required if InstanceSource is set to VPC_IDC.
+ *
vpc-bp10wnlcmor****
*/ public Builder vpcId(String vpcId) { this.putQueryParameter("VpcId", vpcId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ModifyInstanceResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ModifyInstanceResponseBody.java index e42bd31d955..fe741321abb 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ModifyInstanceResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/ModifyInstanceResponseBody.java @@ -93,7 +93,10 @@ private Builder(ModifyInstanceResponseBody model) { } /** - * ErrorCode. + *The error code returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -101,7 +104,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -109,7 +115,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID. You can use the ID to query logs and troubleshoot issues.
+ * + * example: + *0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -117,7 +126,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/OptimizeSqlByMetaAgentRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/OptimizeSqlByMetaAgentRequest.java index 8e070439204..8a11839bc39 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/OptimizeSqlByMetaAgentRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/OptimizeSqlByMetaAgentRequest.java @@ -126,6 +126,7 @@ public Builder regionId(String regionId) { } /** + *The ID of the database. You can call the ListDatabases operation to obtain the ID.
*This parameter is required.
* * example: @@ -138,7 +139,10 @@ public Builder dbId(String dbId) { } /** - * Model. + *The name of the selected model. You can use only Qwen series models.
+ * + * example: + *qwen-plus
*/ public Builder model(String model) { this.putQueryParameter("Model", model); @@ -147,7 +151,10 @@ public Builder model(String model) { } /** - * Query. + *The remarks.
+ * + * example: + *是否为慢SQL
*/ public Builder query(String query) { this.putQueryParameter("Query", query); @@ -156,6 +163,7 @@ public Builder query(String query) { } /** + *The SQL statement that you want to analyze.
*This parameter is required.
* * example: diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/OptimizeSqlByMetaAgentResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/OptimizeSqlByMetaAgentResponseBody.java index d4610293de9..efa0d4584f6 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/OptimizeSqlByMetaAgentResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/OptimizeSqlByMetaAgentResponseBody.java @@ -106,7 +106,7 @@ private Builder(OptimizeSqlByMetaAgentResponseBody model) { } /** - * Data. + *The data returned.
*/ public Builder data(Data data) { this.data = data; @@ -114,7 +114,10 @@ public Builder data(Data data) { } /** - * ErrorCode. + *The error code returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -122,7 +125,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -141,7 +147,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; @@ -207,7 +220,10 @@ private Builder(Data model) { } /** - * Content. + *The answer.
+ * + * example: + *SQL优化结果...
*/ public Builder content(String content) { this.content = content; @@ -215,7 +231,10 @@ public Builder content(String content) { } /** - * SessionId. + *The session ID.
+ * + * example: + *f63a6eed-0e3c-4564-8533-b1295db8d6ff
*/ public Builder sessionId(String sessionId) { this.sessionId = sessionId; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/PauseDataExportJobRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/PauseDataExportJobRequest.java index 361f7a1ddb8..faf16a3233f 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/PauseDataExportJobRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/PauseDataExportJobRequest.java @@ -112,6 +112,7 @@ public Builder regionId(String regionId) { } /** + *The ID of the SQL result set export task. You can call the GetDataExportOrderDetail operation to obtain the value of this parameter. If you set this parameter to Null, no SQL result set export task is suspended.
*This parameter is required.
* * example: @@ -124,6 +125,7 @@ public Builder jobId(Long jobId) { } /** + *The ticket ID. You can call the ListOrders operation to query the ticket ID.
*This parameter is required.
* * example: @@ -136,7 +138,13 @@ public Builder orderId(Long orderId) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the DMS console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/PauseDataExportJobResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/PauseDataExportJobResponseBody.java index 07fd6c3d59b..704d709d2bd 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/PauseDataExportJobResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/PauseDataExportJobResponseBody.java @@ -93,7 +93,10 @@ private Builder(PauseDataExportJobResponseBody model) { } /** - * ErrorCode. + *The error code returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -101,7 +104,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -109,7 +115,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The ID of the request. You can use the request ID to locate logs and troubleshoot issues.
+ * + * example: + *7FAD400F-7A5C-4193-8F9A-39D86C4F0231
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -117,7 +126,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/PreviewWorkflowRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/PreviewWorkflowRequest.java index cb544ee97dd..1d9f58ad9dd 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/PreviewWorkflowRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/PreviewWorkflowRequest.java @@ -97,6 +97,7 @@ public Builder regionId(String regionId) { } /** + *The ticket ID. You can call the ListOrders operation to query the ticket ID.
*This parameter is required.
* * example: @@ -109,7 +110,13 @@ public Builder orderId(Long orderId) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the DMS console and move the pointer over the profile picture in the upper-right corner. For more information, see View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
23****
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/PreviewWorkflowResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/PreviewWorkflowResponseBody.java index 41ef54d037c..a55ead122b7 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/PreviewWorkflowResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/PreviewWorkflowResponseBody.java @@ -106,7 +106,10 @@ private Builder(PreviewWorkflowResponseBody model) { } /** - * ErrorCode. + *The error code returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -114,7 +117,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -122,7 +128,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID. You can use the request ID to locate logs and troubleshoot issues.
+ * + * example: + *0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -130,7 +139,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; @@ -138,7 +154,7 @@ public Builder success(Boolean success) { } /** - * WorkflowDetail. + *The details of the workflow.
*/ public Builder workflowDetail(WorkflowDetail workflowDetail) { this.workflowDetail = workflowDetail; @@ -217,7 +233,10 @@ private Builder(AuditUser model) { } /** - * NickName. + *The nickname of the approver.
+ * + * example: + *Owner
*/ public Builder nickName(String nickName) { this.nickName = nickName; @@ -225,7 +244,10 @@ public Builder nickName(String nickName) { } /** - * RealName. + *The name of the approver.
+ * + * example: + *db_test
*/ public Builder realName(String realName) { this.realName = realName; @@ -233,7 +255,10 @@ public Builder realName(String realName) { } /** - * UserId. + *The ID of the approver.
+ * + * example: + *16***
*/ public Builder userId(Long userId) { this.userId = userId; @@ -380,7 +405,7 @@ private Builder(WorkflowNode model) { } /** - * AuditUserList. + *The approvers.
*/ public Builder auditUserList(AuditUserList auditUserList) { this.auditUserList = auditUserList; @@ -388,7 +413,7 @@ public Builder auditUserList(AuditUserList auditUserList) { } /** - * Comment. + *The remarks of the approval node.
*/ public Builder comment(String comment) { this.comment = comment; @@ -396,7 +421,10 @@ public Builder comment(String comment) { } /** - * NodeName. + *The name of the approval node.
+ * + * example: + *Owner
*/ public Builder nodeName(String nodeName) { this.nodeName = nodeName; @@ -404,7 +432,16 @@ public Builder nodeName(String nodeName) { } /** - * NodeType. + *The type of the approval node.
+ *Valid values:
+ *SYS
*/ public Builder nodeType(String nodeType) { this.nodeType = nodeType; @@ -538,7 +575,7 @@ private Builder(WorkflowDetail model) { } /** - * Comment. + *The remarks of the approval template.
*/ public Builder comment(String comment) { this.comment = comment; @@ -546,7 +583,7 @@ public Builder comment(String comment) { } /** - * WfCateName. + *The name of the approval template.
*/ public Builder wfCateName(String wfCateName) { this.wfCateName = wfCateName; @@ -554,7 +591,7 @@ public Builder wfCateName(String wfCateName) { } /** - * WorkflowNodeList. + *The approval nodes.
*/ public Builder workflowNodeList(WorkflowNodeList workflowNodeList) { this.workflowNodeList = workflowNodeList; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/RemoveDataExportJobRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/RemoveDataExportJobRequest.java index acde1255ab7..8944f3e8b35 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/RemoveDataExportJobRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/RemoveDataExportJobRequest.java @@ -112,6 +112,7 @@ public Builder regionId(String regionId) { } /** + *The ID of the SQL result set export task. You can call the GetDataExportOrderDetail operation to obtain the value of this parameter. If you set this parameter to Null, no SQL result set export task is suspended.
*This parameter is required.
* * example: @@ -124,6 +125,7 @@ public Builder jobId(Long jobId) { } /** + *The ID of the ticket. You can call the ListOrders operation to obtain the ticket ID.
*This parameter is required.
* * example: @@ -136,7 +138,13 @@ public Builder orderId(Long orderId) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the DMS console and move the pointer over the profile picture in the upper-right corner. For more information, see View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/RemoveDataExportJobResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/RemoveDataExportJobResponseBody.java index 94244265923..698d1b33f2d 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/RemoveDataExportJobResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/RemoveDataExportJobResponseBody.java @@ -93,7 +93,10 @@ private Builder(RemoveDataExportJobResponseBody model) { } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -101,7 +104,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -109,7 +115,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID. You can use the request ID to query logs and troubleshoot issues.
+ * + * example: + *0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -117,7 +126,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/RemoveTableFromCategoryRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/RemoveTableFromCategoryRequest.java index f7990f04f60..772c0b50f15 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/RemoveTableFromCategoryRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/RemoveTableFromCategoryRequest.java @@ -142,6 +142,7 @@ public Builder regionId(String regionId) { } /** + *The category ID.
*This parameter is required.
* * example: @@ -154,6 +155,10 @@ public Builder categoryId(Long categoryId) { } /** + *The database ID. You can call the ListDatabases operation to query the ID of a physical database and the ListLogicDatabases operation to query the ID of a logical database.
+ *+ **The value of DatabaseId is that of DbId.
+ *
This parameter is required.
* * example: @@ -166,6 +171,10 @@ public Builder dbId(Long dbId) { } /** + *The table name.
+ *+ **You can also call the ListTables operation to query the table name.
+ *
This parameter is required.
* * example: @@ -178,7 +187,10 @@ public Builder tableName(String tableName) { } /** - * TableSchemaName. + *The schema name of the table, which is required only for SQL Server instances.
+ * + * example: + *dbo
*/ public Builder tableSchemaName(String tableSchemaName) { this.putQueryParameter("TableSchemaName", tableSchemaName); @@ -187,7 +199,13 @@ public Builder tableSchemaName(String tableSchemaName) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3****
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/RemoveTableFromCategoryResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/RemoveTableFromCategoryResponseBody.java index 5e4e92d99af..1860eb58c43 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/RemoveTableFromCategoryResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/RemoveTableFromCategoryResponseBody.java @@ -93,7 +93,10 @@ private Builder(RemoveTableFromCategoryResponseBody model) { } /** - * ErrorCode. + *The error code returned if the call failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -101,7 +104,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -109,7 +115,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID.
+ * + * example: + *19DA51A9-AC3E-5C36-8351-07EBCD2B89A1
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -117,7 +126,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/RestartDataExportJobRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/RestartDataExportJobRequest.java index 1c810510738..20af210e55f 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/RestartDataExportJobRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/RestartDataExportJobRequest.java @@ -112,6 +112,7 @@ public Builder regionId(String regionId) { } /** + *The ID of the SQL result set export task. You can call the GetDataExportOrderDetail operation to obtain the value of this parameter. If you set this parameter to Null, no SQL result set export task is suspended.
*This parameter is required.
* * example: @@ -124,6 +125,7 @@ public Builder jobId(Long jobId) { } /** + *The ticket ID. You can call the ListOrders operation to obtain the ticket ID.
*This parameter is required.
* * example: @@ -136,7 +138,13 @@ public Builder orderId(Long orderId) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the DMS console and move the pointer over the profile picture in the upper-right corner. For more information, see View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
23****
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/RestartDataExportJobResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/RestartDataExportJobResponseBody.java index f1805bc6d70..c172b7653cb 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/RestartDataExportJobResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/RestartDataExportJobResponseBody.java @@ -93,7 +93,10 @@ private Builder(RestartDataExportJobResponseBody model) { } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -101,7 +104,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -109,7 +115,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The ID of the request. You can use the request ID to locate logs and troubleshoot issues.
+ * + * example: + *7FAD400F-7A5C-4193-8F9A-39D86C4F0231
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -117,7 +126,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/SetWorkflowExtraInfoRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/SetWorkflowExtraInfoRequest.java index 3b256963917..bdfb4877349 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/SetWorkflowExtraInfoRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/SetWorkflowExtraInfoRequest.java @@ -195,7 +195,14 @@ public Builder regionId(String regionId) { } /** - * RenderAddApprovalNode. + *Specifies whether the Sign button is displayed in the ticket approval section of the DMS console for a third-party approval workflow. Valid values:
+ *false
*/ public Builder renderAddApprovalNode(Boolean renderAddApprovalNode) { this.putQueryParameter("RenderAddApprovalNode", renderAddApprovalNode); @@ -204,7 +211,14 @@ public Builder renderAddApprovalNode(Boolean renderAddApprovalNode) { } /** - * RenderAgree. + *Specifies whether the Agree button is displayed in the ticket approval section of the DMS console for a third-party approval workflow. Valid values:
+ *true
*/ public Builder renderAgree(Boolean renderAgree) { this.putQueryParameter("RenderAgree", renderAgree); @@ -213,7 +227,14 @@ public Builder renderAgree(Boolean renderAgree) { } /** - * RenderCancel. + *Specifies whether the Revoke button is displayed in the ticket approval section of the DMS console for a third-party approval workflow. Valid values:
+ *true
*/ public Builder renderCancel(Boolean renderCancel) { this.putQueryParameter("RenderCancel", renderCancel); @@ -222,7 +243,14 @@ public Builder renderCancel(Boolean renderCancel) { } /** - * RenderReject. + *Specifies whether the Reject button is displayed in the ticket approval section of the DMS console for a third-party approval workflow. Valid values:
+ *false
*/ public Builder renderReject(Boolean renderReject) { this.putQueryParameter("RenderReject", renderReject); @@ -231,7 +259,14 @@ public Builder renderReject(Boolean renderReject) { } /** - * RenderTransfer. + *Specifies whether the Forward button is displayed in the ticket approval section of the DMS console for a third-party approval workflow. Valid values:
+ *true
*/ public Builder renderTransfer(Boolean renderTransfer) { this.putQueryParameter("RenderTransfer", renderTransfer); @@ -240,7 +275,10 @@ public Builder renderTransfer(Boolean renderTransfer) { } /** - * ThirdpartyWorkflowComment. + *The remarks of approval workflow for third parties.
+ * + * example: + *test
*/ public Builder thirdpartyWorkflowComment(String thirdpartyWorkflowComment) { this.putQueryParameter("ThirdpartyWorkflowComment", thirdpartyWorkflowComment); @@ -249,7 +287,10 @@ public Builder thirdpartyWorkflowComment(String thirdpartyWorkflowComment) { } /** - * ThirdpartyWorkflowUrl. + *The link of approval workflow for third parties.
+ * + * example: + * */ public Builder thirdpartyWorkflowUrl(String thirdpartyWorkflowUrl) { this.putQueryParameter("ThirdpartyWorkflowUrl", thirdpartyWorkflowUrl); @@ -258,7 +299,13 @@ public Builder thirdpartyWorkflowUrl(String thirdpartyWorkflowUrl) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the DMS console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -267,6 +314,7 @@ public Builder tid(Long tid) { } /** + *The ID of the approval workflow. You can call the GetOrderBaseInfo operation to query the ID of the approval workflow.
*This parameter is required.
* * example: diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/SetWorkflowExtraInfoResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/SetWorkflowExtraInfoResponseBody.java index ac7bb7cb657..4be9ec42864 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/SetWorkflowExtraInfoResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/SetWorkflowExtraInfoResponseBody.java @@ -106,7 +106,10 @@ private Builder(SetWorkflowExtraInfoResponseBody model) { } /** - * Data. + *Indicates whether the call was successful.
+ * + * example: + *true
*/ public Builder data(Boolean data) { this.data = data; @@ -114,7 +117,10 @@ public Builder data(Boolean data) { } /** - * ErrorCode. + *The error code returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -122,7 +128,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -130,7 +139,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID. You can use the ID to query logs and troubleshoot issues.
+ * + * example: + *8401893F-4235-55D5-B563-7CF7A7D037DE
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -138,7 +150,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/SuspendDataExportJobRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/SuspendDataExportJobRequest.java index bfa19698e5e..6ff5ce169e6 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/SuspendDataExportJobRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/SuspendDataExportJobRequest.java @@ -112,6 +112,7 @@ public Builder regionId(String regionId) { } /** + *The ID of the SQL result set export task. You can call the GetDataExportOrderDetail operation to obtain the value of this parameter. If you set this parameter to Null, no SQL result set export task is suspended.
*This parameter is required.
* * example: @@ -124,6 +125,7 @@ public Builder jobId(Long jobId) { } /** + *The ticket ID. You can call the ListOrders operation to query the ticket ID.
*This parameter is required.
* * example: @@ -136,7 +138,13 @@ public Builder orderId(Long orderId) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the DMS console and move the pointer over the profile picture in the upper-right corner. For more information, see View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/SuspendDataExportJobResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/SuspendDataExportJobResponseBody.java index 93433226fea..410fb5e15ae 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/SuspendDataExportJobResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/SuspendDataExportJobResponseBody.java @@ -93,7 +93,10 @@ private Builder(SuspendDataExportJobResponseBody model) { } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -101,7 +104,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -109,7 +115,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID. You can use the request ID to locate logs and troubleshoot issues.
+ * + * example: + *FE8EE2F1-4880-46BC-A704-5CF63EAF9A04
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -117,7 +126,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the operation was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/TryRunTaskFlowRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/TryRunTaskFlowRequest.java index 7e8ce58cb3d..8fa6852bcf1 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/TryRunTaskFlowRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/TryRunTaskFlowRequest.java @@ -82,7 +82,10 @@ public Builder regionId(String regionId) { } /** - * DagId. + *The task flow ID. You can call the ListTaskFlow or ListLhTaskFlowAndScenario operation to query the ID of the task flow.
+ * + * example: + *11****
*/ public Builder dagId(Long dagId) { this.putQueryParameter("DagId", dagId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/TryRunTaskFlowResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/TryRunTaskFlowResponseBody.java index 9151591d740..dcc8b857d0b 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/TryRunTaskFlowResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/TryRunTaskFlowResponseBody.java @@ -106,7 +106,14 @@ private Builder(TryRunTaskFlowResponseBody model) { } /** - * ErrorCode. + *The error code that is returned if the request failed. Value values:
+ *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -114,7 +121,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -122,7 +132,10 @@ public Builder errorMessage(String errorMessage) { } /** - * InstanceId. + *The instance ID of the order.
+ * + * example: + *169****
*/ public Builder instanceId(String instanceId) { this.instanceId = instanceId; @@ -130,7 +143,10 @@ public Builder instanceId(String instanceId) { } /** - * RequestId. + *The request ID.
+ * + * example: + *9997630E-1993-5E6D-9DF1-4EFEE755FE31
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -138,7 +154,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateAbacPolicyRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateAbacPolicyRequest.java index 08b4fe8347e..46291162178 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateAbacPolicyRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateAbacPolicyRequest.java @@ -140,7 +140,26 @@ public Builder regionId(String regionId) { } /** - * AbacPolicyContent. + *The content of the policy.
+ * + * example: + *{ + * "Statement": [ + * { + * "Action": "", + * "Effect": "Allow", + * "Resource": "", + * "Condition": { + * "StringEqualsIgnoreCase": { + * "dms:DbType": [ + * "redis" + * ] + * } + * } + * } + * ], + * "Version": "1" + * }
*/ public Builder abacPolicyContent(String abacPolicyContent) { this.putQueryParameter("AbacPolicyContent", abacPolicyContent); @@ -149,7 +168,10 @@ public Builder abacPolicyContent(String abacPolicyContent) { } /** - * AbacPolicyDesc. + *The description of the policy.
+ * + * example: + *test
*/ public Builder abacPolicyDesc(String abacPolicyDesc) { this.putQueryParameter("AbacPolicyDesc", abacPolicyDesc); @@ -158,6 +180,7 @@ public Builder abacPolicyDesc(String abacPolicyDesc) { } /** + *The ID of the policy.
*This parameter is required.
* * example: @@ -170,7 +193,10 @@ public Builder abacPolicyId(Long abacPolicyId) { } /** - * AbacPolicyName. + *The name of the permission policy.
+ * + * example: + *policy_test
*/ public Builder abacPolicyName(String abacPolicyName) { this.putQueryParameter("AbacPolicyName", abacPolicyName); @@ -179,7 +205,13 @@ public Builder abacPolicyName(String abacPolicyName) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the DMS console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateAbacPolicyResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateAbacPolicyResponseBody.java index 42d55cfd986..7cb4b87315b 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateAbacPolicyResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateAbacPolicyResponseBody.java @@ -106,7 +106,10 @@ private Builder(UpdateAbacPolicyResponseBody model) { } /** - * ErrorCode. + *The error code that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -114,7 +117,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -122,7 +128,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID. You can use the ID to query logs and troubleshoot issues.
+ * + * example: + *CE43759B-5A72-560A-BF3D-862F38B36B9E
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -130,7 +139,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; @@ -138,7 +154,10 @@ public Builder success(Boolean success) { } /** - * UpdatePolicyResult. + *Indicates whether the policy is updated.
+ * + * example: + *true
*/ public Builder updatePolicyResult(Long updatePolicyResult) { this.updatePolicyResult = updatePolicyResult; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakeDatabaseRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakeDatabaseRequest.java index 1951b1c11e1..46fb759133b 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakeDatabaseRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakeDatabaseRequest.java @@ -184,6 +184,7 @@ public Builder regionId(String regionId) { } /** + *The catalog name.
*This parameter is required.
* * example: @@ -196,6 +197,7 @@ public Builder catalogName(String catalogName) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -208,6 +210,7 @@ public Builder dataRegion(String dataRegion) { } /** + *The name of the database that you want to query.
*This parameter is required.
* * example: @@ -220,7 +223,10 @@ public Builder dbName(String dbName) { } /** - * Description. + *The description of the database.
+ * + * example: + *test
*/ public Builder description(String description) { this.putQueryParameter("Description", description); @@ -229,6 +235,7 @@ public Builder description(String description) { } /** + *The storage path of the database. Supports the OSS, S3, and S3A protocols.
*This parameter is required.
* * example: @@ -241,7 +248,7 @@ public Builder location(String location) { } /** - * Parameters. + *The key-value pairs of the database attributes.
*/ public Builder parameters(java.util.MapThe ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -260,7 +273,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakeDatabaseResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakeDatabaseResponseBody.java index 2ea4ac0bbb9..9dd36f7db59 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakeDatabaseResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakeDatabaseResponseBody.java @@ -106,7 +106,7 @@ private Builder(UpdateDataLakeDatabaseResponseBody model) { } /** - * Database. + *The database details.
*/ public Builder database(DLDatabase database) { this.database = database; @@ -114,7 +114,10 @@ public Builder database(DLDatabase database) { } /** - * ErrorCode. + *The error code returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -122,7 +125,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -130,7 +136,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID. You can use the request ID to locate logs and troubleshoot issues.
+ * + * example: + *4E1D2B4D-3E53-4ABC-999D-1D2520B3471A
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -138,7 +147,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakeFunctionRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakeFunctionRequest.java index 960ec82ae18..90242ed7b5f 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakeFunctionRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakeFunctionRequest.java @@ -171,6 +171,7 @@ public Builder regionId(String regionId) { } /** + *The catalog name.
*This parameter is required.
* * example: @@ -183,6 +184,7 @@ public Builder catalogName(String catalogName) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -195,6 +197,7 @@ public Builder dataRegion(String dataRegion) { } /** + *The name of the database that you want to query.
*This parameter is required.
* * example: @@ -207,6 +210,7 @@ public Builder dbName(String dbName) { } /** + *The details about the function.
*This parameter is required.
*/ public Builder functionInput(DLFunctionInput functionInput) { @@ -217,6 +221,7 @@ public Builder functionInput(DLFunctionInput functionInput) { } /** + *The function name.
*This parameter is required.
* * example: @@ -229,7 +234,13 @@ public Builder functionName(String functionName) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the tenant ID, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -238,7 +249,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakeFunctionResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakeFunctionResponseBody.java index d035acd03a5..c594d8e1ce0 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakeFunctionResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakeFunctionResponseBody.java @@ -106,7 +106,10 @@ private Builder(UpdateDataLakeFunctionResponseBody model) { } /** - * ErrorCode. + *The error code returned if the request fails.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -114,7 +117,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message returned if the request fails.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -122,7 +128,7 @@ public Builder errorMessage(String errorMessage) { } /** - * Function. + *The details about the function.
*/ public Builder function(DLFunction function) { this.function = function; @@ -130,7 +136,10 @@ public Builder function(DLFunction function) { } /** - * RequestId. + *The request ID. You can use the ID to query logs and troubleshoot issues.
+ * + * example: + *C1D39814-9808-47F8-AFE0-AF167239AC9B
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -138,7 +147,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakePartitionRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakePartitionRequest.java index 873bd7ca2a5..3d7d96cfd62 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakePartitionRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakePartitionRequest.java @@ -171,6 +171,7 @@ public Builder regionId(String regionId) { } /** + *The name of the data catalog.
*This parameter is required.
* * example: @@ -183,6 +184,7 @@ public Builder catalogName(String catalogName) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -195,6 +197,7 @@ public Builder dataRegion(String dataRegion) { } /** + *The name of the database that you want to query.
*This parameter is required.
* * example: @@ -207,6 +210,7 @@ public Builder dbName(String dbName) { } /** + *The information about the created partition.
*This parameter is required.
*/ public Builder partitionInput(DLPartitionInput partitionInput) { @@ -217,6 +221,7 @@ public Builder partitionInput(DLPartitionInput partitionInput) { } /** + *The name of the table
*This parameter is required.
* * example: @@ -229,7 +234,13 @@ public Builder tableName(String tableName) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the Data Management (DMS) console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -238,7 +249,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakePartitionResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakePartitionResponseBody.java index e1c1ff2b821..6c9f326c239 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakePartitionResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakePartitionResponseBody.java @@ -93,7 +93,10 @@ private Builder(UpdateDataLakePartitionResponseBody model) { } /** - * ErrorCode. + *The error code returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -101,7 +104,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -109,7 +115,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID. You can use the ID to query logs and troubleshoot issues.
+ * + * example: + *427688B8-ADFB-4C4E-9D45-EF5C1FD6E23D
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -117,7 +126,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakeTableRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakeTableRequest.java index 42e8b63d47b..1d3daf2a065 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakeTableRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakeTableRequest.java @@ -170,6 +170,7 @@ public Builder regionId(String regionId) { } /** + *The name of the data catalog.
*This parameter is required.
* * example: @@ -182,6 +183,7 @@ public Builder catalogName(String catalogName) { } /** + *The region where the data lake resides.
*This parameter is required.
* * example: @@ -194,6 +196,7 @@ public Builder dataRegion(String dataRegion) { } /** + *The database name.
*This parameter is required.
* * example: @@ -206,6 +209,7 @@ public Builder dbName(String dbName) { } /** + *The information about the table.
*This parameter is required.
*/ public Builder tableInput(OpenStructDLTableInput tableInput) { @@ -216,7 +220,10 @@ public Builder tableInput(OpenStructDLTableInput tableInput) { } /** - * TableName. + *The name of the updated table. If you do not need to update the table name, set the TableName and TableInput parameters to the same value.
+ * + * example: + *100g_customer
*/ public Builder tableName(String tableName) { this.putQueryParameter("TableName", tableName); @@ -225,7 +232,13 @@ public Builder tableName(String tableName) { } /** - * Tid. + *The ID of the tenant.
+ *+ *+ * + * example: + *To view the ID of the tenant, go to the DMS console and move the pointer over the profile picture in the upper-right corner. For more information, see the View information about the current tenant section of the "Manage DMS tenants" topic.
+ *
3***
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); @@ -234,7 +247,10 @@ public Builder tid(Long tid) { } /** - * WorkspaceId. + *The workspace ID.
+ * + * example: + *12****
*/ public Builder workspaceId(Long workspaceId) { this.putQueryParameter("WorkspaceId", workspaceId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakeTableResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakeTableResponseBody.java index 30e3ec6c479..bc86c93092b 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakeTableResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateDataLakeTableResponseBody.java @@ -106,7 +106,10 @@ private Builder(UpdateDataLakeTableResponseBody model) { } /** - * ErrorCode. + *The error code returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -114,7 +117,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -122,7 +128,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID. You can use the request ID to locate logs and troubleshoot issues.
+ * + * example: + *C5B8E84B-42B6-4374-AD5A-6264E1753325
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -130,7 +139,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; @@ -138,7 +154,7 @@ public Builder success(Boolean success) { } /** - * Table. + *The information about the table.
*/ public Builder table(DLTable table) { this.table = table; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateMetaCategoryRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateMetaCategoryRequest.java index 2fa7e452e3c..9f50ed4b924 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateMetaCategoryRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateMetaCategoryRequest.java @@ -112,6 +112,7 @@ public Builder regionId(String regionId) { } /** + *The category ID.
*This parameter is required.
* * example: @@ -124,7 +125,7 @@ public Builder categoryId(Long categoryId) { } /** - * Name. + *The updated name of the category.
*/ public Builder name(String name) { this.putQueryParameter("Name", name); @@ -133,7 +134,10 @@ public Builder name(String name) { } /** - * Tid. + *The ID of the tenant. You can call the GetUserActiveTenant or ListUserTenants operation to obtain the tenant ID.
+ * + * example: + *23****
*/ public Builder tid(Long tid) { this.putQueryParameter("Tid", tid); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateMetaCategoryResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateMetaCategoryResponseBody.java index d9e9c3c4cee..6018676d9c1 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateMetaCategoryResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateMetaCategoryResponseBody.java @@ -106,7 +106,7 @@ private Builder(UpdateMetaCategoryResponseBody model) { } /** - * Category. + *The information about the category.
*/ public Builder category(MetaCategory category) { this.category = category; @@ -114,7 +114,10 @@ public Builder category(MetaCategory category) { } /** - * ErrorCode. + *The error code returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -122,7 +125,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message that is returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -130,7 +136,10 @@ public Builder errorMessage(String errorMessage) { } /** - * RequestId. + *The request ID.
+ * + * example: + *0C1CB646-1DE4-4AD0-B4A4-7D47DD52E931
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -138,7 +147,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(Boolean success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateTaskContentV2Request.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateTaskContentV2Request.java index 1fdfd55c86d..59544c87389 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateTaskContentV2Request.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateTaskContentV2Request.java @@ -96,7 +96,13 @@ public Builder regionId(String regionId) { } /** - * NodeContent. + *The node configurations after modification.
+ *+ *+ * + * example: + *We recommend that you change the SQL type from SELECT to INSERT/CREATE.
+ *
{ "dbId":12****, "sql":"select * from test_table", "dbType":"lindorm_sql" }
*/ public Builder nodeContent(String nodeContent) { this.putBodyParameter("NodeContent", nodeContent); @@ -105,7 +111,10 @@ public Builder nodeContent(String nodeContent) { } /** - * NodeId. + *The ID of the task node. You can call the GetTaskInstanceRelation operation to query the node ID.
+ * + * example: + *449***
*/ public Builder nodeId(String nodeId) { this.putQueryParameter("NodeId", nodeId); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateTaskContentV2ResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateTaskContentV2ResponseBody.java index e0e0c83ae0f..06c0e39be40 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateTaskContentV2ResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateTaskContentV2ResponseBody.java @@ -93,7 +93,10 @@ private Builder(UpdateTaskContentV2ResponseBody model) { } /** - * ErrorCode. + *The error code returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorCode(String errorCode) { this.errorCode = errorCode; @@ -101,7 +104,10 @@ public Builder errorCode(String errorCode) { } /** - * ErrorMessage. + *The error message returned if the request failed.
+ * + * example: + *UnknownError
*/ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; @@ -109,7 +115,7 @@ public Builder errorMessage(String errorMessage) { } /** - *Id of the request
+ *Id of the request.
* * example: *B5FD0BC8-2D90-4478-B8EC-A0E92E0B1773
@@ -120,7 +126,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(String success) { this.success = success; diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateWorkspaceRequest.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateWorkspaceRequest.java index 4f92d3eb3f9..98f42f7b7f1 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateWorkspaceRequest.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateWorkspaceRequest.java @@ -102,7 +102,10 @@ private Builder(UpdateWorkspaceRequest request) { } /** - * ClientToken. + *The client token that is used to ensure the idempotence of the request.
+ * + * example: + *token-xxx
*/ public Builder clientToken(String clientToken) { this.putBodyParameter("ClientToken", clientToken); @@ -111,7 +114,10 @@ public Builder clientToken(String clientToken) { } /** - * Description. + *The new description of the workspace.
+ * + * example: + *test
*/ public Builder description(String description) { this.putQueryParameter("Description", description); @@ -120,6 +126,7 @@ public Builder description(String description) { } /** + *The workspace ID.
*This parameter is required.
* * example: @@ -132,7 +139,10 @@ public Builder workspaceId(Long workspaceId) { } /** - * WorkspaceName. + *The new name of the workspace.
+ * + * example: + *workspace_xxx
*/ public Builder workspaceName(String workspaceName) { this.putQueryParameter("WorkspaceName", workspaceName); diff --git a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateWorkspaceResponseBody.java b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateWorkspaceResponseBody.java index 5174b0b9922..e593fb4c57b 100644 --- a/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateWorkspaceResponseBody.java +++ b/dms-enterprise-20181101/src/main/java/com/aliyun/sdk/service/dms_enterprise20181101/models/UpdateWorkspaceResponseBody.java @@ -80,7 +80,10 @@ private Builder(UpdateWorkspaceResponseBody model) { } /** - * Data. + *Indicates whether the call is successful.
+ * + * example: + *true
*/ public Builder data(String data) { this.data = data; @@ -88,7 +91,10 @@ public Builder data(String data) { } /** - * RequestId. + *The request ID. You can use the request ID to locate logs and troubleshoot issues.
+ * + * example: + *C51420E3-144A-4A94-B473-8662FCF4****
*/ public Builder requestId(String requestId) { this.requestId = requestId; @@ -96,7 +102,14 @@ public Builder requestId(String requestId) { } /** - * Success. + *Indicates whether the request was successful. Valid values:
+ *true
*/ public Builder success(String success) { this.success = success; diff --git a/iqs-20241111/ChangeLog.txt b/iqs-20241111/ChangeLog.txt index ad352e5e8f0..31bddf67b36 100644 --- a/iqs-20241111/ChangeLog.txt +++ b/iqs-20241111/ChangeLog.txt @@ -1,3 +1,6 @@ +2025-11-24 Version: 1.0.12 +- Generated java-async 2024-11-11 for IQS. + 2025-05-08 Version: 1.0.10 - Generated java-async 2024-11-11 for IQS. diff --git a/iqs-20241111/pom.xml b/iqs-20241111/pom.xml index 9bd1f943568..e0a49b26ac0 100644 --- a/iqs-20241111/pom.xml +++ b/iqs-20241111/pom.xml @@ -3,7 +3,7 @@GenericSearchRequest
*/ public class GenericSearchRequest extends Request { + @com.aliyun.core.annotation.Query + @com.aliyun.core.annotation.NameInMap("advancedParams") + private java.util.MapGetIqsUsageRequest
+ */ +public class GetIqsUsageRequest extends Request { + @com.aliyun.core.annotation.Query + @com.aliyun.core.annotation.NameInMap("endDate") + private String endDate; + + @com.aliyun.core.annotation.Query + @com.aliyun.core.annotation.NameInMap("startDate") + private String startDate; + + private GetIqsUsageRequest(Builder builder) { + super(builder); + this.endDate = builder.endDate; + this.startDate = builder.startDate; + } + + public static Builder builder() { + return new Builder(); + } + + public static GetIqsUsageRequest create() { + return builder().build(); + } + +@Override + public Builder toBuilder() { + return new Builder(this); + } + + /** + * @return endDate + */ + public String getEndDate() { + return this.endDate; + } + + /** + * @return startDate + */ + public String getStartDate() { + return this.startDate; + } + + public static final class Builder extends Request.BuilderGetIqsUsageResponse
+ */ +public class GetIqsUsageResponse extends Response { + @com.aliyun.core.annotation.NameInMap("headers") + private java.util.MapGetIqsUsageResult
+ */ +public class GetIqsUsageResult extends TeaModel { + @com.aliyun.core.annotation.NameInMap("records") + private java.util.ListGetIqsUsageResult
+ */ + public static class Records extends TeaModel { + @com.aliyun.core.annotation.NameInMap("api") + private String api; + + @com.aliyun.core.annotation.NameInMap("billingQps") + private Integer billingQps; + + @com.aliyun.core.annotation.NameInMap("date") + private String date; + + @com.aliyun.core.annotation.NameInMap("engineType") + private String engineType; + + @com.aliyun.core.annotation.NameInMap("failedCalls") + private Integer failedCalls; + + @com.aliyun.core.annotation.NameInMap("ladderType") + private String ladderType; + + @com.aliyun.core.annotation.NameInMap("mainAccountId") + private String mainAccountId; + + @com.aliyun.core.annotation.NameInMap("subAccountId") + private String subAccountId; + + @com.aliyun.core.annotation.NameInMap("successCalls") + private Integer successCalls; + + @com.aliyun.core.annotation.NameInMap("totalCalls") + private Integer totalCalls; + + @com.aliyun.core.annotation.NameInMap("valueAddedAdvanced") + private Integer valueAddedAdvanced; + + @com.aliyun.core.annotation.NameInMap("valueAddedSummary") + private Integer valueAddedSummary; + + private Records(Builder builder) { + this.api = builder.api; + this.billingQps = builder.billingQps; + this.date = builder.date; + this.engineType = builder.engineType; + this.failedCalls = builder.failedCalls; + this.ladderType = builder.ladderType; + this.mainAccountId = builder.mainAccountId; + this.subAccountId = builder.subAccountId; + this.successCalls = builder.successCalls; + this.totalCalls = builder.totalCalls; + this.valueAddedAdvanced = builder.valueAddedAdvanced; + this.valueAddedSummary = builder.valueAddedSummary; + } + + public static Builder builder() { + return new Builder(); + } + + public static Records create() { + return builder().build(); + } + + /** + * @return api + */ + public String getApi() { + return this.api; + } + + /** + * @return billingQps + */ + public Integer getBillingQps() { + return this.billingQps; + } + + /** + * @return date + */ + public String getDate() { + return this.date; + } + + /** + * @return engineType + */ + public String getEngineType() { + return this.engineType; + } + + /** + * @return failedCalls + */ + public Integer getFailedCalls() { + return this.failedCalls; + } + + /** + * @return ladderType + */ + public String getLadderType() { + return this.ladderType; + } + + /** + * @return mainAccountId + */ + public String getMainAccountId() { + return this.mainAccountId; + } + + /** + * @return subAccountId + */ + public String getSubAccountId() { + return this.subAccountId; + } + + /** + * @return successCalls + */ + public Integer getSuccessCalls() { + return this.successCalls; + } + + /** + * @return totalCalls + */ + public Integer getTotalCalls() { + return this.totalCalls; + } + + /** + * @return valueAddedAdvanced + */ + public Integer getValueAddedAdvanced() { + return this.valueAddedAdvanced; + } + + /** + * @return valueAddedSummary + */ + public Integer getValueAddedSummary() { + return this.valueAddedSummary; + } + + public static final class Builder { + private String api; + private Integer billingQps; + private String date; + private String engineType; + private Integer failedCalls; + private String ladderType; + private String mainAccountId; + private String subAccountId; + private Integer successCalls; + private Integer totalCalls; + private Integer valueAddedAdvanced; + private Integer valueAddedSummary; + + private Builder() { + } + + private Builder(Records model) { + this.api = model.api; + this.billingQps = model.billingQps; + this.date = model.date; + this.engineType = model.engineType; + this.failedCalls = model.failedCalls; + this.ladderType = model.ladderType; + this.mainAccountId = model.mainAccountId; + this.subAccountId = model.subAccountId; + this.successCalls = model.successCalls; + this.totalCalls = model.totalCalls; + this.valueAddedAdvanced = model.valueAddedAdvanced; + this.valueAddedSummary = model.valueAddedSummary; + } + + /** + * api. + */ + public Builder api(String api) { + this.api = api; + return this; + } + + /** + * billingQps. + */ + public Builder billingQps(Integer billingQps) { + this.billingQps = billingQps; + return this; + } + + /** + * date. + */ + public Builder date(String date) { + this.date = date; + return this; + } + + /** + * engineType. + */ + public Builder engineType(String engineType) { + this.engineType = engineType; + return this; + } + + /** + * failedCalls. + */ + public Builder failedCalls(Integer failedCalls) { + this.failedCalls = failedCalls; + return this; + } + + /** + * ladderType. + */ + public Builder ladderType(String ladderType) { + this.ladderType = ladderType; + return this; + } + + /** + * mainAccountId. + */ + public Builder mainAccountId(String mainAccountId) { + this.mainAccountId = mainAccountId; + return this; + } + + /** + * subAccountId. + */ + public Builder subAccountId(String subAccountId) { + this.subAccountId = subAccountId; + return this; + } + + /** + * successCalls. + */ + public Builder successCalls(Integer successCalls) { + this.successCalls = successCalls; + return this; + } + + /** + * totalCalls. + */ + public Builder totalCalls(Integer totalCalls) { + this.totalCalls = totalCalls; + return this; + } + + /** + * valueAddedAdvanced. + */ + public Builder valueAddedAdvanced(Integer valueAddedAdvanced) { + this.valueAddedAdvanced = valueAddedAdvanced; + return this; + } + + /** + * valueAddedSummary. + */ + public Builder valueAddedSummary(Integer valueAddedSummary) { + this.valueAddedSummary = valueAddedSummary; + return this; + } + + public Records build() { + return new Records(this); + } + + } + + } +} diff --git a/iqs-20241111/src/main/java/com/aliyun/sdk/service/iqs20241111/models/ReadPageBasicRequest.java b/iqs-20241111/src/main/java/com/aliyun/sdk/service/iqs20241111/models/ReadPageBasicRequest.java new file mode 100644 index 00000000000..074c4b0675d --- /dev/null +++ b/iqs-20241111/src/main/java/com/aliyun/sdk/service/iqs20241111/models/ReadPageBasicRequest.java @@ -0,0 +1,77 @@ +// This file is auto-generated, don't edit it. Thanks. +package com.aliyun.sdk.service.iqs20241111.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 ReadPageBasicRequest} extends {@link RequestModel} + * + *ReadPageBasicRequest
+ */ +public class ReadPageBasicRequest extends Request { + @com.aliyun.core.annotation.Body + @com.aliyun.core.annotation.NameInMap("body") + private ReadPageBody body; + + private ReadPageBasicRequest(Builder builder) { + super(builder); + this.body = builder.body; + } + + public static Builder builder() { + return new Builder(); + } + + public static ReadPageBasicRequest create() { + return builder().build(); + } + +@Override + public Builder toBuilder() { + return new Builder(this); + } + + /** + * @return body + */ + public ReadPageBody getBody() { + return this.body; + } + + public static final class Builder extends Request.Builderpost body
+ */ + public Builder body(ReadPageBody body) { + this.putBodyParameter("body", body); + this.body = body; + return this; + } + + @Override + public ReadPageBasicRequest build() { + return new ReadPageBasicRequest(this); + } + + } + +} diff --git a/iqs-20241111/src/main/java/com/aliyun/sdk/service/iqs20241111/models/ReadPageBasicResponse.java b/iqs-20241111/src/main/java/com/aliyun/sdk/service/iqs20241111/models/ReadPageBasicResponse.java new file mode 100644 index 00000000000..0b7b791ef0c --- /dev/null +++ b/iqs-20241111/src/main/java/com/aliyun/sdk/service/iqs20241111/models/ReadPageBasicResponse.java @@ -0,0 +1,131 @@ +// This file is auto-generated, don't edit it. Thanks. +package com.aliyun.sdk.service.iqs20241111.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 ReadPageBasicResponse} extends {@link TeaModel} + * + *ReadPageBasicResponse
+ */ +public class ReadPageBasicResponse extends Response { + @com.aliyun.core.annotation.NameInMap("headers") + private java.util.MapReadPageBasicResponseBody
+ */ +public class ReadPageBasicResponseBody extends TeaModel { + @com.aliyun.core.annotation.NameInMap("data") + private ReadPageItem data; + + @com.aliyun.core.annotation.NameInMap("errorCode") + private String errorCode; + + @com.aliyun.core.annotation.NameInMap("errorMessage") + private String errorMessage; + + @com.aliyun.core.annotation.NameInMap("requestId") + private String requestId; + + private ReadPageBasicResponseBody(Builder builder) { + this.data = builder.data; + this.errorCode = builder.errorCode; + this.errorMessage = builder.errorMessage; + this.requestId = builder.requestId; + } + + public static Builder builder() { + return new Builder(); + } + + public static ReadPageBasicResponseBody create() { + return builder().build(); + } + + public Builder toBuilder() { + return new Builder(this); + } + + /** + * @return data + */ + public ReadPageItem getData() { + return this.data; + } + + /** + * @return errorCode + */ + public String getErrorCode() { + return this.errorCode; + } + + /** + * @return errorMessage + */ + public String getErrorMessage() { + return this.errorMessage; + } + + /** + * @return requestId + */ + public String getRequestId() { + return this.requestId; + } + + public static final class Builder { + private ReadPageItem data; + private String errorCode; + private String errorMessage; + private String requestId; + + private Builder() { + } + + private Builder(ReadPageBasicResponseBody model) { + this.data = model.data; + this.errorCode = model.errorCode; + this.errorMessage = model.errorMessage; + this.requestId = model.requestId; + } + + /** + * data. + */ + public Builder data(ReadPageItem 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; + } + + /** + * requestId. + */ + public Builder requestId(String requestId) { + this.requestId = requestId; + return this; + } + + public ReadPageBasicResponseBody build() { + return new ReadPageBasicResponseBody(this); + } + + } + +} diff --git a/iqs-20241111/src/main/java/com/aliyun/sdk/service/iqs20241111/models/ReadPageBody.java b/iqs-20241111/src/main/java/com/aliyun/sdk/service/iqs20241111/models/ReadPageBody.java new file mode 100644 index 00000000000..c2ced4ccd11 --- /dev/null +++ b/iqs-20241111/src/main/java/com/aliyun/sdk/service/iqs20241111/models/ReadPageBody.java @@ -0,0 +1,314 @@ +// This file is auto-generated, don't edit it. Thanks. +package com.aliyun.sdk.service.iqs20241111.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 ReadPageBody} extends {@link TeaModel} + * + *ReadPageBody
+ */ +public class ReadPageBody extends TeaModel { + @com.aliyun.core.annotation.NameInMap("formats") + private java.util.ListThis parameter is required.
+ */ + public Builder url(String url) { + this.url = url; + return this; + } + + public ReadPageBody build() { + return new ReadPageBody(this); + } + + } + + /** + * + * {@link ReadPageBody} extends {@link TeaModel} + * + *ReadPageBody
+ */ + public static class Readability extends TeaModel { + @com.aliyun.core.annotation.NameInMap("excludeAllImages") + private Boolean excludeAllImages; + + @com.aliyun.core.annotation.NameInMap("excludeAllLinks") + private Boolean excludeAllLinks; + + @com.aliyun.core.annotation.NameInMap("excludedTags") + private java.util.ListReadPageItem
+ */ +public class ReadPageItem extends TeaModel { + @com.aliyun.core.annotation.NameInMap("errorMessage") + private String errorMessage; + + @com.aliyun.core.annotation.NameInMap("html") + private String html; + + @com.aliyun.core.annotation.NameInMap("markdown") + private String markdown; + + @com.aliyun.core.annotation.NameInMap("rawHtml") + private String rawHtml; + + @com.aliyun.core.annotation.NameInMap("screenshot") + private String screenshot; + + @com.aliyun.core.annotation.NameInMap("statusCode") + private Integer statusCode; + + @com.aliyun.core.annotation.NameInMap("text") + private String text; + + private ReadPageItem(Builder builder) { + this.errorMessage = builder.errorMessage; + this.html = builder.html; + this.markdown = builder.markdown; + this.rawHtml = builder.rawHtml; + this.screenshot = builder.screenshot; + this.statusCode = builder.statusCode; + this.text = builder.text; + } + + public static Builder builder() { + return new Builder(); + } + + public static ReadPageItem create() { + return builder().build(); + } + + public Builder toBuilder() { + return new Builder(this); + } + + /** + * @return errorMessage + */ + public String getErrorMessage() { + return this.errorMessage; + } + + /** + * @return html + */ + public String getHtml() { + return this.html; + } + + /** + * @return markdown + */ + public String getMarkdown() { + return this.markdown; + } + + /** + * @return rawHtml + */ + public String getRawHtml() { + return this.rawHtml; + } + + /** + * @return screenshot + */ + public String getScreenshot() { + return this.screenshot; + } + + /** + * @return statusCode + */ + public Integer getStatusCode() { + return this.statusCode; + } + + /** + * @return text + */ + public String getText() { + return this.text; + } + + public static final class Builder { + private String errorMessage; + private String html; + private String markdown; + private String rawHtml; + private String screenshot; + private Integer statusCode; + private String text; + + private Builder() { + } + + private Builder(ReadPageItem model) { + this.errorMessage = model.errorMessage; + this.html = model.html; + this.markdown = model.markdown; + this.rawHtml = model.rawHtml; + this.screenshot = model.screenshot; + this.statusCode = model.statusCode; + this.text = model.text; + } + + /** + * errorMessage. + */ + public Builder errorMessage(String errorMessage) { + this.errorMessage = errorMessage; + return this; + } + + /** + * html. + */ + public Builder html(String html) { + this.html = html; + return this; + } + + /** + * markdown. + */ + public Builder markdown(String markdown) { + this.markdown = markdown; + return this; + } + + /** + * rawHtml. + */ + public Builder rawHtml(String rawHtml) { + this.rawHtml = rawHtml; + return this; + } + + /** + * screenshot. + */ + public Builder screenshot(String screenshot) { + this.screenshot = screenshot; + return this; + } + + /** + * statusCode. + */ + public Builder statusCode(Integer statusCode) { + this.statusCode = statusCode; + return this; + } + + /** + * text. + */ + public Builder text(String text) { + this.text = text; + return this; + } + + public ReadPageItem build() { + return new ReadPageItem(this); + } + + } + +} diff --git a/iqs-20241111/src/main/java/com/aliyun/sdk/service/iqs20241111/models/ReadPageScrapeBody.java b/iqs-20241111/src/main/java/com/aliyun/sdk/service/iqs20241111/models/ReadPageScrapeBody.java new file mode 100644 index 00000000000..dcb1eaaa450 --- /dev/null +++ b/iqs-20241111/src/main/java/com/aliyun/sdk/service/iqs20241111/models/ReadPageScrapeBody.java @@ -0,0 +1,314 @@ +// This file is auto-generated, don't edit it. Thanks. +package com.aliyun.sdk.service.iqs20241111.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 ReadPageScrapeBody} extends {@link TeaModel} + * + *ReadPageScrapeBody
+ */ +public class ReadPageScrapeBody extends TeaModel { + @com.aliyun.core.annotation.NameInMap("formats") + private java.util.ListThis parameter is required.
+ */ + public Builder url(String url) { + this.url = url; + return this; + } + + public ReadPageScrapeBody build() { + return new ReadPageScrapeBody(this); + } + + } + + /** + * + * {@link ReadPageScrapeBody} extends {@link TeaModel} + * + *ReadPageScrapeBody
+ */ + public static class Readability extends TeaModel { + @com.aliyun.core.annotation.NameInMap("excludeAllImages") + private Boolean excludeAllImages; + + @com.aliyun.core.annotation.NameInMap("excludeAllLinks") + private Boolean excludeAllLinks; + + @com.aliyun.core.annotation.NameInMap("excludedTags") + private java.util.ListReadPageScrapeRequest
+ */ +public class ReadPageScrapeRequest extends Request { + @com.aliyun.core.annotation.Body + @com.aliyun.core.annotation.NameInMap("body") + private ReadPageScrapeBody body; + + private ReadPageScrapeRequest(Builder builder) { + super(builder); + this.body = builder.body; + } + + public static Builder builder() { + return new Builder(); + } + + public static ReadPageScrapeRequest create() { + return builder().build(); + } + +@Override + public Builder toBuilder() { + return new Builder(this); + } + + /** + * @return body + */ + public ReadPageScrapeBody getBody() { + return this.body; + } + + public static final class Builder extends Request.Builderpost body
+ */ + public Builder body(ReadPageScrapeBody body) { + this.putBodyParameter("body", body); + this.body = body; + return this; + } + + @Override + public ReadPageScrapeRequest build() { + return new ReadPageScrapeRequest(this); + } + + } + +} diff --git a/iqs-20241111/src/main/java/com/aliyun/sdk/service/iqs20241111/models/ReadPageScrapeResponse.java b/iqs-20241111/src/main/java/com/aliyun/sdk/service/iqs20241111/models/ReadPageScrapeResponse.java new file mode 100644 index 00000000000..5ba9e0eed16 --- /dev/null +++ b/iqs-20241111/src/main/java/com/aliyun/sdk/service/iqs20241111/models/ReadPageScrapeResponse.java @@ -0,0 +1,131 @@ +// This file is auto-generated, don't edit it. Thanks. +package com.aliyun.sdk.service.iqs20241111.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 ReadPageScrapeResponse} extends {@link TeaModel} + * + *ReadPageScrapeResponse
+ */ +public class ReadPageScrapeResponse extends Response { + @com.aliyun.core.annotation.NameInMap("headers") + private java.util.MapReadPageScrapeResponseBody
+ */ +public class ReadPageScrapeResponseBody extends TeaModel { + @com.aliyun.core.annotation.NameInMap("data") + private ReadPageItem data; + + @com.aliyun.core.annotation.NameInMap("errorCode") + private String errorCode; + + @com.aliyun.core.annotation.NameInMap("errorMessage") + private String errorMessage; + + @com.aliyun.core.annotation.NameInMap("requestId") + private String requestId; + + private ReadPageScrapeResponseBody(Builder builder) { + this.data = builder.data; + this.errorCode = builder.errorCode; + this.errorMessage = builder.errorMessage; + this.requestId = builder.requestId; + } + + public static Builder builder() { + return new Builder(); + } + + public static ReadPageScrapeResponseBody create() { + return builder().build(); + } + + public Builder toBuilder() { + return new Builder(this); + } + + /** + * @return data + */ + public ReadPageItem getData() { + return this.data; + } + + /** + * @return errorCode + */ + public String getErrorCode() { + return this.errorCode; + } + + /** + * @return errorMessage + */ + public String getErrorMessage() { + return this.errorMessage; + } + + /** + * @return requestId + */ + public String getRequestId() { + return this.requestId; + } + + public static final class Builder { + private ReadPageItem data; + private String errorCode; + private String errorMessage; + private String requestId; + + private Builder() { + } + + private Builder(ReadPageScrapeResponseBody model) { + this.data = model.data; + this.errorCode = model.errorCode; + this.errorMessage = model.errorMessage; + this.requestId = model.requestId; + } + + /** + * data. + */ + public Builder data(ReadPageItem 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; + } + + /** + * requestId. + */ + public Builder requestId(String requestId) { + this.requestId = requestId; + return this; + } + + public ReadPageScrapeResponseBody build() { + return new ReadPageScrapeResponseBody(this); + } + + } + +} diff --git a/iqs-20241111/src/main/java/com/aliyun/sdk/service/iqs20241111/models/RequestContents.java b/iqs-20241111/src/main/java/com/aliyun/sdk/service/iqs20241111/models/RequestContents.java index 94029008544..4616027c0f4 100644 --- a/iqs-20241111/src/main/java/com/aliyun/sdk/service/iqs20241111/models/RequestContents.java +++ b/iqs-20241111/src/main/java/com/aliyun/sdk/service/iqs20241111/models/RequestContents.java @@ -26,6 +26,9 @@ public class RequestContents extends TeaModel { @com.aliyun.core.annotation.NameInMap("rerankScore") private Boolean rerankScore; + @com.aliyun.core.annotation.NameInMap("richMainBody") + private Boolean richMainBody; + @com.aliyun.core.annotation.NameInMap("summary") private Boolean summary; @@ -33,6 +36,7 @@ private RequestContents(Builder builder) { this.mainText = builder.mainText; this.markdownText = builder.markdownText; this.rerankScore = builder.rerankScore; + this.richMainBody = builder.richMainBody; this.summary = builder.summary; } @@ -69,6 +73,13 @@ public Boolean getRerankScore() { return this.rerankScore; } + /** + * @return richMainBody + */ + public Boolean getRichMainBody() { + return this.richMainBody; + } + /** * @return summary */ @@ -80,6 +91,7 @@ public static final class Builder { private Boolean mainText; private Boolean markdownText; private Boolean rerankScore; + private Boolean richMainBody; private Boolean summary; private Builder() { @@ -89,6 +101,7 @@ private Builder(RequestContents model) { this.mainText = model.mainText; this.markdownText = model.markdownText; this.rerankScore = model.rerankScore; + this.richMainBody = model.richMainBody; this.summary = model.summary; } @@ -116,6 +129,14 @@ public Builder rerankScore(Boolean rerankScore) { return this; } + /** + * richMainBody. + */ + public Builder richMainBody(Boolean richMainBody) { + this.richMainBody = richMainBody; + return this; + } + /** * summary. */ diff --git a/iqs-20241111/src/main/java/com/aliyun/sdk/service/iqs20241111/models/ScorePageItem.java b/iqs-20241111/src/main/java/com/aliyun/sdk/service/iqs20241111/models/ScorePageItem.java index c59f4c4e4a9..25c27a04e20 100644 --- a/iqs-20241111/src/main/java/com/aliyun/sdk/service/iqs20241111/models/ScorePageItem.java +++ b/iqs-20241111/src/main/java/com/aliyun/sdk/service/iqs20241111/models/ScorePageItem.java @@ -25,6 +25,9 @@ public class ScorePageItem extends TeaModel { @com.aliyun.core.annotation.Validation(required = true) private String displayLink; + @com.aliyun.core.annotation.NameInMap("hostAuthorityScore") + private Double hostAuthorityScore; + @com.aliyun.core.annotation.NameInMap("hostLogo") private String hostLogo; @@ -62,6 +65,9 @@ public class ScorePageItem extends TeaModel { @com.aliyun.core.annotation.Validation(required = true) private Long publishTime; + @com.aliyun.core.annotation.NameInMap("richMainBody") + private String richMainBody; + @com.aliyun.core.annotation.NameInMap("score") private Double score; @@ -78,9 +84,13 @@ public class ScorePageItem extends TeaModel { @com.aliyun.core.annotation.Validation(required = true) private String title; + @com.aliyun.core.annotation.NameInMap("websiteAuthorityScore") + private Integer websiteAuthorityScore; + private ScorePageItem(Builder builder) { this.cardType = builder.cardType; this.displayLink = builder.displayLink; + this.hostAuthorityScore = builder.hostAuthorityScore; this.hostLogo = builder.hostLogo; this.hostname = builder.hostname; this.htmlSnippet = builder.htmlSnippet; @@ -92,11 +102,13 @@ private ScorePageItem(Builder builder) { this.mime = builder.mime; this.pageMap = builder.pageMap; this.publishTime = builder.publishTime; + this.richMainBody = builder.richMainBody; this.score = builder.score; this.siteLabel = builder.siteLabel; this.snippet = builder.snippet; this.summary = builder.summary; this.title = builder.title; + this.websiteAuthorityScore = builder.websiteAuthorityScore; } public static Builder builder() { @@ -125,6 +137,13 @@ public String getDisplayLink() { return this.displayLink; } + /** + * @return hostAuthorityScore + */ + public Double getHostAuthorityScore() { + return this.hostAuthorityScore; + } + /** * @return hostLogo */ @@ -202,6 +221,13 @@ public Long getPublishTime() { return this.publishTime; } + /** + * @return richMainBody + */ + public String getRichMainBody() { + return this.richMainBody; + } + /** * @return score */ @@ -237,9 +263,17 @@ public String getTitle() { return this.title; } + /** + * @return websiteAuthorityScore + */ + public Integer getWebsiteAuthorityScore() { + return this.websiteAuthorityScore; + } + public static final class Builder { private String cardType; private String displayLink; + private Double hostAuthorityScore; private String hostLogo; private String hostname; private String htmlSnippet; @@ -251,11 +285,13 @@ public static final class Builder { private String mime; private java.util.MapUnifiedPageItem
*/ public class UnifiedPageItem extends TeaModel { + @com.aliyun.core.annotation.NameInMap("hostAuthorityScore") + private Double hostAuthorityScore; + @com.aliyun.core.annotation.NameInMap("hostLogo") private String hostLogo; @@ -41,6 +44,9 @@ public class UnifiedPageItem extends TeaModel { @com.aliyun.core.annotation.NameInMap("rerankScore") private Double rerankScore; + @com.aliyun.core.annotation.NameInMap("richMainBody") + private String richMainBody; + @com.aliyun.core.annotation.NameInMap("snippet") private String snippet; @@ -50,7 +56,11 @@ public class UnifiedPageItem extends TeaModel { @com.aliyun.core.annotation.NameInMap("title") private String title; + @com.aliyun.core.annotation.NameInMap("websiteAuthorityScore") + private Integer websiteAuthorityScore; + private UnifiedPageItem(Builder builder) { + this.hostAuthorityScore = builder.hostAuthorityScore; this.hostLogo = builder.hostLogo; this.hostname = builder.hostname; this.images = builder.images; @@ -59,9 +69,11 @@ private UnifiedPageItem(Builder builder) { this.markdownText = builder.markdownText; this.publishedTime = builder.publishedTime; this.rerankScore = builder.rerankScore; + this.richMainBody = builder.richMainBody; this.snippet = builder.snippet; this.summary = builder.summary; this.title = builder.title; + this.websiteAuthorityScore = builder.websiteAuthorityScore; } public static Builder builder() { @@ -76,6 +88,13 @@ public Builder toBuilder() { return new Builder(this); } + /** + * @return hostAuthorityScore + */ + public Double getHostAuthorityScore() { + return this.hostAuthorityScore; + } + /** * @return hostLogo */ @@ -132,6 +151,13 @@ public Double getRerankScore() { return this.rerankScore; } + /** + * @return richMainBody + */ + public String getRichMainBody() { + return this.richMainBody; + } + /** * @return snippet */ @@ -153,7 +179,15 @@ public String getTitle() { return this.title; } + /** + * @return websiteAuthorityScore + */ + public Integer getWebsiteAuthorityScore() { + return this.websiteAuthorityScore; + } + public static final class Builder { + private Double hostAuthorityScore; private String hostLogo; private String hostname; private java.util.ListUnifiedSearchInput
*/ public class UnifiedSearchInput extends TeaModel { + @com.aliyun.core.annotation.NameInMap("advancedParams") + private java.util.MapUpdateProjectModelTierRequest
+ */ +public class UpdateProjectModelTierRequest extends Request { + @com.aliyun.core.annotation.Path + @com.aliyun.core.annotation.NameInMap("projectName") + @com.aliyun.core.annotation.Validation(required = true) + private String projectName; + + private UpdateProjectModelTierRequest(Builder builder) { + super(builder); + this.projectName = builder.projectName; + } + + public static Builder builder() { + return new Builder(); + } + + public static UpdateProjectModelTierRequest create() { + return builder().build(); + } + +@Override + public Builder toBuilder() { + return new Builder(this); + } + + /** + * @return projectName + */ + public String getProjectName() { + return this.projectName; + } + + public static final class Builder extends Request.BuilderThis parameter is required.
+ * + * example: + *projectA
+ */ + public Builder projectName(String projectName) { + this.putPathParameter("projectName", projectName); + this.projectName = projectName; + return this; + } + + @Override + public UpdateProjectModelTierRequest build() { + return new UpdateProjectModelTierRequest(this); + } + + } + +} diff --git a/maxcompute-20220104/src/main/java/com/aliyun/sdk/service/maxcompute20220104/models/UpdateProjectModelTierResponse.java b/maxcompute-20220104/src/main/java/com/aliyun/sdk/service/maxcompute20220104/models/UpdateProjectModelTierResponse.java new file mode 100644 index 00000000000..611b1cf3fb1 --- /dev/null +++ b/maxcompute-20220104/src/main/java/com/aliyun/sdk/service/maxcompute20220104/models/UpdateProjectModelTierResponse.java @@ -0,0 +1,131 @@ +// This file is auto-generated, don't edit it. Thanks. +package com.aliyun.sdk.service.maxcompute20220104.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 UpdateProjectModelTierResponse} extends {@link TeaModel} + * + *UpdateProjectModelTierResponse
+ */ +public class UpdateProjectModelTierResponse extends Response { + @com.aliyun.core.annotation.NameInMap("headers") + private java.util.MapUpdateProjectModelTierResponseBody
+ */ +public class UpdateProjectModelTierResponseBody 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("errorMsg") + private String errorMsg; + + @com.aliyun.core.annotation.NameInMap("httpCode") + private Integer httpCode; + + @com.aliyun.core.annotation.NameInMap("requestId") + private String requestId; + + private UpdateProjectModelTierResponseBody(Builder builder) { + this.data = builder.data; + this.errorCode = builder.errorCode; + this.errorMsg = builder.errorMsg; + this.httpCode = builder.httpCode; + this.requestId = builder.requestId; + } + + public static Builder builder() { + return new Builder(); + } + + public static UpdateProjectModelTierResponseBody create() { + return builder().build(); + } + + public Builder toBuilder() { + return new Builder(this); + } + + /** + * @return data + */ + public String getData() { + return this.data; + } + + /** + * @return errorCode + */ + public String getErrorCode() { + return this.errorCode; + } + + /** + * @return errorMsg + */ + public String getErrorMsg() { + return this.errorMsg; + } + + /** + * @return httpCode + */ + public Integer getHttpCode() { + return this.httpCode; + } + + /** + * @return requestId + */ + public String getRequestId() { + return this.requestId; + } + + public static final class Builder { + private String data; + private String errorCode; + private String errorMsg; + private Integer httpCode; + private String requestId; + + private Builder() { + } + + private Builder(UpdateProjectModelTierResponseBody model) { + this.data = model.data; + this.errorCode = model.errorCode; + this.errorMsg = model.errorMsg; + this.httpCode = model.httpCode; + this.requestId = model.requestId; + } + + /** + * data. + */ + public Builder data(String data) { + this.data = data; + return this; + } + + /** + * errorCode. + */ + public Builder errorCode(String errorCode) { + this.errorCode = errorCode; + return this; + } + + /** + * errorMsg. + */ + public Builder errorMsg(String errorMsg) { + this.errorMsg = errorMsg; + return this; + } + + /** + * httpCode. + */ + public Builder httpCode(Integer httpCode) { + this.httpCode = httpCode; + return this; + } + + /** + * requestId. + */ + public Builder requestId(String requestId) { + this.requestId = requestId; + return this; + } + + public UpdateProjectModelTierResponseBody build() { + return new UpdateProjectModelTierResponseBody(this); + } + + } + +} diff --git a/servicemesh-20200111/ChangeLog.txt b/servicemesh-20200111/ChangeLog.txt index 5e6c5f79f6f..d37e1b6087f 100644 --- a/servicemesh-20200111/ChangeLog.txt +++ b/servicemesh-20200111/ChangeLog.txt @@ -1,3 +1,6 @@ +2025-11-24 Version: 1.0.7 +- Generated java-async 2020-01-11 for servicemesh. + 2023-11-13 Version: 1.0.6 - Generated java-async 2020-01-11 for servicemesh. diff --git a/servicemesh-20200111/pom.xml b/servicemesh-20200111/pom.xml index 9543bfb38e6..34e550f5e1c 100644 --- a/servicemesh-20200111/pom.xml +++ b/servicemesh-20200111/pom.xml @@ -3,7 +3,7 @@