tencentcloud-sdk-python 3.0.1434__py2.py3-none-any.whl → 3.0.1435__py2.py3-none-any.whl
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.
Potentially problematic release.
This version of tencentcloud-sdk-python might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/bi/v20220105/models.py +156 -2
- tencentcloud/cam/v20190116/cam_client.py +23 -0
- tencentcloud/cam/v20190116/errorcodes.py +15 -0
- tencentcloud/cam/v20190116/models.py +180 -0
- tencentcloud/cdb/v20170320/cdb_client.py +2 -1
- tencentcloud/cdb/v20170320/models.py +62 -44
- tencentcloud/cfs/v20190719/cfs_client.py +299 -0
- tencentcloud/cfs/v20190719/errorcodes.py +54 -0
- tencentcloud/cfs/v20190719/models.py +4437 -1976
- tencentcloud/clb/v20180317/models.py +44 -14
- tencentcloud/cls/v20201016/models.py +348 -132
- tencentcloud/ctem/v20231128/models.py +405 -15
- tencentcloud/kms/v20190118/models.py +2 -2
- tencentcloud/live/v20180801/models.py +2 -2
- tencentcloud/lowcode/v20210108/lowcode_client.py +92 -0
- tencentcloud/lowcode/v20210108/models.py +423 -0
- tencentcloud/ssl/v20191205/errorcodes.py +1 -1
- tencentcloud/ssl/v20191205/models.py +39 -24
- tencentcloud/teo/v20220901/models.py +42 -2
- tencentcloud/wedata/v20210820/models.py +321 -15
- tencentcloud/wedata/v20210820/wedata_client.py +23 -0
- {tencentcloud_sdk_python-3.0.1434.dist-info → tencentcloud_sdk_python-3.0.1435.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1434.dist-info → tencentcloud_sdk_python-3.0.1435.dist-info}/RECORD +27 -27
- {tencentcloud_sdk_python-3.0.1434.dist-info → tencentcloud_sdk_python-3.0.1435.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1434.dist-info → tencentcloud_sdk_python-3.0.1435.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1434.dist-info → tencentcloud_sdk_python-3.0.1435.dist-info}/top_level.txt +0 -0
|
@@ -836,6 +836,8 @@ class DescribeAppsRequest(AbstractModel):
|
|
|
836
836
|
|
|
837
837
|
def __init__(self):
|
|
838
838
|
r"""
|
|
839
|
+
:param _CustomerIdList: 企业ID列表,可多选
|
|
840
|
+
:type CustomerIdList: list of int
|
|
839
841
|
:param _EnterpriseUidList: 子公司ID列表
|
|
840
842
|
:type EnterpriseUidList: list of str
|
|
841
843
|
:param _IsNew: 是否新增数据
|
|
@@ -861,6 +863,7 @@ class DescribeAppsRequest(AbstractModel):
|
|
|
861
863
|
:param _Ignored: 是否显示被忽略的数据
|
|
862
864
|
:type Ignored: bool
|
|
863
865
|
"""
|
|
866
|
+
self._CustomerIdList = None
|
|
864
867
|
self._EnterpriseUidList = None
|
|
865
868
|
self._IsNew = None
|
|
866
869
|
self._CustomerId = None
|
|
@@ -874,6 +877,17 @@ class DescribeAppsRequest(AbstractModel):
|
|
|
874
877
|
self._Filters = None
|
|
875
878
|
self._Ignored = None
|
|
876
879
|
|
|
880
|
+
@property
|
|
881
|
+
def CustomerIdList(self):
|
|
882
|
+
"""企业ID列表,可多选
|
|
883
|
+
:rtype: list of int
|
|
884
|
+
"""
|
|
885
|
+
return self._CustomerIdList
|
|
886
|
+
|
|
887
|
+
@CustomerIdList.setter
|
|
888
|
+
def CustomerIdList(self, CustomerIdList):
|
|
889
|
+
self._CustomerIdList = CustomerIdList
|
|
890
|
+
|
|
877
891
|
@property
|
|
878
892
|
def EnterpriseUidList(self):
|
|
879
893
|
"""子公司ID列表
|
|
@@ -1008,6 +1022,7 @@ class DescribeAppsRequest(AbstractModel):
|
|
|
1008
1022
|
|
|
1009
1023
|
|
|
1010
1024
|
def _deserialize(self, params):
|
|
1025
|
+
self._CustomerIdList = params.get("CustomerIdList")
|
|
1011
1026
|
self._EnterpriseUidList = params.get("EnterpriseUidList")
|
|
1012
1027
|
self._IsNew = params.get("IsNew")
|
|
1013
1028
|
self._CustomerId = params.get("CustomerId")
|
|
@@ -1105,6 +1120,8 @@ class DescribeAssetsRequest(AbstractModel):
|
|
|
1105
1120
|
|
|
1106
1121
|
def __init__(self):
|
|
1107
1122
|
r"""
|
|
1123
|
+
:param _CustomerIdList: 企业ID列表,可多选
|
|
1124
|
+
:type CustomerIdList: list of int
|
|
1108
1125
|
:param _IsNew: 是否新增数据
|
|
1109
1126
|
:type IsNew: bool
|
|
1110
1127
|
:param _CustomerId: 企业ID
|
|
@@ -1130,6 +1147,7 @@ class DescribeAssetsRequest(AbstractModel):
|
|
|
1130
1147
|
:param _Ignored: 是否显示被忽略的数据
|
|
1131
1148
|
:type Ignored: bool
|
|
1132
1149
|
"""
|
|
1150
|
+
self._CustomerIdList = None
|
|
1133
1151
|
self._IsNew = None
|
|
1134
1152
|
self._CustomerId = None
|
|
1135
1153
|
self._Limit = None
|
|
@@ -1143,6 +1161,17 @@ class DescribeAssetsRequest(AbstractModel):
|
|
|
1143
1161
|
self._Filters = None
|
|
1144
1162
|
self._Ignored = None
|
|
1145
1163
|
|
|
1164
|
+
@property
|
|
1165
|
+
def CustomerIdList(self):
|
|
1166
|
+
"""企业ID列表,可多选
|
|
1167
|
+
:rtype: list of int
|
|
1168
|
+
"""
|
|
1169
|
+
return self._CustomerIdList
|
|
1170
|
+
|
|
1171
|
+
@CustomerIdList.setter
|
|
1172
|
+
def CustomerIdList(self, CustomerIdList):
|
|
1173
|
+
self._CustomerIdList = CustomerIdList
|
|
1174
|
+
|
|
1146
1175
|
@property
|
|
1147
1176
|
def IsNew(self):
|
|
1148
1177
|
"""是否新增数据
|
|
@@ -1277,6 +1306,7 @@ class DescribeAssetsRequest(AbstractModel):
|
|
|
1277
1306
|
|
|
1278
1307
|
|
|
1279
1308
|
def _deserialize(self, params):
|
|
1309
|
+
self._CustomerIdList = params.get("CustomerIdList")
|
|
1280
1310
|
self._IsNew = params.get("IsNew")
|
|
1281
1311
|
self._CustomerId = params.get("CustomerId")
|
|
1282
1312
|
self._Limit = params.get("Limit")
|
|
@@ -1374,6 +1404,8 @@ class DescribeConfigsRequest(AbstractModel):
|
|
|
1374
1404
|
|
|
1375
1405
|
def __init__(self):
|
|
1376
1406
|
r"""
|
|
1407
|
+
:param _CustomerIdList: 企业ID列表,可多选
|
|
1408
|
+
:type CustomerIdList: list of int
|
|
1377
1409
|
:param _IsAggregation: 是否聚合数据
|
|
1378
1410
|
:type IsAggregation: bool
|
|
1379
1411
|
:param _IsNew: 是否新增数据
|
|
@@ -1401,6 +1433,7 @@ class DescribeConfigsRequest(AbstractModel):
|
|
|
1401
1433
|
:param _Ignored: 是否显示被忽略的数据
|
|
1402
1434
|
:type Ignored: bool
|
|
1403
1435
|
"""
|
|
1436
|
+
self._CustomerIdList = None
|
|
1404
1437
|
self._IsAggregation = None
|
|
1405
1438
|
self._IsNew = None
|
|
1406
1439
|
self._CustomerId = None
|
|
@@ -1415,6 +1448,17 @@ class DescribeConfigsRequest(AbstractModel):
|
|
|
1415
1448
|
self._Filters = None
|
|
1416
1449
|
self._Ignored = None
|
|
1417
1450
|
|
|
1451
|
+
@property
|
|
1452
|
+
def CustomerIdList(self):
|
|
1453
|
+
"""企业ID列表,可多选
|
|
1454
|
+
:rtype: list of int
|
|
1455
|
+
"""
|
|
1456
|
+
return self._CustomerIdList
|
|
1457
|
+
|
|
1458
|
+
@CustomerIdList.setter
|
|
1459
|
+
def CustomerIdList(self, CustomerIdList):
|
|
1460
|
+
self._CustomerIdList = CustomerIdList
|
|
1461
|
+
|
|
1418
1462
|
@property
|
|
1419
1463
|
def IsAggregation(self):
|
|
1420
1464
|
"""是否聚合数据
|
|
@@ -1560,6 +1604,7 @@ class DescribeConfigsRequest(AbstractModel):
|
|
|
1560
1604
|
|
|
1561
1605
|
|
|
1562
1606
|
def _deserialize(self, params):
|
|
1607
|
+
self._CustomerIdList = params.get("CustomerIdList")
|
|
1563
1608
|
self._IsAggregation = params.get("IsAggregation")
|
|
1564
1609
|
self._IsNew = params.get("IsNew")
|
|
1565
1610
|
self._CustomerId = params.get("CustomerId")
|
|
@@ -1837,6 +1882,8 @@ class DescribeDarkWebsRequest(AbstractModel):
|
|
|
1837
1882
|
|
|
1838
1883
|
def __init__(self):
|
|
1839
1884
|
r"""
|
|
1885
|
+
:param _CustomerIdList: 企业ID列表,可多选
|
|
1886
|
+
:type CustomerIdList: list of int
|
|
1840
1887
|
:param _IsNew: 是否新增数据
|
|
1841
1888
|
:type IsNew: bool
|
|
1842
1889
|
:param _CustomerId: 企业ID
|
|
@@ -1862,6 +1909,7 @@ class DescribeDarkWebsRequest(AbstractModel):
|
|
|
1862
1909
|
:param _Ignored: 是否显示被忽略的数据
|
|
1863
1910
|
:type Ignored: bool
|
|
1864
1911
|
"""
|
|
1912
|
+
self._CustomerIdList = None
|
|
1865
1913
|
self._IsNew = None
|
|
1866
1914
|
self._CustomerId = None
|
|
1867
1915
|
self._Limit = None
|
|
@@ -1875,6 +1923,17 @@ class DescribeDarkWebsRequest(AbstractModel):
|
|
|
1875
1923
|
self._Filters = None
|
|
1876
1924
|
self._Ignored = None
|
|
1877
1925
|
|
|
1926
|
+
@property
|
|
1927
|
+
def CustomerIdList(self):
|
|
1928
|
+
"""企业ID列表,可多选
|
|
1929
|
+
:rtype: list of int
|
|
1930
|
+
"""
|
|
1931
|
+
return self._CustomerIdList
|
|
1932
|
+
|
|
1933
|
+
@CustomerIdList.setter
|
|
1934
|
+
def CustomerIdList(self, CustomerIdList):
|
|
1935
|
+
self._CustomerIdList = CustomerIdList
|
|
1936
|
+
|
|
1878
1937
|
@property
|
|
1879
1938
|
def IsNew(self):
|
|
1880
1939
|
"""是否新增数据
|
|
@@ -2009,6 +2068,7 @@ class DescribeDarkWebsRequest(AbstractModel):
|
|
|
2009
2068
|
|
|
2010
2069
|
|
|
2011
2070
|
def _deserialize(self, params):
|
|
2071
|
+
self._CustomerIdList = params.get("CustomerIdList")
|
|
2012
2072
|
self._IsNew = params.get("IsNew")
|
|
2013
2073
|
self._CustomerId = params.get("CustomerId")
|
|
2014
2074
|
self._Limit = params.get("Limit")
|
|
@@ -2106,6 +2166,8 @@ class DescribeDomainsRequest(AbstractModel):
|
|
|
2106
2166
|
|
|
2107
2167
|
def __init__(self):
|
|
2108
2168
|
r"""
|
|
2169
|
+
:param _CustomerIdList: 企业ID列表,可多选
|
|
2170
|
+
:type CustomerIdList: list of int
|
|
2109
2171
|
:param _IsNew: 是否新增数据
|
|
2110
2172
|
:type IsNew: bool
|
|
2111
2173
|
:param _CustomerId: 企业ID
|
|
@@ -2131,6 +2193,7 @@ class DescribeDomainsRequest(AbstractModel):
|
|
|
2131
2193
|
:param _Ignored: 是否显示被忽略的数据
|
|
2132
2194
|
:type Ignored: bool
|
|
2133
2195
|
"""
|
|
2196
|
+
self._CustomerIdList = None
|
|
2134
2197
|
self._IsNew = None
|
|
2135
2198
|
self._CustomerId = None
|
|
2136
2199
|
self._Limit = None
|
|
@@ -2144,6 +2207,17 @@ class DescribeDomainsRequest(AbstractModel):
|
|
|
2144
2207
|
self._Filters = None
|
|
2145
2208
|
self._Ignored = None
|
|
2146
2209
|
|
|
2210
|
+
@property
|
|
2211
|
+
def CustomerIdList(self):
|
|
2212
|
+
"""企业ID列表,可多选
|
|
2213
|
+
:rtype: list of int
|
|
2214
|
+
"""
|
|
2215
|
+
return self._CustomerIdList
|
|
2216
|
+
|
|
2217
|
+
@CustomerIdList.setter
|
|
2218
|
+
def CustomerIdList(self, CustomerIdList):
|
|
2219
|
+
self._CustomerIdList = CustomerIdList
|
|
2220
|
+
|
|
2147
2221
|
@property
|
|
2148
2222
|
def IsNew(self):
|
|
2149
2223
|
"""是否新增数据
|
|
@@ -2278,6 +2352,7 @@ class DescribeDomainsRequest(AbstractModel):
|
|
|
2278
2352
|
|
|
2279
2353
|
|
|
2280
2354
|
def _deserialize(self, params):
|
|
2355
|
+
self._CustomerIdList = params.get("CustomerIdList")
|
|
2281
2356
|
self._IsNew = params.get("IsNew")
|
|
2282
2357
|
self._CustomerId = params.get("CustomerId")
|
|
2283
2358
|
self._Limit = params.get("Limit")
|
|
@@ -2375,6 +2450,8 @@ class DescribeEnterprisesRequest(AbstractModel):
|
|
|
2375
2450
|
|
|
2376
2451
|
def __init__(self):
|
|
2377
2452
|
r"""
|
|
2453
|
+
:param _CustomerIdList: 企业ID列表,可多选
|
|
2454
|
+
:type CustomerIdList: list of int
|
|
2378
2455
|
:param _IsNew: 是否新增数据
|
|
2379
2456
|
:type IsNew: bool
|
|
2380
2457
|
:param _CustomerId: 企业ID
|
|
@@ -2402,6 +2479,7 @@ class DescribeEnterprisesRequest(AbstractModel):
|
|
|
2402
2479
|
:param _IsShowStatistics: 是否展示统计数据
|
|
2403
2480
|
:type IsShowStatistics: bool
|
|
2404
2481
|
"""
|
|
2482
|
+
self._CustomerIdList = None
|
|
2405
2483
|
self._IsNew = None
|
|
2406
2484
|
self._CustomerId = None
|
|
2407
2485
|
self._Limit = None
|
|
@@ -2416,6 +2494,17 @@ class DescribeEnterprisesRequest(AbstractModel):
|
|
|
2416
2494
|
self._Ignored = None
|
|
2417
2495
|
self._IsShowStatistics = None
|
|
2418
2496
|
|
|
2497
|
+
@property
|
|
2498
|
+
def CustomerIdList(self):
|
|
2499
|
+
"""企业ID列表,可多选
|
|
2500
|
+
:rtype: list of int
|
|
2501
|
+
"""
|
|
2502
|
+
return self._CustomerIdList
|
|
2503
|
+
|
|
2504
|
+
@CustomerIdList.setter
|
|
2505
|
+
def CustomerIdList(self, CustomerIdList):
|
|
2506
|
+
self._CustomerIdList = CustomerIdList
|
|
2507
|
+
|
|
2419
2508
|
@property
|
|
2420
2509
|
def IsNew(self):
|
|
2421
2510
|
"""是否新增数据
|
|
@@ -2561,6 +2650,7 @@ class DescribeEnterprisesRequest(AbstractModel):
|
|
|
2561
2650
|
|
|
2562
2651
|
|
|
2563
2652
|
def _deserialize(self, params):
|
|
2653
|
+
self._CustomerIdList = params.get("CustomerIdList")
|
|
2564
2654
|
self._IsNew = params.get("IsNew")
|
|
2565
2655
|
self._CustomerId = params.get("CustomerId")
|
|
2566
2656
|
self._Limit = params.get("Limit")
|
|
@@ -2659,6 +2749,8 @@ class DescribeFakeAppsRequest(AbstractModel):
|
|
|
2659
2749
|
|
|
2660
2750
|
def __init__(self):
|
|
2661
2751
|
r"""
|
|
2752
|
+
:param _CustomerIdList: 企业ID列表,可多选
|
|
2753
|
+
:type CustomerIdList: list of int
|
|
2662
2754
|
:param _IsNew: 是否新增数据
|
|
2663
2755
|
:type IsNew: bool
|
|
2664
2756
|
:param _CustomerId: 企业ID
|
|
@@ -2684,6 +2776,7 @@ class DescribeFakeAppsRequest(AbstractModel):
|
|
|
2684
2776
|
:param _Ignored: 是否显示被忽略的数据
|
|
2685
2777
|
:type Ignored: bool
|
|
2686
2778
|
"""
|
|
2779
|
+
self._CustomerIdList = None
|
|
2687
2780
|
self._IsNew = None
|
|
2688
2781
|
self._CustomerId = None
|
|
2689
2782
|
self._Limit = None
|
|
@@ -2697,6 +2790,17 @@ class DescribeFakeAppsRequest(AbstractModel):
|
|
|
2697
2790
|
self._Filters = None
|
|
2698
2791
|
self._Ignored = None
|
|
2699
2792
|
|
|
2793
|
+
@property
|
|
2794
|
+
def CustomerIdList(self):
|
|
2795
|
+
"""企业ID列表,可多选
|
|
2796
|
+
:rtype: list of int
|
|
2797
|
+
"""
|
|
2798
|
+
return self._CustomerIdList
|
|
2799
|
+
|
|
2800
|
+
@CustomerIdList.setter
|
|
2801
|
+
def CustomerIdList(self, CustomerIdList):
|
|
2802
|
+
self._CustomerIdList = CustomerIdList
|
|
2803
|
+
|
|
2700
2804
|
@property
|
|
2701
2805
|
def IsNew(self):
|
|
2702
2806
|
"""是否新增数据
|
|
@@ -2831,6 +2935,7 @@ class DescribeFakeAppsRequest(AbstractModel):
|
|
|
2831
2935
|
|
|
2832
2936
|
|
|
2833
2937
|
def _deserialize(self, params):
|
|
2938
|
+
self._CustomerIdList = params.get("CustomerIdList")
|
|
2834
2939
|
self._IsNew = params.get("IsNew")
|
|
2835
2940
|
self._CustomerId = params.get("CustomerId")
|
|
2836
2941
|
self._Limit = params.get("Limit")
|
|
@@ -2930,6 +3035,8 @@ class DescribeFakeMiniProgramsRequest(AbstractModel):
|
|
|
2930
3035
|
|
|
2931
3036
|
def __init__(self):
|
|
2932
3037
|
r"""
|
|
3038
|
+
:param _CustomerIdList: 企业ID列表,可多选
|
|
3039
|
+
:type CustomerIdList: list of int
|
|
2933
3040
|
:param _IsNew: 是否新增数据
|
|
2934
3041
|
:type IsNew: bool
|
|
2935
3042
|
:param _CustomerId: 企业ID
|
|
@@ -2955,6 +3062,7 @@ class DescribeFakeMiniProgramsRequest(AbstractModel):
|
|
|
2955
3062
|
:param _Ignored: 是否显示被忽略的数据
|
|
2956
3063
|
:type Ignored: bool
|
|
2957
3064
|
"""
|
|
3065
|
+
self._CustomerIdList = None
|
|
2958
3066
|
self._IsNew = None
|
|
2959
3067
|
self._CustomerId = None
|
|
2960
3068
|
self._Limit = None
|
|
@@ -2968,6 +3076,17 @@ class DescribeFakeMiniProgramsRequest(AbstractModel):
|
|
|
2968
3076
|
self._Filters = None
|
|
2969
3077
|
self._Ignored = None
|
|
2970
3078
|
|
|
3079
|
+
@property
|
|
3080
|
+
def CustomerIdList(self):
|
|
3081
|
+
"""企业ID列表,可多选
|
|
3082
|
+
:rtype: list of int
|
|
3083
|
+
"""
|
|
3084
|
+
return self._CustomerIdList
|
|
3085
|
+
|
|
3086
|
+
@CustomerIdList.setter
|
|
3087
|
+
def CustomerIdList(self, CustomerIdList):
|
|
3088
|
+
self._CustomerIdList = CustomerIdList
|
|
3089
|
+
|
|
2971
3090
|
@property
|
|
2972
3091
|
def IsNew(self):
|
|
2973
3092
|
"""是否新增数据
|
|
@@ -3102,6 +3221,7 @@ class DescribeFakeMiniProgramsRequest(AbstractModel):
|
|
|
3102
3221
|
|
|
3103
3222
|
|
|
3104
3223
|
def _deserialize(self, params):
|
|
3224
|
+
self._CustomerIdList = params.get("CustomerIdList")
|
|
3105
3225
|
self._IsNew = params.get("IsNew")
|
|
3106
3226
|
self._CustomerId = params.get("CustomerId")
|
|
3107
3227
|
self._Limit = params.get("Limit")
|
|
@@ -3201,6 +3321,8 @@ class DescribeFakeWebsitesRequest(AbstractModel):
|
|
|
3201
3321
|
|
|
3202
3322
|
def __init__(self):
|
|
3203
3323
|
r"""
|
|
3324
|
+
:param _CustomerIdList: 企业ID列表,可多选
|
|
3325
|
+
:type CustomerIdList: list of int
|
|
3204
3326
|
:param _IsNew: 是否新增数据
|
|
3205
3327
|
:type IsNew: bool
|
|
3206
3328
|
:param _CustomerId: 企业ID
|
|
@@ -3226,6 +3348,7 @@ class DescribeFakeWebsitesRequest(AbstractModel):
|
|
|
3226
3348
|
:param _Ignored: 是否显示被忽略的数据
|
|
3227
3349
|
:type Ignored: bool
|
|
3228
3350
|
"""
|
|
3351
|
+
self._CustomerIdList = None
|
|
3229
3352
|
self._IsNew = None
|
|
3230
3353
|
self._CustomerId = None
|
|
3231
3354
|
self._Limit = None
|
|
@@ -3239,6 +3362,17 @@ class DescribeFakeWebsitesRequest(AbstractModel):
|
|
|
3239
3362
|
self._Filters = None
|
|
3240
3363
|
self._Ignored = None
|
|
3241
3364
|
|
|
3365
|
+
@property
|
|
3366
|
+
def CustomerIdList(self):
|
|
3367
|
+
"""企业ID列表,可多选
|
|
3368
|
+
:rtype: list of int
|
|
3369
|
+
"""
|
|
3370
|
+
return self._CustomerIdList
|
|
3371
|
+
|
|
3372
|
+
@CustomerIdList.setter
|
|
3373
|
+
def CustomerIdList(self, CustomerIdList):
|
|
3374
|
+
self._CustomerIdList = CustomerIdList
|
|
3375
|
+
|
|
3242
3376
|
@property
|
|
3243
3377
|
def IsNew(self):
|
|
3244
3378
|
"""是否新增数据
|
|
@@ -3373,6 +3507,7 @@ class DescribeFakeWebsitesRequest(AbstractModel):
|
|
|
3373
3507
|
|
|
3374
3508
|
|
|
3375
3509
|
def _deserialize(self, params):
|
|
3510
|
+
self._CustomerIdList = params.get("CustomerIdList")
|
|
3376
3511
|
self._IsNew = params.get("IsNew")
|
|
3377
3512
|
self._CustomerId = params.get("CustomerId")
|
|
3378
3513
|
self._Limit = params.get("Limit")
|
|
@@ -3472,6 +3607,8 @@ class DescribeFakeWechatOfficialsRequest(AbstractModel):
|
|
|
3472
3607
|
|
|
3473
3608
|
def __init__(self):
|
|
3474
3609
|
r"""
|
|
3610
|
+
:param _CustomerIdList: 企业ID列表,可多选
|
|
3611
|
+
:type CustomerIdList: list of int
|
|
3475
3612
|
:param _IsNew: 是否新增数据
|
|
3476
3613
|
:type IsNew: bool
|
|
3477
3614
|
:param _CustomerId: 企业ID
|
|
@@ -3497,6 +3634,7 @@ class DescribeFakeWechatOfficialsRequest(AbstractModel):
|
|
|
3497
3634
|
:param _Ignored: 是否显示被忽略的数据
|
|
3498
3635
|
:type Ignored: bool
|
|
3499
3636
|
"""
|
|
3637
|
+
self._CustomerIdList = None
|
|
3500
3638
|
self._IsNew = None
|
|
3501
3639
|
self._CustomerId = None
|
|
3502
3640
|
self._Limit = None
|
|
@@ -3510,6 +3648,17 @@ class DescribeFakeWechatOfficialsRequest(AbstractModel):
|
|
|
3510
3648
|
self._Filters = None
|
|
3511
3649
|
self._Ignored = None
|
|
3512
3650
|
|
|
3651
|
+
@property
|
|
3652
|
+
def CustomerIdList(self):
|
|
3653
|
+
"""企业ID列表,可多选
|
|
3654
|
+
:rtype: list of int
|
|
3655
|
+
"""
|
|
3656
|
+
return self._CustomerIdList
|
|
3657
|
+
|
|
3658
|
+
@CustomerIdList.setter
|
|
3659
|
+
def CustomerIdList(self, CustomerIdList):
|
|
3660
|
+
self._CustomerIdList = CustomerIdList
|
|
3661
|
+
|
|
3513
3662
|
@property
|
|
3514
3663
|
def IsNew(self):
|
|
3515
3664
|
"""是否新增数据
|
|
@@ -3644,6 +3793,7 @@ class DescribeFakeWechatOfficialsRequest(AbstractModel):
|
|
|
3644
3793
|
|
|
3645
3794
|
|
|
3646
3795
|
def _deserialize(self, params):
|
|
3796
|
+
self._CustomerIdList = params.get("CustomerIdList")
|
|
3647
3797
|
self._IsNew = params.get("IsNew")
|
|
3648
3798
|
self._CustomerId = params.get("CustomerId")
|
|
3649
3799
|
self._Limit = params.get("Limit")
|
|
@@ -4012,6 +4162,8 @@ class DescribeHttpsRequest(AbstractModel):
|
|
|
4012
4162
|
|
|
4013
4163
|
def __init__(self):
|
|
4014
4164
|
r"""
|
|
4165
|
+
:param _CustomerIdList: 企业ID列表,可多选
|
|
4166
|
+
:type CustomerIdList: list of int
|
|
4015
4167
|
:param _IsAggregation: 是否聚合数据
|
|
4016
4168
|
:type IsAggregation: bool
|
|
4017
4169
|
:param _IsNew: 是否新增数据
|
|
@@ -4043,6 +4195,7 @@ class DescribeHttpsRequest(AbstractModel):
|
|
|
4043
4195
|
:param _HasExpirationRisk: 是否仅显示过期风险资产
|
|
4044
4196
|
:type HasExpirationRisk: bool
|
|
4045
4197
|
"""
|
|
4198
|
+
self._CustomerIdList = None
|
|
4046
4199
|
self._IsAggregation = None
|
|
4047
4200
|
self._IsNew = None
|
|
4048
4201
|
self._CustomerId = None
|
|
@@ -4059,6 +4212,17 @@ class DescribeHttpsRequest(AbstractModel):
|
|
|
4059
4212
|
self._IsShowChange = None
|
|
4060
4213
|
self._HasExpirationRisk = None
|
|
4061
4214
|
|
|
4215
|
+
@property
|
|
4216
|
+
def CustomerIdList(self):
|
|
4217
|
+
"""企业ID列表,可多选
|
|
4218
|
+
:rtype: list of int
|
|
4219
|
+
"""
|
|
4220
|
+
return self._CustomerIdList
|
|
4221
|
+
|
|
4222
|
+
@CustomerIdList.setter
|
|
4223
|
+
def CustomerIdList(self, CustomerIdList):
|
|
4224
|
+
self._CustomerIdList = CustomerIdList
|
|
4225
|
+
|
|
4062
4226
|
@property
|
|
4063
4227
|
def IsAggregation(self):
|
|
4064
4228
|
"""是否聚合数据
|
|
@@ -4226,6 +4390,7 @@ class DescribeHttpsRequest(AbstractModel):
|
|
|
4226
4390
|
|
|
4227
4391
|
|
|
4228
4392
|
def _deserialize(self, params):
|
|
4393
|
+
self._CustomerIdList = params.get("CustomerIdList")
|
|
4229
4394
|
self._IsAggregation = params.get("IsAggregation")
|
|
4230
4395
|
self._IsNew = params.get("IsNew")
|
|
4231
4396
|
self._CustomerId = params.get("CustomerId")
|
|
@@ -4589,6 +4754,8 @@ class DescribeLeakageCodesRequest(AbstractModel):
|
|
|
4589
4754
|
|
|
4590
4755
|
def __init__(self):
|
|
4591
4756
|
r"""
|
|
4757
|
+
:param _CustomerIdList: 企业ID列表,可多选
|
|
4758
|
+
:type CustomerIdList: list of int
|
|
4592
4759
|
:param _IsAggregation: 是否聚合数据
|
|
4593
4760
|
:type IsAggregation: bool
|
|
4594
4761
|
:param _IsNew: 是否新增数据
|
|
@@ -4616,6 +4783,7 @@ class DescribeLeakageCodesRequest(AbstractModel):
|
|
|
4616
4783
|
:param _Ignored: 是否显示被忽略的数据
|
|
4617
4784
|
:type Ignored: bool
|
|
4618
4785
|
"""
|
|
4786
|
+
self._CustomerIdList = None
|
|
4619
4787
|
self._IsAggregation = None
|
|
4620
4788
|
self._IsNew = None
|
|
4621
4789
|
self._CustomerId = None
|
|
@@ -4630,6 +4798,17 @@ class DescribeLeakageCodesRequest(AbstractModel):
|
|
|
4630
4798
|
self._Filters = None
|
|
4631
4799
|
self._Ignored = None
|
|
4632
4800
|
|
|
4801
|
+
@property
|
|
4802
|
+
def CustomerIdList(self):
|
|
4803
|
+
"""企业ID列表,可多选
|
|
4804
|
+
:rtype: list of int
|
|
4805
|
+
"""
|
|
4806
|
+
return self._CustomerIdList
|
|
4807
|
+
|
|
4808
|
+
@CustomerIdList.setter
|
|
4809
|
+
def CustomerIdList(self, CustomerIdList):
|
|
4810
|
+
self._CustomerIdList = CustomerIdList
|
|
4811
|
+
|
|
4633
4812
|
@property
|
|
4634
4813
|
def IsAggregation(self):
|
|
4635
4814
|
"""是否聚合数据
|
|
@@ -4775,6 +4954,7 @@ class DescribeLeakageCodesRequest(AbstractModel):
|
|
|
4775
4954
|
|
|
4776
4955
|
|
|
4777
4956
|
def _deserialize(self, params):
|
|
4957
|
+
self._CustomerIdList = params.get("CustomerIdList")
|
|
4778
4958
|
self._IsAggregation = params.get("IsAggregation")
|
|
4779
4959
|
self._IsNew = params.get("IsNew")
|
|
4780
4960
|
self._CustomerId = params.get("CustomerId")
|
|
@@ -4875,6 +5055,8 @@ class DescribeLeakageDatasRequest(AbstractModel):
|
|
|
4875
5055
|
|
|
4876
5056
|
def __init__(self):
|
|
4877
5057
|
r"""
|
|
5058
|
+
:param _CustomerIdList: 企业ID列表,可多选
|
|
5059
|
+
:type CustomerIdList: list of int
|
|
4878
5060
|
:param _IsAggregation: 是否聚合数据
|
|
4879
5061
|
:type IsAggregation: bool
|
|
4880
5062
|
:param _IsNew: 是否新增数据
|
|
@@ -4902,6 +5084,7 @@ class DescribeLeakageDatasRequest(AbstractModel):
|
|
|
4902
5084
|
:param _Ignored: 是否显示被忽略的数据
|
|
4903
5085
|
:type Ignored: bool
|
|
4904
5086
|
"""
|
|
5087
|
+
self._CustomerIdList = None
|
|
4905
5088
|
self._IsAggregation = None
|
|
4906
5089
|
self._IsNew = None
|
|
4907
5090
|
self._CustomerId = None
|
|
@@ -4916,6 +5099,17 @@ class DescribeLeakageDatasRequest(AbstractModel):
|
|
|
4916
5099
|
self._Filters = None
|
|
4917
5100
|
self._Ignored = None
|
|
4918
5101
|
|
|
5102
|
+
@property
|
|
5103
|
+
def CustomerIdList(self):
|
|
5104
|
+
"""企业ID列表,可多选
|
|
5105
|
+
:rtype: list of int
|
|
5106
|
+
"""
|
|
5107
|
+
return self._CustomerIdList
|
|
5108
|
+
|
|
5109
|
+
@CustomerIdList.setter
|
|
5110
|
+
def CustomerIdList(self, CustomerIdList):
|
|
5111
|
+
self._CustomerIdList = CustomerIdList
|
|
5112
|
+
|
|
4919
5113
|
@property
|
|
4920
5114
|
def IsAggregation(self):
|
|
4921
5115
|
"""是否聚合数据
|
|
@@ -5061,6 +5255,7 @@ class DescribeLeakageDatasRequest(AbstractModel):
|
|
|
5061
5255
|
|
|
5062
5256
|
|
|
5063
5257
|
def _deserialize(self, params):
|
|
5258
|
+
self._CustomerIdList = params.get("CustomerIdList")
|
|
5064
5259
|
self._IsAggregation = params.get("IsAggregation")
|
|
5065
5260
|
self._IsNew = params.get("IsNew")
|
|
5066
5261
|
self._CustomerId = params.get("CustomerId")
|
|
@@ -5161,6 +5356,8 @@ class DescribeLeakageEmailsRequest(AbstractModel):
|
|
|
5161
5356
|
|
|
5162
5357
|
def __init__(self):
|
|
5163
5358
|
r"""
|
|
5359
|
+
:param _CustomerIdList: 企业ID列表,可多选
|
|
5360
|
+
:type CustomerIdList: list of int
|
|
5164
5361
|
:param _IsAggregation: 是否聚合数据
|
|
5165
5362
|
:type IsAggregation: bool
|
|
5166
5363
|
:param _IsNew: 是否新增数据
|
|
@@ -5188,6 +5385,7 @@ class DescribeLeakageEmailsRequest(AbstractModel):
|
|
|
5188
5385
|
:param _Ignored: 是否显示被忽略的数据
|
|
5189
5386
|
:type Ignored: bool
|
|
5190
5387
|
"""
|
|
5388
|
+
self._CustomerIdList = None
|
|
5191
5389
|
self._IsAggregation = None
|
|
5192
5390
|
self._IsNew = None
|
|
5193
5391
|
self._CustomerId = None
|
|
@@ -5202,6 +5400,17 @@ class DescribeLeakageEmailsRequest(AbstractModel):
|
|
|
5202
5400
|
self._Filters = None
|
|
5203
5401
|
self._Ignored = None
|
|
5204
5402
|
|
|
5403
|
+
@property
|
|
5404
|
+
def CustomerIdList(self):
|
|
5405
|
+
"""企业ID列表,可多选
|
|
5406
|
+
:rtype: list of int
|
|
5407
|
+
"""
|
|
5408
|
+
return self._CustomerIdList
|
|
5409
|
+
|
|
5410
|
+
@CustomerIdList.setter
|
|
5411
|
+
def CustomerIdList(self, CustomerIdList):
|
|
5412
|
+
self._CustomerIdList = CustomerIdList
|
|
5413
|
+
|
|
5205
5414
|
@property
|
|
5206
5415
|
def IsAggregation(self):
|
|
5207
5416
|
"""是否聚合数据
|
|
@@ -5347,6 +5556,7 @@ class DescribeLeakageEmailsRequest(AbstractModel):
|
|
|
5347
5556
|
|
|
5348
5557
|
|
|
5349
5558
|
def _deserialize(self, params):
|
|
5559
|
+
self._CustomerIdList = params.get("CustomerIdList")
|
|
5350
5560
|
self._IsAggregation = params.get("IsAggregation")
|
|
5351
5561
|
self._IsNew = params.get("IsNew")
|
|
5352
5562
|
self._CustomerId = params.get("CustomerId")
|
|
@@ -5447,6 +5657,8 @@ class DescribeManagesRequest(AbstractModel):
|
|
|
5447
5657
|
|
|
5448
5658
|
def __init__(self):
|
|
5449
5659
|
r"""
|
|
5660
|
+
:param _CustomerIdList: 企业ID列表,可多选
|
|
5661
|
+
:type CustomerIdList: list of int
|
|
5450
5662
|
:param _IsAggregation: 是否聚合数据
|
|
5451
5663
|
:type IsAggregation: bool
|
|
5452
5664
|
:param _IsNew: 是否新增数据
|
|
@@ -5474,6 +5686,7 @@ class DescribeManagesRequest(AbstractModel):
|
|
|
5474
5686
|
:param _Ignored: 是否显示被忽略的数据
|
|
5475
5687
|
:type Ignored: bool
|
|
5476
5688
|
"""
|
|
5689
|
+
self._CustomerIdList = None
|
|
5477
5690
|
self._IsAggregation = None
|
|
5478
5691
|
self._IsNew = None
|
|
5479
5692
|
self._CustomerId = None
|
|
@@ -5488,6 +5701,17 @@ class DescribeManagesRequest(AbstractModel):
|
|
|
5488
5701
|
self._Filters = None
|
|
5489
5702
|
self._Ignored = None
|
|
5490
5703
|
|
|
5704
|
+
@property
|
|
5705
|
+
def CustomerIdList(self):
|
|
5706
|
+
"""企业ID列表,可多选
|
|
5707
|
+
:rtype: list of int
|
|
5708
|
+
"""
|
|
5709
|
+
return self._CustomerIdList
|
|
5710
|
+
|
|
5711
|
+
@CustomerIdList.setter
|
|
5712
|
+
def CustomerIdList(self, CustomerIdList):
|
|
5713
|
+
self._CustomerIdList = CustomerIdList
|
|
5714
|
+
|
|
5491
5715
|
@property
|
|
5492
5716
|
def IsAggregation(self):
|
|
5493
5717
|
"""是否聚合数据
|
|
@@ -5633,6 +5857,7 @@ class DescribeManagesRequest(AbstractModel):
|
|
|
5633
5857
|
|
|
5634
5858
|
|
|
5635
5859
|
def _deserialize(self, params):
|
|
5860
|
+
self._CustomerIdList = params.get("CustomerIdList")
|
|
5636
5861
|
self._IsAggregation = params.get("IsAggregation")
|
|
5637
5862
|
self._IsNew = params.get("IsNew")
|
|
5638
5863
|
self._CustomerId = params.get("CustomerId")
|
|
@@ -5731,6 +5956,8 @@ class DescribeNetDisksRequest(AbstractModel):
|
|
|
5731
5956
|
|
|
5732
5957
|
def __init__(self):
|
|
5733
5958
|
r"""
|
|
5959
|
+
:param _CustomerIdList: 企业ID列表,可多选
|
|
5960
|
+
:type CustomerIdList: list of int
|
|
5734
5961
|
:param _IsNew: 是否新增数据
|
|
5735
5962
|
:type IsNew: bool
|
|
5736
5963
|
:param _CustomerId: 企业ID
|
|
@@ -5756,6 +5983,7 @@ class DescribeNetDisksRequest(AbstractModel):
|
|
|
5756
5983
|
:param _Ignored: 是否显示被忽略的数据
|
|
5757
5984
|
:type Ignored: bool
|
|
5758
5985
|
"""
|
|
5986
|
+
self._CustomerIdList = None
|
|
5759
5987
|
self._IsNew = None
|
|
5760
5988
|
self._CustomerId = None
|
|
5761
5989
|
self._Limit = None
|
|
@@ -5769,6 +5997,17 @@ class DescribeNetDisksRequest(AbstractModel):
|
|
|
5769
5997
|
self._Filters = None
|
|
5770
5998
|
self._Ignored = None
|
|
5771
5999
|
|
|
6000
|
+
@property
|
|
6001
|
+
def CustomerIdList(self):
|
|
6002
|
+
"""企业ID列表,可多选
|
|
6003
|
+
:rtype: list of int
|
|
6004
|
+
"""
|
|
6005
|
+
return self._CustomerIdList
|
|
6006
|
+
|
|
6007
|
+
@CustomerIdList.setter
|
|
6008
|
+
def CustomerIdList(self, CustomerIdList):
|
|
6009
|
+
self._CustomerIdList = CustomerIdList
|
|
6010
|
+
|
|
5772
6011
|
@property
|
|
5773
6012
|
def IsNew(self):
|
|
5774
6013
|
"""是否新增数据
|
|
@@ -5903,6 +6142,7 @@ class DescribeNetDisksRequest(AbstractModel):
|
|
|
5903
6142
|
|
|
5904
6143
|
|
|
5905
6144
|
def _deserialize(self, params):
|
|
6145
|
+
self._CustomerIdList = params.get("CustomerIdList")
|
|
5906
6146
|
self._IsNew = params.get("IsNew")
|
|
5907
6147
|
self._CustomerId = params.get("CustomerId")
|
|
5908
6148
|
self._Limit = params.get("Limit")
|
|
@@ -6000,6 +6240,8 @@ class DescribePortsRequest(AbstractModel):
|
|
|
6000
6240
|
|
|
6001
6241
|
def __init__(self):
|
|
6002
6242
|
r"""
|
|
6243
|
+
:param _CustomerIdList: 企业ID列表,可多选
|
|
6244
|
+
:type CustomerIdList: list of int
|
|
6003
6245
|
:param _IsAggregation: 是否聚合数据
|
|
6004
6246
|
:type IsAggregation: bool
|
|
6005
6247
|
:param _IsNew: 是否新增数据
|
|
@@ -6027,6 +6269,7 @@ class DescribePortsRequest(AbstractModel):
|
|
|
6027
6269
|
:param _Ignored: 是否显示被忽略的数据
|
|
6028
6270
|
:type Ignored: bool
|
|
6029
6271
|
"""
|
|
6272
|
+
self._CustomerIdList = None
|
|
6030
6273
|
self._IsAggregation = None
|
|
6031
6274
|
self._IsNew = None
|
|
6032
6275
|
self._CustomerId = None
|
|
@@ -6041,6 +6284,17 @@ class DescribePortsRequest(AbstractModel):
|
|
|
6041
6284
|
self._Filters = None
|
|
6042
6285
|
self._Ignored = None
|
|
6043
6286
|
|
|
6287
|
+
@property
|
|
6288
|
+
def CustomerIdList(self):
|
|
6289
|
+
"""企业ID列表,可多选
|
|
6290
|
+
:rtype: list of int
|
|
6291
|
+
"""
|
|
6292
|
+
return self._CustomerIdList
|
|
6293
|
+
|
|
6294
|
+
@CustomerIdList.setter
|
|
6295
|
+
def CustomerIdList(self, CustomerIdList):
|
|
6296
|
+
self._CustomerIdList = CustomerIdList
|
|
6297
|
+
|
|
6044
6298
|
@property
|
|
6045
6299
|
def IsAggregation(self):
|
|
6046
6300
|
"""是否聚合数据
|
|
@@ -6186,6 +6440,7 @@ class DescribePortsRequest(AbstractModel):
|
|
|
6186
6440
|
|
|
6187
6441
|
|
|
6188
6442
|
def _deserialize(self, params):
|
|
6443
|
+
self._CustomerIdList = params.get("CustomerIdList")
|
|
6189
6444
|
self._IsAggregation = params.get("IsAggregation")
|
|
6190
6445
|
self._IsNew = params.get("IsNew")
|
|
6191
6446
|
self._CustomerId = params.get("CustomerId")
|
|
@@ -6284,6 +6539,8 @@ class DescribeSensitiveInfosRequest(AbstractModel):
|
|
|
6284
6539
|
|
|
6285
6540
|
def __init__(self):
|
|
6286
6541
|
r"""
|
|
6542
|
+
:param _CustomerIdList: 企业ID列表,可多选
|
|
6543
|
+
:type CustomerIdList: list of int
|
|
6287
6544
|
:param _IsAggregation: 是否聚合数据
|
|
6288
6545
|
:type IsAggregation: bool
|
|
6289
6546
|
:param _IsNew: 是否新增数据
|
|
@@ -6311,6 +6568,7 @@ class DescribeSensitiveInfosRequest(AbstractModel):
|
|
|
6311
6568
|
:param _Ignored: 是否显示被忽略的数据
|
|
6312
6569
|
:type Ignored: bool
|
|
6313
6570
|
"""
|
|
6571
|
+
self._CustomerIdList = None
|
|
6314
6572
|
self._IsAggregation = None
|
|
6315
6573
|
self._IsNew = None
|
|
6316
6574
|
self._CustomerId = None
|
|
@@ -6325,6 +6583,17 @@ class DescribeSensitiveInfosRequest(AbstractModel):
|
|
|
6325
6583
|
self._Filters = None
|
|
6326
6584
|
self._Ignored = None
|
|
6327
6585
|
|
|
6586
|
+
@property
|
|
6587
|
+
def CustomerIdList(self):
|
|
6588
|
+
"""企业ID列表,可多选
|
|
6589
|
+
:rtype: list of int
|
|
6590
|
+
"""
|
|
6591
|
+
return self._CustomerIdList
|
|
6592
|
+
|
|
6593
|
+
@CustomerIdList.setter
|
|
6594
|
+
def CustomerIdList(self, CustomerIdList):
|
|
6595
|
+
self._CustomerIdList = CustomerIdList
|
|
6596
|
+
|
|
6328
6597
|
@property
|
|
6329
6598
|
def IsAggregation(self):
|
|
6330
6599
|
"""是否聚合数据
|
|
@@ -6470,6 +6739,7 @@ class DescribeSensitiveInfosRequest(AbstractModel):
|
|
|
6470
6739
|
|
|
6471
6740
|
|
|
6472
6741
|
def _deserialize(self, params):
|
|
6742
|
+
self._CustomerIdList = params.get("CustomerIdList")
|
|
6473
6743
|
self._IsAggregation = params.get("IsAggregation")
|
|
6474
6744
|
self._IsNew = params.get("IsNew")
|
|
6475
6745
|
self._CustomerId = params.get("CustomerId")
|
|
@@ -6568,6 +6838,8 @@ class DescribeSubDomainsRequest(AbstractModel):
|
|
|
6568
6838
|
|
|
6569
6839
|
def __init__(self):
|
|
6570
6840
|
r"""
|
|
6841
|
+
:param _CustomerIdList: 企业ID列表,可多选
|
|
6842
|
+
:type CustomerIdList: list of int
|
|
6571
6843
|
:param _IsNew: 是否新增数据
|
|
6572
6844
|
:type IsNew: bool
|
|
6573
6845
|
:param _CustomerId: 企业ID
|
|
@@ -6595,6 +6867,7 @@ class DescribeSubDomainsRequest(AbstractModel):
|
|
|
6595
6867
|
:param _Ignored: 是否显示被忽略的数据
|
|
6596
6868
|
:type Ignored: bool
|
|
6597
6869
|
"""
|
|
6870
|
+
self._CustomerIdList = None
|
|
6598
6871
|
self._IsNew = None
|
|
6599
6872
|
self._CustomerId = None
|
|
6600
6873
|
self._IsAggregation = None
|
|
@@ -6609,6 +6882,17 @@ class DescribeSubDomainsRequest(AbstractModel):
|
|
|
6609
6882
|
self._Filters = None
|
|
6610
6883
|
self._Ignored = None
|
|
6611
6884
|
|
|
6885
|
+
@property
|
|
6886
|
+
def CustomerIdList(self):
|
|
6887
|
+
"""企业ID列表,可多选
|
|
6888
|
+
:rtype: list of int
|
|
6889
|
+
"""
|
|
6890
|
+
return self._CustomerIdList
|
|
6891
|
+
|
|
6892
|
+
@CustomerIdList.setter
|
|
6893
|
+
def CustomerIdList(self, CustomerIdList):
|
|
6894
|
+
self._CustomerIdList = CustomerIdList
|
|
6895
|
+
|
|
6612
6896
|
@property
|
|
6613
6897
|
def IsNew(self):
|
|
6614
6898
|
"""是否新增数据
|
|
@@ -6754,6 +7038,7 @@ class DescribeSubDomainsRequest(AbstractModel):
|
|
|
6754
7038
|
|
|
6755
7039
|
|
|
6756
7040
|
def _deserialize(self, params):
|
|
7041
|
+
self._CustomerIdList = params.get("CustomerIdList")
|
|
6757
7042
|
self._IsNew = params.get("IsNew")
|
|
6758
7043
|
self._CustomerId = params.get("CustomerId")
|
|
6759
7044
|
self._IsAggregation = params.get("IsAggregation")
|
|
@@ -6852,6 +7137,8 @@ class DescribeSuspiciousAssetsRequest(AbstractModel):
|
|
|
6852
7137
|
|
|
6853
7138
|
def __init__(self):
|
|
6854
7139
|
r"""
|
|
7140
|
+
:param _CustomerIdList: 企业ID列表,可多选
|
|
7141
|
+
:type CustomerIdList: list of int
|
|
6855
7142
|
:param _IsAggregation: 是否聚合数据
|
|
6856
7143
|
:type IsAggregation: bool
|
|
6857
7144
|
:param _IsNew: 是否新增数据
|
|
@@ -6879,6 +7166,7 @@ class DescribeSuspiciousAssetsRequest(AbstractModel):
|
|
|
6879
7166
|
:param _Ignored: 是否显示被忽略的数据
|
|
6880
7167
|
:type Ignored: bool
|
|
6881
7168
|
"""
|
|
7169
|
+
self._CustomerIdList = None
|
|
6882
7170
|
self._IsAggregation = None
|
|
6883
7171
|
self._IsNew = None
|
|
6884
7172
|
self._CustomerId = None
|
|
@@ -6893,6 +7181,17 @@ class DescribeSuspiciousAssetsRequest(AbstractModel):
|
|
|
6893
7181
|
self._Filters = None
|
|
6894
7182
|
self._Ignored = None
|
|
6895
7183
|
|
|
7184
|
+
@property
|
|
7185
|
+
def CustomerIdList(self):
|
|
7186
|
+
"""企业ID列表,可多选
|
|
7187
|
+
:rtype: list of int
|
|
7188
|
+
"""
|
|
7189
|
+
return self._CustomerIdList
|
|
7190
|
+
|
|
7191
|
+
@CustomerIdList.setter
|
|
7192
|
+
def CustomerIdList(self, CustomerIdList):
|
|
7193
|
+
self._CustomerIdList = CustomerIdList
|
|
7194
|
+
|
|
6896
7195
|
@property
|
|
6897
7196
|
def IsAggregation(self):
|
|
6898
7197
|
"""是否聚合数据
|
|
@@ -7038,6 +7337,7 @@ class DescribeSuspiciousAssetsRequest(AbstractModel):
|
|
|
7038
7337
|
|
|
7039
7338
|
|
|
7040
7339
|
def _deserialize(self, params):
|
|
7340
|
+
self._CustomerIdList = params.get("CustomerIdList")
|
|
7041
7341
|
self._IsAggregation = params.get("IsAggregation")
|
|
7042
7342
|
self._IsNew = params.get("IsNew")
|
|
7043
7343
|
self._CustomerId = params.get("CustomerId")
|
|
@@ -7136,6 +7436,8 @@ class DescribeVulsRequest(AbstractModel):
|
|
|
7136
7436
|
|
|
7137
7437
|
def __init__(self):
|
|
7138
7438
|
r"""
|
|
7439
|
+
:param _CustomerIdList: 企业ID列表,可多选
|
|
7440
|
+
:type CustomerIdList: list of int
|
|
7139
7441
|
:param _IsNew: 是否新增数据
|
|
7140
7442
|
:type IsNew: bool
|
|
7141
7443
|
:param _CustomerId: 企业ID
|
|
@@ -7161,6 +7463,7 @@ class DescribeVulsRequest(AbstractModel):
|
|
|
7161
7463
|
:param _Ignored: 是否显示被忽略的数据
|
|
7162
7464
|
:type Ignored: bool
|
|
7163
7465
|
"""
|
|
7466
|
+
self._CustomerIdList = None
|
|
7164
7467
|
self._IsNew = None
|
|
7165
7468
|
self._CustomerId = None
|
|
7166
7469
|
self._Limit = None
|
|
@@ -7174,6 +7477,17 @@ class DescribeVulsRequest(AbstractModel):
|
|
|
7174
7477
|
self._Filters = None
|
|
7175
7478
|
self._Ignored = None
|
|
7176
7479
|
|
|
7480
|
+
@property
|
|
7481
|
+
def CustomerIdList(self):
|
|
7482
|
+
"""企业ID列表,可多选
|
|
7483
|
+
:rtype: list of int
|
|
7484
|
+
"""
|
|
7485
|
+
return self._CustomerIdList
|
|
7486
|
+
|
|
7487
|
+
@CustomerIdList.setter
|
|
7488
|
+
def CustomerIdList(self, CustomerIdList):
|
|
7489
|
+
self._CustomerIdList = CustomerIdList
|
|
7490
|
+
|
|
7177
7491
|
@property
|
|
7178
7492
|
def IsNew(self):
|
|
7179
7493
|
"""是否新增数据
|
|
@@ -7308,6 +7622,7 @@ class DescribeVulsRequest(AbstractModel):
|
|
|
7308
7622
|
|
|
7309
7623
|
|
|
7310
7624
|
def _deserialize(self, params):
|
|
7625
|
+
self._CustomerIdList = params.get("CustomerIdList")
|
|
7311
7626
|
self._IsNew = params.get("IsNew")
|
|
7312
7627
|
self._CustomerId = params.get("CustomerId")
|
|
7313
7628
|
self._Limit = params.get("Limit")
|
|
@@ -7405,6 +7720,8 @@ class DescribeWeakPasswordsRequest(AbstractModel):
|
|
|
7405
7720
|
|
|
7406
7721
|
def __init__(self):
|
|
7407
7722
|
r"""
|
|
7723
|
+
:param _CustomerIdList: 企业ID列表,可多选
|
|
7724
|
+
:type CustomerIdList: list of int
|
|
7408
7725
|
:param _IsNew: 是否新增数据
|
|
7409
7726
|
:type IsNew: bool
|
|
7410
7727
|
:param _CustomerId: 企业ID
|
|
@@ -7430,6 +7747,7 @@ class DescribeWeakPasswordsRequest(AbstractModel):
|
|
|
7430
7747
|
:param _Ignored: 是否显示被忽略的数据
|
|
7431
7748
|
:type Ignored: bool
|
|
7432
7749
|
"""
|
|
7750
|
+
self._CustomerIdList = None
|
|
7433
7751
|
self._IsNew = None
|
|
7434
7752
|
self._CustomerId = None
|
|
7435
7753
|
self._Limit = None
|
|
@@ -7443,6 +7761,17 @@ class DescribeWeakPasswordsRequest(AbstractModel):
|
|
|
7443
7761
|
self._Filters = None
|
|
7444
7762
|
self._Ignored = None
|
|
7445
7763
|
|
|
7764
|
+
@property
|
|
7765
|
+
def CustomerIdList(self):
|
|
7766
|
+
"""企业ID列表,可多选
|
|
7767
|
+
:rtype: list of int
|
|
7768
|
+
"""
|
|
7769
|
+
return self._CustomerIdList
|
|
7770
|
+
|
|
7771
|
+
@CustomerIdList.setter
|
|
7772
|
+
def CustomerIdList(self, CustomerIdList):
|
|
7773
|
+
self._CustomerIdList = CustomerIdList
|
|
7774
|
+
|
|
7446
7775
|
@property
|
|
7447
7776
|
def IsNew(self):
|
|
7448
7777
|
"""是否新增数据
|
|
@@ -7577,6 +7906,7 @@ class DescribeWeakPasswordsRequest(AbstractModel):
|
|
|
7577
7906
|
|
|
7578
7907
|
|
|
7579
7908
|
def _deserialize(self, params):
|
|
7909
|
+
self._CustomerIdList = params.get("CustomerIdList")
|
|
7580
7910
|
self._IsNew = params.get("IsNew")
|
|
7581
7911
|
self._CustomerId = params.get("CustomerId")
|
|
7582
7912
|
self._Limit = params.get("Limit")
|
|
@@ -7674,6 +8004,8 @@ class DescribeWechatAppletsRequest(AbstractModel):
|
|
|
7674
8004
|
|
|
7675
8005
|
def __init__(self):
|
|
7676
8006
|
r"""
|
|
8007
|
+
:param _CustomerIdList: 企业ID列表,可多选
|
|
8008
|
+
:type CustomerIdList: list of int
|
|
7677
8009
|
:param _CustomerId: 企业ID
|
|
7678
8010
|
:type CustomerId: int
|
|
7679
8011
|
:param _IsNew: 是否新增数据
|
|
@@ -7699,6 +8031,7 @@ class DescribeWechatAppletsRequest(AbstractModel):
|
|
|
7699
8031
|
:param _Ignored: 是否显示被忽略的数据
|
|
7700
8032
|
:type Ignored: bool
|
|
7701
8033
|
"""
|
|
8034
|
+
self._CustomerIdList = None
|
|
7702
8035
|
self._CustomerId = None
|
|
7703
8036
|
self._IsNew = None
|
|
7704
8037
|
self._Limit = None
|
|
@@ -7712,6 +8045,17 @@ class DescribeWechatAppletsRequest(AbstractModel):
|
|
|
7712
8045
|
self._Filters = None
|
|
7713
8046
|
self._Ignored = None
|
|
7714
8047
|
|
|
8048
|
+
@property
|
|
8049
|
+
def CustomerIdList(self):
|
|
8050
|
+
"""企业ID列表,可多选
|
|
8051
|
+
:rtype: list of int
|
|
8052
|
+
"""
|
|
8053
|
+
return self._CustomerIdList
|
|
8054
|
+
|
|
8055
|
+
@CustomerIdList.setter
|
|
8056
|
+
def CustomerIdList(self, CustomerIdList):
|
|
8057
|
+
self._CustomerIdList = CustomerIdList
|
|
8058
|
+
|
|
7715
8059
|
@property
|
|
7716
8060
|
def CustomerId(self):
|
|
7717
8061
|
"""企业ID
|
|
@@ -7846,6 +8190,7 @@ class DescribeWechatAppletsRequest(AbstractModel):
|
|
|
7846
8190
|
|
|
7847
8191
|
|
|
7848
8192
|
def _deserialize(self, params):
|
|
8193
|
+
self._CustomerIdList = params.get("CustomerIdList")
|
|
7849
8194
|
self._CustomerId = params.get("CustomerId")
|
|
7850
8195
|
self._IsNew = params.get("IsNew")
|
|
7851
8196
|
self._Limit = params.get("Limit")
|
|
@@ -7943,6 +8288,8 @@ class DescribeWechatOfficialAccountsRequest(AbstractModel):
|
|
|
7943
8288
|
|
|
7944
8289
|
def __init__(self):
|
|
7945
8290
|
r"""
|
|
8291
|
+
:param _CustomerIdList: 企业ID列表,可多选
|
|
8292
|
+
:type CustomerIdList: list of int
|
|
7946
8293
|
:param _IsNew: 是否新增数据
|
|
7947
8294
|
:type IsNew: bool
|
|
7948
8295
|
:param _CustomerId: 企业ID
|
|
@@ -7968,6 +8315,7 @@ class DescribeWechatOfficialAccountsRequest(AbstractModel):
|
|
|
7968
8315
|
:param _Ignored: 是否显示被忽略的数据
|
|
7969
8316
|
:type Ignored: bool
|
|
7970
8317
|
"""
|
|
8318
|
+
self._CustomerIdList = None
|
|
7971
8319
|
self._IsNew = None
|
|
7972
8320
|
self._CustomerId = None
|
|
7973
8321
|
self._Limit = None
|
|
@@ -7981,6 +8329,17 @@ class DescribeWechatOfficialAccountsRequest(AbstractModel):
|
|
|
7981
8329
|
self._Filters = None
|
|
7982
8330
|
self._Ignored = None
|
|
7983
8331
|
|
|
8332
|
+
@property
|
|
8333
|
+
def CustomerIdList(self):
|
|
8334
|
+
"""企业ID列表,可多选
|
|
8335
|
+
:rtype: list of int
|
|
8336
|
+
"""
|
|
8337
|
+
return self._CustomerIdList
|
|
8338
|
+
|
|
8339
|
+
@CustomerIdList.setter
|
|
8340
|
+
def CustomerIdList(self, CustomerIdList):
|
|
8341
|
+
self._CustomerIdList = CustomerIdList
|
|
8342
|
+
|
|
7984
8343
|
@property
|
|
7985
8344
|
def IsNew(self):
|
|
7986
8345
|
"""是否新增数据
|
|
@@ -8115,6 +8474,7 @@ class DescribeWechatOfficialAccountsRequest(AbstractModel):
|
|
|
8115
8474
|
|
|
8116
8475
|
|
|
8117
8476
|
def _deserialize(self, params):
|
|
8477
|
+
self._CustomerIdList = params.get("CustomerIdList")
|
|
8118
8478
|
self._IsNew = params.get("IsNew")
|
|
8119
8479
|
self._CustomerId = params.get("CustomerId")
|
|
8120
8480
|
self._Limit = params.get("Limit")
|
|
@@ -13114,22 +13474,50 @@ class ModifyLabelRequest(AbstractModel):
|
|
|
13114
13474
|
|
|
13115
13475
|
def __init__(self):
|
|
13116
13476
|
r"""
|
|
13477
|
+
:param _Module: 模块,包括:enterprise:企业架构,domain:主域名,sub_domain:子域名,asset:IP资产,port:端口服务,http:HTTP资产,vul:漏洞信息,app:APP,wechat_applet:微信小程序,wechat_official_account:微信公众号,github:Github信息泄露,manage:管理后台暴露,config:目录爆破,dark_web:暗网泄露,net_disk:文库网盘泄露,supply_chain:供应链,weak_password:弱口令,sensitive_info:敏感信息泄露
|
|
13478
|
+
:type Module: str
|
|
13479
|
+
:param _CustomerIdList: 企业ID列表,可多选
|
|
13480
|
+
:type CustomerIdList: list of int
|
|
13117
13481
|
:param _Id: 资产或风险主键ID
|
|
13118
13482
|
:type Id: int
|
|
13119
13483
|
:param _CustomerId: 企业ID,在企业管理页面查看
|
|
13120
13484
|
:type CustomerId: int
|
|
13121
|
-
:param _Module: 模块,包括:enterprise:企业架构,domain:主域名,sub_domain:子域名,asset:IP资产,port:端口服务,http:HTTP资产,vul:漏洞信息,app:APP,wechat_applet:微信小程序,wechat_official_account:微信公众号,github:Github信息泄露,manage:管理后台暴露,config:目录爆破,dark_web:暗网泄露,net_disk:文库网盘泄露,supply_chain:供应链,weak_password:弱口令,sensitive_info:敏感信息泄露
|
|
13122
|
-
:type Module: str
|
|
13123
13485
|
:param _IsAggregation: 是否聚合数据
|
|
13124
13486
|
:type IsAggregation: bool
|
|
13125
13487
|
:param _Labels: 标签详情
|
|
13126
13488
|
:type Labels: str
|
|
13489
|
+
:param _Ids: 资产或风险主键ID列表
|
|
13490
|
+
:type Ids: list of int
|
|
13127
13491
|
"""
|
|
13492
|
+
self._Module = None
|
|
13493
|
+
self._CustomerIdList = None
|
|
13128
13494
|
self._Id = None
|
|
13129
13495
|
self._CustomerId = None
|
|
13130
|
-
self._Module = None
|
|
13131
13496
|
self._IsAggregation = None
|
|
13132
13497
|
self._Labels = None
|
|
13498
|
+
self._Ids = None
|
|
13499
|
+
|
|
13500
|
+
@property
|
|
13501
|
+
def Module(self):
|
|
13502
|
+
"""模块,包括:enterprise:企业架构,domain:主域名,sub_domain:子域名,asset:IP资产,port:端口服务,http:HTTP资产,vul:漏洞信息,app:APP,wechat_applet:微信小程序,wechat_official_account:微信公众号,github:Github信息泄露,manage:管理后台暴露,config:目录爆破,dark_web:暗网泄露,net_disk:文库网盘泄露,supply_chain:供应链,weak_password:弱口令,sensitive_info:敏感信息泄露
|
|
13503
|
+
:rtype: str
|
|
13504
|
+
"""
|
|
13505
|
+
return self._Module
|
|
13506
|
+
|
|
13507
|
+
@Module.setter
|
|
13508
|
+
def Module(self, Module):
|
|
13509
|
+
self._Module = Module
|
|
13510
|
+
|
|
13511
|
+
@property
|
|
13512
|
+
def CustomerIdList(self):
|
|
13513
|
+
"""企业ID列表,可多选
|
|
13514
|
+
:rtype: list of int
|
|
13515
|
+
"""
|
|
13516
|
+
return self._CustomerIdList
|
|
13517
|
+
|
|
13518
|
+
@CustomerIdList.setter
|
|
13519
|
+
def CustomerIdList(self, CustomerIdList):
|
|
13520
|
+
self._CustomerIdList = CustomerIdList
|
|
13133
13521
|
|
|
13134
13522
|
@property
|
|
13135
13523
|
def Id(self):
|
|
@@ -13153,17 +13541,6 @@ class ModifyLabelRequest(AbstractModel):
|
|
|
13153
13541
|
def CustomerId(self, CustomerId):
|
|
13154
13542
|
self._CustomerId = CustomerId
|
|
13155
13543
|
|
|
13156
|
-
@property
|
|
13157
|
-
def Module(self):
|
|
13158
|
-
"""模块,包括:enterprise:企业架构,domain:主域名,sub_domain:子域名,asset:IP资产,port:端口服务,http:HTTP资产,vul:漏洞信息,app:APP,wechat_applet:微信小程序,wechat_official_account:微信公众号,github:Github信息泄露,manage:管理后台暴露,config:目录爆破,dark_web:暗网泄露,net_disk:文库网盘泄露,supply_chain:供应链,weak_password:弱口令,sensitive_info:敏感信息泄露
|
|
13159
|
-
:rtype: str
|
|
13160
|
-
"""
|
|
13161
|
-
return self._Module
|
|
13162
|
-
|
|
13163
|
-
@Module.setter
|
|
13164
|
-
def Module(self, Module):
|
|
13165
|
-
self._Module = Module
|
|
13166
|
-
|
|
13167
13544
|
@property
|
|
13168
13545
|
def IsAggregation(self):
|
|
13169
13546
|
"""是否聚合数据
|
|
@@ -13186,13 +13563,26 @@ class ModifyLabelRequest(AbstractModel):
|
|
|
13186
13563
|
def Labels(self, Labels):
|
|
13187
13564
|
self._Labels = Labels
|
|
13188
13565
|
|
|
13566
|
+
@property
|
|
13567
|
+
def Ids(self):
|
|
13568
|
+
"""资产或风险主键ID列表
|
|
13569
|
+
:rtype: list of int
|
|
13570
|
+
"""
|
|
13571
|
+
return self._Ids
|
|
13572
|
+
|
|
13573
|
+
@Ids.setter
|
|
13574
|
+
def Ids(self, Ids):
|
|
13575
|
+
self._Ids = Ids
|
|
13576
|
+
|
|
13189
13577
|
|
|
13190
13578
|
def _deserialize(self, params):
|
|
13579
|
+
self._Module = params.get("Module")
|
|
13580
|
+
self._CustomerIdList = params.get("CustomerIdList")
|
|
13191
13581
|
self._Id = params.get("Id")
|
|
13192
13582
|
self._CustomerId = params.get("CustomerId")
|
|
13193
|
-
self._Module = params.get("Module")
|
|
13194
13583
|
self._IsAggregation = params.get("IsAggregation")
|
|
13195
13584
|
self._Labels = params.get("Labels")
|
|
13585
|
+
self._Ids = params.get("Ids")
|
|
13196
13586
|
memeber_set = set(params.keys())
|
|
13197
13587
|
for name, value in vars(self).items():
|
|
13198
13588
|
property_name = name[1:]
|