@alicloud/tdsr20200101 3.0.8 → 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/dist/client.d.ts +233 -0
- package/dist/client.js +430 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +554 -0
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
|
}
|
|
@@ -363,10 +375,12 @@ export class AddSceneResponseBody extends $tea.Model {
|
|
|
363
375
|
|
|
364
376
|
export class AddSceneResponse extends $tea.Model {
|
|
365
377
|
headers: { [key: string]: string };
|
|
378
|
+
statusCode: number;
|
|
366
379
|
body: AddSceneResponseBody;
|
|
367
380
|
static names(): { [key: string]: string } {
|
|
368
381
|
return {
|
|
369
382
|
headers: 'headers',
|
|
383
|
+
statusCode: 'statusCode',
|
|
370
384
|
body: 'body',
|
|
371
385
|
};
|
|
372
386
|
}
|
|
@@ -374,6 +388,7 @@ export class AddSceneResponse extends $tea.Model {
|
|
|
374
388
|
static types(): { [key: string]: any } {
|
|
375
389
|
return {
|
|
376
390
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
391
|
+
statusCode: 'number',
|
|
377
392
|
body: AddSceneResponseBody,
|
|
378
393
|
};
|
|
379
394
|
}
|
|
@@ -441,10 +456,12 @@ export class AddSubSceneResponseBody extends $tea.Model {
|
|
|
441
456
|
|
|
442
457
|
export class AddSubSceneResponse extends $tea.Model {
|
|
443
458
|
headers: { [key: string]: string };
|
|
459
|
+
statusCode: number;
|
|
444
460
|
body: AddSubSceneResponseBody;
|
|
445
461
|
static names(): { [key: string]: string } {
|
|
446
462
|
return {
|
|
447
463
|
headers: 'headers',
|
|
464
|
+
statusCode: 'statusCode',
|
|
448
465
|
body: 'body',
|
|
449
466
|
};
|
|
450
467
|
}
|
|
@@ -452,6 +469,7 @@ export class AddSubSceneResponse extends $tea.Model {
|
|
|
452
469
|
static types(): { [key: string]: any } {
|
|
453
470
|
return {
|
|
454
471
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
472
|
+
statusCode: 'number',
|
|
455
473
|
body: AddSubSceneResponseBody,
|
|
456
474
|
};
|
|
457
475
|
}
|
|
@@ -513,10 +531,12 @@ export class CheckUserPropertyResponseBody extends $tea.Model {
|
|
|
513
531
|
|
|
514
532
|
export class CheckUserPropertyResponse extends $tea.Model {
|
|
515
533
|
headers: { [key: string]: string };
|
|
534
|
+
statusCode: number;
|
|
516
535
|
body: CheckUserPropertyResponseBody;
|
|
517
536
|
static names(): { [key: string]: string } {
|
|
518
537
|
return {
|
|
519
538
|
headers: 'headers',
|
|
539
|
+
statusCode: 'statusCode',
|
|
520
540
|
body: 'body',
|
|
521
541
|
};
|
|
522
542
|
}
|
|
@@ -524,6 +544,7 @@ export class CheckUserPropertyResponse extends $tea.Model {
|
|
|
524
544
|
static types(): { [key: string]: any } {
|
|
525
545
|
return {
|
|
526
546
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
547
|
+
statusCode: 'number',
|
|
527
548
|
body: CheckUserPropertyResponseBody,
|
|
528
549
|
};
|
|
529
550
|
}
|
|
@@ -603,10 +624,12 @@ export class DetailProjectResponseBody extends $tea.Model {
|
|
|
603
624
|
|
|
604
625
|
export class DetailProjectResponse extends $tea.Model {
|
|
605
626
|
headers: { [key: string]: string };
|
|
627
|
+
statusCode: number;
|
|
606
628
|
body: DetailProjectResponseBody;
|
|
607
629
|
static names(): { [key: string]: string } {
|
|
608
630
|
return {
|
|
609
631
|
headers: 'headers',
|
|
632
|
+
statusCode: 'statusCode',
|
|
610
633
|
body: 'body',
|
|
611
634
|
};
|
|
612
635
|
}
|
|
@@ -614,6 +637,7 @@ export class DetailProjectResponse extends $tea.Model {
|
|
|
614
637
|
static types(): { [key: string]: any } {
|
|
615
638
|
return {
|
|
616
639
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
640
|
+
statusCode: 'number',
|
|
617
641
|
body: DetailProjectResponseBody,
|
|
618
642
|
};
|
|
619
643
|
}
|
|
@@ -699,10 +723,12 @@ export class DetailSceneResponseBody extends $tea.Model {
|
|
|
699
723
|
|
|
700
724
|
export class DetailSceneResponse extends $tea.Model {
|
|
701
725
|
headers: { [key: string]: string };
|
|
726
|
+
statusCode: number;
|
|
702
727
|
body: DetailSceneResponseBody;
|
|
703
728
|
static names(): { [key: string]: string } {
|
|
704
729
|
return {
|
|
705
730
|
headers: 'headers',
|
|
731
|
+
statusCode: 'statusCode',
|
|
706
732
|
body: 'body',
|
|
707
733
|
};
|
|
708
734
|
}
|
|
@@ -710,6 +736,7 @@ export class DetailSceneResponse extends $tea.Model {
|
|
|
710
736
|
static types(): { [key: string]: any } {
|
|
711
737
|
return {
|
|
712
738
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
739
|
+
statusCode: 'number',
|
|
713
740
|
body: DetailSceneResponseBody,
|
|
714
741
|
};
|
|
715
742
|
}
|
|
@@ -807,10 +834,12 @@ export class DetailSubSceneResponseBody extends $tea.Model {
|
|
|
807
834
|
|
|
808
835
|
export class DetailSubSceneResponse extends $tea.Model {
|
|
809
836
|
headers: { [key: string]: string };
|
|
837
|
+
statusCode: number;
|
|
810
838
|
body: DetailSubSceneResponseBody;
|
|
811
839
|
static names(): { [key: string]: string } {
|
|
812
840
|
return {
|
|
813
841
|
headers: 'headers',
|
|
842
|
+
statusCode: 'statusCode',
|
|
814
843
|
body: 'body',
|
|
815
844
|
};
|
|
816
845
|
}
|
|
@@ -818,6 +847,7 @@ export class DetailSubSceneResponse extends $tea.Model {
|
|
|
818
847
|
static types(): { [key: string]: any } {
|
|
819
848
|
return {
|
|
820
849
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
850
|
+
statusCode: 'number',
|
|
821
851
|
body: DetailSubSceneResponseBody,
|
|
822
852
|
};
|
|
823
853
|
}
|
|
@@ -876,10 +906,12 @@ export class DropProjectResponseBody extends $tea.Model {
|
|
|
876
906
|
|
|
877
907
|
export class DropProjectResponse extends $tea.Model {
|
|
878
908
|
headers: { [key: string]: string };
|
|
909
|
+
statusCode: number;
|
|
879
910
|
body: DropProjectResponseBody;
|
|
880
911
|
static names(): { [key: string]: string } {
|
|
881
912
|
return {
|
|
882
913
|
headers: 'headers',
|
|
914
|
+
statusCode: 'statusCode',
|
|
883
915
|
body: 'body',
|
|
884
916
|
};
|
|
885
917
|
}
|
|
@@ -887,6 +919,7 @@ export class DropProjectResponse extends $tea.Model {
|
|
|
887
919
|
static types(): { [key: string]: any } {
|
|
888
920
|
return {
|
|
889
921
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
922
|
+
statusCode: 'number',
|
|
890
923
|
body: DropProjectResponseBody,
|
|
891
924
|
};
|
|
892
925
|
}
|
|
@@ -945,10 +978,12 @@ export class DropSceneResponseBody extends $tea.Model {
|
|
|
945
978
|
|
|
946
979
|
export class DropSceneResponse extends $tea.Model {
|
|
947
980
|
headers: { [key: string]: string };
|
|
981
|
+
statusCode: number;
|
|
948
982
|
body: DropSceneResponseBody;
|
|
949
983
|
static names(): { [key: string]: string } {
|
|
950
984
|
return {
|
|
951
985
|
headers: 'headers',
|
|
986
|
+
statusCode: 'statusCode',
|
|
952
987
|
body: 'body',
|
|
953
988
|
};
|
|
954
989
|
}
|
|
@@ -956,6 +991,7 @@ export class DropSceneResponse extends $tea.Model {
|
|
|
956
991
|
static types(): { [key: string]: any } {
|
|
957
992
|
return {
|
|
958
993
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
994
|
+
statusCode: 'number',
|
|
959
995
|
body: DropSceneResponseBody,
|
|
960
996
|
};
|
|
961
997
|
}
|
|
@@ -1014,10 +1050,12 @@ export class DropSubSceneResponseBody extends $tea.Model {
|
|
|
1014
1050
|
|
|
1015
1051
|
export class DropSubSceneResponse extends $tea.Model {
|
|
1016
1052
|
headers: { [key: string]: string };
|
|
1053
|
+
statusCode: number;
|
|
1017
1054
|
body: DropSubSceneResponseBody;
|
|
1018
1055
|
static names(): { [key: string]: string } {
|
|
1019
1056
|
return {
|
|
1020
1057
|
headers: 'headers',
|
|
1058
|
+
statusCode: 'statusCode',
|
|
1021
1059
|
body: 'body',
|
|
1022
1060
|
};
|
|
1023
1061
|
}
|
|
@@ -1025,6 +1063,7 @@ export class DropSubSceneResponse extends $tea.Model {
|
|
|
1025
1063
|
static types(): { [key: string]: any } {
|
|
1026
1064
|
return {
|
|
1027
1065
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1066
|
+
statusCode: 'number',
|
|
1028
1067
|
body: DropSubSceneResponseBody,
|
|
1029
1068
|
};
|
|
1030
1069
|
}
|
|
@@ -1092,10 +1131,12 @@ export class GetConnDataResponseBody extends $tea.Model {
|
|
|
1092
1131
|
|
|
1093
1132
|
export class GetConnDataResponse extends $tea.Model {
|
|
1094
1133
|
headers: { [key: string]: string };
|
|
1134
|
+
statusCode: number;
|
|
1095
1135
|
body: GetConnDataResponseBody;
|
|
1096
1136
|
static names(): { [key: string]: string } {
|
|
1097
1137
|
return {
|
|
1098
1138
|
headers: 'headers',
|
|
1139
|
+
statusCode: 'statusCode',
|
|
1099
1140
|
body: 'body',
|
|
1100
1141
|
};
|
|
1101
1142
|
}
|
|
@@ -1103,6 +1144,7 @@ export class GetConnDataResponse extends $tea.Model {
|
|
|
1103
1144
|
static types(): { [key: string]: any } {
|
|
1104
1145
|
return {
|
|
1105
1146
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1147
|
+
statusCode: 'number',
|
|
1106
1148
|
body: GetConnDataResponseBody,
|
|
1107
1149
|
};
|
|
1108
1150
|
}
|
|
@@ -1173,10 +1215,12 @@ export class GetHotspotConfigResponseBody extends $tea.Model {
|
|
|
1173
1215
|
|
|
1174
1216
|
export class GetHotspotConfigResponse extends $tea.Model {
|
|
1175
1217
|
headers: { [key: string]: string };
|
|
1218
|
+
statusCode: number;
|
|
1176
1219
|
body: GetHotspotConfigResponseBody;
|
|
1177
1220
|
static names(): { [key: string]: string } {
|
|
1178
1221
|
return {
|
|
1179
1222
|
headers: 'headers',
|
|
1223
|
+
statusCode: 'statusCode',
|
|
1180
1224
|
body: 'body',
|
|
1181
1225
|
};
|
|
1182
1226
|
}
|
|
@@ -1184,6 +1228,7 @@ export class GetHotspotConfigResponse extends $tea.Model {
|
|
|
1184
1228
|
static types(): { [key: string]: any } {
|
|
1185
1229
|
return {
|
|
1186
1230
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1231
|
+
statusCode: 'number',
|
|
1187
1232
|
body: GetHotspotConfigResponseBody,
|
|
1188
1233
|
};
|
|
1189
1234
|
}
|
|
@@ -1254,10 +1299,12 @@ export class GetHotspotSceneDataResponseBody extends $tea.Model {
|
|
|
1254
1299
|
|
|
1255
1300
|
export class GetHotspotSceneDataResponse extends $tea.Model {
|
|
1256
1301
|
headers: { [key: string]: string };
|
|
1302
|
+
statusCode: number;
|
|
1257
1303
|
body: GetHotspotSceneDataResponseBody;
|
|
1258
1304
|
static names(): { [key: string]: string } {
|
|
1259
1305
|
return {
|
|
1260
1306
|
headers: 'headers',
|
|
1307
|
+
statusCode: 'statusCode',
|
|
1261
1308
|
body: 'body',
|
|
1262
1309
|
};
|
|
1263
1310
|
}
|
|
@@ -1265,6 +1312,7 @@ export class GetHotspotSceneDataResponse extends $tea.Model {
|
|
|
1265
1312
|
static types(): { [key: string]: any } {
|
|
1266
1313
|
return {
|
|
1267
1314
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1315
|
+
statusCode: 'number',
|
|
1268
1316
|
body: GetHotspotSceneDataResponseBody,
|
|
1269
1317
|
};
|
|
1270
1318
|
}
|
|
@@ -1338,10 +1386,12 @@ export class GetHotspotTagResponseBody extends $tea.Model {
|
|
|
1338
1386
|
|
|
1339
1387
|
export class GetHotspotTagResponse extends $tea.Model {
|
|
1340
1388
|
headers: { [key: string]: string };
|
|
1389
|
+
statusCode: number;
|
|
1341
1390
|
body: GetHotspotTagResponseBody;
|
|
1342
1391
|
static names(): { [key: string]: string } {
|
|
1343
1392
|
return {
|
|
1344
1393
|
headers: 'headers',
|
|
1394
|
+
statusCode: 'statusCode',
|
|
1345
1395
|
body: 'body',
|
|
1346
1396
|
};
|
|
1347
1397
|
}
|
|
@@ -1349,6 +1399,7 @@ export class GetHotspotTagResponse extends $tea.Model {
|
|
|
1349
1399
|
static types(): { [key: string]: any } {
|
|
1350
1400
|
return {
|
|
1351
1401
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1402
|
+
statusCode: 'number',
|
|
1352
1403
|
body: GetHotspotTagResponseBody,
|
|
1353
1404
|
};
|
|
1354
1405
|
}
|
|
@@ -1410,10 +1461,12 @@ export class GetLayoutDataResponseBody extends $tea.Model {
|
|
|
1410
1461
|
|
|
1411
1462
|
export class GetLayoutDataResponse extends $tea.Model {
|
|
1412
1463
|
headers: { [key: string]: string };
|
|
1464
|
+
statusCode: number;
|
|
1413
1465
|
body: GetLayoutDataResponseBody;
|
|
1414
1466
|
static names(): { [key: string]: string } {
|
|
1415
1467
|
return {
|
|
1416
1468
|
headers: 'headers',
|
|
1469
|
+
statusCode: 'statusCode',
|
|
1417
1470
|
body: 'body',
|
|
1418
1471
|
};
|
|
1419
1472
|
}
|
|
@@ -1421,6 +1474,7 @@ export class GetLayoutDataResponse extends $tea.Model {
|
|
|
1421
1474
|
static types(): { [key: string]: any } {
|
|
1422
1475
|
return {
|
|
1423
1476
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1477
|
+
statusCode: 'number',
|
|
1424
1478
|
body: GetLayoutDataResponseBody,
|
|
1425
1479
|
};
|
|
1426
1480
|
}
|
|
@@ -1482,10 +1536,12 @@ export class GetOriginLayoutDataResponseBody extends $tea.Model {
|
|
|
1482
1536
|
|
|
1483
1537
|
export class GetOriginLayoutDataResponse extends $tea.Model {
|
|
1484
1538
|
headers: { [key: string]: string };
|
|
1539
|
+
statusCode: number;
|
|
1485
1540
|
body: GetOriginLayoutDataResponseBody;
|
|
1486
1541
|
static names(): { [key: string]: string } {
|
|
1487
1542
|
return {
|
|
1488
1543
|
headers: 'headers',
|
|
1544
|
+
statusCode: 'statusCode',
|
|
1489
1545
|
body: 'body',
|
|
1490
1546
|
};
|
|
1491
1547
|
}
|
|
@@ -1493,6 +1549,7 @@ export class GetOriginLayoutDataResponse extends $tea.Model {
|
|
|
1493
1549
|
static types(): { [key: string]: any } {
|
|
1494
1550
|
return {
|
|
1495
1551
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1552
|
+
statusCode: 'number',
|
|
1496
1553
|
body: GetOriginLayoutDataResponseBody,
|
|
1497
1554
|
};
|
|
1498
1555
|
}
|
|
@@ -1572,10 +1629,12 @@ export class GetOssPolicyResponseBody extends $tea.Model {
|
|
|
1572
1629
|
|
|
1573
1630
|
export class GetOssPolicyResponse extends $tea.Model {
|
|
1574
1631
|
headers: { [key: string]: string };
|
|
1632
|
+
statusCode: number;
|
|
1575
1633
|
body: GetOssPolicyResponseBody;
|
|
1576
1634
|
static names(): { [key: string]: string } {
|
|
1577
1635
|
return {
|
|
1578
1636
|
headers: 'headers',
|
|
1637
|
+
statusCode: 'statusCode',
|
|
1579
1638
|
body: 'body',
|
|
1580
1639
|
};
|
|
1581
1640
|
}
|
|
@@ -1583,6 +1642,7 @@ export class GetOssPolicyResponse extends $tea.Model {
|
|
|
1583
1642
|
static types(): { [key: string]: any } {
|
|
1584
1643
|
return {
|
|
1585
1644
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1645
|
+
statusCode: 'number',
|
|
1586
1646
|
body: GetOssPolicyResponseBody,
|
|
1587
1647
|
};
|
|
1588
1648
|
}
|
|
@@ -1592,6 +1652,84 @@ export class GetOssPolicyResponse extends $tea.Model {
|
|
|
1592
1652
|
}
|
|
1593
1653
|
}
|
|
1594
1654
|
|
|
1655
|
+
export class GetPackSceneTaskStatusRequest extends $tea.Model {
|
|
1656
|
+
taskId?: string;
|
|
1657
|
+
type?: string;
|
|
1658
|
+
static names(): { [key: string]: string } {
|
|
1659
|
+
return {
|
|
1660
|
+
taskId: 'TaskId',
|
|
1661
|
+
type: 'Type',
|
|
1662
|
+
};
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1665
|
+
static types(): { [key: string]: any } {
|
|
1666
|
+
return {
|
|
1667
|
+
taskId: 'string',
|
|
1668
|
+
type: 'string',
|
|
1669
|
+
};
|
|
1670
|
+
}
|
|
1671
|
+
|
|
1672
|
+
constructor(map?: { [key: string]: any }) {
|
|
1673
|
+
super(map);
|
|
1674
|
+
}
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
export class GetPackSceneTaskStatusResponseBody extends $tea.Model {
|
|
1678
|
+
code?: number;
|
|
1679
|
+
data?: GetPackSceneTaskStatusResponseBodyData;
|
|
1680
|
+
message?: string;
|
|
1681
|
+
requestId?: string;
|
|
1682
|
+
success?: boolean;
|
|
1683
|
+
static names(): { [key: string]: string } {
|
|
1684
|
+
return {
|
|
1685
|
+
code: 'Code',
|
|
1686
|
+
data: 'Data',
|
|
1687
|
+
message: 'Message',
|
|
1688
|
+
requestId: 'RequestId',
|
|
1689
|
+
success: 'Success',
|
|
1690
|
+
};
|
|
1691
|
+
}
|
|
1692
|
+
|
|
1693
|
+
static types(): { [key: string]: any } {
|
|
1694
|
+
return {
|
|
1695
|
+
code: 'number',
|
|
1696
|
+
data: GetPackSceneTaskStatusResponseBodyData,
|
|
1697
|
+
message: 'string',
|
|
1698
|
+
requestId: 'string',
|
|
1699
|
+
success: 'boolean',
|
|
1700
|
+
};
|
|
1701
|
+
}
|
|
1702
|
+
|
|
1703
|
+
constructor(map?: { [key: string]: any }) {
|
|
1704
|
+
super(map);
|
|
1705
|
+
}
|
|
1706
|
+
}
|
|
1707
|
+
|
|
1708
|
+
export class GetPackSceneTaskStatusResponse extends $tea.Model {
|
|
1709
|
+
headers: { [key: string]: string };
|
|
1710
|
+
statusCode: number;
|
|
1711
|
+
body: GetPackSceneTaskStatusResponseBody;
|
|
1712
|
+
static names(): { [key: string]: string } {
|
|
1713
|
+
return {
|
|
1714
|
+
headers: 'headers',
|
|
1715
|
+
statusCode: 'statusCode',
|
|
1716
|
+
body: 'body',
|
|
1717
|
+
};
|
|
1718
|
+
}
|
|
1719
|
+
|
|
1720
|
+
static types(): { [key: string]: any } {
|
|
1721
|
+
return {
|
|
1722
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1723
|
+
statusCode: 'number',
|
|
1724
|
+
body: GetPackSceneTaskStatusResponseBody,
|
|
1725
|
+
};
|
|
1726
|
+
}
|
|
1727
|
+
|
|
1728
|
+
constructor(map?: { [key: string]: any }) {
|
|
1729
|
+
super(map);
|
|
1730
|
+
}
|
|
1731
|
+
}
|
|
1732
|
+
|
|
1595
1733
|
export class GetRectifyImageRequest extends $tea.Model {
|
|
1596
1734
|
subSceneId?: string;
|
|
1597
1735
|
static names(): { [key: string]: string } {
|
|
@@ -1644,10 +1782,12 @@ export class GetRectifyImageResponseBody extends $tea.Model {
|
|
|
1644
1782
|
|
|
1645
1783
|
export class GetRectifyImageResponse extends $tea.Model {
|
|
1646
1784
|
headers: { [key: string]: string };
|
|
1785
|
+
statusCode: number;
|
|
1647
1786
|
body: GetRectifyImageResponseBody;
|
|
1648
1787
|
static names(): { [key: string]: string } {
|
|
1649
1788
|
return {
|
|
1650
1789
|
headers: 'headers',
|
|
1790
|
+
statusCode: 'statusCode',
|
|
1651
1791
|
body: 'body',
|
|
1652
1792
|
};
|
|
1653
1793
|
}
|
|
@@ -1655,6 +1795,7 @@ export class GetRectifyImageResponse extends $tea.Model {
|
|
|
1655
1795
|
static types(): { [key: string]: any } {
|
|
1656
1796
|
return {
|
|
1657
1797
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1798
|
+
statusCode: 'number',
|
|
1658
1799
|
body: GetRectifyImageResponseBody,
|
|
1659
1800
|
};
|
|
1660
1801
|
}
|
|
@@ -1725,10 +1866,12 @@ export class GetSceneBuildTaskStatusResponseBody extends $tea.Model {
|
|
|
1725
1866
|
|
|
1726
1867
|
export class GetSceneBuildTaskStatusResponse extends $tea.Model {
|
|
1727
1868
|
headers: { [key: string]: string };
|
|
1869
|
+
statusCode: number;
|
|
1728
1870
|
body: GetSceneBuildTaskStatusResponseBody;
|
|
1729
1871
|
static names(): { [key: string]: string } {
|
|
1730
1872
|
return {
|
|
1731
1873
|
headers: 'headers',
|
|
1874
|
+
statusCode: 'statusCode',
|
|
1732
1875
|
body: 'body',
|
|
1733
1876
|
};
|
|
1734
1877
|
}
|
|
@@ -1736,6 +1879,7 @@ export class GetSceneBuildTaskStatusResponse extends $tea.Model {
|
|
|
1736
1879
|
static types(): { [key: string]: any } {
|
|
1737
1880
|
return {
|
|
1738
1881
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1882
|
+
statusCode: 'number',
|
|
1739
1883
|
body: GetSceneBuildTaskStatusResponseBody,
|
|
1740
1884
|
};
|
|
1741
1885
|
}
|
|
@@ -1745,6 +1889,81 @@ export class GetSceneBuildTaskStatusResponse extends $tea.Model {
|
|
|
1745
1889
|
}
|
|
1746
1890
|
}
|
|
1747
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
|
+
|
|
1748
1967
|
export class GetScenePreviewDataRequest extends $tea.Model {
|
|
1749
1968
|
domain?: string;
|
|
1750
1969
|
enabled?: boolean;
|
|
@@ -1806,10 +2025,12 @@ export class GetScenePreviewDataResponseBody extends $tea.Model {
|
|
|
1806
2025
|
|
|
1807
2026
|
export class GetScenePreviewDataResponse extends $tea.Model {
|
|
1808
2027
|
headers: { [key: string]: string };
|
|
2028
|
+
statusCode: number;
|
|
1809
2029
|
body: GetScenePreviewDataResponseBody;
|
|
1810
2030
|
static names(): { [key: string]: string } {
|
|
1811
2031
|
return {
|
|
1812
2032
|
headers: 'headers',
|
|
2033
|
+
statusCode: 'statusCode',
|
|
1813
2034
|
body: 'body',
|
|
1814
2035
|
};
|
|
1815
2036
|
}
|
|
@@ -1817,6 +2038,7 @@ export class GetScenePreviewDataResponse extends $tea.Model {
|
|
|
1817
2038
|
static types(): { [key: string]: any } {
|
|
1818
2039
|
return {
|
|
1819
2040
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2041
|
+
statusCode: 'number',
|
|
1820
2042
|
body: GetScenePreviewDataResponseBody,
|
|
1821
2043
|
};
|
|
1822
2044
|
}
|
|
@@ -1884,10 +2106,12 @@ export class GetScenePreviewInfoResponseBody extends $tea.Model {
|
|
|
1884
2106
|
|
|
1885
2107
|
export class GetScenePreviewInfoResponse extends $tea.Model {
|
|
1886
2108
|
headers: { [key: string]: string };
|
|
2109
|
+
statusCode: number;
|
|
1887
2110
|
body: GetScenePreviewInfoResponseBody;
|
|
1888
2111
|
static names(): { [key: string]: string } {
|
|
1889
2112
|
return {
|
|
1890
2113
|
headers: 'headers',
|
|
2114
|
+
statusCode: 'statusCode',
|
|
1891
2115
|
body: 'body',
|
|
1892
2116
|
};
|
|
1893
2117
|
}
|
|
@@ -1895,6 +2119,7 @@ export class GetScenePreviewInfoResponse extends $tea.Model {
|
|
|
1895
2119
|
static types(): { [key: string]: any } {
|
|
1896
2120
|
return {
|
|
1897
2121
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2122
|
+
statusCode: 'number',
|
|
1898
2123
|
body: GetScenePreviewInfoResponseBody,
|
|
1899
2124
|
};
|
|
1900
2125
|
}
|
|
@@ -1956,10 +2181,12 @@ export class GetScenePreviewResourceResponseBody extends $tea.Model {
|
|
|
1956
2181
|
|
|
1957
2182
|
export class GetScenePreviewResourceResponse extends $tea.Model {
|
|
1958
2183
|
headers: { [key: string]: string };
|
|
2184
|
+
statusCode: number;
|
|
1959
2185
|
body: GetScenePreviewResourceResponseBody;
|
|
1960
2186
|
static names(): { [key: string]: string } {
|
|
1961
2187
|
return {
|
|
1962
2188
|
headers: 'headers',
|
|
2189
|
+
statusCode: 'statusCode',
|
|
1963
2190
|
body: 'body',
|
|
1964
2191
|
};
|
|
1965
2192
|
}
|
|
@@ -1967,6 +2194,7 @@ export class GetScenePreviewResourceResponse extends $tea.Model {
|
|
|
1967
2194
|
static types(): { [key: string]: any } {
|
|
1968
2195
|
return {
|
|
1969
2196
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2197
|
+
statusCode: 'number',
|
|
1970
2198
|
body: GetScenePreviewResourceResponseBody,
|
|
1971
2199
|
};
|
|
1972
2200
|
}
|
|
@@ -2031,10 +2259,12 @@ export class GetSingleConnDataResponseBody extends $tea.Model {
|
|
|
2031
2259
|
|
|
2032
2260
|
export class GetSingleConnDataResponse extends $tea.Model {
|
|
2033
2261
|
headers: { [key: string]: string };
|
|
2262
|
+
statusCode: number;
|
|
2034
2263
|
body: GetSingleConnDataResponseBody;
|
|
2035
2264
|
static names(): { [key: string]: string } {
|
|
2036
2265
|
return {
|
|
2037
2266
|
headers: 'headers',
|
|
2267
|
+
statusCode: 'statusCode',
|
|
2038
2268
|
body: 'body',
|
|
2039
2269
|
};
|
|
2040
2270
|
}
|
|
@@ -2042,6 +2272,7 @@ export class GetSingleConnDataResponse extends $tea.Model {
|
|
|
2042
2272
|
static types(): { [key: string]: any } {
|
|
2043
2273
|
return {
|
|
2044
2274
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2275
|
+
statusCode: 'number',
|
|
2045
2276
|
body: GetSingleConnDataResponseBody,
|
|
2046
2277
|
};
|
|
2047
2278
|
}
|
|
@@ -2103,10 +2334,12 @@ export class GetSubSceneTaskStatusResponseBody extends $tea.Model {
|
|
|
2103
2334
|
|
|
2104
2335
|
export class GetSubSceneTaskStatusResponse extends $tea.Model {
|
|
2105
2336
|
headers: { [key: string]: string };
|
|
2337
|
+
statusCode: number;
|
|
2106
2338
|
body: GetSubSceneTaskStatusResponseBody;
|
|
2107
2339
|
static names(): { [key: string]: string } {
|
|
2108
2340
|
return {
|
|
2109
2341
|
headers: 'headers',
|
|
2342
|
+
statusCode: 'statusCode',
|
|
2110
2343
|
body: 'body',
|
|
2111
2344
|
};
|
|
2112
2345
|
}
|
|
@@ -2114,6 +2347,7 @@ export class GetSubSceneTaskStatusResponse extends $tea.Model {
|
|
|
2114
2347
|
static types(): { [key: string]: any } {
|
|
2115
2348
|
return {
|
|
2116
2349
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2350
|
+
statusCode: 'number',
|
|
2117
2351
|
body: GetSubSceneTaskStatusResponseBody,
|
|
2118
2352
|
};
|
|
2119
2353
|
}
|
|
@@ -2184,10 +2418,12 @@ export class GetTaskStatusResponseBody extends $tea.Model {
|
|
|
2184
2418
|
|
|
2185
2419
|
export class GetTaskStatusResponse extends $tea.Model {
|
|
2186
2420
|
headers: { [key: string]: string };
|
|
2421
|
+
statusCode: number;
|
|
2187
2422
|
body: GetTaskStatusResponseBody;
|
|
2188
2423
|
static names(): { [key: string]: string } {
|
|
2189
2424
|
return {
|
|
2190
2425
|
headers: 'headers',
|
|
2426
|
+
statusCode: 'statusCode',
|
|
2191
2427
|
body: 'body',
|
|
2192
2428
|
};
|
|
2193
2429
|
}
|
|
@@ -2195,6 +2431,7 @@ export class GetTaskStatusResponse extends $tea.Model {
|
|
|
2195
2431
|
static types(): { [key: string]: any } {
|
|
2196
2432
|
return {
|
|
2197
2433
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2434
|
+
statusCode: 'number',
|
|
2198
2435
|
body: GetTaskStatusResponseBody,
|
|
2199
2436
|
};
|
|
2200
2437
|
}
|
|
@@ -2256,10 +2493,12 @@ export class GetWindowConfigResponseBody extends $tea.Model {
|
|
|
2256
2493
|
|
|
2257
2494
|
export class GetWindowConfigResponse extends $tea.Model {
|
|
2258
2495
|
headers: { [key: string]: string };
|
|
2496
|
+
statusCode: number;
|
|
2259
2497
|
body: GetWindowConfigResponseBody;
|
|
2260
2498
|
static names(): { [key: string]: string } {
|
|
2261
2499
|
return {
|
|
2262
2500
|
headers: 'headers',
|
|
2501
|
+
statusCode: 'statusCode',
|
|
2263
2502
|
body: 'body',
|
|
2264
2503
|
};
|
|
2265
2504
|
}
|
|
@@ -2267,6 +2506,7 @@ export class GetWindowConfigResponse extends $tea.Model {
|
|
|
2267
2506
|
static types(): { [key: string]: any } {
|
|
2268
2507
|
return {
|
|
2269
2508
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2509
|
+
statusCode: 'number',
|
|
2270
2510
|
body: GetWindowConfigResponseBody,
|
|
2271
2511
|
};
|
|
2272
2512
|
}
|
|
@@ -2331,10 +2571,12 @@ export class LabelBuildResponseBody extends $tea.Model {
|
|
|
2331
2571
|
|
|
2332
2572
|
export class LabelBuildResponse extends $tea.Model {
|
|
2333
2573
|
headers: { [key: string]: string };
|
|
2574
|
+
statusCode: number;
|
|
2334
2575
|
body: LabelBuildResponseBody;
|
|
2335
2576
|
static names(): { [key: string]: string } {
|
|
2336
2577
|
return {
|
|
2337
2578
|
headers: 'headers',
|
|
2579
|
+
statusCode: 'statusCode',
|
|
2338
2580
|
body: 'body',
|
|
2339
2581
|
};
|
|
2340
2582
|
}
|
|
@@ -2342,6 +2584,7 @@ export class LabelBuildResponse extends $tea.Model {
|
|
|
2342
2584
|
static types(): { [key: string]: any } {
|
|
2343
2585
|
return {
|
|
2344
2586
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2587
|
+
statusCode: 'number',
|
|
2345
2588
|
body: LabelBuildResponseBody,
|
|
2346
2589
|
};
|
|
2347
2590
|
}
|
|
@@ -2412,10 +2655,12 @@ export class LinkImageResponseBody extends $tea.Model {
|
|
|
2412
2655
|
|
|
2413
2656
|
export class LinkImageResponse extends $tea.Model {
|
|
2414
2657
|
headers: { [key: string]: string };
|
|
2658
|
+
statusCode: number;
|
|
2415
2659
|
body: LinkImageResponseBody;
|
|
2416
2660
|
static names(): { [key: string]: string } {
|
|
2417
2661
|
return {
|
|
2418
2662
|
headers: 'headers',
|
|
2663
|
+
statusCode: 'statusCode',
|
|
2419
2664
|
body: 'body',
|
|
2420
2665
|
};
|
|
2421
2666
|
}
|
|
@@ -2423,6 +2668,7 @@ export class LinkImageResponse extends $tea.Model {
|
|
|
2423
2668
|
static types(): { [key: string]: any } {
|
|
2424
2669
|
return {
|
|
2425
2670
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2671
|
+
statusCode: 'number',
|
|
2426
2672
|
body: LinkImageResponseBody,
|
|
2427
2673
|
};
|
|
2428
2674
|
}
|
|
@@ -2502,10 +2748,12 @@ export class ListProjectResponseBody extends $tea.Model {
|
|
|
2502
2748
|
|
|
2503
2749
|
export class ListProjectResponse extends $tea.Model {
|
|
2504
2750
|
headers: { [key: string]: string };
|
|
2751
|
+
statusCode: number;
|
|
2505
2752
|
body: ListProjectResponseBody;
|
|
2506
2753
|
static names(): { [key: string]: string } {
|
|
2507
2754
|
return {
|
|
2508
2755
|
headers: 'headers',
|
|
2756
|
+
statusCode: 'statusCode',
|
|
2509
2757
|
body: 'body',
|
|
2510
2758
|
};
|
|
2511
2759
|
}
|
|
@@ -2513,6 +2761,7 @@ export class ListProjectResponse extends $tea.Model {
|
|
|
2513
2761
|
static types(): { [key: string]: any } {
|
|
2514
2762
|
return {
|
|
2515
2763
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2764
|
+
statusCode: 'number',
|
|
2516
2765
|
body: ListProjectResponseBody,
|
|
2517
2766
|
};
|
|
2518
2767
|
}
|
|
@@ -2595,10 +2844,12 @@ export class ListSceneResponseBody extends $tea.Model {
|
|
|
2595
2844
|
|
|
2596
2845
|
export class ListSceneResponse extends $tea.Model {
|
|
2597
2846
|
headers: { [key: string]: string };
|
|
2847
|
+
statusCode: number;
|
|
2598
2848
|
body: ListSceneResponseBody;
|
|
2599
2849
|
static names(): { [key: string]: string } {
|
|
2600
2850
|
return {
|
|
2601
2851
|
headers: 'headers',
|
|
2852
|
+
statusCode: 'statusCode',
|
|
2602
2853
|
body: 'body',
|
|
2603
2854
|
};
|
|
2604
2855
|
}
|
|
@@ -2606,6 +2857,7 @@ export class ListSceneResponse extends $tea.Model {
|
|
|
2606
2857
|
static types(): { [key: string]: any } {
|
|
2607
2858
|
return {
|
|
2608
2859
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2860
|
+
statusCode: 'number',
|
|
2609
2861
|
body: ListSceneResponseBody,
|
|
2610
2862
|
};
|
|
2611
2863
|
}
|
|
@@ -2688,10 +2940,12 @@ export class ListSubSceneResponseBody extends $tea.Model {
|
|
|
2688
2940
|
|
|
2689
2941
|
export class ListSubSceneResponse extends $tea.Model {
|
|
2690
2942
|
headers: { [key: string]: string };
|
|
2943
|
+
statusCode: number;
|
|
2691
2944
|
body: ListSubSceneResponseBody;
|
|
2692
2945
|
static names(): { [key: string]: string } {
|
|
2693
2946
|
return {
|
|
2694
2947
|
headers: 'headers',
|
|
2948
|
+
statusCode: 'statusCode',
|
|
2695
2949
|
body: 'body',
|
|
2696
2950
|
};
|
|
2697
2951
|
}
|
|
@@ -2699,6 +2953,7 @@ export class ListSubSceneResponse extends $tea.Model {
|
|
|
2699
2953
|
static types(): { [key: string]: any } {
|
|
2700
2954
|
return {
|
|
2701
2955
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2956
|
+
statusCode: 'number',
|
|
2702
2957
|
body: ListSubSceneResponseBody,
|
|
2703
2958
|
};
|
|
2704
2959
|
}
|
|
@@ -2760,10 +3015,12 @@ export class OptimizeRightAngleResponseBody extends $tea.Model {
|
|
|
2760
3015
|
|
|
2761
3016
|
export class OptimizeRightAngleResponse extends $tea.Model {
|
|
2762
3017
|
headers: { [key: string]: string };
|
|
3018
|
+
statusCode: number;
|
|
2763
3019
|
body: OptimizeRightAngleResponseBody;
|
|
2764
3020
|
static names(): { [key: string]: string } {
|
|
2765
3021
|
return {
|
|
2766
3022
|
headers: 'headers',
|
|
3023
|
+
statusCode: 'statusCode',
|
|
2767
3024
|
body: 'body',
|
|
2768
3025
|
};
|
|
2769
3026
|
}
|
|
@@ -2771,6 +3028,7 @@ export class OptimizeRightAngleResponse extends $tea.Model {
|
|
|
2771
3028
|
static types(): { [key: string]: any } {
|
|
2772
3029
|
return {
|
|
2773
3030
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3031
|
+
statusCode: 'number',
|
|
2774
3032
|
body: OptimizeRightAngleResponseBody,
|
|
2775
3033
|
};
|
|
2776
3034
|
}
|
|
@@ -2780,6 +3038,84 @@ export class OptimizeRightAngleResponse extends $tea.Model {
|
|
|
2780
3038
|
}
|
|
2781
3039
|
}
|
|
2782
3040
|
|
|
3041
|
+
export class PackSceneRequest extends $tea.Model {
|
|
3042
|
+
sceneId?: string;
|
|
3043
|
+
type?: string;
|
|
3044
|
+
static names(): { [key: string]: string } {
|
|
3045
|
+
return {
|
|
3046
|
+
sceneId: 'SceneId',
|
|
3047
|
+
type: 'Type',
|
|
3048
|
+
};
|
|
3049
|
+
}
|
|
3050
|
+
|
|
3051
|
+
static types(): { [key: string]: any } {
|
|
3052
|
+
return {
|
|
3053
|
+
sceneId: 'string',
|
|
3054
|
+
type: 'string',
|
|
3055
|
+
};
|
|
3056
|
+
}
|
|
3057
|
+
|
|
3058
|
+
constructor(map?: { [key: string]: any }) {
|
|
3059
|
+
super(map);
|
|
3060
|
+
}
|
|
3061
|
+
}
|
|
3062
|
+
|
|
3063
|
+
export class PackSceneResponseBody extends $tea.Model {
|
|
3064
|
+
code?: number;
|
|
3065
|
+
data?: PackSceneResponseBodyData;
|
|
3066
|
+
message?: string;
|
|
3067
|
+
requestId?: string;
|
|
3068
|
+
success?: boolean;
|
|
3069
|
+
static names(): { [key: string]: string } {
|
|
3070
|
+
return {
|
|
3071
|
+
code: 'Code',
|
|
3072
|
+
data: 'Data',
|
|
3073
|
+
message: 'Message',
|
|
3074
|
+
requestId: 'RequestId',
|
|
3075
|
+
success: 'Success',
|
|
3076
|
+
};
|
|
3077
|
+
}
|
|
3078
|
+
|
|
3079
|
+
static types(): { [key: string]: any } {
|
|
3080
|
+
return {
|
|
3081
|
+
code: 'number',
|
|
3082
|
+
data: PackSceneResponseBodyData,
|
|
3083
|
+
message: 'string',
|
|
3084
|
+
requestId: 'string',
|
|
3085
|
+
success: 'boolean',
|
|
3086
|
+
};
|
|
3087
|
+
}
|
|
3088
|
+
|
|
3089
|
+
constructor(map?: { [key: string]: any }) {
|
|
3090
|
+
super(map);
|
|
3091
|
+
}
|
|
3092
|
+
}
|
|
3093
|
+
|
|
3094
|
+
export class PackSceneResponse extends $tea.Model {
|
|
3095
|
+
headers: { [key: string]: string };
|
|
3096
|
+
statusCode: number;
|
|
3097
|
+
body: PackSceneResponseBody;
|
|
3098
|
+
static names(): { [key: string]: string } {
|
|
3099
|
+
return {
|
|
3100
|
+
headers: 'headers',
|
|
3101
|
+
statusCode: 'statusCode',
|
|
3102
|
+
body: 'body',
|
|
3103
|
+
};
|
|
3104
|
+
}
|
|
3105
|
+
|
|
3106
|
+
static types(): { [key: string]: any } {
|
|
3107
|
+
return {
|
|
3108
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3109
|
+
statusCode: 'number',
|
|
3110
|
+
body: PackSceneResponseBody,
|
|
3111
|
+
};
|
|
3112
|
+
}
|
|
3113
|
+
|
|
3114
|
+
constructor(map?: { [key: string]: any }) {
|
|
3115
|
+
super(map);
|
|
3116
|
+
}
|
|
3117
|
+
}
|
|
3118
|
+
|
|
2783
3119
|
export class PredImageRequest extends $tea.Model {
|
|
2784
3120
|
correctVertical?: boolean;
|
|
2785
3121
|
countDetectDoor?: number;
|
|
@@ -2841,10 +3177,12 @@ export class PredImageResponseBody extends $tea.Model {
|
|
|
2841
3177
|
|
|
2842
3178
|
export class PredImageResponse extends $tea.Model {
|
|
2843
3179
|
headers: { [key: string]: string };
|
|
3180
|
+
statusCode: number;
|
|
2844
3181
|
body: PredImageResponseBody;
|
|
2845
3182
|
static names(): { [key: string]: string } {
|
|
2846
3183
|
return {
|
|
2847
3184
|
headers: 'headers',
|
|
3185
|
+
statusCode: 'statusCode',
|
|
2848
3186
|
body: 'body',
|
|
2849
3187
|
};
|
|
2850
3188
|
}
|
|
@@ -2852,6 +3190,7 @@ export class PredImageResponse extends $tea.Model {
|
|
|
2852
3190
|
static types(): { [key: string]: any } {
|
|
2853
3191
|
return {
|
|
2854
3192
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3193
|
+
statusCode: 'number',
|
|
2855
3194
|
body: PredImageResponseBody,
|
|
2856
3195
|
};
|
|
2857
3196
|
}
|
|
@@ -2919,10 +3258,12 @@ export class PredictionWallLineResponseBody extends $tea.Model {
|
|
|
2919
3258
|
|
|
2920
3259
|
export class PredictionWallLineResponse extends $tea.Model {
|
|
2921
3260
|
headers: { [key: string]: string };
|
|
3261
|
+
statusCode: number;
|
|
2922
3262
|
body: PredictionWallLineResponseBody;
|
|
2923
3263
|
static names(): { [key: string]: string } {
|
|
2924
3264
|
return {
|
|
2925
3265
|
headers: 'headers',
|
|
3266
|
+
statusCode: 'statusCode',
|
|
2926
3267
|
body: 'body',
|
|
2927
3268
|
};
|
|
2928
3269
|
}
|
|
@@ -2930,6 +3271,7 @@ export class PredictionWallLineResponse extends $tea.Model {
|
|
|
2930
3271
|
static types(): { [key: string]: any } {
|
|
2931
3272
|
return {
|
|
2932
3273
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3274
|
+
statusCode: 'number',
|
|
2933
3275
|
body: PredictionWallLineResponseBody,
|
|
2934
3276
|
};
|
|
2935
3277
|
}
|
|
@@ -2991,10 +3333,12 @@ export class PublishHotspotResponseBody extends $tea.Model {
|
|
|
2991
3333
|
|
|
2992
3334
|
export class PublishHotspotResponse extends $tea.Model {
|
|
2993
3335
|
headers: { [key: string]: string };
|
|
3336
|
+
statusCode: number;
|
|
2994
3337
|
body: PublishHotspotResponseBody;
|
|
2995
3338
|
static names(): { [key: string]: string } {
|
|
2996
3339
|
return {
|
|
2997
3340
|
headers: 'headers',
|
|
3341
|
+
statusCode: 'statusCode',
|
|
2998
3342
|
body: 'body',
|
|
2999
3343
|
};
|
|
3000
3344
|
}
|
|
@@ -3002,6 +3346,7 @@ export class PublishHotspotResponse extends $tea.Model {
|
|
|
3002
3346
|
static types(): { [key: string]: any } {
|
|
3003
3347
|
return {
|
|
3004
3348
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3349
|
+
statusCode: 'number',
|
|
3005
3350
|
body: PublishHotspotResponseBody,
|
|
3006
3351
|
};
|
|
3007
3352
|
}
|
|
@@ -3063,10 +3408,12 @@ export class PublishSceneResponseBody extends $tea.Model {
|
|
|
3063
3408
|
|
|
3064
3409
|
export class PublishSceneResponse extends $tea.Model {
|
|
3065
3410
|
headers: { [key: string]: string };
|
|
3411
|
+
statusCode: number;
|
|
3066
3412
|
body: PublishSceneResponseBody;
|
|
3067
3413
|
static names(): { [key: string]: string } {
|
|
3068
3414
|
return {
|
|
3069
3415
|
headers: 'headers',
|
|
3416
|
+
statusCode: 'statusCode',
|
|
3070
3417
|
body: 'body',
|
|
3071
3418
|
};
|
|
3072
3419
|
}
|
|
@@ -3074,6 +3421,7 @@ export class PublishSceneResponse extends $tea.Model {
|
|
|
3074
3421
|
static types(): { [key: string]: any } {
|
|
3075
3422
|
return {
|
|
3076
3423
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3424
|
+
statusCode: 'number',
|
|
3077
3425
|
body: PublishSceneResponseBody,
|
|
3078
3426
|
};
|
|
3079
3427
|
}
|
|
@@ -3135,10 +3483,12 @@ export class PublishStatusResponseBody extends $tea.Model {
|
|
|
3135
3483
|
|
|
3136
3484
|
export class PublishStatusResponse extends $tea.Model {
|
|
3137
3485
|
headers: { [key: string]: string };
|
|
3486
|
+
statusCode: number;
|
|
3138
3487
|
body: PublishStatusResponseBody;
|
|
3139
3488
|
static names(): { [key: string]: string } {
|
|
3140
3489
|
return {
|
|
3141
3490
|
headers: 'headers',
|
|
3491
|
+
statusCode: 'statusCode',
|
|
3142
3492
|
body: 'body',
|
|
3143
3493
|
};
|
|
3144
3494
|
}
|
|
@@ -3146,6 +3496,7 @@ export class PublishStatusResponse extends $tea.Model {
|
|
|
3146
3496
|
static types(): { [key: string]: any } {
|
|
3147
3497
|
return {
|
|
3148
3498
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3499
|
+
statusCode: 'number',
|
|
3149
3500
|
body: PublishStatusResponseBody,
|
|
3150
3501
|
};
|
|
3151
3502
|
}
|
|
@@ -3204,10 +3555,12 @@ export class RecoveryOriginImageResponseBody extends $tea.Model {
|
|
|
3204
3555
|
|
|
3205
3556
|
export class RecoveryOriginImageResponse extends $tea.Model {
|
|
3206
3557
|
headers: { [key: string]: string };
|
|
3558
|
+
statusCode: number;
|
|
3207
3559
|
body: RecoveryOriginImageResponseBody;
|
|
3208
3560
|
static names(): { [key: string]: string } {
|
|
3209
3561
|
return {
|
|
3210
3562
|
headers: 'headers',
|
|
3563
|
+
statusCode: 'statusCode',
|
|
3211
3564
|
body: 'body',
|
|
3212
3565
|
};
|
|
3213
3566
|
}
|
|
@@ -3215,6 +3568,7 @@ export class RecoveryOriginImageResponse extends $tea.Model {
|
|
|
3215
3568
|
static types(): { [key: string]: any } {
|
|
3216
3569
|
return {
|
|
3217
3570
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3571
|
+
statusCode: 'number',
|
|
3218
3572
|
body: RecoveryOriginImageResponseBody,
|
|
3219
3573
|
};
|
|
3220
3574
|
}
|
|
@@ -3285,10 +3639,12 @@ export class RectVerticalResponseBody extends $tea.Model {
|
|
|
3285
3639
|
|
|
3286
3640
|
export class RectVerticalResponse extends $tea.Model {
|
|
3287
3641
|
headers: { [key: string]: string };
|
|
3642
|
+
statusCode: number;
|
|
3288
3643
|
body: RectVerticalResponseBody;
|
|
3289
3644
|
static names(): { [key: string]: string } {
|
|
3290
3645
|
return {
|
|
3291
3646
|
headers: 'headers',
|
|
3647
|
+
statusCode: 'statusCode',
|
|
3292
3648
|
body: 'body',
|
|
3293
3649
|
};
|
|
3294
3650
|
}
|
|
@@ -3296,6 +3652,7 @@ export class RectVerticalResponse extends $tea.Model {
|
|
|
3296
3652
|
static types(): { [key: string]: any } {
|
|
3297
3653
|
return {
|
|
3298
3654
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3655
|
+
statusCode: 'number',
|
|
3299
3656
|
body: RectVerticalResponseBody,
|
|
3300
3657
|
};
|
|
3301
3658
|
}
|
|
@@ -3363,10 +3720,12 @@ export class RectifyImageResponseBody extends $tea.Model {
|
|
|
3363
3720
|
|
|
3364
3721
|
export class RectifyImageResponse extends $tea.Model {
|
|
3365
3722
|
headers: { [key: string]: string };
|
|
3723
|
+
statusCode: number;
|
|
3366
3724
|
body: RectifyImageResponseBody;
|
|
3367
3725
|
static names(): { [key: string]: string } {
|
|
3368
3726
|
return {
|
|
3369
3727
|
headers: 'headers',
|
|
3728
|
+
statusCode: 'statusCode',
|
|
3370
3729
|
body: 'body',
|
|
3371
3730
|
};
|
|
3372
3731
|
}
|
|
@@ -3374,6 +3733,7 @@ export class RectifyImageResponse extends $tea.Model {
|
|
|
3374
3733
|
static types(): { [key: string]: any } {
|
|
3375
3734
|
return {
|
|
3376
3735
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3736
|
+
statusCode: 'number',
|
|
3377
3737
|
body: RectifyImageResponseBody,
|
|
3378
3738
|
};
|
|
3379
3739
|
}
|
|
@@ -3432,10 +3792,12 @@ export class RollbackSubSceneResponseBody extends $tea.Model {
|
|
|
3432
3792
|
|
|
3433
3793
|
export class RollbackSubSceneResponse extends $tea.Model {
|
|
3434
3794
|
headers: { [key: string]: string };
|
|
3795
|
+
statusCode: number;
|
|
3435
3796
|
body: RollbackSubSceneResponseBody;
|
|
3436
3797
|
static names(): { [key: string]: string } {
|
|
3437
3798
|
return {
|
|
3438
3799
|
headers: 'headers',
|
|
3800
|
+
statusCode: 'statusCode',
|
|
3439
3801
|
body: 'body',
|
|
3440
3802
|
};
|
|
3441
3803
|
}
|
|
@@ -3443,6 +3805,7 @@ export class RollbackSubSceneResponse extends $tea.Model {
|
|
|
3443
3805
|
static types(): { [key: string]: any } {
|
|
3444
3806
|
return {
|
|
3445
3807
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3808
|
+
statusCode: 'number',
|
|
3446
3809
|
body: RollbackSubSceneResponseBody,
|
|
3447
3810
|
};
|
|
3448
3811
|
}
|
|
@@ -3501,10 +3864,12 @@ export class SaveHotspotConfigResponseBody extends $tea.Model {
|
|
|
3501
3864
|
|
|
3502
3865
|
export class SaveHotspotConfigResponse extends $tea.Model {
|
|
3503
3866
|
headers: { [key: string]: string };
|
|
3867
|
+
statusCode: number;
|
|
3504
3868
|
body: SaveHotspotConfigResponseBody;
|
|
3505
3869
|
static names(): { [key: string]: string } {
|
|
3506
3870
|
return {
|
|
3507
3871
|
headers: 'headers',
|
|
3872
|
+
statusCode: 'statusCode',
|
|
3508
3873
|
body: 'body',
|
|
3509
3874
|
};
|
|
3510
3875
|
}
|
|
@@ -3512,6 +3877,7 @@ export class SaveHotspotConfigResponse extends $tea.Model {
|
|
|
3512
3877
|
static types(): { [key: string]: any } {
|
|
3513
3878
|
return {
|
|
3514
3879
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3880
|
+
statusCode: 'number',
|
|
3515
3881
|
body: SaveHotspotConfigResponseBody,
|
|
3516
3882
|
};
|
|
3517
3883
|
}
|
|
@@ -3570,10 +3936,12 @@ export class SaveHotspotTagResponseBody extends $tea.Model {
|
|
|
3570
3936
|
|
|
3571
3937
|
export class SaveHotspotTagResponse extends $tea.Model {
|
|
3572
3938
|
headers: { [key: string]: string };
|
|
3939
|
+
statusCode: number;
|
|
3573
3940
|
body: SaveHotspotTagResponseBody;
|
|
3574
3941
|
static names(): { [key: string]: string } {
|
|
3575
3942
|
return {
|
|
3576
3943
|
headers: 'headers',
|
|
3944
|
+
statusCode: 'statusCode',
|
|
3577
3945
|
body: 'body',
|
|
3578
3946
|
};
|
|
3579
3947
|
}
|
|
@@ -3581,6 +3949,7 @@ export class SaveHotspotTagResponse extends $tea.Model {
|
|
|
3581
3949
|
static types(): { [key: string]: any } {
|
|
3582
3950
|
return {
|
|
3583
3951
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3952
|
+
statusCode: 'number',
|
|
3584
3953
|
body: SaveHotspotTagResponseBody,
|
|
3585
3954
|
};
|
|
3586
3955
|
}
|
|
@@ -3642,10 +4011,12 @@ export class ScenePublishResponseBody extends $tea.Model {
|
|
|
3642
4011
|
|
|
3643
4012
|
export class ScenePublishResponse extends $tea.Model {
|
|
3644
4013
|
headers: { [key: string]: string };
|
|
4014
|
+
statusCode: number;
|
|
3645
4015
|
body: ScenePublishResponseBody;
|
|
3646
4016
|
static names(): { [key: string]: string } {
|
|
3647
4017
|
return {
|
|
3648
4018
|
headers: 'headers',
|
|
4019
|
+
statusCode: 'statusCode',
|
|
3649
4020
|
body: 'body',
|
|
3650
4021
|
};
|
|
3651
4022
|
}
|
|
@@ -3653,6 +4024,7 @@ export class ScenePublishResponse extends $tea.Model {
|
|
|
3653
4024
|
static types(): { [key: string]: any } {
|
|
3654
4025
|
return {
|
|
3655
4026
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4027
|
+
statusCode: 'number',
|
|
3656
4028
|
body: ScenePublishResponseBody,
|
|
3657
4029
|
};
|
|
3658
4030
|
}
|
|
@@ -3717,10 +4089,12 @@ export class TempPreviewResponseBody extends $tea.Model {
|
|
|
3717
4089
|
|
|
3718
4090
|
export class TempPreviewResponse extends $tea.Model {
|
|
3719
4091
|
headers: { [key: string]: string };
|
|
4092
|
+
statusCode: number;
|
|
3720
4093
|
body: TempPreviewResponseBody;
|
|
3721
4094
|
static names(): { [key: string]: string } {
|
|
3722
4095
|
return {
|
|
3723
4096
|
headers: 'headers',
|
|
4097
|
+
statusCode: 'statusCode',
|
|
3724
4098
|
body: 'body',
|
|
3725
4099
|
};
|
|
3726
4100
|
}
|
|
@@ -3728,6 +4102,7 @@ export class TempPreviewResponse extends $tea.Model {
|
|
|
3728
4102
|
static types(): { [key: string]: any } {
|
|
3729
4103
|
return {
|
|
3730
4104
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4105
|
+
statusCode: 'number',
|
|
3731
4106
|
body: TempPreviewResponseBody,
|
|
3732
4107
|
};
|
|
3733
4108
|
}
|
|
@@ -3789,10 +4164,12 @@ export class TempPreviewStatusResponseBody extends $tea.Model {
|
|
|
3789
4164
|
|
|
3790
4165
|
export class TempPreviewStatusResponse extends $tea.Model {
|
|
3791
4166
|
headers: { [key: string]: string };
|
|
4167
|
+
statusCode: number;
|
|
3792
4168
|
body: TempPreviewStatusResponseBody;
|
|
3793
4169
|
static names(): { [key: string]: string } {
|
|
3794
4170
|
return {
|
|
3795
4171
|
headers: 'headers',
|
|
4172
|
+
statusCode: 'statusCode',
|
|
3796
4173
|
body: 'body',
|
|
3797
4174
|
};
|
|
3798
4175
|
}
|
|
@@ -3800,6 +4177,7 @@ export class TempPreviewStatusResponse extends $tea.Model {
|
|
|
3800
4177
|
static types(): { [key: string]: any } {
|
|
3801
4178
|
return {
|
|
3802
4179
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4180
|
+
statusCode: 'number',
|
|
3803
4181
|
body: TempPreviewStatusResponseBody,
|
|
3804
4182
|
};
|
|
3805
4183
|
}
|
|
@@ -3861,10 +4239,12 @@ export class UpdateConnDataResponseBody extends $tea.Model {
|
|
|
3861
4239
|
|
|
3862
4240
|
export class UpdateConnDataResponse extends $tea.Model {
|
|
3863
4241
|
headers: { [key: string]: string };
|
|
4242
|
+
statusCode: number;
|
|
3864
4243
|
body: UpdateConnDataResponseBody;
|
|
3865
4244
|
static names(): { [key: string]: string } {
|
|
3866
4245
|
return {
|
|
3867
4246
|
headers: 'headers',
|
|
4247
|
+
statusCode: 'statusCode',
|
|
3868
4248
|
body: 'body',
|
|
3869
4249
|
};
|
|
3870
4250
|
}
|
|
@@ -3872,6 +4252,7 @@ export class UpdateConnDataResponse extends $tea.Model {
|
|
|
3872
4252
|
static types(): { [key: string]: any } {
|
|
3873
4253
|
return {
|
|
3874
4254
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4255
|
+
statusCode: 'number',
|
|
3875
4256
|
body: UpdateConnDataResponseBody,
|
|
3876
4257
|
};
|
|
3877
4258
|
}
|
|
@@ -3933,10 +4314,12 @@ export class UpdateLayoutDataResponseBody extends $tea.Model {
|
|
|
3933
4314
|
|
|
3934
4315
|
export class UpdateLayoutDataResponse extends $tea.Model {
|
|
3935
4316
|
headers: { [key: string]: string };
|
|
4317
|
+
statusCode: number;
|
|
3936
4318
|
body: UpdateLayoutDataResponseBody;
|
|
3937
4319
|
static names(): { [key: string]: string } {
|
|
3938
4320
|
return {
|
|
3939
4321
|
headers: 'headers',
|
|
4322
|
+
statusCode: 'statusCode',
|
|
3940
4323
|
body: 'body',
|
|
3941
4324
|
};
|
|
3942
4325
|
}
|
|
@@ -3944,6 +4327,7 @@ export class UpdateLayoutDataResponse extends $tea.Model {
|
|
|
3944
4327
|
static types(): { [key: string]: any } {
|
|
3945
4328
|
return {
|
|
3946
4329
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4330
|
+
statusCode: 'number',
|
|
3947
4331
|
body: UpdateLayoutDataResponseBody,
|
|
3948
4332
|
};
|
|
3949
4333
|
}
|
|
@@ -4008,10 +4392,12 @@ export class UpdateProjectResponseBody extends $tea.Model {
|
|
|
4008
4392
|
|
|
4009
4393
|
export class UpdateProjectResponse extends $tea.Model {
|
|
4010
4394
|
headers: { [key: string]: string };
|
|
4395
|
+
statusCode: number;
|
|
4011
4396
|
body: UpdateProjectResponseBody;
|
|
4012
4397
|
static names(): { [key: string]: string } {
|
|
4013
4398
|
return {
|
|
4014
4399
|
headers: 'headers',
|
|
4400
|
+
statusCode: 'statusCode',
|
|
4015
4401
|
body: 'body',
|
|
4016
4402
|
};
|
|
4017
4403
|
}
|
|
@@ -4019,6 +4405,7 @@ export class UpdateProjectResponse extends $tea.Model {
|
|
|
4019
4405
|
static types(): { [key: string]: any } {
|
|
4020
4406
|
return {
|
|
4021
4407
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4408
|
+
statusCode: 'number',
|
|
4022
4409
|
body: UpdateProjectResponseBody,
|
|
4023
4410
|
};
|
|
4024
4411
|
}
|
|
@@ -4080,10 +4467,12 @@ export class UpdateSceneResponseBody extends $tea.Model {
|
|
|
4080
4467
|
|
|
4081
4468
|
export class UpdateSceneResponse extends $tea.Model {
|
|
4082
4469
|
headers: { [key: string]: string };
|
|
4470
|
+
statusCode: number;
|
|
4083
4471
|
body: UpdateSceneResponseBody;
|
|
4084
4472
|
static names(): { [key: string]: string } {
|
|
4085
4473
|
return {
|
|
4086
4474
|
headers: 'headers',
|
|
4475
|
+
statusCode: 'statusCode',
|
|
4087
4476
|
body: 'body',
|
|
4088
4477
|
};
|
|
4089
4478
|
}
|
|
@@ -4091,6 +4480,7 @@ export class UpdateSceneResponse extends $tea.Model {
|
|
|
4091
4480
|
static types(): { [key: string]: any } {
|
|
4092
4481
|
return {
|
|
4093
4482
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4483
|
+
statusCode: 'number',
|
|
4094
4484
|
body: UpdateSceneResponseBody,
|
|
4095
4485
|
};
|
|
4096
4486
|
}
|
|
@@ -4152,10 +4542,12 @@ export class UpdateSubSceneResponseBody extends $tea.Model {
|
|
|
4152
4542
|
|
|
4153
4543
|
export class UpdateSubSceneResponse extends $tea.Model {
|
|
4154
4544
|
headers: { [key: string]: string };
|
|
4545
|
+
statusCode: number;
|
|
4155
4546
|
body: UpdateSubSceneResponseBody;
|
|
4156
4547
|
static names(): { [key: string]: string } {
|
|
4157
4548
|
return {
|
|
4158
4549
|
headers: 'headers',
|
|
4550
|
+
statusCode: 'statusCode',
|
|
4159
4551
|
body: 'body',
|
|
4160
4552
|
};
|
|
4161
4553
|
}
|
|
@@ -4163,6 +4555,7 @@ export class UpdateSubSceneResponse extends $tea.Model {
|
|
|
4163
4555
|
static types(): { [key: string]: any } {
|
|
4164
4556
|
return {
|
|
4165
4557
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4558
|
+
statusCode: 'number',
|
|
4166
4559
|
body: UpdateSubSceneResponseBody,
|
|
4167
4560
|
};
|
|
4168
4561
|
}
|
|
@@ -4262,6 +4655,53 @@ export class GetHotspotSceneDataResponseBodyData extends $tea.Model {
|
|
|
4262
4655
|
}
|
|
4263
4656
|
}
|
|
4264
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
|
+
|
|
4265
4705
|
export class GetScenePreviewDataResponseBodyDataModelPanoListPosition extends $tea.Model {
|
|
4266
4706
|
rotation?: number[];
|
|
4267
4707
|
spot?: number[];
|
|
@@ -4793,6 +5233,25 @@ export class ListSubSceneResponseBodyList extends $tea.Model {
|
|
|
4793
5233
|
}
|
|
4794
5234
|
}
|
|
4795
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
|
+
|
|
4796
5255
|
|
|
4797
5256
|
export default class Client extends OpenApi {
|
|
4798
5257
|
|
|
@@ -5471,6 +5930,39 @@ export default class Client extends OpenApi {
|
|
|
5471
5930
|
return await this.getOssPolicyWithOptions(request, runtime);
|
|
5472
5931
|
}
|
|
5473
5932
|
|
|
5933
|
+
async getPackSceneTaskStatusWithOptions(request: GetPackSceneTaskStatusRequest, runtime: $Util.RuntimeOptions): Promise<GetPackSceneTaskStatusResponse> {
|
|
5934
|
+
Util.validateModel(request);
|
|
5935
|
+
let query = { };
|
|
5936
|
+
if (!Util.isUnset(request.taskId)) {
|
|
5937
|
+
query["TaskId"] = request.taskId;
|
|
5938
|
+
}
|
|
5939
|
+
|
|
5940
|
+
if (!Util.isUnset(request.type)) {
|
|
5941
|
+
query["Type"] = request.type;
|
|
5942
|
+
}
|
|
5943
|
+
|
|
5944
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
5945
|
+
query: OpenApiUtil.query(query),
|
|
5946
|
+
});
|
|
5947
|
+
let params = new $OpenApi.Params({
|
|
5948
|
+
action: "GetPackSceneTaskStatus",
|
|
5949
|
+
version: "2020-01-01",
|
|
5950
|
+
protocol: "HTTPS",
|
|
5951
|
+
pathname: "/",
|
|
5952
|
+
method: "POST",
|
|
5953
|
+
authType: "AK",
|
|
5954
|
+
style: "RPC",
|
|
5955
|
+
reqBodyType: "formData",
|
|
5956
|
+
bodyType: "json",
|
|
5957
|
+
});
|
|
5958
|
+
return $tea.cast<GetPackSceneTaskStatusResponse>(await this.callApi(params, req, runtime), new GetPackSceneTaskStatusResponse({}));
|
|
5959
|
+
}
|
|
5960
|
+
|
|
5961
|
+
async getPackSceneTaskStatus(request: GetPackSceneTaskStatusRequest): Promise<GetPackSceneTaskStatusResponse> {
|
|
5962
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
5963
|
+
return await this.getPackSceneTaskStatusWithOptions(request, runtime);
|
|
5964
|
+
}
|
|
5965
|
+
|
|
5474
5966
|
async getRectifyImageWithOptions(request: GetRectifyImageRequest, runtime: $Util.RuntimeOptions): Promise<GetRectifyImageResponse> {
|
|
5475
5967
|
Util.validateModel(request);
|
|
5476
5968
|
let query = { };
|
|
@@ -5529,6 +6021,35 @@ export default class Client extends OpenApi {
|
|
|
5529
6021
|
return await this.getSceneBuildTaskStatusWithOptions(request, runtime);
|
|
5530
6022
|
}
|
|
5531
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
|
+
|
|
5532
6053
|
async getScenePreviewDataWithOptions(request: GetScenePreviewDataRequest, runtime: $Util.RuntimeOptions): Promise<GetScenePreviewDataResponse> {
|
|
5533
6054
|
Util.validateModel(request);
|
|
5534
6055
|
let query = { };
|
|
@@ -5974,6 +6495,39 @@ export default class Client extends OpenApi {
|
|
|
5974
6495
|
return await this.optimizeRightAngleWithOptions(request, runtime);
|
|
5975
6496
|
}
|
|
5976
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
|
+
|
|
5977
6531
|
async predImageWithOptions(request: PredImageRequest, runtime: $Util.RuntimeOptions): Promise<PredImageResponse> {
|
|
5978
6532
|
Util.validateModel(request);
|
|
5979
6533
|
let query = { };
|