@alicloud/sddp20190103 1.1.2 → 1.2.0
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 +244 -151
- package/dist/client.js +222 -12
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +407 -151
package/dist/client.d.ts
CHANGED
|
@@ -35,11 +35,11 @@ export declare class CreateConfigResponseBody extends $tea.Model {
|
|
|
35
35
|
});
|
|
36
36
|
}
|
|
37
37
|
export declare class CreateConfigResponse extends $tea.Model {
|
|
38
|
-
headers
|
|
38
|
+
headers?: {
|
|
39
39
|
[key: string]: string;
|
|
40
40
|
};
|
|
41
|
-
statusCode
|
|
42
|
-
body
|
|
41
|
+
statusCode?: number;
|
|
42
|
+
body?: CreateConfigResponseBody;
|
|
43
43
|
static names(): {
|
|
44
44
|
[key: string]: string;
|
|
45
45
|
};
|
|
@@ -93,11 +93,11 @@ export declare class CreateDataLimitResponseBody extends $tea.Model {
|
|
|
93
93
|
});
|
|
94
94
|
}
|
|
95
95
|
export declare class CreateDataLimitResponse extends $tea.Model {
|
|
96
|
-
headers
|
|
96
|
+
headers?: {
|
|
97
97
|
[key: string]: string;
|
|
98
98
|
};
|
|
99
|
-
statusCode
|
|
100
|
-
body
|
|
99
|
+
statusCode?: number;
|
|
100
|
+
body?: CreateDataLimitResponseBody;
|
|
101
101
|
static names(): {
|
|
102
102
|
[key: string]: string;
|
|
103
103
|
};
|
|
@@ -150,11 +150,11 @@ export declare class CreateRuleResponseBody extends $tea.Model {
|
|
|
150
150
|
});
|
|
151
151
|
}
|
|
152
152
|
export declare class CreateRuleResponse extends $tea.Model {
|
|
153
|
-
headers
|
|
153
|
+
headers?: {
|
|
154
154
|
[key: string]: string;
|
|
155
155
|
};
|
|
156
|
-
statusCode
|
|
157
|
-
body
|
|
156
|
+
statusCode?: number;
|
|
157
|
+
body?: CreateRuleResponseBody;
|
|
158
158
|
static names(): {
|
|
159
159
|
[key: string]: string;
|
|
160
160
|
};
|
|
@@ -203,11 +203,11 @@ export declare class CreateScanTaskResponseBody extends $tea.Model {
|
|
|
203
203
|
});
|
|
204
204
|
}
|
|
205
205
|
export declare class CreateScanTaskResponse extends $tea.Model {
|
|
206
|
-
headers
|
|
206
|
+
headers?: {
|
|
207
207
|
[key: string]: string;
|
|
208
208
|
};
|
|
209
|
-
statusCode
|
|
210
|
-
body
|
|
209
|
+
statusCode?: number;
|
|
210
|
+
body?: CreateScanTaskResponseBody;
|
|
211
211
|
static names(): {
|
|
212
212
|
[key: string]: string;
|
|
213
213
|
};
|
|
@@ -246,11 +246,11 @@ export declare class CreateSlrRoleResponseBody extends $tea.Model {
|
|
|
246
246
|
});
|
|
247
247
|
}
|
|
248
248
|
export declare class CreateSlrRoleResponse extends $tea.Model {
|
|
249
|
-
headers
|
|
249
|
+
headers?: {
|
|
250
250
|
[key: string]: string;
|
|
251
251
|
};
|
|
252
|
-
statusCode
|
|
253
|
-
body
|
|
252
|
+
statusCode?: number;
|
|
253
|
+
body?: CreateSlrRoleResponseBody;
|
|
254
254
|
static names(): {
|
|
255
255
|
[key: string]: string;
|
|
256
256
|
};
|
|
@@ -289,11 +289,11 @@ export declare class DeleteDataLimitResponseBody extends $tea.Model {
|
|
|
289
289
|
});
|
|
290
290
|
}
|
|
291
291
|
export declare class DeleteDataLimitResponse extends $tea.Model {
|
|
292
|
-
headers
|
|
292
|
+
headers?: {
|
|
293
293
|
[key: string]: string;
|
|
294
294
|
};
|
|
295
|
-
statusCode
|
|
296
|
-
body
|
|
295
|
+
statusCode?: number;
|
|
296
|
+
body?: DeleteDataLimitResponseBody;
|
|
297
297
|
static names(): {
|
|
298
298
|
[key: string]: string;
|
|
299
299
|
};
|
|
@@ -332,11 +332,11 @@ export declare class DeleteRuleResponseBody extends $tea.Model {
|
|
|
332
332
|
});
|
|
333
333
|
}
|
|
334
334
|
export declare class DeleteRuleResponse extends $tea.Model {
|
|
335
|
-
headers
|
|
335
|
+
headers?: {
|
|
336
336
|
[key: string]: string;
|
|
337
337
|
};
|
|
338
|
-
statusCode
|
|
339
|
-
body
|
|
338
|
+
statusCode?: number;
|
|
339
|
+
body?: DeleteRuleResponseBody;
|
|
340
340
|
static names(): {
|
|
341
341
|
[key: string]: string;
|
|
342
342
|
};
|
|
@@ -380,11 +380,11 @@ export declare class DescribeCategoryTemplateListResponseBody extends $tea.Model
|
|
|
380
380
|
});
|
|
381
381
|
}
|
|
382
382
|
export declare class DescribeCategoryTemplateListResponse extends $tea.Model {
|
|
383
|
-
headers
|
|
383
|
+
headers?: {
|
|
384
384
|
[key: string]: string;
|
|
385
385
|
};
|
|
386
|
-
statusCode
|
|
387
|
-
body
|
|
386
|
+
statusCode?: number;
|
|
387
|
+
body?: DescribeCategoryTemplateListResponseBody;
|
|
388
388
|
static names(): {
|
|
389
389
|
[key: string]: string;
|
|
390
390
|
};
|
|
@@ -429,11 +429,11 @@ export declare class DescribeCategoryTemplateRuleListResponseBody extends $tea.M
|
|
|
429
429
|
});
|
|
430
430
|
}
|
|
431
431
|
export declare class DescribeCategoryTemplateRuleListResponse extends $tea.Model {
|
|
432
|
-
headers
|
|
432
|
+
headers?: {
|
|
433
433
|
[key: string]: string;
|
|
434
434
|
};
|
|
435
|
-
statusCode
|
|
436
|
-
body
|
|
435
|
+
statusCode?: number;
|
|
436
|
+
body?: DescribeCategoryTemplateRuleListResponseBody;
|
|
437
437
|
static names(): {
|
|
438
438
|
[key: string]: string;
|
|
439
439
|
};
|
|
@@ -485,11 +485,11 @@ export declare class DescribeColumnsResponseBody extends $tea.Model {
|
|
|
485
485
|
});
|
|
486
486
|
}
|
|
487
487
|
export declare class DescribeColumnsResponse extends $tea.Model {
|
|
488
|
-
headers
|
|
488
|
+
headers?: {
|
|
489
489
|
[key: string]: string;
|
|
490
490
|
};
|
|
491
|
-
statusCode
|
|
492
|
-
body
|
|
491
|
+
statusCode?: number;
|
|
492
|
+
body?: DescribeColumnsResponseBody;
|
|
493
493
|
static names(): {
|
|
494
494
|
[key: string]: string;
|
|
495
495
|
};
|
|
@@ -541,11 +541,11 @@ export declare class DescribeColumnsV2ResponseBody extends $tea.Model {
|
|
|
541
541
|
});
|
|
542
542
|
}
|
|
543
543
|
export declare class DescribeColumnsV2Response extends $tea.Model {
|
|
544
|
-
headers
|
|
544
|
+
headers?: {
|
|
545
545
|
[key: string]: string;
|
|
546
546
|
};
|
|
547
|
-
statusCode
|
|
548
|
-
body
|
|
547
|
+
statusCode?: number;
|
|
548
|
+
body?: DescribeColumnsV2ResponseBody;
|
|
549
549
|
static names(): {
|
|
550
550
|
[key: string]: string;
|
|
551
551
|
};
|
|
@@ -582,11 +582,11 @@ export declare class DescribeConfigsResponseBody extends $tea.Model {
|
|
|
582
582
|
});
|
|
583
583
|
}
|
|
584
584
|
export declare class DescribeConfigsResponse extends $tea.Model {
|
|
585
|
-
headers
|
|
585
|
+
headers?: {
|
|
586
586
|
[key: string]: string;
|
|
587
587
|
};
|
|
588
|
-
statusCode
|
|
589
|
-
body
|
|
588
|
+
statusCode?: number;
|
|
589
|
+
body?: DescribeConfigsResponseBody;
|
|
590
590
|
static names(): {
|
|
591
591
|
[key: string]: string;
|
|
592
592
|
};
|
|
@@ -632,11 +632,11 @@ export declare class DescribeDataAssetsResponseBody extends $tea.Model {
|
|
|
632
632
|
});
|
|
633
633
|
}
|
|
634
634
|
export declare class DescribeDataAssetsResponse extends $tea.Model {
|
|
635
|
-
headers
|
|
635
|
+
headers?: {
|
|
636
636
|
[key: string]: string;
|
|
637
637
|
};
|
|
638
|
-
statusCode
|
|
639
|
-
body
|
|
638
|
+
statusCode?: number;
|
|
639
|
+
body?: DescribeDataAssetsResponseBody;
|
|
640
640
|
static names(): {
|
|
641
641
|
[key: string]: string;
|
|
642
642
|
};
|
|
@@ -676,11 +676,11 @@ export declare class DescribeDataLimitDetailResponseBody extends $tea.Model {
|
|
|
676
676
|
});
|
|
677
677
|
}
|
|
678
678
|
export declare class DescribeDataLimitDetailResponse extends $tea.Model {
|
|
679
|
-
headers
|
|
679
|
+
headers?: {
|
|
680
680
|
[key: string]: string;
|
|
681
681
|
};
|
|
682
|
-
statusCode
|
|
683
|
-
body
|
|
682
|
+
statusCode?: number;
|
|
683
|
+
body?: DescribeDataLimitDetailResponseBody;
|
|
684
684
|
static names(): {
|
|
685
685
|
[key: string]: string;
|
|
686
686
|
};
|
|
@@ -720,11 +720,11 @@ export declare class DescribeDataLimitSetResponseBody extends $tea.Model {
|
|
|
720
720
|
});
|
|
721
721
|
}
|
|
722
722
|
export declare class DescribeDataLimitSetResponse extends $tea.Model {
|
|
723
|
-
headers
|
|
723
|
+
headers?: {
|
|
724
724
|
[key: string]: string;
|
|
725
725
|
};
|
|
726
|
-
statusCode
|
|
727
|
-
body
|
|
726
|
+
statusCode?: number;
|
|
727
|
+
body?: DescribeDataLimitSetResponseBody;
|
|
728
728
|
static names(): {
|
|
729
729
|
[key: string]: string;
|
|
730
730
|
};
|
|
@@ -777,11 +777,11 @@ export declare class DescribeDataLimitsResponseBody extends $tea.Model {
|
|
|
777
777
|
});
|
|
778
778
|
}
|
|
779
779
|
export declare class DescribeDataLimitsResponse extends $tea.Model {
|
|
780
|
-
headers
|
|
780
|
+
headers?: {
|
|
781
781
|
[key: string]: string;
|
|
782
782
|
};
|
|
783
|
-
statusCode
|
|
784
|
-
body
|
|
783
|
+
statusCode?: number;
|
|
784
|
+
body?: DescribeDataLimitsResponseBody;
|
|
785
785
|
static names(): {
|
|
786
786
|
[key: string]: string;
|
|
787
787
|
};
|
|
@@ -831,11 +831,11 @@ export declare class DescribeDataMaskingRunHistoryResponseBody extends $tea.Mode
|
|
|
831
831
|
});
|
|
832
832
|
}
|
|
833
833
|
export declare class DescribeDataMaskingRunHistoryResponse extends $tea.Model {
|
|
834
|
-
headers
|
|
834
|
+
headers?: {
|
|
835
835
|
[key: string]: string;
|
|
836
836
|
};
|
|
837
|
-
statusCode
|
|
838
|
-
body
|
|
837
|
+
statusCode?: number;
|
|
838
|
+
body?: DescribeDataMaskingRunHistoryResponseBody;
|
|
839
839
|
static names(): {
|
|
840
840
|
[key: string]: string;
|
|
841
841
|
};
|
|
@@ -881,11 +881,11 @@ export declare class DescribeDataMaskingTasksResponseBody extends $tea.Model {
|
|
|
881
881
|
});
|
|
882
882
|
}
|
|
883
883
|
export declare class DescribeDataMaskingTasksResponse extends $tea.Model {
|
|
884
|
-
headers
|
|
884
|
+
headers?: {
|
|
885
885
|
[key: string]: string;
|
|
886
886
|
};
|
|
887
|
-
statusCode
|
|
888
|
-
body
|
|
887
|
+
statusCode?: number;
|
|
888
|
+
body?: DescribeDataMaskingTasksResponseBody;
|
|
889
889
|
static names(): {
|
|
890
890
|
[key: string]: string;
|
|
891
891
|
};
|
|
@@ -931,11 +931,11 @@ export declare class DescribeDataObjectColumnDetailResponseBody extends $tea.Mod
|
|
|
931
931
|
});
|
|
932
932
|
}
|
|
933
933
|
export declare class DescribeDataObjectColumnDetailResponse extends $tea.Model {
|
|
934
|
-
headers
|
|
934
|
+
headers?: {
|
|
935
935
|
[key: string]: string;
|
|
936
936
|
};
|
|
937
|
-
statusCode
|
|
938
|
-
body
|
|
937
|
+
statusCode?: number;
|
|
938
|
+
body?: DescribeDataObjectColumnDetailResponseBody;
|
|
939
939
|
static names(): {
|
|
940
940
|
[key: string]: string;
|
|
941
941
|
};
|
|
@@ -981,11 +981,11 @@ export declare class DescribeDataObjectColumnDetailV2ResponseBody extends $tea.M
|
|
|
981
981
|
});
|
|
982
982
|
}
|
|
983
983
|
export declare class DescribeDataObjectColumnDetailV2Response extends $tea.Model {
|
|
984
|
-
headers
|
|
984
|
+
headers?: {
|
|
985
985
|
[key: string]: string;
|
|
986
986
|
};
|
|
987
|
-
statusCode
|
|
988
|
-
body
|
|
987
|
+
statusCode?: number;
|
|
988
|
+
body?: DescribeDataObjectColumnDetailV2ResponseBody;
|
|
989
989
|
static names(): {
|
|
990
990
|
[key: string]: string;
|
|
991
991
|
};
|
|
@@ -1040,11 +1040,11 @@ export declare class DescribeDataObjectsResponseBody extends $tea.Model {
|
|
|
1040
1040
|
});
|
|
1041
1041
|
}
|
|
1042
1042
|
export declare class DescribeDataObjectsResponse extends $tea.Model {
|
|
1043
|
-
headers
|
|
1043
|
+
headers?: {
|
|
1044
1044
|
[key: string]: string;
|
|
1045
1045
|
};
|
|
1046
|
-
statusCode
|
|
1047
|
-
body
|
|
1046
|
+
statusCode?: number;
|
|
1047
|
+
body?: DescribeDataObjectsResponseBody;
|
|
1048
1048
|
static names(): {
|
|
1049
1049
|
[key: string]: string;
|
|
1050
1050
|
};
|
|
@@ -1081,11 +1081,11 @@ export declare class DescribeDocTypesResponseBody extends $tea.Model {
|
|
|
1081
1081
|
});
|
|
1082
1082
|
}
|
|
1083
1083
|
export declare class DescribeDocTypesResponse extends $tea.Model {
|
|
1084
|
-
headers
|
|
1084
|
+
headers?: {
|
|
1085
1085
|
[key: string]: string;
|
|
1086
1086
|
};
|
|
1087
|
-
statusCode
|
|
1088
|
-
body
|
|
1087
|
+
statusCode?: number;
|
|
1088
|
+
body?: DescribeDocTypesResponseBody;
|
|
1089
1089
|
static names(): {
|
|
1090
1090
|
[key: string]: string;
|
|
1091
1091
|
};
|
|
@@ -1123,11 +1123,11 @@ export declare class DescribeEventDetailResponseBody extends $tea.Model {
|
|
|
1123
1123
|
});
|
|
1124
1124
|
}
|
|
1125
1125
|
export declare class DescribeEventDetailResponse extends $tea.Model {
|
|
1126
|
-
headers
|
|
1126
|
+
headers?: {
|
|
1127
1127
|
[key: string]: string;
|
|
1128
1128
|
};
|
|
1129
|
-
statusCode
|
|
1130
|
-
body
|
|
1129
|
+
statusCode?: number;
|
|
1130
|
+
body?: DescribeEventDetailResponseBody;
|
|
1131
1131
|
static names(): {
|
|
1132
1132
|
[key: string]: string;
|
|
1133
1133
|
};
|
|
@@ -1168,11 +1168,11 @@ export declare class DescribeEventTypesResponseBody extends $tea.Model {
|
|
|
1168
1168
|
});
|
|
1169
1169
|
}
|
|
1170
1170
|
export declare class DescribeEventTypesResponse extends $tea.Model {
|
|
1171
|
-
headers
|
|
1171
|
+
headers?: {
|
|
1172
1172
|
[key: string]: string;
|
|
1173
1173
|
};
|
|
1174
|
-
statusCode
|
|
1175
|
-
body
|
|
1174
|
+
statusCode?: number;
|
|
1175
|
+
body?: DescribeEventTypesResponseBody;
|
|
1176
1176
|
static names(): {
|
|
1177
1177
|
[key: string]: string;
|
|
1178
1178
|
};
|
|
@@ -1199,6 +1199,7 @@ export declare class DescribeEventsRequest extends $tea.Model {
|
|
|
1199
1199
|
typeCode?: string;
|
|
1200
1200
|
userId?: number;
|
|
1201
1201
|
userName?: string;
|
|
1202
|
+
warnLevel?: number;
|
|
1202
1203
|
static names(): {
|
|
1203
1204
|
[key: string]: string;
|
|
1204
1205
|
};
|
|
@@ -1226,11 +1227,11 @@ export declare class DescribeEventsResponseBody extends $tea.Model {
|
|
|
1226
1227
|
});
|
|
1227
1228
|
}
|
|
1228
1229
|
export declare class DescribeEventsResponse extends $tea.Model {
|
|
1229
|
-
headers
|
|
1230
|
+
headers?: {
|
|
1230
1231
|
[key: string]: string;
|
|
1231
1232
|
};
|
|
1232
|
-
statusCode
|
|
1233
|
-
body
|
|
1233
|
+
statusCode?: number;
|
|
1234
|
+
body?: DescribeEventsResponseBody;
|
|
1234
1235
|
static names(): {
|
|
1235
1236
|
[key: string]: string;
|
|
1236
1237
|
};
|
|
@@ -1282,11 +1283,11 @@ export declare class DescribeInstanceSourcesResponseBody extends $tea.Model {
|
|
|
1282
1283
|
});
|
|
1283
1284
|
}
|
|
1284
1285
|
export declare class DescribeInstanceSourcesResponse extends $tea.Model {
|
|
1285
|
-
headers
|
|
1286
|
+
headers?: {
|
|
1286
1287
|
[key: string]: string;
|
|
1287
1288
|
};
|
|
1288
|
-
statusCode
|
|
1289
|
-
body
|
|
1289
|
+
statusCode?: number;
|
|
1290
|
+
body?: DescribeInstanceSourcesResponseBody;
|
|
1290
1291
|
static names(): {
|
|
1291
1292
|
[key: string]: string;
|
|
1292
1293
|
};
|
|
@@ -1335,11 +1336,11 @@ export declare class DescribeInstancesResponseBody extends $tea.Model {
|
|
|
1335
1336
|
});
|
|
1336
1337
|
}
|
|
1337
1338
|
export declare class DescribeInstancesResponse extends $tea.Model {
|
|
1338
|
-
headers
|
|
1339
|
+
headers?: {
|
|
1339
1340
|
[key: string]: string;
|
|
1340
1341
|
};
|
|
1341
|
-
statusCode
|
|
1342
|
-
body
|
|
1342
|
+
statusCode?: number;
|
|
1343
|
+
body?: DescribeInstancesResponseBody;
|
|
1343
1344
|
static names(): {
|
|
1344
1345
|
[key: string]: string;
|
|
1345
1346
|
};
|
|
@@ -1377,11 +1378,11 @@ export declare class DescribeOssObjectDetailResponseBody extends $tea.Model {
|
|
|
1377
1378
|
});
|
|
1378
1379
|
}
|
|
1379
1380
|
export declare class DescribeOssObjectDetailResponse extends $tea.Model {
|
|
1380
|
-
headers
|
|
1381
|
+
headers?: {
|
|
1381
1382
|
[key: string]: string;
|
|
1382
1383
|
};
|
|
1383
|
-
statusCode
|
|
1384
|
-
body
|
|
1384
|
+
statusCode?: number;
|
|
1385
|
+
body?: DescribeOssObjectDetailResponseBody;
|
|
1385
1386
|
static names(): {
|
|
1386
1387
|
[key: string]: string;
|
|
1387
1388
|
};
|
|
@@ -1419,11 +1420,11 @@ export declare class DescribeOssObjectDetailV2ResponseBody extends $tea.Model {
|
|
|
1419
1420
|
});
|
|
1420
1421
|
}
|
|
1421
1422
|
export declare class DescribeOssObjectDetailV2Response extends $tea.Model {
|
|
1422
|
-
headers
|
|
1423
|
+
headers?: {
|
|
1423
1424
|
[key: string]: string;
|
|
1424
1425
|
};
|
|
1425
|
-
statusCode
|
|
1426
|
-
body
|
|
1426
|
+
statusCode?: number;
|
|
1427
|
+
body?: DescribeOssObjectDetailV2ResponseBody;
|
|
1427
1428
|
static names(): {
|
|
1428
1429
|
[key: string]: string;
|
|
1429
1430
|
};
|
|
@@ -1474,11 +1475,11 @@ export declare class DescribeOssObjectsResponseBody extends $tea.Model {
|
|
|
1474
1475
|
});
|
|
1475
1476
|
}
|
|
1476
1477
|
export declare class DescribeOssObjectsResponse extends $tea.Model {
|
|
1477
|
-
headers
|
|
1478
|
+
headers?: {
|
|
1478
1479
|
[key: string]: string;
|
|
1479
1480
|
};
|
|
1480
|
-
statusCode
|
|
1481
|
-
body
|
|
1481
|
+
statusCode?: number;
|
|
1482
|
+
body?: DescribeOssObjectsResponseBody;
|
|
1482
1483
|
static names(): {
|
|
1483
1484
|
[key: string]: string;
|
|
1484
1485
|
};
|
|
@@ -1525,11 +1526,65 @@ export declare class DescribePackagesResponseBody extends $tea.Model {
|
|
|
1525
1526
|
});
|
|
1526
1527
|
}
|
|
1527
1528
|
export declare class DescribePackagesResponse extends $tea.Model {
|
|
1528
|
-
headers
|
|
1529
|
+
headers?: {
|
|
1529
1530
|
[key: string]: string;
|
|
1530
1531
|
};
|
|
1531
|
-
statusCode
|
|
1532
|
-
body
|
|
1532
|
+
statusCode?: number;
|
|
1533
|
+
body?: DescribePackagesResponseBody;
|
|
1534
|
+
static names(): {
|
|
1535
|
+
[key: string]: string;
|
|
1536
|
+
};
|
|
1537
|
+
static types(): {
|
|
1538
|
+
[key: string]: any;
|
|
1539
|
+
};
|
|
1540
|
+
constructor(map?: {
|
|
1541
|
+
[key: string]: any;
|
|
1542
|
+
});
|
|
1543
|
+
}
|
|
1544
|
+
export declare class DescribeParentInstanceRequest extends $tea.Model {
|
|
1545
|
+
authStatus?: number;
|
|
1546
|
+
checkStatus?: number;
|
|
1547
|
+
clusterStatus?: string;
|
|
1548
|
+
currentPage?: number;
|
|
1549
|
+
dbName?: string;
|
|
1550
|
+
engineType?: string;
|
|
1551
|
+
instanceId?: string;
|
|
1552
|
+
lang?: string;
|
|
1553
|
+
pageSize?: number;
|
|
1554
|
+
resourceType?: number;
|
|
1555
|
+
serviceRegionId?: string;
|
|
1556
|
+
static names(): {
|
|
1557
|
+
[key: string]: string;
|
|
1558
|
+
};
|
|
1559
|
+
static types(): {
|
|
1560
|
+
[key: string]: any;
|
|
1561
|
+
};
|
|
1562
|
+
constructor(map?: {
|
|
1563
|
+
[key: string]: any;
|
|
1564
|
+
});
|
|
1565
|
+
}
|
|
1566
|
+
export declare class DescribeParentInstanceResponseBody extends $tea.Model {
|
|
1567
|
+
currentPage?: number;
|
|
1568
|
+
items?: DescribeParentInstanceResponseBodyItems[];
|
|
1569
|
+
pageSize?: number;
|
|
1570
|
+
requestId?: string;
|
|
1571
|
+
totalCount?: number;
|
|
1572
|
+
static names(): {
|
|
1573
|
+
[key: string]: string;
|
|
1574
|
+
};
|
|
1575
|
+
static types(): {
|
|
1576
|
+
[key: string]: any;
|
|
1577
|
+
};
|
|
1578
|
+
constructor(map?: {
|
|
1579
|
+
[key: string]: any;
|
|
1580
|
+
});
|
|
1581
|
+
}
|
|
1582
|
+
export declare class DescribeParentInstanceResponse extends $tea.Model {
|
|
1583
|
+
headers?: {
|
|
1584
|
+
[key: string]: string;
|
|
1585
|
+
};
|
|
1586
|
+
statusCode?: number;
|
|
1587
|
+
body?: DescribeParentInstanceResponseBody;
|
|
1533
1588
|
static names(): {
|
|
1534
1589
|
[key: string]: string;
|
|
1535
1590
|
};
|
|
@@ -1568,11 +1623,11 @@ export declare class DescribeRiskLevelsResponseBody extends $tea.Model {
|
|
|
1568
1623
|
});
|
|
1569
1624
|
}
|
|
1570
1625
|
export declare class DescribeRiskLevelsResponse extends $tea.Model {
|
|
1571
|
-
headers
|
|
1626
|
+
headers?: {
|
|
1572
1627
|
[key: string]: string;
|
|
1573
1628
|
};
|
|
1574
|
-
statusCode
|
|
1575
|
-
body
|
|
1629
|
+
statusCode?: number;
|
|
1630
|
+
body?: DescribeRiskLevelsResponseBody;
|
|
1576
1631
|
static names(): {
|
|
1577
1632
|
[key: string]: string;
|
|
1578
1633
|
};
|
|
@@ -1629,11 +1684,11 @@ export declare class DescribeRulesResponseBody extends $tea.Model {
|
|
|
1629
1684
|
});
|
|
1630
1685
|
}
|
|
1631
1686
|
export declare class DescribeRulesResponse extends $tea.Model {
|
|
1632
|
-
headers
|
|
1687
|
+
headers?: {
|
|
1633
1688
|
[key: string]: string;
|
|
1634
1689
|
};
|
|
1635
|
-
statusCode
|
|
1636
|
-
body
|
|
1690
|
+
statusCode?: number;
|
|
1691
|
+
body?: DescribeRulesResponseBody;
|
|
1637
1692
|
static names(): {
|
|
1638
1693
|
[key: string]: string;
|
|
1639
1694
|
};
|
|
@@ -1684,11 +1739,11 @@ export declare class DescribeTablesResponseBody extends $tea.Model {
|
|
|
1684
1739
|
});
|
|
1685
1740
|
}
|
|
1686
1741
|
export declare class DescribeTablesResponse extends $tea.Model {
|
|
1687
|
-
headers
|
|
1742
|
+
headers?: {
|
|
1688
1743
|
[key: string]: string;
|
|
1689
1744
|
};
|
|
1690
|
-
statusCode
|
|
1691
|
-
body
|
|
1745
|
+
statusCode?: number;
|
|
1746
|
+
body?: DescribeTablesResponseBody;
|
|
1692
1747
|
static names(): {
|
|
1693
1748
|
[key: string]: string;
|
|
1694
1749
|
};
|
|
@@ -1727,11 +1782,11 @@ export declare class DescribeTemplateAllRulesResponseBody extends $tea.Model {
|
|
|
1727
1782
|
});
|
|
1728
1783
|
}
|
|
1729
1784
|
export declare class DescribeTemplateAllRulesResponse extends $tea.Model {
|
|
1730
|
-
headers
|
|
1785
|
+
headers?: {
|
|
1731
1786
|
[key: string]: string;
|
|
1732
1787
|
};
|
|
1733
|
-
statusCode
|
|
1734
|
-
body
|
|
1788
|
+
statusCode?: number;
|
|
1789
|
+
body?: DescribeTemplateAllRulesResponseBody;
|
|
1735
1790
|
static names(): {
|
|
1736
1791
|
[key: string]: string;
|
|
1737
1792
|
};
|
|
@@ -1769,11 +1824,11 @@ export declare class DescribeUserStatusResponseBody extends $tea.Model {
|
|
|
1769
1824
|
});
|
|
1770
1825
|
}
|
|
1771
1826
|
export declare class DescribeUserStatusResponse extends $tea.Model {
|
|
1772
|
-
headers
|
|
1827
|
+
headers?: {
|
|
1773
1828
|
[key: string]: string;
|
|
1774
1829
|
};
|
|
1775
|
-
statusCode
|
|
1776
|
-
body
|
|
1830
|
+
statusCode?: number;
|
|
1831
|
+
body?: DescribeUserStatusResponseBody;
|
|
1777
1832
|
static names(): {
|
|
1778
1833
|
[key: string]: string;
|
|
1779
1834
|
};
|
|
@@ -1811,11 +1866,11 @@ export declare class DisableUserConfigResponseBody extends $tea.Model {
|
|
|
1811
1866
|
});
|
|
1812
1867
|
}
|
|
1813
1868
|
export declare class DisableUserConfigResponse extends $tea.Model {
|
|
1814
|
-
headers
|
|
1869
|
+
headers?: {
|
|
1815
1870
|
[key: string]: string;
|
|
1816
1871
|
};
|
|
1817
|
-
statusCode
|
|
1818
|
-
body
|
|
1872
|
+
statusCode?: number;
|
|
1873
|
+
body?: DisableUserConfigResponseBody;
|
|
1819
1874
|
static names(): {
|
|
1820
1875
|
[key: string]: string;
|
|
1821
1876
|
};
|
|
@@ -1855,11 +1910,11 @@ export declare class ExecDatamaskResponseBody extends $tea.Model {
|
|
|
1855
1910
|
});
|
|
1856
1911
|
}
|
|
1857
1912
|
export declare class ExecDatamaskResponse extends $tea.Model {
|
|
1858
|
-
headers
|
|
1913
|
+
headers?: {
|
|
1859
1914
|
[key: string]: string;
|
|
1860
1915
|
};
|
|
1861
|
-
statusCode
|
|
1862
|
-
body
|
|
1916
|
+
statusCode?: number;
|
|
1917
|
+
body?: ExecDatamaskResponseBody;
|
|
1863
1918
|
static names(): {
|
|
1864
1919
|
[key: string]: string;
|
|
1865
1920
|
};
|
|
@@ -1896,11 +1951,11 @@ export declare class ManualTriggerMaskingProcessResponseBody extends $tea.Model
|
|
|
1896
1951
|
});
|
|
1897
1952
|
}
|
|
1898
1953
|
export declare class ManualTriggerMaskingProcessResponse extends $tea.Model {
|
|
1899
|
-
headers
|
|
1954
|
+
headers?: {
|
|
1900
1955
|
[key: string]: string;
|
|
1901
1956
|
};
|
|
1902
|
-
statusCode
|
|
1903
|
-
body
|
|
1957
|
+
statusCode?: number;
|
|
1958
|
+
body?: ManualTriggerMaskingProcessResponseBody;
|
|
1904
1959
|
static names(): {
|
|
1905
1960
|
[key: string]: string;
|
|
1906
1961
|
};
|
|
@@ -1952,11 +2007,11 @@ export declare class ModifyDataLimitResponseBody extends $tea.Model {
|
|
|
1952
2007
|
});
|
|
1953
2008
|
}
|
|
1954
2009
|
export declare class ModifyDataLimitResponse extends $tea.Model {
|
|
1955
|
-
headers
|
|
2010
|
+
headers?: {
|
|
1956
2011
|
[key: string]: string;
|
|
1957
2012
|
};
|
|
1958
|
-
statusCode
|
|
1959
|
-
body
|
|
2013
|
+
statusCode?: number;
|
|
2014
|
+
body?: ModifyDataLimitResponseBody;
|
|
1960
2015
|
static names(): {
|
|
1961
2016
|
[key: string]: string;
|
|
1962
2017
|
};
|
|
@@ -1994,11 +2049,11 @@ export declare class ModifyDefaultLevelResponseBody extends $tea.Model {
|
|
|
1994
2049
|
});
|
|
1995
2050
|
}
|
|
1996
2051
|
export declare class ModifyDefaultLevelResponse extends $tea.Model {
|
|
1997
|
-
headers
|
|
2052
|
+
headers?: {
|
|
1998
2053
|
[key: string]: string;
|
|
1999
2054
|
};
|
|
2000
|
-
statusCode
|
|
2001
|
-
body
|
|
2055
|
+
statusCode?: number;
|
|
2056
|
+
body?: ModifyDefaultLevelResponseBody;
|
|
2002
2057
|
static names(): {
|
|
2003
2058
|
[key: string]: string;
|
|
2004
2059
|
};
|
|
@@ -2038,11 +2093,11 @@ export declare class ModifyEventStatusResponseBody extends $tea.Model {
|
|
|
2038
2093
|
});
|
|
2039
2094
|
}
|
|
2040
2095
|
export declare class ModifyEventStatusResponse extends $tea.Model {
|
|
2041
|
-
headers
|
|
2096
|
+
headers?: {
|
|
2042
2097
|
[key: string]: string;
|
|
2043
2098
|
};
|
|
2044
|
-
statusCode
|
|
2045
|
-
body
|
|
2099
|
+
statusCode?: number;
|
|
2100
|
+
body?: ModifyEventStatusResponseBody;
|
|
2046
2101
|
static names(): {
|
|
2047
2102
|
[key: string]: string;
|
|
2048
2103
|
};
|
|
@@ -2080,11 +2135,11 @@ export declare class ModifyEventTypeStatusResponseBody extends $tea.Model {
|
|
|
2080
2135
|
});
|
|
2081
2136
|
}
|
|
2082
2137
|
export declare class ModifyEventTypeStatusResponse extends $tea.Model {
|
|
2083
|
-
headers
|
|
2138
|
+
headers?: {
|
|
2084
2139
|
[key: string]: string;
|
|
2085
2140
|
};
|
|
2086
|
-
statusCode
|
|
2087
|
-
body
|
|
2141
|
+
statusCode?: number;
|
|
2142
|
+
body?: ModifyEventTypeStatusResponseBody;
|
|
2088
2143
|
static names(): {
|
|
2089
2144
|
[key: string]: string;
|
|
2090
2145
|
};
|
|
@@ -2122,11 +2177,11 @@ export declare class ModifyReportTaskStatusResponseBody extends $tea.Model {
|
|
|
2122
2177
|
});
|
|
2123
2178
|
}
|
|
2124
2179
|
export declare class ModifyReportTaskStatusResponse extends $tea.Model {
|
|
2125
|
-
headers
|
|
2180
|
+
headers?: {
|
|
2126
2181
|
[key: string]: string;
|
|
2127
2182
|
};
|
|
2128
|
-
statusCode
|
|
2129
|
-
body
|
|
2183
|
+
statusCode?: number;
|
|
2184
|
+
body?: ModifyReportTaskStatusResponseBody;
|
|
2130
2185
|
static names(): {
|
|
2131
2186
|
[key: string]: string;
|
|
2132
2187
|
};
|
|
@@ -2173,11 +2228,11 @@ export declare class ModifyRuleResponseBody extends $tea.Model {
|
|
|
2173
2228
|
});
|
|
2174
2229
|
}
|
|
2175
2230
|
export declare class ModifyRuleResponse extends $tea.Model {
|
|
2176
|
-
headers
|
|
2231
|
+
headers?: {
|
|
2177
2232
|
[key: string]: string;
|
|
2178
2233
|
};
|
|
2179
|
-
statusCode
|
|
2180
|
-
body
|
|
2234
|
+
statusCode?: number;
|
|
2235
|
+
body?: ModifyRuleResponseBody;
|
|
2181
2236
|
static names(): {
|
|
2182
2237
|
[key: string]: string;
|
|
2183
2238
|
};
|
|
@@ -2217,11 +2272,11 @@ export declare class ModifyRuleStatusResponseBody extends $tea.Model {
|
|
|
2217
2272
|
});
|
|
2218
2273
|
}
|
|
2219
2274
|
export declare class ModifyRuleStatusResponse extends $tea.Model {
|
|
2220
|
-
headers
|
|
2275
|
+
headers?: {
|
|
2221
2276
|
[key: string]: string;
|
|
2222
2277
|
};
|
|
2223
|
-
statusCode
|
|
2224
|
-
body
|
|
2278
|
+
statusCode?: number;
|
|
2279
|
+
body?: ModifyRuleStatusResponseBody;
|
|
2225
2280
|
static names(): {
|
|
2226
2281
|
[key: string]: string;
|
|
2227
2282
|
};
|
|
@@ -2258,11 +2313,11 @@ export declare class StopMaskingProcessResponseBody extends $tea.Model {
|
|
|
2258
2313
|
});
|
|
2259
2314
|
}
|
|
2260
2315
|
export declare class StopMaskingProcessResponse extends $tea.Model {
|
|
2261
|
-
headers
|
|
2316
|
+
headers?: {
|
|
2262
2317
|
[key: string]: string;
|
|
2263
2318
|
};
|
|
2264
|
-
statusCode
|
|
2265
|
-
body
|
|
2319
|
+
statusCode?: number;
|
|
2320
|
+
body?: StopMaskingProcessResponseBody;
|
|
2266
2321
|
static names(): {
|
|
2267
2322
|
[key: string]: string;
|
|
2268
2323
|
};
|
|
@@ -3208,6 +3263,34 @@ export declare class DescribePackagesResponseBodyItems extends $tea.Model {
|
|
|
3208
3263
|
[key: string]: any;
|
|
3209
3264
|
});
|
|
3210
3265
|
}
|
|
3266
|
+
export declare class DescribeParentInstanceResponseBodyItems extends $tea.Model {
|
|
3267
|
+
auditStatus?: number;
|
|
3268
|
+
authStatus?: number;
|
|
3269
|
+
clusterStatus?: string;
|
|
3270
|
+
connectNode?: string;
|
|
3271
|
+
dbNum?: string;
|
|
3272
|
+
engineType?: string;
|
|
3273
|
+
instanceDescription?: string;
|
|
3274
|
+
instanceId?: string;
|
|
3275
|
+
instanceSize?: number;
|
|
3276
|
+
localName?: string;
|
|
3277
|
+
parentId?: string;
|
|
3278
|
+
resourceType?: string;
|
|
3279
|
+
supportConnectNodes?: string;
|
|
3280
|
+
tenantId?: string;
|
|
3281
|
+
tenantName?: string;
|
|
3282
|
+
unConnectDbCount?: string;
|
|
3283
|
+
unSupportOneClickAuthReason?: string;
|
|
3284
|
+
static names(): {
|
|
3285
|
+
[key: string]: string;
|
|
3286
|
+
};
|
|
3287
|
+
static types(): {
|
|
3288
|
+
[key: string]: any;
|
|
3289
|
+
};
|
|
3290
|
+
constructor(map?: {
|
|
3291
|
+
[key: string]: any;
|
|
3292
|
+
});
|
|
3293
|
+
}
|
|
3211
3294
|
export declare class DescribeRiskLevelsResponseBodyRiskLevelList extends $tea.Model {
|
|
3212
3295
|
description?: string;
|
|
3213
3296
|
id?: number;
|
|
@@ -3473,8 +3556,10 @@ export default class Client extends OpenApi {
|
|
|
3473
3556
|
describeCategoryTemplateRuleList(request: DescribeCategoryTemplateRuleListRequest): Promise<DescribeCategoryTemplateRuleListResponse>;
|
|
3474
3557
|
/**
|
|
3475
3558
|
* You can call this operation to query the data in columns of a table that may contain sensitive data. This helps you analyze sensitive data.
|
|
3476
|
-
* #
|
|
3477
|
-
*
|
|
3559
|
+
* ## [](#)Precautions
|
|
3560
|
+
* The DescribeColumns operation is changed to DescribeColumnsV2. We recommend that you call the DescribeColumnsV2 operation when you develop your applications.
|
|
3561
|
+
* ## [](#qps)Limits
|
|
3562
|
+
* Each Alibaba Cloud account can call this operation up to 10 times per second. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
3478
3563
|
*
|
|
3479
3564
|
* @param request DescribeColumnsRequest
|
|
3480
3565
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -3483,8 +3568,10 @@ export default class Client extends OpenApi {
|
|
|
3483
3568
|
describeColumnsWithOptions(request: DescribeColumnsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeColumnsResponse>;
|
|
3484
3569
|
/**
|
|
3485
3570
|
* You can call this operation to query the data in columns of a table that may contain sensitive data. This helps you analyze sensitive data.
|
|
3486
|
-
* #
|
|
3487
|
-
*
|
|
3571
|
+
* ## [](#)Precautions
|
|
3572
|
+
* The DescribeColumns operation is changed to DescribeColumnsV2. We recommend that you call the DescribeColumnsV2 operation when you develop your applications.
|
|
3573
|
+
* ## [](#qps)Limits
|
|
3574
|
+
* Each Alibaba Cloud account can call this operation up to 10 times per second. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
3488
3575
|
*
|
|
3489
3576
|
* @param request DescribeColumnsRequest
|
|
3490
3577
|
* @return DescribeColumnsResponse
|
|
@@ -3627,9 +3714,11 @@ export default class Client extends OpenApi {
|
|
|
3627
3714
|
*/
|
|
3628
3715
|
describeInstances(request: DescribeInstancesRequest): Promise<DescribeInstancesResponse>;
|
|
3629
3716
|
/**
|
|
3630
|
-
* You can call this operation to query the details of an OSS object. This helps you locate sensitive data detected in OSS.
|
|
3631
|
-
* ##
|
|
3632
|
-
*
|
|
3717
|
+
* You can call this operation to query the details of an Object Storage Service (OSS) object. This helps you locate sensitive data detected in OSS.
|
|
3718
|
+
* ## [](#)Precautions
|
|
3719
|
+
* The DescribeOssObjectDetail operation is chagned to DescribeOssObjectDetailV2. We recommend that you call the DescribeOssObjectDetailV2 operation when you develop your applications.
|
|
3720
|
+
* ## [](#qps)Limits
|
|
3721
|
+
* Each Alibaba Cloud account can call this operation up to 10 times per second. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
3633
3722
|
*
|
|
3634
3723
|
* @param request DescribeOssObjectDetailRequest
|
|
3635
3724
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -3637,9 +3726,11 @@ export default class Client extends OpenApi {
|
|
|
3637
3726
|
*/
|
|
3638
3727
|
describeOssObjectDetailWithOptions(request: DescribeOssObjectDetailRequest, runtime: $Util.RuntimeOptions): Promise<DescribeOssObjectDetailResponse>;
|
|
3639
3728
|
/**
|
|
3640
|
-
* You can call this operation to query the details of an OSS object. This helps you locate sensitive data detected in OSS.
|
|
3641
|
-
* ##
|
|
3642
|
-
*
|
|
3729
|
+
* You can call this operation to query the details of an Object Storage Service (OSS) object. This helps you locate sensitive data detected in OSS.
|
|
3730
|
+
* ## [](#)Precautions
|
|
3731
|
+
* The DescribeOssObjectDetail operation is chagned to DescribeOssObjectDetailV2. We recommend that you call the DescribeOssObjectDetailV2 operation when you develop your applications.
|
|
3732
|
+
* ## [](#qps)Limits
|
|
3733
|
+
* Each Alibaba Cloud account can call this operation up to 10 times per second. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
3643
3734
|
*
|
|
3644
3735
|
* @param request DescribeOssObjectDetailRequest
|
|
3645
3736
|
* @return DescribeOssObjectDetailResponse
|
|
@@ -3668,6 +3759,8 @@ export default class Client extends OpenApi {
|
|
|
3668
3759
|
* @return DescribePackagesResponse
|
|
3669
3760
|
*/
|
|
3670
3761
|
describePackages(request: DescribePackagesRequest): Promise<DescribePackagesResponse>;
|
|
3762
|
+
describeParentInstanceWithOptions(request: DescribeParentInstanceRequest, runtime: $Util.RuntimeOptions): Promise<DescribeParentInstanceResponse>;
|
|
3763
|
+
describeParentInstance(request: DescribeParentInstanceRequest): Promise<DescribeParentInstanceResponse>;
|
|
3671
3764
|
/**
|
|
3672
3765
|
* You can call this operation to query the sensitivity levels that are defined in the current rule template provided by DSC. This helps you learn about the number of times that each sensitivity level is referenced in the rule template and the highest sensitivity level.
|
|
3673
3766
|
* # Limits
|