Skip to content

Commit b70764f

Browse files
committed
Generated java-async 2021-02-04 for AIWorkSpace.
1 parent 486bcfd commit b70764f

File tree

195 files changed

+1327
-1494
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

195 files changed

+1327
-1494
lines changed

aiworkspace-20210204/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2024-06-20 Version: 1.0.7
2+
- Generated java-async 2021-02-04 for AIWorkSpace.
3+
14
2024-04-12 Version: 1.0.6
25
- Generated java-async 2021-02-04 for AIWorkSpace.
36

aiworkspace-20210204/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.aliyun</groupId>
55
<artifactId>alibabacloud-aiworkspace20210204</artifactId>
6-
<version>1.0.6</version>
6+
<version>1.0.7</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-aiworkspace20210204</name>
99
<description>Alibaba Cloud AIWorkSpace (20210204) Async SDK for Java
@@ -41,7 +41,7 @@
4141
<java.version>1.8</java.version>
4242
<maven.compiler.source>8</maven.compiler.source>
4343
<maven.compiler.target>8</maven.compiler.target>
44-
<service.version>0.2.7-beta</service.version>
44+
<service.version>0.2.10-beta</service.version>
4545
</properties>
4646
<dependencies>
4747
<dependency>

aiworkspace-20210204/src/main/java/com/aliyun/sdk/service/aiworkspace20210204/models/AddImageLabelsRequest.java

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// This file is auto-generated, don't edit it. Thanks.
22
package com.aliyun.sdk.service.aiworkspace20210204.models;
33

4-
import com.aliyun.core.annotation.*;
54
import darabonba.core.RequestModel;
65
import darabonba.core.TeaModel;
76
import com.aliyun.sdk.gateway.pop.models.*;
@@ -12,14 +11,14 @@
1211
* <p>AddImageLabelsRequest</p>
1312
*/
1413
public class AddImageLabelsRequest extends Request {
15-
@Path
16-
@NameInMap("ImageId")
17-
@Validation(required = true)
14+
@com.aliyun.core.annotation.Path
15+
@com.aliyun.core.annotation.NameInMap("ImageId")
16+
@com.aliyun.core.annotation.Validation(required = true)
1817
private String imageId;
1918

20-
@Body
21-
@NameInMap("Labels")
22-
@Validation(required = true)
19+
@com.aliyun.core.annotation.Body
20+
@com.aliyun.core.annotation.NameInMap("Labels")
21+
@com.aliyun.core.annotation.Validation(required = true)
2322
private java.util.List < Labels> labels;
2423

2524
private AddImageLabelsRequest(Builder builder) {
@@ -95,10 +94,10 @@ public AddImageLabelsRequest build() {
9594
}
9695

9796
public static class Labels extends TeaModel {
98-
@NameInMap("Key")
97+
@com.aliyun.core.annotation.NameInMap("Key")
9998
private String key;
10099

101-
@NameInMap("Value")
100+
@com.aliyun.core.annotation.NameInMap("Value")
102101
private String value;
103102

104103
private Labels(Builder builder) {

aiworkspace-20210204/src/main/java/com/aliyun/sdk/service/aiworkspace20210204/models/AddImageLabelsResponse.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// This file is auto-generated, don't edit it. Thanks.
22
package com.aliyun.sdk.service.aiworkspace20210204.models;
33

4-
import com.aliyun.core.annotation.*;
54
import darabonba.core.RequestModel;
65
import darabonba.core.TeaModel;
76
import com.aliyun.sdk.gateway.pop.models.*;
@@ -12,13 +11,13 @@
1211
* <p>AddImageLabelsResponse</p>
1312
*/
1413
public class AddImageLabelsResponse extends Response {
15-
@NameInMap("headers")
14+
@com.aliyun.core.annotation.NameInMap("headers")
1615
private java.util.Map < String, String > headers;
1716

18-
@NameInMap("statusCode")
17+
@com.aliyun.core.annotation.NameInMap("statusCode")
1918
private Integer statusCode;
2019

21-
@NameInMap("body")
20+
@com.aliyun.core.annotation.NameInMap("body")
2221
private AddImageLabelsResponseBody body;
2322

2423
private AddImageLabelsResponse(BuilderImpl builder) {

aiworkspace-20210204/src/main/java/com/aliyun/sdk/service/aiworkspace20210204/models/AddImageLabelsResponseBody.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// This file is auto-generated, don't edit it. Thanks.
22
package com.aliyun.sdk.service.aiworkspace20210204.models;
33

4-
import com.aliyun.core.annotation.*;
54
import darabonba.core.RequestModel;
65
import darabonba.core.TeaModel;
76
import com.aliyun.sdk.gateway.pop.models.*;
@@ -12,7 +11,7 @@
1211
* <p>AddImageLabelsResponseBody</p>
1312
*/
1413
public class AddImageLabelsResponseBody extends TeaModel {
15-
@NameInMap("RequestId")
14+
@com.aliyun.core.annotation.NameInMap("RequestId")
1615
private String requestId;
1716

1817
private AddImageLabelsResponseBody(Builder builder) {

aiworkspace-20210204/src/main/java/com/aliyun/sdk/service/aiworkspace20210204/models/AddImageRequest.java

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// This file is auto-generated, don't edit it. Thanks.
22
package com.aliyun.sdk.service.aiworkspace20210204.models;
33

4-
import com.aliyun.core.annotation.*;
54
import darabonba.core.RequestModel;
65
import darabonba.core.TeaModel;
76
import com.aliyun.sdk.gateway.pop.models.*;
@@ -12,38 +11,38 @@
1211
* <p>AddImageRequest</p>
1312
*/
1413
public class AddImageRequest extends Request {
15-
@Body
16-
@NameInMap("Accessibility")
14+
@com.aliyun.core.annotation.Body
15+
@com.aliyun.core.annotation.NameInMap("Accessibility")
1716
private String accessibility;
1817

19-
@Body
20-
@NameInMap("Description")
18+
@com.aliyun.core.annotation.Body
19+
@com.aliyun.core.annotation.NameInMap("Description")
2120
private String description;
2221

23-
@Body
24-
@NameInMap("ImageId")
22+
@com.aliyun.core.annotation.Body
23+
@com.aliyun.core.annotation.NameInMap("ImageId")
2524
private String imageId;
2625

27-
@Body
28-
@NameInMap("ImageUri")
29-
@Validation(required = true)
26+
@com.aliyun.core.annotation.Body
27+
@com.aliyun.core.annotation.NameInMap("ImageUri")
28+
@com.aliyun.core.annotation.Validation(required = true)
3029
private String imageUri;
3130

32-
@Body
33-
@NameInMap("Labels")
31+
@com.aliyun.core.annotation.Body
32+
@com.aliyun.core.annotation.NameInMap("Labels")
3433
private java.util.List < Labels> labels;
3534

36-
@Body
37-
@NameInMap("Name")
38-
@Validation(required = true)
35+
@com.aliyun.core.annotation.Body
36+
@com.aliyun.core.annotation.NameInMap("Name")
37+
@com.aliyun.core.annotation.Validation(required = true)
3938
private String name;
4039

41-
@Body
42-
@NameInMap("Size")
40+
@com.aliyun.core.annotation.Body
41+
@com.aliyun.core.annotation.NameInMap("Size")
4342
private Integer size;
4443

45-
@Body
46-
@NameInMap("WorkspaceId")
44+
@com.aliyun.core.annotation.Body
45+
@com.aliyun.core.annotation.NameInMap("WorkspaceId")
4746
private String workspaceId;
4847

4948
private AddImageRequest(Builder builder) {
@@ -233,10 +232,10 @@ public AddImageRequest build() {
233232
}
234233

235234
public static class Labels extends TeaModel {
236-
@NameInMap("Key")
235+
@com.aliyun.core.annotation.NameInMap("Key")
237236
private String key;
238237

239-
@NameInMap("Value")
238+
@com.aliyun.core.annotation.NameInMap("Value")
240239
private String value;
241240

242241
private Labels(Builder builder) {

aiworkspace-20210204/src/main/java/com/aliyun/sdk/service/aiworkspace20210204/models/AddImageResponse.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// This file is auto-generated, don't edit it. Thanks.
22
package com.aliyun.sdk.service.aiworkspace20210204.models;
33

4-
import com.aliyun.core.annotation.*;
54
import darabonba.core.RequestModel;
65
import darabonba.core.TeaModel;
76
import com.aliyun.sdk.gateway.pop.models.*;
@@ -12,13 +11,13 @@
1211
* <p>AddImageResponse</p>
1312
*/
1413
public class AddImageResponse extends Response {
15-
@NameInMap("headers")
14+
@com.aliyun.core.annotation.NameInMap("headers")
1615
private java.util.Map < String, String > headers;
1716

18-
@NameInMap("statusCode")
17+
@com.aliyun.core.annotation.NameInMap("statusCode")
1918
private Integer statusCode;
2019

21-
@NameInMap("body")
20+
@com.aliyun.core.annotation.NameInMap("body")
2221
private AddImageResponseBody body;
2322

2423
private AddImageResponse(BuilderImpl builder) {

aiworkspace-20210204/src/main/java/com/aliyun/sdk/service/aiworkspace20210204/models/AddImageResponseBody.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// This file is auto-generated, don't edit it. Thanks.
22
package com.aliyun.sdk.service.aiworkspace20210204.models;
33

4-
import com.aliyun.core.annotation.*;
54
import darabonba.core.RequestModel;
65
import darabonba.core.TeaModel;
76
import com.aliyun.sdk.gateway.pop.models.*;
@@ -12,10 +11,10 @@
1211
* <p>AddImageResponseBody</p>
1312
*/
1413
public class AddImageResponseBody extends TeaModel {
15-
@NameInMap("ImageId")
14+
@com.aliyun.core.annotation.NameInMap("ImageId")
1615
private String imageId;
1716

18-
@NameInMap("RequestId")
17+
@com.aliyun.core.annotation.NameInMap("RequestId")
1918
private String requestId;
2019

2120
private AddImageResponseBody(Builder builder) {

aiworkspace-20210204/src/main/java/com/aliyun/sdk/service/aiworkspace20210204/models/AddMemberRoleRequest.java

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// This file is auto-generated, don't edit it. Thanks.
22
package com.aliyun.sdk.service.aiworkspace20210204.models;
33

4-
import com.aliyun.core.annotation.*;
54
import darabonba.core.RequestModel;
65
import darabonba.core.TeaModel;
76
import com.aliyun.sdk.gateway.pop.models.*;
@@ -12,19 +11,19 @@
1211
* <p>AddMemberRoleRequest</p>
1312
*/
1413
public class AddMemberRoleRequest extends Request {
15-
@Path
16-
@NameInMap("WorkspaceId")
17-
@Validation(required = true)
14+
@com.aliyun.core.annotation.Path
15+
@com.aliyun.core.annotation.NameInMap("WorkspaceId")
16+
@com.aliyun.core.annotation.Validation(required = true)
1817
private String workspaceId;
1918

20-
@Path
21-
@NameInMap("MemberId")
22-
@Validation(required = true)
19+
@com.aliyun.core.annotation.Path
20+
@com.aliyun.core.annotation.NameInMap("MemberId")
21+
@com.aliyun.core.annotation.Validation(required = true)
2322
private String memberId;
2423

25-
@Path
26-
@NameInMap("RoleName")
27-
@Validation(required = true)
24+
@com.aliyun.core.annotation.Path
25+
@com.aliyun.core.annotation.NameInMap("RoleName")
26+
@com.aliyun.core.annotation.Validation(required = true)
2827
private String roleName;
2928

3029
private AddMemberRoleRequest(Builder builder) {

aiworkspace-20210204/src/main/java/com/aliyun/sdk/service/aiworkspace20210204/models/AddMemberRoleResponse.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// This file is auto-generated, don't edit it. Thanks.
22
package com.aliyun.sdk.service.aiworkspace20210204.models;
33

4-
import com.aliyun.core.annotation.*;
54
import darabonba.core.RequestModel;
65
import darabonba.core.TeaModel;
76
import com.aliyun.sdk.gateway.pop.models.*;
@@ -12,13 +11,13 @@
1211
* <p>AddMemberRoleResponse</p>
1312
*/
1413
public class AddMemberRoleResponse extends Response {
15-
@NameInMap("headers")
14+
@com.aliyun.core.annotation.NameInMap("headers")
1615
private java.util.Map < String, String > headers;
1716

18-
@NameInMap("statusCode")
17+
@com.aliyun.core.annotation.NameInMap("statusCode")
1918
private Integer statusCode;
2019

21-
@NameInMap("body")
20+
@com.aliyun.core.annotation.NameInMap("body")
2221
private AddMemberRoleResponseBody body;
2322

2423
private AddMemberRoleResponse(BuilderImpl builder) {

0 commit comments

Comments
 (0)