1
1
// This file is auto-generated, don't edit it. Thanks.
2
2
package com .aliyun .sdk .service .appstream_center20210903 .models ;
3
3
4
+ import com .aliyun .sdk .gateway .pop .*;
5
+ import darabonba .core .*;
6
+ import darabonba .core .async .*;
7
+ import darabonba .core .sync .*;
8
+ import darabonba .core .client .*;
4
9
import darabonba .core .RequestModel ;
5
10
import darabonba .core .TeaModel ;
6
11
import com .aliyun .sdk .gateway .pop .models .*;
@@ -28,6 +33,10 @@ public class GetConnectionTicketRequest extends Request {
28
33
@ com .aliyun .core .annotation .NameInMap ("AppVersion" )
29
34
private String appVersion ;
30
35
36
+ @ com .aliyun .core .annotation .Body
37
+ @ com .aliyun .core .annotation .NameInMap ("AutoConnectInQueue" )
38
+ private Boolean autoConnectInQueue ;
39
+
31
40
@ com .aliyun .core .annotation .Body
32
41
@ com .aliyun .core .annotation .NameInMap ("BizRegionId" )
33
42
private String bizRegionId ;
@@ -44,6 +53,10 @@ public class GetConnectionTicketRequest extends Request {
44
53
@ com .aliyun .core .annotation .NameInMap ("ClientOS" )
45
54
private String clientOS ;
46
55
56
+ @ com .aliyun .core .annotation .Body
57
+ @ com .aliyun .core .annotation .NameInMap ("ClientType" )
58
+ private String clientType ;
59
+
47
60
@ com .aliyun .core .annotation .Body
48
61
@ com .aliyun .core .annotation .NameInMap ("ClientVersion" )
49
62
private String clientVersion ;
@@ -56,6 +69,10 @@ public class GetConnectionTicketRequest extends Request {
56
69
@ com .aliyun .core .annotation .NameInMap ("EndUserId" )
57
70
private String endUserId ;
58
71
72
+ @ com .aliyun .core .annotation .Body
73
+ @ com .aliyun .core .annotation .NameInMap ("EnvironmentConfig" )
74
+ private String environmentConfig ;
75
+
59
76
@ com .aliyun .core .annotation .Body
60
77
@ com .aliyun .core .annotation .NameInMap ("LoginRegionId" )
61
78
private String loginRegionId ;
@@ -99,13 +116,16 @@ private GetConnectionTicketRequest(Builder builder) {
99
116
this .appInstanceGroupId = builder .appInstanceGroupId ;
100
117
this .appInstanceId = builder .appInstanceId ;
101
118
this .appVersion = builder .appVersion ;
119
+ this .autoConnectInQueue = builder .autoConnectInQueue ;
102
120
this .bizRegionId = builder .bizRegionId ;
103
121
this .clientId = builder .clientId ;
104
122
this .clientIp = builder .clientIp ;
105
123
this .clientOS = builder .clientOS ;
124
+ this .clientType = builder .clientType ;
106
125
this .clientVersion = builder .clientVersion ;
107
126
this .connectionProperties = builder .connectionProperties ;
108
127
this .endUserId = builder .endUserId ;
128
+ this .environmentConfig = builder .environmentConfig ;
109
129
this .loginRegionId = builder .loginRegionId ;
110
130
this .loginToken = builder .loginToken ;
111
131
this .param = builder .param ;
@@ -158,6 +178,13 @@ public String getAppVersion() {
158
178
return this .appVersion ;
159
179
}
160
180
181
+ /**
182
+ * @return autoConnectInQueue
183
+ */
184
+ public Boolean getAutoConnectInQueue () {
185
+ return this .autoConnectInQueue ;
186
+ }
187
+
161
188
/**
162
189
* @return bizRegionId
163
190
*/
@@ -186,6 +213,13 @@ public String getClientOS() {
186
213
return this .clientOS ;
187
214
}
188
215
216
+ /**
217
+ * @return clientType
218
+ */
219
+ public String getClientType () {
220
+ return this .clientType ;
221
+ }
222
+
189
223
/**
190
224
* @return clientVersion
191
225
*/
@@ -207,6 +241,13 @@ public String getEndUserId() {
207
241
return this .endUserId ;
208
242
}
209
243
244
+ /**
245
+ * @return environmentConfig
246
+ */
247
+ public String getEnvironmentConfig () {
248
+ return this .environmentConfig ;
249
+ }
250
+
210
251
/**
211
252
* @return loginRegionId
212
253
*/
@@ -275,13 +316,16 @@ public static final class Builder extends Request.Builder<GetConnectionTicketReq
275
316
private String appInstanceGroupId ;
276
317
private String appInstanceId ;
277
318
private String appVersion ;
319
+ private Boolean autoConnectInQueue ;
278
320
private String bizRegionId ;
279
321
private String clientId ;
280
322
private String clientIp ;
281
323
private String clientOS ;
324
+ private String clientType ;
282
325
private String clientVersion ;
283
326
private String connectionProperties ;
284
327
private String endUserId ;
328
+ private String environmentConfig ;
285
329
private String loginRegionId ;
286
330
private String loginToken ;
287
331
private String param ;
@@ -302,13 +346,16 @@ private Builder(GetConnectionTicketRequest request) {
302
346
this .appInstanceGroupId = request .appInstanceGroupId ;
303
347
this .appInstanceId = request .appInstanceId ;
304
348
this .appVersion = request .appVersion ;
349
+ this .autoConnectInQueue = request .autoConnectInQueue ;
305
350
this .bizRegionId = request .bizRegionId ;
306
351
this .clientId = request .clientId ;
307
352
this .clientIp = request .clientIp ;
308
353
this .clientOS = request .clientOS ;
354
+ this .clientType = request .clientType ;
309
355
this .clientVersion = request .clientVersion ;
310
356
this .connectionProperties = request .connectionProperties ;
311
357
this .endUserId = request .endUserId ;
358
+ this .environmentConfig = request .environmentConfig ;
312
359
this .loginRegionId = request .loginRegionId ;
313
360
this .loginToken = request .loginToken ;
314
361
this .param = request .param ;
@@ -356,6 +403,15 @@ public Builder appVersion(String appVersion) {
356
403
return this ;
357
404
}
358
405
406
+ /**
407
+ * AutoConnectInQueue.
408
+ */
409
+ public Builder autoConnectInQueue (Boolean autoConnectInQueue ) {
410
+ this .putBodyParameter ("AutoConnectInQueue" , autoConnectInQueue );
411
+ this .autoConnectInQueue = autoConnectInQueue ;
412
+ return this ;
413
+ }
414
+
359
415
/**
360
416
* BizRegionId.
361
417
*/
@@ -392,6 +448,15 @@ public Builder clientOS(String clientOS) {
392
448
return this ;
393
449
}
394
450
451
+ /**
452
+ * ClientType.
453
+ */
454
+ public Builder clientType (String clientType ) {
455
+ this .putBodyParameter ("ClientType" , clientType );
456
+ this .clientType = clientType ;
457
+ return this ;
458
+ }
459
+
395
460
/**
396
461
* ClientVersion.
397
462
*/
@@ -419,6 +484,15 @@ public Builder endUserId(String endUserId) {
419
484
return this ;
420
485
}
421
486
487
+ /**
488
+ * EnvironmentConfig.
489
+ */
490
+ public Builder environmentConfig (String environmentConfig ) {
491
+ this .putBodyParameter ("EnvironmentConfig" , environmentConfig );
492
+ this .environmentConfig = environmentConfig ;
493
+ return this ;
494
+ }
495
+
422
496
/**
423
497
* LoginRegionId.
424
498
*/
0 commit comments