@alicloud/tdsr20200101 3.0.5 → 3.0.8
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/LICENSE +13 -0
- package/README.md +25 -0
- package/dist/client.d.ts +234 -299
- package/dist/client.js +433 -650
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +535 -792
package/dist/client.js
CHANGED
|
@@ -261,6 +261,7 @@ class AddSceneRequest extends $tea.Model {
|
|
|
261
261
|
}
|
|
262
262
|
static names() {
|
|
263
263
|
return {
|
|
264
|
+
customerUid: 'CustomerUid',
|
|
264
265
|
name: 'Name',
|
|
265
266
|
projectId: 'ProjectId',
|
|
266
267
|
type: 'Type',
|
|
@@ -268,6 +269,7 @@ class AddSceneRequest extends $tea.Model {
|
|
|
268
269
|
}
|
|
269
270
|
static types() {
|
|
270
271
|
return {
|
|
272
|
+
customerUid: 'string',
|
|
271
273
|
name: 'string',
|
|
272
274
|
projectId: 'string',
|
|
273
275
|
type: 'string',
|
|
@@ -379,219 +381,47 @@ class AddSubSceneResponse extends $tea.Model {
|
|
|
379
381
|
}
|
|
380
382
|
}
|
|
381
383
|
exports.AddSubSceneResponse = AddSubSceneResponse;
|
|
382
|
-
class
|
|
384
|
+
class CheckUserPropertyRequest extends $tea.Model {
|
|
383
385
|
constructor(map) {
|
|
384
386
|
super(map);
|
|
385
387
|
}
|
|
386
388
|
static names() {
|
|
387
389
|
return {
|
|
388
|
-
|
|
389
|
-
country: 'Country',
|
|
390
|
-
gmtWakeup: 'GmtWakeup',
|
|
391
|
-
hid: 'Hid',
|
|
392
|
-
interrupt: 'Interrupt',
|
|
393
|
-
invoker: 'Invoker',
|
|
394
|
-
level: 'Level',
|
|
395
|
-
message: 'Message',
|
|
396
|
-
pk: 'Pk',
|
|
397
|
-
prompt: 'Prompt',
|
|
398
|
-
success: 'Success',
|
|
399
|
-
taskExtraData: 'TaskExtraData',
|
|
400
|
-
taskIdentifier: 'TaskIdentifier',
|
|
401
|
-
url: 'Url',
|
|
390
|
+
uid: 'Uid',
|
|
402
391
|
};
|
|
403
392
|
}
|
|
404
393
|
static types() {
|
|
405
394
|
return {
|
|
406
|
-
|
|
407
|
-
country: 'string',
|
|
408
|
-
gmtWakeup: 'string',
|
|
409
|
-
hid: 'number',
|
|
410
|
-
interrupt: 'boolean',
|
|
411
|
-
invoker: 'string',
|
|
412
|
-
level: 'number',
|
|
413
|
-
message: 'string',
|
|
414
|
-
pk: 'string',
|
|
415
|
-
prompt: 'string',
|
|
416
|
-
success: 'boolean',
|
|
417
|
-
taskExtraData: 'string',
|
|
418
|
-
taskIdentifier: 'string',
|
|
419
|
-
url: 'string',
|
|
395
|
+
uid: 'string',
|
|
420
396
|
};
|
|
421
397
|
}
|
|
422
398
|
}
|
|
423
|
-
exports.
|
|
424
|
-
class
|
|
399
|
+
exports.CheckUserPropertyRequest = CheckUserPropertyRequest;
|
|
400
|
+
class CheckUserPropertyResponseBody extends $tea.Model {
|
|
425
401
|
constructor(map) {
|
|
426
402
|
super(map);
|
|
427
403
|
}
|
|
428
404
|
static names() {
|
|
429
405
|
return {
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
gmtWakeup: 'GmtWakeup',
|
|
433
|
-
hid: 'Hid',
|
|
434
|
-
interrupt: 'Interrupt',
|
|
435
|
-
invoker: 'Invoker',
|
|
436
|
-
level: 'Level',
|
|
406
|
+
code: 'Code',
|
|
407
|
+
match: 'Match',
|
|
437
408
|
message: 'Message',
|
|
438
|
-
pk: 'Pk',
|
|
439
|
-
prompt: 'Prompt',
|
|
440
409
|
requestId: 'RequestId',
|
|
441
410
|
success: 'Success',
|
|
442
|
-
taskExtraData: 'TaskExtraData',
|
|
443
|
-
taskIdentifier: 'TaskIdentifier',
|
|
444
|
-
url: 'Url',
|
|
445
411
|
};
|
|
446
412
|
}
|
|
447
413
|
static types() {
|
|
448
414
|
return {
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
gmtWakeup: 'string',
|
|
452
|
-
hid: 'number',
|
|
453
|
-
interrupt: 'boolean',
|
|
454
|
-
invoker: 'string',
|
|
455
|
-
level: 'number',
|
|
415
|
+
code: 'number',
|
|
416
|
+
match: 'boolean',
|
|
456
417
|
message: 'string',
|
|
457
|
-
pk: 'string',
|
|
458
|
-
prompt: 'string',
|
|
459
|
-
requestId: 'string',
|
|
460
|
-
success: 'boolean',
|
|
461
|
-
taskExtraData: 'string',
|
|
462
|
-
taskIdentifier: 'string',
|
|
463
|
-
url: 'string',
|
|
464
|
-
};
|
|
465
|
-
}
|
|
466
|
-
}
|
|
467
|
-
exports.CheckResourceResponseBody = CheckResourceResponseBody;
|
|
468
|
-
class CheckResourceResponse extends $tea.Model {
|
|
469
|
-
constructor(map) {
|
|
470
|
-
super(map);
|
|
471
|
-
}
|
|
472
|
-
static names() {
|
|
473
|
-
return {
|
|
474
|
-
headers: 'headers',
|
|
475
|
-
body: 'body',
|
|
476
|
-
};
|
|
477
|
-
}
|
|
478
|
-
static types() {
|
|
479
|
-
return {
|
|
480
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
481
|
-
body: CheckResourceResponseBody,
|
|
482
|
-
};
|
|
483
|
-
}
|
|
484
|
-
}
|
|
485
|
-
exports.CheckResourceResponse = CheckResourceResponse;
|
|
486
|
-
class CreateProjectRequest extends $tea.Model {
|
|
487
|
-
constructor(map) {
|
|
488
|
-
super(map);
|
|
489
|
-
}
|
|
490
|
-
static names() {
|
|
491
|
-
return {
|
|
492
|
-
builderUserIdList: 'BuilderUserIdList',
|
|
493
|
-
businessId: 'BusinessId',
|
|
494
|
-
businessUserIdList: 'BusinessUserIdList',
|
|
495
|
-
gatherUserIdList: 'GatherUserIdList',
|
|
496
|
-
name: 'Name',
|
|
497
|
-
};
|
|
498
|
-
}
|
|
499
|
-
static types() {
|
|
500
|
-
return {
|
|
501
|
-
builderUserIdList: 'string',
|
|
502
|
-
businessId: 'string',
|
|
503
|
-
businessUserIdList: 'string',
|
|
504
|
-
gatherUserIdList: 'string',
|
|
505
|
-
name: 'string',
|
|
506
|
-
};
|
|
507
|
-
}
|
|
508
|
-
}
|
|
509
|
-
exports.CreateProjectRequest = CreateProjectRequest;
|
|
510
|
-
class CreateProjectResponseBody extends $tea.Model {
|
|
511
|
-
constructor(map) {
|
|
512
|
-
super(map);
|
|
513
|
-
}
|
|
514
|
-
static names() {
|
|
515
|
-
return {
|
|
516
|
-
errMessage: 'ErrMessage',
|
|
517
|
-
id: 'Id',
|
|
518
|
-
name: 'Name',
|
|
519
|
-
requestId: 'RequestId',
|
|
520
|
-
success: 'Success',
|
|
521
|
-
};
|
|
522
|
-
}
|
|
523
|
-
static types() {
|
|
524
|
-
return {
|
|
525
|
-
errMessage: 'string',
|
|
526
|
-
id: 'number',
|
|
527
|
-
name: 'string',
|
|
528
|
-
requestId: 'string',
|
|
529
|
-
success: 'boolean',
|
|
530
|
-
};
|
|
531
|
-
}
|
|
532
|
-
}
|
|
533
|
-
exports.CreateProjectResponseBody = CreateProjectResponseBody;
|
|
534
|
-
class CreateProjectResponse extends $tea.Model {
|
|
535
|
-
constructor(map) {
|
|
536
|
-
super(map);
|
|
537
|
-
}
|
|
538
|
-
static names() {
|
|
539
|
-
return {
|
|
540
|
-
headers: 'headers',
|
|
541
|
-
body: 'body',
|
|
542
|
-
};
|
|
543
|
-
}
|
|
544
|
-
static types() {
|
|
545
|
-
return {
|
|
546
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
547
|
-
body: CreateProjectResponseBody,
|
|
548
|
-
};
|
|
549
|
-
}
|
|
550
|
-
}
|
|
551
|
-
exports.CreateProjectResponse = CreateProjectResponse;
|
|
552
|
-
class CreateSceneRequest extends $tea.Model {
|
|
553
|
-
constructor(map) {
|
|
554
|
-
super(map);
|
|
555
|
-
}
|
|
556
|
-
static names() {
|
|
557
|
-
return {
|
|
558
|
-
name: 'Name',
|
|
559
|
-
projectId: 'ProjectId',
|
|
560
|
-
};
|
|
561
|
-
}
|
|
562
|
-
static types() {
|
|
563
|
-
return {
|
|
564
|
-
name: 'string',
|
|
565
|
-
projectId: 'string',
|
|
566
|
-
};
|
|
567
|
-
}
|
|
568
|
-
}
|
|
569
|
-
exports.CreateSceneRequest = CreateSceneRequest;
|
|
570
|
-
class CreateSceneResponseBody extends $tea.Model {
|
|
571
|
-
constructor(map) {
|
|
572
|
-
super(map);
|
|
573
|
-
}
|
|
574
|
-
static names() {
|
|
575
|
-
return {
|
|
576
|
-
errMessage: 'ErrMessage',
|
|
577
|
-
previewToken: 'PreviewToken',
|
|
578
|
-
requestId: 'RequestId',
|
|
579
|
-
sceneId: 'SceneId',
|
|
580
|
-
success: 'Success',
|
|
581
|
-
};
|
|
582
|
-
}
|
|
583
|
-
static types() {
|
|
584
|
-
return {
|
|
585
|
-
errMessage: 'string',
|
|
586
|
-
previewToken: 'string',
|
|
587
418
|
requestId: 'string',
|
|
588
|
-
sceneId: 'number',
|
|
589
419
|
success: 'boolean',
|
|
590
420
|
};
|
|
591
421
|
}
|
|
592
422
|
}
|
|
593
|
-
exports.
|
|
594
|
-
class
|
|
423
|
+
exports.CheckUserPropertyResponseBody = CheckUserPropertyResponseBody;
|
|
424
|
+
class CheckUserPropertyResponse extends $tea.Model {
|
|
595
425
|
constructor(map) {
|
|
596
426
|
super(map);
|
|
597
427
|
}
|
|
@@ -604,121 +434,11 @@ class CreateSceneResponse extends $tea.Model {
|
|
|
604
434
|
static types() {
|
|
605
435
|
return {
|
|
606
436
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
607
|
-
body:
|
|
437
|
+
body: CheckUserPropertyResponseBody,
|
|
608
438
|
};
|
|
609
439
|
}
|
|
610
440
|
}
|
|
611
|
-
exports.
|
|
612
|
-
class DeleteFileRequest extends $tea.Model {
|
|
613
|
-
constructor(map) {
|
|
614
|
-
super(map);
|
|
615
|
-
}
|
|
616
|
-
static names() {
|
|
617
|
-
return {
|
|
618
|
-
paramFile: 'ParamFile',
|
|
619
|
-
subSceneUuid: 'SubSceneUuid',
|
|
620
|
-
};
|
|
621
|
-
}
|
|
622
|
-
static types() {
|
|
623
|
-
return {
|
|
624
|
-
paramFile: 'string',
|
|
625
|
-
subSceneUuid: 'string',
|
|
626
|
-
};
|
|
627
|
-
}
|
|
628
|
-
}
|
|
629
|
-
exports.DeleteFileRequest = DeleteFileRequest;
|
|
630
|
-
class DeleteFileResponseBody extends $tea.Model {
|
|
631
|
-
constructor(map) {
|
|
632
|
-
super(map);
|
|
633
|
-
}
|
|
634
|
-
static names() {
|
|
635
|
-
return {
|
|
636
|
-
errMessage: 'ErrMessage',
|
|
637
|
-
requestId: 'RequestId',
|
|
638
|
-
success: 'Success',
|
|
639
|
-
};
|
|
640
|
-
}
|
|
641
|
-
static types() {
|
|
642
|
-
return {
|
|
643
|
-
errMessage: 'string',
|
|
644
|
-
requestId: 'string',
|
|
645
|
-
success: 'boolean',
|
|
646
|
-
};
|
|
647
|
-
}
|
|
648
|
-
}
|
|
649
|
-
exports.DeleteFileResponseBody = DeleteFileResponseBody;
|
|
650
|
-
class DeleteFileResponse extends $tea.Model {
|
|
651
|
-
constructor(map) {
|
|
652
|
-
super(map);
|
|
653
|
-
}
|
|
654
|
-
static names() {
|
|
655
|
-
return {
|
|
656
|
-
headers: 'headers',
|
|
657
|
-
body: 'body',
|
|
658
|
-
};
|
|
659
|
-
}
|
|
660
|
-
static types() {
|
|
661
|
-
return {
|
|
662
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
663
|
-
body: DeleteFileResponseBody,
|
|
664
|
-
};
|
|
665
|
-
}
|
|
666
|
-
}
|
|
667
|
-
exports.DeleteFileResponse = DeleteFileResponse;
|
|
668
|
-
class DeleteProjectRequest extends $tea.Model {
|
|
669
|
-
constructor(map) {
|
|
670
|
-
super(map);
|
|
671
|
-
}
|
|
672
|
-
static names() {
|
|
673
|
-
return {
|
|
674
|
-
projectId: 'ProjectId',
|
|
675
|
-
};
|
|
676
|
-
}
|
|
677
|
-
static types() {
|
|
678
|
-
return {
|
|
679
|
-
projectId: 'string',
|
|
680
|
-
};
|
|
681
|
-
}
|
|
682
|
-
}
|
|
683
|
-
exports.DeleteProjectRequest = DeleteProjectRequest;
|
|
684
|
-
class DeleteProjectResponseBody extends $tea.Model {
|
|
685
|
-
constructor(map) {
|
|
686
|
-
super(map);
|
|
687
|
-
}
|
|
688
|
-
static names() {
|
|
689
|
-
return {
|
|
690
|
-
errMessage: 'ErrMessage',
|
|
691
|
-
requestId: 'RequestId',
|
|
692
|
-
success: 'Success',
|
|
693
|
-
};
|
|
694
|
-
}
|
|
695
|
-
static types() {
|
|
696
|
-
return {
|
|
697
|
-
errMessage: 'string',
|
|
698
|
-
requestId: 'string',
|
|
699
|
-
success: 'boolean',
|
|
700
|
-
};
|
|
701
|
-
}
|
|
702
|
-
}
|
|
703
|
-
exports.DeleteProjectResponseBody = DeleteProjectResponseBody;
|
|
704
|
-
class DeleteProjectResponse extends $tea.Model {
|
|
705
|
-
constructor(map) {
|
|
706
|
-
super(map);
|
|
707
|
-
}
|
|
708
|
-
static names() {
|
|
709
|
-
return {
|
|
710
|
-
headers: 'headers',
|
|
711
|
-
body: 'body',
|
|
712
|
-
};
|
|
713
|
-
}
|
|
714
|
-
static types() {
|
|
715
|
-
return {
|
|
716
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
717
|
-
body: DeleteProjectResponseBody,
|
|
718
|
-
};
|
|
719
|
-
}
|
|
720
|
-
}
|
|
721
|
-
exports.DeleteProjectResponse = DeleteProjectResponse;
|
|
441
|
+
exports.CheckUserPropertyResponse = CheckUserPropertyResponse;
|
|
722
442
|
class DetailProjectRequest extends $tea.Model {
|
|
723
443
|
constructor(map) {
|
|
724
444
|
super(map);
|
|
@@ -1555,49 +1275,47 @@ class GetOssPolicyResponse extends $tea.Model {
|
|
|
1555
1275
|
}
|
|
1556
1276
|
}
|
|
1557
1277
|
exports.GetOssPolicyResponse = GetOssPolicyResponse;
|
|
1558
|
-
class
|
|
1278
|
+
class GetRectifyImageRequest extends $tea.Model {
|
|
1559
1279
|
constructor(map) {
|
|
1560
1280
|
super(map);
|
|
1561
1281
|
}
|
|
1562
1282
|
static names() {
|
|
1563
1283
|
return {
|
|
1564
|
-
|
|
1565
|
-
type: 'Type',
|
|
1284
|
+
subSceneId: 'SubSceneId',
|
|
1566
1285
|
};
|
|
1567
1286
|
}
|
|
1568
1287
|
static types() {
|
|
1569
1288
|
return {
|
|
1570
|
-
|
|
1571
|
-
type: 'string',
|
|
1289
|
+
subSceneId: 'string',
|
|
1572
1290
|
};
|
|
1573
1291
|
}
|
|
1574
1292
|
}
|
|
1575
|
-
exports.
|
|
1576
|
-
class
|
|
1293
|
+
exports.GetRectifyImageRequest = GetRectifyImageRequest;
|
|
1294
|
+
class GetRectifyImageResponseBody extends $tea.Model {
|
|
1577
1295
|
constructor(map) {
|
|
1578
1296
|
super(map);
|
|
1579
1297
|
}
|
|
1580
1298
|
static names() {
|
|
1581
1299
|
return {
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
objectString: 'ObjectString',
|
|
1300
|
+
code: 'Code',
|
|
1301
|
+
message: 'Message',
|
|
1585
1302
|
requestId: 'RequestId',
|
|
1586
1303
|
success: 'Success',
|
|
1304
|
+
url: 'Url',
|
|
1587
1305
|
};
|
|
1588
1306
|
}
|
|
1589
1307
|
static types() {
|
|
1590
1308
|
return {
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
objectString: 'string',
|
|
1309
|
+
code: 'number',
|
|
1310
|
+
message: 'string',
|
|
1594
1311
|
requestId: 'string',
|
|
1595
1312
|
success: 'boolean',
|
|
1313
|
+
url: 'string',
|
|
1596
1314
|
};
|
|
1597
1315
|
}
|
|
1598
1316
|
}
|
|
1599
|
-
exports.
|
|
1600
|
-
class
|
|
1317
|
+
exports.GetRectifyImageResponseBody = GetRectifyImageResponseBody;
|
|
1318
|
+
class GetRectifyImageResponse extends $tea.Model {
|
|
1601
1319
|
constructor(map) {
|
|
1602
1320
|
super(map);
|
|
1603
1321
|
}
|
|
@@ -1610,52 +1328,58 @@ class GetPolicyResponse extends $tea.Model {
|
|
|
1610
1328
|
static types() {
|
|
1611
1329
|
return {
|
|
1612
1330
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1613
|
-
body:
|
|
1331
|
+
body: GetRectifyImageResponseBody,
|
|
1614
1332
|
};
|
|
1615
1333
|
}
|
|
1616
1334
|
}
|
|
1617
|
-
exports.
|
|
1618
|
-
class
|
|
1335
|
+
exports.GetRectifyImageResponse = GetRectifyImageResponse;
|
|
1336
|
+
class GetSceneBuildTaskStatusRequest extends $tea.Model {
|
|
1619
1337
|
constructor(map) {
|
|
1620
1338
|
super(map);
|
|
1621
1339
|
}
|
|
1622
1340
|
static names() {
|
|
1623
1341
|
return {
|
|
1624
|
-
|
|
1342
|
+
sceneId: 'SceneId',
|
|
1625
1343
|
};
|
|
1626
1344
|
}
|
|
1627
1345
|
static types() {
|
|
1628
1346
|
return {
|
|
1629
|
-
|
|
1347
|
+
sceneId: 'string',
|
|
1630
1348
|
};
|
|
1631
1349
|
}
|
|
1632
1350
|
}
|
|
1633
|
-
exports.
|
|
1634
|
-
class
|
|
1351
|
+
exports.GetSceneBuildTaskStatusRequest = GetSceneBuildTaskStatusRequest;
|
|
1352
|
+
class GetSceneBuildTaskStatusResponseBody extends $tea.Model {
|
|
1635
1353
|
constructor(map) {
|
|
1636
1354
|
super(map);
|
|
1637
1355
|
}
|
|
1638
1356
|
static names() {
|
|
1639
1357
|
return {
|
|
1640
1358
|
code: 'Code',
|
|
1359
|
+
errorCode: 'ErrorCode',
|
|
1360
|
+
errorMsg: 'ErrorMsg',
|
|
1641
1361
|
message: 'Message',
|
|
1642
1362
|
requestId: 'RequestId',
|
|
1363
|
+
sceneId: 'SceneId',
|
|
1364
|
+
status: 'Status',
|
|
1643
1365
|
success: 'Success',
|
|
1644
|
-
url: 'Url',
|
|
1645
1366
|
};
|
|
1646
1367
|
}
|
|
1647
1368
|
static types() {
|
|
1648
1369
|
return {
|
|
1649
1370
|
code: 'number',
|
|
1371
|
+
errorCode: 'string',
|
|
1372
|
+
errorMsg: 'string',
|
|
1650
1373
|
message: 'string',
|
|
1651
1374
|
requestId: 'string',
|
|
1375
|
+
sceneId: 'string',
|
|
1376
|
+
status: 'string',
|
|
1652
1377
|
success: 'boolean',
|
|
1653
|
-
url: 'string',
|
|
1654
1378
|
};
|
|
1655
1379
|
}
|
|
1656
1380
|
}
|
|
1657
|
-
exports.
|
|
1658
|
-
class
|
|
1381
|
+
exports.GetSceneBuildTaskStatusResponseBody = GetSceneBuildTaskStatusResponseBody;
|
|
1382
|
+
class GetSceneBuildTaskStatusResponse extends $tea.Model {
|
|
1659
1383
|
constructor(map) {
|
|
1660
1384
|
super(map);
|
|
1661
1385
|
}
|
|
@@ -1668,58 +1392,58 @@ class GetRectifyImageResponse extends $tea.Model {
|
|
|
1668
1392
|
static types() {
|
|
1669
1393
|
return {
|
|
1670
1394
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1671
|
-
body:
|
|
1395
|
+
body: GetSceneBuildTaskStatusResponseBody,
|
|
1672
1396
|
};
|
|
1673
1397
|
}
|
|
1674
1398
|
}
|
|
1675
|
-
exports.
|
|
1676
|
-
class
|
|
1399
|
+
exports.GetSceneBuildTaskStatusResponse = GetSceneBuildTaskStatusResponse;
|
|
1400
|
+
class GetScenePreviewDataRequest extends $tea.Model {
|
|
1677
1401
|
constructor(map) {
|
|
1678
1402
|
super(map);
|
|
1679
1403
|
}
|
|
1680
1404
|
static names() {
|
|
1681
1405
|
return {
|
|
1682
|
-
|
|
1406
|
+
domain: 'Domain',
|
|
1407
|
+
enabled: 'Enabled',
|
|
1408
|
+
previewToken: 'PreviewToken',
|
|
1409
|
+
showTag: 'ShowTag',
|
|
1683
1410
|
};
|
|
1684
1411
|
}
|
|
1685
1412
|
static types() {
|
|
1686
1413
|
return {
|
|
1687
|
-
|
|
1414
|
+
domain: 'string',
|
|
1415
|
+
enabled: 'boolean',
|
|
1416
|
+
previewToken: 'string',
|
|
1417
|
+
showTag: 'boolean',
|
|
1688
1418
|
};
|
|
1689
1419
|
}
|
|
1690
1420
|
}
|
|
1691
|
-
exports.
|
|
1692
|
-
class
|
|
1421
|
+
exports.GetScenePreviewDataRequest = GetScenePreviewDataRequest;
|
|
1422
|
+
class GetScenePreviewDataResponseBody extends $tea.Model {
|
|
1693
1423
|
constructor(map) {
|
|
1694
1424
|
super(map);
|
|
1695
1425
|
}
|
|
1696
1426
|
static names() {
|
|
1697
1427
|
return {
|
|
1698
1428
|
code: 'Code',
|
|
1699
|
-
|
|
1700
|
-
errorMsg: 'ErrorMsg',
|
|
1429
|
+
data: 'Data',
|
|
1701
1430
|
message: 'Message',
|
|
1702
1431
|
requestId: 'RequestId',
|
|
1703
|
-
sceneId: 'SceneId',
|
|
1704
|
-
status: 'Status',
|
|
1705
1432
|
success: 'Success',
|
|
1706
1433
|
};
|
|
1707
1434
|
}
|
|
1708
1435
|
static types() {
|
|
1709
1436
|
return {
|
|
1710
1437
|
code: 'number',
|
|
1711
|
-
|
|
1712
|
-
errorMsg: 'string',
|
|
1438
|
+
data: GetScenePreviewDataResponseBodyData,
|
|
1713
1439
|
message: 'string',
|
|
1714
1440
|
requestId: 'string',
|
|
1715
|
-
sceneId: 'string',
|
|
1716
|
-
status: 'string',
|
|
1717
1441
|
success: 'boolean',
|
|
1718
1442
|
};
|
|
1719
1443
|
}
|
|
1720
1444
|
}
|
|
1721
|
-
exports.
|
|
1722
|
-
class
|
|
1445
|
+
exports.GetScenePreviewDataResponseBody = GetScenePreviewDataResponseBody;
|
|
1446
|
+
class GetScenePreviewDataResponse extends $tea.Model {
|
|
1723
1447
|
constructor(map) {
|
|
1724
1448
|
super(map);
|
|
1725
1449
|
}
|
|
@@ -1732,11 +1456,11 @@ class GetSceneBuildTaskStatusResponse extends $tea.Model {
|
|
|
1732
1456
|
static types() {
|
|
1733
1457
|
return {
|
|
1734
1458
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1735
|
-
body:
|
|
1459
|
+
body: GetScenePreviewDataResponseBody,
|
|
1736
1460
|
};
|
|
1737
1461
|
}
|
|
1738
1462
|
}
|
|
1739
|
-
exports.
|
|
1463
|
+
exports.GetScenePreviewDataResponse = GetScenePreviewDataResponse;
|
|
1740
1464
|
class GetScenePreviewInfoRequest extends $tea.Model {
|
|
1741
1465
|
constructor(map) {
|
|
1742
1466
|
super(map);
|
|
@@ -1799,6 +1523,64 @@ class GetScenePreviewInfoResponse extends $tea.Model {
|
|
|
1799
1523
|
}
|
|
1800
1524
|
}
|
|
1801
1525
|
exports.GetScenePreviewInfoResponse = GetScenePreviewInfoResponse;
|
|
1526
|
+
class GetScenePreviewResourceRequest extends $tea.Model {
|
|
1527
|
+
constructor(map) {
|
|
1528
|
+
super(map);
|
|
1529
|
+
}
|
|
1530
|
+
static names() {
|
|
1531
|
+
return {
|
|
1532
|
+
previewToken: 'PreviewToken',
|
|
1533
|
+
};
|
|
1534
|
+
}
|
|
1535
|
+
static types() {
|
|
1536
|
+
return {
|
|
1537
|
+
previewToken: 'string',
|
|
1538
|
+
};
|
|
1539
|
+
}
|
|
1540
|
+
}
|
|
1541
|
+
exports.GetScenePreviewResourceRequest = GetScenePreviewResourceRequest;
|
|
1542
|
+
class GetScenePreviewResourceResponseBody extends $tea.Model {
|
|
1543
|
+
constructor(map) {
|
|
1544
|
+
super(map);
|
|
1545
|
+
}
|
|
1546
|
+
static names() {
|
|
1547
|
+
return {
|
|
1548
|
+
code: 'Code',
|
|
1549
|
+
data: 'Data',
|
|
1550
|
+
message: 'Message',
|
|
1551
|
+
requestId: 'RequestId',
|
|
1552
|
+
success: 'Success',
|
|
1553
|
+
};
|
|
1554
|
+
}
|
|
1555
|
+
static types() {
|
|
1556
|
+
return {
|
|
1557
|
+
code: 'number',
|
|
1558
|
+
data: GetScenePreviewResourceResponseBodyData,
|
|
1559
|
+
message: 'string',
|
|
1560
|
+
requestId: 'string',
|
|
1561
|
+
success: 'boolean',
|
|
1562
|
+
};
|
|
1563
|
+
}
|
|
1564
|
+
}
|
|
1565
|
+
exports.GetScenePreviewResourceResponseBody = GetScenePreviewResourceResponseBody;
|
|
1566
|
+
class GetScenePreviewResourceResponse extends $tea.Model {
|
|
1567
|
+
constructor(map) {
|
|
1568
|
+
super(map);
|
|
1569
|
+
}
|
|
1570
|
+
static names() {
|
|
1571
|
+
return {
|
|
1572
|
+
headers: 'headers',
|
|
1573
|
+
body: 'body',
|
|
1574
|
+
};
|
|
1575
|
+
}
|
|
1576
|
+
static types() {
|
|
1577
|
+
return {
|
|
1578
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1579
|
+
body: GetScenePreviewResourceResponseBody,
|
|
1580
|
+
};
|
|
1581
|
+
}
|
|
1582
|
+
}
|
|
1583
|
+
exports.GetScenePreviewResourceResponse = GetScenePreviewResourceResponse;
|
|
1802
1584
|
class GetSingleConnDataRequest extends $tea.Model {
|
|
1803
1585
|
constructor(map) {
|
|
1804
1586
|
super(map);
|
|
@@ -2305,64 +2087,6 @@ class ListSceneResponse extends $tea.Model {
|
|
|
2305
2087
|
}
|
|
2306
2088
|
}
|
|
2307
2089
|
exports.ListSceneResponse = ListSceneResponse;
|
|
2308
|
-
class ListScenesRequest extends $tea.Model {
|
|
2309
|
-
constructor(map) {
|
|
2310
|
-
super(map);
|
|
2311
|
-
}
|
|
2312
|
-
static names() {
|
|
2313
|
-
return {
|
|
2314
|
-
isPublishQuery: 'IsPublishQuery',
|
|
2315
|
-
projectId: 'ProjectId',
|
|
2316
|
-
};
|
|
2317
|
-
}
|
|
2318
|
-
static types() {
|
|
2319
|
-
return {
|
|
2320
|
-
isPublishQuery: 'boolean',
|
|
2321
|
-
projectId: 'string',
|
|
2322
|
-
};
|
|
2323
|
-
}
|
|
2324
|
-
}
|
|
2325
|
-
exports.ListScenesRequest = ListScenesRequest;
|
|
2326
|
-
class ListScenesResponseBody extends $tea.Model {
|
|
2327
|
-
constructor(map) {
|
|
2328
|
-
super(map);
|
|
2329
|
-
}
|
|
2330
|
-
static names() {
|
|
2331
|
-
return {
|
|
2332
|
-
data: 'Data',
|
|
2333
|
-
errMessage: 'ErrMessage',
|
|
2334
|
-
requestId: 'RequestId',
|
|
2335
|
-
success: 'Success',
|
|
2336
|
-
};
|
|
2337
|
-
}
|
|
2338
|
-
static types() {
|
|
2339
|
-
return {
|
|
2340
|
-
data: { 'type': 'array', 'itemType': ListScenesResponseBodyData },
|
|
2341
|
-
errMessage: 'string',
|
|
2342
|
-
requestId: 'string',
|
|
2343
|
-
success: 'boolean',
|
|
2344
|
-
};
|
|
2345
|
-
}
|
|
2346
|
-
}
|
|
2347
|
-
exports.ListScenesResponseBody = ListScenesResponseBody;
|
|
2348
|
-
class ListScenesResponse extends $tea.Model {
|
|
2349
|
-
constructor(map) {
|
|
2350
|
-
super(map);
|
|
2351
|
-
}
|
|
2352
|
-
static names() {
|
|
2353
|
-
return {
|
|
2354
|
-
headers: 'headers',
|
|
2355
|
-
body: 'body',
|
|
2356
|
-
};
|
|
2357
|
-
}
|
|
2358
|
-
static types() {
|
|
2359
|
-
return {
|
|
2360
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2361
|
-
body: ListScenesResponseBody,
|
|
2362
|
-
};
|
|
2363
|
-
}
|
|
2364
|
-
}
|
|
2365
|
-
exports.ListScenesResponse = ListScenesResponse;
|
|
2366
2090
|
class ListSubSceneRequest extends $tea.Model {
|
|
2367
2091
|
constructor(map) {
|
|
2368
2092
|
super(map);
|
|
@@ -3638,49 +3362,239 @@ class AddRoomPlanResponseBodyData extends $tea.Model {
|
|
|
3638
3362
|
};
|
|
3639
3363
|
}
|
|
3640
3364
|
}
|
|
3641
|
-
exports.AddRoomPlanResponseBodyData = AddRoomPlanResponseBodyData;
|
|
3642
|
-
class GetConnDataResponseBodyList extends $tea.Model {
|
|
3365
|
+
exports.AddRoomPlanResponseBodyData = AddRoomPlanResponseBodyData;
|
|
3366
|
+
class GetConnDataResponseBodyList extends $tea.Model {
|
|
3367
|
+
constructor(map) {
|
|
3368
|
+
super(map);
|
|
3369
|
+
}
|
|
3370
|
+
static names() {
|
|
3371
|
+
return {
|
|
3372
|
+
id: 'Id',
|
|
3373
|
+
mapId: 'MapId',
|
|
3374
|
+
type: 'Type',
|
|
3375
|
+
};
|
|
3376
|
+
}
|
|
3377
|
+
static types() {
|
|
3378
|
+
return {
|
|
3379
|
+
id: 'string',
|
|
3380
|
+
mapId: 'string',
|
|
3381
|
+
type: 'string',
|
|
3382
|
+
};
|
|
3383
|
+
}
|
|
3384
|
+
}
|
|
3385
|
+
exports.GetConnDataResponseBodyList = GetConnDataResponseBodyList;
|
|
3386
|
+
class GetHotspotSceneDataResponseBodyData extends $tea.Model {
|
|
3387
|
+
constructor(map) {
|
|
3388
|
+
super(map);
|
|
3389
|
+
}
|
|
3390
|
+
static names() {
|
|
3391
|
+
return {
|
|
3392
|
+
modelToken: 'ModelToken',
|
|
3393
|
+
previewData: 'PreviewData',
|
|
3394
|
+
previewToken: 'PreviewToken',
|
|
3395
|
+
sceneType: 'SceneType',
|
|
3396
|
+
};
|
|
3397
|
+
}
|
|
3398
|
+
static types() {
|
|
3399
|
+
return {
|
|
3400
|
+
modelToken: 'string',
|
|
3401
|
+
previewData: 'string',
|
|
3402
|
+
previewToken: 'string',
|
|
3403
|
+
sceneType: 'string',
|
|
3404
|
+
};
|
|
3405
|
+
}
|
|
3406
|
+
}
|
|
3407
|
+
exports.GetHotspotSceneDataResponseBodyData = GetHotspotSceneDataResponseBodyData;
|
|
3408
|
+
class GetScenePreviewDataResponseBodyDataModelPanoListPosition extends $tea.Model {
|
|
3409
|
+
constructor(map) {
|
|
3410
|
+
super(map);
|
|
3411
|
+
}
|
|
3412
|
+
static names() {
|
|
3413
|
+
return {
|
|
3414
|
+
rotation: 'Rotation',
|
|
3415
|
+
spot: 'Spot',
|
|
3416
|
+
viewpoint: 'Viewpoint',
|
|
3417
|
+
};
|
|
3418
|
+
}
|
|
3419
|
+
static types() {
|
|
3420
|
+
return {
|
|
3421
|
+
rotation: { 'type': 'array', 'itemType': 'number' },
|
|
3422
|
+
spot: { 'type': 'array', 'itemType': 'number' },
|
|
3423
|
+
viewpoint: { 'type': 'array', 'itemType': 'number' },
|
|
3424
|
+
};
|
|
3425
|
+
}
|
|
3426
|
+
}
|
|
3427
|
+
exports.GetScenePreviewDataResponseBodyDataModelPanoListPosition = GetScenePreviewDataResponseBodyDataModelPanoListPosition;
|
|
3428
|
+
class GetScenePreviewDataResponseBodyDataModelPanoList extends $tea.Model {
|
|
3429
|
+
constructor(map) {
|
|
3430
|
+
super(map);
|
|
3431
|
+
}
|
|
3432
|
+
static names() {
|
|
3433
|
+
return {
|
|
3434
|
+
curRoomPicList: 'CurRoomPicList',
|
|
3435
|
+
enabled: 'Enabled',
|
|
3436
|
+
floorIdx: 'FloorIdx',
|
|
3437
|
+
id: 'Id',
|
|
3438
|
+
mainImage: 'MainImage',
|
|
3439
|
+
neighbours: 'Neighbours',
|
|
3440
|
+
position: 'Position',
|
|
3441
|
+
rawName: 'RawName',
|
|
3442
|
+
resource: 'Resource',
|
|
3443
|
+
roomIdx: 'RoomIdx',
|
|
3444
|
+
subSceneId: 'SubSceneId',
|
|
3445
|
+
token: 'Token',
|
|
3446
|
+
virtualId: 'VirtualId',
|
|
3447
|
+
virtualName: 'VirtualName',
|
|
3448
|
+
};
|
|
3449
|
+
}
|
|
3450
|
+
static types() {
|
|
3451
|
+
return {
|
|
3452
|
+
curRoomPicList: { 'type': 'array', 'itemType': 'string' },
|
|
3453
|
+
enabled: 'boolean',
|
|
3454
|
+
floorIdx: 'string',
|
|
3455
|
+
id: 'string',
|
|
3456
|
+
mainImage: 'boolean',
|
|
3457
|
+
neighbours: { 'type': 'array', 'itemType': 'string' },
|
|
3458
|
+
position: GetScenePreviewDataResponseBodyDataModelPanoListPosition,
|
|
3459
|
+
rawName: 'string',
|
|
3460
|
+
resource: 'string',
|
|
3461
|
+
roomIdx: 'string',
|
|
3462
|
+
subSceneId: 'string',
|
|
3463
|
+
token: 'string',
|
|
3464
|
+
virtualId: 'string',
|
|
3465
|
+
virtualName: 'string',
|
|
3466
|
+
};
|
|
3467
|
+
}
|
|
3468
|
+
}
|
|
3469
|
+
exports.GetScenePreviewDataResponseBodyDataModelPanoList = GetScenePreviewDataResponseBodyDataModelPanoList;
|
|
3470
|
+
class GetScenePreviewDataResponseBodyDataModel extends $tea.Model {
|
|
3471
|
+
constructor(map) {
|
|
3472
|
+
super(map);
|
|
3473
|
+
}
|
|
3474
|
+
static names() {
|
|
3475
|
+
return {
|
|
3476
|
+
modelPath: 'ModelPath',
|
|
3477
|
+
panoList: 'PanoList',
|
|
3478
|
+
textureModelPath: 'TextureModelPath',
|
|
3479
|
+
texturePanoPath: 'TexturePanoPath',
|
|
3480
|
+
};
|
|
3481
|
+
}
|
|
3482
|
+
static types() {
|
|
3483
|
+
return {
|
|
3484
|
+
modelPath: 'string',
|
|
3485
|
+
panoList: { 'type': 'array', 'itemType': GetScenePreviewDataResponseBodyDataModelPanoList },
|
|
3486
|
+
textureModelPath: 'string',
|
|
3487
|
+
texturePanoPath: 'string',
|
|
3488
|
+
};
|
|
3489
|
+
}
|
|
3490
|
+
}
|
|
3491
|
+
exports.GetScenePreviewDataResponseBodyDataModel = GetScenePreviewDataResponseBodyDataModel;
|
|
3492
|
+
class GetScenePreviewDataResponseBodyDataTagsConfigButtonConfig extends $tea.Model {
|
|
3493
|
+
constructor(map) {
|
|
3494
|
+
super(map);
|
|
3495
|
+
}
|
|
3496
|
+
static names() {
|
|
3497
|
+
return {
|
|
3498
|
+
customText: 'CustomText',
|
|
3499
|
+
type: 'Type',
|
|
3500
|
+
};
|
|
3501
|
+
}
|
|
3502
|
+
static types() {
|
|
3503
|
+
return {
|
|
3504
|
+
customText: 'string',
|
|
3505
|
+
type: 'string',
|
|
3506
|
+
};
|
|
3507
|
+
}
|
|
3508
|
+
}
|
|
3509
|
+
exports.GetScenePreviewDataResponseBodyDataTagsConfigButtonConfig = GetScenePreviewDataResponseBodyDataTagsConfigButtonConfig;
|
|
3510
|
+
class GetScenePreviewDataResponseBodyDataTagsConfig extends $tea.Model {
|
|
3511
|
+
constructor(map) {
|
|
3512
|
+
super(map);
|
|
3513
|
+
}
|
|
3514
|
+
static names() {
|
|
3515
|
+
return {
|
|
3516
|
+
backgroundColor: 'BackgroundColor',
|
|
3517
|
+
buttonConfig: 'ButtonConfig',
|
|
3518
|
+
content: 'Content',
|
|
3519
|
+
formImgSize: 'FormImgSize',
|
|
3520
|
+
formJumpType: 'FormJumpType',
|
|
3521
|
+
formSelectImgType: 'FormSelectImgType',
|
|
3522
|
+
images: 'Images',
|
|
3523
|
+
isTagVisibleBy3d: 'IsTagVisibleBy3d',
|
|
3524
|
+
link: 'Link',
|
|
3525
|
+
panoId: 'PanoId',
|
|
3526
|
+
position: 'Position',
|
|
3527
|
+
positionPanoCube: 'PositionPanoCube',
|
|
3528
|
+
relatedPanoIds: 'RelatedPanoIds',
|
|
3529
|
+
sceneId: 'SceneId',
|
|
3530
|
+
title: 'Title',
|
|
3531
|
+
video: 'Video',
|
|
3532
|
+
};
|
|
3533
|
+
}
|
|
3534
|
+
static types() {
|
|
3535
|
+
return {
|
|
3536
|
+
backgroundColor: 'string',
|
|
3537
|
+
buttonConfig: GetScenePreviewDataResponseBodyDataTagsConfigButtonConfig,
|
|
3538
|
+
content: 'string',
|
|
3539
|
+
formImgSize: { 'type': 'array', 'itemType': 'number' },
|
|
3540
|
+
formJumpType: 'boolean',
|
|
3541
|
+
formSelectImgType: 'string',
|
|
3542
|
+
images: { 'type': 'array', 'itemType': 'string' },
|
|
3543
|
+
isTagVisibleBy3d: 'boolean',
|
|
3544
|
+
link: 'string',
|
|
3545
|
+
panoId: 'string',
|
|
3546
|
+
position: { 'type': 'array', 'itemType': 'number' },
|
|
3547
|
+
positionPanoCube: { 'type': 'array', 'itemType': 'number' },
|
|
3548
|
+
relatedPanoIds: { 'type': 'array', 'itemType': 'string' },
|
|
3549
|
+
sceneId: 'number',
|
|
3550
|
+
title: 'string',
|
|
3551
|
+
video: 'string',
|
|
3552
|
+
};
|
|
3553
|
+
}
|
|
3554
|
+
}
|
|
3555
|
+
exports.GetScenePreviewDataResponseBodyDataTagsConfig = GetScenePreviewDataResponseBodyDataTagsConfig;
|
|
3556
|
+
class GetScenePreviewDataResponseBodyDataTags extends $tea.Model {
|
|
3643
3557
|
constructor(map) {
|
|
3644
3558
|
super(map);
|
|
3645
3559
|
}
|
|
3646
3560
|
static names() {
|
|
3647
3561
|
return {
|
|
3562
|
+
config: 'Config',
|
|
3648
3563
|
id: 'Id',
|
|
3649
|
-
|
|
3564
|
+
position: 'Position',
|
|
3565
|
+
positionPanoCube: 'PositionPanoCube',
|
|
3650
3566
|
type: 'Type',
|
|
3651
3567
|
};
|
|
3652
3568
|
}
|
|
3653
3569
|
static types() {
|
|
3654
3570
|
return {
|
|
3571
|
+
config: GetScenePreviewDataResponseBodyDataTagsConfig,
|
|
3655
3572
|
id: 'string',
|
|
3656
|
-
|
|
3573
|
+
position: { 'type': 'array', 'itemType': 'number' },
|
|
3574
|
+
positionPanoCube: { 'type': 'array', 'itemType': 'number' },
|
|
3657
3575
|
type: 'string',
|
|
3658
3576
|
};
|
|
3659
3577
|
}
|
|
3660
3578
|
}
|
|
3661
|
-
exports.
|
|
3662
|
-
class
|
|
3579
|
+
exports.GetScenePreviewDataResponseBodyDataTags = GetScenePreviewDataResponseBodyDataTags;
|
|
3580
|
+
class GetScenePreviewDataResponseBodyData extends $tea.Model {
|
|
3663
3581
|
constructor(map) {
|
|
3664
3582
|
super(map);
|
|
3665
3583
|
}
|
|
3666
3584
|
static names() {
|
|
3667
3585
|
return {
|
|
3668
|
-
|
|
3669
|
-
|
|
3670
|
-
previewToken: 'PreviewToken',
|
|
3671
|
-
sceneType: 'SceneType',
|
|
3586
|
+
model: 'Model',
|
|
3587
|
+
tags: 'Tags',
|
|
3672
3588
|
};
|
|
3673
3589
|
}
|
|
3674
3590
|
static types() {
|
|
3675
3591
|
return {
|
|
3676
|
-
|
|
3677
|
-
|
|
3678
|
-
previewToken: 'string',
|
|
3679
|
-
sceneType: 'string',
|
|
3592
|
+
model: GetScenePreviewDataResponseBodyDataModel,
|
|
3593
|
+
tags: { 'type': 'array', 'itemType': GetScenePreviewDataResponseBodyDataTags },
|
|
3680
3594
|
};
|
|
3681
3595
|
}
|
|
3682
3596
|
}
|
|
3683
|
-
exports.
|
|
3597
|
+
exports.GetScenePreviewDataResponseBodyData = GetScenePreviewDataResponseBodyData;
|
|
3684
3598
|
class GetScenePreviewInfoResponseBodyData extends $tea.Model {
|
|
3685
3599
|
constructor(map) {
|
|
3686
3600
|
super(map);
|
|
@@ -3703,6 +3617,46 @@ class GetScenePreviewInfoResponseBodyData extends $tea.Model {
|
|
|
3703
3617
|
}
|
|
3704
3618
|
}
|
|
3705
3619
|
exports.GetScenePreviewInfoResponseBodyData = GetScenePreviewInfoResponseBodyData;
|
|
3620
|
+
class GetScenePreviewResourceResponseBodyDataResourceDirectory extends $tea.Model {
|
|
3621
|
+
constructor(map) {
|
|
3622
|
+
super(map);
|
|
3623
|
+
}
|
|
3624
|
+
static names() {
|
|
3625
|
+
return {
|
|
3626
|
+
modelConfig: 'ModelConfig',
|
|
3627
|
+
orthomapConfig: 'OrthomapConfig',
|
|
3628
|
+
rootPath: 'RootPath',
|
|
3629
|
+
};
|
|
3630
|
+
}
|
|
3631
|
+
static types() {
|
|
3632
|
+
return {
|
|
3633
|
+
modelConfig: 'string',
|
|
3634
|
+
orthomapConfig: 'string',
|
|
3635
|
+
rootPath: 'string',
|
|
3636
|
+
};
|
|
3637
|
+
}
|
|
3638
|
+
}
|
|
3639
|
+
exports.GetScenePreviewResourceResponseBodyDataResourceDirectory = GetScenePreviewResourceResponseBodyDataResourceDirectory;
|
|
3640
|
+
class GetScenePreviewResourceResponseBodyData extends $tea.Model {
|
|
3641
|
+
constructor(map) {
|
|
3642
|
+
super(map);
|
|
3643
|
+
}
|
|
3644
|
+
static names() {
|
|
3645
|
+
return {
|
|
3646
|
+
name: 'Name',
|
|
3647
|
+
resourceDirectory: 'ResourceDirectory',
|
|
3648
|
+
version: 'Version',
|
|
3649
|
+
};
|
|
3650
|
+
}
|
|
3651
|
+
static types() {
|
|
3652
|
+
return {
|
|
3653
|
+
name: 'string',
|
|
3654
|
+
resourceDirectory: GetScenePreviewResourceResponseBodyDataResourceDirectory,
|
|
3655
|
+
version: 'string',
|
|
3656
|
+
};
|
|
3657
|
+
}
|
|
3658
|
+
}
|
|
3659
|
+
exports.GetScenePreviewResourceResponseBodyData = GetScenePreviewResourceResponseBodyData;
|
|
3706
3660
|
class GetSingleConnDataResponseBodyList extends $tea.Model {
|
|
3707
3661
|
constructor(map) {
|
|
3708
3662
|
super(map);
|
|
@@ -3811,22 +3765,6 @@ class ListSceneResponseBodyList extends $tea.Model {
|
|
|
3811
3765
|
}
|
|
3812
3766
|
}
|
|
3813
3767
|
exports.ListSceneResponseBodyList = ListSceneResponseBodyList;
|
|
3814
|
-
class ListScenesResponseBodyData extends $tea.Model {
|
|
3815
|
-
constructor(map) {
|
|
3816
|
-
super(map);
|
|
3817
|
-
}
|
|
3818
|
-
static names() {
|
|
3819
|
-
return {
|
|
3820
|
-
sceneId: 'SceneId',
|
|
3821
|
-
};
|
|
3822
|
-
}
|
|
3823
|
-
static types() {
|
|
3824
|
-
return {
|
|
3825
|
-
sceneId: 'string',
|
|
3826
|
-
};
|
|
3827
|
-
}
|
|
3828
|
-
}
|
|
3829
|
-
exports.ListScenesResponseBodyData = ListScenesResponseBodyData;
|
|
3830
3768
|
class ListSubSceneResponseBodyList extends $tea.Model {
|
|
3831
3769
|
constructor(map) {
|
|
3832
3770
|
super(map);
|
|
@@ -4006,6 +3944,9 @@ class Client extends openapi_client_1.default {
|
|
|
4006
3944
|
async addSceneWithOptions(request, runtime) {
|
|
4007
3945
|
tea_util_1.default.validateModel(request);
|
|
4008
3946
|
let query = {};
|
|
3947
|
+
if (!tea_util_1.default.isUnset(request.customerUid)) {
|
|
3948
|
+
query["CustomerUid"] = request.customerUid;
|
|
3949
|
+
}
|
|
4009
3950
|
if (!tea_util_1.default.isUnset(request.name)) {
|
|
4010
3951
|
query["Name"] = request.name;
|
|
4011
3952
|
}
|
|
@@ -4067,178 +4008,17 @@ class Client extends openapi_client_1.default {
|
|
|
4067
4008
|
let runtime = new $Util.RuntimeOptions({});
|
|
4068
4009
|
return await this.addSubSceneWithOptions(request, runtime);
|
|
4069
4010
|
}
|
|
4070
|
-
async
|
|
4071
|
-
tea_util_1.default.validateModel(request);
|
|
4072
|
-
let query = {};
|
|
4073
|
-
if (!tea_util_1.default.isUnset(request.bid)) {
|
|
4074
|
-
query["Bid"] = request.bid;
|
|
4075
|
-
}
|
|
4076
|
-
if (!tea_util_1.default.isUnset(request.country)) {
|
|
4077
|
-
query["Country"] = request.country;
|
|
4078
|
-
}
|
|
4079
|
-
if (!tea_util_1.default.isUnset(request.gmtWakeup)) {
|
|
4080
|
-
query["GmtWakeup"] = request.gmtWakeup;
|
|
4081
|
-
}
|
|
4082
|
-
if (!tea_util_1.default.isUnset(request.hid)) {
|
|
4083
|
-
query["Hid"] = request.hid;
|
|
4084
|
-
}
|
|
4085
|
-
if (!tea_util_1.default.isUnset(request.interrupt)) {
|
|
4086
|
-
query["Interrupt"] = request.interrupt;
|
|
4087
|
-
}
|
|
4088
|
-
if (!tea_util_1.default.isUnset(request.invoker)) {
|
|
4089
|
-
query["Invoker"] = request.invoker;
|
|
4090
|
-
}
|
|
4091
|
-
if (!tea_util_1.default.isUnset(request.level)) {
|
|
4092
|
-
query["Level"] = request.level;
|
|
4093
|
-
}
|
|
4094
|
-
if (!tea_util_1.default.isUnset(request.message)) {
|
|
4095
|
-
query["Message"] = request.message;
|
|
4096
|
-
}
|
|
4097
|
-
if (!tea_util_1.default.isUnset(request.pk)) {
|
|
4098
|
-
query["Pk"] = request.pk;
|
|
4099
|
-
}
|
|
4100
|
-
if (!tea_util_1.default.isUnset(request.prompt)) {
|
|
4101
|
-
query["Prompt"] = request.prompt;
|
|
4102
|
-
}
|
|
4103
|
-
if (!tea_util_1.default.isUnset(request.success)) {
|
|
4104
|
-
query["Success"] = request.success;
|
|
4105
|
-
}
|
|
4106
|
-
if (!tea_util_1.default.isUnset(request.taskExtraData)) {
|
|
4107
|
-
query["TaskExtraData"] = request.taskExtraData;
|
|
4108
|
-
}
|
|
4109
|
-
if (!tea_util_1.default.isUnset(request.taskIdentifier)) {
|
|
4110
|
-
query["TaskIdentifier"] = request.taskIdentifier;
|
|
4111
|
-
}
|
|
4112
|
-
if (!tea_util_1.default.isUnset(request.url)) {
|
|
4113
|
-
query["Url"] = request.url;
|
|
4114
|
-
}
|
|
4115
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
4116
|
-
query: openapi_util_1.default.query(query),
|
|
4117
|
-
});
|
|
4118
|
-
let params = new $OpenApi.Params({
|
|
4119
|
-
action: "CheckResource",
|
|
4120
|
-
version: "2020-01-01",
|
|
4121
|
-
protocol: "HTTPS",
|
|
4122
|
-
pathname: "/",
|
|
4123
|
-
method: "POST",
|
|
4124
|
-
authType: "AK",
|
|
4125
|
-
style: "RPC",
|
|
4126
|
-
reqBodyType: "formData",
|
|
4127
|
-
bodyType: "json",
|
|
4128
|
-
});
|
|
4129
|
-
return $tea.cast(await this.callApi(params, req, runtime), new CheckResourceResponse({}));
|
|
4130
|
-
}
|
|
4131
|
-
async checkResource(request) {
|
|
4132
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
4133
|
-
return await this.checkResourceWithOptions(request, runtime);
|
|
4134
|
-
}
|
|
4135
|
-
async createProjectWithOptions(request, runtime) {
|
|
4136
|
-
tea_util_1.default.validateModel(request);
|
|
4137
|
-
let query = {};
|
|
4138
|
-
if (!tea_util_1.default.isUnset(request.builderUserIdList)) {
|
|
4139
|
-
query["BuilderUserIdList"] = request.builderUserIdList;
|
|
4140
|
-
}
|
|
4141
|
-
if (!tea_util_1.default.isUnset(request.businessId)) {
|
|
4142
|
-
query["BusinessId"] = request.businessId;
|
|
4143
|
-
}
|
|
4144
|
-
if (!tea_util_1.default.isUnset(request.businessUserIdList)) {
|
|
4145
|
-
query["BusinessUserIdList"] = request.businessUserIdList;
|
|
4146
|
-
}
|
|
4147
|
-
if (!tea_util_1.default.isUnset(request.gatherUserIdList)) {
|
|
4148
|
-
query["GatherUserIdList"] = request.gatherUserIdList;
|
|
4149
|
-
}
|
|
4150
|
-
if (!tea_util_1.default.isUnset(request.name)) {
|
|
4151
|
-
query["Name"] = request.name;
|
|
4152
|
-
}
|
|
4153
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
4154
|
-
query: openapi_util_1.default.query(query),
|
|
4155
|
-
});
|
|
4156
|
-
let params = new $OpenApi.Params({
|
|
4157
|
-
action: "CreateProject",
|
|
4158
|
-
version: "2020-01-01",
|
|
4159
|
-
protocol: "HTTPS",
|
|
4160
|
-
pathname: "/",
|
|
4161
|
-
method: "POST",
|
|
4162
|
-
authType: "AK",
|
|
4163
|
-
style: "RPC",
|
|
4164
|
-
reqBodyType: "formData",
|
|
4165
|
-
bodyType: "json",
|
|
4166
|
-
});
|
|
4167
|
-
return $tea.cast(await this.callApi(params, req, runtime), new CreateProjectResponse({}));
|
|
4168
|
-
}
|
|
4169
|
-
async createProject(request) {
|
|
4170
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
4171
|
-
return await this.createProjectWithOptions(request, runtime);
|
|
4172
|
-
}
|
|
4173
|
-
async createSceneWithOptions(request, runtime) {
|
|
4174
|
-
tea_util_1.default.validateModel(request);
|
|
4175
|
-
let query = {};
|
|
4176
|
-
if (!tea_util_1.default.isUnset(request.name)) {
|
|
4177
|
-
query["Name"] = request.name;
|
|
4178
|
-
}
|
|
4179
|
-
if (!tea_util_1.default.isUnset(request.projectId)) {
|
|
4180
|
-
query["ProjectId"] = request.projectId;
|
|
4181
|
-
}
|
|
4182
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
4183
|
-
query: openapi_util_1.default.query(query),
|
|
4184
|
-
});
|
|
4185
|
-
let params = new $OpenApi.Params({
|
|
4186
|
-
action: "CreateScene",
|
|
4187
|
-
version: "2020-01-01",
|
|
4188
|
-
protocol: "HTTPS",
|
|
4189
|
-
pathname: "/",
|
|
4190
|
-
method: "POST",
|
|
4191
|
-
authType: "AK",
|
|
4192
|
-
style: "RPC",
|
|
4193
|
-
reqBodyType: "formData",
|
|
4194
|
-
bodyType: "json",
|
|
4195
|
-
});
|
|
4196
|
-
return $tea.cast(await this.callApi(params, req, runtime), new CreateSceneResponse({}));
|
|
4197
|
-
}
|
|
4198
|
-
async createScene(request) {
|
|
4199
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
4200
|
-
return await this.createSceneWithOptions(request, runtime);
|
|
4201
|
-
}
|
|
4202
|
-
async deleteFileWithOptions(request, runtime) {
|
|
4203
|
-
tea_util_1.default.validateModel(request);
|
|
4204
|
-
let query = {};
|
|
4205
|
-
if (!tea_util_1.default.isUnset(request.paramFile)) {
|
|
4206
|
-
query["ParamFile"] = request.paramFile;
|
|
4207
|
-
}
|
|
4208
|
-
if (!tea_util_1.default.isUnset(request.subSceneUuid)) {
|
|
4209
|
-
query["SubSceneUuid"] = request.subSceneUuid;
|
|
4210
|
-
}
|
|
4211
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
4212
|
-
query: openapi_util_1.default.query(query),
|
|
4213
|
-
});
|
|
4214
|
-
let params = new $OpenApi.Params({
|
|
4215
|
-
action: "DeleteFile",
|
|
4216
|
-
version: "2020-01-01",
|
|
4217
|
-
protocol: "HTTPS",
|
|
4218
|
-
pathname: "/",
|
|
4219
|
-
method: "POST",
|
|
4220
|
-
authType: "AK",
|
|
4221
|
-
style: "RPC",
|
|
4222
|
-
reqBodyType: "formData",
|
|
4223
|
-
bodyType: "json",
|
|
4224
|
-
});
|
|
4225
|
-
return $tea.cast(await this.callApi(params, req, runtime), new DeleteFileResponse({}));
|
|
4226
|
-
}
|
|
4227
|
-
async deleteFile(request) {
|
|
4228
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
4229
|
-
return await this.deleteFileWithOptions(request, runtime);
|
|
4230
|
-
}
|
|
4231
|
-
async deleteProjectWithOptions(request, runtime) {
|
|
4011
|
+
async checkUserPropertyWithOptions(request, runtime) {
|
|
4232
4012
|
tea_util_1.default.validateModel(request);
|
|
4233
4013
|
let query = {};
|
|
4234
|
-
if (!tea_util_1.default.isUnset(request.
|
|
4235
|
-
query["
|
|
4014
|
+
if (!tea_util_1.default.isUnset(request.uid)) {
|
|
4015
|
+
query["Uid"] = request.uid;
|
|
4236
4016
|
}
|
|
4237
4017
|
let req = new $OpenApi.OpenApiRequest({
|
|
4238
4018
|
query: openapi_util_1.default.query(query),
|
|
4239
4019
|
});
|
|
4240
4020
|
let params = new $OpenApi.Params({
|
|
4241
|
-
action: "
|
|
4021
|
+
action: "CheckUserProperty",
|
|
4242
4022
|
version: "2020-01-01",
|
|
4243
4023
|
protocol: "HTTPS",
|
|
4244
4024
|
pathname: "/",
|
|
@@ -4248,11 +4028,11 @@ class Client extends openapi_client_1.default {
|
|
|
4248
4028
|
reqBodyType: "formData",
|
|
4249
4029
|
bodyType: "json",
|
|
4250
4030
|
});
|
|
4251
|
-
return $tea.cast(await this.callApi(params, req, runtime), new
|
|
4031
|
+
return $tea.cast(await this.callApi(params, req, runtime), new CheckUserPropertyResponse({}));
|
|
4252
4032
|
}
|
|
4253
|
-
async
|
|
4033
|
+
async checkUserProperty(request) {
|
|
4254
4034
|
let runtime = new $Util.RuntimeOptions({});
|
|
4255
|
-
return await this.
|
|
4035
|
+
return await this.checkUserPropertyWithOptions(request, runtime);
|
|
4256
4036
|
}
|
|
4257
4037
|
async detailProjectWithOptions(request, runtime) {
|
|
4258
4038
|
tea_util_1.default.validateModel(request);
|
|
@@ -4622,20 +4402,17 @@ class Client extends openapi_client_1.default {
|
|
|
4622
4402
|
let runtime = new $Util.RuntimeOptions({});
|
|
4623
4403
|
return await this.getOssPolicyWithOptions(request, runtime);
|
|
4624
4404
|
}
|
|
4625
|
-
async
|
|
4405
|
+
async getRectifyImageWithOptions(request, runtime) {
|
|
4626
4406
|
tea_util_1.default.validateModel(request);
|
|
4627
4407
|
let query = {};
|
|
4628
|
-
if (!tea_util_1.default.isUnset(request.
|
|
4629
|
-
query["
|
|
4630
|
-
}
|
|
4631
|
-
if (!tea_util_1.default.isUnset(request.type)) {
|
|
4632
|
-
query["Type"] = request.type;
|
|
4408
|
+
if (!tea_util_1.default.isUnset(request.subSceneId)) {
|
|
4409
|
+
query["SubSceneId"] = request.subSceneId;
|
|
4633
4410
|
}
|
|
4634
4411
|
let req = new $OpenApi.OpenApiRequest({
|
|
4635
4412
|
query: openapi_util_1.default.query(query),
|
|
4636
4413
|
});
|
|
4637
4414
|
let params = new $OpenApi.Params({
|
|
4638
|
-
action: "
|
|
4415
|
+
action: "GetRectifyImage",
|
|
4639
4416
|
version: "2020-01-01",
|
|
4640
4417
|
protocol: "HTTPS",
|
|
4641
4418
|
pathname: "/",
|
|
@@ -4645,23 +4422,23 @@ class Client extends openapi_client_1.default {
|
|
|
4645
4422
|
reqBodyType: "formData",
|
|
4646
4423
|
bodyType: "json",
|
|
4647
4424
|
});
|
|
4648
|
-
return $tea.cast(await this.callApi(params, req, runtime), new
|
|
4425
|
+
return $tea.cast(await this.callApi(params, req, runtime), new GetRectifyImageResponse({}));
|
|
4649
4426
|
}
|
|
4650
|
-
async
|
|
4427
|
+
async getRectifyImage(request) {
|
|
4651
4428
|
let runtime = new $Util.RuntimeOptions({});
|
|
4652
|
-
return await this.
|
|
4429
|
+
return await this.getRectifyImageWithOptions(request, runtime);
|
|
4653
4430
|
}
|
|
4654
|
-
async
|
|
4431
|
+
async getSceneBuildTaskStatusWithOptions(request, runtime) {
|
|
4655
4432
|
tea_util_1.default.validateModel(request);
|
|
4656
4433
|
let query = {};
|
|
4657
|
-
if (!tea_util_1.default.isUnset(request.
|
|
4658
|
-
query["
|
|
4434
|
+
if (!tea_util_1.default.isUnset(request.sceneId)) {
|
|
4435
|
+
query["SceneId"] = request.sceneId;
|
|
4659
4436
|
}
|
|
4660
4437
|
let req = new $OpenApi.OpenApiRequest({
|
|
4661
4438
|
query: openapi_util_1.default.query(query),
|
|
4662
4439
|
});
|
|
4663
4440
|
let params = new $OpenApi.Params({
|
|
4664
|
-
action: "
|
|
4441
|
+
action: "GetSceneBuildTaskStatus",
|
|
4665
4442
|
version: "2020-01-01",
|
|
4666
4443
|
protocol: "HTTPS",
|
|
4667
4444
|
pathname: "/",
|
|
@@ -4671,23 +4448,32 @@ class Client extends openapi_client_1.default {
|
|
|
4671
4448
|
reqBodyType: "formData",
|
|
4672
4449
|
bodyType: "json",
|
|
4673
4450
|
});
|
|
4674
|
-
return $tea.cast(await this.callApi(params, req, runtime), new
|
|
4451
|
+
return $tea.cast(await this.callApi(params, req, runtime), new GetSceneBuildTaskStatusResponse({}));
|
|
4675
4452
|
}
|
|
4676
|
-
async
|
|
4453
|
+
async getSceneBuildTaskStatus(request) {
|
|
4677
4454
|
let runtime = new $Util.RuntimeOptions({});
|
|
4678
|
-
return await this.
|
|
4455
|
+
return await this.getSceneBuildTaskStatusWithOptions(request, runtime);
|
|
4679
4456
|
}
|
|
4680
|
-
async
|
|
4457
|
+
async getScenePreviewDataWithOptions(request, runtime) {
|
|
4681
4458
|
tea_util_1.default.validateModel(request);
|
|
4682
4459
|
let query = {};
|
|
4683
|
-
if (!tea_util_1.default.isUnset(request.
|
|
4684
|
-
query["
|
|
4460
|
+
if (!tea_util_1.default.isUnset(request.domain)) {
|
|
4461
|
+
query["Domain"] = request.domain;
|
|
4462
|
+
}
|
|
4463
|
+
if (!tea_util_1.default.isUnset(request.enabled)) {
|
|
4464
|
+
query["Enabled"] = request.enabled;
|
|
4465
|
+
}
|
|
4466
|
+
if (!tea_util_1.default.isUnset(request.previewToken)) {
|
|
4467
|
+
query["PreviewToken"] = request.previewToken;
|
|
4468
|
+
}
|
|
4469
|
+
if (!tea_util_1.default.isUnset(request.showTag)) {
|
|
4470
|
+
query["ShowTag"] = request.showTag;
|
|
4685
4471
|
}
|
|
4686
4472
|
let req = new $OpenApi.OpenApiRequest({
|
|
4687
4473
|
query: openapi_util_1.default.query(query),
|
|
4688
4474
|
});
|
|
4689
4475
|
let params = new $OpenApi.Params({
|
|
4690
|
-
action: "
|
|
4476
|
+
action: "GetScenePreviewData",
|
|
4691
4477
|
version: "2020-01-01",
|
|
4692
4478
|
protocol: "HTTPS",
|
|
4693
4479
|
pathname: "/",
|
|
@@ -4697,11 +4483,11 @@ class Client extends openapi_client_1.default {
|
|
|
4697
4483
|
reqBodyType: "formData",
|
|
4698
4484
|
bodyType: "json",
|
|
4699
4485
|
});
|
|
4700
|
-
return $tea.cast(await this.callApi(params, req, runtime), new
|
|
4486
|
+
return $tea.cast(await this.callApi(params, req, runtime), new GetScenePreviewDataResponse({}));
|
|
4701
4487
|
}
|
|
4702
|
-
async
|
|
4488
|
+
async getScenePreviewData(request) {
|
|
4703
4489
|
let runtime = new $Util.RuntimeOptions({});
|
|
4704
|
-
return await this.
|
|
4490
|
+
return await this.getScenePreviewDataWithOptions(request, runtime);
|
|
4705
4491
|
}
|
|
4706
4492
|
async getScenePreviewInfoWithOptions(request, runtime) {
|
|
4707
4493
|
tea_util_1.default.validateModel(request);
|
|
@@ -4735,6 +4521,32 @@ class Client extends openapi_client_1.default {
|
|
|
4735
4521
|
let runtime = new $Util.RuntimeOptions({});
|
|
4736
4522
|
return await this.getScenePreviewInfoWithOptions(request, runtime);
|
|
4737
4523
|
}
|
|
4524
|
+
async getScenePreviewResourceWithOptions(request, runtime) {
|
|
4525
|
+
tea_util_1.default.validateModel(request);
|
|
4526
|
+
let query = {};
|
|
4527
|
+
if (!tea_util_1.default.isUnset(request.previewToken)) {
|
|
4528
|
+
query["PreviewToken"] = request.previewToken;
|
|
4529
|
+
}
|
|
4530
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
4531
|
+
query: openapi_util_1.default.query(query),
|
|
4532
|
+
});
|
|
4533
|
+
let params = new $OpenApi.Params({
|
|
4534
|
+
action: "GetScenePreviewResource",
|
|
4535
|
+
version: "2020-01-01",
|
|
4536
|
+
protocol: "HTTPS",
|
|
4537
|
+
pathname: "/",
|
|
4538
|
+
method: "POST",
|
|
4539
|
+
authType: "AK",
|
|
4540
|
+
style: "RPC",
|
|
4541
|
+
reqBodyType: "formData",
|
|
4542
|
+
bodyType: "json",
|
|
4543
|
+
});
|
|
4544
|
+
return $tea.cast(await this.callApi(params, req, runtime), new GetScenePreviewResourceResponse({}));
|
|
4545
|
+
}
|
|
4546
|
+
async getScenePreviewResource(request) {
|
|
4547
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
4548
|
+
return await this.getScenePreviewResourceWithOptions(request, runtime);
|
|
4549
|
+
}
|
|
4738
4550
|
async getSingleConnDataWithOptions(request, runtime) {
|
|
4739
4551
|
tea_util_1.default.validateModel(request);
|
|
4740
4552
|
let query = {};
|
|
@@ -4970,35 +4782,6 @@ class Client extends openapi_client_1.default {
|
|
|
4970
4782
|
let runtime = new $Util.RuntimeOptions({});
|
|
4971
4783
|
return await this.listSceneWithOptions(request, runtime);
|
|
4972
4784
|
}
|
|
4973
|
-
async listScenesWithOptions(request, runtime) {
|
|
4974
|
-
tea_util_1.default.validateModel(request);
|
|
4975
|
-
let query = {};
|
|
4976
|
-
if (!tea_util_1.default.isUnset(request.isPublishQuery)) {
|
|
4977
|
-
query["IsPublishQuery"] = request.isPublishQuery;
|
|
4978
|
-
}
|
|
4979
|
-
if (!tea_util_1.default.isUnset(request.projectId)) {
|
|
4980
|
-
query["ProjectId"] = request.projectId;
|
|
4981
|
-
}
|
|
4982
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
4983
|
-
query: openapi_util_1.default.query(query),
|
|
4984
|
-
});
|
|
4985
|
-
let params = new $OpenApi.Params({
|
|
4986
|
-
action: "ListScenes",
|
|
4987
|
-
version: "2020-01-01",
|
|
4988
|
-
protocol: "HTTPS",
|
|
4989
|
-
pathname: "/",
|
|
4990
|
-
method: "POST",
|
|
4991
|
-
authType: "AK",
|
|
4992
|
-
style: "RPC",
|
|
4993
|
-
reqBodyType: "formData",
|
|
4994
|
-
bodyType: "json",
|
|
4995
|
-
});
|
|
4996
|
-
return $tea.cast(await this.callApi(params, req, runtime), new ListScenesResponse({}));
|
|
4997
|
-
}
|
|
4998
|
-
async listScenes(request) {
|
|
4999
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
5000
|
-
return await this.listScenesWithOptions(request, runtime);
|
|
5001
|
-
}
|
|
5002
4785
|
async listSubSceneWithOptions(request, runtime) {
|
|
5003
4786
|
tea_util_1.default.validateModel(request);
|
|
5004
4787
|
let query = {};
|