@alicloud/sddp20190103 1.6.4 → 1.6.5
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 +4 -4
- package/dist/client.js +46 -4
- package/dist/client.js.map +1 -1
- package/dist/models/DescribeColumnsRequest.d.ts +5 -0
- package/dist/models/DescribeColumnsRequest.js +2 -0
- package/dist/models/DescribeColumnsRequest.js.map +1 -1
- package/dist/models/DescribeDataObjectsRequest.d.ts +65 -0
- package/dist/models/DescribeDataObjectsRequest.js +26 -0
- package/dist/models/DescribeDataObjectsRequest.js.map +1 -1
- package/dist/models/DescribeDataObjectsResponseBody.d.ts +95 -0
- package/dist/models/DescribeDataObjectsResponseBody.js +38 -0
- package/dist/models/DescribeDataObjectsResponseBody.js.map +1 -1
- package/dist/models/MaskOssImageRequest.d.ts +0 -4
- package/dist/models/MaskOssImageRequest.js.map +1 -1
- package/dist/models/RestoreOssImageRequest.d.ts +0 -4
- package/dist/models/RestoreOssImageRequest.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +60 -4
- package/src/models/DescribeColumnsRequest.ts +7 -0
- package/src/models/DescribeDataObjectsRequest.ts +91 -0
- package/src/models/DescribeDataObjectsResponseBody.ts +133 -0
- package/src/models/MaskOssImageRequest.ts +0 -4
- package/src/models/RestoreOssImageRequest.ts +0 -4
package/dist/client.d.ts
CHANGED
|
@@ -304,7 +304,7 @@ export default class Client extends OpenApi {
|
|
|
304
304
|
*/
|
|
305
305
|
describeDataLimitDetail(request: $_model.DescribeDataLimitDetailRequest): Promise<$_model.DescribeDataLimitDetailResponse>;
|
|
306
306
|
/**
|
|
307
|
-
* Queries
|
|
307
|
+
* Queries assets that Data Security Center (DSC) is authorized to scan, or the regions that DSC supports.
|
|
308
308
|
*
|
|
309
309
|
* @remarks
|
|
310
310
|
* You can call this operation to query the data assets that are authorized to be scanned. This facilitates resource search and aggregation.
|
|
@@ -317,7 +317,7 @@ export default class Client extends OpenApi {
|
|
|
317
317
|
*/
|
|
318
318
|
describeDataLimitSetWithOptions(request: $_model.DescribeDataLimitSetRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeDataLimitSetResponse>;
|
|
319
319
|
/**
|
|
320
|
-
* Queries
|
|
320
|
+
* Queries assets that Data Security Center (DSC) is authorized to scan, or the regions that DSC supports.
|
|
321
321
|
*
|
|
322
322
|
* @remarks
|
|
323
323
|
* You can call this operation to query the data assets that are authorized to be scanned. This facilitates resource search and aggregation.
|
|
@@ -733,7 +733,7 @@ export default class Client extends OpenApi {
|
|
|
733
733
|
*/
|
|
734
734
|
describeRules(request: $_model.DescribeRulesRequest): Promise<$_model.DescribeRulesResponse>;
|
|
735
735
|
/**
|
|
736
|
-
* Queries tables in data assets
|
|
736
|
+
* Queries tables in data assets such as MaxCompute projects and ApsaraDB RDS instances that Data Security Center (DSC) is authorized to access.
|
|
737
737
|
*
|
|
738
738
|
* @remarks
|
|
739
739
|
* When you call the DescribeTables operation to query tables, you can specify parameters such as Name and RiskLevelId to filter tables.
|
|
@@ -746,7 +746,7 @@ export default class Client extends OpenApi {
|
|
|
746
746
|
*/
|
|
747
747
|
describeTablesWithOptions(request: $_model.DescribeTablesRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeTablesResponse>;
|
|
748
748
|
/**
|
|
749
|
-
* Queries tables in data assets
|
|
749
|
+
* Queries tables in data assets such as MaxCompute projects and ApsaraDB RDS instances that Data Security Center (DSC) is authorized to access.
|
|
750
750
|
*
|
|
751
751
|
* @remarks
|
|
752
752
|
* When you call the DescribeTables operation to query tables, you can specify parameters such as Name and RiskLevelId to filter tables.
|
package/dist/client.js
CHANGED
|
@@ -866,6 +866,9 @@ class Client extends openapi_core_1.default {
|
|
|
866
866
|
if (!$dara.isNull(request.sensLevelName)) {
|
|
867
867
|
query["SensLevelName"] = request.sensLevelName;
|
|
868
868
|
}
|
|
869
|
+
if (!$dara.isNull(request.serviceRegionId)) {
|
|
870
|
+
query["ServiceRegionId"] = request.serviceRegionId;
|
|
871
|
+
}
|
|
869
872
|
if (!$dara.isNull(request.tableId)) {
|
|
870
873
|
query["TableId"] = request.tableId;
|
|
871
874
|
}
|
|
@@ -1134,7 +1137,7 @@ class Client extends openapi_core_1.default {
|
|
|
1134
1137
|
return await this.describeDataLimitDetailWithOptions(request, runtime);
|
|
1135
1138
|
}
|
|
1136
1139
|
/**
|
|
1137
|
-
* Queries
|
|
1140
|
+
* Queries assets that Data Security Center (DSC) is authorized to scan, or the regions that DSC supports.
|
|
1138
1141
|
*
|
|
1139
1142
|
* @remarks
|
|
1140
1143
|
* You can call this operation to query the data assets that are authorized to be scanned. This facilitates resource search and aggregation.
|
|
@@ -1180,7 +1183,7 @@ class Client extends openapi_core_1.default {
|
|
|
1180
1183
|
return $dara.cast(await this.callApi(params, req, runtime), new $_model.DescribeDataLimitSetResponse({}));
|
|
1181
1184
|
}
|
|
1182
1185
|
/**
|
|
1183
|
-
* Queries
|
|
1186
|
+
* Queries assets that Data Security Center (DSC) is authorized to scan, or the regions that DSC supports.
|
|
1184
1187
|
*
|
|
1185
1188
|
* @remarks
|
|
1186
1189
|
* You can call this operation to query the data assets that are authorized to be scanned. This facilitates resource search and aggregation.
|
|
@@ -1553,9 +1556,18 @@ class Client extends openapi_core_1.default {
|
|
|
1553
1556
|
async describeDataObjectsWithOptions(request, runtime) {
|
|
1554
1557
|
request.validate();
|
|
1555
1558
|
let query = {};
|
|
1559
|
+
if (!$dara.isNull(request.APIVersion)) {
|
|
1560
|
+
query["APIVersion"] = request.APIVersion;
|
|
1561
|
+
}
|
|
1562
|
+
if (!$dara.isNull(request.bucket)) {
|
|
1563
|
+
query["Bucket"] = request.bucket;
|
|
1564
|
+
}
|
|
1556
1565
|
if (!$dara.isNull(request.currentPage)) {
|
|
1557
1566
|
query["CurrentPage"] = request.currentPage;
|
|
1558
1567
|
}
|
|
1568
|
+
if (!$dara.isNull(request.dbName)) {
|
|
1569
|
+
query["DbName"] = request.dbName;
|
|
1570
|
+
}
|
|
1559
1571
|
if (!$dara.isNull(request.domainId)) {
|
|
1560
1572
|
query["DomainId"] = request.domainId;
|
|
1561
1573
|
}
|
|
@@ -1574,6 +1586,12 @@ class Client extends openapi_core_1.default {
|
|
|
1574
1586
|
if (!$dara.isNull(request.lang)) {
|
|
1575
1587
|
query["Lang"] = request.lang;
|
|
1576
1588
|
}
|
|
1589
|
+
if (!$dara.isNull(request.logStore)) {
|
|
1590
|
+
query["LogStore"] = request.logStore;
|
|
1591
|
+
}
|
|
1592
|
+
if (!$dara.isNull(request.logStoreFlag)) {
|
|
1593
|
+
query["LogStoreFlag"] = request.logStoreFlag;
|
|
1594
|
+
}
|
|
1577
1595
|
if (!$dara.isNull(request.memberAccount)) {
|
|
1578
1596
|
query["MemberAccount"] = request.memberAccount;
|
|
1579
1597
|
}
|
|
@@ -1589,18 +1607,42 @@ class Client extends openapi_core_1.default {
|
|
|
1589
1607
|
if (!$dara.isNull(request.parentCategoryIds)) {
|
|
1590
1608
|
query["ParentCategoryIds"] = request.parentCategoryIds;
|
|
1591
1609
|
}
|
|
1610
|
+
if (!$dara.isNull(request.path)) {
|
|
1611
|
+
query["Path"] = request.path;
|
|
1612
|
+
}
|
|
1613
|
+
if (!$dara.isNull(request.productId)) {
|
|
1614
|
+
query["ProductId"] = request.productId;
|
|
1615
|
+
}
|
|
1592
1616
|
if (!$dara.isNull(request.productIds)) {
|
|
1593
1617
|
query["ProductIds"] = request.productIds;
|
|
1594
1618
|
}
|
|
1619
|
+
if (!$dara.isNull(request.project)) {
|
|
1620
|
+
query["Project"] = request.project;
|
|
1621
|
+
}
|
|
1595
1622
|
if (!$dara.isNull(request.queryName)) {
|
|
1596
1623
|
query["QueryName"] = request.queryName;
|
|
1597
1624
|
}
|
|
1625
|
+
if (!$dara.isNull(request.regionId)) {
|
|
1626
|
+
query["RegionId"] = request.regionId;
|
|
1627
|
+
}
|
|
1628
|
+
if (!$dara.isNull(request.riskLevelIdList)) {
|
|
1629
|
+
query["RiskLevelIdList"] = request.riskLevelIdList;
|
|
1630
|
+
}
|
|
1598
1631
|
if (!$dara.isNull(request.riskLevels)) {
|
|
1599
1632
|
query["RiskLevels"] = request.riskLevels;
|
|
1600
1633
|
}
|
|
1634
|
+
if (!$dara.isNull(request.ruleIds)) {
|
|
1635
|
+
query["RuleIds"] = request.ruleIds;
|
|
1636
|
+
}
|
|
1601
1637
|
if (!$dara.isNull(request.serviceRegionId)) {
|
|
1602
1638
|
query["ServiceRegionId"] = request.serviceRegionId;
|
|
1603
1639
|
}
|
|
1640
|
+
if (!$dara.isNull(request.tableName)) {
|
|
1641
|
+
query["TableName"] = request.tableName;
|
|
1642
|
+
}
|
|
1643
|
+
if (!$dara.isNull(request.taskId)) {
|
|
1644
|
+
query["TaskId"] = request.taskId;
|
|
1645
|
+
}
|
|
1604
1646
|
if (!$dara.isNull(request.templateId)) {
|
|
1605
1647
|
query["TemplateId"] = request.templateId;
|
|
1606
1648
|
}
|
|
@@ -2544,7 +2586,7 @@ class Client extends openapi_core_1.default {
|
|
|
2544
2586
|
return await this.describeRulesWithOptions(request, runtime);
|
|
2545
2587
|
}
|
|
2546
2588
|
/**
|
|
2547
|
-
* Queries tables in data assets
|
|
2589
|
+
* Queries tables in data assets such as MaxCompute projects and ApsaraDB RDS instances that Data Security Center (DSC) is authorized to access.
|
|
2548
2590
|
*
|
|
2549
2591
|
* @remarks
|
|
2550
2592
|
* When you call the DescribeTables operation to query tables, you can specify parameters such as Name and RiskLevelId to filter tables.
|
|
@@ -2611,7 +2653,7 @@ class Client extends openapi_core_1.default {
|
|
|
2611
2653
|
return $dara.cast(await this.callApi(params, req, runtime), new $_model.DescribeTablesResponse({}));
|
|
2612
2654
|
}
|
|
2613
2655
|
/**
|
|
2614
|
-
* Queries tables in data assets
|
|
2656
|
+
* Queries tables in data assets such as MaxCompute projects and ApsaraDB RDS instances that Data Security Center (DSC) is authorized to access.
|
|
2615
2657
|
*
|
|
2616
2658
|
* @remarks
|
|
2617
2659
|
* When you call the DescribeTables operation to query tables, you can specify parameters such as Name and RiskLevelId to filter tables.
|