tencentcloud-sdk-nodejs-intl-en 3.0.1018 → 3.0.1020
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/tencentcloud/car/v20220110/car_client.js +170 -23
- package/tencentcloud/car/v20220110/models.js +1692 -324
- package/tencentcloud/cdwdoris/v20211228/models.js +119 -113
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/live/v20180801/live_client.js +1 -1
- package/tencentcloud/live/v20180801/models.js +5 -5
|
@@ -84,6 +84,286 @@ class DeleteApplicationRequest extends AbstractModel {
|
|
|
84
84
|
}
|
|
85
85
|
}
|
|
86
86
|
|
|
87
|
+
/**
|
|
88
|
+
* ModifyApplicationProject request structure.
|
|
89
|
+
* @class
|
|
90
|
+
*/
|
|
91
|
+
class ModifyApplicationProjectRequest extends AbstractModel {
|
|
92
|
+
constructor(){
|
|
93
|
+
super();
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* Project ID returned by cloud.
|
|
97
|
+
* @type {string || null}
|
|
98
|
+
*/
|
|
99
|
+
this.ProjectId = null;
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* Project name.
|
|
103
|
+
* @type {string || null}
|
|
104
|
+
*/
|
|
105
|
+
this.Name = null;
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* Concurrency type required for project operation.
|
|
109
|
+
* @type {string || null}
|
|
110
|
+
*/
|
|
111
|
+
this.Type = null;
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* Whether to Enable Pre-launch.
|
|
115
|
+
* @type {boolean || null}
|
|
116
|
+
*/
|
|
117
|
+
this.IsPreload = null;
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* Application startup parameters.
|
|
121
|
+
* @type {string || null}
|
|
122
|
+
*/
|
|
123
|
+
this.ApplicationParams = null;
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* Cloud application project description.
|
|
127
|
+
* @type {string || null}
|
|
128
|
+
*/
|
|
129
|
+
this.Description = null;
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* Resolution, in the format of widthxheight, such as 1920x1080.
|
|
133
|
+
* @type {string || null}
|
|
134
|
+
*/
|
|
135
|
+
this.Resolution = null;
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* Frame rate.
|
|
139
|
+
* @type {number || null}
|
|
140
|
+
*/
|
|
141
|
+
this.FPS = null;
|
|
142
|
+
|
|
143
|
+
/**
|
|
144
|
+
* Waiting time for application pre-launch.
|
|
145
|
+
* @type {string || null}
|
|
146
|
+
*/
|
|
147
|
+
this.PreloadDuration = null;
|
|
148
|
+
|
|
149
|
+
/**
|
|
150
|
+
* Waiting time for reconnection.
|
|
151
|
+
* @type {string || null}
|
|
152
|
+
*/
|
|
153
|
+
this.ReconnectTimeout = null;
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* Minimum bitrate, in Mbps.
|
|
157
|
+
* @type {number || null}
|
|
158
|
+
*/
|
|
159
|
+
this.MinBitrate = null;
|
|
160
|
+
|
|
161
|
+
/**
|
|
162
|
+
* Maximum bitrate, in Mbps.
|
|
163
|
+
* @type {number || null}
|
|
164
|
+
*/
|
|
165
|
+
this.MaxBitrate = null;
|
|
166
|
+
|
|
167
|
+
/**
|
|
168
|
+
* Upstream audio options.DisableMixIntoStreamPush: not mixing upstream audio in streaming.
|
|
169
|
+
* @type {string || null}
|
|
170
|
+
*/
|
|
171
|
+
this.UpstreamAudioOption = null;
|
|
172
|
+
|
|
173
|
+
/**
|
|
174
|
+
* Video encoding configuration.
|
|
175
|
+
* @type {VideoEncodeConfig || null}
|
|
176
|
+
*/
|
|
177
|
+
this.VideoEncodeConfig = null;
|
|
178
|
+
|
|
179
|
+
/**
|
|
180
|
+
* Upper limit of the XR application resolution.If the project concurrency type is L or L2, the upper limit is 5000; if the project concurrency type is XL2, the upper limit is 6000.
|
|
181
|
+
* @type {number || null}
|
|
182
|
+
*/
|
|
183
|
+
this.XRMaxWidth = null;
|
|
184
|
+
|
|
185
|
+
/**
|
|
186
|
+
* ID of the background image COS file.
|
|
187
|
+
* @type {string || null}
|
|
188
|
+
*/
|
|
189
|
+
this.BackgroundImageCOSFileId = null;
|
|
190
|
+
|
|
191
|
+
/**
|
|
192
|
+
* Disabled code list.
|
|
193
|
+
* @type {Array.<string> || null}
|
|
194
|
+
*/
|
|
195
|
+
this.DisableVideoCodecs = null;
|
|
196
|
+
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
/**
|
|
200
|
+
* @private
|
|
201
|
+
*/
|
|
202
|
+
deserialize(params) {
|
|
203
|
+
if (!params) {
|
|
204
|
+
return;
|
|
205
|
+
}
|
|
206
|
+
this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
|
|
207
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
208
|
+
this.Type = 'Type' in params ? params.Type : null;
|
|
209
|
+
this.IsPreload = 'IsPreload' in params ? params.IsPreload : null;
|
|
210
|
+
this.ApplicationParams = 'ApplicationParams' in params ? params.ApplicationParams : null;
|
|
211
|
+
this.Description = 'Description' in params ? params.Description : null;
|
|
212
|
+
this.Resolution = 'Resolution' in params ? params.Resolution : null;
|
|
213
|
+
this.FPS = 'FPS' in params ? params.FPS : null;
|
|
214
|
+
this.PreloadDuration = 'PreloadDuration' in params ? params.PreloadDuration : null;
|
|
215
|
+
this.ReconnectTimeout = 'ReconnectTimeout' in params ? params.ReconnectTimeout : null;
|
|
216
|
+
this.MinBitrate = 'MinBitrate' in params ? params.MinBitrate : null;
|
|
217
|
+
this.MaxBitrate = 'MaxBitrate' in params ? params.MaxBitrate : null;
|
|
218
|
+
this.UpstreamAudioOption = 'UpstreamAudioOption' in params ? params.UpstreamAudioOption : null;
|
|
219
|
+
|
|
220
|
+
if (params.VideoEncodeConfig) {
|
|
221
|
+
let obj = new VideoEncodeConfig();
|
|
222
|
+
obj.deserialize(params.VideoEncodeConfig)
|
|
223
|
+
this.VideoEncodeConfig = obj;
|
|
224
|
+
}
|
|
225
|
+
this.XRMaxWidth = 'XRMaxWidth' in params ? params.XRMaxWidth : null;
|
|
226
|
+
this.BackgroundImageCOSFileId = 'BackgroundImageCOSFileId' in params ? params.BackgroundImageCOSFileId : null;
|
|
227
|
+
this.DisableVideoCodecs = 'DisableVideoCodecs' in params ? params.DisableVideoCodecs : null;
|
|
228
|
+
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* BindConcurrentPackagesToProject request structure.
|
|
234
|
+
* @class
|
|
235
|
+
*/
|
|
236
|
+
class BindConcurrentPackagesToProjectRequest extends AbstractModel {
|
|
237
|
+
constructor(){
|
|
238
|
+
super();
|
|
239
|
+
|
|
240
|
+
/**
|
|
241
|
+
* Concurrency pack ID list.
|
|
242
|
+
* @type {Array.<string> || null}
|
|
243
|
+
*/
|
|
244
|
+
this.ConcurrentIds = null;
|
|
245
|
+
|
|
246
|
+
/**
|
|
247
|
+
* Cloud application project ID.
|
|
248
|
+
* @type {string || null}
|
|
249
|
+
*/
|
|
250
|
+
this.ProjectId = null;
|
|
251
|
+
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
/**
|
|
255
|
+
* @private
|
|
256
|
+
*/
|
|
257
|
+
deserialize(params) {
|
|
258
|
+
if (!params) {
|
|
259
|
+
return;
|
|
260
|
+
}
|
|
261
|
+
this.ConcurrentIds = 'ConcurrentIds' in params ? params.ConcurrentIds : null;
|
|
262
|
+
this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
|
|
263
|
+
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
/**
|
|
268
|
+
* DescribeApplicationList response structure.
|
|
269
|
+
* @class
|
|
270
|
+
*/
|
|
271
|
+
class DescribeApplicationListResponse extends AbstractModel {
|
|
272
|
+
constructor(){
|
|
273
|
+
super();
|
|
274
|
+
|
|
275
|
+
/**
|
|
276
|
+
* Application list information.
|
|
277
|
+
* @type {Array.<UserApplicationInfo> || null}
|
|
278
|
+
*/
|
|
279
|
+
this.UserApplicationList = null;
|
|
280
|
+
|
|
281
|
+
/**
|
|
282
|
+
* Total number of applications.
|
|
283
|
+
* @type {number || null}
|
|
284
|
+
*/
|
|
285
|
+
this.ApplicationTotal = null;
|
|
286
|
+
|
|
287
|
+
/**
|
|
288
|
+
* Mobile application list information.
|
|
289
|
+
* @type {Array.<UserMobileApplicationInfo> || null}
|
|
290
|
+
*/
|
|
291
|
+
this.UserMobileApplicationList = null;
|
|
292
|
+
|
|
293
|
+
/**
|
|
294
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
295
|
+
* @type {string || null}
|
|
296
|
+
*/
|
|
297
|
+
this.RequestId = null;
|
|
298
|
+
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
/**
|
|
302
|
+
* @private
|
|
303
|
+
*/
|
|
304
|
+
deserialize(params) {
|
|
305
|
+
if (!params) {
|
|
306
|
+
return;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
if (params.UserApplicationList) {
|
|
310
|
+
this.UserApplicationList = new Array();
|
|
311
|
+
for (let z in params.UserApplicationList) {
|
|
312
|
+
let obj = new UserApplicationInfo();
|
|
313
|
+
obj.deserialize(params.UserApplicationList[z]);
|
|
314
|
+
this.UserApplicationList.push(obj);
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
this.ApplicationTotal = 'ApplicationTotal' in params ? params.ApplicationTotal : null;
|
|
318
|
+
|
|
319
|
+
if (params.UserMobileApplicationList) {
|
|
320
|
+
this.UserMobileApplicationList = new Array();
|
|
321
|
+
for (let z in params.UserMobileApplicationList) {
|
|
322
|
+
let obj = new UserMobileApplicationInfo();
|
|
323
|
+
obj.deserialize(params.UserMobileApplicationList[z]);
|
|
324
|
+
this.UserMobileApplicationList.push(obj);
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
328
|
+
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
/**
|
|
333
|
+
* ModifyConcurrentPackage request structure.
|
|
334
|
+
* @class
|
|
335
|
+
*/
|
|
336
|
+
class ModifyConcurrentPackageRequest extends AbstractModel {
|
|
337
|
+
constructor(){
|
|
338
|
+
super();
|
|
339
|
+
|
|
340
|
+
/**
|
|
341
|
+
* Concurrency pack ID.
|
|
342
|
+
* @type {string || null}
|
|
343
|
+
*/
|
|
344
|
+
this.ConcurrentId = null;
|
|
345
|
+
|
|
346
|
+
/**
|
|
347
|
+
* Concurrency pack name.
|
|
348
|
+
* @type {string || null}
|
|
349
|
+
*/
|
|
350
|
+
this.Name = null;
|
|
351
|
+
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
/**
|
|
355
|
+
* @private
|
|
356
|
+
*/
|
|
357
|
+
deserialize(params) {
|
|
358
|
+
if (!params) {
|
|
359
|
+
return;
|
|
360
|
+
}
|
|
361
|
+
this.ConcurrentId = 'ConcurrentId' in params ? params.ConcurrentId : null;
|
|
362
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
363
|
+
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
|
|
87
367
|
/**
|
|
88
368
|
* Application basic data.
|
|
89
369
|
* @class
|
|
@@ -247,24 +527,18 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
247
527
|
}
|
|
248
528
|
|
|
249
529
|
/**
|
|
250
|
-
*
|
|
530
|
+
* BindConcurrentPackagesToProject response structure.
|
|
251
531
|
* @class
|
|
252
532
|
*/
|
|
253
|
-
class
|
|
533
|
+
class BindConcurrentPackagesToProjectResponse extends AbstractModel {
|
|
254
534
|
constructor(){
|
|
255
535
|
super();
|
|
256
536
|
|
|
257
537
|
/**
|
|
258
|
-
*
|
|
259
|
-
* @type {string || null}
|
|
260
|
-
*/
|
|
261
|
-
this.ApplicationId = null;
|
|
262
|
-
|
|
263
|
-
/**
|
|
264
|
-
* Application name.
|
|
538
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
265
539
|
* @type {string || null}
|
|
266
540
|
*/
|
|
267
|
-
this.
|
|
541
|
+
this.RequestId = null;
|
|
268
542
|
|
|
269
543
|
}
|
|
270
544
|
|
|
@@ -275,8 +549,7 @@ class ModifyMobileApplicationInfoRequest extends AbstractModel {
|
|
|
275
549
|
if (!params) {
|
|
276
550
|
return;
|
|
277
551
|
}
|
|
278
|
-
this.
|
|
279
|
-
this.ApplicationName = 'ApplicationName' in params ? params.ApplicationName : null;
|
|
552
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
280
553
|
|
|
281
554
|
}
|
|
282
555
|
}
|
|
@@ -310,24 +583,18 @@ class StartPublishStreamWithURLResponse extends AbstractModel {
|
|
|
310
583
|
}
|
|
311
584
|
|
|
312
585
|
/**
|
|
313
|
-
*
|
|
586
|
+
* UnbindConcurrentPackagesFromProject response structure.
|
|
314
587
|
* @class
|
|
315
588
|
*/
|
|
316
|
-
class
|
|
589
|
+
class UnbindConcurrentPackagesFromProjectResponse extends AbstractModel {
|
|
317
590
|
constructor(){
|
|
318
591
|
super();
|
|
319
592
|
|
|
320
593
|
/**
|
|
321
|
-
*
|
|
322
|
-
* @type {string || null}
|
|
323
|
-
*/
|
|
324
|
-
this.ApplicationId = null;
|
|
325
|
-
|
|
326
|
-
/**
|
|
327
|
-
* Application download address (if the version is created by file upload, this parameter is an empty string).
|
|
594
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
328
595
|
* @type {string || null}
|
|
329
596
|
*/
|
|
330
|
-
this.
|
|
597
|
+
this.RequestId = null;
|
|
331
598
|
|
|
332
599
|
}
|
|
333
600
|
|
|
@@ -338,8 +605,7 @@ class CreateApplicationSnapshotRequest extends AbstractModel {
|
|
|
338
605
|
if (!params) {
|
|
339
606
|
return;
|
|
340
607
|
}
|
|
341
|
-
this.
|
|
342
|
-
this.ApplicationDownloadUrl = 'ApplicationDownloadUrl' in params ? params.ApplicationDownloadUrl : null;
|
|
608
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
343
609
|
|
|
344
610
|
}
|
|
345
611
|
}
|
|
@@ -380,24 +646,146 @@ class DeleteApplicationVersionRequest extends AbstractModel {
|
|
|
380
646
|
}
|
|
381
647
|
|
|
382
648
|
/**
|
|
383
|
-
*
|
|
649
|
+
* CreateApplicationProject response structure.
|
|
384
650
|
* @class
|
|
385
651
|
*/
|
|
386
|
-
class
|
|
652
|
+
class CreateApplicationProjectResponse extends AbstractModel {
|
|
387
653
|
constructor(){
|
|
388
654
|
super();
|
|
389
655
|
|
|
390
656
|
/**
|
|
391
|
-
*
|
|
657
|
+
* Generated project ID.Note: This field may return null, indicating that no valid values can be obtained.
|
|
392
658
|
* @type {string || null}
|
|
393
659
|
*/
|
|
394
|
-
this.
|
|
660
|
+
this.ProjectId = null;
|
|
395
661
|
|
|
396
662
|
/**
|
|
397
|
-
*
|
|
663
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
398
664
|
* @type {string || null}
|
|
399
665
|
*/
|
|
400
|
-
this.
|
|
666
|
+
this.RequestId = null;
|
|
667
|
+
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
/**
|
|
671
|
+
* @private
|
|
672
|
+
*/
|
|
673
|
+
deserialize(params) {
|
|
674
|
+
if (!params) {
|
|
675
|
+
return;
|
|
676
|
+
}
|
|
677
|
+
this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
|
|
678
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
679
|
+
|
|
680
|
+
}
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
/**
|
|
684
|
+
* CreateApplicationSnapshot request structure.
|
|
685
|
+
* @class
|
|
686
|
+
*/
|
|
687
|
+
class CreateApplicationSnapshotRequest extends AbstractModel {
|
|
688
|
+
constructor(){
|
|
689
|
+
super();
|
|
690
|
+
|
|
691
|
+
/**
|
|
692
|
+
* Application ID.
|
|
693
|
+
* @type {string || null}
|
|
694
|
+
*/
|
|
695
|
+
this.ApplicationId = null;
|
|
696
|
+
|
|
697
|
+
/**
|
|
698
|
+
* Application download address (if the version is created by file upload, this parameter is an empty string).
|
|
699
|
+
* @type {string || null}
|
|
700
|
+
*/
|
|
701
|
+
this.ApplicationDownloadUrl = null;
|
|
702
|
+
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
/**
|
|
706
|
+
* @private
|
|
707
|
+
*/
|
|
708
|
+
deserialize(params) {
|
|
709
|
+
if (!params) {
|
|
710
|
+
return;
|
|
711
|
+
}
|
|
712
|
+
this.ApplicationId = 'ApplicationId' in params ? params.ApplicationId : null;
|
|
713
|
+
this.ApplicationDownloadUrl = 'ApplicationDownloadUrl' in params ? params.ApplicationDownloadUrl : null;
|
|
714
|
+
|
|
715
|
+
}
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
/**
|
|
719
|
+
* DescribeApplicationProjects response structure.
|
|
720
|
+
* @class
|
|
721
|
+
*/
|
|
722
|
+
class DescribeApplicationProjectsResponse extends AbstractModel {
|
|
723
|
+
constructor(){
|
|
724
|
+
super();
|
|
725
|
+
|
|
726
|
+
/**
|
|
727
|
+
* Project list.Note: This field may return null, indicating that no valid values can be obtained.
|
|
728
|
+
* @type {Array.<ApplicationProject> || null}
|
|
729
|
+
*/
|
|
730
|
+
this.Projects = null;
|
|
731
|
+
|
|
732
|
+
/**
|
|
733
|
+
* Total number.
|
|
734
|
+
|
|
735
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
736
|
+
* @type {number || null}
|
|
737
|
+
*/
|
|
738
|
+
this.Total = null;
|
|
739
|
+
|
|
740
|
+
/**
|
|
741
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
742
|
+
* @type {string || null}
|
|
743
|
+
*/
|
|
744
|
+
this.RequestId = null;
|
|
745
|
+
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
/**
|
|
749
|
+
* @private
|
|
750
|
+
*/
|
|
751
|
+
deserialize(params) {
|
|
752
|
+
if (!params) {
|
|
753
|
+
return;
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
if (params.Projects) {
|
|
757
|
+
this.Projects = new Array();
|
|
758
|
+
for (let z in params.Projects) {
|
|
759
|
+
let obj = new ApplicationProject();
|
|
760
|
+
obj.deserialize(params.Projects[z]);
|
|
761
|
+
this.Projects.push(obj);
|
|
762
|
+
}
|
|
763
|
+
}
|
|
764
|
+
this.Total = 'Total' in params ? params.Total : null;
|
|
765
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
766
|
+
|
|
767
|
+
}
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
/**
|
|
771
|
+
* Mobile application data information.
|
|
772
|
+
* @class
|
|
773
|
+
*/
|
|
774
|
+
class UserMobileApplicationInfo extends AbstractModel {
|
|
775
|
+
constructor(){
|
|
776
|
+
super();
|
|
777
|
+
|
|
778
|
+
/**
|
|
779
|
+
* Application ID.
|
|
780
|
+
* @type {string || null}
|
|
781
|
+
*/
|
|
782
|
+
this.ApplicationId = null;
|
|
783
|
+
|
|
784
|
+
/**
|
|
785
|
+
* Application name.
|
|
786
|
+
* @type {string || null}
|
|
787
|
+
*/
|
|
788
|
+
this.ApplicationName = null;
|
|
401
789
|
|
|
402
790
|
/**
|
|
403
791
|
* Application type (cloud APK: application APK).
|
|
@@ -606,6 +994,34 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
606
994
|
}
|
|
607
995
|
}
|
|
608
996
|
|
|
997
|
+
/**
|
|
998
|
+
* Video encoding configuration.
|
|
999
|
+
* @class
|
|
1000
|
+
*/
|
|
1001
|
+
class VideoEncodeConfig extends AbstractModel {
|
|
1002
|
+
constructor(){
|
|
1003
|
+
super();
|
|
1004
|
+
|
|
1005
|
+
/**
|
|
1006
|
+
* Streaming GOP length, in seconds.Note: This field may return null, indicating that no valid values can be obtained.
|
|
1007
|
+
* @type {number || null}
|
|
1008
|
+
*/
|
|
1009
|
+
this.StreamPushGOPSeconds = null;
|
|
1010
|
+
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
/**
|
|
1014
|
+
* @private
|
|
1015
|
+
*/
|
|
1016
|
+
deserialize(params) {
|
|
1017
|
+
if (!params) {
|
|
1018
|
+
return;
|
|
1019
|
+
}
|
|
1020
|
+
this.StreamPushGOPSeconds = 'StreamPushGOPSeconds' in params ? params.StreamPushGOPSeconds : null;
|
|
1021
|
+
|
|
1022
|
+
}
|
|
1023
|
+
}
|
|
1024
|
+
|
|
609
1025
|
/**
|
|
610
1026
|
* ModifyMobileApplicationInfo response structure.
|
|
611
1027
|
* @class
|
|
@@ -745,6 +1161,58 @@ class ModifyApplicationBaseInfoResponse extends AbstractModel {
|
|
|
745
1161
|
}
|
|
746
1162
|
}
|
|
747
1163
|
|
|
1164
|
+
/**
|
|
1165
|
+
* DescribeConcurrentPackages response structure.
|
|
1166
|
+
* @class
|
|
1167
|
+
*/
|
|
1168
|
+
class DescribeConcurrentPackagesResponse extends AbstractModel {
|
|
1169
|
+
constructor(){
|
|
1170
|
+
super();
|
|
1171
|
+
|
|
1172
|
+
/**
|
|
1173
|
+
* Total number.
|
|
1174
|
+
|
|
1175
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1176
|
+
* @type {number || null}
|
|
1177
|
+
*/
|
|
1178
|
+
this.Total = null;
|
|
1179
|
+
|
|
1180
|
+
/**
|
|
1181
|
+
* Concurrency pack list.Note: This field may return null, indicating that no valid values can be obtained.
|
|
1182
|
+
* @type {Array.<ApplicationConcurrentPackage> || null}
|
|
1183
|
+
*/
|
|
1184
|
+
this.ConcurrentPackages = null;
|
|
1185
|
+
|
|
1186
|
+
/**
|
|
1187
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1188
|
+
* @type {string || null}
|
|
1189
|
+
*/
|
|
1190
|
+
this.RequestId = null;
|
|
1191
|
+
|
|
1192
|
+
}
|
|
1193
|
+
|
|
1194
|
+
/**
|
|
1195
|
+
* @private
|
|
1196
|
+
*/
|
|
1197
|
+
deserialize(params) {
|
|
1198
|
+
if (!params) {
|
|
1199
|
+
return;
|
|
1200
|
+
}
|
|
1201
|
+
this.Total = 'Total' in params ? params.Total : null;
|
|
1202
|
+
|
|
1203
|
+
if (params.ConcurrentPackages) {
|
|
1204
|
+
this.ConcurrentPackages = new Array();
|
|
1205
|
+
for (let z in params.ConcurrentPackages) {
|
|
1206
|
+
let obj = new ApplicationConcurrentPackage();
|
|
1207
|
+
obj.deserialize(params.ConcurrentPackages[z]);
|
|
1208
|
+
this.ConcurrentPackages.push(obj);
|
|
1209
|
+
}
|
|
1210
|
+
}
|
|
1211
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1212
|
+
|
|
1213
|
+
}
|
|
1214
|
+
}
|
|
1215
|
+
|
|
748
1216
|
/**
|
|
749
1217
|
* DescribeApplicationVersion request structure.
|
|
750
1218
|
* @class
|
|
@@ -774,30 +1242,40 @@ class DescribeApplicationVersionRequest extends AbstractModel {
|
|
|
774
1242
|
}
|
|
775
1243
|
|
|
776
1244
|
/**
|
|
777
|
-
*
|
|
1245
|
+
* DescribeApplicationProjectAdvancedConfig request structure.
|
|
778
1246
|
* @class
|
|
779
1247
|
*/
|
|
780
|
-
class
|
|
1248
|
+
class DescribeApplicationProjectAdvancedConfigRequest extends AbstractModel {
|
|
781
1249
|
constructor(){
|
|
782
1250
|
super();
|
|
783
1251
|
|
|
784
1252
|
/**
|
|
785
|
-
* Application
|
|
786
|
-
* @type {
|
|
1253
|
+
* Application project ID.
|
|
1254
|
+
* @type {string || null}
|
|
787
1255
|
*/
|
|
788
|
-
this.
|
|
1256
|
+
this.ProjectId = null;
|
|
789
1257
|
|
|
790
|
-
|
|
791
|
-
* Total number of applications.
|
|
792
|
-
* @type {number || null}
|
|
793
|
-
*/
|
|
794
|
-
this.ApplicationTotal = null;
|
|
1258
|
+
}
|
|
795
1259
|
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
1260
|
+
/**
|
|
1261
|
+
* @private
|
|
1262
|
+
*/
|
|
1263
|
+
deserialize(params) {
|
|
1264
|
+
if (!params) {
|
|
1265
|
+
return;
|
|
1266
|
+
}
|
|
1267
|
+
this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
|
|
1268
|
+
|
|
1269
|
+
}
|
|
1270
|
+
}
|
|
1271
|
+
|
|
1272
|
+
/**
|
|
1273
|
+
* DeleteApplicationProjects response structure.
|
|
1274
|
+
* @class
|
|
1275
|
+
*/
|
|
1276
|
+
class DeleteApplicationProjectsResponse extends AbstractModel {
|
|
1277
|
+
constructor(){
|
|
1278
|
+
super();
|
|
801
1279
|
|
|
802
1280
|
/**
|
|
803
1281
|
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
@@ -814,25 +1292,6 @@ class DescribeApplicationListResponse extends AbstractModel {
|
|
|
814
1292
|
if (!params) {
|
|
815
1293
|
return;
|
|
816
1294
|
}
|
|
817
|
-
|
|
818
|
-
if (params.UserApplicationList) {
|
|
819
|
-
this.UserApplicationList = new Array();
|
|
820
|
-
for (let z in params.UserApplicationList) {
|
|
821
|
-
let obj = new UserApplicationInfo();
|
|
822
|
-
obj.deserialize(params.UserApplicationList[z]);
|
|
823
|
-
this.UserApplicationList.push(obj);
|
|
824
|
-
}
|
|
825
|
-
}
|
|
826
|
-
this.ApplicationTotal = 'ApplicationTotal' in params ? params.ApplicationTotal : null;
|
|
827
|
-
|
|
828
|
-
if (params.UserMobileApplicationList) {
|
|
829
|
-
this.UserMobileApplicationList = new Array();
|
|
830
|
-
for (let z in params.UserMobileApplicationList) {
|
|
831
|
-
let obj = new UserMobileApplicationInfo();
|
|
832
|
-
obj.deserialize(params.UserMobileApplicationList[z]);
|
|
833
|
-
this.UserMobileApplicationList.push(obj);
|
|
834
|
-
}
|
|
835
|
-
}
|
|
836
1295
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
837
1296
|
|
|
838
1297
|
}
|
|
@@ -923,18 +1382,554 @@ class DescribeCosCredentialResponse extends AbstractModel {
|
|
|
923
1382
|
}
|
|
924
1383
|
|
|
925
1384
|
/**
|
|
926
|
-
* DescribeApplicationStatus request structure.
|
|
1385
|
+
* DescribeApplicationStatus request structure.
|
|
1386
|
+
* @class
|
|
1387
|
+
*/
|
|
1388
|
+
class DescribeApplicationStatusRequest extends AbstractModel {
|
|
1389
|
+
constructor(){
|
|
1390
|
+
super();
|
|
1391
|
+
|
|
1392
|
+
/**
|
|
1393
|
+
* Application ID list.
|
|
1394
|
+
* @type {Array.<string> || null}
|
|
1395
|
+
*/
|
|
1396
|
+
this.ApplicationIdList = null;
|
|
1397
|
+
|
|
1398
|
+
}
|
|
1399
|
+
|
|
1400
|
+
/**
|
|
1401
|
+
* @private
|
|
1402
|
+
*/
|
|
1403
|
+
deserialize(params) {
|
|
1404
|
+
if (!params) {
|
|
1405
|
+
return;
|
|
1406
|
+
}
|
|
1407
|
+
this.ApplicationIdList = 'ApplicationIdList' in params ? params.ApplicationIdList : null;
|
|
1408
|
+
|
|
1409
|
+
}
|
|
1410
|
+
}
|
|
1411
|
+
|
|
1412
|
+
/**
|
|
1413
|
+
* CreateApplication request structure.
|
|
1414
|
+
* @class
|
|
1415
|
+
*/
|
|
1416
|
+
class CreateApplicationRequest extends AbstractModel {
|
|
1417
|
+
constructor(){
|
|
1418
|
+
super();
|
|
1419
|
+
|
|
1420
|
+
/**
|
|
1421
|
+
* Application name.
|
|
1422
|
+
* @type {string || null}
|
|
1423
|
+
*/
|
|
1424
|
+
this.ApplicationName = null;
|
|
1425
|
+
|
|
1426
|
+
/**
|
|
1427
|
+
* Application type (Application3D: cloud 3D; ApplicationXR: cloud XR; ApplicationAPK: cloud APK).
|
|
1428
|
+
* @type {string || null}
|
|
1429
|
+
*/
|
|
1430
|
+
this.ApplicationType = null;
|
|
1431
|
+
|
|
1432
|
+
}
|
|
1433
|
+
|
|
1434
|
+
/**
|
|
1435
|
+
* @private
|
|
1436
|
+
*/
|
|
1437
|
+
deserialize(params) {
|
|
1438
|
+
if (!params) {
|
|
1439
|
+
return;
|
|
1440
|
+
}
|
|
1441
|
+
this.ApplicationName = 'ApplicationName' in params ? params.ApplicationName : null;
|
|
1442
|
+
this.ApplicationType = 'ApplicationType' in params ? params.ApplicationType : null;
|
|
1443
|
+
|
|
1444
|
+
}
|
|
1445
|
+
}
|
|
1446
|
+
|
|
1447
|
+
/**
|
|
1448
|
+
* DescribeConcurrentCount request structure.
|
|
1449
|
+
* @class
|
|
1450
|
+
*/
|
|
1451
|
+
class DescribeConcurrentCountRequest extends AbstractModel {
|
|
1452
|
+
constructor(){
|
|
1453
|
+
super();
|
|
1454
|
+
|
|
1455
|
+
/**
|
|
1456
|
+
* Project ID.
|
|
1457
|
+
* @type {string || null}
|
|
1458
|
+
*/
|
|
1459
|
+
this.ProjectId = null;
|
|
1460
|
+
|
|
1461
|
+
}
|
|
1462
|
+
|
|
1463
|
+
/**
|
|
1464
|
+
* @private
|
|
1465
|
+
*/
|
|
1466
|
+
deserialize(params) {
|
|
1467
|
+
if (!params) {
|
|
1468
|
+
return;
|
|
1469
|
+
}
|
|
1470
|
+
this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
|
|
1471
|
+
|
|
1472
|
+
}
|
|
1473
|
+
}
|
|
1474
|
+
|
|
1475
|
+
/**
|
|
1476
|
+
* Cloud application project type.
|
|
1477
|
+
* @class
|
|
1478
|
+
*/
|
|
1479
|
+
class ApplicationProject extends AbstractModel {
|
|
1480
|
+
constructor(){
|
|
1481
|
+
super();
|
|
1482
|
+
|
|
1483
|
+
/**
|
|
1484
|
+
* Project ID.Note: This field may return null, indicating that no valid values can be obtained.
|
|
1485
|
+
* @type {string || null}
|
|
1486
|
+
*/
|
|
1487
|
+
this.ProjectId = null;
|
|
1488
|
+
|
|
1489
|
+
/**
|
|
1490
|
+
* Project name.Note: This field may return null, indicating that no valid values can be obtained.
|
|
1491
|
+
* @type {string || null}
|
|
1492
|
+
*/
|
|
1493
|
+
this.Name = null;
|
|
1494
|
+
|
|
1495
|
+
/**
|
|
1496
|
+
* Project description.Note: This field may return null, indicating that no valid values can be obtained.
|
|
1497
|
+
* @type {string || null}
|
|
1498
|
+
*/
|
|
1499
|
+
this.Description = null;
|
|
1500
|
+
|
|
1501
|
+
/**
|
|
1502
|
+
* Concurrency type required for project operation.S1: concurrency for rendering small cloud applications.M1: concurrency for rendering medium cloud applications.L1: concurrency for rendering large cloud applications.L2: concurrency for rendering large cloud applications.XL2: concurrency for rendering extra large cloud applications.MM1_HD: concurrency for performance-based cloud ARM (HD).MM1_FHD: concurrency for performance-based cloud ARM (FHD).Note: This field may return null, indicating that no valid values can be obtained.
|
|
1503
|
+
* @type {string || null}
|
|
1504
|
+
*/
|
|
1505
|
+
this.Type = null;
|
|
1506
|
+
|
|
1507
|
+
/**
|
|
1508
|
+
* Cloud application ID.Note: This field may return null, indicating that no valid values can be obtained.
|
|
1509
|
+
* @type {string || null}
|
|
1510
|
+
*/
|
|
1511
|
+
this.ApplicationId = null;
|
|
1512
|
+
|
|
1513
|
+
/**
|
|
1514
|
+
* Pre-launch.Note: This field may return null, indicating that no valid values can be obtained.
|
|
1515
|
+
* @type {boolean || null}
|
|
1516
|
+
*/
|
|
1517
|
+
this.IsPreload = null;
|
|
1518
|
+
|
|
1519
|
+
/**
|
|
1520
|
+
* Number of concurrencies already configured.Note: This field may return null, indicating that no valid values can be obtained.
|
|
1521
|
+
* @type {number || null}
|
|
1522
|
+
*/
|
|
1523
|
+
this.Amount = null;
|
|
1524
|
+
|
|
1525
|
+
/**
|
|
1526
|
+
* Number of concurrencies in use.Note: This field may return null, indicating that no valid values can be obtained.
|
|
1527
|
+
* @type {number || null}
|
|
1528
|
+
*/
|
|
1529
|
+
this.Using = null;
|
|
1530
|
+
|
|
1531
|
+
/**
|
|
1532
|
+
* Application status. NoConcurrent: no concurrency pack configured; Online: activated. Cloud application status: applicationCreating: creating; applicationCreateFail: creation failed; applicationDeleting: deleting; applicationNoConfigured: startup parameters not configured.Note: This field may return null, indicating that no valid values can be obtained.
|
|
1533
|
+
* @type {string || null}
|
|
1534
|
+
*/
|
|
1535
|
+
this.ApplicationStatus = null;
|
|
1536
|
+
|
|
1537
|
+
/**
|
|
1538
|
+
* Application startup parameters.
|
|
1539
|
+
|
|
1540
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1541
|
+
* @type {string || null}
|
|
1542
|
+
*/
|
|
1543
|
+
this.ApplicationParams = null;
|
|
1544
|
+
|
|
1545
|
+
/**
|
|
1546
|
+
* Creation time.
|
|
1547
|
+
|
|
1548
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1549
|
+
* @type {string || null}
|
|
1550
|
+
*/
|
|
1551
|
+
this.CreateTime = null;
|
|
1552
|
+
|
|
1553
|
+
/**
|
|
1554
|
+
* Application name.
|
|
1555
|
+
|
|
1556
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1557
|
+
* @type {string || null}
|
|
1558
|
+
*/
|
|
1559
|
+
this.ApplicationName = null;
|
|
1560
|
+
|
|
1561
|
+
/**
|
|
1562
|
+
* Resolution, in the format of widthxheight, such as 1920x1080.Note: This field may return null, indicating that no valid values can be obtained.
|
|
1563
|
+
* @type {string || null}
|
|
1564
|
+
*/
|
|
1565
|
+
this.Resolution = null;
|
|
1566
|
+
|
|
1567
|
+
/**
|
|
1568
|
+
* Project type.SHARED: shared by all applications.EXCLUSIVE (default value): dedicated for one application.Note: This field may return null, indicating that no valid values can be obtained.
|
|
1569
|
+
* @type {string || null}
|
|
1570
|
+
*/
|
|
1571
|
+
this.ProjectType = null;
|
|
1572
|
+
|
|
1573
|
+
/**
|
|
1574
|
+
* Purpose.EXPERIENCE: Experience.Note: This field may return null, indicating that no valid values can be obtained.
|
|
1575
|
+
* @type {string || null}
|
|
1576
|
+
*/
|
|
1577
|
+
this.Purpose = null;
|
|
1578
|
+
|
|
1579
|
+
/**
|
|
1580
|
+
* Application distribution area. Standard areas are as follows. ap-chinese-mainland: Chinese mainland; na-north-america: North America; eu-frankfurt: Frankfurt; ap-mumbai: Mumbai; ap-tokyo: Tokyo; ap-seoul: Seoul; ap-singapore: Singapore; ap-bangkok: Bangkok; ap-hongkong: Hong Kong (China). Fusion areas are as follows. me-middle-east-fusion: Middle East; na-north-america-fusion: North America; sa-south-america-fusion: South America; ap-tokyo-fusion: Tokyo; ap-seoul-fusion: Seoul; eu-frankfurt-fusion: Frankfurt; ap-singapore-fusion: Singapore; ap-hongkong-fusion: Hong Kong (China).Note: This field may return null, indicating that no valid values can be obtained.
|
|
1581
|
+
* @type {Array.<string> || null}
|
|
1582
|
+
*/
|
|
1583
|
+
this.ApplicationRegions = null;
|
|
1584
|
+
|
|
1585
|
+
/**
|
|
1586
|
+
* Concurrency area. Standard areas are as follows. ap-chinese-mainland: Chinese mainland; na-north-america: North America; eu-frankfurt: Frankfurt; ap-mumbai: Mumbai; ap-tokyo: Tokyo; ap-seoul: Seoul; ap-singapore: Singapore; ap-bangkok: Bangkok; ap-hongkong: Hong Kong (China). Fusion areas are as follows. me-middle-east-fusion: Middle East; na-north-america-fusion: North America; sa-south-america-fusion: South America; ap-tokyo-fusion: Tokyo; ap-seoul-fusion: Seoul; eu-frankfurt-fusion: Frankfurt; ap-singapore-fusion: Singapore; ap-hongkong-fusion: Hong Kong (China).Note: This field may return null, indicating that no valid values can be obtained.
|
|
1587
|
+
* @type {Array.<string> || null}
|
|
1588
|
+
*/
|
|
1589
|
+
this.ConcurrentRegions = null;
|
|
1590
|
+
|
|
1591
|
+
/**
|
|
1592
|
+
* Project category.DESKTOP: desktop (default value).MOBILE: mobile.Note: This field may return null, indicating that no valid values can be obtained.
|
|
1593
|
+
* @type {string || null}
|
|
1594
|
+
*/
|
|
1595
|
+
this.ProjectCategory = null;
|
|
1596
|
+
|
|
1597
|
+
}
|
|
1598
|
+
|
|
1599
|
+
/**
|
|
1600
|
+
* @private
|
|
1601
|
+
*/
|
|
1602
|
+
deserialize(params) {
|
|
1603
|
+
if (!params) {
|
|
1604
|
+
return;
|
|
1605
|
+
}
|
|
1606
|
+
this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
|
|
1607
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
1608
|
+
this.Description = 'Description' in params ? params.Description : null;
|
|
1609
|
+
this.Type = 'Type' in params ? params.Type : null;
|
|
1610
|
+
this.ApplicationId = 'ApplicationId' in params ? params.ApplicationId : null;
|
|
1611
|
+
this.IsPreload = 'IsPreload' in params ? params.IsPreload : null;
|
|
1612
|
+
this.Amount = 'Amount' in params ? params.Amount : null;
|
|
1613
|
+
this.Using = 'Using' in params ? params.Using : null;
|
|
1614
|
+
this.ApplicationStatus = 'ApplicationStatus' in params ? params.ApplicationStatus : null;
|
|
1615
|
+
this.ApplicationParams = 'ApplicationParams' in params ? params.ApplicationParams : null;
|
|
1616
|
+
this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
|
|
1617
|
+
this.ApplicationName = 'ApplicationName' in params ? params.ApplicationName : null;
|
|
1618
|
+
this.Resolution = 'Resolution' in params ? params.Resolution : null;
|
|
1619
|
+
this.ProjectType = 'ProjectType' in params ? params.ProjectType : null;
|
|
1620
|
+
this.Purpose = 'Purpose' in params ? params.Purpose : null;
|
|
1621
|
+
this.ApplicationRegions = 'ApplicationRegions' in params ? params.ApplicationRegions : null;
|
|
1622
|
+
this.ConcurrentRegions = 'ConcurrentRegions' in params ? params.ConcurrentRegions : null;
|
|
1623
|
+
this.ProjectCategory = 'ProjectCategory' in params ? params.ProjectCategory : null;
|
|
1624
|
+
|
|
1625
|
+
}
|
|
1626
|
+
}
|
|
1627
|
+
|
|
1628
|
+
/**
|
|
1629
|
+
* DeleteApplicationVersion response structure.
|
|
1630
|
+
* @class
|
|
1631
|
+
*/
|
|
1632
|
+
class DeleteApplicationVersionResponse extends AbstractModel {
|
|
1633
|
+
constructor(){
|
|
1634
|
+
super();
|
|
1635
|
+
|
|
1636
|
+
/**
|
|
1637
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1638
|
+
* @type {string || null}
|
|
1639
|
+
*/
|
|
1640
|
+
this.RequestId = null;
|
|
1641
|
+
|
|
1642
|
+
}
|
|
1643
|
+
|
|
1644
|
+
/**
|
|
1645
|
+
* @private
|
|
1646
|
+
*/
|
|
1647
|
+
deserialize(params) {
|
|
1648
|
+
if (!params) {
|
|
1649
|
+
return;
|
|
1650
|
+
}
|
|
1651
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1652
|
+
|
|
1653
|
+
}
|
|
1654
|
+
}
|
|
1655
|
+
|
|
1656
|
+
/**
|
|
1657
|
+
* DescribeConcurrentSummary request structure.
|
|
1658
|
+
* @class
|
|
1659
|
+
*/
|
|
1660
|
+
class DescribeConcurrentSummaryRequest extends AbstractModel {
|
|
1661
|
+
constructor(){
|
|
1662
|
+
super();
|
|
1663
|
+
|
|
1664
|
+
}
|
|
1665
|
+
|
|
1666
|
+
/**
|
|
1667
|
+
* @private
|
|
1668
|
+
*/
|
|
1669
|
+
deserialize(params) {
|
|
1670
|
+
if (!params) {
|
|
1671
|
+
return;
|
|
1672
|
+
}
|
|
1673
|
+
|
|
1674
|
+
}
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
/**
|
|
1678
|
+
* ModifyApplicationVersion response structure.
|
|
1679
|
+
* @class
|
|
1680
|
+
*/
|
|
1681
|
+
class ModifyApplicationVersionResponse extends AbstractModel {
|
|
1682
|
+
constructor(){
|
|
1683
|
+
super();
|
|
1684
|
+
|
|
1685
|
+
/**
|
|
1686
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1687
|
+
* @type {string || null}
|
|
1688
|
+
*/
|
|
1689
|
+
this.RequestId = null;
|
|
1690
|
+
|
|
1691
|
+
}
|
|
1692
|
+
|
|
1693
|
+
/**
|
|
1694
|
+
* @private
|
|
1695
|
+
*/
|
|
1696
|
+
deserialize(params) {
|
|
1697
|
+
if (!params) {
|
|
1698
|
+
return;
|
|
1699
|
+
}
|
|
1700
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1701
|
+
|
|
1702
|
+
}
|
|
1703
|
+
}
|
|
1704
|
+
|
|
1705
|
+
/**
|
|
1706
|
+
* DescribeCosCredential request structure.
|
|
1707
|
+
* @class
|
|
1708
|
+
*/
|
|
1709
|
+
class DescribeCosCredentialRequest extends AbstractModel {
|
|
1710
|
+
constructor(){
|
|
1711
|
+
super();
|
|
1712
|
+
|
|
1713
|
+
/**
|
|
1714
|
+
* Application ID.
|
|
1715
|
+
* @type {string || null}
|
|
1716
|
+
*/
|
|
1717
|
+
this.ApplicationId = null;
|
|
1718
|
+
|
|
1719
|
+
/**
|
|
1720
|
+
* Application file name (the file must be a compressed package with a zip/rar/7z file name extension).
|
|
1721
|
+
* @type {string || null}
|
|
1722
|
+
*/
|
|
1723
|
+
this.ApplicationFileName = null;
|
|
1724
|
+
|
|
1725
|
+
}
|
|
1726
|
+
|
|
1727
|
+
/**
|
|
1728
|
+
* @private
|
|
1729
|
+
*/
|
|
1730
|
+
deserialize(params) {
|
|
1731
|
+
if (!params) {
|
|
1732
|
+
return;
|
|
1733
|
+
}
|
|
1734
|
+
this.ApplicationId = 'ApplicationId' in params ? params.ApplicationId : null;
|
|
1735
|
+
this.ApplicationFileName = 'ApplicationFileName' in params ? params.ApplicationFileName : null;
|
|
1736
|
+
|
|
1737
|
+
}
|
|
1738
|
+
}
|
|
1739
|
+
|
|
1740
|
+
/**
|
|
1741
|
+
* StopPublishStream response structure.
|
|
1742
|
+
* @class
|
|
1743
|
+
*/
|
|
1744
|
+
class StopPublishStreamResponse extends AbstractModel {
|
|
1745
|
+
constructor(){
|
|
1746
|
+
super();
|
|
1747
|
+
|
|
1748
|
+
/**
|
|
1749
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1750
|
+
* @type {string || null}
|
|
1751
|
+
*/
|
|
1752
|
+
this.RequestId = null;
|
|
1753
|
+
|
|
1754
|
+
}
|
|
1755
|
+
|
|
1756
|
+
/**
|
|
1757
|
+
* @private
|
|
1758
|
+
*/
|
|
1759
|
+
deserialize(params) {
|
|
1760
|
+
if (!params) {
|
|
1761
|
+
return;
|
|
1762
|
+
}
|
|
1763
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1764
|
+
|
|
1765
|
+
}
|
|
1766
|
+
}
|
|
1767
|
+
|
|
1768
|
+
/**
|
|
1769
|
+
* CreateApplicationProject request structure.
|
|
1770
|
+
* @class
|
|
1771
|
+
*/
|
|
1772
|
+
class CreateApplicationProjectRequest extends AbstractModel {
|
|
1773
|
+
constructor(){
|
|
1774
|
+
super();
|
|
1775
|
+
|
|
1776
|
+
/**
|
|
1777
|
+
* Project name, which is user-defined.
|
|
1778
|
+
* @type {string || null}
|
|
1779
|
+
*/
|
|
1780
|
+
this.Name = null;
|
|
1781
|
+
|
|
1782
|
+
/**
|
|
1783
|
+
* Bound application ID.
|
|
1784
|
+
* @type {string || null}
|
|
1785
|
+
*/
|
|
1786
|
+
this.ApplicationId = null;
|
|
1787
|
+
|
|
1788
|
+
/**
|
|
1789
|
+
* Concurrency type required for project operation.S1: concurrency for rendering small cloud applications.M1: concurrency for rendering medium cloud applications.L1: concurrency for rendering large cloud applications.L2: concurrency for rendering large cloud applications.XL2: concurrency for rendering extra large cloud applications.MM1_HD: concurrency for performance-based cloud ARM (HD).MM1_FHD: concurrency for performance-based cloud ARM (FHD).
|
|
1790
|
+
* @type {string || null}
|
|
1791
|
+
*/
|
|
1792
|
+
this.Type = null;
|
|
1793
|
+
|
|
1794
|
+
/**
|
|
1795
|
+
* Whether to enable warm-up. The default value is false.
|
|
1796
|
+
* @type {boolean || null}
|
|
1797
|
+
*/
|
|
1798
|
+
this.IsPreload = null;
|
|
1799
|
+
|
|
1800
|
+
/**
|
|
1801
|
+
* Application startup parameters.
|
|
1802
|
+
* @type {string || null}
|
|
1803
|
+
*/
|
|
1804
|
+
this.ApplicationParams = null;
|
|
1805
|
+
|
|
1806
|
+
/**
|
|
1807
|
+
* Resolution, in the format of widthxheight, such as 1920x1080.
|
|
1808
|
+
* @type {string || null}
|
|
1809
|
+
*/
|
|
1810
|
+
this.Resolution = null;
|
|
1811
|
+
|
|
1812
|
+
/**
|
|
1813
|
+
* Project type.SHARED: shared by all applications.EXCLUSIVE (default value): dedicated for one application.
|
|
1814
|
+
* @type {string || null}
|
|
1815
|
+
*/
|
|
1816
|
+
this.ProjectType = null;
|
|
1817
|
+
|
|
1818
|
+
/**
|
|
1819
|
+
* Frame rate.
|
|
1820
|
+
* @type {number || null}
|
|
1821
|
+
*/
|
|
1822
|
+
this.FPS = null;
|
|
1823
|
+
|
|
1824
|
+
/**
|
|
1825
|
+
* Waiting time for application pre-launch.
|
|
1826
|
+
* @type {string || null}
|
|
1827
|
+
*/
|
|
1828
|
+
this.PreloadDuration = null;
|
|
1829
|
+
|
|
1830
|
+
/**
|
|
1831
|
+
* Waiting time for reconnection.
|
|
1832
|
+
* @type {string || null}
|
|
1833
|
+
*/
|
|
1834
|
+
this.ReconnectTimeout = null;
|
|
1835
|
+
|
|
1836
|
+
/**
|
|
1837
|
+
* Minimum bitrate, in Mbps.
|
|
1838
|
+
* @type {number || null}
|
|
1839
|
+
*/
|
|
1840
|
+
this.MinBitrate = null;
|
|
1841
|
+
|
|
1842
|
+
/**
|
|
1843
|
+
* Maximum bitrate, in Mbps.
|
|
1844
|
+
* @type {number || null}
|
|
1845
|
+
*/
|
|
1846
|
+
this.MaxBitrate = null;
|
|
1847
|
+
|
|
1848
|
+
/**
|
|
1849
|
+
* Upstream audio options.DisableMixIntoStreamPush: not mixing upstream audio in streaming.
|
|
1850
|
+
* @type {string || null}
|
|
1851
|
+
*/
|
|
1852
|
+
this.UpstreamAudioOption = null;
|
|
1853
|
+
|
|
1854
|
+
/**
|
|
1855
|
+
* Video encoding configuration.
|
|
1856
|
+
* @type {VideoEncodeConfig || null}
|
|
1857
|
+
*/
|
|
1858
|
+
this.VideoEncodeConfig = null;
|
|
1859
|
+
|
|
1860
|
+
/**
|
|
1861
|
+
* Upper limit of the XR application resolution.If the project concurrency type is L or L2, the upper limit is 5000; if the project concurrency type is XL2, the upper limit is 6000.
|
|
1862
|
+
* @type {number || null}
|
|
1863
|
+
*/
|
|
1864
|
+
this.XRMaxWidth = null;
|
|
1865
|
+
|
|
1866
|
+
/**
|
|
1867
|
+
* ID of the background image COS file.
|
|
1868
|
+
* @type {string || null}
|
|
1869
|
+
*/
|
|
1870
|
+
this.BackgroundImageCOSFileId = null;
|
|
1871
|
+
|
|
1872
|
+
/**
|
|
1873
|
+
* Project category.DESKTOP: desktop (default value).MOBILE: mobile.
|
|
1874
|
+
* @type {string || null}
|
|
1875
|
+
*/
|
|
1876
|
+
this.ProjectCategory = null;
|
|
1877
|
+
|
|
1878
|
+
/**
|
|
1879
|
+
* Disabled code list.
|
|
1880
|
+
* @type {Array.<string> || null}
|
|
1881
|
+
*/
|
|
1882
|
+
this.DisableVideoCodecs = null;
|
|
1883
|
+
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1886
|
+
/**
|
|
1887
|
+
* @private
|
|
1888
|
+
*/
|
|
1889
|
+
deserialize(params) {
|
|
1890
|
+
if (!params) {
|
|
1891
|
+
return;
|
|
1892
|
+
}
|
|
1893
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
1894
|
+
this.ApplicationId = 'ApplicationId' in params ? params.ApplicationId : null;
|
|
1895
|
+
this.Type = 'Type' in params ? params.Type : null;
|
|
1896
|
+
this.IsPreload = 'IsPreload' in params ? params.IsPreload : null;
|
|
1897
|
+
this.ApplicationParams = 'ApplicationParams' in params ? params.ApplicationParams : null;
|
|
1898
|
+
this.Resolution = 'Resolution' in params ? params.Resolution : null;
|
|
1899
|
+
this.ProjectType = 'ProjectType' in params ? params.ProjectType : null;
|
|
1900
|
+
this.FPS = 'FPS' in params ? params.FPS : null;
|
|
1901
|
+
this.PreloadDuration = 'PreloadDuration' in params ? params.PreloadDuration : null;
|
|
1902
|
+
this.ReconnectTimeout = 'ReconnectTimeout' in params ? params.ReconnectTimeout : null;
|
|
1903
|
+
this.MinBitrate = 'MinBitrate' in params ? params.MinBitrate : null;
|
|
1904
|
+
this.MaxBitrate = 'MaxBitrate' in params ? params.MaxBitrate : null;
|
|
1905
|
+
this.UpstreamAudioOption = 'UpstreamAudioOption' in params ? params.UpstreamAudioOption : null;
|
|
1906
|
+
|
|
1907
|
+
if (params.VideoEncodeConfig) {
|
|
1908
|
+
let obj = new VideoEncodeConfig();
|
|
1909
|
+
obj.deserialize(params.VideoEncodeConfig)
|
|
1910
|
+
this.VideoEncodeConfig = obj;
|
|
1911
|
+
}
|
|
1912
|
+
this.XRMaxWidth = 'XRMaxWidth' in params ? params.XRMaxWidth : null;
|
|
1913
|
+
this.BackgroundImageCOSFileId = 'BackgroundImageCOSFileId' in params ? params.BackgroundImageCOSFileId : null;
|
|
1914
|
+
this.ProjectCategory = 'ProjectCategory' in params ? params.ProjectCategory : null;
|
|
1915
|
+
this.DisableVideoCodecs = 'DisableVideoCodecs' in params ? params.DisableVideoCodecs : null;
|
|
1916
|
+
|
|
1917
|
+
}
|
|
1918
|
+
}
|
|
1919
|
+
|
|
1920
|
+
/**
|
|
1921
|
+
* StopPublishStream request structure.
|
|
927
1922
|
* @class
|
|
928
1923
|
*/
|
|
929
|
-
class
|
|
1924
|
+
class StopPublishStreamRequest extends AbstractModel {
|
|
930
1925
|
constructor(){
|
|
931
1926
|
super();
|
|
932
1927
|
|
|
933
1928
|
/**
|
|
934
|
-
*
|
|
935
|
-
* @type {
|
|
1929
|
+
* Unique user ID, which is customized by you and is not parsed by CAR. Based on your needs, you can either define unique IDs for users or use timestamps to generate random IDs. Make sure the same ID is used when a user reconnects to your application.
|
|
1930
|
+
* @type {string || null}
|
|
936
1931
|
*/
|
|
937
|
-
this.
|
|
1932
|
+
this.UserId = null;
|
|
938
1933
|
|
|
939
1934
|
}
|
|
940
1935
|
|
|
@@ -945,30 +1940,42 @@ class DescribeApplicationStatusRequest extends AbstractModel {
|
|
|
945
1940
|
if (!params) {
|
|
946
1941
|
return;
|
|
947
1942
|
}
|
|
948
|
-
this.
|
|
1943
|
+
this.UserId = 'UserId' in params ? params.UserId : null;
|
|
949
1944
|
|
|
950
1945
|
}
|
|
951
1946
|
}
|
|
952
1947
|
|
|
953
1948
|
/**
|
|
954
|
-
*
|
|
1949
|
+
* CreateApplicationVersion request structure.
|
|
955
1950
|
* @class
|
|
956
1951
|
*/
|
|
957
|
-
class
|
|
1952
|
+
class CreateApplicationVersionRequest extends AbstractModel {
|
|
958
1953
|
constructor(){
|
|
959
1954
|
super();
|
|
960
1955
|
|
|
961
1956
|
/**
|
|
962
|
-
* Application
|
|
1957
|
+
* Application ID.
|
|
963
1958
|
* @type {string || null}
|
|
964
1959
|
*/
|
|
965
|
-
this.
|
|
1960
|
+
this.ApplicationId = null;
|
|
966
1961
|
|
|
967
1962
|
/**
|
|
968
|
-
* Application
|
|
1963
|
+
* Application file name (desktop applications should be files in zip/rar/7z format, and mobile applications should be files in apk format).
|
|
969
1964
|
* @type {string || null}
|
|
970
1965
|
*/
|
|
971
|
-
this.
|
|
1966
|
+
this.ApplicationFileName = null;
|
|
1967
|
+
|
|
1968
|
+
/**
|
|
1969
|
+
* Region for application version distribution.
|
|
1970
|
+
* @type {Array.<string> || null}
|
|
1971
|
+
*/
|
|
1972
|
+
this.ApplicationVersionRegions = null;
|
|
1973
|
+
|
|
1974
|
+
/**
|
|
1975
|
+
* Application update method.
|
|
1976
|
+
* @type {string || null}
|
|
1977
|
+
*/
|
|
1978
|
+
this.ApplicationVersionUpdateMode = null;
|
|
972
1979
|
|
|
973
1980
|
}
|
|
974
1981
|
|
|
@@ -979,25 +1986,33 @@ class CreateApplicationRequest extends AbstractModel {
|
|
|
979
1986
|
if (!params) {
|
|
980
1987
|
return;
|
|
981
1988
|
}
|
|
982
|
-
this.
|
|
983
|
-
this.
|
|
1989
|
+
this.ApplicationId = 'ApplicationId' in params ? params.ApplicationId : null;
|
|
1990
|
+
this.ApplicationFileName = 'ApplicationFileName' in params ? params.ApplicationFileName : null;
|
|
1991
|
+
this.ApplicationVersionRegions = 'ApplicationVersionRegions' in params ? params.ApplicationVersionRegions : null;
|
|
1992
|
+
this.ApplicationVersionUpdateMode = 'ApplicationVersionUpdateMode' in params ? params.ApplicationVersionUpdateMode : null;
|
|
984
1993
|
|
|
985
1994
|
}
|
|
986
1995
|
}
|
|
987
1996
|
|
|
988
1997
|
/**
|
|
989
|
-
*
|
|
1998
|
+
* DescribeApplicationStatus response structure.
|
|
990
1999
|
* @class
|
|
991
2000
|
*/
|
|
992
|
-
class
|
|
2001
|
+
class DescribeApplicationStatusResponse extends AbstractModel {
|
|
993
2002
|
constructor(){
|
|
994
2003
|
super();
|
|
995
2004
|
|
|
996
2005
|
/**
|
|
997
|
-
*
|
|
2006
|
+
* Application status list.
|
|
2007
|
+
* @type {Array.<UserApplicationStatus> || null}
|
|
2008
|
+
*/
|
|
2009
|
+
this.StatusList = null;
|
|
2010
|
+
|
|
2011
|
+
/**
|
|
2012
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
998
2013
|
* @type {string || null}
|
|
999
2014
|
*/
|
|
1000
|
-
this.
|
|
2015
|
+
this.RequestId = null;
|
|
1001
2016
|
|
|
1002
2017
|
}
|
|
1003
2018
|
|
|
@@ -1008,16 +2023,25 @@ class DescribeConcurrentCountRequest extends AbstractModel {
|
|
|
1008
2023
|
if (!params) {
|
|
1009
2024
|
return;
|
|
1010
2025
|
}
|
|
1011
|
-
|
|
2026
|
+
|
|
2027
|
+
if (params.StatusList) {
|
|
2028
|
+
this.StatusList = new Array();
|
|
2029
|
+
for (let z in params.StatusList) {
|
|
2030
|
+
let obj = new UserApplicationStatus();
|
|
2031
|
+
obj.deserialize(params.StatusList[z]);
|
|
2032
|
+
this.StatusList.push(obj);
|
|
2033
|
+
}
|
|
2034
|
+
}
|
|
2035
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1012
2036
|
|
|
1013
2037
|
}
|
|
1014
2038
|
}
|
|
1015
2039
|
|
|
1016
2040
|
/**
|
|
1017
|
-
*
|
|
2041
|
+
* DestroySession response structure.
|
|
1018
2042
|
* @class
|
|
1019
2043
|
*/
|
|
1020
|
-
class
|
|
2044
|
+
class DestroySessionResponse extends AbstractModel {
|
|
1021
2045
|
constructor(){
|
|
1022
2046
|
super();
|
|
1023
2047
|
|
|
@@ -1042,13 +2066,19 @@ class DeleteApplicationVersionResponse extends AbstractModel {
|
|
|
1042
2066
|
}
|
|
1043
2067
|
|
|
1044
2068
|
/**
|
|
1045
|
-
*
|
|
2069
|
+
* DescribeApplicationVersion response structure.
|
|
1046
2070
|
* @class
|
|
1047
2071
|
*/
|
|
1048
|
-
class
|
|
2072
|
+
class DescribeApplicationVersionResponse extends AbstractModel {
|
|
1049
2073
|
constructor(){
|
|
1050
2074
|
super();
|
|
1051
2075
|
|
|
2076
|
+
/**
|
|
2077
|
+
* List of application versions.
|
|
2078
|
+
* @type {Array.<UserApplicationVersion> || null}
|
|
2079
|
+
*/
|
|
2080
|
+
this.Versions = null;
|
|
2081
|
+
|
|
1052
2082
|
/**
|
|
1053
2083
|
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1054
2084
|
* @type {string || null}
|
|
@@ -1064,30 +2094,39 @@ class ModifyApplicationVersionResponse extends AbstractModel {
|
|
|
1064
2094
|
if (!params) {
|
|
1065
2095
|
return;
|
|
1066
2096
|
}
|
|
2097
|
+
|
|
2098
|
+
if (params.Versions) {
|
|
2099
|
+
this.Versions = new Array();
|
|
2100
|
+
for (let z in params.Versions) {
|
|
2101
|
+
let obj = new UserApplicationVersion();
|
|
2102
|
+
obj.deserialize(params.Versions[z]);
|
|
2103
|
+
this.Versions.push(obj);
|
|
2104
|
+
}
|
|
2105
|
+
}
|
|
1067
2106
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1068
2107
|
|
|
1069
2108
|
}
|
|
1070
2109
|
}
|
|
1071
2110
|
|
|
1072
2111
|
/**
|
|
1073
|
-
*
|
|
2112
|
+
* DescribeApplicationPathList request structure.
|
|
1074
2113
|
* @class
|
|
1075
2114
|
*/
|
|
1076
|
-
class
|
|
2115
|
+
class DescribeApplicationPathListRequest extends AbstractModel {
|
|
1077
2116
|
constructor(){
|
|
1078
2117
|
super();
|
|
1079
2118
|
|
|
1080
2119
|
/**
|
|
1081
|
-
*
|
|
2120
|
+
* Cloud application ID.
|
|
1082
2121
|
* @type {string || null}
|
|
1083
2122
|
*/
|
|
1084
2123
|
this.ApplicationId = null;
|
|
1085
2124
|
|
|
1086
2125
|
/**
|
|
1087
|
-
*
|
|
2126
|
+
* Cloud application version ID.
|
|
1088
2127
|
* @type {string || null}
|
|
1089
2128
|
*/
|
|
1090
|
-
this.
|
|
2129
|
+
this.ApplicationVersionId = null;
|
|
1091
2130
|
|
|
1092
2131
|
}
|
|
1093
2132
|
|
|
@@ -1099,24 +2138,24 @@ class DescribeCosCredentialRequest extends AbstractModel {
|
|
|
1099
2138
|
return;
|
|
1100
2139
|
}
|
|
1101
2140
|
this.ApplicationId = 'ApplicationId' in params ? params.ApplicationId : null;
|
|
1102
|
-
this.
|
|
2141
|
+
this.ApplicationVersionId = 'ApplicationVersionId' in params ? params.ApplicationVersionId : null;
|
|
1103
2142
|
|
|
1104
2143
|
}
|
|
1105
2144
|
}
|
|
1106
2145
|
|
|
1107
2146
|
/**
|
|
1108
|
-
*
|
|
2147
|
+
* ResetConcurrentPackages request structure.
|
|
1109
2148
|
* @class
|
|
1110
2149
|
*/
|
|
1111
|
-
class
|
|
2150
|
+
class ResetConcurrentPackagesRequest extends AbstractModel {
|
|
1112
2151
|
constructor(){
|
|
1113
2152
|
super();
|
|
1114
2153
|
|
|
1115
2154
|
/**
|
|
1116
|
-
*
|
|
1117
|
-
* @type {string || null}
|
|
2155
|
+
* Concurrency pack ID array.
|
|
2156
|
+
* @type {Array.<string> || null}
|
|
1118
2157
|
*/
|
|
1119
|
-
this.
|
|
2158
|
+
this.ConcurrentPackageIds = null;
|
|
1120
2159
|
|
|
1121
2160
|
}
|
|
1122
2161
|
|
|
@@ -1127,42 +2166,24 @@ class StopPublishStreamResponse extends AbstractModel {
|
|
|
1127
2166
|
if (!params) {
|
|
1128
2167
|
return;
|
|
1129
2168
|
}
|
|
1130
|
-
this.
|
|
2169
|
+
this.ConcurrentPackageIds = 'ConcurrentPackageIds' in params ? params.ConcurrentPackageIds : null;
|
|
1131
2170
|
|
|
1132
2171
|
}
|
|
1133
2172
|
}
|
|
1134
2173
|
|
|
1135
2174
|
/**
|
|
1136
|
-
*
|
|
2175
|
+
* StartPublishStream response structure.
|
|
1137
2176
|
* @class
|
|
1138
2177
|
*/
|
|
1139
|
-
class
|
|
2178
|
+
class StartPublishStreamResponse extends AbstractModel {
|
|
1140
2179
|
constructor(){
|
|
1141
2180
|
super();
|
|
1142
2181
|
|
|
1143
2182
|
/**
|
|
1144
|
-
*
|
|
1145
|
-
* @type {string || null}
|
|
1146
|
-
*/
|
|
1147
|
-
this.ApplicationId = null;
|
|
1148
|
-
|
|
1149
|
-
/**
|
|
1150
|
-
* Application file name (desktop applications should be files in zip/rar/7z format, and mobile applications should be files in apk format).
|
|
1151
|
-
* @type {string || null}
|
|
1152
|
-
*/
|
|
1153
|
-
this.ApplicationFileName = null;
|
|
1154
|
-
|
|
1155
|
-
/**
|
|
1156
|
-
* Region for application version distribution.
|
|
1157
|
-
* @type {Array.<string> || null}
|
|
1158
|
-
*/
|
|
1159
|
-
this.ApplicationVersionRegions = null;
|
|
1160
|
-
|
|
1161
|
-
/**
|
|
1162
|
-
* Application update method.
|
|
2183
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1163
2184
|
* @type {string || null}
|
|
1164
2185
|
*/
|
|
1165
|
-
this.
|
|
2186
|
+
this.RequestId = null;
|
|
1166
2187
|
|
|
1167
2188
|
}
|
|
1168
2189
|
|
|
@@ -1173,27 +2194,24 @@ class CreateApplicationVersionRequest extends AbstractModel {
|
|
|
1173
2194
|
if (!params) {
|
|
1174
2195
|
return;
|
|
1175
2196
|
}
|
|
1176
|
-
this.
|
|
1177
|
-
this.ApplicationFileName = 'ApplicationFileName' in params ? params.ApplicationFileName : null;
|
|
1178
|
-
this.ApplicationVersionRegions = 'ApplicationVersionRegions' in params ? params.ApplicationVersionRegions : null;
|
|
1179
|
-
this.ApplicationVersionUpdateMode = 'ApplicationVersionUpdateMode' in params ? params.ApplicationVersionUpdateMode : null;
|
|
2197
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1180
2198
|
|
|
1181
2199
|
}
|
|
1182
2200
|
}
|
|
1183
2201
|
|
|
1184
2202
|
/**
|
|
1185
|
-
*
|
|
2203
|
+
* CreateSession response structure.
|
|
1186
2204
|
* @class
|
|
1187
2205
|
*/
|
|
1188
|
-
class
|
|
2206
|
+
class CreateSessionResponse extends AbstractModel {
|
|
1189
2207
|
constructor(){
|
|
1190
2208
|
super();
|
|
1191
2209
|
|
|
1192
2210
|
/**
|
|
1193
|
-
*
|
|
1194
|
-
* @type {
|
|
2211
|
+
* Server-side session information, which is returned to the SDK.
|
|
2212
|
+
* @type {string || null}
|
|
1195
2213
|
*/
|
|
1196
|
-
this.
|
|
2214
|
+
this.ServerSession = null;
|
|
1197
2215
|
|
|
1198
2216
|
/**
|
|
1199
2217
|
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
@@ -1210,33 +2228,47 @@ class DescribeApplicationStatusResponse extends AbstractModel {
|
|
|
1210
2228
|
if (!params) {
|
|
1211
2229
|
return;
|
|
1212
2230
|
}
|
|
1213
|
-
|
|
1214
|
-
if (params.StatusList) {
|
|
1215
|
-
this.StatusList = new Array();
|
|
1216
|
-
for (let z in params.StatusList) {
|
|
1217
|
-
let obj = new UserApplicationStatus();
|
|
1218
|
-
obj.deserialize(params.StatusList[z]);
|
|
1219
|
-
this.StatusList.push(obj);
|
|
1220
|
-
}
|
|
1221
|
-
}
|
|
2231
|
+
this.ServerSession = 'ServerSession' in params ? params.ServerSession : null;
|
|
1222
2232
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1223
2233
|
|
|
1224
2234
|
}
|
|
1225
2235
|
}
|
|
1226
2236
|
|
|
1227
2237
|
/**
|
|
1228
|
-
*
|
|
2238
|
+
* Background image information.
|
|
1229
2239
|
* @class
|
|
1230
2240
|
*/
|
|
1231
|
-
class
|
|
2241
|
+
class BackgroundImage extends AbstractModel {
|
|
1232
2242
|
constructor(){
|
|
1233
2243
|
super();
|
|
1234
2244
|
|
|
1235
2245
|
/**
|
|
1236
|
-
*
|
|
2246
|
+
* ID of the COS file.Note: This field may return null, indicating that no valid values can be obtained.
|
|
1237
2247
|
* @type {string || null}
|
|
1238
2248
|
*/
|
|
1239
|
-
this.
|
|
2249
|
+
this.COSFileId = null;
|
|
2250
|
+
|
|
2251
|
+
/**
|
|
2252
|
+
* Download URL.Note: This field may return null, indicating that no valid values can be obtained.
|
|
2253
|
+
* @type {string || null}
|
|
2254
|
+
*/
|
|
2255
|
+
this.URL = null;
|
|
2256
|
+
|
|
2257
|
+
/**
|
|
2258
|
+
* Name
|
|
2259
|
+
|
|
2260
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2261
|
+
* @type {string || null}
|
|
2262
|
+
*/
|
|
2263
|
+
this.Name = null;
|
|
2264
|
+
|
|
2265
|
+
/**
|
|
2266
|
+
* Creation time.
|
|
2267
|
+
|
|
2268
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2269
|
+
* @type {string || null}
|
|
2270
|
+
*/
|
|
2271
|
+
this.CreateTime = null;
|
|
1240
2272
|
|
|
1241
2273
|
}
|
|
1242
2274
|
|
|
@@ -1247,25 +2279,22 @@ class DestroySessionResponse extends AbstractModel {
|
|
|
1247
2279
|
if (!params) {
|
|
1248
2280
|
return;
|
|
1249
2281
|
}
|
|
1250
|
-
this.
|
|
2282
|
+
this.COSFileId = 'COSFileId' in params ? params.COSFileId : null;
|
|
2283
|
+
this.URL = 'URL' in params ? params.URL : null;
|
|
2284
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
2285
|
+
this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
|
|
1251
2286
|
|
|
1252
2287
|
}
|
|
1253
2288
|
}
|
|
1254
2289
|
|
|
1255
2290
|
/**
|
|
1256
|
-
*
|
|
2291
|
+
* ModifyApplicationProject response structure.
|
|
1257
2292
|
* @class
|
|
1258
2293
|
*/
|
|
1259
|
-
class
|
|
2294
|
+
class ModifyApplicationProjectResponse extends AbstractModel {
|
|
1260
2295
|
constructor(){
|
|
1261
2296
|
super();
|
|
1262
2297
|
|
|
1263
|
-
/**
|
|
1264
|
-
* List of application versions.
|
|
1265
|
-
* @type {Array.<UserApplicationVersion> || null}
|
|
1266
|
-
*/
|
|
1267
|
-
this.Versions = null;
|
|
1268
|
-
|
|
1269
2298
|
/**
|
|
1270
2299
|
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1271
2300
|
* @type {string || null}
|
|
@@ -1281,39 +2310,42 @@ class DescribeApplicationVersionResponse extends AbstractModel {
|
|
|
1281
2310
|
if (!params) {
|
|
1282
2311
|
return;
|
|
1283
2312
|
}
|
|
1284
|
-
|
|
1285
|
-
if (params.Versions) {
|
|
1286
|
-
this.Versions = new Array();
|
|
1287
|
-
for (let z in params.Versions) {
|
|
1288
|
-
let obj = new UserApplicationVersion();
|
|
1289
|
-
obj.deserialize(params.Versions[z]);
|
|
1290
|
-
this.Versions.push(obj);
|
|
1291
|
-
}
|
|
1292
|
-
}
|
|
1293
2313
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1294
2314
|
|
|
1295
2315
|
}
|
|
1296
2316
|
}
|
|
1297
2317
|
|
|
1298
2318
|
/**
|
|
1299
|
-
*
|
|
2319
|
+
* DescribeApplicationList request structure.
|
|
1300
2320
|
* @class
|
|
1301
2321
|
*/
|
|
1302
|
-
class
|
|
2322
|
+
class DescribeApplicationListRequest extends AbstractModel {
|
|
1303
2323
|
constructor(){
|
|
1304
2324
|
super();
|
|
1305
2325
|
|
|
1306
2326
|
/**
|
|
1307
|
-
*
|
|
1308
|
-
* @type {
|
|
2327
|
+
* Application list offset.
|
|
2328
|
+
* @type {number || null}
|
|
1309
2329
|
*/
|
|
1310
|
-
this.
|
|
2330
|
+
this.Offset = null;
|
|
1311
2331
|
|
|
1312
2332
|
/**
|
|
1313
|
-
*
|
|
2333
|
+
* Application quantity limit.
|
|
2334
|
+
* @type {number || null}
|
|
2335
|
+
*/
|
|
2336
|
+
this.Limit = null;
|
|
2337
|
+
|
|
2338
|
+
/**
|
|
2339
|
+
* Filter criteria.
|
|
2340
|
+
* @type {Array.<Filter> || null}
|
|
2341
|
+
*/
|
|
2342
|
+
this.Filters = null;
|
|
2343
|
+
|
|
2344
|
+
/**
|
|
2345
|
+
* Application category (DESKTOP: desktop; MOBILE: mobile).
|
|
1314
2346
|
* @type {string || null}
|
|
1315
2347
|
*/
|
|
1316
|
-
this.
|
|
2348
|
+
this.ApplicationCategory = null;
|
|
1317
2349
|
|
|
1318
2350
|
}
|
|
1319
2351
|
|
|
@@ -1324,25 +2356,41 @@ class DescribeApplicationPathListRequest extends AbstractModel {
|
|
|
1324
2356
|
if (!params) {
|
|
1325
2357
|
return;
|
|
1326
2358
|
}
|
|
1327
|
-
this.
|
|
1328
|
-
this.
|
|
2359
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
2360
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
2361
|
+
|
|
2362
|
+
if (params.Filters) {
|
|
2363
|
+
this.Filters = new Array();
|
|
2364
|
+
for (let z in params.Filters) {
|
|
2365
|
+
let obj = new Filter();
|
|
2366
|
+
obj.deserialize(params.Filters[z]);
|
|
2367
|
+
this.Filters.push(obj);
|
|
2368
|
+
}
|
|
2369
|
+
}
|
|
2370
|
+
this.ApplicationCategory = 'ApplicationCategory' in params ? params.ApplicationCategory : null;
|
|
1329
2371
|
|
|
1330
2372
|
}
|
|
1331
2373
|
}
|
|
1332
2374
|
|
|
1333
2375
|
/**
|
|
1334
|
-
* StartPublishStream
|
|
2376
|
+
* StartPublishStream request structure.
|
|
1335
2377
|
* @class
|
|
1336
2378
|
*/
|
|
1337
|
-
class
|
|
2379
|
+
class StartPublishStreamRequest extends AbstractModel {
|
|
1338
2380
|
constructor(){
|
|
1339
2381
|
super();
|
|
1340
2382
|
|
|
1341
2383
|
/**
|
|
1342
|
-
*
|
|
2384
|
+
* Unique user ID, which is customized by you and is not parsed by CAR. It will be used as the `StreamId` for streaming. For example, if the bound streaming domain is **abc.livepush.myqcloud.com**, the streaming address will be **rtmp://abc.livepush.myqcloud.com/live/UserId?txSecret=xxx&txTime=xxx**.
|
|
2385
|
+
* @type {string || null}
|
|
2386
|
+
*/
|
|
2387
|
+
this.UserId = null;
|
|
2388
|
+
|
|
2389
|
+
/**
|
|
2390
|
+
* Streaming parameter, which is a custom parameter carried during streaming.
|
|
1343
2391
|
* @type {string || null}
|
|
1344
2392
|
*/
|
|
1345
|
-
this.
|
|
2393
|
+
this.PublishStreamArgs = null;
|
|
1346
2394
|
|
|
1347
2395
|
}
|
|
1348
2396
|
|
|
@@ -1353,25 +2401,20 @@ class StartPublishStreamResponse extends AbstractModel {
|
|
|
1353
2401
|
if (!params) {
|
|
1354
2402
|
return;
|
|
1355
2403
|
}
|
|
1356
|
-
this.
|
|
2404
|
+
this.UserId = 'UserId' in params ? params.UserId : null;
|
|
2405
|
+
this.PublishStreamArgs = 'PublishStreamArgs' in params ? params.PublishStreamArgs : null;
|
|
1357
2406
|
|
|
1358
2407
|
}
|
|
1359
2408
|
}
|
|
1360
2409
|
|
|
1361
2410
|
/**
|
|
1362
|
-
*
|
|
2411
|
+
* ModifyConcurrentPackage response structure.
|
|
1363
2412
|
* @class
|
|
1364
2413
|
*/
|
|
1365
|
-
class
|
|
2414
|
+
class ModifyConcurrentPackageResponse extends AbstractModel {
|
|
1366
2415
|
constructor(){
|
|
1367
2416
|
super();
|
|
1368
2417
|
|
|
1369
|
-
/**
|
|
1370
|
-
* Server-side session information, which is returned to the SDK.
|
|
1371
|
-
* @type {string || null}
|
|
1372
|
-
*/
|
|
1373
|
-
this.ServerSession = null;
|
|
1374
|
-
|
|
1375
2418
|
/**
|
|
1376
2419
|
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1377
2420
|
* @type {string || null}
|
|
@@ -1387,43 +2430,30 @@ class CreateSessionResponse extends AbstractModel {
|
|
|
1387
2430
|
if (!params) {
|
|
1388
2431
|
return;
|
|
1389
2432
|
}
|
|
1390
|
-
this.ServerSession = 'ServerSession' in params ? params.ServerSession : null;
|
|
1391
2433
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1392
2434
|
|
|
1393
2435
|
}
|
|
1394
2436
|
}
|
|
1395
2437
|
|
|
1396
2438
|
/**
|
|
1397
|
-
*
|
|
2439
|
+
* UnbindConcurrentPackagesFromProject request structure.
|
|
1398
2440
|
* @class
|
|
1399
2441
|
*/
|
|
1400
|
-
class
|
|
2442
|
+
class UnbindConcurrentPackagesFromProjectRequest extends AbstractModel {
|
|
1401
2443
|
constructor(){
|
|
1402
2444
|
super();
|
|
1403
2445
|
|
|
1404
2446
|
/**
|
|
1405
|
-
*
|
|
1406
|
-
* @type {
|
|
1407
|
-
*/
|
|
1408
|
-
this.Offset = null;
|
|
1409
|
-
|
|
1410
|
-
/**
|
|
1411
|
-
* Application quantity limit.
|
|
1412
|
-
* @type {number || null}
|
|
1413
|
-
*/
|
|
1414
|
-
this.Limit = null;
|
|
1415
|
-
|
|
1416
|
-
/**
|
|
1417
|
-
* Filter criteria.
|
|
1418
|
-
* @type {Array.<Filter> || null}
|
|
2447
|
+
* Concurrency pack ID list.
|
|
2448
|
+
* @type {Array.<string> || null}
|
|
1419
2449
|
*/
|
|
1420
|
-
this.
|
|
2450
|
+
this.ConcurrentIds = null;
|
|
1421
2451
|
|
|
1422
2452
|
/**
|
|
1423
|
-
*
|
|
2453
|
+
* Cloud application project ID.
|
|
1424
2454
|
* @type {string || null}
|
|
1425
2455
|
*/
|
|
1426
|
-
this.
|
|
2456
|
+
this.ProjectId = null;
|
|
1427
2457
|
|
|
1428
2458
|
}
|
|
1429
2459
|
|
|
@@ -1434,41 +2464,43 @@ class DescribeApplicationListRequest extends AbstractModel {
|
|
|
1434
2464
|
if (!params) {
|
|
1435
2465
|
return;
|
|
1436
2466
|
}
|
|
1437
|
-
this.
|
|
1438
|
-
this.
|
|
1439
|
-
|
|
1440
|
-
if (params.Filters) {
|
|
1441
|
-
this.Filters = new Array();
|
|
1442
|
-
for (let z in params.Filters) {
|
|
1443
|
-
let obj = new Filter();
|
|
1444
|
-
obj.deserialize(params.Filters[z]);
|
|
1445
|
-
this.Filters.push(obj);
|
|
1446
|
-
}
|
|
1447
|
-
}
|
|
1448
|
-
this.ApplicationCategory = 'ApplicationCategory' in params ? params.ApplicationCategory : null;
|
|
2467
|
+
this.ConcurrentIds = 'ConcurrentIds' in params ? params.ConcurrentIds : null;
|
|
2468
|
+
this.ProjectId = 'ProjectId' in params ? params.ProjectId : null;
|
|
1449
2469
|
|
|
1450
2470
|
}
|
|
1451
2471
|
}
|
|
1452
2472
|
|
|
1453
2473
|
/**
|
|
1454
|
-
*
|
|
2474
|
+
* Application status information.
|
|
1455
2475
|
* @class
|
|
1456
2476
|
*/
|
|
1457
|
-
class
|
|
2477
|
+
class UserApplicationStatus extends AbstractModel {
|
|
1458
2478
|
constructor(){
|
|
1459
2479
|
super();
|
|
1460
2480
|
|
|
1461
2481
|
/**
|
|
1462
|
-
*
|
|
2482
|
+
* Application ID.
|
|
1463
2483
|
* @type {string || null}
|
|
1464
2484
|
*/
|
|
1465
|
-
this.
|
|
2485
|
+
this.ApplicationId = null;
|
|
1466
2486
|
|
|
1467
2487
|
/**
|
|
1468
|
-
*
|
|
2488
|
+
* Application running status (ApplicationDeleting: application deletion in progress; ApplicationCreateFail: application creation failed; ApplicationCreating: application creation in progress; ApplicationRunning: normal running; ApplicationNoConfigured: main execution program path not configured; ApplicationNoPackage: no available package).
|
|
1469
2489
|
* @type {string || null}
|
|
1470
2490
|
*/
|
|
1471
|
-
this.
|
|
2491
|
+
this.ApplicationRunStatus = null;
|
|
2492
|
+
|
|
2493
|
+
/**
|
|
2494
|
+
* Application update status (ApplicationUpdateCreating: version creation in progress; ApplicationUpdateCreateFail: version creation failed; ApplicationUpdateNoReleased: version to be released; ApplicationUpdateReleased: version release completed; ApplicationUpdateNormal: none).
|
|
2495
|
+
* @type {string || null}
|
|
2496
|
+
*/
|
|
2497
|
+
this.ApplicationUpdateStatus = null;
|
|
2498
|
+
|
|
2499
|
+
/**
|
|
2500
|
+
* Application update progress.
|
|
2501
|
+
* @type {number || null}
|
|
2502
|
+
*/
|
|
2503
|
+
this.ApplicationUpdateProgress = null;
|
|
1472
2504
|
|
|
1473
2505
|
}
|
|
1474
2506
|
|
|
@@ -1479,8 +2511,10 @@ class StartPublishStreamRequest extends AbstractModel {
|
|
|
1479
2511
|
if (!params) {
|
|
1480
2512
|
return;
|
|
1481
2513
|
}
|
|
1482
|
-
this.
|
|
1483
|
-
this.
|
|
2514
|
+
this.ApplicationId = 'ApplicationId' in params ? params.ApplicationId : null;
|
|
2515
|
+
this.ApplicationRunStatus = 'ApplicationRunStatus' in params ? params.ApplicationRunStatus : null;
|
|
2516
|
+
this.ApplicationUpdateStatus = 'ApplicationUpdateStatus' in params ? params.ApplicationUpdateStatus : null;
|
|
2517
|
+
this.ApplicationUpdateProgress = 'ApplicationUpdateProgress' in params ? params.ApplicationUpdateProgress : null;
|
|
1484
2518
|
|
|
1485
2519
|
}
|
|
1486
2520
|
}
|
|
@@ -1654,36 +2688,58 @@ class DeleteApplicationResponse extends AbstractModel {
|
|
|
1654
2688
|
}
|
|
1655
2689
|
|
|
1656
2690
|
/**
|
|
1657
|
-
*
|
|
2691
|
+
* DeleteApplicationProjects request structure.
|
|
1658
2692
|
* @class
|
|
1659
2693
|
*/
|
|
1660
|
-
class
|
|
2694
|
+
class DeleteApplicationProjectsRequest extends AbstractModel {
|
|
1661
2695
|
constructor(){
|
|
1662
2696
|
super();
|
|
1663
2697
|
|
|
1664
2698
|
/**
|
|
1665
|
-
*
|
|
1666
|
-
* @type {string || null}
|
|
2699
|
+
* ID list of cloud application projects.
|
|
2700
|
+
* @type {Array.<string> || null}
|
|
1667
2701
|
*/
|
|
1668
|
-
this.
|
|
2702
|
+
this.ProjectIds = null;
|
|
2703
|
+
|
|
2704
|
+
}
|
|
2705
|
+
|
|
2706
|
+
/**
|
|
2707
|
+
* @private
|
|
2708
|
+
*/
|
|
2709
|
+
deserialize(params) {
|
|
2710
|
+
if (!params) {
|
|
2711
|
+
return;
|
|
2712
|
+
}
|
|
2713
|
+
this.ProjectIds = 'ProjectIds' in params ? params.ProjectIds : null;
|
|
2714
|
+
|
|
2715
|
+
}
|
|
2716
|
+
}
|
|
2717
|
+
|
|
2718
|
+
/**
|
|
2719
|
+
* DescribeConcurrentPackages request structure.
|
|
2720
|
+
* @class
|
|
2721
|
+
*/
|
|
2722
|
+
class DescribeConcurrentPackagesRequest extends AbstractModel {
|
|
2723
|
+
constructor(){
|
|
2724
|
+
super();
|
|
1669
2725
|
|
|
1670
2726
|
/**
|
|
1671
|
-
*
|
|
1672
|
-
* @type {
|
|
2727
|
+
* Subscript.
|
|
2728
|
+
* @type {number || null}
|
|
1673
2729
|
*/
|
|
1674
|
-
this.
|
|
2730
|
+
this.Offset = null;
|
|
1675
2731
|
|
|
1676
2732
|
/**
|
|
1677
|
-
*
|
|
1678
|
-
* @type {
|
|
2733
|
+
* Number of entries per page.
|
|
2734
|
+
* @type {number || null}
|
|
1679
2735
|
*/
|
|
1680
|
-
this.
|
|
2736
|
+
this.Limit = null;
|
|
1681
2737
|
|
|
1682
2738
|
/**
|
|
1683
|
-
*
|
|
1684
|
-
* @type {
|
|
2739
|
+
* Filter List
|
|
2740
|
+
* @type {Array.<Filter> || null}
|
|
1685
2741
|
*/
|
|
1686
|
-
this.
|
|
2742
|
+
this.Filters = null;
|
|
1687
2743
|
|
|
1688
2744
|
}
|
|
1689
2745
|
|
|
@@ -1694,27 +2750,46 @@ class UserApplicationStatus extends AbstractModel {
|
|
|
1694
2750
|
if (!params) {
|
|
1695
2751
|
return;
|
|
1696
2752
|
}
|
|
1697
|
-
this.
|
|
1698
|
-
this.
|
|
1699
|
-
|
|
1700
|
-
|
|
2753
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
2754
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
2755
|
+
|
|
2756
|
+
if (params.Filters) {
|
|
2757
|
+
this.Filters = new Array();
|
|
2758
|
+
for (let z in params.Filters) {
|
|
2759
|
+
let obj = new Filter();
|
|
2760
|
+
obj.deserialize(params.Filters[z]);
|
|
2761
|
+
this.Filters.push(obj);
|
|
2762
|
+
}
|
|
2763
|
+
}
|
|
1701
2764
|
|
|
1702
2765
|
}
|
|
1703
2766
|
}
|
|
1704
2767
|
|
|
1705
2768
|
/**
|
|
1706
|
-
*
|
|
2769
|
+
* DescribeConcurrentSummary response structure.
|
|
1707
2770
|
* @class
|
|
1708
2771
|
*/
|
|
1709
|
-
class
|
|
2772
|
+
class DescribeConcurrentSummaryResponse extends AbstractModel {
|
|
1710
2773
|
constructor(){
|
|
1711
2774
|
super();
|
|
1712
2775
|
|
|
1713
2776
|
/**
|
|
1714
|
-
*
|
|
2777
|
+
* Total number of prepaid (monthly subscription) concurrencies.
|
|
2778
|
+
* @type {number || null}
|
|
2779
|
+
*/
|
|
2780
|
+
this.PrepaidConcurrentTotal = null;
|
|
2781
|
+
|
|
2782
|
+
/**
|
|
2783
|
+
* Remaining duration of an hourly package.
|
|
1715
2784
|
* @type {string || null}
|
|
1716
2785
|
*/
|
|
1717
|
-
this.
|
|
2786
|
+
this.HourlyRemainDuration = null;
|
|
2787
|
+
|
|
2788
|
+
/**
|
|
2789
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
2790
|
+
* @type {string || null}
|
|
2791
|
+
*/
|
|
2792
|
+
this.RequestId = null;
|
|
1718
2793
|
|
|
1719
2794
|
}
|
|
1720
2795
|
|
|
@@ -1725,7 +2800,9 @@ class StopPublishStreamRequest extends AbstractModel {
|
|
|
1725
2800
|
if (!params) {
|
|
1726
2801
|
return;
|
|
1727
2802
|
}
|
|
1728
|
-
this.
|
|
2803
|
+
this.PrepaidConcurrentTotal = 'PrepaidConcurrentTotal' in params ? params.PrepaidConcurrentTotal : null;
|
|
2804
|
+
this.HourlyRemainDuration = 'HourlyRemainDuration' in params ? params.HourlyRemainDuration : null;
|
|
2805
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1729
2806
|
|
|
1730
2807
|
}
|
|
1731
2808
|
}
|
|
@@ -1766,26 +2843,24 @@ class CreateApplicationResponse extends AbstractModel {
|
|
|
1766
2843
|
}
|
|
1767
2844
|
|
|
1768
2845
|
/**
|
|
1769
|
-
*
|
|
2846
|
+
* StartPublishStreamWithURL request structure.
|
|
1770
2847
|
* @class
|
|
1771
2848
|
*/
|
|
1772
|
-
class
|
|
2849
|
+
class StartPublishStreamWithURLRequest extends AbstractModel {
|
|
1773
2850
|
constructor(){
|
|
1774
2851
|
super();
|
|
1775
2852
|
|
|
1776
2853
|
/**
|
|
1777
|
-
*
|
|
1778
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2854
|
+
* Unique user ID, which is customized by you and is not parsed by CAR.
|
|
1779
2855
|
* @type {string || null}
|
|
1780
2856
|
*/
|
|
1781
|
-
this.
|
|
2857
|
+
this.UserId = null;
|
|
1782
2858
|
|
|
1783
2859
|
/**
|
|
1784
|
-
*
|
|
1785
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2860
|
+
* Streaming address. Only RTMP is supported for streaming currently.
|
|
1786
2861
|
* @type {string || null}
|
|
1787
2862
|
*/
|
|
1788
|
-
this.
|
|
2863
|
+
this.PublishStreamURL = null;
|
|
1789
2864
|
|
|
1790
2865
|
}
|
|
1791
2866
|
|
|
@@ -1796,8 +2871,36 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
1796
2871
|
if (!params) {
|
|
1797
2872
|
return;
|
|
1798
2873
|
}
|
|
1799
|
-
this.
|
|
1800
|
-
this.
|
|
2874
|
+
this.UserId = 'UserId' in params ? params.UserId : null;
|
|
2875
|
+
this.PublishStreamURL = 'PublishStreamURL' in params ? params.PublishStreamURL : null;
|
|
2876
|
+
|
|
2877
|
+
}
|
|
2878
|
+
}
|
|
2879
|
+
|
|
2880
|
+
/**
|
|
2881
|
+
* ResetConcurrentPackages response structure.
|
|
2882
|
+
* @class
|
|
2883
|
+
*/
|
|
2884
|
+
class ResetConcurrentPackagesResponse extends AbstractModel {
|
|
2885
|
+
constructor(){
|
|
2886
|
+
super();
|
|
2887
|
+
|
|
2888
|
+
/**
|
|
2889
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
2890
|
+
* @type {string || null}
|
|
2891
|
+
*/
|
|
2892
|
+
this.RequestId = null;
|
|
2893
|
+
|
|
2894
|
+
}
|
|
2895
|
+
|
|
2896
|
+
/**
|
|
2897
|
+
* @private
|
|
2898
|
+
*/
|
|
2899
|
+
deserialize(params) {
|
|
2900
|
+
if (!params) {
|
|
2901
|
+
return;
|
|
2902
|
+
}
|
|
2903
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1801
2904
|
|
|
1802
2905
|
}
|
|
1803
2906
|
}
|
|
@@ -1865,56 +2968,124 @@ ap-hongkong-fusion: Hong Kong (China)
|
|
|
1865
2968
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1866
2969
|
* @type {Array.<string> || null}
|
|
1867
2970
|
*/
|
|
1868
|
-
this.ApplicationVersionRegions = null;
|
|
2971
|
+
this.ApplicationVersionRegions = null;
|
|
2972
|
+
|
|
2973
|
+
/**
|
|
2974
|
+
* Application version update method.
|
|
2975
|
+
FULL: full update.
|
|
2976
|
+
INCREMENT: incremental update.
|
|
2977
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2978
|
+
* @type {string || null}
|
|
2979
|
+
*/
|
|
2980
|
+
this.ApplicationVersionUpdateMode = null;
|
|
2981
|
+
|
|
2982
|
+
}
|
|
2983
|
+
|
|
2984
|
+
/**
|
|
2985
|
+
* @private
|
|
2986
|
+
*/
|
|
2987
|
+
deserialize(params) {
|
|
2988
|
+
if (!params) {
|
|
2989
|
+
return;
|
|
2990
|
+
}
|
|
2991
|
+
this.ApplicationVersionId = 'ApplicationVersionId' in params ? params.ApplicationVersionId : null;
|
|
2992
|
+
this.ApplicationVersionSize = 'ApplicationVersionSize' in params ? params.ApplicationVersionSize : null;
|
|
2993
|
+
this.ApplicationVersionStatus = 'ApplicationVersionStatus' in params ? params.ApplicationVersionStatus : null;
|
|
2994
|
+
this.ApplicationVersionName = 'ApplicationVersionName' in params ? params.ApplicationVersionName : null;
|
|
2995
|
+
this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
|
|
2996
|
+
this.ApplicationVersionRegions = 'ApplicationVersionRegions' in params ? params.ApplicationVersionRegions : null;
|
|
2997
|
+
this.ApplicationVersionUpdateMode = 'ApplicationVersionUpdateMode' in params ? params.ApplicationVersionUpdateMode : null;
|
|
2998
|
+
|
|
2999
|
+
}
|
|
3000
|
+
}
|
|
3001
|
+
|
|
3002
|
+
/**
|
|
3003
|
+
* DescribeApplicationProjectAdvancedConfig response structure.
|
|
3004
|
+
* @class
|
|
3005
|
+
*/
|
|
3006
|
+
class DescribeApplicationProjectAdvancedConfigResponse extends AbstractModel {
|
|
3007
|
+
constructor(){
|
|
3008
|
+
super();
|
|
3009
|
+
|
|
3010
|
+
/**
|
|
3011
|
+
* Application startup parameters.
|
|
3012
|
+
|
|
3013
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3014
|
+
* @type {string || null}
|
|
3015
|
+
*/
|
|
3016
|
+
this.ApplicationParams = null;
|
|
3017
|
+
|
|
3018
|
+
/**
|
|
3019
|
+
* Resolution, in the format of widthxheight, such as 1920x1080.Note: This field may return null, indicating that no valid values can be obtained.
|
|
3020
|
+
* @type {string || null}
|
|
3021
|
+
*/
|
|
3022
|
+
this.Resolution = null;
|
|
3023
|
+
|
|
3024
|
+
/**
|
|
3025
|
+
* Frame rate. Valid values: 0, 30, 60.Note: This field may return null, indicating that no valid values can be obtained.
|
|
3026
|
+
* @type {number || null}
|
|
3027
|
+
*/
|
|
3028
|
+
this.FPS = null;
|
|
3029
|
+
|
|
3030
|
+
/**
|
|
3031
|
+
* Minimum bitrate, in Mbps.Note: This field may return null, indicating that no valid values can be obtained.
|
|
3032
|
+
* @type {number || null}
|
|
3033
|
+
*/
|
|
3034
|
+
this.MinBitrate = null;
|
|
3035
|
+
|
|
3036
|
+
/**
|
|
3037
|
+
* Maximum bitrate, in Mbps.Note: This field may return null, indicating that no valid values can be obtained.
|
|
3038
|
+
* @type {number || null}
|
|
3039
|
+
*/
|
|
3040
|
+
this.MaxBitrate = null;
|
|
3041
|
+
|
|
3042
|
+
/**
|
|
3043
|
+
* Waiting time for application pre-launch.Note: This field may return null, indicating that no valid values can be obtained.
|
|
3044
|
+
* @type {string || null}
|
|
3045
|
+
*/
|
|
3046
|
+
this.PreloadDuration = null;
|
|
1869
3047
|
|
|
1870
3048
|
/**
|
|
1871
|
-
*
|
|
1872
|
-
FULL: full update.
|
|
1873
|
-
INCREMENT: incremental update.
|
|
1874
|
-
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3049
|
+
* Waiting time for reconnection.Note: This field may return null, indicating that no valid values can be obtained.
|
|
1875
3050
|
* @type {string || null}
|
|
1876
3051
|
*/
|
|
1877
|
-
this.
|
|
3052
|
+
this.ReconnectTimeout = null;
|
|
1878
3053
|
|
|
1879
|
-
|
|
3054
|
+
/**
|
|
3055
|
+
* Upstream audio options.DisableMixIntoStreamPush: not mixing upstream audio in streaming.Note: This field may return null, indicating that no valid values can be obtained.
|
|
3056
|
+
* @type {string || null}
|
|
3057
|
+
*/
|
|
3058
|
+
this.UpstreamAudioOption = null;
|
|
1880
3059
|
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
return;
|
|
1887
|
-
}
|
|
1888
|
-
this.ApplicationVersionId = 'ApplicationVersionId' in params ? params.ApplicationVersionId : null;
|
|
1889
|
-
this.ApplicationVersionSize = 'ApplicationVersionSize' in params ? params.ApplicationVersionSize : null;
|
|
1890
|
-
this.ApplicationVersionStatus = 'ApplicationVersionStatus' in params ? params.ApplicationVersionStatus : null;
|
|
1891
|
-
this.ApplicationVersionName = 'ApplicationVersionName' in params ? params.ApplicationVersionName : null;
|
|
1892
|
-
this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
|
|
1893
|
-
this.ApplicationVersionRegions = 'ApplicationVersionRegions' in params ? params.ApplicationVersionRegions : null;
|
|
1894
|
-
this.ApplicationVersionUpdateMode = 'ApplicationVersionUpdateMode' in params ? params.ApplicationVersionUpdateMode : null;
|
|
3060
|
+
/**
|
|
3061
|
+
* Video encoding configuration.Note: This field may return null, indicating that no valid values can be obtained.
|
|
3062
|
+
* @type {VideoEncodeConfig || null}
|
|
3063
|
+
*/
|
|
3064
|
+
this.VideoEncodeConfig = null;
|
|
1895
3065
|
|
|
1896
|
-
|
|
1897
|
-
|
|
3066
|
+
/**
|
|
3067
|
+
* Upper limit of the XR application resolution.If the project concurrency type is L or L2, the upper limit is 5000; if the project concurrency type is XL2, the upper limit is 6000.Note: This field may return null, indicating that no valid values can be obtained.
|
|
3068
|
+
* @type {number || null}
|
|
3069
|
+
*/
|
|
3070
|
+
this.XRMaxWidth = null;
|
|
1898
3071
|
|
|
1899
|
-
/**
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
constructor(){
|
|
1905
|
-
super();
|
|
3072
|
+
/**
|
|
3073
|
+
* Background image information.Note: This field may return null, indicating that no valid values can be obtained.
|
|
3074
|
+
* @type {BackgroundImage || null}
|
|
3075
|
+
*/
|
|
3076
|
+
this.BackgroundImage = null;
|
|
1906
3077
|
|
|
1907
3078
|
/**
|
|
1908
|
-
*
|
|
1909
|
-
* @type {string || null}
|
|
3079
|
+
* Disabled code list.Note: This field may return null, indicating that no valid values can be obtained.
|
|
3080
|
+
* @type {Array.<string> || null}
|
|
1910
3081
|
*/
|
|
1911
|
-
this.
|
|
3082
|
+
this.DisableVideoCodecs = null;
|
|
1912
3083
|
|
|
1913
3084
|
/**
|
|
1914
|
-
*
|
|
3085
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1915
3086
|
* @type {string || null}
|
|
1916
3087
|
*/
|
|
1917
|
-
this.
|
|
3088
|
+
this.RequestId = null;
|
|
1918
3089
|
|
|
1919
3090
|
}
|
|
1920
3091
|
|
|
@@ -1925,8 +3096,29 @@ class StartPublishStreamWithURLRequest extends AbstractModel {
|
|
|
1925
3096
|
if (!params) {
|
|
1926
3097
|
return;
|
|
1927
3098
|
}
|
|
1928
|
-
this.
|
|
1929
|
-
this.
|
|
3099
|
+
this.ApplicationParams = 'ApplicationParams' in params ? params.ApplicationParams : null;
|
|
3100
|
+
this.Resolution = 'Resolution' in params ? params.Resolution : null;
|
|
3101
|
+
this.FPS = 'FPS' in params ? params.FPS : null;
|
|
3102
|
+
this.MinBitrate = 'MinBitrate' in params ? params.MinBitrate : null;
|
|
3103
|
+
this.MaxBitrate = 'MaxBitrate' in params ? params.MaxBitrate : null;
|
|
3104
|
+
this.PreloadDuration = 'PreloadDuration' in params ? params.PreloadDuration : null;
|
|
3105
|
+
this.ReconnectTimeout = 'ReconnectTimeout' in params ? params.ReconnectTimeout : null;
|
|
3106
|
+
this.UpstreamAudioOption = 'UpstreamAudioOption' in params ? params.UpstreamAudioOption : null;
|
|
3107
|
+
|
|
3108
|
+
if (params.VideoEncodeConfig) {
|
|
3109
|
+
let obj = new VideoEncodeConfig();
|
|
3110
|
+
obj.deserialize(params.VideoEncodeConfig)
|
|
3111
|
+
this.VideoEncodeConfig = obj;
|
|
3112
|
+
}
|
|
3113
|
+
this.XRMaxWidth = 'XRMaxWidth' in params ? params.XRMaxWidth : null;
|
|
3114
|
+
|
|
3115
|
+
if (params.BackgroundImage) {
|
|
3116
|
+
let obj = new BackgroundImage();
|
|
3117
|
+
obj.deserialize(params.BackgroundImage)
|
|
3118
|
+
this.BackgroundImage = obj;
|
|
3119
|
+
}
|
|
3120
|
+
this.DisableVideoCodecs = 'DisableVideoCodecs' in params ? params.DisableVideoCodecs : null;
|
|
3121
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1930
3122
|
|
|
1931
3123
|
}
|
|
1932
3124
|
}
|
|
@@ -2058,6 +3250,78 @@ class ApplyConcurrentRequest extends AbstractModel {
|
|
|
2058
3250
|
}
|
|
2059
3251
|
}
|
|
2060
3252
|
|
|
3253
|
+
/**
|
|
3254
|
+
* Application file information.
|
|
3255
|
+
* @class
|
|
3256
|
+
*/
|
|
3257
|
+
class UserApplicationFileInfo extends AbstractModel {
|
|
3258
|
+
constructor(){
|
|
3259
|
+
super();
|
|
3260
|
+
|
|
3261
|
+
/**
|
|
3262
|
+
* Application file path.
|
|
3263
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3264
|
+
* @type {string || null}
|
|
3265
|
+
*/
|
|
3266
|
+
this.FilePath = null;
|
|
3267
|
+
|
|
3268
|
+
/**
|
|
3269
|
+
* File status. NO_EXIST: The file does not exist; EXIST: The file exists.
|
|
3270
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3271
|
+
* @type {string || null}
|
|
3272
|
+
*/
|
|
3273
|
+
this.FileState = null;
|
|
3274
|
+
|
|
3275
|
+
}
|
|
3276
|
+
|
|
3277
|
+
/**
|
|
3278
|
+
* @private
|
|
3279
|
+
*/
|
|
3280
|
+
deserialize(params) {
|
|
3281
|
+
if (!params) {
|
|
3282
|
+
return;
|
|
3283
|
+
}
|
|
3284
|
+
this.FilePath = 'FilePath' in params ? params.FilePath : null;
|
|
3285
|
+
this.FileState = 'FileState' in params ? params.FileState : null;
|
|
3286
|
+
|
|
3287
|
+
}
|
|
3288
|
+
}
|
|
3289
|
+
|
|
3290
|
+
/**
|
|
3291
|
+
* ModifyMobileApplicationInfo request structure.
|
|
3292
|
+
* @class
|
|
3293
|
+
*/
|
|
3294
|
+
class ModifyMobileApplicationInfoRequest extends AbstractModel {
|
|
3295
|
+
constructor(){
|
|
3296
|
+
super();
|
|
3297
|
+
|
|
3298
|
+
/**
|
|
3299
|
+
* Application ID.
|
|
3300
|
+
* @type {string || null}
|
|
3301
|
+
*/
|
|
3302
|
+
this.ApplicationId = null;
|
|
3303
|
+
|
|
3304
|
+
/**
|
|
3305
|
+
* Application name.
|
|
3306
|
+
* @type {string || null}
|
|
3307
|
+
*/
|
|
3308
|
+
this.ApplicationName = null;
|
|
3309
|
+
|
|
3310
|
+
}
|
|
3311
|
+
|
|
3312
|
+
/**
|
|
3313
|
+
* @private
|
|
3314
|
+
*/
|
|
3315
|
+
deserialize(params) {
|
|
3316
|
+
if (!params) {
|
|
3317
|
+
return;
|
|
3318
|
+
}
|
|
3319
|
+
this.ApplicationId = 'ApplicationId' in params ? params.ApplicationId : null;
|
|
3320
|
+
this.ApplicationName = 'ApplicationName' in params ? params.ApplicationName : null;
|
|
3321
|
+
|
|
3322
|
+
}
|
|
3323
|
+
}
|
|
3324
|
+
|
|
2061
3325
|
/**
|
|
2062
3326
|
* DescribeConcurrentCount response structure.
|
|
2063
3327
|
* @class
|
|
@@ -2164,31 +3428,13 @@ class DescribeApplicationFileInfoRequest extends AbstractModel {
|
|
|
2164
3428
|
}
|
|
2165
3429
|
|
|
2166
3430
|
/**
|
|
2167
|
-
*
|
|
3431
|
+
* Cloud application concurrency packs.
|
|
2168
3432
|
* @class
|
|
2169
3433
|
*/
|
|
2170
|
-
class
|
|
3434
|
+
class ApplicationConcurrentPackage extends AbstractModel {
|
|
2171
3435
|
constructor(){
|
|
2172
3436
|
super();
|
|
2173
3437
|
|
|
2174
|
-
/**
|
|
2175
|
-
* Application ID.
|
|
2176
|
-
* @type {string || null}
|
|
2177
|
-
*/
|
|
2178
|
-
this.ApplicationId = null;
|
|
2179
|
-
|
|
2180
|
-
/**
|
|
2181
|
-
* Application version ID.
|
|
2182
|
-
* @type {string || null}
|
|
2183
|
-
*/
|
|
2184
|
-
this.ApplicationVersionId = null;
|
|
2185
|
-
|
|
2186
|
-
/**
|
|
2187
|
-
* Application version name.
|
|
2188
|
-
* @type {string || null}
|
|
2189
|
-
*/
|
|
2190
|
-
this.ApplicationVersionName = null;
|
|
2191
|
-
|
|
2192
3438
|
}
|
|
2193
3439
|
|
|
2194
3440
|
/**
|
|
@@ -2198,9 +3444,6 @@ class ModifyApplicationVersionRequest extends AbstractModel {
|
|
|
2198
3444
|
if (!params) {
|
|
2199
3445
|
return;
|
|
2200
3446
|
}
|
|
2201
|
-
this.ApplicationId = 'ApplicationId' in params ? params.ApplicationId : null;
|
|
2202
|
-
this.ApplicationVersionId = 'ApplicationVersionId' in params ? params.ApplicationVersionId : null;
|
|
2203
|
-
this.ApplicationVersionName = 'ApplicationVersionName' in params ? params.ApplicationVersionName : null;
|
|
2204
3447
|
|
|
2205
3448
|
}
|
|
2206
3449
|
}
|
|
@@ -2266,58 +3509,183 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
2266
3509
|
}
|
|
2267
3510
|
}
|
|
2268
3511
|
|
|
3512
|
+
/**
|
|
3513
|
+
* ModifyApplicationVersion request structure.
|
|
3514
|
+
* @class
|
|
3515
|
+
*/
|
|
3516
|
+
class ModifyApplicationVersionRequest extends AbstractModel {
|
|
3517
|
+
constructor(){
|
|
3518
|
+
super();
|
|
3519
|
+
|
|
3520
|
+
/**
|
|
3521
|
+
* Application ID.
|
|
3522
|
+
* @type {string || null}
|
|
3523
|
+
*/
|
|
3524
|
+
this.ApplicationId = null;
|
|
3525
|
+
|
|
3526
|
+
/**
|
|
3527
|
+
* Application version ID.
|
|
3528
|
+
* @type {string || null}
|
|
3529
|
+
*/
|
|
3530
|
+
this.ApplicationVersionId = null;
|
|
3531
|
+
|
|
3532
|
+
/**
|
|
3533
|
+
* Application version name.
|
|
3534
|
+
* @type {string || null}
|
|
3535
|
+
*/
|
|
3536
|
+
this.ApplicationVersionName = null;
|
|
3537
|
+
|
|
3538
|
+
}
|
|
3539
|
+
|
|
3540
|
+
/**
|
|
3541
|
+
* @private
|
|
3542
|
+
*/
|
|
3543
|
+
deserialize(params) {
|
|
3544
|
+
if (!params) {
|
|
3545
|
+
return;
|
|
3546
|
+
}
|
|
3547
|
+
this.ApplicationId = 'ApplicationId' in params ? params.ApplicationId : null;
|
|
3548
|
+
this.ApplicationVersionId = 'ApplicationVersionId' in params ? params.ApplicationVersionId : null;
|
|
3549
|
+
this.ApplicationVersionName = 'ApplicationVersionName' in params ? params.ApplicationVersionName : null;
|
|
3550
|
+
|
|
3551
|
+
}
|
|
3552
|
+
}
|
|
3553
|
+
|
|
3554
|
+
/**
|
|
3555
|
+
* DescribeApplicationProjects request structure.
|
|
3556
|
+
* @class
|
|
3557
|
+
*/
|
|
3558
|
+
class DescribeApplicationProjectsRequest extends AbstractModel {
|
|
3559
|
+
constructor(){
|
|
3560
|
+
super();
|
|
3561
|
+
|
|
3562
|
+
/**
|
|
3563
|
+
* Subscript.
|
|
3564
|
+
* @type {number || null}
|
|
3565
|
+
*/
|
|
3566
|
+
this.Offset = null;
|
|
3567
|
+
|
|
3568
|
+
/**
|
|
3569
|
+
* Number of entries per page.
|
|
3570
|
+
* @type {number || null}
|
|
3571
|
+
*/
|
|
3572
|
+
this.Limit = null;
|
|
3573
|
+
|
|
3574
|
+
/**
|
|
3575
|
+
* Filter.
|
|
3576
|
+
* @type {Array.<Filter> || null}
|
|
3577
|
+
*/
|
|
3578
|
+
this.Filters = null;
|
|
3579
|
+
|
|
3580
|
+
/**
|
|
3581
|
+
* Project category.DESKTOP: desktop (default value).MOBILE: mobile.
|
|
3582
|
+
* @type {string || null}
|
|
3583
|
+
*/
|
|
3584
|
+
this.ProjectCategory = null;
|
|
3585
|
+
|
|
3586
|
+
}
|
|
3587
|
+
|
|
3588
|
+
/**
|
|
3589
|
+
* @private
|
|
3590
|
+
*/
|
|
3591
|
+
deserialize(params) {
|
|
3592
|
+
if (!params) {
|
|
3593
|
+
return;
|
|
3594
|
+
}
|
|
3595
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
3596
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
3597
|
+
|
|
3598
|
+
if (params.Filters) {
|
|
3599
|
+
this.Filters = new Array();
|
|
3600
|
+
for (let z in params.Filters) {
|
|
3601
|
+
let obj = new Filter();
|
|
3602
|
+
obj.deserialize(params.Filters[z]);
|
|
3603
|
+
this.Filters.push(obj);
|
|
3604
|
+
}
|
|
3605
|
+
}
|
|
3606
|
+
this.ProjectCategory = 'ProjectCategory' in params ? params.ProjectCategory : null;
|
|
3607
|
+
|
|
3608
|
+
}
|
|
3609
|
+
}
|
|
3610
|
+
|
|
2269
3611
|
module.exports = {
|
|
2270
3612
|
CreateApplicationVersionResponse: CreateApplicationVersionResponse,
|
|
2271
3613
|
DeleteApplicationRequest: DeleteApplicationRequest,
|
|
3614
|
+
ModifyApplicationProjectRequest: ModifyApplicationProjectRequest,
|
|
3615
|
+
BindConcurrentPackagesToProjectRequest: BindConcurrentPackagesToProjectRequest,
|
|
3616
|
+
DescribeApplicationListResponse: DescribeApplicationListResponse,
|
|
3617
|
+
ModifyConcurrentPackageRequest: ModifyConcurrentPackageRequest,
|
|
2272
3618
|
ApplicationBaseInfo: ApplicationBaseInfo,
|
|
2273
3619
|
CreateSessionRequest: CreateSessionRequest,
|
|
2274
3620
|
DescribeApplicationPathListResponse: DescribeApplicationPathListResponse,
|
|
2275
|
-
|
|
3621
|
+
BindConcurrentPackagesToProjectResponse: BindConcurrentPackagesToProjectResponse,
|
|
2276
3622
|
StartPublishStreamWithURLResponse: StartPublishStreamWithURLResponse,
|
|
2277
|
-
|
|
3623
|
+
UnbindConcurrentPackagesFromProjectResponse: UnbindConcurrentPackagesFromProjectResponse,
|
|
2278
3624
|
DeleteApplicationVersionRequest: DeleteApplicationVersionRequest,
|
|
3625
|
+
CreateApplicationProjectResponse: CreateApplicationProjectResponse,
|
|
3626
|
+
CreateApplicationSnapshotRequest: CreateApplicationSnapshotRequest,
|
|
3627
|
+
DescribeApplicationProjectsResponse: DescribeApplicationProjectsResponse,
|
|
2279
3628
|
UserMobileApplicationInfo: UserMobileApplicationInfo,
|
|
2280
3629
|
Filter: Filter,
|
|
2281
3630
|
SetApplicationVersionOnlineRequest: SetApplicationVersionOnlineRequest,
|
|
2282
3631
|
CreateApplicationSnapshotResponse: CreateApplicationSnapshotResponse,
|
|
2283
3632
|
DescribeApplicationFileInfoResponse: DescribeApplicationFileInfoResponse,
|
|
3633
|
+
VideoEncodeConfig: VideoEncodeConfig,
|
|
2284
3634
|
ModifyMobileApplicationInfoResponse: ModifyMobileApplicationInfoResponse,
|
|
2285
3635
|
ModifyApplicationBaseInfoRequest: ModifyApplicationBaseInfoRequest,
|
|
2286
3636
|
ModifyApplicationBaseInfoResponse: ModifyApplicationBaseInfoResponse,
|
|
3637
|
+
DescribeConcurrentPackagesResponse: DescribeConcurrentPackagesResponse,
|
|
2287
3638
|
DescribeApplicationVersionRequest: DescribeApplicationVersionRequest,
|
|
2288
|
-
|
|
3639
|
+
DescribeApplicationProjectAdvancedConfigRequest: DescribeApplicationProjectAdvancedConfigRequest,
|
|
3640
|
+
DeleteApplicationProjectsResponse: DeleteApplicationProjectsResponse,
|
|
2289
3641
|
DescribeCosCredentialResponse: DescribeCosCredentialResponse,
|
|
2290
3642
|
DescribeApplicationStatusRequest: DescribeApplicationStatusRequest,
|
|
2291
3643
|
CreateApplicationRequest: CreateApplicationRequest,
|
|
2292
3644
|
DescribeConcurrentCountRequest: DescribeConcurrentCountRequest,
|
|
3645
|
+
ApplicationProject: ApplicationProject,
|
|
2293
3646
|
DeleteApplicationVersionResponse: DeleteApplicationVersionResponse,
|
|
3647
|
+
DescribeConcurrentSummaryRequest: DescribeConcurrentSummaryRequest,
|
|
2294
3648
|
ModifyApplicationVersionResponse: ModifyApplicationVersionResponse,
|
|
2295
3649
|
DescribeCosCredentialRequest: DescribeCosCredentialRequest,
|
|
2296
3650
|
StopPublishStreamResponse: StopPublishStreamResponse,
|
|
3651
|
+
CreateApplicationProjectRequest: CreateApplicationProjectRequest,
|
|
3652
|
+
StopPublishStreamRequest: StopPublishStreamRequest,
|
|
2297
3653
|
CreateApplicationVersionRequest: CreateApplicationVersionRequest,
|
|
2298
3654
|
DescribeApplicationStatusResponse: DescribeApplicationStatusResponse,
|
|
2299
3655
|
DestroySessionResponse: DestroySessionResponse,
|
|
2300
3656
|
DescribeApplicationVersionResponse: DescribeApplicationVersionResponse,
|
|
2301
3657
|
DescribeApplicationPathListRequest: DescribeApplicationPathListRequest,
|
|
3658
|
+
ResetConcurrentPackagesRequest: ResetConcurrentPackagesRequest,
|
|
2302
3659
|
StartPublishStreamResponse: StartPublishStreamResponse,
|
|
2303
3660
|
CreateSessionResponse: CreateSessionResponse,
|
|
3661
|
+
BackgroundImage: BackgroundImage,
|
|
3662
|
+
ModifyApplicationProjectResponse: ModifyApplicationProjectResponse,
|
|
2304
3663
|
DescribeApplicationListRequest: DescribeApplicationListRequest,
|
|
2305
3664
|
StartPublishStreamRequest: StartPublishStreamRequest,
|
|
3665
|
+
ModifyConcurrentPackageResponse: ModifyConcurrentPackageResponse,
|
|
3666
|
+
UnbindConcurrentPackagesFromProjectRequest: UnbindConcurrentPackagesFromProjectRequest,
|
|
3667
|
+
UserApplicationStatus: UserApplicationStatus,
|
|
2306
3668
|
UserApplicationInfo: UserApplicationInfo,
|
|
2307
3669
|
DeleteApplicationResponse: DeleteApplicationResponse,
|
|
2308
|
-
|
|
2309
|
-
|
|
3670
|
+
DeleteApplicationProjectsRequest: DeleteApplicationProjectsRequest,
|
|
3671
|
+
DescribeConcurrentPackagesRequest: DescribeConcurrentPackagesRequest,
|
|
3672
|
+
DescribeConcurrentSummaryResponse: DescribeConcurrentSummaryResponse,
|
|
2310
3673
|
CreateApplicationResponse: CreateApplicationResponse,
|
|
2311
|
-
UserApplicationFileInfo: UserApplicationFileInfo,
|
|
2312
|
-
UserApplicationVersion: UserApplicationVersion,
|
|
2313
3674
|
StartPublishStreamWithURLRequest: StartPublishStreamWithURLRequest,
|
|
3675
|
+
ResetConcurrentPackagesResponse: ResetConcurrentPackagesResponse,
|
|
3676
|
+
UserApplicationVersion: UserApplicationVersion,
|
|
3677
|
+
DescribeApplicationProjectAdvancedConfigResponse: DescribeApplicationProjectAdvancedConfigResponse,
|
|
2314
3678
|
ApplyConcurrentResponse: ApplyConcurrentResponse,
|
|
2315
3679
|
SetApplicationVersionOnlineResponse: SetApplicationVersionOnlineResponse,
|
|
2316
3680
|
ApplyConcurrentRequest: ApplyConcurrentRequest,
|
|
3681
|
+
UserApplicationFileInfo: UserApplicationFileInfo,
|
|
3682
|
+
ModifyMobileApplicationInfoRequest: ModifyMobileApplicationInfoRequest,
|
|
2317
3683
|
DescribeConcurrentCountResponse: DescribeConcurrentCountResponse,
|
|
2318
3684
|
DestroySessionRequest: DestroySessionRequest,
|
|
2319
3685
|
DescribeApplicationFileInfoRequest: DescribeApplicationFileInfoRequest,
|
|
2320
|
-
|
|
3686
|
+
ApplicationConcurrentPackage: ApplicationConcurrentPackage,
|
|
2321
3687
|
UserApplicationStore: UserApplicationStore,
|
|
3688
|
+
ModifyApplicationVersionRequest: ModifyApplicationVersionRequest,
|
|
3689
|
+
DescribeApplicationProjectsRequest: DescribeApplicationProjectsRequest,
|
|
2322
3690
|
|
|
2323
3691
|
}
|