@alicloud/sddp20190103 1.0.8 → 1.0.10
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 +350 -0
- package/dist/client.js +675 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +938 -76
package/src/client.ts
CHANGED
|
@@ -599,6 +599,90 @@ export class DeleteRuleResponse extends $tea.Model {
|
|
|
599
599
|
}
|
|
600
600
|
}
|
|
601
601
|
|
|
602
|
+
export class DescribeCategoryTemplateListRequest extends $tea.Model {
|
|
603
|
+
currentPage?: number;
|
|
604
|
+
lang?: string;
|
|
605
|
+
pageSize?: number;
|
|
606
|
+
usageScenario?: number;
|
|
607
|
+
static names(): { [key: string]: string } {
|
|
608
|
+
return {
|
|
609
|
+
currentPage: 'CurrentPage',
|
|
610
|
+
lang: 'Lang',
|
|
611
|
+
pageSize: 'PageSize',
|
|
612
|
+
usageScenario: 'UsageScenario',
|
|
613
|
+
};
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
static types(): { [key: string]: any } {
|
|
617
|
+
return {
|
|
618
|
+
currentPage: 'number',
|
|
619
|
+
lang: 'string',
|
|
620
|
+
pageSize: 'number',
|
|
621
|
+
usageScenario: 'number',
|
|
622
|
+
};
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
constructor(map?: { [key: string]: any }) {
|
|
626
|
+
super(map);
|
|
627
|
+
}
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
export class DescribeCategoryTemplateListResponseBody extends $tea.Model {
|
|
631
|
+
currentPage?: number;
|
|
632
|
+
items?: DescribeCategoryTemplateListResponseBodyItems[];
|
|
633
|
+
pageSize?: number;
|
|
634
|
+
requestId?: string;
|
|
635
|
+
totalCount?: number;
|
|
636
|
+
static names(): { [key: string]: string } {
|
|
637
|
+
return {
|
|
638
|
+
currentPage: 'CurrentPage',
|
|
639
|
+
items: 'Items',
|
|
640
|
+
pageSize: 'PageSize',
|
|
641
|
+
requestId: 'RequestId',
|
|
642
|
+
totalCount: 'TotalCount',
|
|
643
|
+
};
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
static types(): { [key: string]: any } {
|
|
647
|
+
return {
|
|
648
|
+
currentPage: 'number',
|
|
649
|
+
items: { 'type': 'array', 'itemType': DescribeCategoryTemplateListResponseBodyItems },
|
|
650
|
+
pageSize: 'number',
|
|
651
|
+
requestId: 'string',
|
|
652
|
+
totalCount: 'number',
|
|
653
|
+
};
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
constructor(map?: { [key: string]: any }) {
|
|
657
|
+
super(map);
|
|
658
|
+
}
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
export class DescribeCategoryTemplateListResponse extends $tea.Model {
|
|
662
|
+
headers: { [key: string]: string };
|
|
663
|
+
statusCode: number;
|
|
664
|
+
body: DescribeCategoryTemplateListResponseBody;
|
|
665
|
+
static names(): { [key: string]: string } {
|
|
666
|
+
return {
|
|
667
|
+
headers: 'headers',
|
|
668
|
+
statusCode: 'statusCode',
|
|
669
|
+
body: 'body',
|
|
670
|
+
};
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
static types(): { [key: string]: any } {
|
|
674
|
+
return {
|
|
675
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
676
|
+
statusCode: 'number',
|
|
677
|
+
body: DescribeCategoryTemplateListResponseBody,
|
|
678
|
+
};
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
constructor(map?: { [key: string]: any }) {
|
|
682
|
+
super(map);
|
|
683
|
+
}
|
|
684
|
+
}
|
|
685
|
+
|
|
602
686
|
export class DescribeCategoryTemplateRuleListRequest extends $tea.Model {
|
|
603
687
|
currentPage?: number;
|
|
604
688
|
lang?: string;
|
|
@@ -797,6 +881,117 @@ export class DescribeColumnsResponse extends $tea.Model {
|
|
|
797
881
|
}
|
|
798
882
|
}
|
|
799
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
|
+
|
|
800
995
|
export class DescribeConfigsRequest extends $tea.Model {
|
|
801
996
|
lang?: string;
|
|
802
997
|
static names(): { [key: string]: string } {
|
|
@@ -1499,6 +1694,96 @@ export class DescribeDataObjectColumnDetailResponse extends $tea.Model {
|
|
|
1499
1694
|
}
|
|
1500
1695
|
}
|
|
1501
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
|
+
|
|
1502
1787
|
export class DescribeDataObjectsRequest extends $tea.Model {
|
|
1503
1788
|
currentPage?: number;
|
|
1504
1789
|
domainId?: number;
|
|
@@ -2144,6 +2429,75 @@ export class DescribeOssObjectDetailResponse extends $tea.Model {
|
|
|
2144
2429
|
}
|
|
2145
2430
|
}
|
|
2146
2431
|
|
|
2432
|
+
export class DescribeOssObjectDetailV2Request extends $tea.Model {
|
|
2433
|
+
id?: string;
|
|
2434
|
+
lang?: string;
|
|
2435
|
+
static names(): { [key: string]: string } {
|
|
2436
|
+
return {
|
|
2437
|
+
id: 'Id',
|
|
2438
|
+
lang: 'Lang',
|
|
2439
|
+
};
|
|
2440
|
+
}
|
|
2441
|
+
|
|
2442
|
+
static types(): { [key: string]: any } {
|
|
2443
|
+
return {
|
|
2444
|
+
id: 'string',
|
|
2445
|
+
lang: 'string',
|
|
2446
|
+
};
|
|
2447
|
+
}
|
|
2448
|
+
|
|
2449
|
+
constructor(map?: { [key: string]: any }) {
|
|
2450
|
+
super(map);
|
|
2451
|
+
}
|
|
2452
|
+
}
|
|
2453
|
+
|
|
2454
|
+
export class DescribeOssObjectDetailV2ResponseBody extends $tea.Model {
|
|
2455
|
+
ossObjectDetail?: DescribeOssObjectDetailV2ResponseBodyOssObjectDetail;
|
|
2456
|
+
requestId?: string;
|
|
2457
|
+
static names(): { [key: string]: string } {
|
|
2458
|
+
return {
|
|
2459
|
+
ossObjectDetail: 'OssObjectDetail',
|
|
2460
|
+
requestId: 'RequestId',
|
|
2461
|
+
};
|
|
2462
|
+
}
|
|
2463
|
+
|
|
2464
|
+
static types(): { [key: string]: any } {
|
|
2465
|
+
return {
|
|
2466
|
+
ossObjectDetail: DescribeOssObjectDetailV2ResponseBodyOssObjectDetail,
|
|
2467
|
+
requestId: 'string',
|
|
2468
|
+
};
|
|
2469
|
+
}
|
|
2470
|
+
|
|
2471
|
+
constructor(map?: { [key: string]: any }) {
|
|
2472
|
+
super(map);
|
|
2473
|
+
}
|
|
2474
|
+
}
|
|
2475
|
+
|
|
2476
|
+
export class DescribeOssObjectDetailV2Response extends $tea.Model {
|
|
2477
|
+
headers: { [key: string]: string };
|
|
2478
|
+
statusCode: number;
|
|
2479
|
+
body: DescribeOssObjectDetailV2ResponseBody;
|
|
2480
|
+
static names(): { [key: string]: string } {
|
|
2481
|
+
return {
|
|
2482
|
+
headers: 'headers',
|
|
2483
|
+
statusCode: 'statusCode',
|
|
2484
|
+
body: 'body',
|
|
2485
|
+
};
|
|
2486
|
+
}
|
|
2487
|
+
|
|
2488
|
+
static types(): { [key: string]: any } {
|
|
2489
|
+
return {
|
|
2490
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2491
|
+
statusCode: 'number',
|
|
2492
|
+
body: DescribeOssObjectDetailV2ResponseBody,
|
|
2493
|
+
};
|
|
2494
|
+
}
|
|
2495
|
+
|
|
2496
|
+
constructor(map?: { [key: string]: any }) {
|
|
2497
|
+
super(map);
|
|
2498
|
+
}
|
|
2499
|
+
}
|
|
2500
|
+
|
|
2147
2501
|
export class DescribeOssObjectsRequest extends $tea.Model {
|
|
2148
2502
|
currentPage?: number;
|
|
2149
2503
|
instanceId?: string;
|
|
@@ -3533,6 +3887,55 @@ export class StopMaskingProcessResponse extends $tea.Model {
|
|
|
3533
3887
|
}
|
|
3534
3888
|
}
|
|
3535
3889
|
|
|
3890
|
+
export class DescribeCategoryTemplateListResponseBodyItems extends $tea.Model {
|
|
3891
|
+
currentRiskLevel?: number;
|
|
3892
|
+
description?: string;
|
|
3893
|
+
gmtCreate?: number;
|
|
3894
|
+
gmtModified?: number;
|
|
3895
|
+
id?: number;
|
|
3896
|
+
maxCategoryLevel?: number;
|
|
3897
|
+
maxRiskLevel?: number;
|
|
3898
|
+
name?: string;
|
|
3899
|
+
status?: number;
|
|
3900
|
+
supportEdit?: number;
|
|
3901
|
+
type?: number;
|
|
3902
|
+
static names(): { [key: string]: string } {
|
|
3903
|
+
return {
|
|
3904
|
+
currentRiskLevel: 'CurrentRiskLevel',
|
|
3905
|
+
description: 'Description',
|
|
3906
|
+
gmtCreate: 'GmtCreate',
|
|
3907
|
+
gmtModified: 'GmtModified',
|
|
3908
|
+
id: 'Id',
|
|
3909
|
+
maxCategoryLevel: 'MaxCategoryLevel',
|
|
3910
|
+
maxRiskLevel: 'MaxRiskLevel',
|
|
3911
|
+
name: 'Name',
|
|
3912
|
+
status: 'Status',
|
|
3913
|
+
supportEdit: 'SupportEdit',
|
|
3914
|
+
type: 'Type',
|
|
3915
|
+
};
|
|
3916
|
+
}
|
|
3917
|
+
|
|
3918
|
+
static types(): { [key: string]: any } {
|
|
3919
|
+
return {
|
|
3920
|
+
currentRiskLevel: 'number',
|
|
3921
|
+
description: 'string',
|
|
3922
|
+
gmtCreate: 'number',
|
|
3923
|
+
gmtModified: 'number',
|
|
3924
|
+
id: 'number',
|
|
3925
|
+
maxCategoryLevel: 'number',
|
|
3926
|
+
maxRiskLevel: 'number',
|
|
3927
|
+
name: 'string',
|
|
3928
|
+
status: 'number',
|
|
3929
|
+
supportEdit: 'number',
|
|
3930
|
+
type: 'number',
|
|
3931
|
+
};
|
|
3932
|
+
}
|
|
3933
|
+
|
|
3934
|
+
constructor(map?: { [key: string]: any }) {
|
|
3935
|
+
super(map);
|
|
3936
|
+
}
|
|
3937
|
+
}
|
|
3938
|
+
|
|
3536
3939
|
export class DescribeCategoryTemplateRuleListResponseBodyItems extends $tea.Model {
|
|
3537
3940
|
description?: string;
|
|
3538
3941
|
id?: number;
|
|
@@ -3540,28 +3943,126 @@ export class DescribeCategoryTemplateRuleListResponseBodyItems extends $tea.Mode
|
|
|
3540
3943
|
identificationScope?: string;
|
|
3541
3944
|
name?: string;
|
|
3542
3945
|
riskLevelId?: number;
|
|
3543
|
-
status?: number;
|
|
3946
|
+
status?: number;
|
|
3947
|
+
static names(): { [key: string]: string } {
|
|
3948
|
+
return {
|
|
3949
|
+
description: 'Description',
|
|
3950
|
+
id: 'Id',
|
|
3951
|
+
identificationRuleIds: 'IdentificationRuleIds',
|
|
3952
|
+
identificationScope: 'IdentificationScope',
|
|
3953
|
+
name: 'Name',
|
|
3954
|
+
riskLevelId: 'RiskLevelId',
|
|
3955
|
+
status: 'Status',
|
|
3956
|
+
};
|
|
3957
|
+
}
|
|
3958
|
+
|
|
3959
|
+
static types(): { [key: string]: any } {
|
|
3960
|
+
return {
|
|
3961
|
+
description: 'string',
|
|
3962
|
+
id: 'number',
|
|
3963
|
+
identificationRuleIds: 'string',
|
|
3964
|
+
identificationScope: 'string',
|
|
3965
|
+
name: 'string',
|
|
3966
|
+
riskLevelId: 'number',
|
|
3967
|
+
status: 'number',
|
|
3968
|
+
};
|
|
3969
|
+
}
|
|
3970
|
+
|
|
3971
|
+
constructor(map?: { [key: string]: any }) {
|
|
3972
|
+
super(map);
|
|
3973
|
+
}
|
|
3974
|
+
}
|
|
3975
|
+
|
|
3976
|
+
export class DescribeColumnsResponseBodyItemsModelTags extends $tea.Model {
|
|
3977
|
+
id?: number;
|
|
3978
|
+
name?: string;
|
|
3979
|
+
static names(): { [key: string]: string } {
|
|
3980
|
+
return {
|
|
3981
|
+
id: 'Id',
|
|
3982
|
+
name: 'Name',
|
|
3983
|
+
};
|
|
3984
|
+
}
|
|
3985
|
+
|
|
3986
|
+
static types(): { [key: string]: any } {
|
|
3987
|
+
return {
|
|
3988
|
+
id: 'number',
|
|
3989
|
+
name: 'string',
|
|
3990
|
+
};
|
|
3991
|
+
}
|
|
3992
|
+
|
|
3993
|
+
constructor(map?: { [key: string]: any }) {
|
|
3994
|
+
super(map);
|
|
3995
|
+
}
|
|
3996
|
+
}
|
|
3997
|
+
|
|
3998
|
+
export class DescribeColumnsResponseBodyItems extends $tea.Model {
|
|
3999
|
+
creationTime?: number;
|
|
4000
|
+
dataType?: string;
|
|
4001
|
+
id?: string;
|
|
4002
|
+
instanceId?: number;
|
|
4003
|
+
instanceName?: string;
|
|
4004
|
+
modelTags?: DescribeColumnsResponseBodyItemsModelTags[];
|
|
4005
|
+
name?: string;
|
|
4006
|
+
odpsRiskLevelName?: string;
|
|
4007
|
+
odpsRiskLevelValue?: number;
|
|
4008
|
+
productCode?: string;
|
|
4009
|
+
revisionId?: number;
|
|
4010
|
+
revisionStatus?: number;
|
|
4011
|
+
riskLevelId?: number;
|
|
4012
|
+
riskLevelName?: string;
|
|
4013
|
+
ruleId?: number;
|
|
4014
|
+
ruleName?: string;
|
|
4015
|
+
sensLevelName?: string;
|
|
4016
|
+
sensitive?: boolean;
|
|
4017
|
+
tableId?: number;
|
|
4018
|
+
tableName?: string;
|
|
3544
4019
|
static names(): { [key: string]: string } {
|
|
3545
4020
|
return {
|
|
3546
|
-
|
|
4021
|
+
creationTime: 'CreationTime',
|
|
4022
|
+
dataType: 'DataType',
|
|
3547
4023
|
id: 'Id',
|
|
3548
|
-
|
|
3549
|
-
|
|
4024
|
+
instanceId: 'InstanceId',
|
|
4025
|
+
instanceName: 'InstanceName',
|
|
4026
|
+
modelTags: 'ModelTags',
|
|
3550
4027
|
name: 'Name',
|
|
4028
|
+
odpsRiskLevelName: 'OdpsRiskLevelName',
|
|
4029
|
+
odpsRiskLevelValue: 'OdpsRiskLevelValue',
|
|
4030
|
+
productCode: 'ProductCode',
|
|
4031
|
+
revisionId: 'RevisionId',
|
|
4032
|
+
revisionStatus: 'RevisionStatus',
|
|
3551
4033
|
riskLevelId: 'RiskLevelId',
|
|
3552
|
-
|
|
4034
|
+
riskLevelName: 'RiskLevelName',
|
|
4035
|
+
ruleId: 'RuleId',
|
|
4036
|
+
ruleName: 'RuleName',
|
|
4037
|
+
sensLevelName: 'SensLevelName',
|
|
4038
|
+
sensitive: 'Sensitive',
|
|
4039
|
+
tableId: 'TableId',
|
|
4040
|
+
tableName: 'TableName',
|
|
3553
4041
|
};
|
|
3554
4042
|
}
|
|
3555
4043
|
|
|
3556
4044
|
static types(): { [key: string]: any } {
|
|
3557
4045
|
return {
|
|
3558
|
-
|
|
3559
|
-
|
|
3560
|
-
|
|
3561
|
-
|
|
4046
|
+
creationTime: 'number',
|
|
4047
|
+
dataType: 'string',
|
|
4048
|
+
id: 'string',
|
|
4049
|
+
instanceId: 'number',
|
|
4050
|
+
instanceName: 'string',
|
|
4051
|
+
modelTags: { 'type': 'array', 'itemType': DescribeColumnsResponseBodyItemsModelTags },
|
|
3562
4052
|
name: 'string',
|
|
4053
|
+
odpsRiskLevelName: 'string',
|
|
4054
|
+
odpsRiskLevelValue: 'number',
|
|
4055
|
+
productCode: 'string',
|
|
4056
|
+
revisionId: 'number',
|
|
4057
|
+
revisionStatus: 'number',
|
|
3563
4058
|
riskLevelId: 'number',
|
|
3564
|
-
|
|
4059
|
+
riskLevelName: 'string',
|
|
4060
|
+
ruleId: 'number',
|
|
4061
|
+
ruleName: 'string',
|
|
4062
|
+
sensLevelName: 'string',
|
|
4063
|
+
sensitive: 'boolean',
|
|
4064
|
+
tableId: 'number',
|
|
4065
|
+
tableName: 'string',
|
|
3565
4066
|
};
|
|
3566
4067
|
}
|
|
3567
4068
|
|
|
@@ -3570,7 +4071,7 @@ export class DescribeCategoryTemplateRuleListResponseBodyItems extends $tea.Mode
|
|
|
3570
4071
|
}
|
|
3571
4072
|
}
|
|
3572
4073
|
|
|
3573
|
-
export class
|
|
4074
|
+
export class DescribeColumnsV2ResponseBodyItemsModelTags extends $tea.Model {
|
|
3574
4075
|
id?: number;
|
|
3575
4076
|
name?: string;
|
|
3576
4077
|
static names(): { [key: string]: string } {
|
|
@@ -3592,13 +4093,13 @@ export class DescribeColumnsResponseBodyItemsModelTags extends $tea.Model {
|
|
|
3592
4093
|
}
|
|
3593
4094
|
}
|
|
3594
4095
|
|
|
3595
|
-
export class
|
|
4096
|
+
export class DescribeColumnsV2ResponseBodyItems extends $tea.Model {
|
|
3596
4097
|
creationTime?: number;
|
|
3597
4098
|
dataType?: string;
|
|
3598
4099
|
id?: string;
|
|
3599
4100
|
instanceId?: number;
|
|
3600
4101
|
instanceName?: string;
|
|
3601
|
-
modelTags?:
|
|
4102
|
+
modelTags?: DescribeColumnsV2ResponseBodyItemsModelTags[];
|
|
3602
4103
|
name?: string;
|
|
3603
4104
|
odpsRiskLevelName?: string;
|
|
3604
4105
|
odpsRiskLevelValue?: number;
|
|
@@ -3645,7 +4146,7 @@ export class DescribeColumnsResponseBodyItems extends $tea.Model {
|
|
|
3645
4146
|
id: 'string',
|
|
3646
4147
|
instanceId: 'number',
|
|
3647
4148
|
instanceName: 'string',
|
|
3648
|
-
modelTags: { 'type': 'array', 'itemType':
|
|
4149
|
+
modelTags: { 'type': 'array', 'itemType': DescribeColumnsV2ResponseBodyItemsModelTags },
|
|
3649
4150
|
name: 'string',
|
|
3650
4151
|
odpsRiskLevelName: 'string',
|
|
3651
4152
|
odpsRiskLevelValue: 'number',
|
|
@@ -4289,6 +4790,77 @@ export class DescribeDataObjectColumnDetailResponseBodyItems extends $tea.Model
|
|
|
4289
4790
|
}
|
|
4290
4791
|
}
|
|
4291
4792
|
|
|
4793
|
+
export class DescribeDataObjectColumnDetailV2ResponseBodyItemsModelTags extends $tea.Model {
|
|
4794
|
+
id?: number;
|
|
4795
|
+
name?: string;
|
|
4796
|
+
static names(): { [key: string]: string } {
|
|
4797
|
+
return {
|
|
4798
|
+
id: 'Id',
|
|
4799
|
+
name: 'Name',
|
|
4800
|
+
};
|
|
4801
|
+
}
|
|
4802
|
+
|
|
4803
|
+
static types(): { [key: string]: any } {
|
|
4804
|
+
return {
|
|
4805
|
+
id: 'number',
|
|
4806
|
+
name: 'string',
|
|
4807
|
+
};
|
|
4808
|
+
}
|
|
4809
|
+
|
|
4810
|
+
constructor(map?: { [key: string]: any }) {
|
|
4811
|
+
super(map);
|
|
4812
|
+
}
|
|
4813
|
+
}
|
|
4814
|
+
|
|
4815
|
+
export class DescribeDataObjectColumnDetailV2ResponseBodyItems extends $tea.Model {
|
|
4816
|
+
categories?: string[];
|
|
4817
|
+
columnComment?: string;
|
|
4818
|
+
columnName?: string;
|
|
4819
|
+
dataType?: string;
|
|
4820
|
+
id?: string;
|
|
4821
|
+
modelTags?: DescribeDataObjectColumnDetailV2ResponseBodyItemsModelTags[];
|
|
4822
|
+
primaryKey?: boolean;
|
|
4823
|
+
riskLevelId?: number;
|
|
4824
|
+
riskLevelName?: string;
|
|
4825
|
+
ruleId?: number;
|
|
4826
|
+
ruleName?: string;
|
|
4827
|
+
static names(): { [key: string]: string } {
|
|
4828
|
+
return {
|
|
4829
|
+
categories: 'Categories',
|
|
4830
|
+
columnComment: 'ColumnComment',
|
|
4831
|
+
columnName: 'ColumnName',
|
|
4832
|
+
dataType: 'DataType',
|
|
4833
|
+
id: 'Id',
|
|
4834
|
+
modelTags: 'ModelTags',
|
|
4835
|
+
primaryKey: 'PrimaryKey',
|
|
4836
|
+
riskLevelId: 'RiskLevelId',
|
|
4837
|
+
riskLevelName: 'RiskLevelName',
|
|
4838
|
+
ruleId: 'RuleId',
|
|
4839
|
+
ruleName: 'RuleName',
|
|
4840
|
+
};
|
|
4841
|
+
}
|
|
4842
|
+
|
|
4843
|
+
static types(): { [key: string]: any } {
|
|
4844
|
+
return {
|
|
4845
|
+
categories: { 'type': 'array', 'itemType': 'string' },
|
|
4846
|
+
columnComment: 'string',
|
|
4847
|
+
columnName: 'string',
|
|
4848
|
+
dataType: 'string',
|
|
4849
|
+
id: 'string',
|
|
4850
|
+
modelTags: { 'type': 'array', 'itemType': DescribeDataObjectColumnDetailV2ResponseBodyItemsModelTags },
|
|
4851
|
+
primaryKey: 'boolean',
|
|
4852
|
+
riskLevelId: 'number',
|
|
4853
|
+
riskLevelName: 'string',
|
|
4854
|
+
ruleId: 'number',
|
|
4855
|
+
ruleName: 'string',
|
|
4856
|
+
};
|
|
4857
|
+
}
|
|
4858
|
+
|
|
4859
|
+
constructor(map?: { [key: string]: any }) {
|
|
4860
|
+
super(map);
|
|
4861
|
+
}
|
|
4862
|
+
}
|
|
4863
|
+
|
|
4292
4864
|
export class DescribeDataObjectsResponseBodyItemsModelTags extends $tea.Model {
|
|
4293
4865
|
id?: number;
|
|
4294
4866
|
name?: string;
|
|
@@ -4919,74 +5491,164 @@ export class DescribeInstancesResponseBodyItemsModelTags extends $tea.Model {
|
|
|
4919
5491
|
}
|
|
4920
5492
|
}
|
|
4921
5493
|
|
|
4922
|
-
export class DescribeInstancesResponseBodyItems extends $tea.Model {
|
|
4923
|
-
creationTime?: number;
|
|
4924
|
-
departName?: string;
|
|
4925
|
-
id?: number;
|
|
4926
|
-
instanceDescription?: string;
|
|
4927
|
-
labelsec?: boolean;
|
|
4928
|
-
lastFinishTime?: number;
|
|
4929
|
-
modelTags?: DescribeInstancesResponseBodyItemsModelTags[];
|
|
5494
|
+
export class DescribeInstancesResponseBodyItems extends $tea.Model {
|
|
5495
|
+
creationTime?: number;
|
|
5496
|
+
departName?: string;
|
|
5497
|
+
id?: number;
|
|
5498
|
+
instanceDescription?: string;
|
|
5499
|
+
labelsec?: boolean;
|
|
5500
|
+
lastFinishTime?: number;
|
|
5501
|
+
modelTags?: DescribeInstancesResponseBodyItemsModelTags[];
|
|
5502
|
+
name?: string;
|
|
5503
|
+
odpsRiskLevelName?: string;
|
|
5504
|
+
owner?: string;
|
|
5505
|
+
productCode?: string;
|
|
5506
|
+
productId?: string;
|
|
5507
|
+
protection?: boolean;
|
|
5508
|
+
riskLevelId?: number;
|
|
5509
|
+
riskLevelName?: string;
|
|
5510
|
+
ruleName?: string;
|
|
5511
|
+
sensitive?: boolean;
|
|
5512
|
+
sensitiveCount?: number;
|
|
5513
|
+
tenantName?: string;
|
|
5514
|
+
totalCount?: number;
|
|
5515
|
+
static names(): { [key: string]: string } {
|
|
5516
|
+
return {
|
|
5517
|
+
creationTime: 'CreationTime',
|
|
5518
|
+
departName: 'DepartName',
|
|
5519
|
+
id: 'Id',
|
|
5520
|
+
instanceDescription: 'InstanceDescription',
|
|
5521
|
+
labelsec: 'Labelsec',
|
|
5522
|
+
lastFinishTime: 'LastFinishTime',
|
|
5523
|
+
modelTags: 'ModelTags',
|
|
5524
|
+
name: 'Name',
|
|
5525
|
+
odpsRiskLevelName: 'OdpsRiskLevelName',
|
|
5526
|
+
owner: 'Owner',
|
|
5527
|
+
productCode: 'ProductCode',
|
|
5528
|
+
productId: 'ProductId',
|
|
5529
|
+
protection: 'Protection',
|
|
5530
|
+
riskLevelId: 'RiskLevelId',
|
|
5531
|
+
riskLevelName: 'RiskLevelName',
|
|
5532
|
+
ruleName: 'RuleName',
|
|
5533
|
+
sensitive: 'Sensitive',
|
|
5534
|
+
sensitiveCount: 'SensitiveCount',
|
|
5535
|
+
tenantName: 'TenantName',
|
|
5536
|
+
totalCount: 'TotalCount',
|
|
5537
|
+
};
|
|
5538
|
+
}
|
|
5539
|
+
|
|
5540
|
+
static types(): { [key: string]: any } {
|
|
5541
|
+
return {
|
|
5542
|
+
creationTime: 'number',
|
|
5543
|
+
departName: 'string',
|
|
5544
|
+
id: 'number',
|
|
5545
|
+
instanceDescription: 'string',
|
|
5546
|
+
labelsec: 'boolean',
|
|
5547
|
+
lastFinishTime: 'number',
|
|
5548
|
+
modelTags: { 'type': 'array', 'itemType': DescribeInstancesResponseBodyItemsModelTags },
|
|
5549
|
+
name: 'string',
|
|
5550
|
+
odpsRiskLevelName: 'string',
|
|
5551
|
+
owner: 'string',
|
|
5552
|
+
productCode: 'string',
|
|
5553
|
+
productId: 'string',
|
|
5554
|
+
protection: 'boolean',
|
|
5555
|
+
riskLevelId: 'number',
|
|
5556
|
+
riskLevelName: 'string',
|
|
5557
|
+
ruleName: 'string',
|
|
5558
|
+
sensitive: 'boolean',
|
|
5559
|
+
sensitiveCount: 'number',
|
|
5560
|
+
tenantName: 'string',
|
|
5561
|
+
totalCount: 'number',
|
|
5562
|
+
};
|
|
5563
|
+
}
|
|
5564
|
+
|
|
5565
|
+
constructor(map?: { [key: string]: any }) {
|
|
5566
|
+
super(map);
|
|
5567
|
+
}
|
|
5568
|
+
}
|
|
5569
|
+
|
|
5570
|
+
export class DescribeOssObjectDetailResponseBodyOssObjectDetailRuleListModelTags extends $tea.Model {
|
|
5571
|
+
id?: number;
|
|
5572
|
+
name?: string;
|
|
5573
|
+
static names(): { [key: string]: string } {
|
|
5574
|
+
return {
|
|
5575
|
+
id: 'Id',
|
|
5576
|
+
name: 'Name',
|
|
5577
|
+
};
|
|
5578
|
+
}
|
|
5579
|
+
|
|
5580
|
+
static types(): { [key: string]: any } {
|
|
5581
|
+
return {
|
|
5582
|
+
id: 'number',
|
|
5583
|
+
name: 'string',
|
|
5584
|
+
};
|
|
5585
|
+
}
|
|
5586
|
+
|
|
5587
|
+
constructor(map?: { [key: string]: any }) {
|
|
5588
|
+
super(map);
|
|
5589
|
+
}
|
|
5590
|
+
}
|
|
5591
|
+
|
|
5592
|
+
export class DescribeOssObjectDetailResponseBodyOssObjectDetailRuleList extends $tea.Model {
|
|
5593
|
+
categoryName?: string;
|
|
5594
|
+
count?: number;
|
|
5595
|
+
modelTags?: DescribeOssObjectDetailResponseBodyOssObjectDetailRuleListModelTags[];
|
|
5596
|
+
riskLevelId?: number;
|
|
5597
|
+
riskLevelName?: string;
|
|
5598
|
+
ruleName?: string;
|
|
5599
|
+
static names(): { [key: string]: string } {
|
|
5600
|
+
return {
|
|
5601
|
+
categoryName: 'CategoryName',
|
|
5602
|
+
count: 'Count',
|
|
5603
|
+
modelTags: 'ModelTags',
|
|
5604
|
+
riskLevelId: 'RiskLevelId',
|
|
5605
|
+
riskLevelName: 'RiskLevelName',
|
|
5606
|
+
ruleName: 'RuleName',
|
|
5607
|
+
};
|
|
5608
|
+
}
|
|
5609
|
+
|
|
5610
|
+
static types(): { [key: string]: any } {
|
|
5611
|
+
return {
|
|
5612
|
+
categoryName: 'string',
|
|
5613
|
+
count: 'number',
|
|
5614
|
+
modelTags: { 'type': 'array', 'itemType': DescribeOssObjectDetailResponseBodyOssObjectDetailRuleListModelTags },
|
|
5615
|
+
riskLevelId: 'number',
|
|
5616
|
+
riskLevelName: 'string',
|
|
5617
|
+
ruleName: 'string',
|
|
5618
|
+
};
|
|
5619
|
+
}
|
|
5620
|
+
|
|
5621
|
+
constructor(map?: { [key: string]: any }) {
|
|
5622
|
+
super(map);
|
|
5623
|
+
}
|
|
5624
|
+
}
|
|
5625
|
+
|
|
5626
|
+
export class DescribeOssObjectDetailResponseBodyOssObjectDetail extends $tea.Model {
|
|
5627
|
+
bucketName?: string;
|
|
5628
|
+
categoryName?: string;
|
|
4930
5629
|
name?: string;
|
|
4931
|
-
|
|
4932
|
-
owner?: string;
|
|
4933
|
-
productCode?: string;
|
|
4934
|
-
productId?: string;
|
|
4935
|
-
protection?: boolean;
|
|
4936
|
-
riskLevelId?: number;
|
|
5630
|
+
regionId?: string;
|
|
4937
5631
|
riskLevelName?: string;
|
|
4938
|
-
|
|
4939
|
-
sensitive?: boolean;
|
|
4940
|
-
sensitiveCount?: number;
|
|
4941
|
-
tenantName?: string;
|
|
4942
|
-
totalCount?: number;
|
|
5632
|
+
ruleList?: DescribeOssObjectDetailResponseBodyOssObjectDetailRuleList[];
|
|
4943
5633
|
static names(): { [key: string]: string } {
|
|
4944
5634
|
return {
|
|
4945
|
-
|
|
4946
|
-
|
|
4947
|
-
id: 'Id',
|
|
4948
|
-
instanceDescription: 'InstanceDescription',
|
|
4949
|
-
labelsec: 'Labelsec',
|
|
4950
|
-
lastFinishTime: 'LastFinishTime',
|
|
4951
|
-
modelTags: 'ModelTags',
|
|
5635
|
+
bucketName: 'BucketName',
|
|
5636
|
+
categoryName: 'CategoryName',
|
|
4952
5637
|
name: 'Name',
|
|
4953
|
-
|
|
4954
|
-
owner: 'Owner',
|
|
4955
|
-
productCode: 'ProductCode',
|
|
4956
|
-
productId: 'ProductId',
|
|
4957
|
-
protection: 'Protection',
|
|
4958
|
-
riskLevelId: 'RiskLevelId',
|
|
5638
|
+
regionId: 'RegionId',
|
|
4959
5639
|
riskLevelName: 'RiskLevelName',
|
|
4960
|
-
|
|
4961
|
-
sensitive: 'Sensitive',
|
|
4962
|
-
sensitiveCount: 'SensitiveCount',
|
|
4963
|
-
tenantName: 'TenantName',
|
|
4964
|
-
totalCount: 'TotalCount',
|
|
5640
|
+
ruleList: 'RuleList',
|
|
4965
5641
|
};
|
|
4966
5642
|
}
|
|
4967
5643
|
|
|
4968
5644
|
static types(): { [key: string]: any } {
|
|
4969
5645
|
return {
|
|
4970
|
-
|
|
4971
|
-
|
|
4972
|
-
id: 'number',
|
|
4973
|
-
instanceDescription: 'string',
|
|
4974
|
-
labelsec: 'boolean',
|
|
4975
|
-
lastFinishTime: 'number',
|
|
4976
|
-
modelTags: { 'type': 'array', 'itemType': DescribeInstancesResponseBodyItemsModelTags },
|
|
5646
|
+
bucketName: 'string',
|
|
5647
|
+
categoryName: 'string',
|
|
4977
5648
|
name: 'string',
|
|
4978
|
-
|
|
4979
|
-
owner: 'string',
|
|
4980
|
-
productCode: 'string',
|
|
4981
|
-
productId: 'string',
|
|
4982
|
-
protection: 'boolean',
|
|
4983
|
-
riskLevelId: 'number',
|
|
5649
|
+
regionId: 'string',
|
|
4984
5650
|
riskLevelName: 'string',
|
|
4985
|
-
|
|
4986
|
-
sensitive: 'boolean',
|
|
4987
|
-
sensitiveCount: 'number',
|
|
4988
|
-
tenantName: 'string',
|
|
4989
|
-
totalCount: 'number',
|
|
5651
|
+
ruleList: { 'type': 'array', 'itemType': DescribeOssObjectDetailResponseBodyOssObjectDetailRuleList },
|
|
4990
5652
|
};
|
|
4991
5653
|
}
|
|
4992
5654
|
|
|
@@ -4995,7 +5657,7 @@ export class DescribeInstancesResponseBodyItems extends $tea.Model {
|
|
|
4995
5657
|
}
|
|
4996
5658
|
}
|
|
4997
5659
|
|
|
4998
|
-
export class
|
|
5660
|
+
export class DescribeOssObjectDetailV2ResponseBodyOssObjectDetailRuleListModelTags extends $tea.Model {
|
|
4999
5661
|
id?: number;
|
|
5000
5662
|
name?: string;
|
|
5001
5663
|
static names(): { [key: string]: string } {
|
|
@@ -5017,10 +5679,10 @@ export class DescribeOssObjectDetailResponseBodyOssObjectDetailRuleListModelTags
|
|
|
5017
5679
|
}
|
|
5018
5680
|
}
|
|
5019
5681
|
|
|
5020
|
-
export class
|
|
5682
|
+
export class DescribeOssObjectDetailV2ResponseBodyOssObjectDetailRuleList extends $tea.Model {
|
|
5021
5683
|
categoryName?: string;
|
|
5022
5684
|
count?: number;
|
|
5023
|
-
modelTags?:
|
|
5685
|
+
modelTags?: DescribeOssObjectDetailV2ResponseBodyOssObjectDetailRuleListModelTags[];
|
|
5024
5686
|
riskLevelId?: number;
|
|
5025
5687
|
riskLevelName?: string;
|
|
5026
5688
|
ruleName?: string;
|
|
@@ -5039,7 +5701,7 @@ export class DescribeOssObjectDetailResponseBodyOssObjectDetailRuleList extends
|
|
|
5039
5701
|
return {
|
|
5040
5702
|
categoryName: 'string',
|
|
5041
5703
|
count: 'number',
|
|
5042
|
-
modelTags: { 'type': 'array', 'itemType':
|
|
5704
|
+
modelTags: { 'type': 'array', 'itemType': DescribeOssObjectDetailV2ResponseBodyOssObjectDetailRuleListModelTags },
|
|
5043
5705
|
riskLevelId: 'number',
|
|
5044
5706
|
riskLevelName: 'string',
|
|
5045
5707
|
ruleName: 'string',
|
|
@@ -5051,13 +5713,13 @@ export class DescribeOssObjectDetailResponseBodyOssObjectDetailRuleList extends
|
|
|
5051
5713
|
}
|
|
5052
5714
|
}
|
|
5053
5715
|
|
|
5054
|
-
export class
|
|
5716
|
+
export class DescribeOssObjectDetailV2ResponseBodyOssObjectDetail extends $tea.Model {
|
|
5055
5717
|
bucketName?: string;
|
|
5056
5718
|
categoryName?: string;
|
|
5057
5719
|
name?: string;
|
|
5058
5720
|
regionId?: string;
|
|
5059
5721
|
riskLevelName?: string;
|
|
5060
|
-
ruleList?:
|
|
5722
|
+
ruleList?: DescribeOssObjectDetailV2ResponseBodyOssObjectDetailRuleList[];
|
|
5061
5723
|
static names(): { [key: string]: string } {
|
|
5062
5724
|
return {
|
|
5063
5725
|
bucketName: 'BucketName',
|
|
@@ -5076,7 +5738,7 @@ export class DescribeOssObjectDetailResponseBodyOssObjectDetail extends $tea.Mod
|
|
|
5076
5738
|
name: 'string',
|
|
5077
5739
|
regionId: 'string',
|
|
5078
5740
|
riskLevelName: 'string',
|
|
5079
|
-
ruleList: { 'type': 'array', 'itemType':
|
|
5741
|
+
ruleList: { 'type': 'array', 'itemType': DescribeOssObjectDetailV2ResponseBodyOssObjectDetailRuleList },
|
|
5080
5742
|
};
|
|
5081
5743
|
}
|
|
5082
5744
|
|
|
@@ -5992,6 +6654,47 @@ export default class Client extends OpenApi {
|
|
|
5992
6654
|
return await this.deleteRuleWithOptions(request, runtime);
|
|
5993
6655
|
}
|
|
5994
6656
|
|
|
6657
|
+
async describeCategoryTemplateListWithOptions(request: DescribeCategoryTemplateListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeCategoryTemplateListResponse> {
|
|
6658
|
+
Util.validateModel(request);
|
|
6659
|
+
let query = { };
|
|
6660
|
+
if (!Util.isUnset(request.currentPage)) {
|
|
6661
|
+
query["CurrentPage"] = request.currentPage;
|
|
6662
|
+
}
|
|
6663
|
+
|
|
6664
|
+
if (!Util.isUnset(request.lang)) {
|
|
6665
|
+
query["Lang"] = request.lang;
|
|
6666
|
+
}
|
|
6667
|
+
|
|
6668
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
6669
|
+
query["PageSize"] = request.pageSize;
|
|
6670
|
+
}
|
|
6671
|
+
|
|
6672
|
+
if (!Util.isUnset(request.usageScenario)) {
|
|
6673
|
+
query["UsageScenario"] = request.usageScenario;
|
|
6674
|
+
}
|
|
6675
|
+
|
|
6676
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
6677
|
+
query: OpenApiUtil.query(query),
|
|
6678
|
+
});
|
|
6679
|
+
let params = new $OpenApi.Params({
|
|
6680
|
+
action: "DescribeCategoryTemplateList",
|
|
6681
|
+
version: "2019-01-03",
|
|
6682
|
+
protocol: "HTTPS",
|
|
6683
|
+
pathname: "/",
|
|
6684
|
+
method: "POST",
|
|
6685
|
+
authType: "AK",
|
|
6686
|
+
style: "RPC",
|
|
6687
|
+
reqBodyType: "formData",
|
|
6688
|
+
bodyType: "json",
|
|
6689
|
+
});
|
|
6690
|
+
return $tea.cast<DescribeCategoryTemplateListResponse>(await this.callApi(params, req, runtime), new DescribeCategoryTemplateListResponse({}));
|
|
6691
|
+
}
|
|
6692
|
+
|
|
6693
|
+
async describeCategoryTemplateList(request: DescribeCategoryTemplateListRequest): Promise<DescribeCategoryTemplateListResponse> {
|
|
6694
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
6695
|
+
return await this.describeCategoryTemplateListWithOptions(request, runtime);
|
|
6696
|
+
}
|
|
6697
|
+
|
|
5995
6698
|
/**
|
|
5996
6699
|
* You can call this operation to query rules in a classification template.
|
|
5997
6700
|
* # Limits
|
|
@@ -6148,6 +6851,83 @@ export default class Client extends OpenApi {
|
|
|
6148
6851
|
return await this.describeColumnsWithOptions(request, runtime);
|
|
6149
6852
|
}
|
|
6150
6853
|
|
|
6854
|
+
async describeColumnsV2WithOptions(request: DescribeColumnsV2Request, runtime: $Util.RuntimeOptions): Promise<DescribeColumnsV2Response> {
|
|
6855
|
+
Util.validateModel(request);
|
|
6856
|
+
let query = { };
|
|
6857
|
+
if (!Util.isUnset(request.currentPage)) {
|
|
6858
|
+
query["CurrentPage"] = request.currentPage;
|
|
6859
|
+
}
|
|
6860
|
+
|
|
6861
|
+
if (!Util.isUnset(request.instanceId)) {
|
|
6862
|
+
query["InstanceId"] = request.instanceId;
|
|
6863
|
+
}
|
|
6864
|
+
|
|
6865
|
+
if (!Util.isUnset(request.instanceName)) {
|
|
6866
|
+
query["InstanceName"] = request.instanceName;
|
|
6867
|
+
}
|
|
6868
|
+
|
|
6869
|
+
if (!Util.isUnset(request.lang)) {
|
|
6870
|
+
query["Lang"] = request.lang;
|
|
6871
|
+
}
|
|
6872
|
+
|
|
6873
|
+
if (!Util.isUnset(request.name)) {
|
|
6874
|
+
query["Name"] = request.name;
|
|
6875
|
+
}
|
|
6876
|
+
|
|
6877
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
6878
|
+
query["PageSize"] = request.pageSize;
|
|
6879
|
+
}
|
|
6880
|
+
|
|
6881
|
+
if (!Util.isUnset(request.productCode)) {
|
|
6882
|
+
query["ProductCode"] = request.productCode;
|
|
6883
|
+
}
|
|
6884
|
+
|
|
6885
|
+
if (!Util.isUnset(request.riskLevelId)) {
|
|
6886
|
+
query["RiskLevelId"] = request.riskLevelId;
|
|
6887
|
+
}
|
|
6888
|
+
|
|
6889
|
+
if (!Util.isUnset(request.ruleId)) {
|
|
6890
|
+
query["RuleId"] = request.ruleId;
|
|
6891
|
+
}
|
|
6892
|
+
|
|
6893
|
+
if (!Util.isUnset(request.ruleName)) {
|
|
6894
|
+
query["RuleName"] = request.ruleName;
|
|
6895
|
+
}
|
|
6896
|
+
|
|
6897
|
+
if (!Util.isUnset(request.sensLevelName)) {
|
|
6898
|
+
query["SensLevelName"] = request.sensLevelName;
|
|
6899
|
+
}
|
|
6900
|
+
|
|
6901
|
+
if (!Util.isUnset(request.tableId)) {
|
|
6902
|
+
query["TableId"] = request.tableId;
|
|
6903
|
+
}
|
|
6904
|
+
|
|
6905
|
+
if (!Util.isUnset(request.tableName)) {
|
|
6906
|
+
query["TableName"] = request.tableName;
|
|
6907
|
+
}
|
|
6908
|
+
|
|
6909
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
6910
|
+
query: OpenApiUtil.query(query),
|
|
6911
|
+
});
|
|
6912
|
+
let params = new $OpenApi.Params({
|
|
6913
|
+
action: "DescribeColumnsV2",
|
|
6914
|
+
version: "2019-01-03",
|
|
6915
|
+
protocol: "HTTPS",
|
|
6916
|
+
pathname: "/",
|
|
6917
|
+
method: "POST",
|
|
6918
|
+
authType: "AK",
|
|
6919
|
+
style: "RPC",
|
|
6920
|
+
reqBodyType: "formData",
|
|
6921
|
+
bodyType: "json",
|
|
6922
|
+
});
|
|
6923
|
+
return $tea.cast<DescribeColumnsV2Response>(await this.callApi(params, req, runtime), new DescribeColumnsV2Response({}));
|
|
6924
|
+
}
|
|
6925
|
+
|
|
6926
|
+
async describeColumnsV2(request: DescribeColumnsV2Request): Promise<DescribeColumnsV2Response> {
|
|
6927
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
6928
|
+
return await this.describeColumnsV2WithOptions(request, runtime);
|
|
6929
|
+
}
|
|
6930
|
+
|
|
6151
6931
|
async describeConfigsWithOptions(request: DescribeConfigsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeConfigsResponse> {
|
|
6152
6932
|
Util.validateModel(request);
|
|
6153
6933
|
let query = { };
|
|
@@ -6603,6 +7383,55 @@ export default class Client extends OpenApi {
|
|
|
6603
7383
|
return await this.describeDataObjectColumnDetailWithOptions(request, runtime);
|
|
6604
7384
|
}
|
|
6605
7385
|
|
|
7386
|
+
async describeDataObjectColumnDetailV2WithOptions(request: DescribeDataObjectColumnDetailV2Request, runtime: $Util.RuntimeOptions): Promise<DescribeDataObjectColumnDetailV2Response> {
|
|
7387
|
+
Util.validateModel(request);
|
|
7388
|
+
let query = { };
|
|
7389
|
+
if (!Util.isUnset(request.currentPage)) {
|
|
7390
|
+
query["CurrentPage"] = request.currentPage;
|
|
7391
|
+
}
|
|
7392
|
+
|
|
7393
|
+
if (!Util.isUnset(request.id)) {
|
|
7394
|
+
query["Id"] = request.id;
|
|
7395
|
+
}
|
|
7396
|
+
|
|
7397
|
+
if (!Util.isUnset(request.lang)) {
|
|
7398
|
+
query["Lang"] = request.lang;
|
|
7399
|
+
}
|
|
7400
|
+
|
|
7401
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
7402
|
+
query["PageSize"] = request.pageSize;
|
|
7403
|
+
}
|
|
7404
|
+
|
|
7405
|
+
if (!Util.isUnset(request.productId)) {
|
|
7406
|
+
query["ProductId"] = request.productId;
|
|
7407
|
+
}
|
|
7408
|
+
|
|
7409
|
+
if (!Util.isUnset(request.templateId)) {
|
|
7410
|
+
query["TemplateId"] = request.templateId;
|
|
7411
|
+
}
|
|
7412
|
+
|
|
7413
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7414
|
+
query: OpenApiUtil.query(query),
|
|
7415
|
+
});
|
|
7416
|
+
let params = new $OpenApi.Params({
|
|
7417
|
+
action: "DescribeDataObjectColumnDetailV2",
|
|
7418
|
+
version: "2019-01-03",
|
|
7419
|
+
protocol: "HTTPS",
|
|
7420
|
+
pathname: "/",
|
|
7421
|
+
method: "POST",
|
|
7422
|
+
authType: "AK",
|
|
7423
|
+
style: "RPC",
|
|
7424
|
+
reqBodyType: "formData",
|
|
7425
|
+
bodyType: "json",
|
|
7426
|
+
});
|
|
7427
|
+
return $tea.cast<DescribeDataObjectColumnDetailV2Response>(await this.callApi(params, req, runtime), new DescribeDataObjectColumnDetailV2Response({}));
|
|
7428
|
+
}
|
|
7429
|
+
|
|
7430
|
+
async describeDataObjectColumnDetailV2(request: DescribeDataObjectColumnDetailV2Request): Promise<DescribeDataObjectColumnDetailV2Response> {
|
|
7431
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7432
|
+
return await this.describeDataObjectColumnDetailV2WithOptions(request, runtime);
|
|
7433
|
+
}
|
|
7434
|
+
|
|
6606
7435
|
async describeDataObjectsWithOptions(request: DescribeDataObjectsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDataObjectsResponse> {
|
|
6607
7436
|
Util.validateModel(request);
|
|
6608
7437
|
let query = { };
|
|
@@ -7070,6 +7899,39 @@ export default class Client extends OpenApi {
|
|
|
7070
7899
|
return await this.describeOssObjectDetailWithOptions(request, runtime);
|
|
7071
7900
|
}
|
|
7072
7901
|
|
|
7902
|
+
async describeOssObjectDetailV2WithOptions(request: DescribeOssObjectDetailV2Request, runtime: $Util.RuntimeOptions): Promise<DescribeOssObjectDetailV2Response> {
|
|
7903
|
+
Util.validateModel(request);
|
|
7904
|
+
let query = { };
|
|
7905
|
+
if (!Util.isUnset(request.id)) {
|
|
7906
|
+
query["Id"] = request.id;
|
|
7907
|
+
}
|
|
7908
|
+
|
|
7909
|
+
if (!Util.isUnset(request.lang)) {
|
|
7910
|
+
query["Lang"] = request.lang;
|
|
7911
|
+
}
|
|
7912
|
+
|
|
7913
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
7914
|
+
query: OpenApiUtil.query(query),
|
|
7915
|
+
});
|
|
7916
|
+
let params = new $OpenApi.Params({
|
|
7917
|
+
action: "DescribeOssObjectDetailV2",
|
|
7918
|
+
version: "2019-01-03",
|
|
7919
|
+
protocol: "HTTPS",
|
|
7920
|
+
pathname: "/",
|
|
7921
|
+
method: "POST",
|
|
7922
|
+
authType: "AK",
|
|
7923
|
+
style: "RPC",
|
|
7924
|
+
reqBodyType: "formData",
|
|
7925
|
+
bodyType: "json",
|
|
7926
|
+
});
|
|
7927
|
+
return $tea.cast<DescribeOssObjectDetailV2Response>(await this.callApi(params, req, runtime), new DescribeOssObjectDetailV2Response({}));
|
|
7928
|
+
}
|
|
7929
|
+
|
|
7930
|
+
async describeOssObjectDetailV2(request: DescribeOssObjectDetailV2Request): Promise<DescribeOssObjectDetailV2Response> {
|
|
7931
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
7932
|
+
return await this.describeOssObjectDetailV2WithOptions(request, runtime);
|
|
7933
|
+
}
|
|
7934
|
+
|
|
7073
7935
|
async describeOssObjectsWithOptions(request: DescribeOssObjectsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeOssObjectsResponse> {
|
|
7074
7936
|
Util.validateModel(request);
|
|
7075
7937
|
let query = { };
|