Skip to content

Commit daf576f

Browse files
committed
Generated java-async 2020-05-18 for dataworks-public.
1 parent 253d374 commit daf576f

21 files changed

+165
-139
lines changed

dataworks-public-20200518/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2023-03-31 Version: 1.1.8
2+
- Generated java-async 2020-05-18 for dataworks-public.
3+
14
2023-03-16 Version: 1.1.7
25
- Generated java-async 2020-05-18 for dataworks-public.
36

dataworks-public-20200518/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0modelVersion>
44
<groupId>com.aliyungroupId>
55
<artifactId>alibabacloud-dataworks_public20200518artifactId>
6-
<version>1.1.7version>
6+
<version>1.1.8version>
77
<packaging>jarpackaging>
88
<name>alibabacloud-dataworks_public20200518name>
99
<description>Alibaba Cloud dataworks-public (20200518) Async SDK for Java
@@ -41,7 +41,7 @@
4141
<java.version>1.8java.version>
4242
<maven.compiler.source>8maven.compiler.source>
4343
<maven.compiler.target>8maven.compiler.target>
44-
<service.version>0.1.12-betaservice.version>
44+
<service.version>0.1.13-betaservice.version>
4545
properties>
4646
<dependencies>
4747
<dependency>

dataworks-public-20200518/src/main/java/com/aliyun/sdk/service/dataworks_public20200518/models/CreateDataServiceApiRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,10 @@ public class CreateDataServiceApiRequest extends Request {
6161
@NameInMap("RegistrationDetails")
6262
private String registrationDetails;
6363

64+
@Body
65+
@NameInMap("RequestContentType")
66+
private Integer requestContentType;
67+
6468
@Body
6569
@NameInMap("RequestMethod")
6670
@Validation(required = true)
@@ -114,6 +118,7 @@ private CreateDataServiceApiRequest(Builder builder) {
114118
this.projectId = builder.projectId;
115119
this.protocols = builder.protocols;
116120
this.registrationDetails = builder.registrationDetails;
121+
this.requestContentType = builder.requestContentType;
117122
this.requestMethod = builder.requestMethod;
118123
this.resourceGroupId = builder.resourceGroupId;
119124
this.responseContentType = builder.responseContentType;
@@ -208,6 +213,13 @@ public String getRegistrationDetails() {
208213
return this.registrationDetails;
209214
}
210215

216+
/**
217+
* @return requestContentType
218+
*/
219+
public Integer getRequestContentType() {
220+
return this.requestContentType;
221+
}
222+
211223
/**
212224
* @return requestMethod
213225
*/
@@ -282,6 +294,7 @@ public static final class Builder extends Request.Builder
282294
private Long projectId;
283295
private String protocols;
284296
private String registrationDetails;
297+
private Integer requestContentType;
285298
private Integer requestMethod;
286299
private Long resourceGroupId;
287300
private Integer responseContentType;
@@ -308,6 +321,7 @@ private Builder(CreateDataServiceApiRequest request) {
308321
this.projectId = request.projectId;
309322
this.protocols = request.protocols;
310323
this.registrationDetails = request.registrationDetails;
324+
this.requestContentType = request.requestContentType;
311325
this.requestMethod = request.requestMethod;
312326
this.resourceGroupId = request.resourceGroupId;
313327
this.responseContentType = request.responseContentType;
@@ -409,6 +423,15 @@ public Builder registrationDetails(String registrationDetails) {
409423
return this;
410424
}
411425

426+
/**
427+
* RequestContentType.
428+
*/
429+
public Builder requestContentType(Integer requestContentType) {
430+
this.putBodyParameter("RequestContentType", requestContentType);
431+
this.requestContentType = requestContentType;
432+
return this;
433+
}
434+
412435
/**
413436
* The request method of the API. Valid values: 0, 1, 2, and 3. The value 0 indicates the GET method. The value 1 indicates the POST method. The value 2 indicates the PUT method. The value 3 indicates the DELETE method. APIs generated in wizard or script mode support the GET and POST methods. APIs generated by registration support the GET, POST, PUT, and DELETE methods.
414437
*/

dataworks-public-20200518/src/main/java/com/aliyun/sdk/service/dataworks_public20200518/models/CreateDataServiceGroupRequest.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ public Builder regionId(String regionId) {
138138
}
139139

140140
/**
141-
* ApiGatewayGroupId.
141+
* The ID of the API group that is associated with the business process in the API Gateway console. You can log on to the API Gateway console and go to the Group Details page to view the ID.
142142
*/
143143
public Builder apiGatewayGroupId(String apiGatewayGroupId) {
144144
this.putBodyParameter("ApiGatewayGroupId", apiGatewayGroupId);
@@ -147,7 +147,7 @@ public Builder apiGatewayGroupId(String apiGatewayGroupId) {
147147
}
148148

149149
/**
150-
* Description.
150+
* The description of the business process.
151151
*/
152152
public Builder description(String description) {
153153
this.putBodyParameter("Description", description);
@@ -156,7 +156,7 @@ public Builder description(String description) {
156156
}
157157

158158
/**
159-
* GroupName.
159+
* The name of the business process.
160160
*/
161161
public Builder groupName(String groupName) {
162162
this.putBodyParameter("GroupName", groupName);
@@ -165,7 +165,7 @@ public Builder groupName(String groupName) {
165165
}
166166

167167
/**
168-
* ProjectId.
168+
* The ID of the workspace.
169169
*/
170170
public Builder projectId(Long projectId) {
171171
this.putBodyParameter("ProjectId", projectId);
@@ -174,7 +174,7 @@ public Builder projectId(Long projectId) {
174174
}
175175

176176
/**
177-
* TenantId.
177+
* The ID of the tenant.
178178
*/
179179
public Builder tenantId(Long tenantId) {
180180
this.putBodyParameter("TenantId", tenantId);

dataworks-public-20200518/src/main/java/com/aliyun/sdk/service/dataworks_public20200518/models/CreateDataServiceGroupResponseBody.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ public static final class Builder {
5050
private String requestId;
5151

5252
/**
53-
* GroupId.
53+
* The ID of the business process.
5454
*/
5555
public Builder groupId(String groupId) {
5656
this.groupId = groupId;
5757
return this;
5858
}
5959

6060
/**
61-
* RequestId.
61+
* The ID of the request.
6262
*/
6363
public Builder requestId(String requestId) {
6464
this.requestId = requestId;

dataworks-public-20200518/src/main/java/com/aliyun/sdk/service/dataworks_public20200518/models/DeleteDataServiceApiRequest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public Builder regionId(String regionId) {
109109
}
110110

111111
/**
112-
* ApiId.
112+
* The ID of the API in DataService Studio.
113113
*/
114114
public Builder apiId(Long apiId) {
115115
this.putBodyParameter("ApiId", apiId);
@@ -118,7 +118,7 @@ public Builder apiId(Long apiId) {
118118
}
119119

120120
/**
121-
* ProjectId.
121+
* The ID of the workspace.
122122
*/
123123
public Builder projectId(Long projectId) {
124124
this.putBodyParameter("ProjectId", projectId);
@@ -127,7 +127,7 @@ public Builder projectId(Long projectId) {
127127
}
128128

129129
/**
130-
* TenantId.
130+
* The ID of the tenant.
131131
*/
132132
public Builder tenantId(Long tenantId) {
133133
this.putBodyParameter("TenantId", tenantId);

dataworks-public-20200518/src/main/java/com/aliyun/sdk/service/dataworks_public20200518/models/DeleteDataServiceApiResponseBody.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -98,47 +98,47 @@ public static final class Builder {
9898
private Boolean success;
9999

100100
/**
101-
* Data.
101+
* Indicates whether the API was deleted.
102102
*/
103103
public Builder data(Boolean data) {
104104
this.data = data;
105105
return this;
106106
}
107107

108108
/**
109-
* ErrorCode.
109+
* The error code.
110110
*/
111111
public Builder errorCode(String errorCode) {
112112
this.errorCode = errorCode;
113113
return this;
114114
}
115115

116116
/**
117-
* ErrorMessage.
117+
* The error message.
118118
*/
119119
public Builder errorMessage(String errorMessage) {
120120
this.errorMessage = errorMessage;
121121
return this;
122122
}
123123

124124
/**
125-
* HttpStatusCode.
125+
* The HTTP status code.
126126
*/
127127
public Builder httpStatusCode(Integer httpStatusCode) {
128128
this.httpStatusCode = httpStatusCode;
129129
return this;
130130
}
131131

132132
/**
133-
* RequestId.
133+
* The ID of the request.
134134
*/
135135
public Builder requestId(String requestId) {
136136
this.requestId = requestId;
137137
return this;
138138
}
139139

140140
/**
141-
* Success.
141+
* Indicates whether the request was successful.
142142
*/
143143
public Builder success(Boolean success) {
144144
this.success = success;

dataworks-public-20200518/src/main/java/com/aliyun/sdk/service/dataworks_public20200518/models/GetDataServiceApiTestRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public Builder regionId(String regionId) {
7979
}
8080

8181
/**
82-
* TestId.
82+
* The ID of the test. You can obtain the test ID from the response of the asynchronous operation TestDataServiceApi. You can also call the ListDataServiceApiTest operation to obtain the ID of the latest test.
8383
*/
8484
public Builder testId(Long testId) {
8585
this.putQueryParameter("TestId", testId);

dataworks-public-20200518/src/main/java/com/aliyun/sdk/service/dataworks_public20200518/models/GetDataServiceApiTestResponseBody.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ public static final class Builder {
5050
private String requestId;
5151

5252
/**
53-
* Data.
53+
* The returned data.
5454
*/
5555
public Builder data(Data data) {
5656
this.data = data;
5757
return this;
5858
}
5959

6060
/**
61-
* RequestId.
61+
* The ID of the request.
6262
*/
6363
public Builder requestId(String requestId) {
6464
this.requestId = requestId;
@@ -182,23 +182,23 @@ public static final class Builder {
182182
private String status;
183183

184184
/**
185-
* ApiId.
185+
* The ID of the API on which the test is performed.
186186
*/
187187
public Builder apiId(Long apiId) {
188188
this.apiId = apiId;
189189
return this;
190190
}
191191

192192
/**
193-
* CostTime.
193+
* The time consumed for the test.
194194
*/
195195
public Builder costTime(String costTime) {
196196
this.costTime = costTime;
197197
return this;
198198
}
199199

200200
/**
201-
* DebugInfo.
201+
* The debugging information.
202202
*/
203203
public Builder debugInfo(String debugInfo) {
204204
this.debugInfo = debugInfo;
@@ -214,31 +214,31 @@ public Builder nodesDebugInfo(String nodesDebugInfo) {
214214
}
215215

216216
/**
217-
* ParamMap.
217+
* The request parameters configured for the test.
218218
*/
219219
public Builder paramMap(String paramMap) {
220220
this.paramMap = paramMap;
221221
return this;
222222
}
223223

224224
/**
225-
* RetCode.
225+
* The status code returned for the test. If the test is not complete, this parameter is not returned.
226226
*/
227227
public Builder retCode(Long retCode) {
228228
this.retCode = retCode;
229229
return this;
230230
}
231231

232232
/**
233-
* RetResult.
233+
* The result returned for the test.
234234
*/
235235
public Builder retResult(String retResult) {
236236
this.retResult = retResult;
237237
return this;
238238
}
239239

240240
/**
241-
* Status.
241+
* The status of the test. Valid values: RUNNING and FINISHED.
242242
*/
243243
public Builder status(String status) {
244244
this.status = status;

dataworks-public-20200518/src/main/java/com/aliyun/sdk/service/dataworks_public20200518/models/GetDataServiceApplicationRequest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public Builder regionId(String regionId) {
109109
}
110110

111111
/**
112-
* ApplicationId.
112+
* The ID of the application. You can view the information about the application in the API Gateway console.
113113
*/
114114
public Builder applicationId(Long applicationId) {
115115
this.putBodyParameter("ApplicationId", applicationId);
@@ -118,7 +118,7 @@ public Builder applicationId(Long applicationId) {
118118
}
119119

120120
/**
121-
* ProjectId.
121+
* The ID of the workspace.
122122
*/
123123
public Builder projectId(Long projectId) {
124124
this.putBodyParameter("ProjectId", projectId);
@@ -127,7 +127,7 @@ public Builder projectId(Long projectId) {
127127
}
128128

129129
/**
130-
* TenantId.
130+
* The ID of the tenant.
131131
*/
132132
public Builder tenantId(Long tenantId) {
133133
this.putBodyParameter("TenantId", tenantId);

0 commit comments

Comments
 (0)