@alicloud/tdsr20200101 3.0.10 → 3.1.2
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 +317 -1
- package/dist/client.js +590 -2
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +736 -16
package/src/client.ts
CHANGED
|
@@ -554,6 +554,84 @@ export class CheckUserPropertyResponse extends $tea.Model {
|
|
|
554
554
|
}
|
|
555
555
|
}
|
|
556
556
|
|
|
557
|
+
export class CopySceneRequest extends $tea.Model {
|
|
558
|
+
sceneId?: string;
|
|
559
|
+
sceneName?: string;
|
|
560
|
+
static names(): { [key: string]: string } {
|
|
561
|
+
return {
|
|
562
|
+
sceneId: 'SceneId',
|
|
563
|
+
sceneName: 'SceneName',
|
|
564
|
+
};
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
static types(): { [key: string]: any } {
|
|
568
|
+
return {
|
|
569
|
+
sceneId: 'string',
|
|
570
|
+
sceneName: 'string',
|
|
571
|
+
};
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
constructor(map?: { [key: string]: any }) {
|
|
575
|
+
super(map);
|
|
576
|
+
}
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
export class CopySceneResponseBody extends $tea.Model {
|
|
580
|
+
code?: number;
|
|
581
|
+
data?: CopySceneResponseBodyData;
|
|
582
|
+
message?: string;
|
|
583
|
+
requestId?: string;
|
|
584
|
+
success?: boolean;
|
|
585
|
+
static names(): { [key: string]: string } {
|
|
586
|
+
return {
|
|
587
|
+
code: 'Code',
|
|
588
|
+
data: 'Data',
|
|
589
|
+
message: 'Message',
|
|
590
|
+
requestId: 'RequestId',
|
|
591
|
+
success: 'Success',
|
|
592
|
+
};
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
static types(): { [key: string]: any } {
|
|
596
|
+
return {
|
|
597
|
+
code: 'number',
|
|
598
|
+
data: CopySceneResponseBodyData,
|
|
599
|
+
message: 'string',
|
|
600
|
+
requestId: 'string',
|
|
601
|
+
success: 'boolean',
|
|
602
|
+
};
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
constructor(map?: { [key: string]: any }) {
|
|
606
|
+
super(map);
|
|
607
|
+
}
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
export class CopySceneResponse extends $tea.Model {
|
|
611
|
+
headers: { [key: string]: string };
|
|
612
|
+
statusCode: number;
|
|
613
|
+
body: CopySceneResponseBody;
|
|
614
|
+
static names(): { [key: string]: string } {
|
|
615
|
+
return {
|
|
616
|
+
headers: 'headers',
|
|
617
|
+
statusCode: 'statusCode',
|
|
618
|
+
body: 'body',
|
|
619
|
+
};
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
static types(): { [key: string]: any } {
|
|
623
|
+
return {
|
|
624
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
625
|
+
statusCode: 'number',
|
|
626
|
+
body: CopySceneResponseBody,
|
|
627
|
+
};
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
constructor(map?: { [key: string]: any }) {
|
|
631
|
+
super(map);
|
|
632
|
+
}
|
|
633
|
+
}
|
|
634
|
+
|
|
557
635
|
export class DetailProjectRequest extends $tea.Model {
|
|
558
636
|
id?: string;
|
|
559
637
|
static names(): { [key: string]: string } {
|
|
@@ -1154,6 +1232,81 @@ export class GetConnDataResponse extends $tea.Model {
|
|
|
1154
1232
|
}
|
|
1155
1233
|
}
|
|
1156
1234
|
|
|
1235
|
+
export class GetCopySceneTaskStatusRequest extends $tea.Model {
|
|
1236
|
+
taskId?: string;
|
|
1237
|
+
static names(): { [key: string]: string } {
|
|
1238
|
+
return {
|
|
1239
|
+
taskId: 'TaskId',
|
|
1240
|
+
};
|
|
1241
|
+
}
|
|
1242
|
+
|
|
1243
|
+
static types(): { [key: string]: any } {
|
|
1244
|
+
return {
|
|
1245
|
+
taskId: 'string',
|
|
1246
|
+
};
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
constructor(map?: { [key: string]: any }) {
|
|
1250
|
+
super(map);
|
|
1251
|
+
}
|
|
1252
|
+
}
|
|
1253
|
+
|
|
1254
|
+
export class GetCopySceneTaskStatusResponseBody extends $tea.Model {
|
|
1255
|
+
code?: number;
|
|
1256
|
+
data?: GetCopySceneTaskStatusResponseBodyData;
|
|
1257
|
+
message?: string;
|
|
1258
|
+
requestId?: string;
|
|
1259
|
+
success?: boolean;
|
|
1260
|
+
static names(): { [key: string]: string } {
|
|
1261
|
+
return {
|
|
1262
|
+
code: 'Code',
|
|
1263
|
+
data: 'Data',
|
|
1264
|
+
message: 'Message',
|
|
1265
|
+
requestId: 'RequestId',
|
|
1266
|
+
success: 'Success',
|
|
1267
|
+
};
|
|
1268
|
+
}
|
|
1269
|
+
|
|
1270
|
+
static types(): { [key: string]: any } {
|
|
1271
|
+
return {
|
|
1272
|
+
code: 'number',
|
|
1273
|
+
data: GetCopySceneTaskStatusResponseBodyData,
|
|
1274
|
+
message: 'string',
|
|
1275
|
+
requestId: 'string',
|
|
1276
|
+
success: 'boolean',
|
|
1277
|
+
};
|
|
1278
|
+
}
|
|
1279
|
+
|
|
1280
|
+
constructor(map?: { [key: string]: any }) {
|
|
1281
|
+
super(map);
|
|
1282
|
+
}
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1285
|
+
export class GetCopySceneTaskStatusResponse extends $tea.Model {
|
|
1286
|
+
headers: { [key: string]: string };
|
|
1287
|
+
statusCode: number;
|
|
1288
|
+
body: GetCopySceneTaskStatusResponseBody;
|
|
1289
|
+
static names(): { [key: string]: string } {
|
|
1290
|
+
return {
|
|
1291
|
+
headers: 'headers',
|
|
1292
|
+
statusCode: 'statusCode',
|
|
1293
|
+
body: 'body',
|
|
1294
|
+
};
|
|
1295
|
+
}
|
|
1296
|
+
|
|
1297
|
+
static types(): { [key: string]: any } {
|
|
1298
|
+
return {
|
|
1299
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1300
|
+
statusCode: 'number',
|
|
1301
|
+
body: GetCopySceneTaskStatusResponseBody,
|
|
1302
|
+
};
|
|
1303
|
+
}
|
|
1304
|
+
|
|
1305
|
+
constructor(map?: { [key: string]: any }) {
|
|
1306
|
+
super(map);
|
|
1307
|
+
}
|
|
1308
|
+
}
|
|
1309
|
+
|
|
1157
1310
|
export class GetHotspotConfigRequest extends $tea.Model {
|
|
1158
1311
|
domain?: string;
|
|
1159
1312
|
enabled?: boolean;
|
|
@@ -2282,6 +2435,84 @@ export class GetSingleConnDataResponse extends $tea.Model {
|
|
|
2282
2435
|
}
|
|
2283
2436
|
}
|
|
2284
2437
|
|
|
2438
|
+
export class GetSourcePackStatusRequest extends $tea.Model {
|
|
2439
|
+
taskId?: string;
|
|
2440
|
+
static names(): { [key: string]: string } {
|
|
2441
|
+
return {
|
|
2442
|
+
taskId: 'TaskId',
|
|
2443
|
+
};
|
|
2444
|
+
}
|
|
2445
|
+
|
|
2446
|
+
static types(): { [key: string]: any } {
|
|
2447
|
+
return {
|
|
2448
|
+
taskId: 'string',
|
|
2449
|
+
};
|
|
2450
|
+
}
|
|
2451
|
+
|
|
2452
|
+
constructor(map?: { [key: string]: any }) {
|
|
2453
|
+
super(map);
|
|
2454
|
+
}
|
|
2455
|
+
}
|
|
2456
|
+
|
|
2457
|
+
export class GetSourcePackStatusResponseBody extends $tea.Model {
|
|
2458
|
+
code?: number;
|
|
2459
|
+
data?: GetSourcePackStatusResponseBodyData;
|
|
2460
|
+
message?: string;
|
|
2461
|
+
requestId?: string;
|
|
2462
|
+
success?: boolean;
|
|
2463
|
+
url?: string;
|
|
2464
|
+
static names(): { [key: string]: string } {
|
|
2465
|
+
return {
|
|
2466
|
+
code: 'Code',
|
|
2467
|
+
data: 'Data',
|
|
2468
|
+
message: 'Message',
|
|
2469
|
+
requestId: 'RequestId',
|
|
2470
|
+
success: 'Success',
|
|
2471
|
+
url: 'Url',
|
|
2472
|
+
};
|
|
2473
|
+
}
|
|
2474
|
+
|
|
2475
|
+
static types(): { [key: string]: any } {
|
|
2476
|
+
return {
|
|
2477
|
+
code: 'number',
|
|
2478
|
+
data: GetSourcePackStatusResponseBodyData,
|
|
2479
|
+
message: 'string',
|
|
2480
|
+
requestId: 'string',
|
|
2481
|
+
success: 'boolean',
|
|
2482
|
+
url: 'string',
|
|
2483
|
+
};
|
|
2484
|
+
}
|
|
2485
|
+
|
|
2486
|
+
constructor(map?: { [key: string]: any }) {
|
|
2487
|
+
super(map);
|
|
2488
|
+
}
|
|
2489
|
+
}
|
|
2490
|
+
|
|
2491
|
+
export class GetSourcePackStatusResponse extends $tea.Model {
|
|
2492
|
+
headers: { [key: string]: string };
|
|
2493
|
+
statusCode: number;
|
|
2494
|
+
body: GetSourcePackStatusResponseBody;
|
|
2495
|
+
static names(): { [key: string]: string } {
|
|
2496
|
+
return {
|
|
2497
|
+
headers: 'headers',
|
|
2498
|
+
statusCode: 'statusCode',
|
|
2499
|
+
body: 'body',
|
|
2500
|
+
};
|
|
2501
|
+
}
|
|
2502
|
+
|
|
2503
|
+
static types(): { [key: string]: any } {
|
|
2504
|
+
return {
|
|
2505
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2506
|
+
statusCode: 'number',
|
|
2507
|
+
body: GetSourcePackStatusResponseBody,
|
|
2508
|
+
};
|
|
2509
|
+
}
|
|
2510
|
+
|
|
2511
|
+
constructor(map?: { [key: string]: any }) {
|
|
2512
|
+
super(map);
|
|
2513
|
+
}
|
|
2514
|
+
}
|
|
2515
|
+
|
|
2285
2516
|
export class GetSubSceneTaskStatusRequest extends $tea.Model {
|
|
2286
2517
|
subSceneId?: string;
|
|
2287
2518
|
static names(): { [key: string]: string } {
|
|
@@ -2518,18 +2749,30 @@ export class GetWindowConfigResponse extends $tea.Model {
|
|
|
2518
2749
|
|
|
2519
2750
|
export class LabelBuildRequest extends $tea.Model {
|
|
2520
2751
|
mode?: string;
|
|
2752
|
+
modelStyle?: string;
|
|
2753
|
+
optimizeWallWidth?: string;
|
|
2754
|
+
planStyle?: string;
|
|
2521
2755
|
sceneId?: string;
|
|
2756
|
+
wallHeight?: number;
|
|
2522
2757
|
static names(): { [key: string]: string } {
|
|
2523
2758
|
return {
|
|
2524
2759
|
mode: 'Mode',
|
|
2760
|
+
modelStyle: 'ModelStyle',
|
|
2761
|
+
optimizeWallWidth: 'OptimizeWallWidth',
|
|
2762
|
+
planStyle: 'PlanStyle',
|
|
2525
2763
|
sceneId: 'SceneId',
|
|
2764
|
+
wallHeight: 'WallHeight',
|
|
2526
2765
|
};
|
|
2527
2766
|
}
|
|
2528
2767
|
|
|
2529
2768
|
static types(): { [key: string]: any } {
|
|
2530
2769
|
return {
|
|
2531
2770
|
mode: 'string',
|
|
2771
|
+
modelStyle: 'string',
|
|
2772
|
+
optimizeWallWidth: 'string',
|
|
2773
|
+
planStyle: 'string',
|
|
2532
2774
|
sceneId: 'string',
|
|
2775
|
+
wallHeight: 'number',
|
|
2533
2776
|
};
|
|
2534
2777
|
}
|
|
2535
2778
|
|
|
@@ -2872,12 +3115,14 @@ export class ListSubSceneRequest extends $tea.Model {
|
|
|
2872
3115
|
pageSize?: number;
|
|
2873
3116
|
sceneId?: string;
|
|
2874
3117
|
showLayoutData?: boolean;
|
|
3118
|
+
sortField?: string;
|
|
2875
3119
|
static names(): { [key: string]: string } {
|
|
2876
3120
|
return {
|
|
2877
3121
|
pageNum: 'PageNum',
|
|
2878
3122
|
pageSize: 'PageSize',
|
|
2879
3123
|
sceneId: 'SceneId',
|
|
2880
3124
|
showLayoutData: 'ShowLayoutData',
|
|
3125
|
+
sortField: 'SortField',
|
|
2881
3126
|
};
|
|
2882
3127
|
}
|
|
2883
3128
|
|
|
@@ -2887,6 +3132,7 @@ export class ListSubSceneRequest extends $tea.Model {
|
|
|
2887
3132
|
pageSize: 'number',
|
|
2888
3133
|
sceneId: 'string',
|
|
2889
3134
|
showLayoutData: 'boolean',
|
|
3135
|
+
sortField: 'string',
|
|
2890
3136
|
};
|
|
2891
3137
|
}
|
|
2892
3138
|
|
|
@@ -3116,6 +3362,81 @@ export class PackSceneResponse extends $tea.Model {
|
|
|
3116
3362
|
}
|
|
3117
3363
|
}
|
|
3118
3364
|
|
|
3365
|
+
export class PackSourceRequest extends $tea.Model {
|
|
3366
|
+
sceneId?: string;
|
|
3367
|
+
static names(): { [key: string]: string } {
|
|
3368
|
+
return {
|
|
3369
|
+
sceneId: 'SceneId',
|
|
3370
|
+
};
|
|
3371
|
+
}
|
|
3372
|
+
|
|
3373
|
+
static types(): { [key: string]: any } {
|
|
3374
|
+
return {
|
|
3375
|
+
sceneId: 'string',
|
|
3376
|
+
};
|
|
3377
|
+
}
|
|
3378
|
+
|
|
3379
|
+
constructor(map?: { [key: string]: any }) {
|
|
3380
|
+
super(map);
|
|
3381
|
+
}
|
|
3382
|
+
}
|
|
3383
|
+
|
|
3384
|
+
export class PackSourceResponseBody extends $tea.Model {
|
|
3385
|
+
code?: number;
|
|
3386
|
+
data?: PackSourceResponseBodyData;
|
|
3387
|
+
message?: string;
|
|
3388
|
+
requestId?: string;
|
|
3389
|
+
success?: boolean;
|
|
3390
|
+
static names(): { [key: string]: string } {
|
|
3391
|
+
return {
|
|
3392
|
+
code: 'Code',
|
|
3393
|
+
data: 'Data',
|
|
3394
|
+
message: 'Message',
|
|
3395
|
+
requestId: 'RequestId',
|
|
3396
|
+
success: 'Success',
|
|
3397
|
+
};
|
|
3398
|
+
}
|
|
3399
|
+
|
|
3400
|
+
static types(): { [key: string]: any } {
|
|
3401
|
+
return {
|
|
3402
|
+
code: 'number',
|
|
3403
|
+
data: PackSourceResponseBodyData,
|
|
3404
|
+
message: 'string',
|
|
3405
|
+
requestId: 'string',
|
|
3406
|
+
success: 'boolean',
|
|
3407
|
+
};
|
|
3408
|
+
}
|
|
3409
|
+
|
|
3410
|
+
constructor(map?: { [key: string]: any }) {
|
|
3411
|
+
super(map);
|
|
3412
|
+
}
|
|
3413
|
+
}
|
|
3414
|
+
|
|
3415
|
+
export class PackSourceResponse extends $tea.Model {
|
|
3416
|
+
headers: { [key: string]: string };
|
|
3417
|
+
statusCode: number;
|
|
3418
|
+
body: PackSourceResponseBody;
|
|
3419
|
+
static names(): { [key: string]: string } {
|
|
3420
|
+
return {
|
|
3421
|
+
headers: 'headers',
|
|
3422
|
+
statusCode: 'statusCode',
|
|
3423
|
+
body: 'body',
|
|
3424
|
+
};
|
|
3425
|
+
}
|
|
3426
|
+
|
|
3427
|
+
static types(): { [key: string]: any } {
|
|
3428
|
+
return {
|
|
3429
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3430
|
+
statusCode: 'number',
|
|
3431
|
+
body: PackSourceResponseBody,
|
|
3432
|
+
};
|
|
3433
|
+
}
|
|
3434
|
+
|
|
3435
|
+
constructor(map?: { [key: string]: any }) {
|
|
3436
|
+
super(map);
|
|
3437
|
+
}
|
|
3438
|
+
}
|
|
3439
|
+
|
|
3119
3440
|
export class PredImageRequest extends $tea.Model {
|
|
3120
3441
|
correctVertical?: boolean;
|
|
3121
3442
|
countDetectDoor?: number;
|
|
@@ -3456,6 +3777,7 @@ export class PublishStatusResponseBody extends $tea.Model {
|
|
|
3456
3777
|
requestId?: string;
|
|
3457
3778
|
status?: string;
|
|
3458
3779
|
success?: boolean;
|
|
3780
|
+
syncStatus?: string;
|
|
3459
3781
|
static names(): { [key: string]: string } {
|
|
3460
3782
|
return {
|
|
3461
3783
|
code: 'Code',
|
|
@@ -3463,6 +3785,7 @@ export class PublishStatusResponseBody extends $tea.Model {
|
|
|
3463
3785
|
requestId: 'RequestId',
|
|
3464
3786
|
status: 'Status',
|
|
3465
3787
|
success: 'Success',
|
|
3788
|
+
syncStatus: 'SyncStatus',
|
|
3466
3789
|
};
|
|
3467
3790
|
}
|
|
3468
3791
|
|
|
@@ -3473,6 +3796,7 @@ export class PublishStatusResponseBody extends $tea.Model {
|
|
|
3473
3796
|
requestId: 'string',
|
|
3474
3797
|
status: 'string',
|
|
3475
3798
|
success: 'boolean',
|
|
3799
|
+
syncStatus: 'string',
|
|
3476
3800
|
};
|
|
3477
3801
|
}
|
|
3478
3802
|
|
|
@@ -4465,10 +4789,113 @@ export class UpdateSceneResponseBody extends $tea.Model {
|
|
|
4465
4789
|
}
|
|
4466
4790
|
}
|
|
4467
4791
|
|
|
4468
|
-
export class UpdateSceneResponse extends $tea.Model {
|
|
4792
|
+
export class UpdateSceneResponse extends $tea.Model {
|
|
4793
|
+
headers: { [key: string]: string };
|
|
4794
|
+
statusCode: number;
|
|
4795
|
+
body: UpdateSceneResponseBody;
|
|
4796
|
+
static names(): { [key: string]: string } {
|
|
4797
|
+
return {
|
|
4798
|
+
headers: 'headers',
|
|
4799
|
+
statusCode: 'statusCode',
|
|
4800
|
+
body: 'body',
|
|
4801
|
+
};
|
|
4802
|
+
}
|
|
4803
|
+
|
|
4804
|
+
static types(): { [key: string]: any } {
|
|
4805
|
+
return {
|
|
4806
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4807
|
+
statusCode: 'number',
|
|
4808
|
+
body: UpdateSceneResponseBody,
|
|
4809
|
+
};
|
|
4810
|
+
}
|
|
4811
|
+
|
|
4812
|
+
constructor(map?: { [key: string]: any }) {
|
|
4813
|
+
super(map);
|
|
4814
|
+
}
|
|
4815
|
+
}
|
|
4816
|
+
|
|
4817
|
+
export class UpdateSubSceneRequest extends $tea.Model {
|
|
4818
|
+
id?: string;
|
|
4819
|
+
name?: string;
|
|
4820
|
+
viewPoint?: number[];
|
|
4821
|
+
static names(): { [key: string]: string } {
|
|
4822
|
+
return {
|
|
4823
|
+
id: 'Id',
|
|
4824
|
+
name: 'Name',
|
|
4825
|
+
viewPoint: 'ViewPoint',
|
|
4826
|
+
};
|
|
4827
|
+
}
|
|
4828
|
+
|
|
4829
|
+
static types(): { [key: string]: any } {
|
|
4830
|
+
return {
|
|
4831
|
+
id: 'string',
|
|
4832
|
+
name: 'string',
|
|
4833
|
+
viewPoint: { 'type': 'array', 'itemType': 'number' },
|
|
4834
|
+
};
|
|
4835
|
+
}
|
|
4836
|
+
|
|
4837
|
+
constructor(map?: { [key: string]: any }) {
|
|
4838
|
+
super(map);
|
|
4839
|
+
}
|
|
4840
|
+
}
|
|
4841
|
+
|
|
4842
|
+
export class UpdateSubSceneShrinkRequest extends $tea.Model {
|
|
4843
|
+
id?: string;
|
|
4844
|
+
name?: string;
|
|
4845
|
+
viewPointShrink?: string;
|
|
4846
|
+
static names(): { [key: string]: string } {
|
|
4847
|
+
return {
|
|
4848
|
+
id: 'Id',
|
|
4849
|
+
name: 'Name',
|
|
4850
|
+
viewPointShrink: 'ViewPoint',
|
|
4851
|
+
};
|
|
4852
|
+
}
|
|
4853
|
+
|
|
4854
|
+
static types(): { [key: string]: any } {
|
|
4855
|
+
return {
|
|
4856
|
+
id: 'string',
|
|
4857
|
+
name: 'string',
|
|
4858
|
+
viewPointShrink: 'string',
|
|
4859
|
+
};
|
|
4860
|
+
}
|
|
4861
|
+
|
|
4862
|
+
constructor(map?: { [key: string]: any }) {
|
|
4863
|
+
super(map);
|
|
4864
|
+
}
|
|
4865
|
+
}
|
|
4866
|
+
|
|
4867
|
+
export class UpdateSubSceneResponseBody extends $tea.Model {
|
|
4868
|
+
code?: number;
|
|
4869
|
+
message?: string;
|
|
4870
|
+
requestId?: string;
|
|
4871
|
+
success?: boolean;
|
|
4872
|
+
static names(): { [key: string]: string } {
|
|
4873
|
+
return {
|
|
4874
|
+
code: 'Code',
|
|
4875
|
+
message: 'Message',
|
|
4876
|
+
requestId: 'RequestId',
|
|
4877
|
+
success: 'Success',
|
|
4878
|
+
};
|
|
4879
|
+
}
|
|
4880
|
+
|
|
4881
|
+
static types(): { [key: string]: any } {
|
|
4882
|
+
return {
|
|
4883
|
+
code: 'number',
|
|
4884
|
+
message: 'string',
|
|
4885
|
+
requestId: 'string',
|
|
4886
|
+
success: 'boolean',
|
|
4887
|
+
};
|
|
4888
|
+
}
|
|
4889
|
+
|
|
4890
|
+
constructor(map?: { [key: string]: any }) {
|
|
4891
|
+
super(map);
|
|
4892
|
+
}
|
|
4893
|
+
}
|
|
4894
|
+
|
|
4895
|
+
export class UpdateSubSceneResponse extends $tea.Model {
|
|
4469
4896
|
headers: { [key: string]: string };
|
|
4470
4897
|
statusCode: number;
|
|
4471
|
-
body:
|
|
4898
|
+
body: UpdateSubSceneResponseBody;
|
|
4472
4899
|
static names(): { [key: string]: string } {
|
|
4473
4900
|
return {
|
|
4474
4901
|
headers: 'headers',
|
|
@@ -4481,7 +4908,7 @@ export class UpdateSceneResponse extends $tea.Model {
|
|
|
4481
4908
|
return {
|
|
4482
4909
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4483
4910
|
statusCode: 'number',
|
|
4484
|
-
body:
|
|
4911
|
+
body: UpdateSubSceneResponseBody,
|
|
4485
4912
|
};
|
|
4486
4913
|
}
|
|
4487
4914
|
|
|
@@ -4490,20 +4917,20 @@ export class UpdateSceneResponse extends $tea.Model {
|
|
|
4490
4917
|
}
|
|
4491
4918
|
}
|
|
4492
4919
|
|
|
4493
|
-
export class
|
|
4494
|
-
|
|
4495
|
-
|
|
4920
|
+
export class UpdateSubSceneSeqRequest extends $tea.Model {
|
|
4921
|
+
sceneId?: string;
|
|
4922
|
+
sortSubSceneIds?: string[];
|
|
4496
4923
|
static names(): { [key: string]: string } {
|
|
4497
4924
|
return {
|
|
4498
|
-
|
|
4499
|
-
|
|
4925
|
+
sceneId: 'SceneId',
|
|
4926
|
+
sortSubSceneIds: 'SortSubSceneIds',
|
|
4500
4927
|
};
|
|
4501
4928
|
}
|
|
4502
4929
|
|
|
4503
4930
|
static types(): { [key: string]: any } {
|
|
4504
4931
|
return {
|
|
4505
|
-
|
|
4506
|
-
|
|
4932
|
+
sceneId: 'string',
|
|
4933
|
+
sortSubSceneIds: { 'type': 'array', 'itemType': 'string' },
|
|
4507
4934
|
};
|
|
4508
4935
|
}
|
|
4509
4936
|
|
|
@@ -4512,7 +4939,29 @@ export class UpdateSubSceneRequest extends $tea.Model {
|
|
|
4512
4939
|
}
|
|
4513
4940
|
}
|
|
4514
4941
|
|
|
4515
|
-
export class
|
|
4942
|
+
export class UpdateSubSceneSeqShrinkRequest extends $tea.Model {
|
|
4943
|
+
sceneId?: string;
|
|
4944
|
+
sortSubSceneIdsShrink?: string;
|
|
4945
|
+
static names(): { [key: string]: string } {
|
|
4946
|
+
return {
|
|
4947
|
+
sceneId: 'SceneId',
|
|
4948
|
+
sortSubSceneIdsShrink: 'SortSubSceneIds',
|
|
4949
|
+
};
|
|
4950
|
+
}
|
|
4951
|
+
|
|
4952
|
+
static types(): { [key: string]: any } {
|
|
4953
|
+
return {
|
|
4954
|
+
sceneId: 'string',
|
|
4955
|
+
sortSubSceneIdsShrink: 'string',
|
|
4956
|
+
};
|
|
4957
|
+
}
|
|
4958
|
+
|
|
4959
|
+
constructor(map?: { [key: string]: any }) {
|
|
4960
|
+
super(map);
|
|
4961
|
+
}
|
|
4962
|
+
}
|
|
4963
|
+
|
|
4964
|
+
export class UpdateSubSceneSeqResponseBody extends $tea.Model {
|
|
4516
4965
|
code?: number;
|
|
4517
4966
|
message?: string;
|
|
4518
4967
|
requestId?: string;
|
|
@@ -4540,10 +4989,10 @@ export class UpdateSubSceneResponseBody extends $tea.Model {
|
|
|
4540
4989
|
}
|
|
4541
4990
|
}
|
|
4542
4991
|
|
|
4543
|
-
export class
|
|
4992
|
+
export class UpdateSubSceneSeqResponse extends $tea.Model {
|
|
4544
4993
|
headers: { [key: string]: string };
|
|
4545
4994
|
statusCode: number;
|
|
4546
|
-
body:
|
|
4995
|
+
body: UpdateSubSceneSeqResponseBody;
|
|
4547
4996
|
static names(): { [key: string]: string } {
|
|
4548
4997
|
return {
|
|
4549
4998
|
headers: 'headers',
|
|
@@ -4556,7 +5005,7 @@ export class UpdateSubSceneResponse extends $tea.Model {
|
|
|
4556
5005
|
return {
|
|
4557
5006
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4558
5007
|
statusCode: 'number',
|
|
4559
|
-
body:
|
|
5008
|
+
body: UpdateSubSceneSeqResponseBody,
|
|
4560
5009
|
};
|
|
4561
5010
|
}
|
|
4562
5011
|
|
|
@@ -4602,6 +5051,25 @@ export class AddRoomPlanResponseBodyData extends $tea.Model {
|
|
|
4602
5051
|
}
|
|
4603
5052
|
}
|
|
4604
5053
|
|
|
5054
|
+
export class CopySceneResponseBodyData extends $tea.Model {
|
|
5055
|
+
taskId?: string;
|
|
5056
|
+
static names(): { [key: string]: string } {
|
|
5057
|
+
return {
|
|
5058
|
+
taskId: 'TaskId',
|
|
5059
|
+
};
|
|
5060
|
+
}
|
|
5061
|
+
|
|
5062
|
+
static types(): { [key: string]: any } {
|
|
5063
|
+
return {
|
|
5064
|
+
taskId: 'string',
|
|
5065
|
+
};
|
|
5066
|
+
}
|
|
5067
|
+
|
|
5068
|
+
constructor(map?: { [key: string]: any }) {
|
|
5069
|
+
super(map);
|
|
5070
|
+
}
|
|
5071
|
+
}
|
|
5072
|
+
|
|
4605
5073
|
export class GetConnDataResponseBodyList extends $tea.Model {
|
|
4606
5074
|
id?: string;
|
|
4607
5075
|
mapId?: string;
|
|
@@ -4627,6 +5095,28 @@ export class GetConnDataResponseBodyList extends $tea.Model {
|
|
|
4627
5095
|
}
|
|
4628
5096
|
}
|
|
4629
5097
|
|
|
5098
|
+
export class GetCopySceneTaskStatusResponseBodyData extends $tea.Model {
|
|
5099
|
+
progress?: number;
|
|
5100
|
+
status?: string;
|
|
5101
|
+
static names(): { [key: string]: string } {
|
|
5102
|
+
return {
|
|
5103
|
+
progress: 'Progress',
|
|
5104
|
+
status: 'Status',
|
|
5105
|
+
};
|
|
5106
|
+
}
|
|
5107
|
+
|
|
5108
|
+
static types(): { [key: string]: any } {
|
|
5109
|
+
return {
|
|
5110
|
+
progress: 'number',
|
|
5111
|
+
status: 'string',
|
|
5112
|
+
};
|
|
5113
|
+
}
|
|
5114
|
+
|
|
5115
|
+
constructor(map?: { [key: string]: any }) {
|
|
5116
|
+
super(map);
|
|
5117
|
+
}
|
|
5118
|
+
}
|
|
5119
|
+
|
|
4630
5120
|
export class GetHotspotSceneDataResponseBodyData extends $tea.Model {
|
|
4631
5121
|
modelToken?: string;
|
|
4632
5122
|
previewData?: string;
|
|
@@ -5055,6 +5545,28 @@ export class GetSingleConnDataResponseBodyList extends $tea.Model {
|
|
|
5055
5545
|
}
|
|
5056
5546
|
}
|
|
5057
5547
|
|
|
5548
|
+
export class GetSourcePackStatusResponseBodyData extends $tea.Model {
|
|
5549
|
+
progress?: number;
|
|
5550
|
+
status?: string;
|
|
5551
|
+
static names(): { [key: string]: string } {
|
|
5552
|
+
return {
|
|
5553
|
+
progress: 'Progress',
|
|
5554
|
+
status: 'Status',
|
|
5555
|
+
};
|
|
5556
|
+
}
|
|
5557
|
+
|
|
5558
|
+
static types(): { [key: string]: any } {
|
|
5559
|
+
return {
|
|
5560
|
+
progress: 'number',
|
|
5561
|
+
status: 'string',
|
|
5562
|
+
};
|
|
5563
|
+
}
|
|
5564
|
+
|
|
5565
|
+
constructor(map?: { [key: string]: any }) {
|
|
5566
|
+
super(map);
|
|
5567
|
+
}
|
|
5568
|
+
}
|
|
5569
|
+
|
|
5058
5570
|
export class GetSubSceneTaskStatusResponseBodyList extends $tea.Model {
|
|
5059
5571
|
errorCode?: string;
|
|
5060
5572
|
errorMsg?: string;
|
|
@@ -5252,6 +5764,25 @@ export class PackSceneResponseBodyData extends $tea.Model {
|
|
|
5252
5764
|
}
|
|
5253
5765
|
}
|
|
5254
5766
|
|
|
5767
|
+
export class PackSourceResponseBodyData extends $tea.Model {
|
|
5768
|
+
taskId?: string;
|
|
5769
|
+
static names(): { [key: string]: string } {
|
|
5770
|
+
return {
|
|
5771
|
+
taskId: 'TaskId',
|
|
5772
|
+
};
|
|
5773
|
+
}
|
|
5774
|
+
|
|
5775
|
+
static types(): { [key: string]: any } {
|
|
5776
|
+
return {
|
|
5777
|
+
taskId: 'string',
|
|
5778
|
+
};
|
|
5779
|
+
}
|
|
5780
|
+
|
|
5781
|
+
constructor(map?: { [key: string]: any }) {
|
|
5782
|
+
super(map);
|
|
5783
|
+
}
|
|
5784
|
+
}
|
|
5785
|
+
|
|
5255
5786
|
|
|
5256
5787
|
export default class Client extends OpenApi {
|
|
5257
5788
|
|
|
@@ -5513,6 +6044,39 @@ export default class Client extends OpenApi {
|
|
|
5513
6044
|
return await this.checkUserPropertyWithOptions(request, runtime);
|
|
5514
6045
|
}
|
|
5515
6046
|
|
|
6047
|
+
async copySceneWithOptions(request: CopySceneRequest, runtime: $Util.RuntimeOptions): Promise<CopySceneResponse> {
|
|
6048
|
+
Util.validateModel(request);
|
|
6049
|
+
let query = { };
|
|
6050
|
+
if (!Util.isUnset(request.sceneId)) {
|
|
6051
|
+
query["SceneId"] = request.sceneId;
|
|
6052
|
+
}
|
|
6053
|
+
|
|
6054
|
+
if (!Util.isUnset(request.sceneName)) {
|
|
6055
|
+
query["SceneName"] = request.sceneName;
|
|
6056
|
+
}
|
|
6057
|
+
|
|
6058
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
6059
|
+
query: OpenApiUtil.query(query),
|
|
6060
|
+
});
|
|
6061
|
+
let params = new $OpenApi.Params({
|
|
6062
|
+
action: "CopyScene",
|
|
6063
|
+
version: "2020-01-01",
|
|
6064
|
+
protocol: "HTTPS",
|
|
6065
|
+
pathname: "/",
|
|
6066
|
+
method: "POST",
|
|
6067
|
+
authType: "AK",
|
|
6068
|
+
style: "RPC",
|
|
6069
|
+
reqBodyType: "formData",
|
|
6070
|
+
bodyType: "json",
|
|
6071
|
+
});
|
|
6072
|
+
return $tea.cast<CopySceneResponse>(await this.callApi(params, req, runtime), new CopySceneResponse({}));
|
|
6073
|
+
}
|
|
6074
|
+
|
|
6075
|
+
async copyScene(request: CopySceneRequest): Promise<CopySceneResponse> {
|
|
6076
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
6077
|
+
return await this.copySceneWithOptions(request, runtime);
|
|
6078
|
+
}
|
|
6079
|
+
|
|
5516
6080
|
async detailProjectWithOptions(request: DetailProjectRequest, runtime: $Util.RuntimeOptions): Promise<DetailProjectResponse> {
|
|
5517
6081
|
Util.validateModel(request);
|
|
5518
6082
|
let query = { };
|
|
@@ -5716,6 +6280,35 @@ export default class Client extends OpenApi {
|
|
|
5716
6280
|
return await this.getConnDataWithOptions(request, runtime);
|
|
5717
6281
|
}
|
|
5718
6282
|
|
|
6283
|
+
async getCopySceneTaskStatusWithOptions(request: GetCopySceneTaskStatusRequest, runtime: $Util.RuntimeOptions): Promise<GetCopySceneTaskStatusResponse> {
|
|
6284
|
+
Util.validateModel(request);
|
|
6285
|
+
let query = { };
|
|
6286
|
+
if (!Util.isUnset(request.taskId)) {
|
|
6287
|
+
query["TaskId"] = request.taskId;
|
|
6288
|
+
}
|
|
6289
|
+
|
|
6290
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
6291
|
+
query: OpenApiUtil.query(query),
|
|
6292
|
+
});
|
|
6293
|
+
let params = new $OpenApi.Params({
|
|
6294
|
+
action: "GetCopySceneTaskStatus",
|
|
6295
|
+
version: "2020-01-01",
|
|
6296
|
+
protocol: "HTTPS",
|
|
6297
|
+
pathname: "/",
|
|
6298
|
+
method: "POST",
|
|
6299
|
+
authType: "AK",
|
|
6300
|
+
style: "RPC",
|
|
6301
|
+
reqBodyType: "formData",
|
|
6302
|
+
bodyType: "json",
|
|
6303
|
+
});
|
|
6304
|
+
return $tea.cast<GetCopySceneTaskStatusResponse>(await this.callApi(params, req, runtime), new GetCopySceneTaskStatusResponse({}));
|
|
6305
|
+
}
|
|
6306
|
+
|
|
6307
|
+
async getCopySceneTaskStatus(request: GetCopySceneTaskStatusRequest): Promise<GetCopySceneTaskStatusResponse> {
|
|
6308
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
6309
|
+
return await this.getCopySceneTaskStatusWithOptions(request, runtime);
|
|
6310
|
+
}
|
|
6311
|
+
|
|
5719
6312
|
async getHotspotConfigWithOptions(request: GetHotspotConfigRequest, runtime: $Util.RuntimeOptions): Promise<GetHotspotConfigResponse> {
|
|
5720
6313
|
Util.validateModel(request);
|
|
5721
6314
|
let query = { };
|
|
@@ -6186,6 +6779,35 @@ export default class Client extends OpenApi {
|
|
|
6186
6779
|
return await this.getSingleConnDataWithOptions(request, runtime);
|
|
6187
6780
|
}
|
|
6188
6781
|
|
|
6782
|
+
async getSourcePackStatusWithOptions(request: GetSourcePackStatusRequest, runtime: $Util.RuntimeOptions): Promise<GetSourcePackStatusResponse> {
|
|
6783
|
+
Util.validateModel(request);
|
|
6784
|
+
let query = { };
|
|
6785
|
+
if (!Util.isUnset(request.taskId)) {
|
|
6786
|
+
query["TaskId"] = request.taskId;
|
|
6787
|
+
}
|
|
6788
|
+
|
|
6789
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
6790
|
+
query: OpenApiUtil.query(query),
|
|
6791
|
+
});
|
|
6792
|
+
let params = new $OpenApi.Params({
|
|
6793
|
+
action: "GetSourcePackStatus",
|
|
6794
|
+
version: "2020-01-01",
|
|
6795
|
+
protocol: "HTTPS",
|
|
6796
|
+
pathname: "/",
|
|
6797
|
+
method: "POST",
|
|
6798
|
+
authType: "AK",
|
|
6799
|
+
style: "RPC",
|
|
6800
|
+
reqBodyType: "formData",
|
|
6801
|
+
bodyType: "json",
|
|
6802
|
+
});
|
|
6803
|
+
return $tea.cast<GetSourcePackStatusResponse>(await this.callApi(params, req, runtime), new GetSourcePackStatusResponse({}));
|
|
6804
|
+
}
|
|
6805
|
+
|
|
6806
|
+
async getSourcePackStatus(request: GetSourcePackStatusRequest): Promise<GetSourcePackStatusResponse> {
|
|
6807
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
6808
|
+
return await this.getSourcePackStatusWithOptions(request, runtime);
|
|
6809
|
+
}
|
|
6810
|
+
|
|
6189
6811
|
async getSubSceneTaskStatusWithOptions(request: GetSubSceneTaskStatusRequest, runtime: $Util.RuntimeOptions): Promise<GetSubSceneTaskStatusResponse> {
|
|
6190
6812
|
Util.validateModel(request);
|
|
6191
6813
|
let query = { };
|
|
@@ -6280,10 +6902,26 @@ export default class Client extends OpenApi {
|
|
|
6280
6902
|
query["Mode"] = request.mode;
|
|
6281
6903
|
}
|
|
6282
6904
|
|
|
6905
|
+
if (!Util.isUnset(request.modelStyle)) {
|
|
6906
|
+
query["ModelStyle"] = request.modelStyle;
|
|
6907
|
+
}
|
|
6908
|
+
|
|
6909
|
+
if (!Util.isUnset(request.optimizeWallWidth)) {
|
|
6910
|
+
query["OptimizeWallWidth"] = request.optimizeWallWidth;
|
|
6911
|
+
}
|
|
6912
|
+
|
|
6913
|
+
if (!Util.isUnset(request.planStyle)) {
|
|
6914
|
+
query["PlanStyle"] = request.planStyle;
|
|
6915
|
+
}
|
|
6916
|
+
|
|
6283
6917
|
if (!Util.isUnset(request.sceneId)) {
|
|
6284
6918
|
query["SceneId"] = request.sceneId;
|
|
6285
6919
|
}
|
|
6286
6920
|
|
|
6921
|
+
if (!Util.isUnset(request.wallHeight)) {
|
|
6922
|
+
query["WallHeight"] = request.wallHeight;
|
|
6923
|
+
}
|
|
6924
|
+
|
|
6287
6925
|
let req = new $OpenApi.OpenApiRequest({
|
|
6288
6926
|
query: OpenApiUtil.query(query),
|
|
6289
6927
|
});
|
|
@@ -6444,6 +7082,10 @@ export default class Client extends OpenApi {
|
|
|
6444
7082
|
query["ShowLayoutData"] = request.showLayoutData;
|
|
6445
7083
|
}
|
|
6446
7084
|
|
|
7085
|
+
if (!Util.isUnset(request.sortField)) {
|
|
7086
|
+
query["SortField"] = request.sortField;
|
|
7087
|
+
}
|
|
7088
|
+
|
|
6447
7089
|
let req = new $OpenApi.OpenApiRequest({
|
|
6448
7090
|
query: OpenApiUtil.query(query),
|
|
6449
7091
|
});
|
|
@@ -6528,6 +7170,35 @@ export default class Client extends OpenApi {
|
|
|
6528
7170
|
return await this.packSceneWithOptions(request, runtime);
|
|
6529
7171
|
}
|
|
6530
7172
|
|
|
7173
|
+
async packSourceWithOptions(request: PackSourceRequest, runtime: $Util.RuntimeOptions): Promise<PackSourceResponse> {
|
|
7174
|
+
Util.validateModel(request);
|
|
7175
|
+
let query = { };
|
|
7176
|
+
if (!Util.isUnset(request.sceneId)) {
|
|
7177
|
+
query["SceneId"] = request.sceneId;
|
|
7178
|
+
}
|
|
7179
|
+
|
|
7180
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7181
|
+
query: OpenApiUtil.query(query),
|
|
7182
|
+
});
|
|
7183
|
+
let params = new $OpenApi.Params({
|
|
7184
|
+
action: "PackSource",
|
|
7185
|
+
version: "2020-01-01",
|
|
7186
|
+
protocol: "HTTPS",
|
|
7187
|
+
pathname: "/",
|
|
7188
|
+
method: "POST",
|
|
7189
|
+
authType: "AK",
|
|
7190
|
+
style: "RPC",
|
|
7191
|
+
reqBodyType: "formData",
|
|
7192
|
+
bodyType: "json",
|
|
7193
|
+
});
|
|
7194
|
+
return $tea.cast<PackSourceResponse>(await this.callApi(params, req, runtime), new PackSourceResponse({}));
|
|
7195
|
+
}
|
|
7196
|
+
|
|
7197
|
+
async packSource(request: PackSourceRequest): Promise<PackSourceResponse> {
|
|
7198
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7199
|
+
return await this.packSourceWithOptions(request, runtime);
|
|
7200
|
+
}
|
|
7201
|
+
|
|
6531
7202
|
async predImageWithOptions(request: PredImageRequest, runtime: $Util.RuntimeOptions): Promise<PredImageResponse> {
|
|
6532
7203
|
Util.validateModel(request);
|
|
6533
7204
|
let query = { };
|
|
@@ -7114,8 +7785,14 @@ export default class Client extends OpenApi {
|
|
|
7114
7785
|
return await this.updateSceneWithOptions(request, runtime);
|
|
7115
7786
|
}
|
|
7116
7787
|
|
|
7117
|
-
async updateSubSceneWithOptions(
|
|
7118
|
-
Util.validateModel(
|
|
7788
|
+
async updateSubSceneWithOptions(tmpReq: UpdateSubSceneRequest, runtime: $Util.RuntimeOptions): Promise<UpdateSubSceneResponse> {
|
|
7789
|
+
Util.validateModel(tmpReq);
|
|
7790
|
+
let request = new UpdateSubSceneShrinkRequest({ });
|
|
7791
|
+
OpenApiUtil.convert(tmpReq, request);
|
|
7792
|
+
if (!Util.isUnset(tmpReq.viewPoint)) {
|
|
7793
|
+
request.viewPointShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.viewPoint, "ViewPoint", "json");
|
|
7794
|
+
}
|
|
7795
|
+
|
|
7119
7796
|
let query = { };
|
|
7120
7797
|
if (!Util.isUnset(request.id)) {
|
|
7121
7798
|
query["Id"] = request.id;
|
|
@@ -7125,6 +7802,10 @@ export default class Client extends OpenApi {
|
|
|
7125
7802
|
query["Name"] = request.name;
|
|
7126
7803
|
}
|
|
7127
7804
|
|
|
7805
|
+
if (!Util.isUnset(request.viewPointShrink)) {
|
|
7806
|
+
query["ViewPoint"] = request.viewPointShrink;
|
|
7807
|
+
}
|
|
7808
|
+
|
|
7128
7809
|
let req = new $OpenApi.OpenApiRequest({
|
|
7129
7810
|
query: OpenApiUtil.query(query),
|
|
7130
7811
|
});
|
|
@@ -7147,4 +7828,43 @@ export default class Client extends OpenApi {
|
|
|
7147
7828
|
return await this.updateSubSceneWithOptions(request, runtime);
|
|
7148
7829
|
}
|
|
7149
7830
|
|
|
7831
|
+
async updateSubSceneSeqWithOptions(tmpReq: UpdateSubSceneSeqRequest, runtime: $Util.RuntimeOptions): Promise<UpdateSubSceneSeqResponse> {
|
|
7832
|
+
Util.validateModel(tmpReq);
|
|
7833
|
+
let request = new UpdateSubSceneSeqShrinkRequest({ });
|
|
7834
|
+
OpenApiUtil.convert(tmpReq, request);
|
|
7835
|
+
if (!Util.isUnset(tmpReq.sortSubSceneIds)) {
|
|
7836
|
+
request.sortSubSceneIdsShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.sortSubSceneIds, "SortSubSceneIds", "json");
|
|
7837
|
+
}
|
|
7838
|
+
|
|
7839
|
+
let query = { };
|
|
7840
|
+
if (!Util.isUnset(request.sceneId)) {
|
|
7841
|
+
query["SceneId"] = request.sceneId;
|
|
7842
|
+
}
|
|
7843
|
+
|
|
7844
|
+
if (!Util.isUnset(request.sortSubSceneIdsShrink)) {
|
|
7845
|
+
query["SortSubSceneIds"] = request.sortSubSceneIdsShrink;
|
|
7846
|
+
}
|
|
7847
|
+
|
|
7848
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7849
|
+
query: OpenApiUtil.query(query),
|
|
7850
|
+
});
|
|
7851
|
+
let params = new $OpenApi.Params({
|
|
7852
|
+
action: "UpdateSubSceneSeq",
|
|
7853
|
+
version: "2020-01-01",
|
|
7854
|
+
protocol: "HTTPS",
|
|
7855
|
+
pathname: "/",
|
|
7856
|
+
method: "POST",
|
|
7857
|
+
authType: "AK",
|
|
7858
|
+
style: "RPC",
|
|
7859
|
+
reqBodyType: "formData",
|
|
7860
|
+
bodyType: "json",
|
|
7861
|
+
});
|
|
7862
|
+
return $tea.cast<UpdateSubSceneSeqResponse>(await this.callApi(params, req, runtime), new UpdateSubSceneSeqResponse({}));
|
|
7863
|
+
}
|
|
7864
|
+
|
|
7865
|
+
async updateSubSceneSeq(request: UpdateSubSceneSeqRequest): Promise<UpdateSubSceneSeqResponse> {
|
|
7866
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7867
|
+
return await this.updateSubSceneSeqWithOptions(request, runtime);
|
|
7868
|
+
}
|
|
7869
|
+
|
|
7150
7870
|
}
|