Skip to content

Commit 6c648c4

Browse files
committed
Generated java-async 2023-09-30 for eds-aic.
1 parent 4cff5c2 commit 6c648c4

File tree

171 files changed

+1429
-114
lines changed

Some content is hidden

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

171 files changed

+1429
-114
lines changed

eds-aic-20230930/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-03-14 Version: 4.0.6
2+
- Generated java-async 2023-09-30 for eds-aic.
3+
14
2025-03-13 Version: 4.0.5
25
- Generated java-async 2023-09-30 for eds-aic.
36

eds-aic-20230930/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-eds_aic20230930</artifactId>
6-
<version>4.0.5</version>
6+
<version>4.0.6</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-eds_aic20230930</name>
99
<description>Alibaba Cloud eds-aic (20230930) Async SDK for Java
@@ -76,7 +76,7 @@
7676
<plugin>
7777
<groupId>org.apache.maven.plugins</groupId>
7878
<artifactId>maven-gpg-plugin</artifactId>
79-
<version>1.6</version>
79+
<version>3.1.0</version>
8080
<executions>
8181
<execution>
8282
<id>sign-artifacts</id>

eds-aic-20230930/src/main/java/com/aliyun/sdk/service/eds_aic20230930/models/AttachKeyPairRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public static AttachKeyPairRequest create() {
4040
return builder().build();
4141
}
4242

43-
@Override
43+
@Override
4444
public Builder toBuilder() {
4545
return new Builder(this);
4646
}

eds-aic-20230930/src/main/java/com/aliyun/sdk/service/eds_aic20230930/models/AttachKeyPairResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public static AttachKeyPairResponse create() {
3737
return new BuilderImpl().build();
3838
}
3939

40-
@Override
40+
@Override
4141
public Builder toBuilder() {
4242
return new BuilderImpl(this);
4343
}

eds-aic-20230930/src/main/java/com/aliyun/sdk/service/eds_aic20230930/models/AttachKeyPairResponseBody.java

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ public static AttachKeyPairResponseBody create() {
3636
return builder().build();
3737
}
3838

39+
public Builder toBuilder() {
40+
return new Builder(this);
41+
}
42+
3943
/**
4044
* @return data
4145
*/
@@ -54,6 +58,14 @@ public static final class Builder {
5458
private Data data;
5559
private String requestId;
5660

61+
private Builder() {
62+
}
63+
64+
private Builder(AttachKeyPairResponseBody model) {
65+
this.data = model.data;
66+
this.requestId = model.requestId;
67+
}
68+
5769
/**
5870
* <p>The object that is returned.</p>
5971
*/
@@ -147,6 +159,16 @@ public static final class Builder {
147159
private String keyPairId;
148160
private Integer totalCount;
149161

162+
private Builder() {
163+
}
164+
165+
private Builder(Data model) {
166+
this.attachedInstanceIds = model.attachedInstanceIds;
167+
this.failCount = model.failCount;
168+
this.keyPairId = model.keyPairId;
169+
this.totalCount = model.totalCount;
170+
}
171+
150172
/**
151173
* <p>The IDs of the cloud phone instances to which the ADB key pair is successfully attached.</p>
152174
*/

eds-aic-20230930/src/main/java/com/aliyun/sdk/service/eds_aic20230930/models/AuthorizeAndroidInstanceRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public static AuthorizeAndroidInstanceRequest create() {
4444
return builder().build();
4545
}
4646

47-
@Override
47+
@Override
4848
public Builder toBuilder() {
4949
return new Builder(this);
5050
}

eds-aic-20230930/src/main/java/com/aliyun/sdk/service/eds_aic20230930/models/AuthorizeAndroidInstanceResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public static AuthorizeAndroidInstanceResponse create() {
3737
return new BuilderImpl().build();
3838
}
3939

40-
@Override
40+
@Override
4141
public Builder toBuilder() {
4242
return new BuilderImpl(this);
4343
}

eds-aic-20230930/src/main/java/com/aliyun/sdk/service/eds_aic20230930/models/AuthorizeAndroidInstanceResponseBody.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ public static AuthorizeAndroidInstanceResponseBody create() {
3232
return builder().build();
3333
}
3434

35+
public Builder toBuilder() {
36+
return new Builder(this);
37+
}
38+
3539
/**
3640
* @return requestId
3741
*/
@@ -42,6 +46,13 @@ public String getRequestId() {
4246
public static final class Builder {
4347
private String requestId;
4448

49+
private Builder() {
50+
}
51+
52+
private Builder(AuthorizeAndroidInstanceResponseBody model) {
53+
this.requestId = model.requestId;
54+
}
55+
4556
/**
4657
* <p>Request ID.</p>
4758
*

eds-aic-20230930/src/main/java/com/aliyun/sdk/service/eds_aic20230930/models/BackupFileRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public static BackupFileRequest create() {
7676
return builder().build();
7777
}
7878

79-
@Override
79+
@Override
8080
public Builder toBuilder() {
8181
return new Builder(this);
8282
}

eds-aic-20230930/src/main/java/com/aliyun/sdk/service/eds_aic20230930/models/BackupFileResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public static BackupFileResponse create() {
3737
return new BuilderImpl().build();
3838
}
3939

40-
@Override
40+
@Override
4141
public Builder toBuilder() {
4242
return new BuilderImpl(this);
4343
}

0 commit comments

Comments
 (0)