@alicloud/sddp20190103 1.0.9 → 1.1.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 +397 -0
- package/dist/client.js +762 -1
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +997 -37
package/src/client.ts
CHANGED
|
@@ -881,6 +881,117 @@ export class DescribeColumnsResponse extends $tea.Model {
|
|
|
881
881
|
}
|
|
882
882
|
}
|
|
883
883
|
|
|
884
|
+
export class DescribeColumnsV2Request extends $tea.Model {
|
|
885
|
+
currentPage?: number;
|
|
886
|
+
instanceId?: number;
|
|
887
|
+
instanceName?: string;
|
|
888
|
+
lang?: string;
|
|
889
|
+
name?: string;
|
|
890
|
+
pageSize?: number;
|
|
891
|
+
productCode?: string;
|
|
892
|
+
riskLevelId?: number;
|
|
893
|
+
ruleId?: number;
|
|
894
|
+
ruleName?: string;
|
|
895
|
+
sensLevelName?: string;
|
|
896
|
+
tableId?: string;
|
|
897
|
+
tableName?: string;
|
|
898
|
+
static names(): { [key: string]: string } {
|
|
899
|
+
return {
|
|
900
|
+
currentPage: 'CurrentPage',
|
|
901
|
+
instanceId: 'InstanceId',
|
|
902
|
+
instanceName: 'InstanceName',
|
|
903
|
+
lang: 'Lang',
|
|
904
|
+
name: 'Name',
|
|
905
|
+
pageSize: 'PageSize',
|
|
906
|
+
productCode: 'ProductCode',
|
|
907
|
+
riskLevelId: 'RiskLevelId',
|
|
908
|
+
ruleId: 'RuleId',
|
|
909
|
+
ruleName: 'RuleName',
|
|
910
|
+
sensLevelName: 'SensLevelName',
|
|
911
|
+
tableId: 'TableId',
|
|
912
|
+
tableName: 'TableName',
|
|
913
|
+
};
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
static types(): { [key: string]: any } {
|
|
917
|
+
return {
|
|
918
|
+
currentPage: 'number',
|
|
919
|
+
instanceId: 'number',
|
|
920
|
+
instanceName: 'string',
|
|
921
|
+
lang: 'string',
|
|
922
|
+
name: 'string',
|
|
923
|
+
pageSize: 'number',
|
|
924
|
+
productCode: 'string',
|
|
925
|
+
riskLevelId: 'number',
|
|
926
|
+
ruleId: 'number',
|
|
927
|
+
ruleName: 'string',
|
|
928
|
+
sensLevelName: 'string',
|
|
929
|
+
tableId: 'string',
|
|
930
|
+
tableName: 'string',
|
|
931
|
+
};
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
constructor(map?: { [key: string]: any }) {
|
|
935
|
+
super(map);
|
|
936
|
+
}
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
export class DescribeColumnsV2ResponseBody extends $tea.Model {
|
|
940
|
+
currentPage?: number;
|
|
941
|
+
items?: DescribeColumnsV2ResponseBodyItems[];
|
|
942
|
+
pageSize?: number;
|
|
943
|
+
requestId?: string;
|
|
944
|
+
totalCount?: number;
|
|
945
|
+
static names(): { [key: string]: string } {
|
|
946
|
+
return {
|
|
947
|
+
currentPage: 'CurrentPage',
|
|
948
|
+
items: 'Items',
|
|
949
|
+
pageSize: 'PageSize',
|
|
950
|
+
requestId: 'RequestId',
|
|
951
|
+
totalCount: 'TotalCount',
|
|
952
|
+
};
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
static types(): { [key: string]: any } {
|
|
956
|
+
return {
|
|
957
|
+
currentPage: 'number',
|
|
958
|
+
items: { 'type': 'array', 'itemType': DescribeColumnsV2ResponseBodyItems },
|
|
959
|
+
pageSize: 'number',
|
|
960
|
+
requestId: 'string',
|
|
961
|
+
totalCount: 'number',
|
|
962
|
+
};
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
constructor(map?: { [key: string]: any }) {
|
|
966
|
+
super(map);
|
|
967
|
+
}
|
|
968
|
+
}
|
|
969
|
+
|
|
970
|
+
export class DescribeColumnsV2Response extends $tea.Model {
|
|
971
|
+
headers: { [key: string]: string };
|
|
972
|
+
statusCode: number;
|
|
973
|
+
body: DescribeColumnsV2ResponseBody;
|
|
974
|
+
static names(): { [key: string]: string } {
|
|
975
|
+
return {
|
|
976
|
+
headers: 'headers',
|
|
977
|
+
statusCode: 'statusCode',
|
|
978
|
+
body: 'body',
|
|
979
|
+
};
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
static types(): { [key: string]: any } {
|
|
983
|
+
return {
|
|
984
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
985
|
+
statusCode: 'number',
|
|
986
|
+
body: DescribeColumnsV2ResponseBody,
|
|
987
|
+
};
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
constructor(map?: { [key: string]: any }) {
|
|
991
|
+
super(map);
|
|
992
|
+
}
|
|
993
|
+
}
|
|
994
|
+
|
|
884
995
|
export class DescribeConfigsRequest extends $tea.Model {
|
|
885
996
|
lang?: string;
|
|
886
997
|
static names(): { [key: string]: string } {
|
|
@@ -1583,10 +1694,103 @@ export class DescribeDataObjectColumnDetailResponse extends $tea.Model {
|
|
|
1583
1694
|
}
|
|
1584
1695
|
}
|
|
1585
1696
|
|
|
1697
|
+
export class DescribeDataObjectColumnDetailV2Request extends $tea.Model {
|
|
1698
|
+
currentPage?: number;
|
|
1699
|
+
id?: string;
|
|
1700
|
+
lang?: string;
|
|
1701
|
+
pageSize?: number;
|
|
1702
|
+
productId?: number;
|
|
1703
|
+
templateId?: number;
|
|
1704
|
+
static names(): { [key: string]: string } {
|
|
1705
|
+
return {
|
|
1706
|
+
currentPage: 'CurrentPage',
|
|
1707
|
+
id: 'Id',
|
|
1708
|
+
lang: 'Lang',
|
|
1709
|
+
pageSize: 'PageSize',
|
|
1710
|
+
productId: 'ProductId',
|
|
1711
|
+
templateId: 'TemplateId',
|
|
1712
|
+
};
|
|
1713
|
+
}
|
|
1714
|
+
|
|
1715
|
+
static types(): { [key: string]: any } {
|
|
1716
|
+
return {
|
|
1717
|
+
currentPage: 'number',
|
|
1718
|
+
id: 'string',
|
|
1719
|
+
lang: 'string',
|
|
1720
|
+
pageSize: 'number',
|
|
1721
|
+
productId: 'number',
|
|
1722
|
+
templateId: 'number',
|
|
1723
|
+
};
|
|
1724
|
+
}
|
|
1725
|
+
|
|
1726
|
+
constructor(map?: { [key: string]: any }) {
|
|
1727
|
+
super(map);
|
|
1728
|
+
}
|
|
1729
|
+
}
|
|
1730
|
+
|
|
1731
|
+
export class DescribeDataObjectColumnDetailV2ResponseBody extends $tea.Model {
|
|
1732
|
+
currentPage?: number;
|
|
1733
|
+
items?: DescribeDataObjectColumnDetailV2ResponseBodyItems[];
|
|
1734
|
+
pageSize?: number;
|
|
1735
|
+
requestId?: string;
|
|
1736
|
+
totalCount?: number;
|
|
1737
|
+
static names(): { [key: string]: string } {
|
|
1738
|
+
return {
|
|
1739
|
+
currentPage: 'CurrentPage',
|
|
1740
|
+
items: 'Items',
|
|
1741
|
+
pageSize: 'PageSize',
|
|
1742
|
+
requestId: 'RequestId',
|
|
1743
|
+
totalCount: 'TotalCount',
|
|
1744
|
+
};
|
|
1745
|
+
}
|
|
1746
|
+
|
|
1747
|
+
static types(): { [key: string]: any } {
|
|
1748
|
+
return {
|
|
1749
|
+
currentPage: 'number',
|
|
1750
|
+
items: { 'type': 'array', 'itemType': DescribeDataObjectColumnDetailV2ResponseBodyItems },
|
|
1751
|
+
pageSize: 'number',
|
|
1752
|
+
requestId: 'string',
|
|
1753
|
+
totalCount: 'number',
|
|
1754
|
+
};
|
|
1755
|
+
}
|
|
1756
|
+
|
|
1757
|
+
constructor(map?: { [key: string]: any }) {
|
|
1758
|
+
super(map);
|
|
1759
|
+
}
|
|
1760
|
+
}
|
|
1761
|
+
|
|
1762
|
+
export class DescribeDataObjectColumnDetailV2Response extends $tea.Model {
|
|
1763
|
+
headers: { [key: string]: string };
|
|
1764
|
+
statusCode: number;
|
|
1765
|
+
body: DescribeDataObjectColumnDetailV2ResponseBody;
|
|
1766
|
+
static names(): { [key: string]: string } {
|
|
1767
|
+
return {
|
|
1768
|
+
headers: 'headers',
|
|
1769
|
+
statusCode: 'statusCode',
|
|
1770
|
+
body: 'body',
|
|
1771
|
+
};
|
|
1772
|
+
}
|
|
1773
|
+
|
|
1774
|
+
static types(): { [key: string]: any } {
|
|
1775
|
+
return {
|
|
1776
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1777
|
+
statusCode: 'number',
|
|
1778
|
+
body: DescribeDataObjectColumnDetailV2ResponseBody,
|
|
1779
|
+
};
|
|
1780
|
+
}
|
|
1781
|
+
|
|
1782
|
+
constructor(map?: { [key: string]: any }) {
|
|
1783
|
+
super(map);
|
|
1784
|
+
}
|
|
1785
|
+
}
|
|
1786
|
+
|
|
1586
1787
|
export class DescribeDataObjectsRequest extends $tea.Model {
|
|
1587
1788
|
currentPage?: number;
|
|
1588
1789
|
domainId?: number;
|
|
1790
|
+
fileType?: number;
|
|
1791
|
+
instanceId?: string;
|
|
1589
1792
|
lang?: string;
|
|
1793
|
+
modelIds?: string;
|
|
1590
1794
|
modelTagIds?: string;
|
|
1591
1795
|
pageSize?: number;
|
|
1592
1796
|
parentCategoryIds?: string;
|
|
@@ -1599,7 +1803,10 @@ export class DescribeDataObjectsRequest extends $tea.Model {
|
|
|
1599
1803
|
return {
|
|
1600
1804
|
currentPage: 'CurrentPage',
|
|
1601
1805
|
domainId: 'DomainId',
|
|
1806
|
+
fileType: 'FileType',
|
|
1807
|
+
instanceId: 'InstanceId',
|
|
1602
1808
|
lang: 'Lang',
|
|
1809
|
+
modelIds: 'ModelIds',
|
|
1603
1810
|
modelTagIds: 'ModelTagIds',
|
|
1604
1811
|
pageSize: 'PageSize',
|
|
1605
1812
|
parentCategoryIds: 'ParentCategoryIds',
|
|
@@ -1615,7 +1822,10 @@ export class DescribeDataObjectsRequest extends $tea.Model {
|
|
|
1615
1822
|
return {
|
|
1616
1823
|
currentPage: 'number',
|
|
1617
1824
|
domainId: 'number',
|
|
1825
|
+
fileType: 'number',
|
|
1826
|
+
instanceId: 'string',
|
|
1618
1827
|
lang: 'string',
|
|
1828
|
+
modelIds: 'string',
|
|
1619
1829
|
modelTagIds: 'string',
|
|
1620
1830
|
pageSize: 'number',
|
|
1621
1831
|
parentCategoryIds: 'string',
|
|
@@ -1688,6 +1898,72 @@ export class DescribeDataObjectsResponse extends $tea.Model {
|
|
|
1688
1898
|
}
|
|
1689
1899
|
}
|
|
1690
1900
|
|
|
1901
|
+
export class DescribeDocTypesRequest extends $tea.Model {
|
|
1902
|
+
lang?: string;
|
|
1903
|
+
static names(): { [key: string]: string } {
|
|
1904
|
+
return {
|
|
1905
|
+
lang: 'Lang',
|
|
1906
|
+
};
|
|
1907
|
+
}
|
|
1908
|
+
|
|
1909
|
+
static types(): { [key: string]: any } {
|
|
1910
|
+
return {
|
|
1911
|
+
lang: 'string',
|
|
1912
|
+
};
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1915
|
+
constructor(map?: { [key: string]: any }) {
|
|
1916
|
+
super(map);
|
|
1917
|
+
}
|
|
1918
|
+
}
|
|
1919
|
+
|
|
1920
|
+
export class DescribeDocTypesResponseBody extends $tea.Model {
|
|
1921
|
+
docTypeList?: DescribeDocTypesResponseBodyDocTypeList[];
|
|
1922
|
+
requestId?: string;
|
|
1923
|
+
static names(): { [key: string]: string } {
|
|
1924
|
+
return {
|
|
1925
|
+
docTypeList: 'DocTypeList',
|
|
1926
|
+
requestId: 'RequestId',
|
|
1927
|
+
};
|
|
1928
|
+
}
|
|
1929
|
+
|
|
1930
|
+
static types(): { [key: string]: any } {
|
|
1931
|
+
return {
|
|
1932
|
+
docTypeList: { 'type': 'array', 'itemType': DescribeDocTypesResponseBodyDocTypeList },
|
|
1933
|
+
requestId: 'string',
|
|
1934
|
+
};
|
|
1935
|
+
}
|
|
1936
|
+
|
|
1937
|
+
constructor(map?: { [key: string]: any }) {
|
|
1938
|
+
super(map);
|
|
1939
|
+
}
|
|
1940
|
+
}
|
|
1941
|
+
|
|
1942
|
+
export class DescribeDocTypesResponse extends $tea.Model {
|
|
1943
|
+
headers: { [key: string]: string };
|
|
1944
|
+
statusCode: number;
|
|
1945
|
+
body: DescribeDocTypesResponseBody;
|
|
1946
|
+
static names(): { [key: string]: string } {
|
|
1947
|
+
return {
|
|
1948
|
+
headers: 'headers',
|
|
1949
|
+
statusCode: 'statusCode',
|
|
1950
|
+
body: 'body',
|
|
1951
|
+
};
|
|
1952
|
+
}
|
|
1953
|
+
|
|
1954
|
+
static types(): { [key: string]: any } {
|
|
1955
|
+
return {
|
|
1956
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1957
|
+
statusCode: 'number',
|
|
1958
|
+
body: DescribeDocTypesResponseBody,
|
|
1959
|
+
};
|
|
1960
|
+
}
|
|
1961
|
+
|
|
1962
|
+
constructor(map?: { [key: string]: any }) {
|
|
1963
|
+
super(map);
|
|
1964
|
+
}
|
|
1965
|
+
}
|
|
1966
|
+
|
|
1691
1967
|
export class DescribeEventDetailRequest extends $tea.Model {
|
|
1692
1968
|
id?: number;
|
|
1693
1969
|
lang?: string;
|
|
@@ -2228,6 +2504,75 @@ export class DescribeOssObjectDetailResponse extends $tea.Model {
|
|
|
2228
2504
|
}
|
|
2229
2505
|
}
|
|
2230
2506
|
|
|
2507
|
+
export class DescribeOssObjectDetailV2Request extends $tea.Model {
|
|
2508
|
+
id?: string;
|
|
2509
|
+
lang?: string;
|
|
2510
|
+
static names(): { [key: string]: string } {
|
|
2511
|
+
return {
|
|
2512
|
+
id: 'Id',
|
|
2513
|
+
lang: 'Lang',
|
|
2514
|
+
};
|
|
2515
|
+
}
|
|
2516
|
+
|
|
2517
|
+
static types(): { [key: string]: any } {
|
|
2518
|
+
return {
|
|
2519
|
+
id: 'string',
|
|
2520
|
+
lang: 'string',
|
|
2521
|
+
};
|
|
2522
|
+
}
|
|
2523
|
+
|
|
2524
|
+
constructor(map?: { [key: string]: any }) {
|
|
2525
|
+
super(map);
|
|
2526
|
+
}
|
|
2527
|
+
}
|
|
2528
|
+
|
|
2529
|
+
export class DescribeOssObjectDetailV2ResponseBody extends $tea.Model {
|
|
2530
|
+
ossObjectDetail?: DescribeOssObjectDetailV2ResponseBodyOssObjectDetail;
|
|
2531
|
+
requestId?: string;
|
|
2532
|
+
static names(): { [key: string]: string } {
|
|
2533
|
+
return {
|
|
2534
|
+
ossObjectDetail: 'OssObjectDetail',
|
|
2535
|
+
requestId: 'RequestId',
|
|
2536
|
+
};
|
|
2537
|
+
}
|
|
2538
|
+
|
|
2539
|
+
static types(): { [key: string]: any } {
|
|
2540
|
+
return {
|
|
2541
|
+
ossObjectDetail: DescribeOssObjectDetailV2ResponseBodyOssObjectDetail,
|
|
2542
|
+
requestId: 'string',
|
|
2543
|
+
};
|
|
2544
|
+
}
|
|
2545
|
+
|
|
2546
|
+
constructor(map?: { [key: string]: any }) {
|
|
2547
|
+
super(map);
|
|
2548
|
+
}
|
|
2549
|
+
}
|
|
2550
|
+
|
|
2551
|
+
export class DescribeOssObjectDetailV2Response extends $tea.Model {
|
|
2552
|
+
headers: { [key: string]: string };
|
|
2553
|
+
statusCode: number;
|
|
2554
|
+
body: DescribeOssObjectDetailV2ResponseBody;
|
|
2555
|
+
static names(): { [key: string]: string } {
|
|
2556
|
+
return {
|
|
2557
|
+
headers: 'headers',
|
|
2558
|
+
statusCode: 'statusCode',
|
|
2559
|
+
body: 'body',
|
|
2560
|
+
};
|
|
2561
|
+
}
|
|
2562
|
+
|
|
2563
|
+
static types(): { [key: string]: any } {
|
|
2564
|
+
return {
|
|
2565
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2566
|
+
statusCode: 'number',
|
|
2567
|
+
body: DescribeOssObjectDetailV2ResponseBody,
|
|
2568
|
+
};
|
|
2569
|
+
}
|
|
2570
|
+
|
|
2571
|
+
constructor(map?: { [key: string]: any }) {
|
|
2572
|
+
super(map);
|
|
2573
|
+
}
|
|
2574
|
+
}
|
|
2575
|
+
|
|
2231
2576
|
export class DescribeOssObjectsRequest extends $tea.Model {
|
|
2232
2577
|
currentPage?: number;
|
|
2233
2578
|
instanceId?: string;
|
|
@@ -2514,6 +2859,7 @@ export class DescribeRulesRequest extends $tea.Model {
|
|
|
2514
2859
|
riskLevelId?: number;
|
|
2515
2860
|
ruleType?: number;
|
|
2516
2861
|
status?: number;
|
|
2862
|
+
supportForm?: number;
|
|
2517
2863
|
warnLevel?: number;
|
|
2518
2864
|
static names(): { [key: string]: string } {
|
|
2519
2865
|
return {
|
|
@@ -2532,6 +2878,7 @@ export class DescribeRulesRequest extends $tea.Model {
|
|
|
2532
2878
|
riskLevelId: 'RiskLevelId',
|
|
2533
2879
|
ruleType: 'RuleType',
|
|
2534
2880
|
status: 'Status',
|
|
2881
|
+
supportForm: 'SupportForm',
|
|
2535
2882
|
warnLevel: 'WarnLevel',
|
|
2536
2883
|
};
|
|
2537
2884
|
}
|
|
@@ -2553,6 +2900,7 @@ export class DescribeRulesRequest extends $tea.Model {
|
|
|
2553
2900
|
riskLevelId: 'number',
|
|
2554
2901
|
ruleType: 'number',
|
|
2555
2902
|
status: 'number',
|
|
2903
|
+
supportForm: 'number',
|
|
2556
2904
|
warnLevel: 'number',
|
|
2557
2905
|
};
|
|
2558
2906
|
}
|
|
@@ -2726,6 +3074,75 @@ export class DescribeTablesResponse extends $tea.Model {
|
|
|
2726
3074
|
}
|
|
2727
3075
|
}
|
|
2728
3076
|
|
|
3077
|
+
export class DescribeTemplateAllRulesRequest extends $tea.Model {
|
|
3078
|
+
lang?: string;
|
|
3079
|
+
templateId?: number;
|
|
3080
|
+
static names(): { [key: string]: string } {
|
|
3081
|
+
return {
|
|
3082
|
+
lang: 'Lang',
|
|
3083
|
+
templateId: 'TemplateId',
|
|
3084
|
+
};
|
|
3085
|
+
}
|
|
3086
|
+
|
|
3087
|
+
static types(): { [key: string]: any } {
|
|
3088
|
+
return {
|
|
3089
|
+
lang: 'string',
|
|
3090
|
+
templateId: 'number',
|
|
3091
|
+
};
|
|
3092
|
+
}
|
|
3093
|
+
|
|
3094
|
+
constructor(map?: { [key: string]: any }) {
|
|
3095
|
+
super(map);
|
|
3096
|
+
}
|
|
3097
|
+
}
|
|
3098
|
+
|
|
3099
|
+
export class DescribeTemplateAllRulesResponseBody extends $tea.Model {
|
|
3100
|
+
requestId?: string;
|
|
3101
|
+
ruleList?: DescribeTemplateAllRulesResponseBodyRuleList[];
|
|
3102
|
+
static names(): { [key: string]: string } {
|
|
3103
|
+
return {
|
|
3104
|
+
requestId: 'RequestId',
|
|
3105
|
+
ruleList: 'RuleList',
|
|
3106
|
+
};
|
|
3107
|
+
}
|
|
3108
|
+
|
|
3109
|
+
static types(): { [key: string]: any } {
|
|
3110
|
+
return {
|
|
3111
|
+
requestId: 'string',
|
|
3112
|
+
ruleList: { 'type': 'array', 'itemType': DescribeTemplateAllRulesResponseBodyRuleList },
|
|
3113
|
+
};
|
|
3114
|
+
}
|
|
3115
|
+
|
|
3116
|
+
constructor(map?: { [key: string]: any }) {
|
|
3117
|
+
super(map);
|
|
3118
|
+
}
|
|
3119
|
+
}
|
|
3120
|
+
|
|
3121
|
+
export class DescribeTemplateAllRulesResponse extends $tea.Model {
|
|
3122
|
+
headers: { [key: string]: string };
|
|
3123
|
+
statusCode: number;
|
|
3124
|
+
body: DescribeTemplateAllRulesResponseBody;
|
|
3125
|
+
static names(): { [key: string]: string } {
|
|
3126
|
+
return {
|
|
3127
|
+
headers: 'headers',
|
|
3128
|
+
statusCode: 'statusCode',
|
|
3129
|
+
body: 'body',
|
|
3130
|
+
};
|
|
3131
|
+
}
|
|
3132
|
+
|
|
3133
|
+
static types(): { [key: string]: any } {
|
|
3134
|
+
return {
|
|
3135
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3136
|
+
statusCode: 'number',
|
|
3137
|
+
body: DescribeTemplateAllRulesResponseBody,
|
|
3138
|
+
};
|
|
3139
|
+
}
|
|
3140
|
+
|
|
3141
|
+
constructor(map?: { [key: string]: any }) {
|
|
3142
|
+
super(map);
|
|
3143
|
+
}
|
|
3144
|
+
}
|
|
3145
|
+
|
|
2729
3146
|
export class DescribeUserStatusRequest extends $tea.Model {
|
|
2730
3147
|
lang?: string;
|
|
2731
3148
|
static names(): { [key: string]: string } {
|
|
@@ -3666,35 +4083,133 @@ export class DescribeCategoryTemplateListResponseBodyItems extends $tea.Model {
|
|
|
3666
4083
|
}
|
|
3667
4084
|
}
|
|
3668
4085
|
|
|
3669
|
-
export class DescribeCategoryTemplateRuleListResponseBodyItems extends $tea.Model {
|
|
3670
|
-
description?: string;
|
|
3671
|
-
id?: number;
|
|
3672
|
-
identificationRuleIds?: string;
|
|
3673
|
-
identificationScope?: string;
|
|
4086
|
+
export class DescribeCategoryTemplateRuleListResponseBodyItems extends $tea.Model {
|
|
4087
|
+
description?: string;
|
|
4088
|
+
id?: number;
|
|
4089
|
+
identificationRuleIds?: string;
|
|
4090
|
+
identificationScope?: string;
|
|
4091
|
+
name?: string;
|
|
4092
|
+
riskLevelId?: number;
|
|
4093
|
+
status?: number;
|
|
4094
|
+
static names(): { [key: string]: string } {
|
|
4095
|
+
return {
|
|
4096
|
+
description: 'Description',
|
|
4097
|
+
id: 'Id',
|
|
4098
|
+
identificationRuleIds: 'IdentificationRuleIds',
|
|
4099
|
+
identificationScope: 'IdentificationScope',
|
|
4100
|
+
name: 'Name',
|
|
4101
|
+
riskLevelId: 'RiskLevelId',
|
|
4102
|
+
status: 'Status',
|
|
4103
|
+
};
|
|
4104
|
+
}
|
|
4105
|
+
|
|
4106
|
+
static types(): { [key: string]: any } {
|
|
4107
|
+
return {
|
|
4108
|
+
description: 'string',
|
|
4109
|
+
id: 'number',
|
|
4110
|
+
identificationRuleIds: 'string',
|
|
4111
|
+
identificationScope: 'string',
|
|
4112
|
+
name: 'string',
|
|
4113
|
+
riskLevelId: 'number',
|
|
4114
|
+
status: 'number',
|
|
4115
|
+
};
|
|
4116
|
+
}
|
|
4117
|
+
|
|
4118
|
+
constructor(map?: { [key: string]: any }) {
|
|
4119
|
+
super(map);
|
|
4120
|
+
}
|
|
4121
|
+
}
|
|
4122
|
+
|
|
4123
|
+
export class DescribeColumnsResponseBodyItemsModelTags extends $tea.Model {
|
|
4124
|
+
id?: number;
|
|
4125
|
+
name?: string;
|
|
4126
|
+
static names(): { [key: string]: string } {
|
|
4127
|
+
return {
|
|
4128
|
+
id: 'Id',
|
|
4129
|
+
name: 'Name',
|
|
4130
|
+
};
|
|
4131
|
+
}
|
|
4132
|
+
|
|
4133
|
+
static types(): { [key: string]: any } {
|
|
4134
|
+
return {
|
|
4135
|
+
id: 'number',
|
|
4136
|
+
name: 'string',
|
|
4137
|
+
};
|
|
4138
|
+
}
|
|
4139
|
+
|
|
4140
|
+
constructor(map?: { [key: string]: any }) {
|
|
4141
|
+
super(map);
|
|
4142
|
+
}
|
|
4143
|
+
}
|
|
4144
|
+
|
|
4145
|
+
export class DescribeColumnsResponseBodyItems extends $tea.Model {
|
|
4146
|
+
creationTime?: number;
|
|
4147
|
+
dataType?: string;
|
|
4148
|
+
id?: string;
|
|
4149
|
+
instanceId?: number;
|
|
4150
|
+
instanceName?: string;
|
|
4151
|
+
modelTags?: DescribeColumnsResponseBodyItemsModelTags[];
|
|
3674
4152
|
name?: string;
|
|
4153
|
+
odpsRiskLevelName?: string;
|
|
4154
|
+
odpsRiskLevelValue?: number;
|
|
4155
|
+
productCode?: string;
|
|
4156
|
+
revisionId?: number;
|
|
4157
|
+
revisionStatus?: number;
|
|
3675
4158
|
riskLevelId?: number;
|
|
3676
|
-
|
|
4159
|
+
riskLevelName?: string;
|
|
4160
|
+
ruleId?: number;
|
|
4161
|
+
ruleName?: string;
|
|
4162
|
+
sensLevelName?: string;
|
|
4163
|
+
sensitive?: boolean;
|
|
4164
|
+
tableId?: number;
|
|
4165
|
+
tableName?: string;
|
|
3677
4166
|
static names(): { [key: string]: string } {
|
|
3678
4167
|
return {
|
|
3679
|
-
|
|
4168
|
+
creationTime: 'CreationTime',
|
|
4169
|
+
dataType: 'DataType',
|
|
3680
4170
|
id: 'Id',
|
|
3681
|
-
|
|
3682
|
-
|
|
4171
|
+
instanceId: 'InstanceId',
|
|
4172
|
+
instanceName: 'InstanceName',
|
|
4173
|
+
modelTags: 'ModelTags',
|
|
3683
4174
|
name: 'Name',
|
|
4175
|
+
odpsRiskLevelName: 'OdpsRiskLevelName',
|
|
4176
|
+
odpsRiskLevelValue: 'OdpsRiskLevelValue',
|
|
4177
|
+
productCode: 'ProductCode',
|
|
4178
|
+
revisionId: 'RevisionId',
|
|
4179
|
+
revisionStatus: 'RevisionStatus',
|
|
3684
4180
|
riskLevelId: 'RiskLevelId',
|
|
3685
|
-
|
|
4181
|
+
riskLevelName: 'RiskLevelName',
|
|
4182
|
+
ruleId: 'RuleId',
|
|
4183
|
+
ruleName: 'RuleName',
|
|
4184
|
+
sensLevelName: 'SensLevelName',
|
|
4185
|
+
sensitive: 'Sensitive',
|
|
4186
|
+
tableId: 'TableId',
|
|
4187
|
+
tableName: 'TableName',
|
|
3686
4188
|
};
|
|
3687
4189
|
}
|
|
3688
4190
|
|
|
3689
4191
|
static types(): { [key: string]: any } {
|
|
3690
4192
|
return {
|
|
3691
|
-
|
|
3692
|
-
|
|
3693
|
-
|
|
3694
|
-
|
|
4193
|
+
creationTime: 'number',
|
|
4194
|
+
dataType: 'string',
|
|
4195
|
+
id: 'string',
|
|
4196
|
+
instanceId: 'number',
|
|
4197
|
+
instanceName: 'string',
|
|
4198
|
+
modelTags: { 'type': 'array', 'itemType': DescribeColumnsResponseBodyItemsModelTags },
|
|
3695
4199
|
name: 'string',
|
|
4200
|
+
odpsRiskLevelName: 'string',
|
|
4201
|
+
odpsRiskLevelValue: 'number',
|
|
4202
|
+
productCode: 'string',
|
|
4203
|
+
revisionId: 'number',
|
|
4204
|
+
revisionStatus: 'number',
|
|
3696
4205
|
riskLevelId: 'number',
|
|
3697
|
-
|
|
4206
|
+
riskLevelName: 'string',
|
|
4207
|
+
ruleId: 'number',
|
|
4208
|
+
ruleName: 'string',
|
|
4209
|
+
sensLevelName: 'string',
|
|
4210
|
+
sensitive: 'boolean',
|
|
4211
|
+
tableId: 'number',
|
|
4212
|
+
tableName: 'string',
|
|
3698
4213
|
};
|
|
3699
4214
|
}
|
|
3700
4215
|
|
|
@@ -3703,7 +4218,7 @@ export class DescribeCategoryTemplateRuleListResponseBodyItems extends $tea.Mode
|
|
|
3703
4218
|
}
|
|
3704
4219
|
}
|
|
3705
4220
|
|
|
3706
|
-
export class
|
|
4221
|
+
export class DescribeColumnsV2ResponseBodyItemsModelTags extends $tea.Model {
|
|
3707
4222
|
id?: number;
|
|
3708
4223
|
name?: string;
|
|
3709
4224
|
static names(): { [key: string]: string } {
|
|
@@ -3725,13 +4240,13 @@ export class DescribeColumnsResponseBodyItemsModelTags extends $tea.Model {
|
|
|
3725
4240
|
}
|
|
3726
4241
|
}
|
|
3727
4242
|
|
|
3728
|
-
export class
|
|
4243
|
+
export class DescribeColumnsV2ResponseBodyItems extends $tea.Model {
|
|
3729
4244
|
creationTime?: number;
|
|
3730
4245
|
dataType?: string;
|
|
3731
4246
|
id?: string;
|
|
3732
4247
|
instanceId?: number;
|
|
3733
4248
|
instanceName?: string;
|
|
3734
|
-
modelTags?:
|
|
4249
|
+
modelTags?: DescribeColumnsV2ResponseBodyItemsModelTags[];
|
|
3735
4250
|
name?: string;
|
|
3736
4251
|
odpsRiskLevelName?: string;
|
|
3737
4252
|
odpsRiskLevelValue?: number;
|
|
@@ -3778,7 +4293,7 @@ export class DescribeColumnsResponseBodyItems extends $tea.Model {
|
|
|
3778
4293
|
id: 'string',
|
|
3779
4294
|
instanceId: 'number',
|
|
3780
4295
|
instanceName: 'string',
|
|
3781
|
-
modelTags: { 'type': 'array', 'itemType':
|
|
4296
|
+
modelTags: { 'type': 'array', 'itemType': DescribeColumnsV2ResponseBodyItemsModelTags },
|
|
3782
4297
|
name: 'string',
|
|
3783
4298
|
odpsRiskLevelName: 'string',
|
|
3784
4299
|
odpsRiskLevelValue: 'number',
|
|
@@ -4422,6 +4937,77 @@ export class DescribeDataObjectColumnDetailResponseBodyItems extends $tea.Model
|
|
|
4422
4937
|
}
|
|
4423
4938
|
}
|
|
4424
4939
|
|
|
4940
|
+
export class DescribeDataObjectColumnDetailV2ResponseBodyItemsModelTags extends $tea.Model {
|
|
4941
|
+
id?: number;
|
|
4942
|
+
name?: string;
|
|
4943
|
+
static names(): { [key: string]: string } {
|
|
4944
|
+
return {
|
|
4945
|
+
id: 'Id',
|
|
4946
|
+
name: 'Name',
|
|
4947
|
+
};
|
|
4948
|
+
}
|
|
4949
|
+
|
|
4950
|
+
static types(): { [key: string]: any } {
|
|
4951
|
+
return {
|
|
4952
|
+
id: 'number',
|
|
4953
|
+
name: 'string',
|
|
4954
|
+
};
|
|
4955
|
+
}
|
|
4956
|
+
|
|
4957
|
+
constructor(map?: { [key: string]: any }) {
|
|
4958
|
+
super(map);
|
|
4959
|
+
}
|
|
4960
|
+
}
|
|
4961
|
+
|
|
4962
|
+
export class DescribeDataObjectColumnDetailV2ResponseBodyItems extends $tea.Model {
|
|
4963
|
+
categories?: string[];
|
|
4964
|
+
columnComment?: string;
|
|
4965
|
+
columnName?: string;
|
|
4966
|
+
dataType?: string;
|
|
4967
|
+
id?: string;
|
|
4968
|
+
modelTags?: DescribeDataObjectColumnDetailV2ResponseBodyItemsModelTags[];
|
|
4969
|
+
primaryKey?: boolean;
|
|
4970
|
+
riskLevelId?: number;
|
|
4971
|
+
riskLevelName?: string;
|
|
4972
|
+
ruleId?: number;
|
|
4973
|
+
ruleName?: string;
|
|
4974
|
+
static names(): { [key: string]: string } {
|
|
4975
|
+
return {
|
|
4976
|
+
categories: 'Categories',
|
|
4977
|
+
columnComment: 'ColumnComment',
|
|
4978
|
+
columnName: 'ColumnName',
|
|
4979
|
+
dataType: 'DataType',
|
|
4980
|
+
id: 'Id',
|
|
4981
|
+
modelTags: 'ModelTags',
|
|
4982
|
+
primaryKey: 'PrimaryKey',
|
|
4983
|
+
riskLevelId: 'RiskLevelId',
|
|
4984
|
+
riskLevelName: 'RiskLevelName',
|
|
4985
|
+
ruleId: 'RuleId',
|
|
4986
|
+
ruleName: 'RuleName',
|
|
4987
|
+
};
|
|
4988
|
+
}
|
|
4989
|
+
|
|
4990
|
+
static types(): { [key: string]: any } {
|
|
4991
|
+
return {
|
|
4992
|
+
categories: { 'type': 'array', 'itemType': 'string' },
|
|
4993
|
+
columnComment: 'string',
|
|
4994
|
+
columnName: 'string',
|
|
4995
|
+
dataType: 'string',
|
|
4996
|
+
id: 'string',
|
|
4997
|
+
modelTags: { 'type': 'array', 'itemType': DescribeDataObjectColumnDetailV2ResponseBodyItemsModelTags },
|
|
4998
|
+
primaryKey: 'boolean',
|
|
4999
|
+
riskLevelId: 'number',
|
|
5000
|
+
riskLevelName: 'string',
|
|
5001
|
+
ruleId: 'number',
|
|
5002
|
+
ruleName: 'string',
|
|
5003
|
+
};
|
|
5004
|
+
}
|
|
5005
|
+
|
|
5006
|
+
constructor(map?: { [key: string]: any }) {
|
|
5007
|
+
super(map);
|
|
5008
|
+
}
|
|
5009
|
+
}
|
|
5010
|
+
|
|
4425
5011
|
export class DescribeDataObjectsResponseBodyItemsModelTags extends $tea.Model {
|
|
4426
5012
|
id?: number;
|
|
4427
5013
|
name?: string;
|
|
@@ -4536,6 +5122,31 @@ export class DescribeDataObjectsResponseBodyItems extends $tea.Model {
|
|
|
4536
5122
|
}
|
|
4537
5123
|
}
|
|
4538
5124
|
|
|
5125
|
+
export class DescribeDocTypesResponseBodyDocTypeList extends $tea.Model {
|
|
5126
|
+
code?: number;
|
|
5127
|
+
id?: number;
|
|
5128
|
+
name?: string;
|
|
5129
|
+
static names(): { [key: string]: string } {
|
|
5130
|
+
return {
|
|
5131
|
+
code: 'Code',
|
|
5132
|
+
id: 'Id',
|
|
5133
|
+
name: 'Name',
|
|
5134
|
+
};
|
|
5135
|
+
}
|
|
5136
|
+
|
|
5137
|
+
static types(): { [key: string]: any } {
|
|
5138
|
+
return {
|
|
5139
|
+
code: 'number',
|
|
5140
|
+
id: 'number',
|
|
5141
|
+
name: 'string',
|
|
5142
|
+
};
|
|
5143
|
+
}
|
|
5144
|
+
|
|
5145
|
+
constructor(map?: { [key: string]: any }) {
|
|
5146
|
+
super(map);
|
|
5147
|
+
}
|
|
5148
|
+
}
|
|
5149
|
+
|
|
4539
5150
|
export class DescribeEventDetailResponseBodyEventDetailChartData extends $tea.Model {
|
|
4540
5151
|
x?: string[];
|
|
4541
5152
|
y?: string[];
|
|
@@ -5108,18 +5719,108 @@ export class DescribeInstancesResponseBodyItems extends $tea.Model {
|
|
|
5108
5719
|
lastFinishTime: 'number',
|
|
5109
5720
|
modelTags: { 'type': 'array', 'itemType': DescribeInstancesResponseBodyItemsModelTags },
|
|
5110
5721
|
name: 'string',
|
|
5111
|
-
odpsRiskLevelName: 'string',
|
|
5112
|
-
owner: 'string',
|
|
5113
|
-
productCode: 'string',
|
|
5114
|
-
productId: 'string',
|
|
5115
|
-
protection: 'boolean',
|
|
5116
|
-
riskLevelId: 'number',
|
|
5722
|
+
odpsRiskLevelName: 'string',
|
|
5723
|
+
owner: 'string',
|
|
5724
|
+
productCode: 'string',
|
|
5725
|
+
productId: 'string',
|
|
5726
|
+
protection: 'boolean',
|
|
5727
|
+
riskLevelId: 'number',
|
|
5728
|
+
riskLevelName: 'string',
|
|
5729
|
+
ruleName: 'string',
|
|
5730
|
+
sensitive: 'boolean',
|
|
5731
|
+
sensitiveCount: 'number',
|
|
5732
|
+
tenantName: 'string',
|
|
5733
|
+
totalCount: 'number',
|
|
5734
|
+
};
|
|
5735
|
+
}
|
|
5736
|
+
|
|
5737
|
+
constructor(map?: { [key: string]: any }) {
|
|
5738
|
+
super(map);
|
|
5739
|
+
}
|
|
5740
|
+
}
|
|
5741
|
+
|
|
5742
|
+
export class DescribeOssObjectDetailResponseBodyOssObjectDetailRuleListModelTags extends $tea.Model {
|
|
5743
|
+
id?: number;
|
|
5744
|
+
name?: string;
|
|
5745
|
+
static names(): { [key: string]: string } {
|
|
5746
|
+
return {
|
|
5747
|
+
id: 'Id',
|
|
5748
|
+
name: 'Name',
|
|
5749
|
+
};
|
|
5750
|
+
}
|
|
5751
|
+
|
|
5752
|
+
static types(): { [key: string]: any } {
|
|
5753
|
+
return {
|
|
5754
|
+
id: 'number',
|
|
5755
|
+
name: 'string',
|
|
5756
|
+
};
|
|
5757
|
+
}
|
|
5758
|
+
|
|
5759
|
+
constructor(map?: { [key: string]: any }) {
|
|
5760
|
+
super(map);
|
|
5761
|
+
}
|
|
5762
|
+
}
|
|
5763
|
+
|
|
5764
|
+
export class DescribeOssObjectDetailResponseBodyOssObjectDetailRuleList extends $tea.Model {
|
|
5765
|
+
categoryName?: string;
|
|
5766
|
+
count?: number;
|
|
5767
|
+
modelTags?: DescribeOssObjectDetailResponseBodyOssObjectDetailRuleListModelTags[];
|
|
5768
|
+
riskLevelId?: number;
|
|
5769
|
+
riskLevelName?: string;
|
|
5770
|
+
ruleName?: string;
|
|
5771
|
+
static names(): { [key: string]: string } {
|
|
5772
|
+
return {
|
|
5773
|
+
categoryName: 'CategoryName',
|
|
5774
|
+
count: 'Count',
|
|
5775
|
+
modelTags: 'ModelTags',
|
|
5776
|
+
riskLevelId: 'RiskLevelId',
|
|
5777
|
+
riskLevelName: 'RiskLevelName',
|
|
5778
|
+
ruleName: 'RuleName',
|
|
5779
|
+
};
|
|
5780
|
+
}
|
|
5781
|
+
|
|
5782
|
+
static types(): { [key: string]: any } {
|
|
5783
|
+
return {
|
|
5784
|
+
categoryName: 'string',
|
|
5785
|
+
count: 'number',
|
|
5786
|
+
modelTags: { 'type': 'array', 'itemType': DescribeOssObjectDetailResponseBodyOssObjectDetailRuleListModelTags },
|
|
5787
|
+
riskLevelId: 'number',
|
|
5788
|
+
riskLevelName: 'string',
|
|
5789
|
+
ruleName: 'string',
|
|
5790
|
+
};
|
|
5791
|
+
}
|
|
5792
|
+
|
|
5793
|
+
constructor(map?: { [key: string]: any }) {
|
|
5794
|
+
super(map);
|
|
5795
|
+
}
|
|
5796
|
+
}
|
|
5797
|
+
|
|
5798
|
+
export class DescribeOssObjectDetailResponseBodyOssObjectDetail extends $tea.Model {
|
|
5799
|
+
bucketName?: string;
|
|
5800
|
+
categoryName?: string;
|
|
5801
|
+
name?: string;
|
|
5802
|
+
regionId?: string;
|
|
5803
|
+
riskLevelName?: string;
|
|
5804
|
+
ruleList?: DescribeOssObjectDetailResponseBodyOssObjectDetailRuleList[];
|
|
5805
|
+
static names(): { [key: string]: string } {
|
|
5806
|
+
return {
|
|
5807
|
+
bucketName: 'BucketName',
|
|
5808
|
+
categoryName: 'CategoryName',
|
|
5809
|
+
name: 'Name',
|
|
5810
|
+
regionId: 'RegionId',
|
|
5811
|
+
riskLevelName: 'RiskLevelName',
|
|
5812
|
+
ruleList: 'RuleList',
|
|
5813
|
+
};
|
|
5814
|
+
}
|
|
5815
|
+
|
|
5816
|
+
static types(): { [key: string]: any } {
|
|
5817
|
+
return {
|
|
5818
|
+
bucketName: 'string',
|
|
5819
|
+
categoryName: 'string',
|
|
5820
|
+
name: 'string',
|
|
5821
|
+
regionId: 'string',
|
|
5117
5822
|
riskLevelName: 'string',
|
|
5118
|
-
|
|
5119
|
-
sensitive: 'boolean',
|
|
5120
|
-
sensitiveCount: 'number',
|
|
5121
|
-
tenantName: 'string',
|
|
5122
|
-
totalCount: 'number',
|
|
5823
|
+
ruleList: { 'type': 'array', 'itemType': DescribeOssObjectDetailResponseBodyOssObjectDetailRuleList },
|
|
5123
5824
|
};
|
|
5124
5825
|
}
|
|
5125
5826
|
|
|
@@ -5128,7 +5829,7 @@ export class DescribeInstancesResponseBodyItems extends $tea.Model {
|
|
|
5128
5829
|
}
|
|
5129
5830
|
}
|
|
5130
5831
|
|
|
5131
|
-
export class
|
|
5832
|
+
export class DescribeOssObjectDetailV2ResponseBodyOssObjectDetailRuleListModelTags extends $tea.Model {
|
|
5132
5833
|
id?: number;
|
|
5133
5834
|
name?: string;
|
|
5134
5835
|
static names(): { [key: string]: string } {
|
|
@@ -5150,10 +5851,10 @@ export class DescribeOssObjectDetailResponseBodyOssObjectDetailRuleListModelTags
|
|
|
5150
5851
|
}
|
|
5151
5852
|
}
|
|
5152
5853
|
|
|
5153
|
-
export class
|
|
5854
|
+
export class DescribeOssObjectDetailV2ResponseBodyOssObjectDetailRuleList extends $tea.Model {
|
|
5154
5855
|
categoryName?: string;
|
|
5155
5856
|
count?: number;
|
|
5156
|
-
modelTags?:
|
|
5857
|
+
modelTags?: DescribeOssObjectDetailV2ResponseBodyOssObjectDetailRuleListModelTags[];
|
|
5157
5858
|
riskLevelId?: number;
|
|
5158
5859
|
riskLevelName?: string;
|
|
5159
5860
|
ruleName?: string;
|
|
@@ -5172,7 +5873,7 @@ export class DescribeOssObjectDetailResponseBodyOssObjectDetailRuleList extends
|
|
|
5172
5873
|
return {
|
|
5173
5874
|
categoryName: 'string',
|
|
5174
5875
|
count: 'number',
|
|
5175
|
-
modelTags: { 'type': 'array', 'itemType':
|
|
5876
|
+
modelTags: { 'type': 'array', 'itemType': DescribeOssObjectDetailV2ResponseBodyOssObjectDetailRuleListModelTags },
|
|
5176
5877
|
riskLevelId: 'number',
|
|
5177
5878
|
riskLevelName: 'string',
|
|
5178
5879
|
ruleName: 'string',
|
|
@@ -5184,13 +5885,13 @@ export class DescribeOssObjectDetailResponseBodyOssObjectDetailRuleList extends
|
|
|
5184
5885
|
}
|
|
5185
5886
|
}
|
|
5186
5887
|
|
|
5187
|
-
export class
|
|
5888
|
+
export class DescribeOssObjectDetailV2ResponseBodyOssObjectDetail extends $tea.Model {
|
|
5188
5889
|
bucketName?: string;
|
|
5189
5890
|
categoryName?: string;
|
|
5190
5891
|
name?: string;
|
|
5191
5892
|
regionId?: string;
|
|
5192
5893
|
riskLevelName?: string;
|
|
5193
|
-
ruleList?:
|
|
5894
|
+
ruleList?: DescribeOssObjectDetailV2ResponseBodyOssObjectDetailRuleList[];
|
|
5194
5895
|
static names(): { [key: string]: string } {
|
|
5195
5896
|
return {
|
|
5196
5897
|
bucketName: 'BucketName',
|
|
@@ -5209,7 +5910,7 @@ export class DescribeOssObjectDetailResponseBodyOssObjectDetail extends $tea.Mod
|
|
|
5209
5910
|
name: 'string',
|
|
5210
5911
|
regionId: 'string',
|
|
5211
5912
|
riskLevelName: 'string',
|
|
5212
|
-
ruleList: { 'type': 'array', 'itemType':
|
|
5913
|
+
ruleList: { 'type': 'array', 'itemType': DescribeOssObjectDetailV2ResponseBodyOssObjectDetailRuleList },
|
|
5213
5914
|
};
|
|
5214
5915
|
}
|
|
5215
5916
|
|
|
@@ -5561,6 +6262,28 @@ export class DescribeTablesResponseBodyItems extends $tea.Model {
|
|
|
5561
6262
|
}
|
|
5562
6263
|
}
|
|
5563
6264
|
|
|
6265
|
+
export class DescribeTemplateAllRulesResponseBodyRuleList extends $tea.Model {
|
|
6266
|
+
id?: number;
|
|
6267
|
+
name?: string;
|
|
6268
|
+
static names(): { [key: string]: string } {
|
|
6269
|
+
return {
|
|
6270
|
+
id: 'Id',
|
|
6271
|
+
name: 'Name',
|
|
6272
|
+
};
|
|
6273
|
+
}
|
|
6274
|
+
|
|
6275
|
+
static types(): { [key: string]: any } {
|
|
6276
|
+
return {
|
|
6277
|
+
id: 'number',
|
|
6278
|
+
name: 'string',
|
|
6279
|
+
};
|
|
6280
|
+
}
|
|
6281
|
+
|
|
6282
|
+
constructor(map?: { [key: string]: any }) {
|
|
6283
|
+
super(map);
|
|
6284
|
+
}
|
|
6285
|
+
}
|
|
6286
|
+
|
|
5564
6287
|
export class DescribeUserStatusResponseBodyUserStatus extends $tea.Model {
|
|
5565
6288
|
accessKeyId?: string;
|
|
5566
6289
|
auditClosable?: boolean;
|
|
@@ -6322,6 +7045,83 @@ export default class Client extends OpenApi {
|
|
|
6322
7045
|
return await this.describeColumnsWithOptions(request, runtime);
|
|
6323
7046
|
}
|
|
6324
7047
|
|
|
7048
|
+
async describeColumnsV2WithOptions(request: DescribeColumnsV2Request, runtime: $Util.RuntimeOptions): Promise<DescribeColumnsV2Response> {
|
|
7049
|
+
Util.validateModel(request);
|
|
7050
|
+
let query = { };
|
|
7051
|
+
if (!Util.isUnset(request.currentPage)) {
|
|
7052
|
+
query["CurrentPage"] = request.currentPage;
|
|
7053
|
+
}
|
|
7054
|
+
|
|
7055
|
+
if (!Util.isUnset(request.instanceId)) {
|
|
7056
|
+
query["InstanceId"] = request.instanceId;
|
|
7057
|
+
}
|
|
7058
|
+
|
|
7059
|
+
if (!Util.isUnset(request.instanceName)) {
|
|
7060
|
+
query["InstanceName"] = request.instanceName;
|
|
7061
|
+
}
|
|
7062
|
+
|
|
7063
|
+
if (!Util.isUnset(request.lang)) {
|
|
7064
|
+
query["Lang"] = request.lang;
|
|
7065
|
+
}
|
|
7066
|
+
|
|
7067
|
+
if (!Util.isUnset(request.name)) {
|
|
7068
|
+
query["Name"] = request.name;
|
|
7069
|
+
}
|
|
7070
|
+
|
|
7071
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
7072
|
+
query["PageSize"] = request.pageSize;
|
|
7073
|
+
}
|
|
7074
|
+
|
|
7075
|
+
if (!Util.isUnset(request.productCode)) {
|
|
7076
|
+
query["ProductCode"] = request.productCode;
|
|
7077
|
+
}
|
|
7078
|
+
|
|
7079
|
+
if (!Util.isUnset(request.riskLevelId)) {
|
|
7080
|
+
query["RiskLevelId"] = request.riskLevelId;
|
|
7081
|
+
}
|
|
7082
|
+
|
|
7083
|
+
if (!Util.isUnset(request.ruleId)) {
|
|
7084
|
+
query["RuleId"] = request.ruleId;
|
|
7085
|
+
}
|
|
7086
|
+
|
|
7087
|
+
if (!Util.isUnset(request.ruleName)) {
|
|
7088
|
+
query["RuleName"] = request.ruleName;
|
|
7089
|
+
}
|
|
7090
|
+
|
|
7091
|
+
if (!Util.isUnset(request.sensLevelName)) {
|
|
7092
|
+
query["SensLevelName"] = request.sensLevelName;
|
|
7093
|
+
}
|
|
7094
|
+
|
|
7095
|
+
if (!Util.isUnset(request.tableId)) {
|
|
7096
|
+
query["TableId"] = request.tableId;
|
|
7097
|
+
}
|
|
7098
|
+
|
|
7099
|
+
if (!Util.isUnset(request.tableName)) {
|
|
7100
|
+
query["TableName"] = request.tableName;
|
|
7101
|
+
}
|
|
7102
|
+
|
|
7103
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7104
|
+
query: OpenApiUtil.query(query),
|
|
7105
|
+
});
|
|
7106
|
+
let params = new $OpenApi.Params({
|
|
7107
|
+
action: "DescribeColumnsV2",
|
|
7108
|
+
version: "2019-01-03",
|
|
7109
|
+
protocol: "HTTPS",
|
|
7110
|
+
pathname: "/",
|
|
7111
|
+
method: "POST",
|
|
7112
|
+
authType: "AK",
|
|
7113
|
+
style: "RPC",
|
|
7114
|
+
reqBodyType: "formData",
|
|
7115
|
+
bodyType: "json",
|
|
7116
|
+
});
|
|
7117
|
+
return $tea.cast<DescribeColumnsV2Response>(await this.callApi(params, req, runtime), new DescribeColumnsV2Response({}));
|
|
7118
|
+
}
|
|
7119
|
+
|
|
7120
|
+
async describeColumnsV2(request: DescribeColumnsV2Request): Promise<DescribeColumnsV2Response> {
|
|
7121
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7122
|
+
return await this.describeColumnsV2WithOptions(request, runtime);
|
|
7123
|
+
}
|
|
7124
|
+
|
|
6325
7125
|
async describeConfigsWithOptions(request: DescribeConfigsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeConfigsResponse> {
|
|
6326
7126
|
Util.validateModel(request);
|
|
6327
7127
|
let query = { };
|
|
@@ -6777,6 +7577,55 @@ export default class Client extends OpenApi {
|
|
|
6777
7577
|
return await this.describeDataObjectColumnDetailWithOptions(request, runtime);
|
|
6778
7578
|
}
|
|
6779
7579
|
|
|
7580
|
+
async describeDataObjectColumnDetailV2WithOptions(request: DescribeDataObjectColumnDetailV2Request, runtime: $Util.RuntimeOptions): Promise<DescribeDataObjectColumnDetailV2Response> {
|
|
7581
|
+
Util.validateModel(request);
|
|
7582
|
+
let query = { };
|
|
7583
|
+
if (!Util.isUnset(request.currentPage)) {
|
|
7584
|
+
query["CurrentPage"] = request.currentPage;
|
|
7585
|
+
}
|
|
7586
|
+
|
|
7587
|
+
if (!Util.isUnset(request.id)) {
|
|
7588
|
+
query["Id"] = request.id;
|
|
7589
|
+
}
|
|
7590
|
+
|
|
7591
|
+
if (!Util.isUnset(request.lang)) {
|
|
7592
|
+
query["Lang"] = request.lang;
|
|
7593
|
+
}
|
|
7594
|
+
|
|
7595
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
7596
|
+
query["PageSize"] = request.pageSize;
|
|
7597
|
+
}
|
|
7598
|
+
|
|
7599
|
+
if (!Util.isUnset(request.productId)) {
|
|
7600
|
+
query["ProductId"] = request.productId;
|
|
7601
|
+
}
|
|
7602
|
+
|
|
7603
|
+
if (!Util.isUnset(request.templateId)) {
|
|
7604
|
+
query["TemplateId"] = request.templateId;
|
|
7605
|
+
}
|
|
7606
|
+
|
|
7607
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7608
|
+
query: OpenApiUtil.query(query),
|
|
7609
|
+
});
|
|
7610
|
+
let params = new $OpenApi.Params({
|
|
7611
|
+
action: "DescribeDataObjectColumnDetailV2",
|
|
7612
|
+
version: "2019-01-03",
|
|
7613
|
+
protocol: "HTTPS",
|
|
7614
|
+
pathname: "/",
|
|
7615
|
+
method: "POST",
|
|
7616
|
+
authType: "AK",
|
|
7617
|
+
style: "RPC",
|
|
7618
|
+
reqBodyType: "formData",
|
|
7619
|
+
bodyType: "json",
|
|
7620
|
+
});
|
|
7621
|
+
return $tea.cast<DescribeDataObjectColumnDetailV2Response>(await this.callApi(params, req, runtime), new DescribeDataObjectColumnDetailV2Response({}));
|
|
7622
|
+
}
|
|
7623
|
+
|
|
7624
|
+
async describeDataObjectColumnDetailV2(request: DescribeDataObjectColumnDetailV2Request): Promise<DescribeDataObjectColumnDetailV2Response> {
|
|
7625
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7626
|
+
return await this.describeDataObjectColumnDetailV2WithOptions(request, runtime);
|
|
7627
|
+
}
|
|
7628
|
+
|
|
6780
7629
|
async describeDataObjectsWithOptions(request: DescribeDataObjectsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDataObjectsResponse> {
|
|
6781
7630
|
Util.validateModel(request);
|
|
6782
7631
|
let query = { };
|
|
@@ -6788,10 +7637,22 @@ export default class Client extends OpenApi {
|
|
|
6788
7637
|
query["DomainId"] = request.domainId;
|
|
6789
7638
|
}
|
|
6790
7639
|
|
|
7640
|
+
if (!Util.isUnset(request.fileType)) {
|
|
7641
|
+
query["FileType"] = request.fileType;
|
|
7642
|
+
}
|
|
7643
|
+
|
|
7644
|
+
if (!Util.isUnset(request.instanceId)) {
|
|
7645
|
+
query["InstanceId"] = request.instanceId;
|
|
7646
|
+
}
|
|
7647
|
+
|
|
6791
7648
|
if (!Util.isUnset(request.lang)) {
|
|
6792
7649
|
query["Lang"] = request.lang;
|
|
6793
7650
|
}
|
|
6794
7651
|
|
|
7652
|
+
if (!Util.isUnset(request.modelIds)) {
|
|
7653
|
+
query["ModelIds"] = request.modelIds;
|
|
7654
|
+
}
|
|
7655
|
+
|
|
6795
7656
|
if (!Util.isUnset(request.modelTagIds)) {
|
|
6796
7657
|
query["ModelTagIds"] = request.modelTagIds;
|
|
6797
7658
|
}
|
|
@@ -6846,6 +7707,35 @@ export default class Client extends OpenApi {
|
|
|
6846
7707
|
return await this.describeDataObjectsWithOptions(request, runtime);
|
|
6847
7708
|
}
|
|
6848
7709
|
|
|
7710
|
+
async describeDocTypesWithOptions(request: DescribeDocTypesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDocTypesResponse> {
|
|
7711
|
+
Util.validateModel(request);
|
|
7712
|
+
let query = { };
|
|
7713
|
+
if (!Util.isUnset(request.lang)) {
|
|
7714
|
+
query["Lang"] = request.lang;
|
|
7715
|
+
}
|
|
7716
|
+
|
|
7717
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7718
|
+
query: OpenApiUtil.query(query),
|
|
7719
|
+
});
|
|
7720
|
+
let params = new $OpenApi.Params({
|
|
7721
|
+
action: "DescribeDocTypes",
|
|
7722
|
+
version: "2019-01-03",
|
|
7723
|
+
protocol: "HTTPS",
|
|
7724
|
+
pathname: "/",
|
|
7725
|
+
method: "POST",
|
|
7726
|
+
authType: "AK",
|
|
7727
|
+
style: "RPC",
|
|
7728
|
+
reqBodyType: "formData",
|
|
7729
|
+
bodyType: "json",
|
|
7730
|
+
});
|
|
7731
|
+
return $tea.cast<DescribeDocTypesResponse>(await this.callApi(params, req, runtime), new DescribeDocTypesResponse({}));
|
|
7732
|
+
}
|
|
7733
|
+
|
|
7734
|
+
async describeDocTypes(request: DescribeDocTypesRequest): Promise<DescribeDocTypesResponse> {
|
|
7735
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7736
|
+
return await this.describeDocTypesWithOptions(request, runtime);
|
|
7737
|
+
}
|
|
7738
|
+
|
|
6849
7739
|
async describeEventDetailWithOptions(request: DescribeEventDetailRequest, runtime: $Util.RuntimeOptions): Promise<DescribeEventDetailResponse> {
|
|
6850
7740
|
Util.validateModel(request);
|
|
6851
7741
|
let query = { };
|
|
@@ -7244,6 +8134,39 @@ export default class Client extends OpenApi {
|
|
|
7244
8134
|
return await this.describeOssObjectDetailWithOptions(request, runtime);
|
|
7245
8135
|
}
|
|
7246
8136
|
|
|
8137
|
+
async describeOssObjectDetailV2WithOptions(request: DescribeOssObjectDetailV2Request, runtime: $Util.RuntimeOptions): Promise<DescribeOssObjectDetailV2Response> {
|
|
8138
|
+
Util.validateModel(request);
|
|
8139
|
+
let query = { };
|
|
8140
|
+
if (!Util.isUnset(request.id)) {
|
|
8141
|
+
query["Id"] = request.id;
|
|
8142
|
+
}
|
|
8143
|
+
|
|
8144
|
+
if (!Util.isUnset(request.lang)) {
|
|
8145
|
+
query["Lang"] = request.lang;
|
|
8146
|
+
}
|
|
8147
|
+
|
|
8148
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
8149
|
+
query: OpenApiUtil.query(query),
|
|
8150
|
+
});
|
|
8151
|
+
let params = new $OpenApi.Params({
|
|
8152
|
+
action: "DescribeOssObjectDetailV2",
|
|
8153
|
+
version: "2019-01-03",
|
|
8154
|
+
protocol: "HTTPS",
|
|
8155
|
+
pathname: "/",
|
|
8156
|
+
method: "POST",
|
|
8157
|
+
authType: "AK",
|
|
8158
|
+
style: "RPC",
|
|
8159
|
+
reqBodyType: "formData",
|
|
8160
|
+
bodyType: "json",
|
|
8161
|
+
});
|
|
8162
|
+
return $tea.cast<DescribeOssObjectDetailV2Response>(await this.callApi(params, req, runtime), new DescribeOssObjectDetailV2Response({}));
|
|
8163
|
+
}
|
|
8164
|
+
|
|
8165
|
+
async describeOssObjectDetailV2(request: DescribeOssObjectDetailV2Request): Promise<DescribeOssObjectDetailV2Response> {
|
|
8166
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
8167
|
+
return await this.describeOssObjectDetailV2WithOptions(request, runtime);
|
|
8168
|
+
}
|
|
8169
|
+
|
|
7247
8170
|
async describeOssObjectsWithOptions(request: DescribeOssObjectsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeOssObjectsResponse> {
|
|
7248
8171
|
Util.validateModel(request);
|
|
7249
8172
|
let query = { };
|
|
@@ -7500,6 +8423,10 @@ export default class Client extends OpenApi {
|
|
|
7500
8423
|
query["Status"] = request.status;
|
|
7501
8424
|
}
|
|
7502
8425
|
|
|
8426
|
+
if (!Util.isUnset(request.supportForm)) {
|
|
8427
|
+
query["SupportForm"] = request.supportForm;
|
|
8428
|
+
}
|
|
8429
|
+
|
|
7503
8430
|
if (!Util.isUnset(request.warnLevel)) {
|
|
7504
8431
|
query["WarnLevel"] = request.warnLevel;
|
|
7505
8432
|
}
|
|
@@ -7616,6 +8543,39 @@ export default class Client extends OpenApi {
|
|
|
7616
8543
|
return await this.describeTablesWithOptions(request, runtime);
|
|
7617
8544
|
}
|
|
7618
8545
|
|
|
8546
|
+
async describeTemplateAllRulesWithOptions(request: DescribeTemplateAllRulesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeTemplateAllRulesResponse> {
|
|
8547
|
+
Util.validateModel(request);
|
|
8548
|
+
let query = { };
|
|
8549
|
+
if (!Util.isUnset(request.lang)) {
|
|
8550
|
+
query["Lang"] = request.lang;
|
|
8551
|
+
}
|
|
8552
|
+
|
|
8553
|
+
if (!Util.isUnset(request.templateId)) {
|
|
8554
|
+
query["TemplateId"] = request.templateId;
|
|
8555
|
+
}
|
|
8556
|
+
|
|
8557
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
8558
|
+
query: OpenApiUtil.query(query),
|
|
8559
|
+
});
|
|
8560
|
+
let params = new $OpenApi.Params({
|
|
8561
|
+
action: "DescribeTemplateAllRules",
|
|
8562
|
+
version: "2019-01-03",
|
|
8563
|
+
protocol: "HTTPS",
|
|
8564
|
+
pathname: "/",
|
|
8565
|
+
method: "POST",
|
|
8566
|
+
authType: "AK",
|
|
8567
|
+
style: "RPC",
|
|
8568
|
+
reqBodyType: "formData",
|
|
8569
|
+
bodyType: "json",
|
|
8570
|
+
});
|
|
8571
|
+
return $tea.cast<DescribeTemplateAllRulesResponse>(await this.callApi(params, req, runtime), new DescribeTemplateAllRulesResponse({}));
|
|
8572
|
+
}
|
|
8573
|
+
|
|
8574
|
+
async describeTemplateAllRules(request: DescribeTemplateAllRulesRequest): Promise<DescribeTemplateAllRulesResponse> {
|
|
8575
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
8576
|
+
return await this.describeTemplateAllRulesWithOptions(request, runtime);
|
|
8577
|
+
}
|
|
8578
|
+
|
|
7619
8579
|
/**
|
|
7620
8580
|
* You can call this operation to query the information about the current account. This helps you get familiar with your account that accesses Data Security Center (DSC).
|
|
7621
8581
|
* # Limits
|