@alicloud/tdsr20200101 3.0.7 → 3.0.10
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 +307 -0
- package/dist/client.js +559 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +712 -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
|
}
|
|
@@ -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
|
}
|
|
@@ -510,10 +531,12 @@ export class CheckUserPropertyResponseBody extends $tea.Model {
|
|
|
510
531
|
|
|
511
532
|
export class CheckUserPropertyResponse extends $tea.Model {
|
|
512
533
|
headers: { [key: string]: string };
|
|
534
|
+
statusCode: number;
|
|
513
535
|
body: CheckUserPropertyResponseBody;
|
|
514
536
|
static names(): { [key: string]: string } {
|
|
515
537
|
return {
|
|
516
538
|
headers: 'headers',
|
|
539
|
+
statusCode: 'statusCode',
|
|
517
540
|
body: 'body',
|
|
518
541
|
};
|
|
519
542
|
}
|
|
@@ -521,6 +544,7 @@ export class CheckUserPropertyResponse extends $tea.Model {
|
|
|
521
544
|
static types(): { [key: string]: any } {
|
|
522
545
|
return {
|
|
523
546
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
547
|
+
statusCode: 'number',
|
|
524
548
|
body: CheckUserPropertyResponseBody,
|
|
525
549
|
};
|
|
526
550
|
}
|
|
@@ -600,10 +624,12 @@ export class DetailProjectResponseBody extends $tea.Model {
|
|
|
600
624
|
|
|
601
625
|
export class DetailProjectResponse extends $tea.Model {
|
|
602
626
|
headers: { [key: string]: string };
|
|
627
|
+
statusCode: number;
|
|
603
628
|
body: DetailProjectResponseBody;
|
|
604
629
|
static names(): { [key: string]: string } {
|
|
605
630
|
return {
|
|
606
631
|
headers: 'headers',
|
|
632
|
+
statusCode: 'statusCode',
|
|
607
633
|
body: 'body',
|
|
608
634
|
};
|
|
609
635
|
}
|
|
@@ -611,6 +637,7 @@ export class DetailProjectResponse extends $tea.Model {
|
|
|
611
637
|
static types(): { [key: string]: any } {
|
|
612
638
|
return {
|
|
613
639
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
640
|
+
statusCode: 'number',
|
|
614
641
|
body: DetailProjectResponseBody,
|
|
615
642
|
};
|
|
616
643
|
}
|
|
@@ -696,10 +723,12 @@ export class DetailSceneResponseBody extends $tea.Model {
|
|
|
696
723
|
|
|
697
724
|
export class DetailSceneResponse extends $tea.Model {
|
|
698
725
|
headers: { [key: string]: string };
|
|
726
|
+
statusCode: number;
|
|
699
727
|
body: DetailSceneResponseBody;
|
|
700
728
|
static names(): { [key: string]: string } {
|
|
701
729
|
return {
|
|
702
730
|
headers: 'headers',
|
|
731
|
+
statusCode: 'statusCode',
|
|
703
732
|
body: 'body',
|
|
704
733
|
};
|
|
705
734
|
}
|
|
@@ -707,6 +736,7 @@ export class DetailSceneResponse extends $tea.Model {
|
|
|
707
736
|
static types(): { [key: string]: any } {
|
|
708
737
|
return {
|
|
709
738
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
739
|
+
statusCode: 'number',
|
|
710
740
|
body: DetailSceneResponseBody,
|
|
711
741
|
};
|
|
712
742
|
}
|
|
@@ -804,10 +834,12 @@ export class DetailSubSceneResponseBody extends $tea.Model {
|
|
|
804
834
|
|
|
805
835
|
export class DetailSubSceneResponse extends $tea.Model {
|
|
806
836
|
headers: { [key: string]: string };
|
|
837
|
+
statusCode: number;
|
|
807
838
|
body: DetailSubSceneResponseBody;
|
|
808
839
|
static names(): { [key: string]: string } {
|
|
809
840
|
return {
|
|
810
841
|
headers: 'headers',
|
|
842
|
+
statusCode: 'statusCode',
|
|
811
843
|
body: 'body',
|
|
812
844
|
};
|
|
813
845
|
}
|
|
@@ -815,6 +847,7 @@ export class DetailSubSceneResponse extends $tea.Model {
|
|
|
815
847
|
static types(): { [key: string]: any } {
|
|
816
848
|
return {
|
|
817
849
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
850
|
+
statusCode: 'number',
|
|
818
851
|
body: DetailSubSceneResponseBody,
|
|
819
852
|
};
|
|
820
853
|
}
|
|
@@ -873,10 +906,12 @@ export class DropProjectResponseBody extends $tea.Model {
|
|
|
873
906
|
|
|
874
907
|
export class DropProjectResponse extends $tea.Model {
|
|
875
908
|
headers: { [key: string]: string };
|
|
909
|
+
statusCode: number;
|
|
876
910
|
body: DropProjectResponseBody;
|
|
877
911
|
static names(): { [key: string]: string } {
|
|
878
912
|
return {
|
|
879
913
|
headers: 'headers',
|
|
914
|
+
statusCode: 'statusCode',
|
|
880
915
|
body: 'body',
|
|
881
916
|
};
|
|
882
917
|
}
|
|
@@ -884,6 +919,7 @@ export class DropProjectResponse extends $tea.Model {
|
|
|
884
919
|
static types(): { [key: string]: any } {
|
|
885
920
|
return {
|
|
886
921
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
922
|
+
statusCode: 'number',
|
|
887
923
|
body: DropProjectResponseBody,
|
|
888
924
|
};
|
|
889
925
|
}
|
|
@@ -942,10 +978,12 @@ export class DropSceneResponseBody extends $tea.Model {
|
|
|
942
978
|
|
|
943
979
|
export class DropSceneResponse extends $tea.Model {
|
|
944
980
|
headers: { [key: string]: string };
|
|
981
|
+
statusCode: number;
|
|
945
982
|
body: DropSceneResponseBody;
|
|
946
983
|
static names(): { [key: string]: string } {
|
|
947
984
|
return {
|
|
948
985
|
headers: 'headers',
|
|
986
|
+
statusCode: 'statusCode',
|
|
949
987
|
body: 'body',
|
|
950
988
|
};
|
|
951
989
|
}
|
|
@@ -953,6 +991,7 @@ export class DropSceneResponse extends $tea.Model {
|
|
|
953
991
|
static types(): { [key: string]: any } {
|
|
954
992
|
return {
|
|
955
993
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
994
|
+
statusCode: 'number',
|
|
956
995
|
body: DropSceneResponseBody,
|
|
957
996
|
};
|
|
958
997
|
}
|
|
@@ -1011,10 +1050,12 @@ export class DropSubSceneResponseBody extends $tea.Model {
|
|
|
1011
1050
|
|
|
1012
1051
|
export class DropSubSceneResponse extends $tea.Model {
|
|
1013
1052
|
headers: { [key: string]: string };
|
|
1053
|
+
statusCode: number;
|
|
1014
1054
|
body: DropSubSceneResponseBody;
|
|
1015
1055
|
static names(): { [key: string]: string } {
|
|
1016
1056
|
return {
|
|
1017
1057
|
headers: 'headers',
|
|
1058
|
+
statusCode: 'statusCode',
|
|
1018
1059
|
body: 'body',
|
|
1019
1060
|
};
|
|
1020
1061
|
}
|
|
@@ -1022,6 +1063,7 @@ export class DropSubSceneResponse extends $tea.Model {
|
|
|
1022
1063
|
static types(): { [key: string]: any } {
|
|
1023
1064
|
return {
|
|
1024
1065
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1066
|
+
statusCode: 'number',
|
|
1025
1067
|
body: DropSubSceneResponseBody,
|
|
1026
1068
|
};
|
|
1027
1069
|
}
|
|
@@ -1089,10 +1131,12 @@ export class GetConnDataResponseBody extends $tea.Model {
|
|
|
1089
1131
|
|
|
1090
1132
|
export class GetConnDataResponse extends $tea.Model {
|
|
1091
1133
|
headers: { [key: string]: string };
|
|
1134
|
+
statusCode: number;
|
|
1092
1135
|
body: GetConnDataResponseBody;
|
|
1093
1136
|
static names(): { [key: string]: string } {
|
|
1094
1137
|
return {
|
|
1095
1138
|
headers: 'headers',
|
|
1139
|
+
statusCode: 'statusCode',
|
|
1096
1140
|
body: 'body',
|
|
1097
1141
|
};
|
|
1098
1142
|
}
|
|
@@ -1100,6 +1144,7 @@ export class GetConnDataResponse extends $tea.Model {
|
|
|
1100
1144
|
static types(): { [key: string]: any } {
|
|
1101
1145
|
return {
|
|
1102
1146
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1147
|
+
statusCode: 'number',
|
|
1103
1148
|
body: GetConnDataResponseBody,
|
|
1104
1149
|
};
|
|
1105
1150
|
}
|
|
@@ -1170,10 +1215,12 @@ export class GetHotspotConfigResponseBody extends $tea.Model {
|
|
|
1170
1215
|
|
|
1171
1216
|
export class GetHotspotConfigResponse extends $tea.Model {
|
|
1172
1217
|
headers: { [key: string]: string };
|
|
1218
|
+
statusCode: number;
|
|
1173
1219
|
body: GetHotspotConfigResponseBody;
|
|
1174
1220
|
static names(): { [key: string]: string } {
|
|
1175
1221
|
return {
|
|
1176
1222
|
headers: 'headers',
|
|
1223
|
+
statusCode: 'statusCode',
|
|
1177
1224
|
body: 'body',
|
|
1178
1225
|
};
|
|
1179
1226
|
}
|
|
@@ -1181,6 +1228,7 @@ export class GetHotspotConfigResponse extends $tea.Model {
|
|
|
1181
1228
|
static types(): { [key: string]: any } {
|
|
1182
1229
|
return {
|
|
1183
1230
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1231
|
+
statusCode: 'number',
|
|
1184
1232
|
body: GetHotspotConfigResponseBody,
|
|
1185
1233
|
};
|
|
1186
1234
|
}
|
|
@@ -1251,10 +1299,12 @@ export class GetHotspotSceneDataResponseBody extends $tea.Model {
|
|
|
1251
1299
|
|
|
1252
1300
|
export class GetHotspotSceneDataResponse extends $tea.Model {
|
|
1253
1301
|
headers: { [key: string]: string };
|
|
1302
|
+
statusCode: number;
|
|
1254
1303
|
body: GetHotspotSceneDataResponseBody;
|
|
1255
1304
|
static names(): { [key: string]: string } {
|
|
1256
1305
|
return {
|
|
1257
1306
|
headers: 'headers',
|
|
1307
|
+
statusCode: 'statusCode',
|
|
1258
1308
|
body: 'body',
|
|
1259
1309
|
};
|
|
1260
1310
|
}
|
|
@@ -1262,6 +1312,7 @@ export class GetHotspotSceneDataResponse extends $tea.Model {
|
|
|
1262
1312
|
static types(): { [key: string]: any } {
|
|
1263
1313
|
return {
|
|
1264
1314
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1315
|
+
statusCode: 'number',
|
|
1265
1316
|
body: GetHotspotSceneDataResponseBody,
|
|
1266
1317
|
};
|
|
1267
1318
|
}
|
|
@@ -1335,10 +1386,12 @@ export class GetHotspotTagResponseBody extends $tea.Model {
|
|
|
1335
1386
|
|
|
1336
1387
|
export class GetHotspotTagResponse extends $tea.Model {
|
|
1337
1388
|
headers: { [key: string]: string };
|
|
1389
|
+
statusCode: number;
|
|
1338
1390
|
body: GetHotspotTagResponseBody;
|
|
1339
1391
|
static names(): { [key: string]: string } {
|
|
1340
1392
|
return {
|
|
1341
1393
|
headers: 'headers',
|
|
1394
|
+
statusCode: 'statusCode',
|
|
1342
1395
|
body: 'body',
|
|
1343
1396
|
};
|
|
1344
1397
|
}
|
|
@@ -1346,6 +1399,7 @@ export class GetHotspotTagResponse extends $tea.Model {
|
|
|
1346
1399
|
static types(): { [key: string]: any } {
|
|
1347
1400
|
return {
|
|
1348
1401
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1402
|
+
statusCode: 'number',
|
|
1349
1403
|
body: GetHotspotTagResponseBody,
|
|
1350
1404
|
};
|
|
1351
1405
|
}
|
|
@@ -1407,10 +1461,12 @@ export class GetLayoutDataResponseBody extends $tea.Model {
|
|
|
1407
1461
|
|
|
1408
1462
|
export class GetLayoutDataResponse extends $tea.Model {
|
|
1409
1463
|
headers: { [key: string]: string };
|
|
1464
|
+
statusCode: number;
|
|
1410
1465
|
body: GetLayoutDataResponseBody;
|
|
1411
1466
|
static names(): { [key: string]: string } {
|
|
1412
1467
|
return {
|
|
1413
1468
|
headers: 'headers',
|
|
1469
|
+
statusCode: 'statusCode',
|
|
1414
1470
|
body: 'body',
|
|
1415
1471
|
};
|
|
1416
1472
|
}
|
|
@@ -1418,6 +1474,7 @@ export class GetLayoutDataResponse extends $tea.Model {
|
|
|
1418
1474
|
static types(): { [key: string]: any } {
|
|
1419
1475
|
return {
|
|
1420
1476
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1477
|
+
statusCode: 'number',
|
|
1421
1478
|
body: GetLayoutDataResponseBody,
|
|
1422
1479
|
};
|
|
1423
1480
|
}
|
|
@@ -1479,10 +1536,12 @@ export class GetOriginLayoutDataResponseBody extends $tea.Model {
|
|
|
1479
1536
|
|
|
1480
1537
|
export class GetOriginLayoutDataResponse extends $tea.Model {
|
|
1481
1538
|
headers: { [key: string]: string };
|
|
1539
|
+
statusCode: number;
|
|
1482
1540
|
body: GetOriginLayoutDataResponseBody;
|
|
1483
1541
|
static names(): { [key: string]: string } {
|
|
1484
1542
|
return {
|
|
1485
1543
|
headers: 'headers',
|
|
1544
|
+
statusCode: 'statusCode',
|
|
1486
1545
|
body: 'body',
|
|
1487
1546
|
};
|
|
1488
1547
|
}
|
|
@@ -1490,6 +1549,7 @@ export class GetOriginLayoutDataResponse extends $tea.Model {
|
|
|
1490
1549
|
static types(): { [key: string]: any } {
|
|
1491
1550
|
return {
|
|
1492
1551
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1552
|
+
statusCode: 'number',
|
|
1493
1553
|
body: GetOriginLayoutDataResponseBody,
|
|
1494
1554
|
};
|
|
1495
1555
|
}
|
|
@@ -1569,10 +1629,12 @@ export class GetOssPolicyResponseBody extends $tea.Model {
|
|
|
1569
1629
|
|
|
1570
1630
|
export class GetOssPolicyResponse extends $tea.Model {
|
|
1571
1631
|
headers: { [key: string]: string };
|
|
1632
|
+
statusCode: number;
|
|
1572
1633
|
body: GetOssPolicyResponseBody;
|
|
1573
1634
|
static names(): { [key: string]: string } {
|
|
1574
1635
|
return {
|
|
1575
1636
|
headers: 'headers',
|
|
1637
|
+
statusCode: 'statusCode',
|
|
1576
1638
|
body: 'body',
|
|
1577
1639
|
};
|
|
1578
1640
|
}
|
|
@@ -1580,6 +1642,7 @@ export class GetOssPolicyResponse extends $tea.Model {
|
|
|
1580
1642
|
static types(): { [key: string]: any } {
|
|
1581
1643
|
return {
|
|
1582
1644
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1645
|
+
statusCode: 'number',
|
|
1583
1646
|
body: GetOssPolicyResponseBody,
|
|
1584
1647
|
};
|
|
1585
1648
|
}
|
|
@@ -1589,6 +1652,84 @@ export class GetOssPolicyResponse extends $tea.Model {
|
|
|
1589
1652
|
}
|
|
1590
1653
|
}
|
|
1591
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
|
+
|
|
1592
1733
|
export class GetRectifyImageRequest extends $tea.Model {
|
|
1593
1734
|
subSceneId?: string;
|
|
1594
1735
|
static names(): { [key: string]: string } {
|
|
@@ -1641,10 +1782,12 @@ export class GetRectifyImageResponseBody extends $tea.Model {
|
|
|
1641
1782
|
|
|
1642
1783
|
export class GetRectifyImageResponse extends $tea.Model {
|
|
1643
1784
|
headers: { [key: string]: string };
|
|
1785
|
+
statusCode: number;
|
|
1644
1786
|
body: GetRectifyImageResponseBody;
|
|
1645
1787
|
static names(): { [key: string]: string } {
|
|
1646
1788
|
return {
|
|
1647
1789
|
headers: 'headers',
|
|
1790
|
+
statusCode: 'statusCode',
|
|
1648
1791
|
body: 'body',
|
|
1649
1792
|
};
|
|
1650
1793
|
}
|
|
@@ -1652,6 +1795,7 @@ export class GetRectifyImageResponse extends $tea.Model {
|
|
|
1652
1795
|
static types(): { [key: string]: any } {
|
|
1653
1796
|
return {
|
|
1654
1797
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1798
|
+
statusCode: 'number',
|
|
1655
1799
|
body: GetRectifyImageResponseBody,
|
|
1656
1800
|
};
|
|
1657
1801
|
}
|
|
@@ -1722,10 +1866,12 @@ export class GetSceneBuildTaskStatusResponseBody extends $tea.Model {
|
|
|
1722
1866
|
|
|
1723
1867
|
export class GetSceneBuildTaskStatusResponse extends $tea.Model {
|
|
1724
1868
|
headers: { [key: string]: string };
|
|
1869
|
+
statusCode: number;
|
|
1725
1870
|
body: GetSceneBuildTaskStatusResponseBody;
|
|
1726
1871
|
static names(): { [key: string]: string } {
|
|
1727
1872
|
return {
|
|
1728
1873
|
headers: 'headers',
|
|
1874
|
+
statusCode: 'statusCode',
|
|
1729
1875
|
body: 'body',
|
|
1730
1876
|
};
|
|
1731
1877
|
}
|
|
@@ -1733,6 +1879,7 @@ export class GetSceneBuildTaskStatusResponse extends $tea.Model {
|
|
|
1733
1879
|
static types(): { [key: string]: any } {
|
|
1734
1880
|
return {
|
|
1735
1881
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1882
|
+
statusCode: 'number',
|
|
1736
1883
|
body: GetSceneBuildTaskStatusResponseBody,
|
|
1737
1884
|
};
|
|
1738
1885
|
}
|
|
@@ -1742,6 +1889,81 @@ export class GetSceneBuildTaskStatusResponse extends $tea.Model {
|
|
|
1742
1889
|
}
|
|
1743
1890
|
}
|
|
1744
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
|
+
|
|
1745
1967
|
export class GetScenePreviewDataRequest extends $tea.Model {
|
|
1746
1968
|
domain?: string;
|
|
1747
1969
|
enabled?: boolean;
|
|
@@ -1803,10 +2025,12 @@ export class GetScenePreviewDataResponseBody extends $tea.Model {
|
|
|
1803
2025
|
|
|
1804
2026
|
export class GetScenePreviewDataResponse extends $tea.Model {
|
|
1805
2027
|
headers: { [key: string]: string };
|
|
2028
|
+
statusCode: number;
|
|
1806
2029
|
body: GetScenePreviewDataResponseBody;
|
|
1807
2030
|
static names(): { [key: string]: string } {
|
|
1808
2031
|
return {
|
|
1809
2032
|
headers: 'headers',
|
|
2033
|
+
statusCode: 'statusCode',
|
|
1810
2034
|
body: 'body',
|
|
1811
2035
|
};
|
|
1812
2036
|
}
|
|
@@ -1814,6 +2038,7 @@ export class GetScenePreviewDataResponse extends $tea.Model {
|
|
|
1814
2038
|
static types(): { [key: string]: any } {
|
|
1815
2039
|
return {
|
|
1816
2040
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2041
|
+
statusCode: 'number',
|
|
1817
2042
|
body: GetScenePreviewDataResponseBody,
|
|
1818
2043
|
};
|
|
1819
2044
|
}
|
|
@@ -1881,10 +2106,12 @@ export class GetScenePreviewInfoResponseBody extends $tea.Model {
|
|
|
1881
2106
|
|
|
1882
2107
|
export class GetScenePreviewInfoResponse extends $tea.Model {
|
|
1883
2108
|
headers: { [key: string]: string };
|
|
2109
|
+
statusCode: number;
|
|
1884
2110
|
body: GetScenePreviewInfoResponseBody;
|
|
1885
2111
|
static names(): { [key: string]: string } {
|
|
1886
2112
|
return {
|
|
1887
2113
|
headers: 'headers',
|
|
2114
|
+
statusCode: 'statusCode',
|
|
1888
2115
|
body: 'body',
|
|
1889
2116
|
};
|
|
1890
2117
|
}
|
|
@@ -1892,6 +2119,7 @@ export class GetScenePreviewInfoResponse extends $tea.Model {
|
|
|
1892
2119
|
static types(): { [key: string]: any } {
|
|
1893
2120
|
return {
|
|
1894
2121
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2122
|
+
statusCode: 'number',
|
|
1895
2123
|
body: GetScenePreviewInfoResponseBody,
|
|
1896
2124
|
};
|
|
1897
2125
|
}
|
|
@@ -1901,6 +2129,81 @@ export class GetScenePreviewInfoResponse extends $tea.Model {
|
|
|
1901
2129
|
}
|
|
1902
2130
|
}
|
|
1903
2131
|
|
|
2132
|
+
export class GetScenePreviewResourceRequest extends $tea.Model {
|
|
2133
|
+
previewToken?: string;
|
|
2134
|
+
static names(): { [key: string]: string } {
|
|
2135
|
+
return {
|
|
2136
|
+
previewToken: 'PreviewToken',
|
|
2137
|
+
};
|
|
2138
|
+
}
|
|
2139
|
+
|
|
2140
|
+
static types(): { [key: string]: any } {
|
|
2141
|
+
return {
|
|
2142
|
+
previewToken: 'string',
|
|
2143
|
+
};
|
|
2144
|
+
}
|
|
2145
|
+
|
|
2146
|
+
constructor(map?: { [key: string]: any }) {
|
|
2147
|
+
super(map);
|
|
2148
|
+
}
|
|
2149
|
+
}
|
|
2150
|
+
|
|
2151
|
+
export class GetScenePreviewResourceResponseBody extends $tea.Model {
|
|
2152
|
+
code?: number;
|
|
2153
|
+
data?: GetScenePreviewResourceResponseBodyData;
|
|
2154
|
+
message?: string;
|
|
2155
|
+
requestId?: string;
|
|
2156
|
+
success?: boolean;
|
|
2157
|
+
static names(): { [key: string]: string } {
|
|
2158
|
+
return {
|
|
2159
|
+
code: 'Code',
|
|
2160
|
+
data: 'Data',
|
|
2161
|
+
message: 'Message',
|
|
2162
|
+
requestId: 'RequestId',
|
|
2163
|
+
success: 'Success',
|
|
2164
|
+
};
|
|
2165
|
+
}
|
|
2166
|
+
|
|
2167
|
+
static types(): { [key: string]: any } {
|
|
2168
|
+
return {
|
|
2169
|
+
code: 'number',
|
|
2170
|
+
data: GetScenePreviewResourceResponseBodyData,
|
|
2171
|
+
message: 'string',
|
|
2172
|
+
requestId: 'string',
|
|
2173
|
+
success: 'boolean',
|
|
2174
|
+
};
|
|
2175
|
+
}
|
|
2176
|
+
|
|
2177
|
+
constructor(map?: { [key: string]: any }) {
|
|
2178
|
+
super(map);
|
|
2179
|
+
}
|
|
2180
|
+
}
|
|
2181
|
+
|
|
2182
|
+
export class GetScenePreviewResourceResponse extends $tea.Model {
|
|
2183
|
+
headers: { [key: string]: string };
|
|
2184
|
+
statusCode: number;
|
|
2185
|
+
body: GetScenePreviewResourceResponseBody;
|
|
2186
|
+
static names(): { [key: string]: string } {
|
|
2187
|
+
return {
|
|
2188
|
+
headers: 'headers',
|
|
2189
|
+
statusCode: 'statusCode',
|
|
2190
|
+
body: 'body',
|
|
2191
|
+
};
|
|
2192
|
+
}
|
|
2193
|
+
|
|
2194
|
+
static types(): { [key: string]: any } {
|
|
2195
|
+
return {
|
|
2196
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2197
|
+
statusCode: 'number',
|
|
2198
|
+
body: GetScenePreviewResourceResponseBody,
|
|
2199
|
+
};
|
|
2200
|
+
}
|
|
2201
|
+
|
|
2202
|
+
constructor(map?: { [key: string]: any }) {
|
|
2203
|
+
super(map);
|
|
2204
|
+
}
|
|
2205
|
+
}
|
|
2206
|
+
|
|
1904
2207
|
export class GetSingleConnDataRequest extends $tea.Model {
|
|
1905
2208
|
subSceneId?: string;
|
|
1906
2209
|
static names(): { [key: string]: string } {
|
|
@@ -1956,10 +2259,12 @@ export class GetSingleConnDataResponseBody extends $tea.Model {
|
|
|
1956
2259
|
|
|
1957
2260
|
export class GetSingleConnDataResponse extends $tea.Model {
|
|
1958
2261
|
headers: { [key: string]: string };
|
|
2262
|
+
statusCode: number;
|
|
1959
2263
|
body: GetSingleConnDataResponseBody;
|
|
1960
2264
|
static names(): { [key: string]: string } {
|
|
1961
2265
|
return {
|
|
1962
2266
|
headers: 'headers',
|
|
2267
|
+
statusCode: 'statusCode',
|
|
1963
2268
|
body: 'body',
|
|
1964
2269
|
};
|
|
1965
2270
|
}
|
|
@@ -1967,6 +2272,7 @@ export class GetSingleConnDataResponse extends $tea.Model {
|
|
|
1967
2272
|
static types(): { [key: string]: any } {
|
|
1968
2273
|
return {
|
|
1969
2274
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2275
|
+
statusCode: 'number',
|
|
1970
2276
|
body: GetSingleConnDataResponseBody,
|
|
1971
2277
|
};
|
|
1972
2278
|
}
|
|
@@ -2028,10 +2334,12 @@ export class GetSubSceneTaskStatusResponseBody extends $tea.Model {
|
|
|
2028
2334
|
|
|
2029
2335
|
export class GetSubSceneTaskStatusResponse extends $tea.Model {
|
|
2030
2336
|
headers: { [key: string]: string };
|
|
2337
|
+
statusCode: number;
|
|
2031
2338
|
body: GetSubSceneTaskStatusResponseBody;
|
|
2032
2339
|
static names(): { [key: string]: string } {
|
|
2033
2340
|
return {
|
|
2034
2341
|
headers: 'headers',
|
|
2342
|
+
statusCode: 'statusCode',
|
|
2035
2343
|
body: 'body',
|
|
2036
2344
|
};
|
|
2037
2345
|
}
|
|
@@ -2039,6 +2347,7 @@ export class GetSubSceneTaskStatusResponse extends $tea.Model {
|
|
|
2039
2347
|
static types(): { [key: string]: any } {
|
|
2040
2348
|
return {
|
|
2041
2349
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2350
|
+
statusCode: 'number',
|
|
2042
2351
|
body: GetSubSceneTaskStatusResponseBody,
|
|
2043
2352
|
};
|
|
2044
2353
|
}
|
|
@@ -2109,10 +2418,12 @@ export class GetTaskStatusResponseBody extends $tea.Model {
|
|
|
2109
2418
|
|
|
2110
2419
|
export class GetTaskStatusResponse extends $tea.Model {
|
|
2111
2420
|
headers: { [key: string]: string };
|
|
2421
|
+
statusCode: number;
|
|
2112
2422
|
body: GetTaskStatusResponseBody;
|
|
2113
2423
|
static names(): { [key: string]: string } {
|
|
2114
2424
|
return {
|
|
2115
2425
|
headers: 'headers',
|
|
2426
|
+
statusCode: 'statusCode',
|
|
2116
2427
|
body: 'body',
|
|
2117
2428
|
};
|
|
2118
2429
|
}
|
|
@@ -2120,6 +2431,7 @@ export class GetTaskStatusResponse extends $tea.Model {
|
|
|
2120
2431
|
static types(): { [key: string]: any } {
|
|
2121
2432
|
return {
|
|
2122
2433
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2434
|
+
statusCode: 'number',
|
|
2123
2435
|
body: GetTaskStatusResponseBody,
|
|
2124
2436
|
};
|
|
2125
2437
|
}
|
|
@@ -2181,10 +2493,12 @@ export class GetWindowConfigResponseBody extends $tea.Model {
|
|
|
2181
2493
|
|
|
2182
2494
|
export class GetWindowConfigResponse extends $tea.Model {
|
|
2183
2495
|
headers: { [key: string]: string };
|
|
2496
|
+
statusCode: number;
|
|
2184
2497
|
body: GetWindowConfigResponseBody;
|
|
2185
2498
|
static names(): { [key: string]: string } {
|
|
2186
2499
|
return {
|
|
2187
2500
|
headers: 'headers',
|
|
2501
|
+
statusCode: 'statusCode',
|
|
2188
2502
|
body: 'body',
|
|
2189
2503
|
};
|
|
2190
2504
|
}
|
|
@@ -2192,6 +2506,7 @@ export class GetWindowConfigResponse extends $tea.Model {
|
|
|
2192
2506
|
static types(): { [key: string]: any } {
|
|
2193
2507
|
return {
|
|
2194
2508
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2509
|
+
statusCode: 'number',
|
|
2195
2510
|
body: GetWindowConfigResponseBody,
|
|
2196
2511
|
};
|
|
2197
2512
|
}
|
|
@@ -2256,10 +2571,12 @@ export class LabelBuildResponseBody extends $tea.Model {
|
|
|
2256
2571
|
|
|
2257
2572
|
export class LabelBuildResponse extends $tea.Model {
|
|
2258
2573
|
headers: { [key: string]: string };
|
|
2574
|
+
statusCode: number;
|
|
2259
2575
|
body: LabelBuildResponseBody;
|
|
2260
2576
|
static names(): { [key: string]: string } {
|
|
2261
2577
|
return {
|
|
2262
2578
|
headers: 'headers',
|
|
2579
|
+
statusCode: 'statusCode',
|
|
2263
2580
|
body: 'body',
|
|
2264
2581
|
};
|
|
2265
2582
|
}
|
|
@@ -2267,6 +2584,7 @@ export class LabelBuildResponse extends $tea.Model {
|
|
|
2267
2584
|
static types(): { [key: string]: any } {
|
|
2268
2585
|
return {
|
|
2269
2586
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2587
|
+
statusCode: 'number',
|
|
2270
2588
|
body: LabelBuildResponseBody,
|
|
2271
2589
|
};
|
|
2272
2590
|
}
|
|
@@ -2337,10 +2655,12 @@ export class LinkImageResponseBody extends $tea.Model {
|
|
|
2337
2655
|
|
|
2338
2656
|
export class LinkImageResponse extends $tea.Model {
|
|
2339
2657
|
headers: { [key: string]: string };
|
|
2658
|
+
statusCode: number;
|
|
2340
2659
|
body: LinkImageResponseBody;
|
|
2341
2660
|
static names(): { [key: string]: string } {
|
|
2342
2661
|
return {
|
|
2343
2662
|
headers: 'headers',
|
|
2663
|
+
statusCode: 'statusCode',
|
|
2344
2664
|
body: 'body',
|
|
2345
2665
|
};
|
|
2346
2666
|
}
|
|
@@ -2348,6 +2668,7 @@ export class LinkImageResponse extends $tea.Model {
|
|
|
2348
2668
|
static types(): { [key: string]: any } {
|
|
2349
2669
|
return {
|
|
2350
2670
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2671
|
+
statusCode: 'number',
|
|
2351
2672
|
body: LinkImageResponseBody,
|
|
2352
2673
|
};
|
|
2353
2674
|
}
|
|
@@ -2427,10 +2748,12 @@ export class ListProjectResponseBody extends $tea.Model {
|
|
|
2427
2748
|
|
|
2428
2749
|
export class ListProjectResponse extends $tea.Model {
|
|
2429
2750
|
headers: { [key: string]: string };
|
|
2751
|
+
statusCode: number;
|
|
2430
2752
|
body: ListProjectResponseBody;
|
|
2431
2753
|
static names(): { [key: string]: string } {
|
|
2432
2754
|
return {
|
|
2433
2755
|
headers: 'headers',
|
|
2756
|
+
statusCode: 'statusCode',
|
|
2434
2757
|
body: 'body',
|
|
2435
2758
|
};
|
|
2436
2759
|
}
|
|
@@ -2438,6 +2761,7 @@ export class ListProjectResponse extends $tea.Model {
|
|
|
2438
2761
|
static types(): { [key: string]: any } {
|
|
2439
2762
|
return {
|
|
2440
2763
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2764
|
+
statusCode: 'number',
|
|
2441
2765
|
body: ListProjectResponseBody,
|
|
2442
2766
|
};
|
|
2443
2767
|
}
|
|
@@ -2520,10 +2844,12 @@ export class ListSceneResponseBody extends $tea.Model {
|
|
|
2520
2844
|
|
|
2521
2845
|
export class ListSceneResponse extends $tea.Model {
|
|
2522
2846
|
headers: { [key: string]: string };
|
|
2847
|
+
statusCode: number;
|
|
2523
2848
|
body: ListSceneResponseBody;
|
|
2524
2849
|
static names(): { [key: string]: string } {
|
|
2525
2850
|
return {
|
|
2526
2851
|
headers: 'headers',
|
|
2852
|
+
statusCode: 'statusCode',
|
|
2527
2853
|
body: 'body',
|
|
2528
2854
|
};
|
|
2529
2855
|
}
|
|
@@ -2531,6 +2857,7 @@ export class ListSceneResponse extends $tea.Model {
|
|
|
2531
2857
|
static types(): { [key: string]: any } {
|
|
2532
2858
|
return {
|
|
2533
2859
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2860
|
+
statusCode: 'number',
|
|
2534
2861
|
body: ListSceneResponseBody,
|
|
2535
2862
|
};
|
|
2536
2863
|
}
|
|
@@ -2613,10 +2940,12 @@ export class ListSubSceneResponseBody extends $tea.Model {
|
|
|
2613
2940
|
|
|
2614
2941
|
export class ListSubSceneResponse extends $tea.Model {
|
|
2615
2942
|
headers: { [key: string]: string };
|
|
2943
|
+
statusCode: number;
|
|
2616
2944
|
body: ListSubSceneResponseBody;
|
|
2617
2945
|
static names(): { [key: string]: string } {
|
|
2618
2946
|
return {
|
|
2619
2947
|
headers: 'headers',
|
|
2948
|
+
statusCode: 'statusCode',
|
|
2620
2949
|
body: 'body',
|
|
2621
2950
|
};
|
|
2622
2951
|
}
|
|
@@ -2624,6 +2953,7 @@ export class ListSubSceneResponse extends $tea.Model {
|
|
|
2624
2953
|
static types(): { [key: string]: any } {
|
|
2625
2954
|
return {
|
|
2626
2955
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2956
|
+
statusCode: 'number',
|
|
2627
2957
|
body: ListSubSceneResponseBody,
|
|
2628
2958
|
};
|
|
2629
2959
|
}
|
|
@@ -2685,10 +3015,12 @@ export class OptimizeRightAngleResponseBody extends $tea.Model {
|
|
|
2685
3015
|
|
|
2686
3016
|
export class OptimizeRightAngleResponse extends $tea.Model {
|
|
2687
3017
|
headers: { [key: string]: string };
|
|
3018
|
+
statusCode: number;
|
|
2688
3019
|
body: OptimizeRightAngleResponseBody;
|
|
2689
3020
|
static names(): { [key: string]: string } {
|
|
2690
3021
|
return {
|
|
2691
3022
|
headers: 'headers',
|
|
3023
|
+
statusCode: 'statusCode',
|
|
2692
3024
|
body: 'body',
|
|
2693
3025
|
};
|
|
2694
3026
|
}
|
|
@@ -2696,6 +3028,7 @@ export class OptimizeRightAngleResponse extends $tea.Model {
|
|
|
2696
3028
|
static types(): { [key: string]: any } {
|
|
2697
3029
|
return {
|
|
2698
3030
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3031
|
+
statusCode: 'number',
|
|
2699
3032
|
body: OptimizeRightAngleResponseBody,
|
|
2700
3033
|
};
|
|
2701
3034
|
}
|
|
@@ -2705,6 +3038,84 @@ export class OptimizeRightAngleResponse extends $tea.Model {
|
|
|
2705
3038
|
}
|
|
2706
3039
|
}
|
|
2707
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
|
+
|
|
2708
3119
|
export class PredImageRequest extends $tea.Model {
|
|
2709
3120
|
correctVertical?: boolean;
|
|
2710
3121
|
countDetectDoor?: number;
|
|
@@ -2766,10 +3177,12 @@ export class PredImageResponseBody extends $tea.Model {
|
|
|
2766
3177
|
|
|
2767
3178
|
export class PredImageResponse extends $tea.Model {
|
|
2768
3179
|
headers: { [key: string]: string };
|
|
3180
|
+
statusCode: number;
|
|
2769
3181
|
body: PredImageResponseBody;
|
|
2770
3182
|
static names(): { [key: string]: string } {
|
|
2771
3183
|
return {
|
|
2772
3184
|
headers: 'headers',
|
|
3185
|
+
statusCode: 'statusCode',
|
|
2773
3186
|
body: 'body',
|
|
2774
3187
|
};
|
|
2775
3188
|
}
|
|
@@ -2777,6 +3190,7 @@ export class PredImageResponse extends $tea.Model {
|
|
|
2777
3190
|
static types(): { [key: string]: any } {
|
|
2778
3191
|
return {
|
|
2779
3192
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3193
|
+
statusCode: 'number',
|
|
2780
3194
|
body: PredImageResponseBody,
|
|
2781
3195
|
};
|
|
2782
3196
|
}
|
|
@@ -2844,10 +3258,12 @@ export class PredictionWallLineResponseBody extends $tea.Model {
|
|
|
2844
3258
|
|
|
2845
3259
|
export class PredictionWallLineResponse extends $tea.Model {
|
|
2846
3260
|
headers: { [key: string]: string };
|
|
3261
|
+
statusCode: number;
|
|
2847
3262
|
body: PredictionWallLineResponseBody;
|
|
2848
3263
|
static names(): { [key: string]: string } {
|
|
2849
3264
|
return {
|
|
2850
3265
|
headers: 'headers',
|
|
3266
|
+
statusCode: 'statusCode',
|
|
2851
3267
|
body: 'body',
|
|
2852
3268
|
};
|
|
2853
3269
|
}
|
|
@@ -2855,6 +3271,7 @@ export class PredictionWallLineResponse extends $tea.Model {
|
|
|
2855
3271
|
static types(): { [key: string]: any } {
|
|
2856
3272
|
return {
|
|
2857
3273
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3274
|
+
statusCode: 'number',
|
|
2858
3275
|
body: PredictionWallLineResponseBody,
|
|
2859
3276
|
};
|
|
2860
3277
|
}
|
|
@@ -2916,10 +3333,12 @@ export class PublishHotspotResponseBody extends $tea.Model {
|
|
|
2916
3333
|
|
|
2917
3334
|
export class PublishHotspotResponse extends $tea.Model {
|
|
2918
3335
|
headers: { [key: string]: string };
|
|
3336
|
+
statusCode: number;
|
|
2919
3337
|
body: PublishHotspotResponseBody;
|
|
2920
3338
|
static names(): { [key: string]: string } {
|
|
2921
3339
|
return {
|
|
2922
3340
|
headers: 'headers',
|
|
3341
|
+
statusCode: 'statusCode',
|
|
2923
3342
|
body: 'body',
|
|
2924
3343
|
};
|
|
2925
3344
|
}
|
|
@@ -2927,6 +3346,7 @@ export class PublishHotspotResponse extends $tea.Model {
|
|
|
2927
3346
|
static types(): { [key: string]: any } {
|
|
2928
3347
|
return {
|
|
2929
3348
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3349
|
+
statusCode: 'number',
|
|
2930
3350
|
body: PublishHotspotResponseBody,
|
|
2931
3351
|
};
|
|
2932
3352
|
}
|
|
@@ -2988,10 +3408,12 @@ export class PublishSceneResponseBody extends $tea.Model {
|
|
|
2988
3408
|
|
|
2989
3409
|
export class PublishSceneResponse extends $tea.Model {
|
|
2990
3410
|
headers: { [key: string]: string };
|
|
3411
|
+
statusCode: number;
|
|
2991
3412
|
body: PublishSceneResponseBody;
|
|
2992
3413
|
static names(): { [key: string]: string } {
|
|
2993
3414
|
return {
|
|
2994
3415
|
headers: 'headers',
|
|
3416
|
+
statusCode: 'statusCode',
|
|
2995
3417
|
body: 'body',
|
|
2996
3418
|
};
|
|
2997
3419
|
}
|
|
@@ -2999,6 +3421,7 @@ export class PublishSceneResponse extends $tea.Model {
|
|
|
2999
3421
|
static types(): { [key: string]: any } {
|
|
3000
3422
|
return {
|
|
3001
3423
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3424
|
+
statusCode: 'number',
|
|
3002
3425
|
body: PublishSceneResponseBody,
|
|
3003
3426
|
};
|
|
3004
3427
|
}
|
|
@@ -3060,10 +3483,12 @@ export class PublishStatusResponseBody extends $tea.Model {
|
|
|
3060
3483
|
|
|
3061
3484
|
export class PublishStatusResponse extends $tea.Model {
|
|
3062
3485
|
headers: { [key: string]: string };
|
|
3486
|
+
statusCode: number;
|
|
3063
3487
|
body: PublishStatusResponseBody;
|
|
3064
3488
|
static names(): { [key: string]: string } {
|
|
3065
3489
|
return {
|
|
3066
3490
|
headers: 'headers',
|
|
3491
|
+
statusCode: 'statusCode',
|
|
3067
3492
|
body: 'body',
|
|
3068
3493
|
};
|
|
3069
3494
|
}
|
|
@@ -3071,6 +3496,7 @@ export class PublishStatusResponse extends $tea.Model {
|
|
|
3071
3496
|
static types(): { [key: string]: any } {
|
|
3072
3497
|
return {
|
|
3073
3498
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3499
|
+
statusCode: 'number',
|
|
3074
3500
|
body: PublishStatusResponseBody,
|
|
3075
3501
|
};
|
|
3076
3502
|
}
|
|
@@ -3129,10 +3555,12 @@ export class RecoveryOriginImageResponseBody extends $tea.Model {
|
|
|
3129
3555
|
|
|
3130
3556
|
export class RecoveryOriginImageResponse extends $tea.Model {
|
|
3131
3557
|
headers: { [key: string]: string };
|
|
3558
|
+
statusCode: number;
|
|
3132
3559
|
body: RecoveryOriginImageResponseBody;
|
|
3133
3560
|
static names(): { [key: string]: string } {
|
|
3134
3561
|
return {
|
|
3135
3562
|
headers: 'headers',
|
|
3563
|
+
statusCode: 'statusCode',
|
|
3136
3564
|
body: 'body',
|
|
3137
3565
|
};
|
|
3138
3566
|
}
|
|
@@ -3140,6 +3568,7 @@ export class RecoveryOriginImageResponse extends $tea.Model {
|
|
|
3140
3568
|
static types(): { [key: string]: any } {
|
|
3141
3569
|
return {
|
|
3142
3570
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3571
|
+
statusCode: 'number',
|
|
3143
3572
|
body: RecoveryOriginImageResponseBody,
|
|
3144
3573
|
};
|
|
3145
3574
|
}
|
|
@@ -3210,10 +3639,12 @@ export class RectVerticalResponseBody extends $tea.Model {
|
|
|
3210
3639
|
|
|
3211
3640
|
export class RectVerticalResponse extends $tea.Model {
|
|
3212
3641
|
headers: { [key: string]: string };
|
|
3642
|
+
statusCode: number;
|
|
3213
3643
|
body: RectVerticalResponseBody;
|
|
3214
3644
|
static names(): { [key: string]: string } {
|
|
3215
3645
|
return {
|
|
3216
3646
|
headers: 'headers',
|
|
3647
|
+
statusCode: 'statusCode',
|
|
3217
3648
|
body: 'body',
|
|
3218
3649
|
};
|
|
3219
3650
|
}
|
|
@@ -3221,6 +3652,7 @@ export class RectVerticalResponse extends $tea.Model {
|
|
|
3221
3652
|
static types(): { [key: string]: any } {
|
|
3222
3653
|
return {
|
|
3223
3654
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3655
|
+
statusCode: 'number',
|
|
3224
3656
|
body: RectVerticalResponseBody,
|
|
3225
3657
|
};
|
|
3226
3658
|
}
|
|
@@ -3288,10 +3720,12 @@ export class RectifyImageResponseBody extends $tea.Model {
|
|
|
3288
3720
|
|
|
3289
3721
|
export class RectifyImageResponse extends $tea.Model {
|
|
3290
3722
|
headers: { [key: string]: string };
|
|
3723
|
+
statusCode: number;
|
|
3291
3724
|
body: RectifyImageResponseBody;
|
|
3292
3725
|
static names(): { [key: string]: string } {
|
|
3293
3726
|
return {
|
|
3294
3727
|
headers: 'headers',
|
|
3728
|
+
statusCode: 'statusCode',
|
|
3295
3729
|
body: 'body',
|
|
3296
3730
|
};
|
|
3297
3731
|
}
|
|
@@ -3299,6 +3733,7 @@ export class RectifyImageResponse extends $tea.Model {
|
|
|
3299
3733
|
static types(): { [key: string]: any } {
|
|
3300
3734
|
return {
|
|
3301
3735
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3736
|
+
statusCode: 'number',
|
|
3302
3737
|
body: RectifyImageResponseBody,
|
|
3303
3738
|
};
|
|
3304
3739
|
}
|
|
@@ -3357,10 +3792,12 @@ export class RollbackSubSceneResponseBody extends $tea.Model {
|
|
|
3357
3792
|
|
|
3358
3793
|
export class RollbackSubSceneResponse extends $tea.Model {
|
|
3359
3794
|
headers: { [key: string]: string };
|
|
3795
|
+
statusCode: number;
|
|
3360
3796
|
body: RollbackSubSceneResponseBody;
|
|
3361
3797
|
static names(): { [key: string]: string } {
|
|
3362
3798
|
return {
|
|
3363
3799
|
headers: 'headers',
|
|
3800
|
+
statusCode: 'statusCode',
|
|
3364
3801
|
body: 'body',
|
|
3365
3802
|
};
|
|
3366
3803
|
}
|
|
@@ -3368,6 +3805,7 @@ export class RollbackSubSceneResponse extends $tea.Model {
|
|
|
3368
3805
|
static types(): { [key: string]: any } {
|
|
3369
3806
|
return {
|
|
3370
3807
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3808
|
+
statusCode: 'number',
|
|
3371
3809
|
body: RollbackSubSceneResponseBody,
|
|
3372
3810
|
};
|
|
3373
3811
|
}
|
|
@@ -3426,10 +3864,12 @@ export class SaveHotspotConfigResponseBody extends $tea.Model {
|
|
|
3426
3864
|
|
|
3427
3865
|
export class SaveHotspotConfigResponse extends $tea.Model {
|
|
3428
3866
|
headers: { [key: string]: string };
|
|
3867
|
+
statusCode: number;
|
|
3429
3868
|
body: SaveHotspotConfigResponseBody;
|
|
3430
3869
|
static names(): { [key: string]: string } {
|
|
3431
3870
|
return {
|
|
3432
3871
|
headers: 'headers',
|
|
3872
|
+
statusCode: 'statusCode',
|
|
3433
3873
|
body: 'body',
|
|
3434
3874
|
};
|
|
3435
3875
|
}
|
|
@@ -3437,6 +3877,7 @@ export class SaveHotspotConfigResponse extends $tea.Model {
|
|
|
3437
3877
|
static types(): { [key: string]: any } {
|
|
3438
3878
|
return {
|
|
3439
3879
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3880
|
+
statusCode: 'number',
|
|
3440
3881
|
body: SaveHotspotConfigResponseBody,
|
|
3441
3882
|
};
|
|
3442
3883
|
}
|
|
@@ -3495,10 +3936,12 @@ export class SaveHotspotTagResponseBody extends $tea.Model {
|
|
|
3495
3936
|
|
|
3496
3937
|
export class SaveHotspotTagResponse extends $tea.Model {
|
|
3497
3938
|
headers: { [key: string]: string };
|
|
3939
|
+
statusCode: number;
|
|
3498
3940
|
body: SaveHotspotTagResponseBody;
|
|
3499
3941
|
static names(): { [key: string]: string } {
|
|
3500
3942
|
return {
|
|
3501
3943
|
headers: 'headers',
|
|
3944
|
+
statusCode: 'statusCode',
|
|
3502
3945
|
body: 'body',
|
|
3503
3946
|
};
|
|
3504
3947
|
}
|
|
@@ -3506,6 +3949,7 @@ export class SaveHotspotTagResponse extends $tea.Model {
|
|
|
3506
3949
|
static types(): { [key: string]: any } {
|
|
3507
3950
|
return {
|
|
3508
3951
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3952
|
+
statusCode: 'number',
|
|
3509
3953
|
body: SaveHotspotTagResponseBody,
|
|
3510
3954
|
};
|
|
3511
3955
|
}
|
|
@@ -3567,10 +4011,12 @@ export class ScenePublishResponseBody extends $tea.Model {
|
|
|
3567
4011
|
|
|
3568
4012
|
export class ScenePublishResponse extends $tea.Model {
|
|
3569
4013
|
headers: { [key: string]: string };
|
|
4014
|
+
statusCode: number;
|
|
3570
4015
|
body: ScenePublishResponseBody;
|
|
3571
4016
|
static names(): { [key: string]: string } {
|
|
3572
4017
|
return {
|
|
3573
4018
|
headers: 'headers',
|
|
4019
|
+
statusCode: 'statusCode',
|
|
3574
4020
|
body: 'body',
|
|
3575
4021
|
};
|
|
3576
4022
|
}
|
|
@@ -3578,6 +4024,7 @@ export class ScenePublishResponse extends $tea.Model {
|
|
|
3578
4024
|
static types(): { [key: string]: any } {
|
|
3579
4025
|
return {
|
|
3580
4026
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4027
|
+
statusCode: 'number',
|
|
3581
4028
|
body: ScenePublishResponseBody,
|
|
3582
4029
|
};
|
|
3583
4030
|
}
|
|
@@ -3642,10 +4089,12 @@ export class TempPreviewResponseBody extends $tea.Model {
|
|
|
3642
4089
|
|
|
3643
4090
|
export class TempPreviewResponse extends $tea.Model {
|
|
3644
4091
|
headers: { [key: string]: string };
|
|
4092
|
+
statusCode: number;
|
|
3645
4093
|
body: TempPreviewResponseBody;
|
|
3646
4094
|
static names(): { [key: string]: string } {
|
|
3647
4095
|
return {
|
|
3648
4096
|
headers: 'headers',
|
|
4097
|
+
statusCode: 'statusCode',
|
|
3649
4098
|
body: 'body',
|
|
3650
4099
|
};
|
|
3651
4100
|
}
|
|
@@ -3653,6 +4102,7 @@ export class TempPreviewResponse extends $tea.Model {
|
|
|
3653
4102
|
static types(): { [key: string]: any } {
|
|
3654
4103
|
return {
|
|
3655
4104
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4105
|
+
statusCode: 'number',
|
|
3656
4106
|
body: TempPreviewResponseBody,
|
|
3657
4107
|
};
|
|
3658
4108
|
}
|
|
@@ -3714,10 +4164,12 @@ export class TempPreviewStatusResponseBody extends $tea.Model {
|
|
|
3714
4164
|
|
|
3715
4165
|
export class TempPreviewStatusResponse extends $tea.Model {
|
|
3716
4166
|
headers: { [key: string]: string };
|
|
4167
|
+
statusCode: number;
|
|
3717
4168
|
body: TempPreviewStatusResponseBody;
|
|
3718
4169
|
static names(): { [key: string]: string } {
|
|
3719
4170
|
return {
|
|
3720
4171
|
headers: 'headers',
|
|
4172
|
+
statusCode: 'statusCode',
|
|
3721
4173
|
body: 'body',
|
|
3722
4174
|
};
|
|
3723
4175
|
}
|
|
@@ -3725,6 +4177,7 @@ export class TempPreviewStatusResponse extends $tea.Model {
|
|
|
3725
4177
|
static types(): { [key: string]: any } {
|
|
3726
4178
|
return {
|
|
3727
4179
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4180
|
+
statusCode: 'number',
|
|
3728
4181
|
body: TempPreviewStatusResponseBody,
|
|
3729
4182
|
};
|
|
3730
4183
|
}
|
|
@@ -3786,10 +4239,12 @@ export class UpdateConnDataResponseBody extends $tea.Model {
|
|
|
3786
4239
|
|
|
3787
4240
|
export class UpdateConnDataResponse extends $tea.Model {
|
|
3788
4241
|
headers: { [key: string]: string };
|
|
4242
|
+
statusCode: number;
|
|
3789
4243
|
body: UpdateConnDataResponseBody;
|
|
3790
4244
|
static names(): { [key: string]: string } {
|
|
3791
4245
|
return {
|
|
3792
4246
|
headers: 'headers',
|
|
4247
|
+
statusCode: 'statusCode',
|
|
3793
4248
|
body: 'body',
|
|
3794
4249
|
};
|
|
3795
4250
|
}
|
|
@@ -3797,6 +4252,7 @@ export class UpdateConnDataResponse extends $tea.Model {
|
|
|
3797
4252
|
static types(): { [key: string]: any } {
|
|
3798
4253
|
return {
|
|
3799
4254
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4255
|
+
statusCode: 'number',
|
|
3800
4256
|
body: UpdateConnDataResponseBody,
|
|
3801
4257
|
};
|
|
3802
4258
|
}
|
|
@@ -3858,10 +4314,12 @@ export class UpdateLayoutDataResponseBody extends $tea.Model {
|
|
|
3858
4314
|
|
|
3859
4315
|
export class UpdateLayoutDataResponse extends $tea.Model {
|
|
3860
4316
|
headers: { [key: string]: string };
|
|
4317
|
+
statusCode: number;
|
|
3861
4318
|
body: UpdateLayoutDataResponseBody;
|
|
3862
4319
|
static names(): { [key: string]: string } {
|
|
3863
4320
|
return {
|
|
3864
4321
|
headers: 'headers',
|
|
4322
|
+
statusCode: 'statusCode',
|
|
3865
4323
|
body: 'body',
|
|
3866
4324
|
};
|
|
3867
4325
|
}
|
|
@@ -3869,6 +4327,7 @@ export class UpdateLayoutDataResponse extends $tea.Model {
|
|
|
3869
4327
|
static types(): { [key: string]: any } {
|
|
3870
4328
|
return {
|
|
3871
4329
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4330
|
+
statusCode: 'number',
|
|
3872
4331
|
body: UpdateLayoutDataResponseBody,
|
|
3873
4332
|
};
|
|
3874
4333
|
}
|
|
@@ -3933,10 +4392,12 @@ export class UpdateProjectResponseBody extends $tea.Model {
|
|
|
3933
4392
|
|
|
3934
4393
|
export class UpdateProjectResponse extends $tea.Model {
|
|
3935
4394
|
headers: { [key: string]: string };
|
|
4395
|
+
statusCode: number;
|
|
3936
4396
|
body: UpdateProjectResponseBody;
|
|
3937
4397
|
static names(): { [key: string]: string } {
|
|
3938
4398
|
return {
|
|
3939
4399
|
headers: 'headers',
|
|
4400
|
+
statusCode: 'statusCode',
|
|
3940
4401
|
body: 'body',
|
|
3941
4402
|
};
|
|
3942
4403
|
}
|
|
@@ -3944,6 +4405,7 @@ export class UpdateProjectResponse extends $tea.Model {
|
|
|
3944
4405
|
static types(): { [key: string]: any } {
|
|
3945
4406
|
return {
|
|
3946
4407
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4408
|
+
statusCode: 'number',
|
|
3947
4409
|
body: UpdateProjectResponseBody,
|
|
3948
4410
|
};
|
|
3949
4411
|
}
|
|
@@ -4005,10 +4467,12 @@ export class UpdateSceneResponseBody extends $tea.Model {
|
|
|
4005
4467
|
|
|
4006
4468
|
export class UpdateSceneResponse extends $tea.Model {
|
|
4007
4469
|
headers: { [key: string]: string };
|
|
4470
|
+
statusCode: number;
|
|
4008
4471
|
body: UpdateSceneResponseBody;
|
|
4009
4472
|
static names(): { [key: string]: string } {
|
|
4010
4473
|
return {
|
|
4011
4474
|
headers: 'headers',
|
|
4475
|
+
statusCode: 'statusCode',
|
|
4012
4476
|
body: 'body',
|
|
4013
4477
|
};
|
|
4014
4478
|
}
|
|
@@ -4016,6 +4480,7 @@ export class UpdateSceneResponse extends $tea.Model {
|
|
|
4016
4480
|
static types(): { [key: string]: any } {
|
|
4017
4481
|
return {
|
|
4018
4482
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4483
|
+
statusCode: 'number',
|
|
4019
4484
|
body: UpdateSceneResponseBody,
|
|
4020
4485
|
};
|
|
4021
4486
|
}
|
|
@@ -4077,10 +4542,12 @@ export class UpdateSubSceneResponseBody extends $tea.Model {
|
|
|
4077
4542
|
|
|
4078
4543
|
export class UpdateSubSceneResponse extends $tea.Model {
|
|
4079
4544
|
headers: { [key: string]: string };
|
|
4545
|
+
statusCode: number;
|
|
4080
4546
|
body: UpdateSubSceneResponseBody;
|
|
4081
4547
|
static names(): { [key: string]: string } {
|
|
4082
4548
|
return {
|
|
4083
4549
|
headers: 'headers',
|
|
4550
|
+
statusCode: 'statusCode',
|
|
4084
4551
|
body: 'body',
|
|
4085
4552
|
};
|
|
4086
4553
|
}
|
|
@@ -4088,6 +4555,7 @@ export class UpdateSubSceneResponse extends $tea.Model {
|
|
|
4088
4555
|
static types(): { [key: string]: any } {
|
|
4089
4556
|
return {
|
|
4090
4557
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4558
|
+
statusCode: 'number',
|
|
4091
4559
|
body: UpdateSubSceneResponseBody,
|
|
4092
4560
|
};
|
|
4093
4561
|
}
|
|
@@ -4187,6 +4655,53 @@ export class GetHotspotSceneDataResponseBodyData extends $tea.Model {
|
|
|
4187
4655
|
}
|
|
4188
4656
|
}
|
|
4189
4657
|
|
|
4658
|
+
export class GetPackSceneTaskStatusResponseBodyData extends $tea.Model {
|
|
4659
|
+
progress?: number;
|
|
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: 'number',
|
|
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?: boolean;
|
|
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: 'boolean',
|
|
4697
|
+
};
|
|
4698
|
+
}
|
|
4699
|
+
|
|
4700
|
+
constructor(map?: { [key: string]: any }) {
|
|
4701
|
+
super(map);
|
|
4702
|
+
}
|
|
4703
|
+
}
|
|
4704
|
+
|
|
4190
4705
|
export class GetScenePreviewDataResponseBodyDataModelPanoListPosition extends $tea.Model {
|
|
4191
4706
|
rotation?: number[];
|
|
4192
4707
|
spot?: number[];
|
|
@@ -4465,6 +4980,56 @@ export class GetScenePreviewInfoResponseBodyData extends $tea.Model {
|
|
|
4465
4980
|
}
|
|
4466
4981
|
}
|
|
4467
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
|
+
|
|
4468
5033
|
export class GetSingleConnDataResponseBodyList extends $tea.Model {
|
|
4469
5034
|
id?: string;
|
|
4470
5035
|
mapId?: string;
|
|
@@ -4668,6 +5233,25 @@ export class ListSubSceneResponseBodyList extends $tea.Model {
|
|
|
4668
5233
|
}
|
|
4669
5234
|
}
|
|
4670
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
|
+
|
|
4671
5255
|
|
|
4672
5256
|
export default class Client extends OpenApi {
|
|
4673
5257
|
|
|
@@ -4825,6 +5409,10 @@ export default class Client extends OpenApi {
|
|
|
4825
5409
|
async addSceneWithOptions(request: AddSceneRequest, runtime: $Util.RuntimeOptions): Promise<AddSceneResponse> {
|
|
4826
5410
|
Util.validateModel(request);
|
|
4827
5411
|
let query = { };
|
|
5412
|
+
if (!Util.isUnset(request.customerUid)) {
|
|
5413
|
+
query["CustomerUid"] = request.customerUid;
|
|
5414
|
+
}
|
|
5415
|
+
|
|
4828
5416
|
if (!Util.isUnset(request.name)) {
|
|
4829
5417
|
query["Name"] = request.name;
|
|
4830
5418
|
}
|
|
@@ -5342,6 +5930,39 @@ export default class Client extends OpenApi {
|
|
|
5342
5930
|
return await this.getOssPolicyWithOptions(request, runtime);
|
|
5343
5931
|
}
|
|
5344
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
|
+
|
|
5345
5966
|
async getRectifyImageWithOptions(request: GetRectifyImageRequest, runtime: $Util.RuntimeOptions): Promise<GetRectifyImageResponse> {
|
|
5346
5967
|
Util.validateModel(request);
|
|
5347
5968
|
let query = { };
|
|
@@ -5400,6 +6021,35 @@ export default class Client extends OpenApi {
|
|
|
5400
6021
|
return await this.getSceneBuildTaskStatusWithOptions(request, runtime);
|
|
5401
6022
|
}
|
|
5402
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
|
+
|
|
5403
6053
|
async getScenePreviewDataWithOptions(request: GetScenePreviewDataRequest, runtime: $Util.RuntimeOptions): Promise<GetScenePreviewDataResponse> {
|
|
5404
6054
|
Util.validateModel(request);
|
|
5405
6055
|
let query = { };
|
|
@@ -5478,6 +6128,35 @@ export default class Client extends OpenApi {
|
|
|
5478
6128
|
return await this.getScenePreviewInfoWithOptions(request, runtime);
|
|
5479
6129
|
}
|
|
5480
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
|
+
|
|
5481
6160
|
async getSingleConnDataWithOptions(request: GetSingleConnDataRequest, runtime: $Util.RuntimeOptions): Promise<GetSingleConnDataResponse> {
|
|
5482
6161
|
Util.validateModel(request);
|
|
5483
6162
|
let query = { };
|
|
@@ -5816,6 +6495,39 @@ export default class Client extends OpenApi {
|
|
|
5816
6495
|
return await this.optimizeRightAngleWithOptions(request, runtime);
|
|
5817
6496
|
}
|
|
5818
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
|
+
|
|
5819
6531
|
async predImageWithOptions(request: PredImageRequest, runtime: $Util.RuntimeOptions): Promise<PredImageResponse> {
|
|
5820
6532
|
Util.validateModel(request);
|
|
5821
6533
|
let query = { };
|