@alicloud/sddp20190103 1.0.6 → 1.0.7
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 +42 -0
- package/dist/client.js +90 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +134 -0
package/src/client.ts
CHANGED
|
@@ -60,10 +60,12 @@ export class CreateConfigResponseBody extends $tea.Model {
|
|
|
60
60
|
|
|
61
61
|
export class CreateConfigResponse extends $tea.Model {
|
|
62
62
|
headers: { [key: string]: string };
|
|
63
|
+
statusCode: number;
|
|
63
64
|
body: CreateConfigResponseBody;
|
|
64
65
|
static names(): { [key: string]: string } {
|
|
65
66
|
return {
|
|
66
67
|
headers: 'headers',
|
|
68
|
+
statusCode: 'statusCode',
|
|
67
69
|
body: 'body',
|
|
68
70
|
};
|
|
69
71
|
}
|
|
@@ -71,6 +73,7 @@ export class CreateConfigResponse extends $tea.Model {
|
|
|
71
73
|
static types(): { [key: string]: any } {
|
|
72
74
|
return {
|
|
73
75
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
76
|
+
statusCode: 'number',
|
|
74
77
|
body: CreateConfigResponseBody,
|
|
75
78
|
};
|
|
76
79
|
}
|
|
@@ -93,6 +96,7 @@ export class CreateDataLimitRequest extends $tea.Model {
|
|
|
93
96
|
password?: string;
|
|
94
97
|
port?: number;
|
|
95
98
|
resourceType?: number;
|
|
99
|
+
samplingSize?: number;
|
|
96
100
|
serviceRegionId?: string;
|
|
97
101
|
userName?: string;
|
|
98
102
|
static names(): { [key: string]: string } {
|
|
@@ -109,6 +113,7 @@ export class CreateDataLimitRequest extends $tea.Model {
|
|
|
109
113
|
password: 'Password',
|
|
110
114
|
port: 'Port',
|
|
111
115
|
resourceType: 'ResourceType',
|
|
116
|
+
samplingSize: 'SamplingSize',
|
|
112
117
|
serviceRegionId: 'ServiceRegionId',
|
|
113
118
|
userName: 'UserName',
|
|
114
119
|
};
|
|
@@ -128,6 +133,7 @@ export class CreateDataLimitRequest extends $tea.Model {
|
|
|
128
133
|
password: 'string',
|
|
129
134
|
port: 'number',
|
|
130
135
|
resourceType: 'number',
|
|
136
|
+
samplingSize: 'number',
|
|
131
137
|
serviceRegionId: 'string',
|
|
132
138
|
userName: 'string',
|
|
133
139
|
};
|
|
@@ -162,10 +168,12 @@ export class CreateDataLimitResponseBody extends $tea.Model {
|
|
|
162
168
|
|
|
163
169
|
export class CreateDataLimitResponse extends $tea.Model {
|
|
164
170
|
headers: { [key: string]: string };
|
|
171
|
+
statusCode: number;
|
|
165
172
|
body: CreateDataLimitResponseBody;
|
|
166
173
|
static names(): { [key: string]: string } {
|
|
167
174
|
return {
|
|
168
175
|
headers: 'headers',
|
|
176
|
+
statusCode: 'statusCode',
|
|
169
177
|
body: 'body',
|
|
170
178
|
};
|
|
171
179
|
}
|
|
@@ -173,6 +181,7 @@ export class CreateDataLimitResponse extends $tea.Model {
|
|
|
173
181
|
static types(): { [key: string]: any } {
|
|
174
182
|
return {
|
|
175
183
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
184
|
+
statusCode: 'number',
|
|
176
185
|
body: CreateDataLimitResponseBody,
|
|
177
186
|
};
|
|
178
187
|
}
|
|
@@ -264,10 +273,12 @@ export class CreateRuleResponseBody extends $tea.Model {
|
|
|
264
273
|
|
|
265
274
|
export class CreateRuleResponse extends $tea.Model {
|
|
266
275
|
headers: { [key: string]: string };
|
|
276
|
+
statusCode: number;
|
|
267
277
|
body: CreateRuleResponseBody;
|
|
268
278
|
static names(): { [key: string]: string } {
|
|
269
279
|
return {
|
|
270
280
|
headers: 'headers',
|
|
281
|
+
statusCode: 'statusCode',
|
|
271
282
|
body: 'body',
|
|
272
283
|
};
|
|
273
284
|
}
|
|
@@ -275,6 +286,7 @@ export class CreateRuleResponse extends $tea.Model {
|
|
|
275
286
|
static types(): { [key: string]: any } {
|
|
276
287
|
return {
|
|
277
288
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
289
|
+
statusCode: 'number',
|
|
278
290
|
body: CreateRuleResponseBody,
|
|
279
291
|
};
|
|
280
292
|
}
|
|
@@ -357,10 +369,12 @@ export class CreateScanTaskResponseBody extends $tea.Model {
|
|
|
357
369
|
|
|
358
370
|
export class CreateScanTaskResponse extends $tea.Model {
|
|
359
371
|
headers: { [key: string]: string };
|
|
372
|
+
statusCode: number;
|
|
360
373
|
body: CreateScanTaskResponseBody;
|
|
361
374
|
static names(): { [key: string]: string } {
|
|
362
375
|
return {
|
|
363
376
|
headers: 'headers',
|
|
377
|
+
statusCode: 'statusCode',
|
|
364
378
|
body: 'body',
|
|
365
379
|
};
|
|
366
380
|
}
|
|
@@ -368,6 +382,7 @@ export class CreateScanTaskResponse extends $tea.Model {
|
|
|
368
382
|
static types(): { [key: string]: any } {
|
|
369
383
|
return {
|
|
370
384
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
385
|
+
statusCode: 'number',
|
|
371
386
|
body: CreateScanTaskResponseBody,
|
|
372
387
|
};
|
|
373
388
|
}
|
|
@@ -420,10 +435,12 @@ export class CreateSlrRoleResponseBody extends $tea.Model {
|
|
|
420
435
|
|
|
421
436
|
export class CreateSlrRoleResponse extends $tea.Model {
|
|
422
437
|
headers: { [key: string]: string };
|
|
438
|
+
statusCode: number;
|
|
423
439
|
body: CreateSlrRoleResponseBody;
|
|
424
440
|
static names(): { [key: string]: string } {
|
|
425
441
|
return {
|
|
426
442
|
headers: 'headers',
|
|
443
|
+
statusCode: 'statusCode',
|
|
427
444
|
body: 'body',
|
|
428
445
|
};
|
|
429
446
|
}
|
|
@@ -431,6 +448,7 @@ export class CreateSlrRoleResponse extends $tea.Model {
|
|
|
431
448
|
static types(): { [key: string]: any } {
|
|
432
449
|
return {
|
|
433
450
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
451
|
+
statusCode: 'number',
|
|
434
452
|
body: CreateSlrRoleResponseBody,
|
|
435
453
|
};
|
|
436
454
|
}
|
|
@@ -483,10 +501,12 @@ export class DeleteDataLimitResponseBody extends $tea.Model {
|
|
|
483
501
|
|
|
484
502
|
export class DeleteDataLimitResponse extends $tea.Model {
|
|
485
503
|
headers: { [key: string]: string };
|
|
504
|
+
statusCode: number;
|
|
486
505
|
body: DeleteDataLimitResponseBody;
|
|
487
506
|
static names(): { [key: string]: string } {
|
|
488
507
|
return {
|
|
489
508
|
headers: 'headers',
|
|
509
|
+
statusCode: 'statusCode',
|
|
490
510
|
body: 'body',
|
|
491
511
|
};
|
|
492
512
|
}
|
|
@@ -494,6 +514,7 @@ export class DeleteDataLimitResponse extends $tea.Model {
|
|
|
494
514
|
static types(): { [key: string]: any } {
|
|
495
515
|
return {
|
|
496
516
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
517
|
+
statusCode: 'number',
|
|
497
518
|
body: DeleteDataLimitResponseBody,
|
|
498
519
|
};
|
|
499
520
|
}
|
|
@@ -546,10 +567,12 @@ export class DeleteRuleResponseBody extends $tea.Model {
|
|
|
546
567
|
|
|
547
568
|
export class DeleteRuleResponse extends $tea.Model {
|
|
548
569
|
headers: { [key: string]: string };
|
|
570
|
+
statusCode: number;
|
|
549
571
|
body: DeleteRuleResponseBody;
|
|
550
572
|
static names(): { [key: string]: string } {
|
|
551
573
|
return {
|
|
552
574
|
headers: 'headers',
|
|
575
|
+
statusCode: 'statusCode',
|
|
553
576
|
body: 'body',
|
|
554
577
|
};
|
|
555
578
|
}
|
|
@@ -557,6 +580,7 @@ export class DeleteRuleResponse extends $tea.Model {
|
|
|
557
580
|
static types(): { [key: string]: any } {
|
|
558
581
|
return {
|
|
559
582
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
583
|
+
statusCode: 'number',
|
|
560
584
|
body: DeleteRuleResponseBody,
|
|
561
585
|
};
|
|
562
586
|
}
|
|
@@ -630,10 +654,12 @@ export class DescribeCategoryTemplateRuleListResponseBody extends $tea.Model {
|
|
|
630
654
|
|
|
631
655
|
export class DescribeCategoryTemplateRuleListResponse extends $tea.Model {
|
|
632
656
|
headers: { [key: string]: string };
|
|
657
|
+
statusCode: number;
|
|
633
658
|
body: DescribeCategoryTemplateRuleListResponseBody;
|
|
634
659
|
static names(): { [key: string]: string } {
|
|
635
660
|
return {
|
|
636
661
|
headers: 'headers',
|
|
662
|
+
statusCode: 'statusCode',
|
|
637
663
|
body: 'body',
|
|
638
664
|
};
|
|
639
665
|
}
|
|
@@ -641,6 +667,7 @@ export class DescribeCategoryTemplateRuleListResponse extends $tea.Model {
|
|
|
641
667
|
static types(): { [key: string]: any } {
|
|
642
668
|
return {
|
|
643
669
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
670
|
+
statusCode: 'number',
|
|
644
671
|
body: DescribeCategoryTemplateRuleListResponseBody,
|
|
645
672
|
};
|
|
646
673
|
}
|
|
@@ -738,10 +765,12 @@ export class DescribeColumnsResponseBody extends $tea.Model {
|
|
|
738
765
|
|
|
739
766
|
export class DescribeColumnsResponse extends $tea.Model {
|
|
740
767
|
headers: { [key: string]: string };
|
|
768
|
+
statusCode: number;
|
|
741
769
|
body: DescribeColumnsResponseBody;
|
|
742
770
|
static names(): { [key: string]: string } {
|
|
743
771
|
return {
|
|
744
772
|
headers: 'headers',
|
|
773
|
+
statusCode: 'statusCode',
|
|
745
774
|
body: 'body',
|
|
746
775
|
};
|
|
747
776
|
}
|
|
@@ -749,6 +778,7 @@ export class DescribeColumnsResponse extends $tea.Model {
|
|
|
749
778
|
static types(): { [key: string]: any } {
|
|
750
779
|
return {
|
|
751
780
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
781
|
+
statusCode: 'number',
|
|
752
782
|
body: DescribeColumnsResponseBody,
|
|
753
783
|
};
|
|
754
784
|
}
|
|
@@ -801,10 +831,12 @@ export class DescribeConfigsResponseBody extends $tea.Model {
|
|
|
801
831
|
|
|
802
832
|
export class DescribeConfigsResponse extends $tea.Model {
|
|
803
833
|
headers: { [key: string]: string };
|
|
834
|
+
statusCode: number;
|
|
804
835
|
body: DescribeConfigsResponseBody;
|
|
805
836
|
static names(): { [key: string]: string } {
|
|
806
837
|
return {
|
|
807
838
|
headers: 'headers',
|
|
839
|
+
statusCode: 'statusCode',
|
|
808
840
|
body: 'body',
|
|
809
841
|
};
|
|
810
842
|
}
|
|
@@ -812,6 +844,7 @@ export class DescribeConfigsResponse extends $tea.Model {
|
|
|
812
844
|
static types(): { [key: string]: any } {
|
|
813
845
|
return {
|
|
814
846
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
847
|
+
statusCode: 'number',
|
|
815
848
|
body: DescribeConfigsResponseBody,
|
|
816
849
|
};
|
|
817
850
|
}
|
|
@@ -891,10 +924,12 @@ export class DescribeDataAssetsResponseBody extends $tea.Model {
|
|
|
891
924
|
|
|
892
925
|
export class DescribeDataAssetsResponse extends $tea.Model {
|
|
893
926
|
headers: { [key: string]: string };
|
|
927
|
+
statusCode: number;
|
|
894
928
|
body: DescribeDataAssetsResponseBody;
|
|
895
929
|
static names(): { [key: string]: string } {
|
|
896
930
|
return {
|
|
897
931
|
headers: 'headers',
|
|
932
|
+
statusCode: 'statusCode',
|
|
898
933
|
body: 'body',
|
|
899
934
|
};
|
|
900
935
|
}
|
|
@@ -902,6 +937,7 @@ export class DescribeDataAssetsResponse extends $tea.Model {
|
|
|
902
937
|
static types(): { [key: string]: any } {
|
|
903
938
|
return {
|
|
904
939
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
940
|
+
statusCode: 'number',
|
|
905
941
|
body: DescribeDataAssetsResponseBody,
|
|
906
942
|
};
|
|
907
943
|
}
|
|
@@ -960,10 +996,12 @@ export class DescribeDataLimitDetailResponseBody extends $tea.Model {
|
|
|
960
996
|
|
|
961
997
|
export class DescribeDataLimitDetailResponse extends $tea.Model {
|
|
962
998
|
headers: { [key: string]: string };
|
|
999
|
+
statusCode: number;
|
|
963
1000
|
body: DescribeDataLimitDetailResponseBody;
|
|
964
1001
|
static names(): { [key: string]: string } {
|
|
965
1002
|
return {
|
|
966
1003
|
headers: 'headers',
|
|
1004
|
+
statusCode: 'statusCode',
|
|
967
1005
|
body: 'body',
|
|
968
1006
|
};
|
|
969
1007
|
}
|
|
@@ -971,6 +1009,7 @@ export class DescribeDataLimitDetailResponse extends $tea.Model {
|
|
|
971
1009
|
static types(): { [key: string]: any } {
|
|
972
1010
|
return {
|
|
973
1011
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1012
|
+
statusCode: 'number',
|
|
974
1013
|
body: DescribeDataLimitDetailResponseBody,
|
|
975
1014
|
};
|
|
976
1015
|
}
|
|
@@ -1029,10 +1068,12 @@ export class DescribeDataLimitSetResponseBody extends $tea.Model {
|
|
|
1029
1068
|
|
|
1030
1069
|
export class DescribeDataLimitSetResponse extends $tea.Model {
|
|
1031
1070
|
headers: { [key: string]: string };
|
|
1071
|
+
statusCode: number;
|
|
1032
1072
|
body: DescribeDataLimitSetResponseBody;
|
|
1033
1073
|
static names(): { [key: string]: string } {
|
|
1034
1074
|
return {
|
|
1035
1075
|
headers: 'headers',
|
|
1076
|
+
statusCode: 'statusCode',
|
|
1036
1077
|
body: 'body',
|
|
1037
1078
|
};
|
|
1038
1079
|
}
|
|
@@ -1040,6 +1081,7 @@ export class DescribeDataLimitSetResponse extends $tea.Model {
|
|
|
1040
1081
|
static types(): { [key: string]: any } {
|
|
1041
1082
|
return {
|
|
1042
1083
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1084
|
+
statusCode: 'number',
|
|
1043
1085
|
body: DescribeDataLimitSetResponseBody,
|
|
1044
1086
|
};
|
|
1045
1087
|
}
|
|
@@ -1137,10 +1179,12 @@ export class DescribeDataLimitsResponseBody extends $tea.Model {
|
|
|
1137
1179
|
|
|
1138
1180
|
export class DescribeDataLimitsResponse extends $tea.Model {
|
|
1139
1181
|
headers: { [key: string]: string };
|
|
1182
|
+
statusCode: number;
|
|
1140
1183
|
body: DescribeDataLimitsResponseBody;
|
|
1141
1184
|
static names(): { [key: string]: string } {
|
|
1142
1185
|
return {
|
|
1143
1186
|
headers: 'headers',
|
|
1187
|
+
statusCode: 'statusCode',
|
|
1144
1188
|
body: 'body',
|
|
1145
1189
|
};
|
|
1146
1190
|
}
|
|
@@ -1148,6 +1192,7 @@ export class DescribeDataLimitsResponse extends $tea.Model {
|
|
|
1148
1192
|
static types(): { [key: string]: any } {
|
|
1149
1193
|
return {
|
|
1150
1194
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1195
|
+
statusCode: 'number',
|
|
1151
1196
|
body: DescribeDataLimitsResponseBody,
|
|
1152
1197
|
};
|
|
1153
1198
|
}
|
|
@@ -1239,10 +1284,12 @@ export class DescribeDataMaskingRunHistoryResponseBody extends $tea.Model {
|
|
|
1239
1284
|
|
|
1240
1285
|
export class DescribeDataMaskingRunHistoryResponse extends $tea.Model {
|
|
1241
1286
|
headers: { [key: string]: string };
|
|
1287
|
+
statusCode: number;
|
|
1242
1288
|
body: DescribeDataMaskingRunHistoryResponseBody;
|
|
1243
1289
|
static names(): { [key: string]: string } {
|
|
1244
1290
|
return {
|
|
1245
1291
|
headers: 'headers',
|
|
1292
|
+
statusCode: 'statusCode',
|
|
1246
1293
|
body: 'body',
|
|
1247
1294
|
};
|
|
1248
1295
|
}
|
|
@@ -1250,6 +1297,7 @@ export class DescribeDataMaskingRunHistoryResponse extends $tea.Model {
|
|
|
1250
1297
|
static types(): { [key: string]: any } {
|
|
1251
1298
|
return {
|
|
1252
1299
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1300
|
+
statusCode: 'number',
|
|
1253
1301
|
body: DescribeDataMaskingRunHistoryResponseBody,
|
|
1254
1302
|
};
|
|
1255
1303
|
}
|
|
@@ -1329,10 +1377,12 @@ export class DescribeDataMaskingTasksResponseBody extends $tea.Model {
|
|
|
1329
1377
|
|
|
1330
1378
|
export class DescribeDataMaskingTasksResponse extends $tea.Model {
|
|
1331
1379
|
headers: { [key: string]: string };
|
|
1380
|
+
statusCode: number;
|
|
1332
1381
|
body: DescribeDataMaskingTasksResponseBody;
|
|
1333
1382
|
static names(): { [key: string]: string } {
|
|
1334
1383
|
return {
|
|
1335
1384
|
headers: 'headers',
|
|
1385
|
+
statusCode: 'statusCode',
|
|
1336
1386
|
body: 'body',
|
|
1337
1387
|
};
|
|
1338
1388
|
}
|
|
@@ -1340,6 +1390,7 @@ export class DescribeDataMaskingTasksResponse extends $tea.Model {
|
|
|
1340
1390
|
static types(): { [key: string]: any } {
|
|
1341
1391
|
return {
|
|
1342
1392
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1393
|
+
statusCode: 'number',
|
|
1343
1394
|
body: DescribeDataMaskingTasksResponseBody,
|
|
1344
1395
|
};
|
|
1345
1396
|
}
|
|
@@ -1395,10 +1446,12 @@ export class DescribeEventDetailResponseBody extends $tea.Model {
|
|
|
1395
1446
|
|
|
1396
1447
|
export class DescribeEventDetailResponse extends $tea.Model {
|
|
1397
1448
|
headers: { [key: string]: string };
|
|
1449
|
+
statusCode: number;
|
|
1398
1450
|
body: DescribeEventDetailResponseBody;
|
|
1399
1451
|
static names(): { [key: string]: string } {
|
|
1400
1452
|
return {
|
|
1401
1453
|
headers: 'headers',
|
|
1454
|
+
statusCode: 'statusCode',
|
|
1402
1455
|
body: 'body',
|
|
1403
1456
|
};
|
|
1404
1457
|
}
|
|
@@ -1406,6 +1459,7 @@ export class DescribeEventDetailResponse extends $tea.Model {
|
|
|
1406
1459
|
static types(): { [key: string]: any } {
|
|
1407
1460
|
return {
|
|
1408
1461
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1462
|
+
statusCode: 'number',
|
|
1409
1463
|
body: DescribeEventDetailResponseBody,
|
|
1410
1464
|
};
|
|
1411
1465
|
}
|
|
@@ -1467,10 +1521,12 @@ export class DescribeEventTypesResponseBody extends $tea.Model {
|
|
|
1467
1521
|
|
|
1468
1522
|
export class DescribeEventTypesResponse extends $tea.Model {
|
|
1469
1523
|
headers: { [key: string]: string };
|
|
1524
|
+
statusCode: number;
|
|
1470
1525
|
body: DescribeEventTypesResponseBody;
|
|
1471
1526
|
static names(): { [key: string]: string } {
|
|
1472
1527
|
return {
|
|
1473
1528
|
headers: 'headers',
|
|
1529
|
+
statusCode: 'statusCode',
|
|
1474
1530
|
body: 'body',
|
|
1475
1531
|
};
|
|
1476
1532
|
}
|
|
@@ -1478,6 +1534,7 @@ export class DescribeEventTypesResponse extends $tea.Model {
|
|
|
1478
1534
|
static types(): { [key: string]: any } {
|
|
1479
1535
|
return {
|
|
1480
1536
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1537
|
+
statusCode: 'number',
|
|
1481
1538
|
body: DescribeEventTypesResponseBody,
|
|
1482
1539
|
};
|
|
1483
1540
|
}
|
|
@@ -1581,10 +1638,12 @@ export class DescribeEventsResponseBody extends $tea.Model {
|
|
|
1581
1638
|
|
|
1582
1639
|
export class DescribeEventsResponse extends $tea.Model {
|
|
1583
1640
|
headers: { [key: string]: string };
|
|
1641
|
+
statusCode: number;
|
|
1584
1642
|
body: DescribeEventsResponseBody;
|
|
1585
1643
|
static names(): { [key: string]: string } {
|
|
1586
1644
|
return {
|
|
1587
1645
|
headers: 'headers',
|
|
1646
|
+
statusCode: 'statusCode',
|
|
1588
1647
|
body: 'body',
|
|
1589
1648
|
};
|
|
1590
1649
|
}
|
|
@@ -1592,6 +1651,7 @@ export class DescribeEventsResponse extends $tea.Model {
|
|
|
1592
1651
|
static types(): { [key: string]: any } {
|
|
1593
1652
|
return {
|
|
1594
1653
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1654
|
+
statusCode: 'number',
|
|
1595
1655
|
body: DescribeEventsResponseBody,
|
|
1596
1656
|
};
|
|
1597
1657
|
}
|
|
@@ -1686,10 +1746,12 @@ export class DescribeInstanceSourcesResponseBody extends $tea.Model {
|
|
|
1686
1746
|
|
|
1687
1747
|
export class DescribeInstanceSourcesResponse extends $tea.Model {
|
|
1688
1748
|
headers: { [key: string]: string };
|
|
1749
|
+
statusCode: number;
|
|
1689
1750
|
body: DescribeInstanceSourcesResponseBody;
|
|
1690
1751
|
static names(): { [key: string]: string } {
|
|
1691
1752
|
return {
|
|
1692
1753
|
headers: 'headers',
|
|
1754
|
+
statusCode: 'statusCode',
|
|
1693
1755
|
body: 'body',
|
|
1694
1756
|
};
|
|
1695
1757
|
}
|
|
@@ -1697,6 +1759,7 @@ export class DescribeInstanceSourcesResponse extends $tea.Model {
|
|
|
1697
1759
|
static types(): { [key: string]: any } {
|
|
1698
1760
|
return {
|
|
1699
1761
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1762
|
+
statusCode: 'number',
|
|
1700
1763
|
body: DescribeInstanceSourcesResponseBody,
|
|
1701
1764
|
};
|
|
1702
1765
|
}
|
|
@@ -1785,10 +1848,12 @@ export class DescribeInstancesResponseBody extends $tea.Model {
|
|
|
1785
1848
|
|
|
1786
1849
|
export class DescribeInstancesResponse extends $tea.Model {
|
|
1787
1850
|
headers: { [key: string]: string };
|
|
1851
|
+
statusCode: number;
|
|
1788
1852
|
body: DescribeInstancesResponseBody;
|
|
1789
1853
|
static names(): { [key: string]: string } {
|
|
1790
1854
|
return {
|
|
1791
1855
|
headers: 'headers',
|
|
1856
|
+
statusCode: 'statusCode',
|
|
1792
1857
|
body: 'body',
|
|
1793
1858
|
};
|
|
1794
1859
|
}
|
|
@@ -1796,6 +1861,7 @@ export class DescribeInstancesResponse extends $tea.Model {
|
|
|
1796
1861
|
static types(): { [key: string]: any } {
|
|
1797
1862
|
return {
|
|
1798
1863
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1864
|
+
statusCode: 'number',
|
|
1799
1865
|
body: DescribeInstancesResponseBody,
|
|
1800
1866
|
};
|
|
1801
1867
|
}
|
|
@@ -1851,10 +1917,12 @@ export class DescribeOssObjectDetailResponseBody extends $tea.Model {
|
|
|
1851
1917
|
|
|
1852
1918
|
export class DescribeOssObjectDetailResponse extends $tea.Model {
|
|
1853
1919
|
headers: { [key: string]: string };
|
|
1920
|
+
statusCode: number;
|
|
1854
1921
|
body: DescribeOssObjectDetailResponseBody;
|
|
1855
1922
|
static names(): { [key: string]: string } {
|
|
1856
1923
|
return {
|
|
1857
1924
|
headers: 'headers',
|
|
1925
|
+
statusCode: 'statusCode',
|
|
1858
1926
|
body: 'body',
|
|
1859
1927
|
};
|
|
1860
1928
|
}
|
|
@@ -1862,6 +1930,7 @@ export class DescribeOssObjectDetailResponse extends $tea.Model {
|
|
|
1862
1930
|
static types(): { [key: string]: any } {
|
|
1863
1931
|
return {
|
|
1864
1932
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1933
|
+
statusCode: 'number',
|
|
1865
1934
|
body: DescribeOssObjectDetailResponseBody,
|
|
1866
1935
|
};
|
|
1867
1936
|
}
|
|
@@ -1950,10 +2019,12 @@ export class DescribeOssObjectsResponseBody extends $tea.Model {
|
|
|
1950
2019
|
|
|
1951
2020
|
export class DescribeOssObjectsResponse extends $tea.Model {
|
|
1952
2021
|
headers: { [key: string]: string };
|
|
2022
|
+
statusCode: number;
|
|
1953
2023
|
body: DescribeOssObjectsResponseBody;
|
|
1954
2024
|
static names(): { [key: string]: string } {
|
|
1955
2025
|
return {
|
|
1956
2026
|
headers: 'headers',
|
|
2027
|
+
statusCode: 'statusCode',
|
|
1957
2028
|
body: 'body',
|
|
1958
2029
|
};
|
|
1959
2030
|
}
|
|
@@ -1961,6 +2032,7 @@ export class DescribeOssObjectsResponse extends $tea.Model {
|
|
|
1961
2032
|
static types(): { [key: string]: any } {
|
|
1962
2033
|
return {
|
|
1963
2034
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2035
|
+
statusCode: 'number',
|
|
1964
2036
|
body: DescribeOssObjectsResponseBody,
|
|
1965
2037
|
};
|
|
1966
2038
|
}
|
|
@@ -2043,10 +2115,12 @@ export class DescribePackagesResponseBody extends $tea.Model {
|
|
|
2043
2115
|
|
|
2044
2116
|
export class DescribePackagesResponse extends $tea.Model {
|
|
2045
2117
|
headers: { [key: string]: string };
|
|
2118
|
+
statusCode: number;
|
|
2046
2119
|
body: DescribePackagesResponseBody;
|
|
2047
2120
|
static names(): { [key: string]: string } {
|
|
2048
2121
|
return {
|
|
2049
2122
|
headers: 'headers',
|
|
2123
|
+
statusCode: 'statusCode',
|
|
2050
2124
|
body: 'body',
|
|
2051
2125
|
};
|
|
2052
2126
|
}
|
|
@@ -2054,6 +2128,7 @@ export class DescribePackagesResponse extends $tea.Model {
|
|
|
2054
2128
|
static types(): { [key: string]: any } {
|
|
2055
2129
|
return {
|
|
2056
2130
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2131
|
+
statusCode: 'number',
|
|
2057
2132
|
body: DescribePackagesResponseBody,
|
|
2058
2133
|
};
|
|
2059
2134
|
}
|
|
@@ -2106,10 +2181,12 @@ export class DescribeRiskLevelsResponseBody extends $tea.Model {
|
|
|
2106
2181
|
|
|
2107
2182
|
export class DescribeRiskLevelsResponse extends $tea.Model {
|
|
2108
2183
|
headers: { [key: string]: string };
|
|
2184
|
+
statusCode: number;
|
|
2109
2185
|
body: DescribeRiskLevelsResponseBody;
|
|
2110
2186
|
static names(): { [key: string]: string } {
|
|
2111
2187
|
return {
|
|
2112
2188
|
headers: 'headers',
|
|
2189
|
+
statusCode: 'statusCode',
|
|
2113
2190
|
body: 'body',
|
|
2114
2191
|
};
|
|
2115
2192
|
}
|
|
@@ -2117,6 +2194,7 @@ export class DescribeRiskLevelsResponse extends $tea.Model {
|
|
|
2117
2194
|
static types(): { [key: string]: any } {
|
|
2118
2195
|
return {
|
|
2119
2196
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2197
|
+
statusCode: 'number',
|
|
2120
2198
|
body: DescribeRiskLevelsResponseBody,
|
|
2121
2199
|
};
|
|
2122
2200
|
}
|
|
@@ -2220,10 +2298,12 @@ export class DescribeRulesResponseBody extends $tea.Model {
|
|
|
2220
2298
|
|
|
2221
2299
|
export class DescribeRulesResponse extends $tea.Model {
|
|
2222
2300
|
headers: { [key: string]: string };
|
|
2301
|
+
statusCode: number;
|
|
2223
2302
|
body: DescribeRulesResponseBody;
|
|
2224
2303
|
static names(): { [key: string]: string } {
|
|
2225
2304
|
return {
|
|
2226
2305
|
headers: 'headers',
|
|
2306
|
+
statusCode: 'statusCode',
|
|
2227
2307
|
body: 'body',
|
|
2228
2308
|
};
|
|
2229
2309
|
}
|
|
@@ -2231,6 +2311,7 @@ export class DescribeRulesResponse extends $tea.Model {
|
|
|
2231
2311
|
static types(): { [key: string]: any } {
|
|
2232
2312
|
return {
|
|
2233
2313
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2314
|
+
statusCode: 'number',
|
|
2234
2315
|
body: DescribeRulesResponseBody,
|
|
2235
2316
|
};
|
|
2236
2317
|
}
|
|
@@ -2322,10 +2403,12 @@ export class DescribeTablesResponseBody extends $tea.Model {
|
|
|
2322
2403
|
|
|
2323
2404
|
export class DescribeTablesResponse extends $tea.Model {
|
|
2324
2405
|
headers: { [key: string]: string };
|
|
2406
|
+
statusCode: number;
|
|
2325
2407
|
body: DescribeTablesResponseBody;
|
|
2326
2408
|
static names(): { [key: string]: string } {
|
|
2327
2409
|
return {
|
|
2328
2410
|
headers: 'headers',
|
|
2411
|
+
statusCode: 'statusCode',
|
|
2329
2412
|
body: 'body',
|
|
2330
2413
|
};
|
|
2331
2414
|
}
|
|
@@ -2333,6 +2416,7 @@ export class DescribeTablesResponse extends $tea.Model {
|
|
|
2333
2416
|
static types(): { [key: string]: any } {
|
|
2334
2417
|
return {
|
|
2335
2418
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2419
|
+
statusCode: 'number',
|
|
2336
2420
|
body: DescribeTablesResponseBody,
|
|
2337
2421
|
};
|
|
2338
2422
|
}
|
|
@@ -2385,10 +2469,12 @@ export class DescribeUserStatusResponseBody extends $tea.Model {
|
|
|
2385
2469
|
|
|
2386
2470
|
export class DescribeUserStatusResponse extends $tea.Model {
|
|
2387
2471
|
headers: { [key: string]: string };
|
|
2472
|
+
statusCode: number;
|
|
2388
2473
|
body: DescribeUserStatusResponseBody;
|
|
2389
2474
|
static names(): { [key: string]: string } {
|
|
2390
2475
|
return {
|
|
2391
2476
|
headers: 'headers',
|
|
2477
|
+
statusCode: 'statusCode',
|
|
2392
2478
|
body: 'body',
|
|
2393
2479
|
};
|
|
2394
2480
|
}
|
|
@@ -2396,6 +2482,7 @@ export class DescribeUserStatusResponse extends $tea.Model {
|
|
|
2396
2482
|
static types(): { [key: string]: any } {
|
|
2397
2483
|
return {
|
|
2398
2484
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2485
|
+
statusCode: 'number',
|
|
2399
2486
|
body: DescribeUserStatusResponseBody,
|
|
2400
2487
|
};
|
|
2401
2488
|
}
|
|
@@ -2448,10 +2535,12 @@ export class DisableUserConfigResponseBody extends $tea.Model {
|
|
|
2448
2535
|
|
|
2449
2536
|
export class DisableUserConfigResponse extends $tea.Model {
|
|
2450
2537
|
headers: { [key: string]: string };
|
|
2538
|
+
statusCode: number;
|
|
2451
2539
|
body: DisableUserConfigResponseBody;
|
|
2452
2540
|
static names(): { [key: string]: string } {
|
|
2453
2541
|
return {
|
|
2454
2542
|
headers: 'headers',
|
|
2543
|
+
statusCode: 'statusCode',
|
|
2455
2544
|
body: 'body',
|
|
2456
2545
|
};
|
|
2457
2546
|
}
|
|
@@ -2459,6 +2548,7 @@ export class DisableUserConfigResponse extends $tea.Model {
|
|
|
2459
2548
|
static types(): { [key: string]: any } {
|
|
2460
2549
|
return {
|
|
2461
2550
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2551
|
+
statusCode: 'number',
|
|
2462
2552
|
body: DisableUserConfigResponseBody,
|
|
2463
2553
|
};
|
|
2464
2554
|
}
|
|
@@ -2517,10 +2607,12 @@ export class ExecDatamaskResponseBody extends $tea.Model {
|
|
|
2517
2607
|
|
|
2518
2608
|
export class ExecDatamaskResponse extends $tea.Model {
|
|
2519
2609
|
headers: { [key: string]: string };
|
|
2610
|
+
statusCode: number;
|
|
2520
2611
|
body: ExecDatamaskResponseBody;
|
|
2521
2612
|
static names(): { [key: string]: string } {
|
|
2522
2613
|
return {
|
|
2523
2614
|
headers: 'headers',
|
|
2615
|
+
statusCode: 'statusCode',
|
|
2524
2616
|
body: 'body',
|
|
2525
2617
|
};
|
|
2526
2618
|
}
|
|
@@ -2528,6 +2620,7 @@ export class ExecDatamaskResponse extends $tea.Model {
|
|
|
2528
2620
|
static types(): { [key: string]: any } {
|
|
2529
2621
|
return {
|
|
2530
2622
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2623
|
+
statusCode: 'number',
|
|
2531
2624
|
body: ExecDatamaskResponseBody,
|
|
2532
2625
|
};
|
|
2533
2626
|
}
|
|
@@ -2580,10 +2673,12 @@ export class ManualTriggerMaskingProcessResponseBody extends $tea.Model {
|
|
|
2580
2673
|
|
|
2581
2674
|
export class ManualTriggerMaskingProcessResponse extends $tea.Model {
|
|
2582
2675
|
headers: { [key: string]: string };
|
|
2676
|
+
statusCode: number;
|
|
2583
2677
|
body: ManualTriggerMaskingProcessResponseBody;
|
|
2584
2678
|
static names(): { [key: string]: string } {
|
|
2585
2679
|
return {
|
|
2586
2680
|
headers: 'headers',
|
|
2681
|
+
statusCode: 'statusCode',
|
|
2587
2682
|
body: 'body',
|
|
2588
2683
|
};
|
|
2589
2684
|
}
|
|
@@ -2591,6 +2686,7 @@ export class ManualTriggerMaskingProcessResponse extends $tea.Model {
|
|
|
2591
2686
|
static types(): { [key: string]: any } {
|
|
2592
2687
|
return {
|
|
2593
2688
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2689
|
+
statusCode: 'number',
|
|
2594
2690
|
body: ManualTriggerMaskingProcessResponseBody,
|
|
2595
2691
|
};
|
|
2596
2692
|
}
|
|
@@ -2611,6 +2707,7 @@ export class ModifyDataLimitRequest extends $tea.Model {
|
|
|
2611
2707
|
password?: string;
|
|
2612
2708
|
port?: number;
|
|
2613
2709
|
resourceType?: number;
|
|
2710
|
+
samplingSize?: number;
|
|
2614
2711
|
serviceRegionId?: string;
|
|
2615
2712
|
userName?: string;
|
|
2616
2713
|
static names(): { [key: string]: string } {
|
|
@@ -2625,6 +2722,7 @@ export class ModifyDataLimitRequest extends $tea.Model {
|
|
|
2625
2722
|
password: 'Password',
|
|
2626
2723
|
port: 'Port',
|
|
2627
2724
|
resourceType: 'ResourceType',
|
|
2725
|
+
samplingSize: 'SamplingSize',
|
|
2628
2726
|
serviceRegionId: 'ServiceRegionId',
|
|
2629
2727
|
userName: 'UserName',
|
|
2630
2728
|
};
|
|
@@ -2642,6 +2740,7 @@ export class ModifyDataLimitRequest extends $tea.Model {
|
|
|
2642
2740
|
password: 'string',
|
|
2643
2741
|
port: 'number',
|
|
2644
2742
|
resourceType: 'number',
|
|
2743
|
+
samplingSize: 'number',
|
|
2645
2744
|
serviceRegionId: 'string',
|
|
2646
2745
|
userName: 'string',
|
|
2647
2746
|
};
|
|
@@ -2673,10 +2772,12 @@ export class ModifyDataLimitResponseBody extends $tea.Model {
|
|
|
2673
2772
|
|
|
2674
2773
|
export class ModifyDataLimitResponse extends $tea.Model {
|
|
2675
2774
|
headers: { [key: string]: string };
|
|
2775
|
+
statusCode: number;
|
|
2676
2776
|
body: ModifyDataLimitResponseBody;
|
|
2677
2777
|
static names(): { [key: string]: string } {
|
|
2678
2778
|
return {
|
|
2679
2779
|
headers: 'headers',
|
|
2780
|
+
statusCode: 'statusCode',
|
|
2680
2781
|
body: 'body',
|
|
2681
2782
|
};
|
|
2682
2783
|
}
|
|
@@ -2684,6 +2785,7 @@ export class ModifyDataLimitResponse extends $tea.Model {
|
|
|
2684
2785
|
static types(): { [key: string]: any } {
|
|
2685
2786
|
return {
|
|
2686
2787
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2788
|
+
statusCode: 'number',
|
|
2687
2789
|
body: ModifyDataLimitResponseBody,
|
|
2688
2790
|
};
|
|
2689
2791
|
}
|
|
@@ -2739,10 +2841,12 @@ export class ModifyDefaultLevelResponseBody extends $tea.Model {
|
|
|
2739
2841
|
|
|
2740
2842
|
export class ModifyDefaultLevelResponse extends $tea.Model {
|
|
2741
2843
|
headers: { [key: string]: string };
|
|
2844
|
+
statusCode: number;
|
|
2742
2845
|
body: ModifyDefaultLevelResponseBody;
|
|
2743
2846
|
static names(): { [key: string]: string } {
|
|
2744
2847
|
return {
|
|
2745
2848
|
headers: 'headers',
|
|
2849
|
+
statusCode: 'statusCode',
|
|
2746
2850
|
body: 'body',
|
|
2747
2851
|
};
|
|
2748
2852
|
}
|
|
@@ -2750,6 +2854,7 @@ export class ModifyDefaultLevelResponse extends $tea.Model {
|
|
|
2750
2854
|
static types(): { [key: string]: any } {
|
|
2751
2855
|
return {
|
|
2752
2856
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2857
|
+
statusCode: 'number',
|
|
2753
2858
|
body: ModifyDefaultLevelResponseBody,
|
|
2754
2859
|
};
|
|
2755
2860
|
}
|
|
@@ -2811,10 +2916,12 @@ export class ModifyEventStatusResponseBody extends $tea.Model {
|
|
|
2811
2916
|
|
|
2812
2917
|
export class ModifyEventStatusResponse extends $tea.Model {
|
|
2813
2918
|
headers: { [key: string]: string };
|
|
2919
|
+
statusCode: number;
|
|
2814
2920
|
body: ModifyEventStatusResponseBody;
|
|
2815
2921
|
static names(): { [key: string]: string } {
|
|
2816
2922
|
return {
|
|
2817
2923
|
headers: 'headers',
|
|
2924
|
+
statusCode: 'statusCode',
|
|
2818
2925
|
body: 'body',
|
|
2819
2926
|
};
|
|
2820
2927
|
}
|
|
@@ -2822,6 +2929,7 @@ export class ModifyEventStatusResponse extends $tea.Model {
|
|
|
2822
2929
|
static types(): { [key: string]: any } {
|
|
2823
2930
|
return {
|
|
2824
2931
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2932
|
+
statusCode: 'number',
|
|
2825
2933
|
body: ModifyEventStatusResponseBody,
|
|
2826
2934
|
};
|
|
2827
2935
|
}
|
|
@@ -2874,10 +2982,12 @@ export class ModifyEventTypeStatusResponseBody extends $tea.Model {
|
|
|
2874
2982
|
|
|
2875
2983
|
export class ModifyEventTypeStatusResponse extends $tea.Model {
|
|
2876
2984
|
headers: { [key: string]: string };
|
|
2985
|
+
statusCode: number;
|
|
2877
2986
|
body: ModifyEventTypeStatusResponseBody;
|
|
2878
2987
|
static names(): { [key: string]: string } {
|
|
2879
2988
|
return {
|
|
2880
2989
|
headers: 'headers',
|
|
2990
|
+
statusCode: 'statusCode',
|
|
2881
2991
|
body: 'body',
|
|
2882
2992
|
};
|
|
2883
2993
|
}
|
|
@@ -2885,6 +2995,7 @@ export class ModifyEventTypeStatusResponse extends $tea.Model {
|
|
|
2885
2995
|
static types(): { [key: string]: any } {
|
|
2886
2996
|
return {
|
|
2887
2997
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2998
|
+
statusCode: 'number',
|
|
2888
2999
|
body: ModifyEventTypeStatusResponseBody,
|
|
2889
3000
|
};
|
|
2890
3001
|
}
|
|
@@ -2937,10 +3048,12 @@ export class ModifyReportTaskStatusResponseBody extends $tea.Model {
|
|
|
2937
3048
|
|
|
2938
3049
|
export class ModifyReportTaskStatusResponse extends $tea.Model {
|
|
2939
3050
|
headers: { [key: string]: string };
|
|
3051
|
+
statusCode: number;
|
|
2940
3052
|
body: ModifyReportTaskStatusResponseBody;
|
|
2941
3053
|
static names(): { [key: string]: string } {
|
|
2942
3054
|
return {
|
|
2943
3055
|
headers: 'headers',
|
|
3056
|
+
statusCode: 'statusCode',
|
|
2944
3057
|
body: 'body',
|
|
2945
3058
|
};
|
|
2946
3059
|
}
|
|
@@ -2948,6 +3061,7 @@ export class ModifyReportTaskStatusResponse extends $tea.Model {
|
|
|
2948
3061
|
static types(): { [key: string]: any } {
|
|
2949
3062
|
return {
|
|
2950
3063
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3064
|
+
statusCode: 'number',
|
|
2951
3065
|
body: ModifyReportTaskStatusResponseBody,
|
|
2952
3066
|
};
|
|
2953
3067
|
}
|
|
@@ -3024,10 +3138,12 @@ export class ModifyRuleResponseBody extends $tea.Model {
|
|
|
3024
3138
|
|
|
3025
3139
|
export class ModifyRuleResponse extends $tea.Model {
|
|
3026
3140
|
headers: { [key: string]: string };
|
|
3141
|
+
statusCode: number;
|
|
3027
3142
|
body: ModifyRuleResponseBody;
|
|
3028
3143
|
static names(): { [key: string]: string } {
|
|
3029
3144
|
return {
|
|
3030
3145
|
headers: 'headers',
|
|
3146
|
+
statusCode: 'statusCode',
|
|
3031
3147
|
body: 'body',
|
|
3032
3148
|
};
|
|
3033
3149
|
}
|
|
@@ -3035,6 +3151,7 @@ export class ModifyRuleResponse extends $tea.Model {
|
|
|
3035
3151
|
static types(): { [key: string]: any } {
|
|
3036
3152
|
return {
|
|
3037
3153
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3154
|
+
statusCode: 'number',
|
|
3038
3155
|
body: ModifyRuleResponseBody,
|
|
3039
3156
|
};
|
|
3040
3157
|
}
|
|
@@ -3096,10 +3213,12 @@ export class ModifyRuleStatusResponseBody extends $tea.Model {
|
|
|
3096
3213
|
|
|
3097
3214
|
export class ModifyRuleStatusResponse extends $tea.Model {
|
|
3098
3215
|
headers: { [key: string]: string };
|
|
3216
|
+
statusCode: number;
|
|
3099
3217
|
body: ModifyRuleStatusResponseBody;
|
|
3100
3218
|
static names(): { [key: string]: string } {
|
|
3101
3219
|
return {
|
|
3102
3220
|
headers: 'headers',
|
|
3221
|
+
statusCode: 'statusCode',
|
|
3103
3222
|
body: 'body',
|
|
3104
3223
|
};
|
|
3105
3224
|
}
|
|
@@ -3107,6 +3226,7 @@ export class ModifyRuleStatusResponse extends $tea.Model {
|
|
|
3107
3226
|
static types(): { [key: string]: any } {
|
|
3108
3227
|
return {
|
|
3109
3228
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3229
|
+
statusCode: 'number',
|
|
3110
3230
|
body: ModifyRuleStatusResponseBody,
|
|
3111
3231
|
};
|
|
3112
3232
|
}
|
|
@@ -3159,10 +3279,12 @@ export class StopMaskingProcessResponseBody extends $tea.Model {
|
|
|
3159
3279
|
|
|
3160
3280
|
export class StopMaskingProcessResponse extends $tea.Model {
|
|
3161
3281
|
headers: { [key: string]: string };
|
|
3282
|
+
statusCode: number;
|
|
3162
3283
|
body: StopMaskingProcessResponseBody;
|
|
3163
3284
|
static names(): { [key: string]: string } {
|
|
3164
3285
|
return {
|
|
3165
3286
|
headers: 'headers',
|
|
3287
|
+
statusCode: 'statusCode',
|
|
3166
3288
|
body: 'body',
|
|
3167
3289
|
};
|
|
3168
3290
|
}
|
|
@@ -3170,6 +3292,7 @@ export class StopMaskingProcessResponse extends $tea.Model {
|
|
|
3170
3292
|
static types(): { [key: string]: any } {
|
|
3171
3293
|
return {
|
|
3172
3294
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3295
|
+
statusCode: 'number',
|
|
3173
3296
|
body: StopMaskingProcessResponseBody,
|
|
3174
3297
|
};
|
|
3175
3298
|
}
|
|
@@ -4803,6 +4926,7 @@ export class DescribeUserStatusResponseBodyUserStatus extends $tea.Model {
|
|
|
4803
4926
|
accessKeyId?: string;
|
|
4804
4927
|
authed?: boolean;
|
|
4805
4928
|
chargeType?: string;
|
|
4929
|
+
dataManagerRole?: number;
|
|
4806
4930
|
instanceId?: string;
|
|
4807
4931
|
instanceNum?: number;
|
|
4808
4932
|
labStatus?: number;
|
|
@@ -4816,6 +4940,7 @@ export class DescribeUserStatusResponseBodyUserStatus extends $tea.Model {
|
|
|
4816
4940
|
accessKeyId: 'AccessKeyId',
|
|
4817
4941
|
authed: 'Authed',
|
|
4818
4942
|
chargeType: 'ChargeType',
|
|
4943
|
+
dataManagerRole: 'DataManagerRole',
|
|
4819
4944
|
instanceId: 'InstanceId',
|
|
4820
4945
|
instanceNum: 'InstanceNum',
|
|
4821
4946
|
labStatus: 'LabStatus',
|
|
@@ -4832,6 +4957,7 @@ export class DescribeUserStatusResponseBodyUserStatus extends $tea.Model {
|
|
|
4832
4957
|
accessKeyId: 'string',
|
|
4833
4958
|
authed: 'boolean',
|
|
4834
4959
|
chargeType: 'string',
|
|
4960
|
+
dataManagerRole: 'number',
|
|
4835
4961
|
instanceId: 'string',
|
|
4836
4962
|
instanceNum: 'number',
|
|
4837
4963
|
labStatus: 'number',
|
|
@@ -4966,6 +5092,10 @@ export default class Client extends OpenApi {
|
|
|
4966
5092
|
query["ResourceType"] = request.resourceType;
|
|
4967
5093
|
}
|
|
4968
5094
|
|
|
5095
|
+
if (!Util.isUnset(request.samplingSize)) {
|
|
5096
|
+
query["SamplingSize"] = request.samplingSize;
|
|
5097
|
+
}
|
|
5098
|
+
|
|
4969
5099
|
if (!Util.isUnset(request.serviceRegionId)) {
|
|
4970
5100
|
query["ServiceRegionId"] = request.serviceRegionId;
|
|
4971
5101
|
}
|
|
@@ -6528,6 +6658,10 @@ export default class Client extends OpenApi {
|
|
|
6528
6658
|
query["ResourceType"] = request.resourceType;
|
|
6529
6659
|
}
|
|
6530
6660
|
|
|
6661
|
+
if (!Util.isUnset(request.samplingSize)) {
|
|
6662
|
+
query["SamplingSize"] = request.samplingSize;
|
|
6663
|
+
}
|
|
6664
|
+
|
|
6531
6665
|
if (!Util.isUnset(request.serviceRegionId)) {
|
|
6532
6666
|
query["ServiceRegionId"] = request.serviceRegionId;
|
|
6533
6667
|
}
|