Skip to content

Commit 634d69c

Browse files
committed
Generated java-async 2020-10-01 for ecd.
1 parent 24dd00e commit 634d69c

File tree

3 files changed

+163
-1
lines changed

3 files changed

+163
-1
lines changed

ecd-20201001/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-04-24 Version: 1.0.2
2+
- Generated java-async 2020-10-01 for ecd.
3+
14
2025-04-16 Version: 1.0.1
25
- Generated java-async 2020-10-01 for ecd.
36

ecd-20201001/pom.xml

Lines changed: 1 addition & 1 deletion
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-ecd20201001</artifactId>
6-
<version>1.0.1</version>
6+
<version>1.0.2</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-ecd20201001</name>
99
<description>Alibaba Cloud ecd (20201001) Async SDK for Java

ecd-20201001/src/main/java/com/aliyun/sdk/service/ecd20201001/models/GetMcpResourceResponseBody.java

Lines changed: 159 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,20 +172,162 @@ public GetMcpResourceResponseBody build() {
172172

173173
}
174174

175+
/**
176+
*
177+
* {@link GetMcpResourceResponseBody} extends {@link TeaModel}
178+
*
179+
* <p>GetMcpResourceResponseBody</p>
180+
*/
181+
public static class DesktopInfo extends TeaModel {
182+
@com.aliyun.core.annotation.NameInMap("AppId")
183+
private String appId;
184+
185+
@com.aliyun.core.annotation.NameInMap("AuthCode")
186+
private String authCode;
187+
188+
@com.aliyun.core.annotation.NameInMap("ConnectionProperties")
189+
private String connectionProperties;
190+
191+
@com.aliyun.core.annotation.NameInMap("ResourceId")
192+
private String resourceId;
193+
194+
@com.aliyun.core.annotation.NameInMap("ResourceType")
195+
private String resourceType;
196+
197+
private DesktopInfo(Builder builder) {
198+
this.appId = builder.appId;
199+
this.authCode = builder.authCode;
200+
this.connectionProperties = builder.connectionProperties;
201+
this.resourceId = builder.resourceId;
202+
this.resourceType = builder.resourceType;
203+
}
204+
205+
public static Builder builder() {
206+
return new Builder();
207+
}
208+
209+
public static DesktopInfo create() {
210+
return builder().build();
211+
}
212+
213+
/**
214+
* @return appId
215+
*/
216+
public String getAppId() {
217+
return this.appId;
218+
}
219+
220+
/**
221+
* @return authCode
222+
*/
223+
public String getAuthCode() {
224+
return this.authCode;
225+
}
226+
227+
/**
228+
* @return connectionProperties
229+
*/
230+
public String getConnectionProperties() {
231+
return this.connectionProperties;
232+
}
233+
234+
/**
235+
* @return resourceId
236+
*/
237+
public String getResourceId() {
238+
return this.resourceId;
239+
}
240+
241+
/**
242+
* @return resourceType
243+
*/
244+
public String getResourceType() {
245+
return this.resourceType;
246+
}
247+
248+
public static final class Builder {
249+
private String appId;
250+
private String authCode;
251+
private String connectionProperties;
252+
private String resourceId;
253+
private String resourceType;
254+
255+
private Builder() {
256+
}
257+
258+
private Builder(DesktopInfo model) {
259+
this.appId = model.appId;
260+
this.authCode = model.authCode;
261+
this.connectionProperties = model.connectionProperties;
262+
this.resourceId = model.resourceId;
263+
this.resourceType = model.resourceType;
264+
}
265+
266+
/**
267+
* AppId.
268+
*/
269+
public Builder appId(String appId) {
270+
this.appId = appId;
271+
return this;
272+
}
273+
274+
/**
275+
* AuthCode.
276+
*/
277+
public Builder authCode(String authCode) {
278+
this.authCode = authCode;
279+
return this;
280+
}
281+
282+
/**
283+
* ConnectionProperties.
284+
*/
285+
public Builder connectionProperties(String connectionProperties) {
286+
this.connectionProperties = connectionProperties;
287+
return this;
288+
}
289+
290+
/**
291+
* ResourceId.
292+
*/
293+
public Builder resourceId(String resourceId) {
294+
this.resourceId = resourceId;
295+
return this;
296+
}
297+
298+
/**
299+
* ResourceType.
300+
*/
301+
public Builder resourceType(String resourceType) {
302+
this.resourceType = resourceType;
303+
return this;
304+
}
305+
306+
public DesktopInfo build() {
307+
return new DesktopInfo(this);
308+
}
309+
310+
}
311+
312+
}
175313
/**
176314
*
177315
* {@link GetMcpResourceResponseBody} extends {@link TeaModel}
178316
*
179317
* <p>GetMcpResourceResponseBody</p>
180318
*/
181319
public static class Data extends TeaModel {
320+
@com.aliyun.core.annotation.NameInMap("DesktopInfo")
321+
private DesktopInfo desktopInfo;
322+
182323
@com.aliyun.core.annotation.NameInMap("ResourceUrl")
183324
private String resourceUrl;
184325

185326
@com.aliyun.core.annotation.NameInMap("SessionId")
186327
private String sessionId;
187328

188329
private Data(Builder builder) {
330+
this.desktopInfo = builder.desktopInfo;
189331
this.resourceUrl = builder.resourceUrl;
190332
this.sessionId = builder.sessionId;
191333
}
@@ -198,6 +340,13 @@ public static Data create() {
198340
return builder().build();
199341
}
200342

343+
/**
344+
* @return desktopInfo
345+
*/
346+
public DesktopInfo getDesktopInfo() {
347+
return this.desktopInfo;
348+
}
349+
201350
/**
202351
* @return resourceUrl
203352
*/
@@ -213,17 +362,27 @@ public String getSessionId() {
213362
}
214363

215364
public static final class Builder {
365+
private DesktopInfo desktopInfo;
216366
private String resourceUrl;
217367
private String sessionId;
218368

219369
private Builder() {
220370
}
221371

222372
private Builder(Data model) {
373+
this.desktopInfo = model.desktopInfo;
223374
this.resourceUrl = model.resourceUrl;
224375
this.sessionId = model.sessionId;
225376
}
226377

378+
/**
379+
* DesktopInfo.
380+
*/
381+
public Builder desktopInfo(DesktopInfo desktopInfo) {
382+
this.desktopInfo = desktopInfo;
383+
return this;
384+
}
385+
227386
/**
228387
* ResourceUrl.
229388
*/

0 commit comments

Comments
 (0)