@alicloud/tdsr20200101 3.0.6 → 3.0.9
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 +264 -267
- package/dist/client.js +521 -597
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +667 -742
package/src/client.ts
CHANGED
|
@@ -63,10 +63,12 @@ export class AddMosaicsResponseBody extends $tea.Model {
|
|
|
63
63
|
|
|
64
64
|
export class AddMosaicsResponse extends $tea.Model {
|
|
65
65
|
headers: { [key: string]: string };
|
|
66
|
+
statusCode: number;
|
|
66
67
|
body: AddMosaicsResponseBody;
|
|
67
68
|
static names(): { [key: string]: string } {
|
|
68
69
|
return {
|
|
69
70
|
headers: 'headers',
|
|
71
|
+
statusCode: 'statusCode',
|
|
70
72
|
body: 'body',
|
|
71
73
|
};
|
|
72
74
|
}
|
|
@@ -74,6 +76,7 @@ export class AddMosaicsResponse extends $tea.Model {
|
|
|
74
76
|
static types(): { [key: string]: any } {
|
|
75
77
|
return {
|
|
76
78
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
79
|
+
statusCode: 'number',
|
|
77
80
|
body: AddMosaicsResponseBody,
|
|
78
81
|
};
|
|
79
82
|
}
|
|
@@ -138,10 +141,12 @@ export class AddProjectResponseBody extends $tea.Model {
|
|
|
138
141
|
|
|
139
142
|
export class AddProjectResponse extends $tea.Model {
|
|
140
143
|
headers: { [key: string]: string };
|
|
144
|
+
statusCode: number;
|
|
141
145
|
body: AddProjectResponseBody;
|
|
142
146
|
static names(): { [key: string]: string } {
|
|
143
147
|
return {
|
|
144
148
|
headers: 'headers',
|
|
149
|
+
statusCode: 'statusCode',
|
|
145
150
|
body: 'body',
|
|
146
151
|
};
|
|
147
152
|
}
|
|
@@ -149,6 +154,7 @@ export class AddProjectResponse extends $tea.Model {
|
|
|
149
154
|
static types(): { [key: string]: any } {
|
|
150
155
|
return {
|
|
151
156
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
157
|
+
statusCode: 'number',
|
|
152
158
|
body: AddProjectResponseBody,
|
|
153
159
|
};
|
|
154
160
|
}
|
|
@@ -210,10 +216,12 @@ export class AddRelativePositionResponseBody extends $tea.Model {
|
|
|
210
216
|
|
|
211
217
|
export class AddRelativePositionResponse extends $tea.Model {
|
|
212
218
|
headers: { [key: string]: string };
|
|
219
|
+
statusCode: number;
|
|
213
220
|
body: AddRelativePositionResponseBody;
|
|
214
221
|
static names(): { [key: string]: string } {
|
|
215
222
|
return {
|
|
216
223
|
headers: 'headers',
|
|
224
|
+
statusCode: 'statusCode',
|
|
217
225
|
body: 'body',
|
|
218
226
|
};
|
|
219
227
|
}
|
|
@@ -221,6 +229,7 @@ export class AddRelativePositionResponse extends $tea.Model {
|
|
|
221
229
|
static types(): { [key: string]: any } {
|
|
222
230
|
return {
|
|
223
231
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
232
|
+
statusCode: 'number',
|
|
224
233
|
body: AddRelativePositionResponseBody,
|
|
225
234
|
};
|
|
226
235
|
}
|
|
@@ -282,10 +291,12 @@ export class AddRoomPlanResponseBody extends $tea.Model {
|
|
|
282
291
|
|
|
283
292
|
export class AddRoomPlanResponse extends $tea.Model {
|
|
284
293
|
headers: { [key: string]: string };
|
|
294
|
+
statusCode: number;
|
|
285
295
|
body: AddRoomPlanResponseBody;
|
|
286
296
|
static names(): { [key: string]: string } {
|
|
287
297
|
return {
|
|
288
298
|
headers: 'headers',
|
|
299
|
+
statusCode: 'statusCode',
|
|
289
300
|
body: 'body',
|
|
290
301
|
};
|
|
291
302
|
}
|
|
@@ -293,6 +304,7 @@ export class AddRoomPlanResponse extends $tea.Model {
|
|
|
293
304
|
static types(): { [key: string]: any } {
|
|
294
305
|
return {
|
|
295
306
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
307
|
+
statusCode: 'number',
|
|
296
308
|
body: AddRoomPlanResponseBody,
|
|
297
309
|
};
|
|
298
310
|
}
|
|
@@ -303,11 +315,13 @@ export class AddRoomPlanResponse extends $tea.Model {
|
|
|
303
315
|
}
|
|
304
316
|
|
|
305
317
|
export class AddSceneRequest extends $tea.Model {
|
|
318
|
+
customerUid?: string;
|
|
306
319
|
name?: string;
|
|
307
320
|
projectId?: string;
|
|
308
321
|
type?: string;
|
|
309
322
|
static names(): { [key: string]: string } {
|
|
310
323
|
return {
|
|
324
|
+
customerUid: 'CustomerUid',
|
|
311
325
|
name: 'Name',
|
|
312
326
|
projectId: 'ProjectId',
|
|
313
327
|
type: 'Type',
|
|
@@ -316,6 +330,7 @@ export class AddSceneRequest extends $tea.Model {
|
|
|
316
330
|
|
|
317
331
|
static types(): { [key: string]: any } {
|
|
318
332
|
return {
|
|
333
|
+
customerUid: 'string',
|
|
319
334
|
name: 'string',
|
|
320
335
|
projectId: 'string',
|
|
321
336
|
type: 'string',
|
|
@@ -360,10 +375,12 @@ export class AddSceneResponseBody extends $tea.Model {
|
|
|
360
375
|
|
|
361
376
|
export class AddSceneResponse extends $tea.Model {
|
|
362
377
|
headers: { [key: string]: string };
|
|
378
|
+
statusCode: number;
|
|
363
379
|
body: AddSceneResponseBody;
|
|
364
380
|
static names(): { [key: string]: string } {
|
|
365
381
|
return {
|
|
366
382
|
headers: 'headers',
|
|
383
|
+
statusCode: 'statusCode',
|
|
367
384
|
body: 'body',
|
|
368
385
|
};
|
|
369
386
|
}
|
|
@@ -371,6 +388,7 @@ export class AddSceneResponse extends $tea.Model {
|
|
|
371
388
|
static types(): { [key: string]: any } {
|
|
372
389
|
return {
|
|
373
390
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
391
|
+
statusCode: 'number',
|
|
374
392
|
body: AddSceneResponseBody,
|
|
375
393
|
};
|
|
376
394
|
}
|
|
@@ -438,10 +456,12 @@ export class AddSubSceneResponseBody extends $tea.Model {
|
|
|
438
456
|
|
|
439
457
|
export class AddSubSceneResponse extends $tea.Model {
|
|
440
458
|
headers: { [key: string]: string };
|
|
459
|
+
statusCode: number;
|
|
441
460
|
body: AddSubSceneResponseBody;
|
|
442
461
|
static names(): { [key: string]: string } {
|
|
443
462
|
return {
|
|
444
463
|
headers: 'headers',
|
|
464
|
+
statusCode: 'statusCode',
|
|
445
465
|
body: 'body',
|
|
446
466
|
};
|
|
447
467
|
}
|
|
@@ -449,6 +469,7 @@ export class AddSubSceneResponse extends $tea.Model {
|
|
|
449
469
|
static types(): { [key: string]: any } {
|
|
450
470
|
return {
|
|
451
471
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
472
|
+
statusCode: 'number',
|
|
452
473
|
body: AddSubSceneResponseBody,
|
|
453
474
|
};
|
|
454
475
|
}
|
|
@@ -458,56 +479,17 @@ export class AddSubSceneResponse extends $tea.Model {
|
|
|
458
479
|
}
|
|
459
480
|
}
|
|
460
481
|
|
|
461
|
-
export class
|
|
462
|
-
|
|
463
|
-
country?: string;
|
|
464
|
-
gmtWakeup?: string;
|
|
465
|
-
hid?: number;
|
|
466
|
-
interrupt?: boolean;
|
|
467
|
-
invoker?: string;
|
|
468
|
-
level?: number;
|
|
469
|
-
message?: string;
|
|
470
|
-
pk?: string;
|
|
471
|
-
prompt?: string;
|
|
472
|
-
success?: boolean;
|
|
473
|
-
taskExtraData?: string;
|
|
474
|
-
taskIdentifier?: string;
|
|
475
|
-
url?: string;
|
|
482
|
+
export class CheckUserPropertyRequest extends $tea.Model {
|
|
483
|
+
uid?: string;
|
|
476
484
|
static names(): { [key: string]: string } {
|
|
477
485
|
return {
|
|
478
|
-
|
|
479
|
-
country: 'Country',
|
|
480
|
-
gmtWakeup: 'GmtWakeup',
|
|
481
|
-
hid: 'Hid',
|
|
482
|
-
interrupt: 'Interrupt',
|
|
483
|
-
invoker: 'Invoker',
|
|
484
|
-
level: 'Level',
|
|
485
|
-
message: 'Message',
|
|
486
|
-
pk: 'Pk',
|
|
487
|
-
prompt: 'Prompt',
|
|
488
|
-
success: 'Success',
|
|
489
|
-
taskExtraData: 'TaskExtraData',
|
|
490
|
-
taskIdentifier: 'TaskIdentifier',
|
|
491
|
-
url: 'Url',
|
|
486
|
+
uid: 'Uid',
|
|
492
487
|
};
|
|
493
488
|
}
|
|
494
489
|
|
|
495
490
|
static types(): { [key: string]: any } {
|
|
496
491
|
return {
|
|
497
|
-
|
|
498
|
-
country: 'string',
|
|
499
|
-
gmtWakeup: 'string',
|
|
500
|
-
hid: 'number',
|
|
501
|
-
interrupt: 'boolean',
|
|
502
|
-
invoker: 'string',
|
|
503
|
-
level: 'number',
|
|
504
|
-
message: 'string',
|
|
505
|
-
pk: 'string',
|
|
506
|
-
prompt: 'string',
|
|
507
|
-
success: 'boolean',
|
|
508
|
-
taskExtraData: 'string',
|
|
509
|
-
taskIdentifier: 'string',
|
|
510
|
-
url: 'string',
|
|
492
|
+
uid: 'string',
|
|
511
493
|
};
|
|
512
494
|
}
|
|
513
495
|
|
|
@@ -516,351 +498,27 @@ export class CheckResourceRequest extends $tea.Model {
|
|
|
516
498
|
}
|
|
517
499
|
}
|
|
518
500
|
|
|
519
|
-
export class
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
gmtWakeup?: string;
|
|
523
|
-
hid?: number;
|
|
524
|
-
interrupt?: boolean;
|
|
525
|
-
invoker?: string;
|
|
526
|
-
level?: number;
|
|
501
|
+
export class CheckUserPropertyResponseBody extends $tea.Model {
|
|
502
|
+
code?: number;
|
|
503
|
+
match?: boolean;
|
|
527
504
|
message?: string;
|
|
528
|
-
pk?: string;
|
|
529
|
-
prompt?: string;
|
|
530
505
|
requestId?: string;
|
|
531
506
|
success?: boolean;
|
|
532
|
-
taskExtraData?: string;
|
|
533
|
-
taskIdentifier?: string;
|
|
534
|
-
url?: string;
|
|
535
507
|
static names(): { [key: string]: string } {
|
|
536
508
|
return {
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
gmtWakeup: 'GmtWakeup',
|
|
540
|
-
hid: 'Hid',
|
|
541
|
-
interrupt: 'Interrupt',
|
|
542
|
-
invoker: 'Invoker',
|
|
543
|
-
level: 'Level',
|
|
509
|
+
code: 'Code',
|
|
510
|
+
match: 'Match',
|
|
544
511
|
message: 'Message',
|
|
545
|
-
pk: 'Pk',
|
|
546
|
-
prompt: 'Prompt',
|
|
547
512
|
requestId: 'RequestId',
|
|
548
513
|
success: 'Success',
|
|
549
|
-
taskExtraData: 'TaskExtraData',
|
|
550
|
-
taskIdentifier: 'TaskIdentifier',
|
|
551
|
-
url: 'Url',
|
|
552
514
|
};
|
|
553
515
|
}
|
|
554
516
|
|
|
555
517
|
static types(): { [key: string]: any } {
|
|
556
518
|
return {
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
gmtWakeup: 'string',
|
|
560
|
-
hid: 'number',
|
|
561
|
-
interrupt: 'boolean',
|
|
562
|
-
invoker: 'string',
|
|
563
|
-
level: 'number',
|
|
519
|
+
code: 'number',
|
|
520
|
+
match: 'boolean',
|
|
564
521
|
message: 'string',
|
|
565
|
-
pk: 'string',
|
|
566
|
-
prompt: 'string',
|
|
567
|
-
requestId: 'string',
|
|
568
|
-
success: 'boolean',
|
|
569
|
-
taskExtraData: 'string',
|
|
570
|
-
taskIdentifier: 'string',
|
|
571
|
-
url: 'string',
|
|
572
|
-
};
|
|
573
|
-
}
|
|
574
|
-
|
|
575
|
-
constructor(map?: { [key: string]: any }) {
|
|
576
|
-
super(map);
|
|
577
|
-
}
|
|
578
|
-
}
|
|
579
|
-
|
|
580
|
-
export class CheckResourceResponse extends $tea.Model {
|
|
581
|
-
headers: { [key: string]: string };
|
|
582
|
-
body: CheckResourceResponseBody;
|
|
583
|
-
static names(): { [key: string]: string } {
|
|
584
|
-
return {
|
|
585
|
-
headers: 'headers',
|
|
586
|
-
body: 'body',
|
|
587
|
-
};
|
|
588
|
-
}
|
|
589
|
-
|
|
590
|
-
static types(): { [key: string]: any } {
|
|
591
|
-
return {
|
|
592
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
593
|
-
body: CheckResourceResponseBody,
|
|
594
|
-
};
|
|
595
|
-
}
|
|
596
|
-
|
|
597
|
-
constructor(map?: { [key: string]: any }) {
|
|
598
|
-
super(map);
|
|
599
|
-
}
|
|
600
|
-
}
|
|
601
|
-
|
|
602
|
-
export class CreateProjectRequest extends $tea.Model {
|
|
603
|
-
builderUserIdList?: string;
|
|
604
|
-
businessId?: string;
|
|
605
|
-
businessUserIdList?: string;
|
|
606
|
-
gatherUserIdList?: string;
|
|
607
|
-
name?: string;
|
|
608
|
-
static names(): { [key: string]: string } {
|
|
609
|
-
return {
|
|
610
|
-
builderUserIdList: 'BuilderUserIdList',
|
|
611
|
-
businessId: 'BusinessId',
|
|
612
|
-
businessUserIdList: 'BusinessUserIdList',
|
|
613
|
-
gatherUserIdList: 'GatherUserIdList',
|
|
614
|
-
name: 'Name',
|
|
615
|
-
};
|
|
616
|
-
}
|
|
617
|
-
|
|
618
|
-
static types(): { [key: string]: any } {
|
|
619
|
-
return {
|
|
620
|
-
builderUserIdList: 'string',
|
|
621
|
-
businessId: 'string',
|
|
622
|
-
businessUserIdList: 'string',
|
|
623
|
-
gatherUserIdList: 'string',
|
|
624
|
-
name: 'string',
|
|
625
|
-
};
|
|
626
|
-
}
|
|
627
|
-
|
|
628
|
-
constructor(map?: { [key: string]: any }) {
|
|
629
|
-
super(map);
|
|
630
|
-
}
|
|
631
|
-
}
|
|
632
|
-
|
|
633
|
-
export class CreateProjectResponseBody extends $tea.Model {
|
|
634
|
-
errMessage?: string;
|
|
635
|
-
id?: number;
|
|
636
|
-
name?: string;
|
|
637
|
-
requestId?: string;
|
|
638
|
-
success?: boolean;
|
|
639
|
-
static names(): { [key: string]: string } {
|
|
640
|
-
return {
|
|
641
|
-
errMessage: 'ErrMessage',
|
|
642
|
-
id: 'Id',
|
|
643
|
-
name: 'Name',
|
|
644
|
-
requestId: 'RequestId',
|
|
645
|
-
success: 'Success',
|
|
646
|
-
};
|
|
647
|
-
}
|
|
648
|
-
|
|
649
|
-
static types(): { [key: string]: any } {
|
|
650
|
-
return {
|
|
651
|
-
errMessage: 'string',
|
|
652
|
-
id: 'number',
|
|
653
|
-
name: 'string',
|
|
654
|
-
requestId: 'string',
|
|
655
|
-
success: 'boolean',
|
|
656
|
-
};
|
|
657
|
-
}
|
|
658
|
-
|
|
659
|
-
constructor(map?: { [key: string]: any }) {
|
|
660
|
-
super(map);
|
|
661
|
-
}
|
|
662
|
-
}
|
|
663
|
-
|
|
664
|
-
export class CreateProjectResponse extends $tea.Model {
|
|
665
|
-
headers: { [key: string]: string };
|
|
666
|
-
body: CreateProjectResponseBody;
|
|
667
|
-
static names(): { [key: string]: string } {
|
|
668
|
-
return {
|
|
669
|
-
headers: 'headers',
|
|
670
|
-
body: 'body',
|
|
671
|
-
};
|
|
672
|
-
}
|
|
673
|
-
|
|
674
|
-
static types(): { [key: string]: any } {
|
|
675
|
-
return {
|
|
676
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
677
|
-
body: CreateProjectResponseBody,
|
|
678
|
-
};
|
|
679
|
-
}
|
|
680
|
-
|
|
681
|
-
constructor(map?: { [key: string]: any }) {
|
|
682
|
-
super(map);
|
|
683
|
-
}
|
|
684
|
-
}
|
|
685
|
-
|
|
686
|
-
export class CreateSceneRequest extends $tea.Model {
|
|
687
|
-
name?: string;
|
|
688
|
-
projectId?: string;
|
|
689
|
-
static names(): { [key: string]: string } {
|
|
690
|
-
return {
|
|
691
|
-
name: 'Name',
|
|
692
|
-
projectId: 'ProjectId',
|
|
693
|
-
};
|
|
694
|
-
}
|
|
695
|
-
|
|
696
|
-
static types(): { [key: string]: any } {
|
|
697
|
-
return {
|
|
698
|
-
name: 'string',
|
|
699
|
-
projectId: 'string',
|
|
700
|
-
};
|
|
701
|
-
}
|
|
702
|
-
|
|
703
|
-
constructor(map?: { [key: string]: any }) {
|
|
704
|
-
super(map);
|
|
705
|
-
}
|
|
706
|
-
}
|
|
707
|
-
|
|
708
|
-
export class CreateSceneResponseBody extends $tea.Model {
|
|
709
|
-
errMessage?: string;
|
|
710
|
-
previewToken?: string;
|
|
711
|
-
requestId?: string;
|
|
712
|
-
sceneId?: number;
|
|
713
|
-
success?: boolean;
|
|
714
|
-
static names(): { [key: string]: string } {
|
|
715
|
-
return {
|
|
716
|
-
errMessage: 'ErrMessage',
|
|
717
|
-
previewToken: 'PreviewToken',
|
|
718
|
-
requestId: 'RequestId',
|
|
719
|
-
sceneId: 'SceneId',
|
|
720
|
-
success: 'Success',
|
|
721
|
-
};
|
|
722
|
-
}
|
|
723
|
-
|
|
724
|
-
static types(): { [key: string]: any } {
|
|
725
|
-
return {
|
|
726
|
-
errMessage: 'string',
|
|
727
|
-
previewToken: 'string',
|
|
728
|
-
requestId: 'string',
|
|
729
|
-
sceneId: 'number',
|
|
730
|
-
success: 'boolean',
|
|
731
|
-
};
|
|
732
|
-
}
|
|
733
|
-
|
|
734
|
-
constructor(map?: { [key: string]: any }) {
|
|
735
|
-
super(map);
|
|
736
|
-
}
|
|
737
|
-
}
|
|
738
|
-
|
|
739
|
-
export class CreateSceneResponse extends $tea.Model {
|
|
740
|
-
headers: { [key: string]: string };
|
|
741
|
-
body: CreateSceneResponseBody;
|
|
742
|
-
static names(): { [key: string]: string } {
|
|
743
|
-
return {
|
|
744
|
-
headers: 'headers',
|
|
745
|
-
body: 'body',
|
|
746
|
-
};
|
|
747
|
-
}
|
|
748
|
-
|
|
749
|
-
static types(): { [key: string]: any } {
|
|
750
|
-
return {
|
|
751
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
752
|
-
body: CreateSceneResponseBody,
|
|
753
|
-
};
|
|
754
|
-
}
|
|
755
|
-
|
|
756
|
-
constructor(map?: { [key: string]: any }) {
|
|
757
|
-
super(map);
|
|
758
|
-
}
|
|
759
|
-
}
|
|
760
|
-
|
|
761
|
-
export class DeleteFileRequest extends $tea.Model {
|
|
762
|
-
paramFile?: string;
|
|
763
|
-
subSceneUuid?: string;
|
|
764
|
-
static names(): { [key: string]: string } {
|
|
765
|
-
return {
|
|
766
|
-
paramFile: 'ParamFile',
|
|
767
|
-
subSceneUuid: 'SubSceneUuid',
|
|
768
|
-
};
|
|
769
|
-
}
|
|
770
|
-
|
|
771
|
-
static types(): { [key: string]: any } {
|
|
772
|
-
return {
|
|
773
|
-
paramFile: 'string',
|
|
774
|
-
subSceneUuid: 'string',
|
|
775
|
-
};
|
|
776
|
-
}
|
|
777
|
-
|
|
778
|
-
constructor(map?: { [key: string]: any }) {
|
|
779
|
-
super(map);
|
|
780
|
-
}
|
|
781
|
-
}
|
|
782
|
-
|
|
783
|
-
export class DeleteFileResponseBody extends $tea.Model {
|
|
784
|
-
errMessage?: string;
|
|
785
|
-
requestId?: string;
|
|
786
|
-
success?: boolean;
|
|
787
|
-
static names(): { [key: string]: string } {
|
|
788
|
-
return {
|
|
789
|
-
errMessage: 'ErrMessage',
|
|
790
|
-
requestId: 'RequestId',
|
|
791
|
-
success: 'Success',
|
|
792
|
-
};
|
|
793
|
-
}
|
|
794
|
-
|
|
795
|
-
static types(): { [key: string]: any } {
|
|
796
|
-
return {
|
|
797
|
-
errMessage: 'string',
|
|
798
|
-
requestId: 'string',
|
|
799
|
-
success: 'boolean',
|
|
800
|
-
};
|
|
801
|
-
}
|
|
802
|
-
|
|
803
|
-
constructor(map?: { [key: string]: any }) {
|
|
804
|
-
super(map);
|
|
805
|
-
}
|
|
806
|
-
}
|
|
807
|
-
|
|
808
|
-
export class DeleteFileResponse extends $tea.Model {
|
|
809
|
-
headers: { [key: string]: string };
|
|
810
|
-
body: DeleteFileResponseBody;
|
|
811
|
-
static names(): { [key: string]: string } {
|
|
812
|
-
return {
|
|
813
|
-
headers: 'headers',
|
|
814
|
-
body: 'body',
|
|
815
|
-
};
|
|
816
|
-
}
|
|
817
|
-
|
|
818
|
-
static types(): { [key: string]: any } {
|
|
819
|
-
return {
|
|
820
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
821
|
-
body: DeleteFileResponseBody,
|
|
822
|
-
};
|
|
823
|
-
}
|
|
824
|
-
|
|
825
|
-
constructor(map?: { [key: string]: any }) {
|
|
826
|
-
super(map);
|
|
827
|
-
}
|
|
828
|
-
}
|
|
829
|
-
|
|
830
|
-
export class DeleteProjectRequest extends $tea.Model {
|
|
831
|
-
projectId?: string;
|
|
832
|
-
static names(): { [key: string]: string } {
|
|
833
|
-
return {
|
|
834
|
-
projectId: 'ProjectId',
|
|
835
|
-
};
|
|
836
|
-
}
|
|
837
|
-
|
|
838
|
-
static types(): { [key: string]: any } {
|
|
839
|
-
return {
|
|
840
|
-
projectId: 'string',
|
|
841
|
-
};
|
|
842
|
-
}
|
|
843
|
-
|
|
844
|
-
constructor(map?: { [key: string]: any }) {
|
|
845
|
-
super(map);
|
|
846
|
-
}
|
|
847
|
-
}
|
|
848
|
-
|
|
849
|
-
export class DeleteProjectResponseBody extends $tea.Model {
|
|
850
|
-
errMessage?: string;
|
|
851
|
-
requestId?: string;
|
|
852
|
-
success?: boolean;
|
|
853
|
-
static names(): { [key: string]: string } {
|
|
854
|
-
return {
|
|
855
|
-
errMessage: 'ErrMessage',
|
|
856
|
-
requestId: 'RequestId',
|
|
857
|
-
success: 'Success',
|
|
858
|
-
};
|
|
859
|
-
}
|
|
860
|
-
|
|
861
|
-
static types(): { [key: string]: any } {
|
|
862
|
-
return {
|
|
863
|
-
errMessage: 'string',
|
|
864
522
|
requestId: 'string',
|
|
865
523
|
success: 'boolean',
|
|
866
524
|
};
|
|
@@ -871,12 +529,14 @@ export class DeleteProjectResponseBody extends $tea.Model {
|
|
|
871
529
|
}
|
|
872
530
|
}
|
|
873
531
|
|
|
874
|
-
export class
|
|
532
|
+
export class CheckUserPropertyResponse extends $tea.Model {
|
|
875
533
|
headers: { [key: string]: string };
|
|
876
|
-
|
|
534
|
+
statusCode: number;
|
|
535
|
+
body: CheckUserPropertyResponseBody;
|
|
877
536
|
static names(): { [key: string]: string } {
|
|
878
537
|
return {
|
|
879
538
|
headers: 'headers',
|
|
539
|
+
statusCode: 'statusCode',
|
|
880
540
|
body: 'body',
|
|
881
541
|
};
|
|
882
542
|
}
|
|
@@ -884,7 +544,8 @@ export class DeleteProjectResponse extends $tea.Model {
|
|
|
884
544
|
static types(): { [key: string]: any } {
|
|
885
545
|
return {
|
|
886
546
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
887
|
-
|
|
547
|
+
statusCode: 'number',
|
|
548
|
+
body: CheckUserPropertyResponseBody,
|
|
888
549
|
};
|
|
889
550
|
}
|
|
890
551
|
|
|
@@ -963,10 +624,12 @@ export class DetailProjectResponseBody extends $tea.Model {
|
|
|
963
624
|
|
|
964
625
|
export class DetailProjectResponse extends $tea.Model {
|
|
965
626
|
headers: { [key: string]: string };
|
|
627
|
+
statusCode: number;
|
|
966
628
|
body: DetailProjectResponseBody;
|
|
967
629
|
static names(): { [key: string]: string } {
|
|
968
630
|
return {
|
|
969
631
|
headers: 'headers',
|
|
632
|
+
statusCode: 'statusCode',
|
|
970
633
|
body: 'body',
|
|
971
634
|
};
|
|
972
635
|
}
|
|
@@ -974,6 +637,7 @@ export class DetailProjectResponse extends $tea.Model {
|
|
|
974
637
|
static types(): { [key: string]: any } {
|
|
975
638
|
return {
|
|
976
639
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
640
|
+
statusCode: 'number',
|
|
977
641
|
body: DetailProjectResponseBody,
|
|
978
642
|
};
|
|
979
643
|
}
|
|
@@ -1059,10 +723,12 @@ export class DetailSceneResponseBody extends $tea.Model {
|
|
|
1059
723
|
|
|
1060
724
|
export class DetailSceneResponse extends $tea.Model {
|
|
1061
725
|
headers: { [key: string]: string };
|
|
726
|
+
statusCode: number;
|
|
1062
727
|
body: DetailSceneResponseBody;
|
|
1063
728
|
static names(): { [key: string]: string } {
|
|
1064
729
|
return {
|
|
1065
730
|
headers: 'headers',
|
|
731
|
+
statusCode: 'statusCode',
|
|
1066
732
|
body: 'body',
|
|
1067
733
|
};
|
|
1068
734
|
}
|
|
@@ -1070,6 +736,7 @@ export class DetailSceneResponse extends $tea.Model {
|
|
|
1070
736
|
static types(): { [key: string]: any } {
|
|
1071
737
|
return {
|
|
1072
738
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
739
|
+
statusCode: 'number',
|
|
1073
740
|
body: DetailSceneResponseBody,
|
|
1074
741
|
};
|
|
1075
742
|
}
|
|
@@ -1167,10 +834,12 @@ export class DetailSubSceneResponseBody extends $tea.Model {
|
|
|
1167
834
|
|
|
1168
835
|
export class DetailSubSceneResponse extends $tea.Model {
|
|
1169
836
|
headers: { [key: string]: string };
|
|
837
|
+
statusCode: number;
|
|
1170
838
|
body: DetailSubSceneResponseBody;
|
|
1171
839
|
static names(): { [key: string]: string } {
|
|
1172
840
|
return {
|
|
1173
841
|
headers: 'headers',
|
|
842
|
+
statusCode: 'statusCode',
|
|
1174
843
|
body: 'body',
|
|
1175
844
|
};
|
|
1176
845
|
}
|
|
@@ -1178,6 +847,7 @@ export class DetailSubSceneResponse extends $tea.Model {
|
|
|
1178
847
|
static types(): { [key: string]: any } {
|
|
1179
848
|
return {
|
|
1180
849
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
850
|
+
statusCode: 'number',
|
|
1181
851
|
body: DetailSubSceneResponseBody,
|
|
1182
852
|
};
|
|
1183
853
|
}
|
|
@@ -1236,10 +906,12 @@ export class DropProjectResponseBody extends $tea.Model {
|
|
|
1236
906
|
|
|
1237
907
|
export class DropProjectResponse extends $tea.Model {
|
|
1238
908
|
headers: { [key: string]: string };
|
|
909
|
+
statusCode: number;
|
|
1239
910
|
body: DropProjectResponseBody;
|
|
1240
911
|
static names(): { [key: string]: string } {
|
|
1241
912
|
return {
|
|
1242
913
|
headers: 'headers',
|
|
914
|
+
statusCode: 'statusCode',
|
|
1243
915
|
body: 'body',
|
|
1244
916
|
};
|
|
1245
917
|
}
|
|
@@ -1247,6 +919,7 @@ export class DropProjectResponse extends $tea.Model {
|
|
|
1247
919
|
static types(): { [key: string]: any } {
|
|
1248
920
|
return {
|
|
1249
921
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
922
|
+
statusCode: 'number',
|
|
1250
923
|
body: DropProjectResponseBody,
|
|
1251
924
|
};
|
|
1252
925
|
}
|
|
@@ -1305,10 +978,12 @@ export class DropSceneResponseBody extends $tea.Model {
|
|
|
1305
978
|
|
|
1306
979
|
export class DropSceneResponse extends $tea.Model {
|
|
1307
980
|
headers: { [key: string]: string };
|
|
981
|
+
statusCode: number;
|
|
1308
982
|
body: DropSceneResponseBody;
|
|
1309
983
|
static names(): { [key: string]: string } {
|
|
1310
984
|
return {
|
|
1311
985
|
headers: 'headers',
|
|
986
|
+
statusCode: 'statusCode',
|
|
1312
987
|
body: 'body',
|
|
1313
988
|
};
|
|
1314
989
|
}
|
|
@@ -1316,6 +991,7 @@ export class DropSceneResponse extends $tea.Model {
|
|
|
1316
991
|
static types(): { [key: string]: any } {
|
|
1317
992
|
return {
|
|
1318
993
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
994
|
+
statusCode: 'number',
|
|
1319
995
|
body: DropSceneResponseBody,
|
|
1320
996
|
};
|
|
1321
997
|
}
|
|
@@ -1374,10 +1050,12 @@ export class DropSubSceneResponseBody extends $tea.Model {
|
|
|
1374
1050
|
|
|
1375
1051
|
export class DropSubSceneResponse extends $tea.Model {
|
|
1376
1052
|
headers: { [key: string]: string };
|
|
1053
|
+
statusCode: number;
|
|
1377
1054
|
body: DropSubSceneResponseBody;
|
|
1378
1055
|
static names(): { [key: string]: string } {
|
|
1379
1056
|
return {
|
|
1380
1057
|
headers: 'headers',
|
|
1058
|
+
statusCode: 'statusCode',
|
|
1381
1059
|
body: 'body',
|
|
1382
1060
|
};
|
|
1383
1061
|
}
|
|
@@ -1385,6 +1063,7 @@ export class DropSubSceneResponse extends $tea.Model {
|
|
|
1385
1063
|
static types(): { [key: string]: any } {
|
|
1386
1064
|
return {
|
|
1387
1065
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1066
|
+
statusCode: 'number',
|
|
1388
1067
|
body: DropSubSceneResponseBody,
|
|
1389
1068
|
};
|
|
1390
1069
|
}
|
|
@@ -1452,10 +1131,12 @@ export class GetConnDataResponseBody extends $tea.Model {
|
|
|
1452
1131
|
|
|
1453
1132
|
export class GetConnDataResponse extends $tea.Model {
|
|
1454
1133
|
headers: { [key: string]: string };
|
|
1134
|
+
statusCode: number;
|
|
1455
1135
|
body: GetConnDataResponseBody;
|
|
1456
1136
|
static names(): { [key: string]: string } {
|
|
1457
1137
|
return {
|
|
1458
1138
|
headers: 'headers',
|
|
1139
|
+
statusCode: 'statusCode',
|
|
1459
1140
|
body: 'body',
|
|
1460
1141
|
};
|
|
1461
1142
|
}
|
|
@@ -1463,6 +1144,7 @@ export class GetConnDataResponse extends $tea.Model {
|
|
|
1463
1144
|
static types(): { [key: string]: any } {
|
|
1464
1145
|
return {
|
|
1465
1146
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1147
|
+
statusCode: 'number',
|
|
1466
1148
|
body: GetConnDataResponseBody,
|
|
1467
1149
|
};
|
|
1468
1150
|
}
|
|
@@ -1533,10 +1215,12 @@ export class GetHotspotConfigResponseBody extends $tea.Model {
|
|
|
1533
1215
|
|
|
1534
1216
|
export class GetHotspotConfigResponse extends $tea.Model {
|
|
1535
1217
|
headers: { [key: string]: string };
|
|
1218
|
+
statusCode: number;
|
|
1536
1219
|
body: GetHotspotConfigResponseBody;
|
|
1537
1220
|
static names(): { [key: string]: string } {
|
|
1538
1221
|
return {
|
|
1539
1222
|
headers: 'headers',
|
|
1223
|
+
statusCode: 'statusCode',
|
|
1540
1224
|
body: 'body',
|
|
1541
1225
|
};
|
|
1542
1226
|
}
|
|
@@ -1544,6 +1228,7 @@ export class GetHotspotConfigResponse extends $tea.Model {
|
|
|
1544
1228
|
static types(): { [key: string]: any } {
|
|
1545
1229
|
return {
|
|
1546
1230
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1231
|
+
statusCode: 'number',
|
|
1547
1232
|
body: GetHotspotConfigResponseBody,
|
|
1548
1233
|
};
|
|
1549
1234
|
}
|
|
@@ -1614,10 +1299,12 @@ export class GetHotspotSceneDataResponseBody extends $tea.Model {
|
|
|
1614
1299
|
|
|
1615
1300
|
export class GetHotspotSceneDataResponse extends $tea.Model {
|
|
1616
1301
|
headers: { [key: string]: string };
|
|
1302
|
+
statusCode: number;
|
|
1617
1303
|
body: GetHotspotSceneDataResponseBody;
|
|
1618
1304
|
static names(): { [key: string]: string } {
|
|
1619
1305
|
return {
|
|
1620
1306
|
headers: 'headers',
|
|
1307
|
+
statusCode: 'statusCode',
|
|
1621
1308
|
body: 'body',
|
|
1622
1309
|
};
|
|
1623
1310
|
}
|
|
@@ -1625,6 +1312,7 @@ export class GetHotspotSceneDataResponse extends $tea.Model {
|
|
|
1625
1312
|
static types(): { [key: string]: any } {
|
|
1626
1313
|
return {
|
|
1627
1314
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1315
|
+
statusCode: 'number',
|
|
1628
1316
|
body: GetHotspotSceneDataResponseBody,
|
|
1629
1317
|
};
|
|
1630
1318
|
}
|
|
@@ -1698,10 +1386,12 @@ export class GetHotspotTagResponseBody extends $tea.Model {
|
|
|
1698
1386
|
|
|
1699
1387
|
export class GetHotspotTagResponse extends $tea.Model {
|
|
1700
1388
|
headers: { [key: string]: string };
|
|
1389
|
+
statusCode: number;
|
|
1701
1390
|
body: GetHotspotTagResponseBody;
|
|
1702
1391
|
static names(): { [key: string]: string } {
|
|
1703
1392
|
return {
|
|
1704
1393
|
headers: 'headers',
|
|
1394
|
+
statusCode: 'statusCode',
|
|
1705
1395
|
body: 'body',
|
|
1706
1396
|
};
|
|
1707
1397
|
}
|
|
@@ -1709,6 +1399,7 @@ export class GetHotspotTagResponse extends $tea.Model {
|
|
|
1709
1399
|
static types(): { [key: string]: any } {
|
|
1710
1400
|
return {
|
|
1711
1401
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1402
|
+
statusCode: 'number',
|
|
1712
1403
|
body: GetHotspotTagResponseBody,
|
|
1713
1404
|
};
|
|
1714
1405
|
}
|
|
@@ -1770,10 +1461,12 @@ export class GetLayoutDataResponseBody extends $tea.Model {
|
|
|
1770
1461
|
|
|
1771
1462
|
export class GetLayoutDataResponse extends $tea.Model {
|
|
1772
1463
|
headers: { [key: string]: string };
|
|
1464
|
+
statusCode: number;
|
|
1773
1465
|
body: GetLayoutDataResponseBody;
|
|
1774
1466
|
static names(): { [key: string]: string } {
|
|
1775
1467
|
return {
|
|
1776
1468
|
headers: 'headers',
|
|
1469
|
+
statusCode: 'statusCode',
|
|
1777
1470
|
body: 'body',
|
|
1778
1471
|
};
|
|
1779
1472
|
}
|
|
@@ -1781,6 +1474,7 @@ export class GetLayoutDataResponse extends $tea.Model {
|
|
|
1781
1474
|
static types(): { [key: string]: any } {
|
|
1782
1475
|
return {
|
|
1783
1476
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1477
|
+
statusCode: 'number',
|
|
1784
1478
|
body: GetLayoutDataResponseBody,
|
|
1785
1479
|
};
|
|
1786
1480
|
}
|
|
@@ -1842,10 +1536,12 @@ export class GetOriginLayoutDataResponseBody extends $tea.Model {
|
|
|
1842
1536
|
|
|
1843
1537
|
export class GetOriginLayoutDataResponse extends $tea.Model {
|
|
1844
1538
|
headers: { [key: string]: string };
|
|
1539
|
+
statusCode: number;
|
|
1845
1540
|
body: GetOriginLayoutDataResponseBody;
|
|
1846
1541
|
static names(): { [key: string]: string } {
|
|
1847
1542
|
return {
|
|
1848
1543
|
headers: 'headers',
|
|
1544
|
+
statusCode: 'statusCode',
|
|
1849
1545
|
body: 'body',
|
|
1850
1546
|
};
|
|
1851
1547
|
}
|
|
@@ -1853,6 +1549,7 @@ export class GetOriginLayoutDataResponse extends $tea.Model {
|
|
|
1853
1549
|
static types(): { [key: string]: any } {
|
|
1854
1550
|
return {
|
|
1855
1551
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1552
|
+
statusCode: 'number',
|
|
1856
1553
|
body: GetOriginLayoutDataResponseBody,
|
|
1857
1554
|
};
|
|
1858
1555
|
}
|
|
@@ -1932,10 +1629,12 @@ export class GetOssPolicyResponseBody extends $tea.Model {
|
|
|
1932
1629
|
|
|
1933
1630
|
export class GetOssPolicyResponse extends $tea.Model {
|
|
1934
1631
|
headers: { [key: string]: string };
|
|
1632
|
+
statusCode: number;
|
|
1935
1633
|
body: GetOssPolicyResponseBody;
|
|
1936
1634
|
static names(): { [key: string]: string } {
|
|
1937
1635
|
return {
|
|
1938
1636
|
headers: 'headers',
|
|
1637
|
+
statusCode: 'statusCode',
|
|
1939
1638
|
body: 'body',
|
|
1940
1639
|
};
|
|
1941
1640
|
}
|
|
@@ -1943,6 +1642,7 @@ export class GetOssPolicyResponse extends $tea.Model {
|
|
|
1943
1642
|
static types(): { [key: string]: any } {
|
|
1944
1643
|
return {
|
|
1945
1644
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1645
|
+
statusCode: 'number',
|
|
1946
1646
|
body: GetOssPolicyResponseBody,
|
|
1947
1647
|
};
|
|
1948
1648
|
}
|
|
@@ -1952,19 +1652,19 @@ export class GetOssPolicyResponse extends $tea.Model {
|
|
|
1952
1652
|
}
|
|
1953
1653
|
}
|
|
1954
1654
|
|
|
1955
|
-
export class
|
|
1956
|
-
|
|
1655
|
+
export class GetPackSceneTaskStatusRequest extends $tea.Model {
|
|
1656
|
+
taskId?: string;
|
|
1957
1657
|
type?: string;
|
|
1958
1658
|
static names(): { [key: string]: string } {
|
|
1959
1659
|
return {
|
|
1960
|
-
|
|
1660
|
+
taskId: 'TaskId',
|
|
1961
1661
|
type: 'Type',
|
|
1962
1662
|
};
|
|
1963
1663
|
}
|
|
1964
1664
|
|
|
1965
1665
|
static types(): { [key: string]: any } {
|
|
1966
1666
|
return {
|
|
1967
|
-
|
|
1667
|
+
taskId: 'string',
|
|
1968
1668
|
type: 'string',
|
|
1969
1669
|
};
|
|
1970
1670
|
}
|
|
@@ -1974,17 +1674,17 @@ export class GetPolicyRequest extends $tea.Model {
|
|
|
1974
1674
|
}
|
|
1975
1675
|
}
|
|
1976
1676
|
|
|
1977
|
-
export class
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1677
|
+
export class GetPackSceneTaskStatusResponseBody extends $tea.Model {
|
|
1678
|
+
code?: number;
|
|
1679
|
+
data?: GetPackSceneTaskStatusResponseBodyData;
|
|
1680
|
+
message?: string;
|
|
1981
1681
|
requestId?: string;
|
|
1982
1682
|
success?: boolean;
|
|
1983
1683
|
static names(): { [key: string]: string } {
|
|
1984
1684
|
return {
|
|
1685
|
+
code: 'Code',
|
|
1985
1686
|
data: 'Data',
|
|
1986
|
-
|
|
1987
|
-
objectString: 'ObjectString',
|
|
1687
|
+
message: 'Message',
|
|
1988
1688
|
requestId: 'RequestId',
|
|
1989
1689
|
success: 'Success',
|
|
1990
1690
|
};
|
|
@@ -1992,9 +1692,9 @@ export class GetPolicyResponseBody extends $tea.Model {
|
|
|
1992
1692
|
|
|
1993
1693
|
static types(): { [key: string]: any } {
|
|
1994
1694
|
return {
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1695
|
+
code: 'number',
|
|
1696
|
+
data: GetPackSceneTaskStatusResponseBodyData,
|
|
1697
|
+
message: 'string',
|
|
1998
1698
|
requestId: 'string',
|
|
1999
1699
|
success: 'boolean',
|
|
2000
1700
|
};
|
|
@@ -2005,12 +1705,14 @@ export class GetPolicyResponseBody extends $tea.Model {
|
|
|
2005
1705
|
}
|
|
2006
1706
|
}
|
|
2007
1707
|
|
|
2008
|
-
export class
|
|
1708
|
+
export class GetPackSceneTaskStatusResponse extends $tea.Model {
|
|
2009
1709
|
headers: { [key: string]: string };
|
|
2010
|
-
|
|
1710
|
+
statusCode: number;
|
|
1711
|
+
body: GetPackSceneTaskStatusResponseBody;
|
|
2011
1712
|
static names(): { [key: string]: string } {
|
|
2012
1713
|
return {
|
|
2013
1714
|
headers: 'headers',
|
|
1715
|
+
statusCode: 'statusCode',
|
|
2014
1716
|
body: 'body',
|
|
2015
1717
|
};
|
|
2016
1718
|
}
|
|
@@ -2018,7 +1720,8 @@ export class GetPolicyResponse extends $tea.Model {
|
|
|
2018
1720
|
static types(): { [key: string]: any } {
|
|
2019
1721
|
return {
|
|
2020
1722
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2021
|
-
|
|
1723
|
+
statusCode: 'number',
|
|
1724
|
+
body: GetPackSceneTaskStatusResponseBody,
|
|
2022
1725
|
};
|
|
2023
1726
|
}
|
|
2024
1727
|
|
|
@@ -2079,10 +1782,12 @@ export class GetRectifyImageResponseBody extends $tea.Model {
|
|
|
2079
1782
|
|
|
2080
1783
|
export class GetRectifyImageResponse extends $tea.Model {
|
|
2081
1784
|
headers: { [key: string]: string };
|
|
1785
|
+
statusCode: number;
|
|
2082
1786
|
body: GetRectifyImageResponseBody;
|
|
2083
1787
|
static names(): { [key: string]: string } {
|
|
2084
1788
|
return {
|
|
2085
1789
|
headers: 'headers',
|
|
1790
|
+
statusCode: 'statusCode',
|
|
2086
1791
|
body: 'body',
|
|
2087
1792
|
};
|
|
2088
1793
|
}
|
|
@@ -2090,6 +1795,7 @@ export class GetRectifyImageResponse extends $tea.Model {
|
|
|
2090
1795
|
static types(): { [key: string]: any } {
|
|
2091
1796
|
return {
|
|
2092
1797
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1798
|
+
statusCode: 'number',
|
|
2093
1799
|
body: GetRectifyImageResponseBody,
|
|
2094
1800
|
};
|
|
2095
1801
|
}
|
|
@@ -2160,10 +1866,171 @@ export class GetSceneBuildTaskStatusResponseBody extends $tea.Model {
|
|
|
2160
1866
|
|
|
2161
1867
|
export class GetSceneBuildTaskStatusResponse extends $tea.Model {
|
|
2162
1868
|
headers: { [key: string]: string };
|
|
2163
|
-
|
|
1869
|
+
statusCode: number;
|
|
1870
|
+
body: GetSceneBuildTaskStatusResponseBody;
|
|
1871
|
+
static names(): { [key: string]: string } {
|
|
1872
|
+
return {
|
|
1873
|
+
headers: 'headers',
|
|
1874
|
+
statusCode: 'statusCode',
|
|
1875
|
+
body: 'body',
|
|
1876
|
+
};
|
|
1877
|
+
}
|
|
1878
|
+
|
|
1879
|
+
static types(): { [key: string]: any } {
|
|
1880
|
+
return {
|
|
1881
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1882
|
+
statusCode: 'number',
|
|
1883
|
+
body: GetSceneBuildTaskStatusResponseBody,
|
|
1884
|
+
};
|
|
1885
|
+
}
|
|
1886
|
+
|
|
1887
|
+
constructor(map?: { [key: string]: any }) {
|
|
1888
|
+
super(map);
|
|
1889
|
+
}
|
|
1890
|
+
}
|
|
1891
|
+
|
|
1892
|
+
export class GetScenePackUrlRequest extends $tea.Model {
|
|
1893
|
+
sceneId?: string;
|
|
1894
|
+
static names(): { [key: string]: string } {
|
|
1895
|
+
return {
|
|
1896
|
+
sceneId: 'SceneId',
|
|
1897
|
+
};
|
|
1898
|
+
}
|
|
1899
|
+
|
|
1900
|
+
static types(): { [key: string]: any } {
|
|
1901
|
+
return {
|
|
1902
|
+
sceneId: 'string',
|
|
1903
|
+
};
|
|
1904
|
+
}
|
|
1905
|
+
|
|
1906
|
+
constructor(map?: { [key: string]: any }) {
|
|
1907
|
+
super(map);
|
|
1908
|
+
}
|
|
1909
|
+
}
|
|
1910
|
+
|
|
1911
|
+
export class GetScenePackUrlResponseBody extends $tea.Model {
|
|
1912
|
+
code?: number;
|
|
1913
|
+
data?: GetScenePackUrlResponseBodyData;
|
|
1914
|
+
message?: string;
|
|
1915
|
+
requestId?: string;
|
|
1916
|
+
success?: boolean;
|
|
1917
|
+
static names(): { [key: string]: string } {
|
|
1918
|
+
return {
|
|
1919
|
+
code: 'Code',
|
|
1920
|
+
data: 'Data',
|
|
1921
|
+
message: 'Message',
|
|
1922
|
+
requestId: 'RequestId',
|
|
1923
|
+
success: 'Success',
|
|
1924
|
+
};
|
|
1925
|
+
}
|
|
1926
|
+
|
|
1927
|
+
static types(): { [key: string]: any } {
|
|
1928
|
+
return {
|
|
1929
|
+
code: 'number',
|
|
1930
|
+
data: GetScenePackUrlResponseBodyData,
|
|
1931
|
+
message: 'string',
|
|
1932
|
+
requestId: 'string',
|
|
1933
|
+
success: 'boolean',
|
|
1934
|
+
};
|
|
1935
|
+
}
|
|
1936
|
+
|
|
1937
|
+
constructor(map?: { [key: string]: any }) {
|
|
1938
|
+
super(map);
|
|
1939
|
+
}
|
|
1940
|
+
}
|
|
1941
|
+
|
|
1942
|
+
export class GetScenePackUrlResponse extends $tea.Model {
|
|
1943
|
+
headers: { [key: string]: string };
|
|
1944
|
+
statusCode: number;
|
|
1945
|
+
body: GetScenePackUrlResponseBody;
|
|
1946
|
+
static names(): { [key: string]: string } {
|
|
1947
|
+
return {
|
|
1948
|
+
headers: 'headers',
|
|
1949
|
+
statusCode: 'statusCode',
|
|
1950
|
+
body: 'body',
|
|
1951
|
+
};
|
|
1952
|
+
}
|
|
1953
|
+
|
|
1954
|
+
static types(): { [key: string]: any } {
|
|
1955
|
+
return {
|
|
1956
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1957
|
+
statusCode: 'number',
|
|
1958
|
+
body: GetScenePackUrlResponseBody,
|
|
1959
|
+
};
|
|
1960
|
+
}
|
|
1961
|
+
|
|
1962
|
+
constructor(map?: { [key: string]: any }) {
|
|
1963
|
+
super(map);
|
|
1964
|
+
}
|
|
1965
|
+
}
|
|
1966
|
+
|
|
1967
|
+
export class GetScenePreviewDataRequest extends $tea.Model {
|
|
1968
|
+
domain?: string;
|
|
1969
|
+
enabled?: boolean;
|
|
1970
|
+
previewToken?: string;
|
|
1971
|
+
showTag?: boolean;
|
|
1972
|
+
static names(): { [key: string]: string } {
|
|
1973
|
+
return {
|
|
1974
|
+
domain: 'Domain',
|
|
1975
|
+
enabled: 'Enabled',
|
|
1976
|
+
previewToken: 'PreviewToken',
|
|
1977
|
+
showTag: 'ShowTag',
|
|
1978
|
+
};
|
|
1979
|
+
}
|
|
1980
|
+
|
|
1981
|
+
static types(): { [key: string]: any } {
|
|
1982
|
+
return {
|
|
1983
|
+
domain: 'string',
|
|
1984
|
+
enabled: 'boolean',
|
|
1985
|
+
previewToken: 'string',
|
|
1986
|
+
showTag: 'boolean',
|
|
1987
|
+
};
|
|
1988
|
+
}
|
|
1989
|
+
|
|
1990
|
+
constructor(map?: { [key: string]: any }) {
|
|
1991
|
+
super(map);
|
|
1992
|
+
}
|
|
1993
|
+
}
|
|
1994
|
+
|
|
1995
|
+
export class GetScenePreviewDataResponseBody extends $tea.Model {
|
|
1996
|
+
code?: number;
|
|
1997
|
+
data?: GetScenePreviewDataResponseBodyData;
|
|
1998
|
+
message?: string;
|
|
1999
|
+
requestId?: string;
|
|
2000
|
+
success?: boolean;
|
|
2001
|
+
static names(): { [key: string]: string } {
|
|
2002
|
+
return {
|
|
2003
|
+
code: 'Code',
|
|
2004
|
+
data: 'Data',
|
|
2005
|
+
message: 'Message',
|
|
2006
|
+
requestId: 'RequestId',
|
|
2007
|
+
success: 'Success',
|
|
2008
|
+
};
|
|
2009
|
+
}
|
|
2010
|
+
|
|
2011
|
+
static types(): { [key: string]: any } {
|
|
2012
|
+
return {
|
|
2013
|
+
code: 'number',
|
|
2014
|
+
data: GetScenePreviewDataResponseBodyData,
|
|
2015
|
+
message: 'string',
|
|
2016
|
+
requestId: 'string',
|
|
2017
|
+
success: 'boolean',
|
|
2018
|
+
};
|
|
2019
|
+
}
|
|
2020
|
+
|
|
2021
|
+
constructor(map?: { [key: string]: any }) {
|
|
2022
|
+
super(map);
|
|
2023
|
+
}
|
|
2024
|
+
}
|
|
2025
|
+
|
|
2026
|
+
export class GetScenePreviewDataResponse extends $tea.Model {
|
|
2027
|
+
headers: { [key: string]: string };
|
|
2028
|
+
statusCode: number;
|
|
2029
|
+
body: GetScenePreviewDataResponseBody;
|
|
2164
2030
|
static names(): { [key: string]: string } {
|
|
2165
2031
|
return {
|
|
2166
2032
|
headers: 'headers',
|
|
2033
|
+
statusCode: 'statusCode',
|
|
2167
2034
|
body: 'body',
|
|
2168
2035
|
};
|
|
2169
2036
|
}
|
|
@@ -2171,7 +2038,8 @@ export class GetSceneBuildTaskStatusResponse extends $tea.Model {
|
|
|
2171
2038
|
static types(): { [key: string]: any } {
|
|
2172
2039
|
return {
|
|
2173
2040
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2174
|
-
|
|
2041
|
+
statusCode: 'number',
|
|
2042
|
+
body: GetScenePreviewDataResponseBody,
|
|
2175
2043
|
};
|
|
2176
2044
|
}
|
|
2177
2045
|
|
|
@@ -2180,17 +2048,15 @@ export class GetSceneBuildTaskStatusResponse extends $tea.Model {
|
|
|
2180
2048
|
}
|
|
2181
2049
|
}
|
|
2182
2050
|
|
|
2183
|
-
export class
|
|
2051
|
+
export class GetScenePreviewInfoRequest extends $tea.Model {
|
|
2184
2052
|
domain?: string;
|
|
2185
2053
|
enabled?: boolean;
|
|
2186
|
-
|
|
2187
|
-
showTag?: boolean;
|
|
2054
|
+
modelToken?: string;
|
|
2188
2055
|
static names(): { [key: string]: string } {
|
|
2189
2056
|
return {
|
|
2190
2057
|
domain: 'Domain',
|
|
2191
2058
|
enabled: 'Enabled',
|
|
2192
|
-
|
|
2193
|
-
showTag: 'ShowTag',
|
|
2059
|
+
modelToken: 'ModelToken',
|
|
2194
2060
|
};
|
|
2195
2061
|
}
|
|
2196
2062
|
|
|
@@ -2198,8 +2064,7 @@ export class GetScenePreviewDataRequest extends $tea.Model {
|
|
|
2198
2064
|
return {
|
|
2199
2065
|
domain: 'string',
|
|
2200
2066
|
enabled: 'boolean',
|
|
2201
|
-
|
|
2202
|
-
showTag: 'boolean',
|
|
2067
|
+
modelToken: 'string',
|
|
2203
2068
|
};
|
|
2204
2069
|
}
|
|
2205
2070
|
|
|
@@ -2208,9 +2073,9 @@ export class GetScenePreviewDataRequest extends $tea.Model {
|
|
|
2208
2073
|
}
|
|
2209
2074
|
}
|
|
2210
2075
|
|
|
2211
|
-
export class
|
|
2076
|
+
export class GetScenePreviewInfoResponseBody extends $tea.Model {
|
|
2212
2077
|
code?: number;
|
|
2213
|
-
data?:
|
|
2078
|
+
data?: GetScenePreviewInfoResponseBodyData;
|
|
2214
2079
|
message?: string;
|
|
2215
2080
|
requestId?: string;
|
|
2216
2081
|
success?: boolean;
|
|
@@ -2227,7 +2092,7 @@ export class GetScenePreviewDataResponseBody extends $tea.Model {
|
|
|
2227
2092
|
static types(): { [key: string]: any } {
|
|
2228
2093
|
return {
|
|
2229
2094
|
code: 'number',
|
|
2230
|
-
data:
|
|
2095
|
+
data: GetScenePreviewInfoResponseBodyData,
|
|
2231
2096
|
message: 'string',
|
|
2232
2097
|
requestId: 'string',
|
|
2233
2098
|
success: 'boolean',
|
|
@@ -2239,12 +2104,14 @@ export class GetScenePreviewDataResponseBody extends $tea.Model {
|
|
|
2239
2104
|
}
|
|
2240
2105
|
}
|
|
2241
2106
|
|
|
2242
|
-
export class
|
|
2107
|
+
export class GetScenePreviewInfoResponse extends $tea.Model {
|
|
2243
2108
|
headers: { [key: string]: string };
|
|
2244
|
-
|
|
2109
|
+
statusCode: number;
|
|
2110
|
+
body: GetScenePreviewInfoResponseBody;
|
|
2245
2111
|
static names(): { [key: string]: string } {
|
|
2246
2112
|
return {
|
|
2247
2113
|
headers: 'headers',
|
|
2114
|
+
statusCode: 'statusCode',
|
|
2248
2115
|
body: 'body',
|
|
2249
2116
|
};
|
|
2250
2117
|
}
|
|
@@ -2252,7 +2119,8 @@ export class GetScenePreviewDataResponse extends $tea.Model {
|
|
|
2252
2119
|
static types(): { [key: string]: any } {
|
|
2253
2120
|
return {
|
|
2254
2121
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2255
|
-
|
|
2122
|
+
statusCode: 'number',
|
|
2123
|
+
body: GetScenePreviewInfoResponseBody,
|
|
2256
2124
|
};
|
|
2257
2125
|
}
|
|
2258
2126
|
|
|
@@ -2261,23 +2129,17 @@ export class GetScenePreviewDataResponse extends $tea.Model {
|
|
|
2261
2129
|
}
|
|
2262
2130
|
}
|
|
2263
2131
|
|
|
2264
|
-
export class
|
|
2265
|
-
|
|
2266
|
-
enabled?: boolean;
|
|
2267
|
-
modelToken?: string;
|
|
2132
|
+
export class GetScenePreviewResourceRequest extends $tea.Model {
|
|
2133
|
+
previewToken?: string;
|
|
2268
2134
|
static names(): { [key: string]: string } {
|
|
2269
2135
|
return {
|
|
2270
|
-
|
|
2271
|
-
enabled: 'Enabled',
|
|
2272
|
-
modelToken: 'ModelToken',
|
|
2136
|
+
previewToken: 'PreviewToken',
|
|
2273
2137
|
};
|
|
2274
2138
|
}
|
|
2275
2139
|
|
|
2276
2140
|
static types(): { [key: string]: any } {
|
|
2277
2141
|
return {
|
|
2278
|
-
|
|
2279
|
-
enabled: 'boolean',
|
|
2280
|
-
modelToken: 'string',
|
|
2142
|
+
previewToken: 'string',
|
|
2281
2143
|
};
|
|
2282
2144
|
}
|
|
2283
2145
|
|
|
@@ -2286,9 +2148,9 @@ export class GetScenePreviewInfoRequest extends $tea.Model {
|
|
|
2286
2148
|
}
|
|
2287
2149
|
}
|
|
2288
2150
|
|
|
2289
|
-
export class
|
|
2151
|
+
export class GetScenePreviewResourceResponseBody extends $tea.Model {
|
|
2290
2152
|
code?: number;
|
|
2291
|
-
data?:
|
|
2153
|
+
data?: GetScenePreviewResourceResponseBodyData;
|
|
2292
2154
|
message?: string;
|
|
2293
2155
|
requestId?: string;
|
|
2294
2156
|
success?: boolean;
|
|
@@ -2305,7 +2167,7 @@ export class GetScenePreviewInfoResponseBody extends $tea.Model {
|
|
|
2305
2167
|
static types(): { [key: string]: any } {
|
|
2306
2168
|
return {
|
|
2307
2169
|
code: 'number',
|
|
2308
|
-
data:
|
|
2170
|
+
data: GetScenePreviewResourceResponseBodyData,
|
|
2309
2171
|
message: 'string',
|
|
2310
2172
|
requestId: 'string',
|
|
2311
2173
|
success: 'boolean',
|
|
@@ -2317,12 +2179,14 @@ export class GetScenePreviewInfoResponseBody extends $tea.Model {
|
|
|
2317
2179
|
}
|
|
2318
2180
|
}
|
|
2319
2181
|
|
|
2320
|
-
export class
|
|
2182
|
+
export class GetScenePreviewResourceResponse extends $tea.Model {
|
|
2321
2183
|
headers: { [key: string]: string };
|
|
2322
|
-
|
|
2184
|
+
statusCode: number;
|
|
2185
|
+
body: GetScenePreviewResourceResponseBody;
|
|
2323
2186
|
static names(): { [key: string]: string } {
|
|
2324
2187
|
return {
|
|
2325
2188
|
headers: 'headers',
|
|
2189
|
+
statusCode: 'statusCode',
|
|
2326
2190
|
body: 'body',
|
|
2327
2191
|
};
|
|
2328
2192
|
}
|
|
@@ -2330,7 +2194,8 @@ export class GetScenePreviewInfoResponse extends $tea.Model {
|
|
|
2330
2194
|
static types(): { [key: string]: any } {
|
|
2331
2195
|
return {
|
|
2332
2196
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2333
|
-
|
|
2197
|
+
statusCode: 'number',
|
|
2198
|
+
body: GetScenePreviewResourceResponseBody,
|
|
2334
2199
|
};
|
|
2335
2200
|
}
|
|
2336
2201
|
|
|
@@ -2394,10 +2259,12 @@ export class GetSingleConnDataResponseBody extends $tea.Model {
|
|
|
2394
2259
|
|
|
2395
2260
|
export class GetSingleConnDataResponse extends $tea.Model {
|
|
2396
2261
|
headers: { [key: string]: string };
|
|
2262
|
+
statusCode: number;
|
|
2397
2263
|
body: GetSingleConnDataResponseBody;
|
|
2398
2264
|
static names(): { [key: string]: string } {
|
|
2399
2265
|
return {
|
|
2400
2266
|
headers: 'headers',
|
|
2267
|
+
statusCode: 'statusCode',
|
|
2401
2268
|
body: 'body',
|
|
2402
2269
|
};
|
|
2403
2270
|
}
|
|
@@ -2405,6 +2272,7 @@ export class GetSingleConnDataResponse extends $tea.Model {
|
|
|
2405
2272
|
static types(): { [key: string]: any } {
|
|
2406
2273
|
return {
|
|
2407
2274
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2275
|
+
statusCode: 'number',
|
|
2408
2276
|
body: GetSingleConnDataResponseBody,
|
|
2409
2277
|
};
|
|
2410
2278
|
}
|
|
@@ -2466,10 +2334,12 @@ export class GetSubSceneTaskStatusResponseBody extends $tea.Model {
|
|
|
2466
2334
|
|
|
2467
2335
|
export class GetSubSceneTaskStatusResponse extends $tea.Model {
|
|
2468
2336
|
headers: { [key: string]: string };
|
|
2337
|
+
statusCode: number;
|
|
2469
2338
|
body: GetSubSceneTaskStatusResponseBody;
|
|
2470
2339
|
static names(): { [key: string]: string } {
|
|
2471
2340
|
return {
|
|
2472
2341
|
headers: 'headers',
|
|
2342
|
+
statusCode: 'statusCode',
|
|
2473
2343
|
body: 'body',
|
|
2474
2344
|
};
|
|
2475
2345
|
}
|
|
@@ -2477,6 +2347,7 @@ export class GetSubSceneTaskStatusResponse extends $tea.Model {
|
|
|
2477
2347
|
static types(): { [key: string]: any } {
|
|
2478
2348
|
return {
|
|
2479
2349
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2350
|
+
statusCode: 'number',
|
|
2480
2351
|
body: GetSubSceneTaskStatusResponseBody,
|
|
2481
2352
|
};
|
|
2482
2353
|
}
|
|
@@ -2547,10 +2418,12 @@ export class GetTaskStatusResponseBody extends $tea.Model {
|
|
|
2547
2418
|
|
|
2548
2419
|
export class GetTaskStatusResponse extends $tea.Model {
|
|
2549
2420
|
headers: { [key: string]: string };
|
|
2421
|
+
statusCode: number;
|
|
2550
2422
|
body: GetTaskStatusResponseBody;
|
|
2551
2423
|
static names(): { [key: string]: string } {
|
|
2552
2424
|
return {
|
|
2553
2425
|
headers: 'headers',
|
|
2426
|
+
statusCode: 'statusCode',
|
|
2554
2427
|
body: 'body',
|
|
2555
2428
|
};
|
|
2556
2429
|
}
|
|
@@ -2558,6 +2431,7 @@ export class GetTaskStatusResponse extends $tea.Model {
|
|
|
2558
2431
|
static types(): { [key: string]: any } {
|
|
2559
2432
|
return {
|
|
2560
2433
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2434
|
+
statusCode: 'number',
|
|
2561
2435
|
body: GetTaskStatusResponseBody,
|
|
2562
2436
|
};
|
|
2563
2437
|
}
|
|
@@ -2619,10 +2493,12 @@ export class GetWindowConfigResponseBody extends $tea.Model {
|
|
|
2619
2493
|
|
|
2620
2494
|
export class GetWindowConfigResponse extends $tea.Model {
|
|
2621
2495
|
headers: { [key: string]: string };
|
|
2496
|
+
statusCode: number;
|
|
2622
2497
|
body: GetWindowConfigResponseBody;
|
|
2623
2498
|
static names(): { [key: string]: string } {
|
|
2624
2499
|
return {
|
|
2625
2500
|
headers: 'headers',
|
|
2501
|
+
statusCode: 'statusCode',
|
|
2626
2502
|
body: 'body',
|
|
2627
2503
|
};
|
|
2628
2504
|
}
|
|
@@ -2630,6 +2506,7 @@ export class GetWindowConfigResponse extends $tea.Model {
|
|
|
2630
2506
|
static types(): { [key: string]: any } {
|
|
2631
2507
|
return {
|
|
2632
2508
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2509
|
+
statusCode: 'number',
|
|
2633
2510
|
body: GetWindowConfigResponseBody,
|
|
2634
2511
|
};
|
|
2635
2512
|
}
|
|
@@ -2694,10 +2571,12 @@ export class LabelBuildResponseBody extends $tea.Model {
|
|
|
2694
2571
|
|
|
2695
2572
|
export class LabelBuildResponse extends $tea.Model {
|
|
2696
2573
|
headers: { [key: string]: string };
|
|
2574
|
+
statusCode: number;
|
|
2697
2575
|
body: LabelBuildResponseBody;
|
|
2698
2576
|
static names(): { [key: string]: string } {
|
|
2699
2577
|
return {
|
|
2700
2578
|
headers: 'headers',
|
|
2579
|
+
statusCode: 'statusCode',
|
|
2701
2580
|
body: 'body',
|
|
2702
2581
|
};
|
|
2703
2582
|
}
|
|
@@ -2705,6 +2584,7 @@ export class LabelBuildResponse extends $tea.Model {
|
|
|
2705
2584
|
static types(): { [key: string]: any } {
|
|
2706
2585
|
return {
|
|
2707
2586
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2587
|
+
statusCode: 'number',
|
|
2708
2588
|
body: LabelBuildResponseBody,
|
|
2709
2589
|
};
|
|
2710
2590
|
}
|
|
@@ -2775,10 +2655,12 @@ export class LinkImageResponseBody extends $tea.Model {
|
|
|
2775
2655
|
|
|
2776
2656
|
export class LinkImageResponse extends $tea.Model {
|
|
2777
2657
|
headers: { [key: string]: string };
|
|
2658
|
+
statusCode: number;
|
|
2778
2659
|
body: LinkImageResponseBody;
|
|
2779
2660
|
static names(): { [key: string]: string } {
|
|
2780
2661
|
return {
|
|
2781
2662
|
headers: 'headers',
|
|
2663
|
+
statusCode: 'statusCode',
|
|
2782
2664
|
body: 'body',
|
|
2783
2665
|
};
|
|
2784
2666
|
}
|
|
@@ -2786,6 +2668,7 @@ export class LinkImageResponse extends $tea.Model {
|
|
|
2786
2668
|
static types(): { [key: string]: any } {
|
|
2787
2669
|
return {
|
|
2788
2670
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2671
|
+
statusCode: 'number',
|
|
2789
2672
|
body: LinkImageResponseBody,
|
|
2790
2673
|
};
|
|
2791
2674
|
}
|
|
@@ -2865,10 +2748,12 @@ export class ListProjectResponseBody extends $tea.Model {
|
|
|
2865
2748
|
|
|
2866
2749
|
export class ListProjectResponse extends $tea.Model {
|
|
2867
2750
|
headers: { [key: string]: string };
|
|
2751
|
+
statusCode: number;
|
|
2868
2752
|
body: ListProjectResponseBody;
|
|
2869
2753
|
static names(): { [key: string]: string } {
|
|
2870
2754
|
return {
|
|
2871
2755
|
headers: 'headers',
|
|
2756
|
+
statusCode: 'statusCode',
|
|
2872
2757
|
body: 'body',
|
|
2873
2758
|
};
|
|
2874
2759
|
}
|
|
@@ -2876,6 +2761,7 @@ export class ListProjectResponse extends $tea.Model {
|
|
|
2876
2761
|
static types(): { [key: string]: any } {
|
|
2877
2762
|
return {
|
|
2878
2763
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2764
|
+
statusCode: 'number',
|
|
2879
2765
|
body: ListProjectResponseBody,
|
|
2880
2766
|
};
|
|
2881
2767
|
}
|
|
@@ -2958,10 +2844,12 @@ export class ListSceneResponseBody extends $tea.Model {
|
|
|
2958
2844
|
|
|
2959
2845
|
export class ListSceneResponse extends $tea.Model {
|
|
2960
2846
|
headers: { [key: string]: string };
|
|
2847
|
+
statusCode: number;
|
|
2961
2848
|
body: ListSceneResponseBody;
|
|
2962
2849
|
static names(): { [key: string]: string } {
|
|
2963
2850
|
return {
|
|
2964
2851
|
headers: 'headers',
|
|
2852
|
+
statusCode: 'statusCode',
|
|
2965
2853
|
body: 'body',
|
|
2966
2854
|
};
|
|
2967
2855
|
}
|
|
@@ -2969,6 +2857,7 @@ export class ListSceneResponse extends $tea.Model {
|
|
|
2969
2857
|
static types(): { [key: string]: any } {
|
|
2970
2858
|
return {
|
|
2971
2859
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2860
|
+
statusCode: 'number',
|
|
2972
2861
|
body: ListSceneResponseBody,
|
|
2973
2862
|
};
|
|
2974
2863
|
}
|
|
@@ -2978,20 +2867,26 @@ export class ListSceneResponse extends $tea.Model {
|
|
|
2978
2867
|
}
|
|
2979
2868
|
}
|
|
2980
2869
|
|
|
2981
|
-
export class
|
|
2982
|
-
|
|
2983
|
-
|
|
2870
|
+
export class ListSubSceneRequest extends $tea.Model {
|
|
2871
|
+
pageNum?: number;
|
|
2872
|
+
pageSize?: number;
|
|
2873
|
+
sceneId?: string;
|
|
2874
|
+
showLayoutData?: boolean;
|
|
2984
2875
|
static names(): { [key: string]: string } {
|
|
2985
2876
|
return {
|
|
2986
|
-
|
|
2987
|
-
|
|
2877
|
+
pageNum: 'PageNum',
|
|
2878
|
+
pageSize: 'PageSize',
|
|
2879
|
+
sceneId: 'SceneId',
|
|
2880
|
+
showLayoutData: 'ShowLayoutData',
|
|
2988
2881
|
};
|
|
2989
2882
|
}
|
|
2990
2883
|
|
|
2991
2884
|
static types(): { [key: string]: any } {
|
|
2992
2885
|
return {
|
|
2993
|
-
|
|
2994
|
-
|
|
2886
|
+
pageNum: 'number',
|
|
2887
|
+
pageSize: 'number',
|
|
2888
|
+
sceneId: 'string',
|
|
2889
|
+
showLayoutData: 'boolean',
|
|
2995
2890
|
};
|
|
2996
2891
|
}
|
|
2997
2892
|
|
|
@@ -3000,26 +2895,41 @@ export class ListScenesRequest extends $tea.Model {
|
|
|
3000
2895
|
}
|
|
3001
2896
|
}
|
|
3002
2897
|
|
|
3003
|
-
export class
|
|
3004
|
-
|
|
3005
|
-
|
|
2898
|
+
export class ListSubSceneResponseBody extends $tea.Model {
|
|
2899
|
+
code?: number;
|
|
2900
|
+
count?: number;
|
|
2901
|
+
currentPage?: number;
|
|
2902
|
+
hasNext?: boolean;
|
|
2903
|
+
list?: ListSubSceneResponseBodyList[];
|
|
2904
|
+
message?: string;
|
|
3006
2905
|
requestId?: string;
|
|
3007
2906
|
success?: boolean;
|
|
2907
|
+
totalPage?: number;
|
|
3008
2908
|
static names(): { [key: string]: string } {
|
|
3009
2909
|
return {
|
|
3010
|
-
|
|
3011
|
-
|
|
2910
|
+
code: 'Code',
|
|
2911
|
+
count: 'Count',
|
|
2912
|
+
currentPage: 'CurrentPage',
|
|
2913
|
+
hasNext: 'HasNext',
|
|
2914
|
+
list: 'List',
|
|
2915
|
+
message: 'Message',
|
|
3012
2916
|
requestId: 'RequestId',
|
|
3013
2917
|
success: 'Success',
|
|
2918
|
+
totalPage: 'TotalPage',
|
|
3014
2919
|
};
|
|
3015
2920
|
}
|
|
3016
2921
|
|
|
3017
2922
|
static types(): { [key: string]: any } {
|
|
3018
2923
|
return {
|
|
3019
|
-
|
|
3020
|
-
|
|
2924
|
+
code: 'number',
|
|
2925
|
+
count: 'number',
|
|
2926
|
+
currentPage: 'number',
|
|
2927
|
+
hasNext: 'boolean',
|
|
2928
|
+
list: { 'type': 'array', 'itemType': ListSubSceneResponseBodyList },
|
|
2929
|
+
message: 'string',
|
|
3021
2930
|
requestId: 'string',
|
|
3022
2931
|
success: 'boolean',
|
|
2932
|
+
totalPage: 'number',
|
|
3023
2933
|
};
|
|
3024
2934
|
}
|
|
3025
2935
|
|
|
@@ -3028,12 +2938,14 @@ export class ListScenesResponseBody extends $tea.Model {
|
|
|
3028
2938
|
}
|
|
3029
2939
|
}
|
|
3030
2940
|
|
|
3031
|
-
export class
|
|
2941
|
+
export class ListSubSceneResponse extends $tea.Model {
|
|
3032
2942
|
headers: { [key: string]: string };
|
|
3033
|
-
|
|
2943
|
+
statusCode: number;
|
|
2944
|
+
body: ListSubSceneResponseBody;
|
|
3034
2945
|
static names(): { [key: string]: string } {
|
|
3035
2946
|
return {
|
|
3036
2947
|
headers: 'headers',
|
|
2948
|
+
statusCode: 'statusCode',
|
|
3037
2949
|
body: 'body',
|
|
3038
2950
|
};
|
|
3039
2951
|
}
|
|
@@ -3041,7 +2953,8 @@ export class ListScenesResponse extends $tea.Model {
|
|
|
3041
2953
|
static types(): { [key: string]: any } {
|
|
3042
2954
|
return {
|
|
3043
2955
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3044
|
-
|
|
2956
|
+
statusCode: 'number',
|
|
2957
|
+
body: ListSubSceneResponseBody,
|
|
3045
2958
|
};
|
|
3046
2959
|
}
|
|
3047
2960
|
|
|
@@ -3050,26 +2963,17 @@ export class ListScenesResponse extends $tea.Model {
|
|
|
3050
2963
|
}
|
|
3051
2964
|
}
|
|
3052
2965
|
|
|
3053
|
-
export class
|
|
3054
|
-
|
|
3055
|
-
pageSize?: number;
|
|
3056
|
-
sceneId?: string;
|
|
3057
|
-
showLayoutData?: boolean;
|
|
2966
|
+
export class OptimizeRightAngleRequest extends $tea.Model {
|
|
2967
|
+
subSceneId?: string;
|
|
3058
2968
|
static names(): { [key: string]: string } {
|
|
3059
2969
|
return {
|
|
3060
|
-
|
|
3061
|
-
pageSize: 'PageSize',
|
|
3062
|
-
sceneId: 'SceneId',
|
|
3063
|
-
showLayoutData: 'ShowLayoutData',
|
|
2970
|
+
subSceneId: 'SubSceneId',
|
|
3064
2971
|
};
|
|
3065
2972
|
}
|
|
3066
2973
|
|
|
3067
2974
|
static types(): { [key: string]: any } {
|
|
3068
2975
|
return {
|
|
3069
|
-
|
|
3070
|
-
pageSize: 'number',
|
|
3071
|
-
sceneId: 'string',
|
|
3072
|
-
showLayoutData: 'boolean',
|
|
2976
|
+
subSceneId: 'string',
|
|
3073
2977
|
};
|
|
3074
2978
|
}
|
|
3075
2979
|
|
|
@@ -3078,41 +2982,29 @@ export class ListSubSceneRequest extends $tea.Model {
|
|
|
3078
2982
|
}
|
|
3079
2983
|
}
|
|
3080
2984
|
|
|
3081
|
-
export class
|
|
2985
|
+
export class OptimizeRightAngleResponseBody extends $tea.Model {
|
|
3082
2986
|
code?: number;
|
|
3083
|
-
count?: number;
|
|
3084
|
-
currentPage?: number;
|
|
3085
|
-
hasNext?: boolean;
|
|
3086
|
-
list?: ListSubSceneResponseBodyList[];
|
|
3087
2987
|
message?: string;
|
|
3088
2988
|
requestId?: string;
|
|
3089
2989
|
success?: boolean;
|
|
3090
|
-
|
|
2990
|
+
taskId?: string;
|
|
3091
2991
|
static names(): { [key: string]: string } {
|
|
3092
2992
|
return {
|
|
3093
2993
|
code: 'Code',
|
|
3094
|
-
count: 'Count',
|
|
3095
|
-
currentPage: 'CurrentPage',
|
|
3096
|
-
hasNext: 'HasNext',
|
|
3097
|
-
list: 'List',
|
|
3098
2994
|
message: 'Message',
|
|
3099
2995
|
requestId: 'RequestId',
|
|
3100
2996
|
success: 'Success',
|
|
3101
|
-
|
|
2997
|
+
taskId: 'TaskId',
|
|
3102
2998
|
};
|
|
3103
2999
|
}
|
|
3104
3000
|
|
|
3105
3001
|
static types(): { [key: string]: any } {
|
|
3106
3002
|
return {
|
|
3107
3003
|
code: 'number',
|
|
3108
|
-
count: 'number',
|
|
3109
|
-
currentPage: 'number',
|
|
3110
|
-
hasNext: 'boolean',
|
|
3111
|
-
list: { 'type': 'array', 'itemType': ListSubSceneResponseBodyList },
|
|
3112
3004
|
message: 'string',
|
|
3113
3005
|
requestId: 'string',
|
|
3114
3006
|
success: 'boolean',
|
|
3115
|
-
|
|
3007
|
+
taskId: 'string',
|
|
3116
3008
|
};
|
|
3117
3009
|
}
|
|
3118
3010
|
|
|
@@ -3121,12 +3013,14 @@ export class ListSubSceneResponseBody extends $tea.Model {
|
|
|
3121
3013
|
}
|
|
3122
3014
|
}
|
|
3123
3015
|
|
|
3124
|
-
export class
|
|
3016
|
+
export class OptimizeRightAngleResponse extends $tea.Model {
|
|
3125
3017
|
headers: { [key: string]: string };
|
|
3126
|
-
|
|
3018
|
+
statusCode: number;
|
|
3019
|
+
body: OptimizeRightAngleResponseBody;
|
|
3127
3020
|
static names(): { [key: string]: string } {
|
|
3128
3021
|
return {
|
|
3129
3022
|
headers: 'headers',
|
|
3023
|
+
statusCode: 'statusCode',
|
|
3130
3024
|
body: 'body',
|
|
3131
3025
|
};
|
|
3132
3026
|
}
|
|
@@ -3134,7 +3028,8 @@ export class ListSubSceneResponse extends $tea.Model {
|
|
|
3134
3028
|
static types(): { [key: string]: any } {
|
|
3135
3029
|
return {
|
|
3136
3030
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3137
|
-
|
|
3031
|
+
statusCode: 'number',
|
|
3032
|
+
body: OptimizeRightAngleResponseBody,
|
|
3138
3033
|
};
|
|
3139
3034
|
}
|
|
3140
3035
|
|
|
@@ -3143,17 +3038,20 @@ export class ListSubSceneResponse extends $tea.Model {
|
|
|
3143
3038
|
}
|
|
3144
3039
|
}
|
|
3145
3040
|
|
|
3146
|
-
export class
|
|
3147
|
-
|
|
3041
|
+
export class PackSceneRequest extends $tea.Model {
|
|
3042
|
+
sceneId?: string;
|
|
3043
|
+
type?: string;
|
|
3148
3044
|
static names(): { [key: string]: string } {
|
|
3149
3045
|
return {
|
|
3150
|
-
|
|
3046
|
+
sceneId: 'SceneId',
|
|
3047
|
+
type: 'Type',
|
|
3151
3048
|
};
|
|
3152
3049
|
}
|
|
3153
3050
|
|
|
3154
3051
|
static types(): { [key: string]: any } {
|
|
3155
3052
|
return {
|
|
3156
|
-
|
|
3053
|
+
sceneId: 'string',
|
|
3054
|
+
type: 'string',
|
|
3157
3055
|
};
|
|
3158
3056
|
}
|
|
3159
3057
|
|
|
@@ -3162,29 +3060,29 @@ export class OptimizeRightAngleRequest extends $tea.Model {
|
|
|
3162
3060
|
}
|
|
3163
3061
|
}
|
|
3164
3062
|
|
|
3165
|
-
export class
|
|
3063
|
+
export class PackSceneResponseBody extends $tea.Model {
|
|
3166
3064
|
code?: number;
|
|
3065
|
+
data?: PackSceneResponseBodyData;
|
|
3167
3066
|
message?: string;
|
|
3168
3067
|
requestId?: string;
|
|
3169
3068
|
success?: boolean;
|
|
3170
|
-
taskId?: string;
|
|
3171
3069
|
static names(): { [key: string]: string } {
|
|
3172
3070
|
return {
|
|
3173
3071
|
code: 'Code',
|
|
3072
|
+
data: 'Data',
|
|
3174
3073
|
message: 'Message',
|
|
3175
3074
|
requestId: 'RequestId',
|
|
3176
3075
|
success: 'Success',
|
|
3177
|
-
taskId: 'TaskId',
|
|
3178
3076
|
};
|
|
3179
3077
|
}
|
|
3180
3078
|
|
|
3181
3079
|
static types(): { [key: string]: any } {
|
|
3182
3080
|
return {
|
|
3183
3081
|
code: 'number',
|
|
3082
|
+
data: PackSceneResponseBodyData,
|
|
3184
3083
|
message: 'string',
|
|
3185
3084
|
requestId: 'string',
|
|
3186
3085
|
success: 'boolean',
|
|
3187
|
-
taskId: 'string',
|
|
3188
3086
|
};
|
|
3189
3087
|
}
|
|
3190
3088
|
|
|
@@ -3193,12 +3091,14 @@ export class OptimizeRightAngleResponseBody extends $tea.Model {
|
|
|
3193
3091
|
}
|
|
3194
3092
|
}
|
|
3195
3093
|
|
|
3196
|
-
export class
|
|
3094
|
+
export class PackSceneResponse extends $tea.Model {
|
|
3197
3095
|
headers: { [key: string]: string };
|
|
3198
|
-
|
|
3096
|
+
statusCode: number;
|
|
3097
|
+
body: PackSceneResponseBody;
|
|
3199
3098
|
static names(): { [key: string]: string } {
|
|
3200
3099
|
return {
|
|
3201
3100
|
headers: 'headers',
|
|
3101
|
+
statusCode: 'statusCode',
|
|
3202
3102
|
body: 'body',
|
|
3203
3103
|
};
|
|
3204
3104
|
}
|
|
@@ -3206,7 +3106,8 @@ export class OptimizeRightAngleResponse extends $tea.Model {
|
|
|
3206
3106
|
static types(): { [key: string]: any } {
|
|
3207
3107
|
return {
|
|
3208
3108
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3209
|
-
|
|
3109
|
+
statusCode: 'number',
|
|
3110
|
+
body: PackSceneResponseBody,
|
|
3210
3111
|
};
|
|
3211
3112
|
}
|
|
3212
3113
|
|
|
@@ -3276,10 +3177,12 @@ export class PredImageResponseBody extends $tea.Model {
|
|
|
3276
3177
|
|
|
3277
3178
|
export class PredImageResponse extends $tea.Model {
|
|
3278
3179
|
headers: { [key: string]: string };
|
|
3180
|
+
statusCode: number;
|
|
3279
3181
|
body: PredImageResponseBody;
|
|
3280
3182
|
static names(): { [key: string]: string } {
|
|
3281
3183
|
return {
|
|
3282
3184
|
headers: 'headers',
|
|
3185
|
+
statusCode: 'statusCode',
|
|
3283
3186
|
body: 'body',
|
|
3284
3187
|
};
|
|
3285
3188
|
}
|
|
@@ -3287,6 +3190,7 @@ export class PredImageResponse extends $tea.Model {
|
|
|
3287
3190
|
static types(): { [key: string]: any } {
|
|
3288
3191
|
return {
|
|
3289
3192
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3193
|
+
statusCode: 'number',
|
|
3290
3194
|
body: PredImageResponseBody,
|
|
3291
3195
|
};
|
|
3292
3196
|
}
|
|
@@ -3354,10 +3258,12 @@ export class PredictionWallLineResponseBody extends $tea.Model {
|
|
|
3354
3258
|
|
|
3355
3259
|
export class PredictionWallLineResponse extends $tea.Model {
|
|
3356
3260
|
headers: { [key: string]: string };
|
|
3261
|
+
statusCode: number;
|
|
3357
3262
|
body: PredictionWallLineResponseBody;
|
|
3358
3263
|
static names(): { [key: string]: string } {
|
|
3359
3264
|
return {
|
|
3360
3265
|
headers: 'headers',
|
|
3266
|
+
statusCode: 'statusCode',
|
|
3361
3267
|
body: 'body',
|
|
3362
3268
|
};
|
|
3363
3269
|
}
|
|
@@ -3365,6 +3271,7 @@ export class PredictionWallLineResponse extends $tea.Model {
|
|
|
3365
3271
|
static types(): { [key: string]: any } {
|
|
3366
3272
|
return {
|
|
3367
3273
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3274
|
+
statusCode: 'number',
|
|
3368
3275
|
body: PredictionWallLineResponseBody,
|
|
3369
3276
|
};
|
|
3370
3277
|
}
|
|
@@ -3426,10 +3333,12 @@ export class PublishHotspotResponseBody extends $tea.Model {
|
|
|
3426
3333
|
|
|
3427
3334
|
export class PublishHotspotResponse extends $tea.Model {
|
|
3428
3335
|
headers: { [key: string]: string };
|
|
3336
|
+
statusCode: number;
|
|
3429
3337
|
body: PublishHotspotResponseBody;
|
|
3430
3338
|
static names(): { [key: string]: string } {
|
|
3431
3339
|
return {
|
|
3432
3340
|
headers: 'headers',
|
|
3341
|
+
statusCode: 'statusCode',
|
|
3433
3342
|
body: 'body',
|
|
3434
3343
|
};
|
|
3435
3344
|
}
|
|
@@ -3437,6 +3346,7 @@ export class PublishHotspotResponse extends $tea.Model {
|
|
|
3437
3346
|
static types(): { [key: string]: any } {
|
|
3438
3347
|
return {
|
|
3439
3348
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3349
|
+
statusCode: 'number',
|
|
3440
3350
|
body: PublishHotspotResponseBody,
|
|
3441
3351
|
};
|
|
3442
3352
|
}
|
|
@@ -3498,10 +3408,12 @@ export class PublishSceneResponseBody extends $tea.Model {
|
|
|
3498
3408
|
|
|
3499
3409
|
export class PublishSceneResponse extends $tea.Model {
|
|
3500
3410
|
headers: { [key: string]: string };
|
|
3411
|
+
statusCode: number;
|
|
3501
3412
|
body: PublishSceneResponseBody;
|
|
3502
3413
|
static names(): { [key: string]: string } {
|
|
3503
3414
|
return {
|
|
3504
3415
|
headers: 'headers',
|
|
3416
|
+
statusCode: 'statusCode',
|
|
3505
3417
|
body: 'body',
|
|
3506
3418
|
};
|
|
3507
3419
|
}
|
|
@@ -3509,6 +3421,7 @@ export class PublishSceneResponse extends $tea.Model {
|
|
|
3509
3421
|
static types(): { [key: string]: any } {
|
|
3510
3422
|
return {
|
|
3511
3423
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3424
|
+
statusCode: 'number',
|
|
3512
3425
|
body: PublishSceneResponseBody,
|
|
3513
3426
|
};
|
|
3514
3427
|
}
|
|
@@ -3570,10 +3483,12 @@ export class PublishStatusResponseBody extends $tea.Model {
|
|
|
3570
3483
|
|
|
3571
3484
|
export class PublishStatusResponse extends $tea.Model {
|
|
3572
3485
|
headers: { [key: string]: string };
|
|
3486
|
+
statusCode: number;
|
|
3573
3487
|
body: PublishStatusResponseBody;
|
|
3574
3488
|
static names(): { [key: string]: string } {
|
|
3575
3489
|
return {
|
|
3576
3490
|
headers: 'headers',
|
|
3491
|
+
statusCode: 'statusCode',
|
|
3577
3492
|
body: 'body',
|
|
3578
3493
|
};
|
|
3579
3494
|
}
|
|
@@ -3581,6 +3496,7 @@ export class PublishStatusResponse extends $tea.Model {
|
|
|
3581
3496
|
static types(): { [key: string]: any } {
|
|
3582
3497
|
return {
|
|
3583
3498
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3499
|
+
statusCode: 'number',
|
|
3584
3500
|
body: PublishStatusResponseBody,
|
|
3585
3501
|
};
|
|
3586
3502
|
}
|
|
@@ -3639,10 +3555,12 @@ export class RecoveryOriginImageResponseBody extends $tea.Model {
|
|
|
3639
3555
|
|
|
3640
3556
|
export class RecoveryOriginImageResponse extends $tea.Model {
|
|
3641
3557
|
headers: { [key: string]: string };
|
|
3558
|
+
statusCode: number;
|
|
3642
3559
|
body: RecoveryOriginImageResponseBody;
|
|
3643
3560
|
static names(): { [key: string]: string } {
|
|
3644
3561
|
return {
|
|
3645
3562
|
headers: 'headers',
|
|
3563
|
+
statusCode: 'statusCode',
|
|
3646
3564
|
body: 'body',
|
|
3647
3565
|
};
|
|
3648
3566
|
}
|
|
@@ -3650,6 +3568,7 @@ export class RecoveryOriginImageResponse extends $tea.Model {
|
|
|
3650
3568
|
static types(): { [key: string]: any } {
|
|
3651
3569
|
return {
|
|
3652
3570
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3571
|
+
statusCode: 'number',
|
|
3653
3572
|
body: RecoveryOriginImageResponseBody,
|
|
3654
3573
|
};
|
|
3655
3574
|
}
|
|
@@ -3720,10 +3639,12 @@ export class RectVerticalResponseBody extends $tea.Model {
|
|
|
3720
3639
|
|
|
3721
3640
|
export class RectVerticalResponse extends $tea.Model {
|
|
3722
3641
|
headers: { [key: string]: string };
|
|
3642
|
+
statusCode: number;
|
|
3723
3643
|
body: RectVerticalResponseBody;
|
|
3724
3644
|
static names(): { [key: string]: string } {
|
|
3725
3645
|
return {
|
|
3726
3646
|
headers: 'headers',
|
|
3647
|
+
statusCode: 'statusCode',
|
|
3727
3648
|
body: 'body',
|
|
3728
3649
|
};
|
|
3729
3650
|
}
|
|
@@ -3731,6 +3652,7 @@ export class RectVerticalResponse extends $tea.Model {
|
|
|
3731
3652
|
static types(): { [key: string]: any } {
|
|
3732
3653
|
return {
|
|
3733
3654
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3655
|
+
statusCode: 'number',
|
|
3734
3656
|
body: RectVerticalResponseBody,
|
|
3735
3657
|
};
|
|
3736
3658
|
}
|
|
@@ -3798,10 +3720,12 @@ export class RectifyImageResponseBody extends $tea.Model {
|
|
|
3798
3720
|
|
|
3799
3721
|
export class RectifyImageResponse extends $tea.Model {
|
|
3800
3722
|
headers: { [key: string]: string };
|
|
3723
|
+
statusCode: number;
|
|
3801
3724
|
body: RectifyImageResponseBody;
|
|
3802
3725
|
static names(): { [key: string]: string } {
|
|
3803
3726
|
return {
|
|
3804
3727
|
headers: 'headers',
|
|
3728
|
+
statusCode: 'statusCode',
|
|
3805
3729
|
body: 'body',
|
|
3806
3730
|
};
|
|
3807
3731
|
}
|
|
@@ -3809,6 +3733,7 @@ export class RectifyImageResponse extends $tea.Model {
|
|
|
3809
3733
|
static types(): { [key: string]: any } {
|
|
3810
3734
|
return {
|
|
3811
3735
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3736
|
+
statusCode: 'number',
|
|
3812
3737
|
body: RectifyImageResponseBody,
|
|
3813
3738
|
};
|
|
3814
3739
|
}
|
|
@@ -3867,10 +3792,12 @@ export class RollbackSubSceneResponseBody extends $tea.Model {
|
|
|
3867
3792
|
|
|
3868
3793
|
export class RollbackSubSceneResponse extends $tea.Model {
|
|
3869
3794
|
headers: { [key: string]: string };
|
|
3795
|
+
statusCode: number;
|
|
3870
3796
|
body: RollbackSubSceneResponseBody;
|
|
3871
3797
|
static names(): { [key: string]: string } {
|
|
3872
3798
|
return {
|
|
3873
3799
|
headers: 'headers',
|
|
3800
|
+
statusCode: 'statusCode',
|
|
3874
3801
|
body: 'body',
|
|
3875
3802
|
};
|
|
3876
3803
|
}
|
|
@@ -3878,6 +3805,7 @@ export class RollbackSubSceneResponse extends $tea.Model {
|
|
|
3878
3805
|
static types(): { [key: string]: any } {
|
|
3879
3806
|
return {
|
|
3880
3807
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3808
|
+
statusCode: 'number',
|
|
3881
3809
|
body: RollbackSubSceneResponseBody,
|
|
3882
3810
|
};
|
|
3883
3811
|
}
|
|
@@ -3936,10 +3864,12 @@ export class SaveHotspotConfigResponseBody extends $tea.Model {
|
|
|
3936
3864
|
|
|
3937
3865
|
export class SaveHotspotConfigResponse extends $tea.Model {
|
|
3938
3866
|
headers: { [key: string]: string };
|
|
3867
|
+
statusCode: number;
|
|
3939
3868
|
body: SaveHotspotConfigResponseBody;
|
|
3940
3869
|
static names(): { [key: string]: string } {
|
|
3941
3870
|
return {
|
|
3942
3871
|
headers: 'headers',
|
|
3872
|
+
statusCode: 'statusCode',
|
|
3943
3873
|
body: 'body',
|
|
3944
3874
|
};
|
|
3945
3875
|
}
|
|
@@ -3947,6 +3877,7 @@ export class SaveHotspotConfigResponse extends $tea.Model {
|
|
|
3947
3877
|
static types(): { [key: string]: any } {
|
|
3948
3878
|
return {
|
|
3949
3879
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3880
|
+
statusCode: 'number',
|
|
3950
3881
|
body: SaveHotspotConfigResponseBody,
|
|
3951
3882
|
};
|
|
3952
3883
|
}
|
|
@@ -4005,10 +3936,12 @@ export class SaveHotspotTagResponseBody extends $tea.Model {
|
|
|
4005
3936
|
|
|
4006
3937
|
export class SaveHotspotTagResponse extends $tea.Model {
|
|
4007
3938
|
headers: { [key: string]: string };
|
|
3939
|
+
statusCode: number;
|
|
4008
3940
|
body: SaveHotspotTagResponseBody;
|
|
4009
3941
|
static names(): { [key: string]: string } {
|
|
4010
3942
|
return {
|
|
4011
3943
|
headers: 'headers',
|
|
3944
|
+
statusCode: 'statusCode',
|
|
4012
3945
|
body: 'body',
|
|
4013
3946
|
};
|
|
4014
3947
|
}
|
|
@@ -4016,6 +3949,7 @@ export class SaveHotspotTagResponse extends $tea.Model {
|
|
|
4016
3949
|
static types(): { [key: string]: any } {
|
|
4017
3950
|
return {
|
|
4018
3951
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3952
|
+
statusCode: 'number',
|
|
4019
3953
|
body: SaveHotspotTagResponseBody,
|
|
4020
3954
|
};
|
|
4021
3955
|
}
|
|
@@ -4077,10 +4011,12 @@ export class ScenePublishResponseBody extends $tea.Model {
|
|
|
4077
4011
|
|
|
4078
4012
|
export class ScenePublishResponse extends $tea.Model {
|
|
4079
4013
|
headers: { [key: string]: string };
|
|
4014
|
+
statusCode: number;
|
|
4080
4015
|
body: ScenePublishResponseBody;
|
|
4081
4016
|
static names(): { [key: string]: string } {
|
|
4082
4017
|
return {
|
|
4083
4018
|
headers: 'headers',
|
|
4019
|
+
statusCode: 'statusCode',
|
|
4084
4020
|
body: 'body',
|
|
4085
4021
|
};
|
|
4086
4022
|
}
|
|
@@ -4088,6 +4024,7 @@ export class ScenePublishResponse extends $tea.Model {
|
|
|
4088
4024
|
static types(): { [key: string]: any } {
|
|
4089
4025
|
return {
|
|
4090
4026
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4027
|
+
statusCode: 'number',
|
|
4091
4028
|
body: ScenePublishResponseBody,
|
|
4092
4029
|
};
|
|
4093
4030
|
}
|
|
@@ -4152,10 +4089,12 @@ export class TempPreviewResponseBody extends $tea.Model {
|
|
|
4152
4089
|
|
|
4153
4090
|
export class TempPreviewResponse extends $tea.Model {
|
|
4154
4091
|
headers: { [key: string]: string };
|
|
4092
|
+
statusCode: number;
|
|
4155
4093
|
body: TempPreviewResponseBody;
|
|
4156
4094
|
static names(): { [key: string]: string } {
|
|
4157
4095
|
return {
|
|
4158
4096
|
headers: 'headers',
|
|
4097
|
+
statusCode: 'statusCode',
|
|
4159
4098
|
body: 'body',
|
|
4160
4099
|
};
|
|
4161
4100
|
}
|
|
@@ -4163,6 +4102,7 @@ export class TempPreviewResponse extends $tea.Model {
|
|
|
4163
4102
|
static types(): { [key: string]: any } {
|
|
4164
4103
|
return {
|
|
4165
4104
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4105
|
+
statusCode: 'number',
|
|
4166
4106
|
body: TempPreviewResponseBody,
|
|
4167
4107
|
};
|
|
4168
4108
|
}
|
|
@@ -4224,10 +4164,12 @@ export class TempPreviewStatusResponseBody extends $tea.Model {
|
|
|
4224
4164
|
|
|
4225
4165
|
export class TempPreviewStatusResponse extends $tea.Model {
|
|
4226
4166
|
headers: { [key: string]: string };
|
|
4167
|
+
statusCode: number;
|
|
4227
4168
|
body: TempPreviewStatusResponseBody;
|
|
4228
4169
|
static names(): { [key: string]: string } {
|
|
4229
4170
|
return {
|
|
4230
4171
|
headers: 'headers',
|
|
4172
|
+
statusCode: 'statusCode',
|
|
4231
4173
|
body: 'body',
|
|
4232
4174
|
};
|
|
4233
4175
|
}
|
|
@@ -4235,6 +4177,7 @@ export class TempPreviewStatusResponse extends $tea.Model {
|
|
|
4235
4177
|
static types(): { [key: string]: any } {
|
|
4236
4178
|
return {
|
|
4237
4179
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4180
|
+
statusCode: 'number',
|
|
4238
4181
|
body: TempPreviewStatusResponseBody,
|
|
4239
4182
|
};
|
|
4240
4183
|
}
|
|
@@ -4296,10 +4239,12 @@ export class UpdateConnDataResponseBody extends $tea.Model {
|
|
|
4296
4239
|
|
|
4297
4240
|
export class UpdateConnDataResponse extends $tea.Model {
|
|
4298
4241
|
headers: { [key: string]: string };
|
|
4242
|
+
statusCode: number;
|
|
4299
4243
|
body: UpdateConnDataResponseBody;
|
|
4300
4244
|
static names(): { [key: string]: string } {
|
|
4301
4245
|
return {
|
|
4302
4246
|
headers: 'headers',
|
|
4247
|
+
statusCode: 'statusCode',
|
|
4303
4248
|
body: 'body',
|
|
4304
4249
|
};
|
|
4305
4250
|
}
|
|
@@ -4307,6 +4252,7 @@ export class UpdateConnDataResponse extends $tea.Model {
|
|
|
4307
4252
|
static types(): { [key: string]: any } {
|
|
4308
4253
|
return {
|
|
4309
4254
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4255
|
+
statusCode: 'number',
|
|
4310
4256
|
body: UpdateConnDataResponseBody,
|
|
4311
4257
|
};
|
|
4312
4258
|
}
|
|
@@ -4368,10 +4314,12 @@ export class UpdateLayoutDataResponseBody extends $tea.Model {
|
|
|
4368
4314
|
|
|
4369
4315
|
export class UpdateLayoutDataResponse extends $tea.Model {
|
|
4370
4316
|
headers: { [key: string]: string };
|
|
4317
|
+
statusCode: number;
|
|
4371
4318
|
body: UpdateLayoutDataResponseBody;
|
|
4372
4319
|
static names(): { [key: string]: string } {
|
|
4373
4320
|
return {
|
|
4374
4321
|
headers: 'headers',
|
|
4322
|
+
statusCode: 'statusCode',
|
|
4375
4323
|
body: 'body',
|
|
4376
4324
|
};
|
|
4377
4325
|
}
|
|
@@ -4379,6 +4327,7 @@ export class UpdateLayoutDataResponse extends $tea.Model {
|
|
|
4379
4327
|
static types(): { [key: string]: any } {
|
|
4380
4328
|
return {
|
|
4381
4329
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4330
|
+
statusCode: 'number',
|
|
4382
4331
|
body: UpdateLayoutDataResponseBody,
|
|
4383
4332
|
};
|
|
4384
4333
|
}
|
|
@@ -4443,10 +4392,12 @@ export class UpdateProjectResponseBody extends $tea.Model {
|
|
|
4443
4392
|
|
|
4444
4393
|
export class UpdateProjectResponse extends $tea.Model {
|
|
4445
4394
|
headers: { [key: string]: string };
|
|
4395
|
+
statusCode: number;
|
|
4446
4396
|
body: UpdateProjectResponseBody;
|
|
4447
4397
|
static names(): { [key: string]: string } {
|
|
4448
4398
|
return {
|
|
4449
4399
|
headers: 'headers',
|
|
4400
|
+
statusCode: 'statusCode',
|
|
4450
4401
|
body: 'body',
|
|
4451
4402
|
};
|
|
4452
4403
|
}
|
|
@@ -4454,6 +4405,7 @@ export class UpdateProjectResponse extends $tea.Model {
|
|
|
4454
4405
|
static types(): { [key: string]: any } {
|
|
4455
4406
|
return {
|
|
4456
4407
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4408
|
+
statusCode: 'number',
|
|
4457
4409
|
body: UpdateProjectResponseBody,
|
|
4458
4410
|
};
|
|
4459
4411
|
}
|
|
@@ -4515,10 +4467,12 @@ export class UpdateSceneResponseBody extends $tea.Model {
|
|
|
4515
4467
|
|
|
4516
4468
|
export class UpdateSceneResponse extends $tea.Model {
|
|
4517
4469
|
headers: { [key: string]: string };
|
|
4470
|
+
statusCode: number;
|
|
4518
4471
|
body: UpdateSceneResponseBody;
|
|
4519
4472
|
static names(): { [key: string]: string } {
|
|
4520
4473
|
return {
|
|
4521
4474
|
headers: 'headers',
|
|
4475
|
+
statusCode: 'statusCode',
|
|
4522
4476
|
body: 'body',
|
|
4523
4477
|
};
|
|
4524
4478
|
}
|
|
@@ -4526,6 +4480,7 @@ export class UpdateSceneResponse extends $tea.Model {
|
|
|
4526
4480
|
static types(): { [key: string]: any } {
|
|
4527
4481
|
return {
|
|
4528
4482
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4483
|
+
statusCode: 'number',
|
|
4529
4484
|
body: UpdateSceneResponseBody,
|
|
4530
4485
|
};
|
|
4531
4486
|
}
|
|
@@ -4587,10 +4542,12 @@ export class UpdateSubSceneResponseBody extends $tea.Model {
|
|
|
4587
4542
|
|
|
4588
4543
|
export class UpdateSubSceneResponse extends $tea.Model {
|
|
4589
4544
|
headers: { [key: string]: string };
|
|
4545
|
+
statusCode: number;
|
|
4590
4546
|
body: UpdateSubSceneResponseBody;
|
|
4591
4547
|
static names(): { [key: string]: string } {
|
|
4592
4548
|
return {
|
|
4593
4549
|
headers: 'headers',
|
|
4550
|
+
statusCode: 'statusCode',
|
|
4594
4551
|
body: 'body',
|
|
4595
4552
|
};
|
|
4596
4553
|
}
|
|
@@ -4598,6 +4555,7 @@ export class UpdateSubSceneResponse extends $tea.Model {
|
|
|
4598
4555
|
static types(): { [key: string]: any } {
|
|
4599
4556
|
return {
|
|
4600
4557
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4558
|
+
statusCode: 'number',
|
|
4601
4559
|
body: UpdateSubSceneResponseBody,
|
|
4602
4560
|
};
|
|
4603
4561
|
}
|
|
@@ -4697,6 +4655,53 @@ export class GetHotspotSceneDataResponseBodyData extends $tea.Model {
|
|
|
4697
4655
|
}
|
|
4698
4656
|
}
|
|
4699
4657
|
|
|
4658
|
+
export class GetPackSceneTaskStatusResponseBodyData extends $tea.Model {
|
|
4659
|
+
progress?: string;
|
|
4660
|
+
status?: string;
|
|
4661
|
+
static names(): { [key: string]: string } {
|
|
4662
|
+
return {
|
|
4663
|
+
progress: 'Progress',
|
|
4664
|
+
status: 'Status',
|
|
4665
|
+
};
|
|
4666
|
+
}
|
|
4667
|
+
|
|
4668
|
+
static types(): { [key: string]: any } {
|
|
4669
|
+
return {
|
|
4670
|
+
progress: 'string',
|
|
4671
|
+
status: 'string',
|
|
4672
|
+
};
|
|
4673
|
+
}
|
|
4674
|
+
|
|
4675
|
+
constructor(map?: { [key: string]: any }) {
|
|
4676
|
+
super(map);
|
|
4677
|
+
}
|
|
4678
|
+
}
|
|
4679
|
+
|
|
4680
|
+
export class GetScenePackUrlResponseBodyData extends $tea.Model {
|
|
4681
|
+
expire?: string;
|
|
4682
|
+
url?: string;
|
|
4683
|
+
valid?: string;
|
|
4684
|
+
static names(): { [key: string]: string } {
|
|
4685
|
+
return {
|
|
4686
|
+
expire: 'Expire',
|
|
4687
|
+
url: 'Url',
|
|
4688
|
+
valid: 'Valid',
|
|
4689
|
+
};
|
|
4690
|
+
}
|
|
4691
|
+
|
|
4692
|
+
static types(): { [key: string]: any } {
|
|
4693
|
+
return {
|
|
4694
|
+
expire: 'string',
|
|
4695
|
+
url: 'string',
|
|
4696
|
+
valid: 'string',
|
|
4697
|
+
};
|
|
4698
|
+
}
|
|
4699
|
+
|
|
4700
|
+
constructor(map?: { [key: string]: any }) {
|
|
4701
|
+
super(map);
|
|
4702
|
+
}
|
|
4703
|
+
}
|
|
4704
|
+
|
|
4700
4705
|
export class GetScenePreviewDataResponseBodyDataModelPanoListPosition extends $tea.Model {
|
|
4701
4706
|
rotation?: number[];
|
|
4702
4707
|
spot?: number[];
|
|
@@ -4975,6 +4980,56 @@ export class GetScenePreviewInfoResponseBodyData extends $tea.Model {
|
|
|
4975
4980
|
}
|
|
4976
4981
|
}
|
|
4977
4982
|
|
|
4983
|
+
export class GetScenePreviewResourceResponseBodyDataResourceDirectory extends $tea.Model {
|
|
4984
|
+
modelConfig?: string;
|
|
4985
|
+
orthomapConfig?: string;
|
|
4986
|
+
rootPath?: string;
|
|
4987
|
+
static names(): { [key: string]: string } {
|
|
4988
|
+
return {
|
|
4989
|
+
modelConfig: 'ModelConfig',
|
|
4990
|
+
orthomapConfig: 'OrthomapConfig',
|
|
4991
|
+
rootPath: 'RootPath',
|
|
4992
|
+
};
|
|
4993
|
+
}
|
|
4994
|
+
|
|
4995
|
+
static types(): { [key: string]: any } {
|
|
4996
|
+
return {
|
|
4997
|
+
modelConfig: 'string',
|
|
4998
|
+
orthomapConfig: 'string',
|
|
4999
|
+
rootPath: 'string',
|
|
5000
|
+
};
|
|
5001
|
+
}
|
|
5002
|
+
|
|
5003
|
+
constructor(map?: { [key: string]: any }) {
|
|
5004
|
+
super(map);
|
|
5005
|
+
}
|
|
5006
|
+
}
|
|
5007
|
+
|
|
5008
|
+
export class GetScenePreviewResourceResponseBodyData extends $tea.Model {
|
|
5009
|
+
name?: string;
|
|
5010
|
+
resourceDirectory?: GetScenePreviewResourceResponseBodyDataResourceDirectory;
|
|
5011
|
+
version?: string;
|
|
5012
|
+
static names(): { [key: string]: string } {
|
|
5013
|
+
return {
|
|
5014
|
+
name: 'Name',
|
|
5015
|
+
resourceDirectory: 'ResourceDirectory',
|
|
5016
|
+
version: 'Version',
|
|
5017
|
+
};
|
|
5018
|
+
}
|
|
5019
|
+
|
|
5020
|
+
static types(): { [key: string]: any } {
|
|
5021
|
+
return {
|
|
5022
|
+
name: 'string',
|
|
5023
|
+
resourceDirectory: GetScenePreviewResourceResponseBodyDataResourceDirectory,
|
|
5024
|
+
version: 'string',
|
|
5025
|
+
};
|
|
5026
|
+
}
|
|
5027
|
+
|
|
5028
|
+
constructor(map?: { [key: string]: any }) {
|
|
5029
|
+
super(map);
|
|
5030
|
+
}
|
|
5031
|
+
}
|
|
5032
|
+
|
|
4978
5033
|
export class GetSingleConnDataResponseBodyList extends $tea.Model {
|
|
4979
5034
|
id?: string;
|
|
4980
5035
|
mapId?: string;
|
|
@@ -5117,25 +5172,6 @@ export class ListSceneResponseBodyList extends $tea.Model {
|
|
|
5117
5172
|
}
|
|
5118
5173
|
}
|
|
5119
5174
|
|
|
5120
|
-
export class ListScenesResponseBodyData extends $tea.Model {
|
|
5121
|
-
sceneId?: string;
|
|
5122
|
-
static names(): { [key: string]: string } {
|
|
5123
|
-
return {
|
|
5124
|
-
sceneId: 'SceneId',
|
|
5125
|
-
};
|
|
5126
|
-
}
|
|
5127
|
-
|
|
5128
|
-
static types(): { [key: string]: any } {
|
|
5129
|
-
return {
|
|
5130
|
-
sceneId: 'string',
|
|
5131
|
-
};
|
|
5132
|
-
}
|
|
5133
|
-
|
|
5134
|
-
constructor(map?: { [key: string]: any }) {
|
|
5135
|
-
super(map);
|
|
5136
|
-
}
|
|
5137
|
-
}
|
|
5138
|
-
|
|
5139
5175
|
export class ListSubSceneResponseBodyList extends $tea.Model {
|
|
5140
5176
|
baseImageUrl?: string;
|
|
5141
5177
|
coverUrl?: string;
|
|
@@ -5197,6 +5233,25 @@ export class ListSubSceneResponseBodyList extends $tea.Model {
|
|
|
5197
5233
|
}
|
|
5198
5234
|
}
|
|
5199
5235
|
|
|
5236
|
+
export class PackSceneResponseBodyData extends $tea.Model {
|
|
5237
|
+
taskId?: string;
|
|
5238
|
+
static names(): { [key: string]: string } {
|
|
5239
|
+
return {
|
|
5240
|
+
taskId: 'TaskId',
|
|
5241
|
+
};
|
|
5242
|
+
}
|
|
5243
|
+
|
|
5244
|
+
static types(): { [key: string]: any } {
|
|
5245
|
+
return {
|
|
5246
|
+
taskId: 'string',
|
|
5247
|
+
};
|
|
5248
|
+
}
|
|
5249
|
+
|
|
5250
|
+
constructor(map?: { [key: string]: any }) {
|
|
5251
|
+
super(map);
|
|
5252
|
+
}
|
|
5253
|
+
}
|
|
5254
|
+
|
|
5200
5255
|
|
|
5201
5256
|
export default class Client extends OpenApi {
|
|
5202
5257
|
|
|
@@ -5354,6 +5409,10 @@ export default class Client extends OpenApi {
|
|
|
5354
5409
|
async addSceneWithOptions(request: AddSceneRequest, runtime: $Util.RuntimeOptions): Promise<AddSceneResponse> {
|
|
5355
5410
|
Util.validateModel(request);
|
|
5356
5411
|
let query = { };
|
|
5412
|
+
if (!Util.isUnset(request.customerUid)) {
|
|
5413
|
+
query["CustomerUid"] = request.customerUid;
|
|
5414
|
+
}
|
|
5415
|
+
|
|
5357
5416
|
if (!Util.isUnset(request.name)) {
|
|
5358
5417
|
query["Name"] = request.name;
|
|
5359
5418
|
}
|
|
@@ -5425,210 +5484,18 @@ export default class Client extends OpenApi {
|
|
|
5425
5484
|
return await this.addSubSceneWithOptions(request, runtime);
|
|
5426
5485
|
}
|
|
5427
5486
|
|
|
5428
|
-
async
|
|
5429
|
-
Util.validateModel(request);
|
|
5430
|
-
let query = { };
|
|
5431
|
-
if (!Util.isUnset(request.bid)) {
|
|
5432
|
-
query["Bid"] = request.bid;
|
|
5433
|
-
}
|
|
5434
|
-
|
|
5435
|
-
if (!Util.isUnset(request.country)) {
|
|
5436
|
-
query["Country"] = request.country;
|
|
5437
|
-
}
|
|
5438
|
-
|
|
5439
|
-
if (!Util.isUnset(request.gmtWakeup)) {
|
|
5440
|
-
query["GmtWakeup"] = request.gmtWakeup;
|
|
5441
|
-
}
|
|
5442
|
-
|
|
5443
|
-
if (!Util.isUnset(request.hid)) {
|
|
5444
|
-
query["Hid"] = request.hid;
|
|
5445
|
-
}
|
|
5446
|
-
|
|
5447
|
-
if (!Util.isUnset(request.interrupt)) {
|
|
5448
|
-
query["Interrupt"] = request.interrupt;
|
|
5449
|
-
}
|
|
5450
|
-
|
|
5451
|
-
if (!Util.isUnset(request.invoker)) {
|
|
5452
|
-
query["Invoker"] = request.invoker;
|
|
5453
|
-
}
|
|
5454
|
-
|
|
5455
|
-
if (!Util.isUnset(request.level)) {
|
|
5456
|
-
query["Level"] = request.level;
|
|
5457
|
-
}
|
|
5458
|
-
|
|
5459
|
-
if (!Util.isUnset(request.message)) {
|
|
5460
|
-
query["Message"] = request.message;
|
|
5461
|
-
}
|
|
5462
|
-
|
|
5463
|
-
if (!Util.isUnset(request.pk)) {
|
|
5464
|
-
query["Pk"] = request.pk;
|
|
5465
|
-
}
|
|
5466
|
-
|
|
5467
|
-
if (!Util.isUnset(request.prompt)) {
|
|
5468
|
-
query["Prompt"] = request.prompt;
|
|
5469
|
-
}
|
|
5470
|
-
|
|
5471
|
-
if (!Util.isUnset(request.success)) {
|
|
5472
|
-
query["Success"] = request.success;
|
|
5473
|
-
}
|
|
5474
|
-
|
|
5475
|
-
if (!Util.isUnset(request.taskExtraData)) {
|
|
5476
|
-
query["TaskExtraData"] = request.taskExtraData;
|
|
5477
|
-
}
|
|
5478
|
-
|
|
5479
|
-
if (!Util.isUnset(request.taskIdentifier)) {
|
|
5480
|
-
query["TaskIdentifier"] = request.taskIdentifier;
|
|
5481
|
-
}
|
|
5482
|
-
|
|
5483
|
-
if (!Util.isUnset(request.url)) {
|
|
5484
|
-
query["Url"] = request.url;
|
|
5485
|
-
}
|
|
5486
|
-
|
|
5487
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
5488
|
-
query: OpenApiUtil.query(query),
|
|
5489
|
-
});
|
|
5490
|
-
let params = new $OpenApi.Params({
|
|
5491
|
-
action: "CheckResource",
|
|
5492
|
-
version: "2020-01-01",
|
|
5493
|
-
protocol: "HTTPS",
|
|
5494
|
-
pathname: "/",
|
|
5495
|
-
method: "POST",
|
|
5496
|
-
authType: "AK",
|
|
5497
|
-
style: "RPC",
|
|
5498
|
-
reqBodyType: "formData",
|
|
5499
|
-
bodyType: "json",
|
|
5500
|
-
});
|
|
5501
|
-
return $tea.cast<CheckResourceResponse>(await this.callApi(params, req, runtime), new CheckResourceResponse({}));
|
|
5502
|
-
}
|
|
5503
|
-
|
|
5504
|
-
async checkResource(request: CheckResourceRequest): Promise<CheckResourceResponse> {
|
|
5505
|
-
let runtime = new $Util.RuntimeOptions({ });
|
|
5506
|
-
return await this.checkResourceWithOptions(request, runtime);
|
|
5507
|
-
}
|
|
5508
|
-
|
|
5509
|
-
async createProjectWithOptions(request: CreateProjectRequest, runtime: $Util.RuntimeOptions): Promise<CreateProjectResponse> {
|
|
5510
|
-
Util.validateModel(request);
|
|
5511
|
-
let query = { };
|
|
5512
|
-
if (!Util.isUnset(request.builderUserIdList)) {
|
|
5513
|
-
query["BuilderUserIdList"] = request.builderUserIdList;
|
|
5514
|
-
}
|
|
5515
|
-
|
|
5516
|
-
if (!Util.isUnset(request.businessId)) {
|
|
5517
|
-
query["BusinessId"] = request.businessId;
|
|
5518
|
-
}
|
|
5519
|
-
|
|
5520
|
-
if (!Util.isUnset(request.businessUserIdList)) {
|
|
5521
|
-
query["BusinessUserIdList"] = request.businessUserIdList;
|
|
5522
|
-
}
|
|
5523
|
-
|
|
5524
|
-
if (!Util.isUnset(request.gatherUserIdList)) {
|
|
5525
|
-
query["GatherUserIdList"] = request.gatherUserIdList;
|
|
5526
|
-
}
|
|
5527
|
-
|
|
5528
|
-
if (!Util.isUnset(request.name)) {
|
|
5529
|
-
query["Name"] = request.name;
|
|
5530
|
-
}
|
|
5531
|
-
|
|
5532
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
5533
|
-
query: OpenApiUtil.query(query),
|
|
5534
|
-
});
|
|
5535
|
-
let params = new $OpenApi.Params({
|
|
5536
|
-
action: "CreateProject",
|
|
5537
|
-
version: "2020-01-01",
|
|
5538
|
-
protocol: "HTTPS",
|
|
5539
|
-
pathname: "/",
|
|
5540
|
-
method: "POST",
|
|
5541
|
-
authType: "AK",
|
|
5542
|
-
style: "RPC",
|
|
5543
|
-
reqBodyType: "formData",
|
|
5544
|
-
bodyType: "json",
|
|
5545
|
-
});
|
|
5546
|
-
return $tea.cast<CreateProjectResponse>(await this.callApi(params, req, runtime), new CreateProjectResponse({}));
|
|
5547
|
-
}
|
|
5548
|
-
|
|
5549
|
-
async createProject(request: CreateProjectRequest): Promise<CreateProjectResponse> {
|
|
5550
|
-
let runtime = new $Util.RuntimeOptions({ });
|
|
5551
|
-
return await this.createProjectWithOptions(request, runtime);
|
|
5552
|
-
}
|
|
5553
|
-
|
|
5554
|
-
async createSceneWithOptions(request: CreateSceneRequest, runtime: $Util.RuntimeOptions): Promise<CreateSceneResponse> {
|
|
5555
|
-
Util.validateModel(request);
|
|
5556
|
-
let query = { };
|
|
5557
|
-
if (!Util.isUnset(request.name)) {
|
|
5558
|
-
query["Name"] = request.name;
|
|
5559
|
-
}
|
|
5560
|
-
|
|
5561
|
-
if (!Util.isUnset(request.projectId)) {
|
|
5562
|
-
query["ProjectId"] = request.projectId;
|
|
5563
|
-
}
|
|
5564
|
-
|
|
5565
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
5566
|
-
query: OpenApiUtil.query(query),
|
|
5567
|
-
});
|
|
5568
|
-
let params = new $OpenApi.Params({
|
|
5569
|
-
action: "CreateScene",
|
|
5570
|
-
version: "2020-01-01",
|
|
5571
|
-
protocol: "HTTPS",
|
|
5572
|
-
pathname: "/",
|
|
5573
|
-
method: "POST",
|
|
5574
|
-
authType: "AK",
|
|
5575
|
-
style: "RPC",
|
|
5576
|
-
reqBodyType: "formData",
|
|
5577
|
-
bodyType: "json",
|
|
5578
|
-
});
|
|
5579
|
-
return $tea.cast<CreateSceneResponse>(await this.callApi(params, req, runtime), new CreateSceneResponse({}));
|
|
5580
|
-
}
|
|
5581
|
-
|
|
5582
|
-
async createScene(request: CreateSceneRequest): Promise<CreateSceneResponse> {
|
|
5583
|
-
let runtime = new $Util.RuntimeOptions({ });
|
|
5584
|
-
return await this.createSceneWithOptions(request, runtime);
|
|
5585
|
-
}
|
|
5586
|
-
|
|
5587
|
-
async deleteFileWithOptions(request: DeleteFileRequest, runtime: $Util.RuntimeOptions): Promise<DeleteFileResponse> {
|
|
5588
|
-
Util.validateModel(request);
|
|
5589
|
-
let query = { };
|
|
5590
|
-
if (!Util.isUnset(request.paramFile)) {
|
|
5591
|
-
query["ParamFile"] = request.paramFile;
|
|
5592
|
-
}
|
|
5593
|
-
|
|
5594
|
-
if (!Util.isUnset(request.subSceneUuid)) {
|
|
5595
|
-
query["SubSceneUuid"] = request.subSceneUuid;
|
|
5596
|
-
}
|
|
5597
|
-
|
|
5598
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
5599
|
-
query: OpenApiUtil.query(query),
|
|
5600
|
-
});
|
|
5601
|
-
let params = new $OpenApi.Params({
|
|
5602
|
-
action: "DeleteFile",
|
|
5603
|
-
version: "2020-01-01",
|
|
5604
|
-
protocol: "HTTPS",
|
|
5605
|
-
pathname: "/",
|
|
5606
|
-
method: "POST",
|
|
5607
|
-
authType: "AK",
|
|
5608
|
-
style: "RPC",
|
|
5609
|
-
reqBodyType: "formData",
|
|
5610
|
-
bodyType: "json",
|
|
5611
|
-
});
|
|
5612
|
-
return $tea.cast<DeleteFileResponse>(await this.callApi(params, req, runtime), new DeleteFileResponse({}));
|
|
5613
|
-
}
|
|
5614
|
-
|
|
5615
|
-
async deleteFile(request: DeleteFileRequest): Promise<DeleteFileResponse> {
|
|
5616
|
-
let runtime = new $Util.RuntimeOptions({ });
|
|
5617
|
-
return await this.deleteFileWithOptions(request, runtime);
|
|
5618
|
-
}
|
|
5619
|
-
|
|
5620
|
-
async deleteProjectWithOptions(request: DeleteProjectRequest, runtime: $Util.RuntimeOptions): Promise<DeleteProjectResponse> {
|
|
5487
|
+
async checkUserPropertyWithOptions(request: CheckUserPropertyRequest, runtime: $Util.RuntimeOptions): Promise<CheckUserPropertyResponse> {
|
|
5621
5488
|
Util.validateModel(request);
|
|
5622
5489
|
let query = { };
|
|
5623
|
-
if (!Util.isUnset(request.
|
|
5624
|
-
query["
|
|
5490
|
+
if (!Util.isUnset(request.uid)) {
|
|
5491
|
+
query["Uid"] = request.uid;
|
|
5625
5492
|
}
|
|
5626
5493
|
|
|
5627
5494
|
let req = new $OpenApi.OpenApiRequest({
|
|
5628
5495
|
query: OpenApiUtil.query(query),
|
|
5629
5496
|
});
|
|
5630
5497
|
let params = new $OpenApi.Params({
|
|
5631
|
-
action: "
|
|
5498
|
+
action: "CheckUserProperty",
|
|
5632
5499
|
version: "2020-01-01",
|
|
5633
5500
|
protocol: "HTTPS",
|
|
5634
5501
|
pathname: "/",
|
|
@@ -5638,12 +5505,12 @@ export default class Client extends OpenApi {
|
|
|
5638
5505
|
reqBodyType: "formData",
|
|
5639
5506
|
bodyType: "json",
|
|
5640
5507
|
});
|
|
5641
|
-
return $tea.cast<
|
|
5508
|
+
return $tea.cast<CheckUserPropertyResponse>(await this.callApi(params, req, runtime), new CheckUserPropertyResponse({}));
|
|
5642
5509
|
}
|
|
5643
5510
|
|
|
5644
|
-
async
|
|
5511
|
+
async checkUserProperty(request: CheckUserPropertyRequest): Promise<CheckUserPropertyResponse> {
|
|
5645
5512
|
let runtime = new $Util.RuntimeOptions({ });
|
|
5646
|
-
return await this.
|
|
5513
|
+
return await this.checkUserPropertyWithOptions(request, runtime);
|
|
5647
5514
|
}
|
|
5648
5515
|
|
|
5649
5516
|
async detailProjectWithOptions(request: DetailProjectRequest, runtime: $Util.RuntimeOptions): Promise<DetailProjectResponse> {
|
|
@@ -6063,11 +5930,11 @@ export default class Client extends OpenApi {
|
|
|
6063
5930
|
return await this.getOssPolicyWithOptions(request, runtime);
|
|
6064
5931
|
}
|
|
6065
5932
|
|
|
6066
|
-
async
|
|
5933
|
+
async getPackSceneTaskStatusWithOptions(request: GetPackSceneTaskStatusRequest, runtime: $Util.RuntimeOptions): Promise<GetPackSceneTaskStatusResponse> {
|
|
6067
5934
|
Util.validateModel(request);
|
|
6068
5935
|
let query = { };
|
|
6069
|
-
if (!Util.isUnset(request.
|
|
6070
|
-
query["
|
|
5936
|
+
if (!Util.isUnset(request.taskId)) {
|
|
5937
|
+
query["TaskId"] = request.taskId;
|
|
6071
5938
|
}
|
|
6072
5939
|
|
|
6073
5940
|
if (!Util.isUnset(request.type)) {
|
|
@@ -6078,7 +5945,7 @@ export default class Client extends OpenApi {
|
|
|
6078
5945
|
query: OpenApiUtil.query(query),
|
|
6079
5946
|
});
|
|
6080
5947
|
let params = new $OpenApi.Params({
|
|
6081
|
-
action: "
|
|
5948
|
+
action: "GetPackSceneTaskStatus",
|
|
6082
5949
|
version: "2020-01-01",
|
|
6083
5950
|
protocol: "HTTPS",
|
|
6084
5951
|
pathname: "/",
|
|
@@ -6088,12 +5955,12 @@ export default class Client extends OpenApi {
|
|
|
6088
5955
|
reqBodyType: "formData",
|
|
6089
5956
|
bodyType: "json",
|
|
6090
5957
|
});
|
|
6091
|
-
return $tea.cast<
|
|
5958
|
+
return $tea.cast<GetPackSceneTaskStatusResponse>(await this.callApi(params, req, runtime), new GetPackSceneTaskStatusResponse({}));
|
|
6092
5959
|
}
|
|
6093
5960
|
|
|
6094
|
-
async
|
|
5961
|
+
async getPackSceneTaskStatus(request: GetPackSceneTaskStatusRequest): Promise<GetPackSceneTaskStatusResponse> {
|
|
6095
5962
|
let runtime = new $Util.RuntimeOptions({ });
|
|
6096
|
-
return await this.
|
|
5963
|
+
return await this.getPackSceneTaskStatusWithOptions(request, runtime);
|
|
6097
5964
|
}
|
|
6098
5965
|
|
|
6099
5966
|
async getRectifyImageWithOptions(request: GetRectifyImageRequest, runtime: $Util.RuntimeOptions): Promise<GetRectifyImageResponse> {
|
|
@@ -6154,6 +6021,35 @@ export default class Client extends OpenApi {
|
|
|
6154
6021
|
return await this.getSceneBuildTaskStatusWithOptions(request, runtime);
|
|
6155
6022
|
}
|
|
6156
6023
|
|
|
6024
|
+
async getScenePackUrlWithOptions(request: GetScenePackUrlRequest, runtime: $Util.RuntimeOptions): Promise<GetScenePackUrlResponse> {
|
|
6025
|
+
Util.validateModel(request);
|
|
6026
|
+
let query = { };
|
|
6027
|
+
if (!Util.isUnset(request.sceneId)) {
|
|
6028
|
+
query["SceneId"] = request.sceneId;
|
|
6029
|
+
}
|
|
6030
|
+
|
|
6031
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
6032
|
+
query: OpenApiUtil.query(query),
|
|
6033
|
+
});
|
|
6034
|
+
let params = new $OpenApi.Params({
|
|
6035
|
+
action: "GetScenePackUrl",
|
|
6036
|
+
version: "2020-01-01",
|
|
6037
|
+
protocol: "HTTPS",
|
|
6038
|
+
pathname: "/",
|
|
6039
|
+
method: "POST",
|
|
6040
|
+
authType: "AK",
|
|
6041
|
+
style: "RPC",
|
|
6042
|
+
reqBodyType: "formData",
|
|
6043
|
+
bodyType: "json",
|
|
6044
|
+
});
|
|
6045
|
+
return $tea.cast<GetScenePackUrlResponse>(await this.callApi(params, req, runtime), new GetScenePackUrlResponse({}));
|
|
6046
|
+
}
|
|
6047
|
+
|
|
6048
|
+
async getScenePackUrl(request: GetScenePackUrlRequest): Promise<GetScenePackUrlResponse> {
|
|
6049
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
6050
|
+
return await this.getScenePackUrlWithOptions(request, runtime);
|
|
6051
|
+
}
|
|
6052
|
+
|
|
6157
6053
|
async getScenePreviewDataWithOptions(request: GetScenePreviewDataRequest, runtime: $Util.RuntimeOptions): Promise<GetScenePreviewDataResponse> {
|
|
6158
6054
|
Util.validateModel(request);
|
|
6159
6055
|
let query = { };
|
|
@@ -6232,6 +6128,35 @@ export default class Client extends OpenApi {
|
|
|
6232
6128
|
return await this.getScenePreviewInfoWithOptions(request, runtime);
|
|
6233
6129
|
}
|
|
6234
6130
|
|
|
6131
|
+
async getScenePreviewResourceWithOptions(request: GetScenePreviewResourceRequest, runtime: $Util.RuntimeOptions): Promise<GetScenePreviewResourceResponse> {
|
|
6132
|
+
Util.validateModel(request);
|
|
6133
|
+
let query = { };
|
|
6134
|
+
if (!Util.isUnset(request.previewToken)) {
|
|
6135
|
+
query["PreviewToken"] = request.previewToken;
|
|
6136
|
+
}
|
|
6137
|
+
|
|
6138
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
6139
|
+
query: OpenApiUtil.query(query),
|
|
6140
|
+
});
|
|
6141
|
+
let params = new $OpenApi.Params({
|
|
6142
|
+
action: "GetScenePreviewResource",
|
|
6143
|
+
version: "2020-01-01",
|
|
6144
|
+
protocol: "HTTPS",
|
|
6145
|
+
pathname: "/",
|
|
6146
|
+
method: "POST",
|
|
6147
|
+
authType: "AK",
|
|
6148
|
+
style: "RPC",
|
|
6149
|
+
reqBodyType: "formData",
|
|
6150
|
+
bodyType: "json",
|
|
6151
|
+
});
|
|
6152
|
+
return $tea.cast<GetScenePreviewResourceResponse>(await this.callApi(params, req, runtime), new GetScenePreviewResourceResponse({}));
|
|
6153
|
+
}
|
|
6154
|
+
|
|
6155
|
+
async getScenePreviewResource(request: GetScenePreviewResourceRequest): Promise<GetScenePreviewResourceResponse> {
|
|
6156
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
6157
|
+
return await this.getScenePreviewResourceWithOptions(request, runtime);
|
|
6158
|
+
}
|
|
6159
|
+
|
|
6235
6160
|
async getSingleConnDataWithOptions(request: GetSingleConnDataRequest, runtime: $Util.RuntimeOptions): Promise<GetSingleConnDataResponse> {
|
|
6236
6161
|
Util.validateModel(request);
|
|
6237
6162
|
let query = { };
|
|
@@ -6500,39 +6425,6 @@ export default class Client extends OpenApi {
|
|
|
6500
6425
|
return await this.listSceneWithOptions(request, runtime);
|
|
6501
6426
|
}
|
|
6502
6427
|
|
|
6503
|
-
async listScenesWithOptions(request: ListScenesRequest, runtime: $Util.RuntimeOptions): Promise<ListScenesResponse> {
|
|
6504
|
-
Util.validateModel(request);
|
|
6505
|
-
let query = { };
|
|
6506
|
-
if (!Util.isUnset(request.isPublishQuery)) {
|
|
6507
|
-
query["IsPublishQuery"] = request.isPublishQuery;
|
|
6508
|
-
}
|
|
6509
|
-
|
|
6510
|
-
if (!Util.isUnset(request.projectId)) {
|
|
6511
|
-
query["ProjectId"] = request.projectId;
|
|
6512
|
-
}
|
|
6513
|
-
|
|
6514
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
6515
|
-
query: OpenApiUtil.query(query),
|
|
6516
|
-
});
|
|
6517
|
-
let params = new $OpenApi.Params({
|
|
6518
|
-
action: "ListScenes",
|
|
6519
|
-
version: "2020-01-01",
|
|
6520
|
-
protocol: "HTTPS",
|
|
6521
|
-
pathname: "/",
|
|
6522
|
-
method: "POST",
|
|
6523
|
-
authType: "AK",
|
|
6524
|
-
style: "RPC",
|
|
6525
|
-
reqBodyType: "formData",
|
|
6526
|
-
bodyType: "json",
|
|
6527
|
-
});
|
|
6528
|
-
return $tea.cast<ListScenesResponse>(await this.callApi(params, req, runtime), new ListScenesResponse({}));
|
|
6529
|
-
}
|
|
6530
|
-
|
|
6531
|
-
async listScenes(request: ListScenesRequest): Promise<ListScenesResponse> {
|
|
6532
|
-
let runtime = new $Util.RuntimeOptions({ });
|
|
6533
|
-
return await this.listScenesWithOptions(request, runtime);
|
|
6534
|
-
}
|
|
6535
|
-
|
|
6536
6428
|
async listSubSceneWithOptions(request: ListSubSceneRequest, runtime: $Util.RuntimeOptions): Promise<ListSubSceneResponse> {
|
|
6537
6429
|
Util.validateModel(request);
|
|
6538
6430
|
let query = { };
|
|
@@ -6603,6 +6495,39 @@ export default class Client extends OpenApi {
|
|
|
6603
6495
|
return await this.optimizeRightAngleWithOptions(request, runtime);
|
|
6604
6496
|
}
|
|
6605
6497
|
|
|
6498
|
+
async packSceneWithOptions(request: PackSceneRequest, runtime: $Util.RuntimeOptions): Promise<PackSceneResponse> {
|
|
6499
|
+
Util.validateModel(request);
|
|
6500
|
+
let query = { };
|
|
6501
|
+
if (!Util.isUnset(request.sceneId)) {
|
|
6502
|
+
query["SceneId"] = request.sceneId;
|
|
6503
|
+
}
|
|
6504
|
+
|
|
6505
|
+
if (!Util.isUnset(request.type)) {
|
|
6506
|
+
query["Type"] = request.type;
|
|
6507
|
+
}
|
|
6508
|
+
|
|
6509
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
6510
|
+
query: OpenApiUtil.query(query),
|
|
6511
|
+
});
|
|
6512
|
+
let params = new $OpenApi.Params({
|
|
6513
|
+
action: "PackScene",
|
|
6514
|
+
version: "2020-01-01",
|
|
6515
|
+
protocol: "HTTPS",
|
|
6516
|
+
pathname: "/",
|
|
6517
|
+
method: "POST",
|
|
6518
|
+
authType: "AK",
|
|
6519
|
+
style: "RPC",
|
|
6520
|
+
reqBodyType: "formData",
|
|
6521
|
+
bodyType: "json",
|
|
6522
|
+
});
|
|
6523
|
+
return $tea.cast<PackSceneResponse>(await this.callApi(params, req, runtime), new PackSceneResponse({}));
|
|
6524
|
+
}
|
|
6525
|
+
|
|
6526
|
+
async packScene(request: PackSceneRequest): Promise<PackSceneResponse> {
|
|
6527
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
6528
|
+
return await this.packSceneWithOptions(request, runtime);
|
|
6529
|
+
}
|
|
6530
|
+
|
|
6606
6531
|
async predImageWithOptions(request: PredImageRequest, runtime: $Util.RuntimeOptions): Promise<PredImageResponse> {
|
|
6607
6532
|
Util.validateModel(request);
|
|
6608
6533
|
let query = { };
|