tencentcloud-sdk-python-intl-en 3.0.1119__py2.py3-none-any.whl → 3.0.1120__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-intl-en might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/config/v20220802/config_client.py +23 -0
- tencentcloud/config/v20220802/errorcodes.py +3 -0
- tencentcloud/config/v20220802/models.py +418 -0
- tencentcloud/faceid/v20180301/errorcodes.py +3 -0
- {tencentcloud_sdk_python_intl_en-3.0.1119.dist-info → tencentcloud_sdk_python_intl_en-3.0.1120.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1119.dist-info → tencentcloud_sdk_python_intl_en-3.0.1120.dist-info}/RECORD +9 -9
- {tencentcloud_sdk_python_intl_en-3.0.1119.dist-info → tencentcloud_sdk_python_intl_en-3.0.1120.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1119.dist-info → tencentcloud_sdk_python_intl_en-3.0.1120.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -72,6 +72,29 @@ class ConfigClient(AbstractClient):
|
|
|
72
72
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
73
73
|
|
|
74
74
|
|
|
75
|
+
def ListAggregateDiscoveredResources(self, request):
|
|
76
|
+
"""Account Group access the list of resources.
|
|
77
|
+
|
|
78
|
+
:param request: Request instance for ListAggregateDiscoveredResources.
|
|
79
|
+
:type request: :class:`tencentcloud.config.v20220802.models.ListAggregateDiscoveredResourcesRequest`
|
|
80
|
+
:rtype: :class:`tencentcloud.config.v20220802.models.ListAggregateDiscoveredResourcesResponse`
|
|
81
|
+
|
|
82
|
+
"""
|
|
83
|
+
try:
|
|
84
|
+
params = request._serialize()
|
|
85
|
+
headers = request.headers
|
|
86
|
+
body = self.call("ListAggregateDiscoveredResources", params, headers=headers)
|
|
87
|
+
response = json.loads(body)
|
|
88
|
+
model = models.ListAggregateDiscoveredResourcesResponse()
|
|
89
|
+
model._deserialize(response["Response"])
|
|
90
|
+
return model
|
|
91
|
+
except Exception as e:
|
|
92
|
+
if isinstance(e, TencentCloudSDKException):
|
|
93
|
+
raise
|
|
94
|
+
else:
|
|
95
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
96
|
+
|
|
97
|
+
|
|
75
98
|
def ListConfigRules(self, request):
|
|
76
99
|
"""This API is used to get the rule list.
|
|
77
100
|
|
|
@@ -18,6 +18,238 @@ import warnings
|
|
|
18
18
|
from tencentcloud.common.abstract_model import AbstractModel
|
|
19
19
|
|
|
20
20
|
|
|
21
|
+
class AggregateResourceInfo(AbstractModel):
|
|
22
|
+
"""Resource list information response parameters structure
|
|
23
|
+
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
def __init__(self):
|
|
27
|
+
r"""
|
|
28
|
+
:param _ResourceType: Resource type
|
|
29
|
+
:type ResourceType: str
|
|
30
|
+
:param _ResourceName: Resource name
|
|
31
|
+
:type ResourceName: str
|
|
32
|
+
:param _ResourceId: Resource ID
|
|
33
|
+
:type ResourceId: str
|
|
34
|
+
:param _ResourceRegion: Region
|
|
35
|
+
|
|
36
|
+
Note: This field may return null, indicating that no valid value is found.
|
|
37
|
+
:type ResourceRegion: str
|
|
38
|
+
:param _ResourceStatus: Resource Status
|
|
39
|
+
|
|
40
|
+
Note: This field may return null, indicating that no valid value is found.
|
|
41
|
+
:type ResourceStatus: str
|
|
42
|
+
:param _ResourceDelete: Whether to delete. 1: Deleted; 0: Not deleted.
|
|
43
|
+
Note: This field may return null, indicating that no valid value is found.
|
|
44
|
+
:type ResourceDelete: int
|
|
45
|
+
:param _ResourceCreateTime: Resource creation time
|
|
46
|
+
|
|
47
|
+
Note: This field may return null, indicating that no valid value is found.
|
|
48
|
+
:type ResourceCreateTime: str
|
|
49
|
+
:param _Tags: Tag information
|
|
50
|
+
|
|
51
|
+
Note: This field may return null, indicating that no valid value is found.
|
|
52
|
+
:type Tags: list of Tag
|
|
53
|
+
:param _ResourceZone: Availability zone
|
|
54
|
+
|
|
55
|
+
Note: This field may return null, indicating that no valid value is found.
|
|
56
|
+
:type ResourceZone: str
|
|
57
|
+
:param _ComplianceResult: Compliance status
|
|
58
|
+
Note: This field may return null, indicating that no valid value is found.
|
|
59
|
+
:type ComplianceResult: str
|
|
60
|
+
:param _ResourceOwnerId: Resource owner uid
|
|
61
|
+
:type ResourceOwnerId: int
|
|
62
|
+
:param _ResourceOwnerName: User nickname
|
|
63
|
+
Note: This field may return null, indicating that no valid value is found.
|
|
64
|
+
:type ResourceOwnerName: str
|
|
65
|
+
"""
|
|
66
|
+
self._ResourceType = None
|
|
67
|
+
self._ResourceName = None
|
|
68
|
+
self._ResourceId = None
|
|
69
|
+
self._ResourceRegion = None
|
|
70
|
+
self._ResourceStatus = None
|
|
71
|
+
self._ResourceDelete = None
|
|
72
|
+
self._ResourceCreateTime = None
|
|
73
|
+
self._Tags = None
|
|
74
|
+
self._ResourceZone = None
|
|
75
|
+
self._ComplianceResult = None
|
|
76
|
+
self._ResourceOwnerId = None
|
|
77
|
+
self._ResourceOwnerName = None
|
|
78
|
+
|
|
79
|
+
@property
|
|
80
|
+
def ResourceType(self):
|
|
81
|
+
"""Resource type
|
|
82
|
+
:rtype: str
|
|
83
|
+
"""
|
|
84
|
+
return self._ResourceType
|
|
85
|
+
|
|
86
|
+
@ResourceType.setter
|
|
87
|
+
def ResourceType(self, ResourceType):
|
|
88
|
+
self._ResourceType = ResourceType
|
|
89
|
+
|
|
90
|
+
@property
|
|
91
|
+
def ResourceName(self):
|
|
92
|
+
"""Resource name
|
|
93
|
+
:rtype: str
|
|
94
|
+
"""
|
|
95
|
+
return self._ResourceName
|
|
96
|
+
|
|
97
|
+
@ResourceName.setter
|
|
98
|
+
def ResourceName(self, ResourceName):
|
|
99
|
+
self._ResourceName = ResourceName
|
|
100
|
+
|
|
101
|
+
@property
|
|
102
|
+
def ResourceId(self):
|
|
103
|
+
"""Resource ID
|
|
104
|
+
:rtype: str
|
|
105
|
+
"""
|
|
106
|
+
return self._ResourceId
|
|
107
|
+
|
|
108
|
+
@ResourceId.setter
|
|
109
|
+
def ResourceId(self, ResourceId):
|
|
110
|
+
self._ResourceId = ResourceId
|
|
111
|
+
|
|
112
|
+
@property
|
|
113
|
+
def ResourceRegion(self):
|
|
114
|
+
"""Region
|
|
115
|
+
|
|
116
|
+
Note: This field may return null, indicating that no valid value is found.
|
|
117
|
+
:rtype: str
|
|
118
|
+
"""
|
|
119
|
+
return self._ResourceRegion
|
|
120
|
+
|
|
121
|
+
@ResourceRegion.setter
|
|
122
|
+
def ResourceRegion(self, ResourceRegion):
|
|
123
|
+
self._ResourceRegion = ResourceRegion
|
|
124
|
+
|
|
125
|
+
@property
|
|
126
|
+
def ResourceStatus(self):
|
|
127
|
+
"""Resource Status
|
|
128
|
+
|
|
129
|
+
Note: This field may return null, indicating that no valid value is found.
|
|
130
|
+
:rtype: str
|
|
131
|
+
"""
|
|
132
|
+
return self._ResourceStatus
|
|
133
|
+
|
|
134
|
+
@ResourceStatus.setter
|
|
135
|
+
def ResourceStatus(self, ResourceStatus):
|
|
136
|
+
self._ResourceStatus = ResourceStatus
|
|
137
|
+
|
|
138
|
+
@property
|
|
139
|
+
def ResourceDelete(self):
|
|
140
|
+
"""Whether to delete. 1: Deleted; 0: Not deleted.
|
|
141
|
+
Note: This field may return null, indicating that no valid value is found.
|
|
142
|
+
:rtype: int
|
|
143
|
+
"""
|
|
144
|
+
return self._ResourceDelete
|
|
145
|
+
|
|
146
|
+
@ResourceDelete.setter
|
|
147
|
+
def ResourceDelete(self, ResourceDelete):
|
|
148
|
+
self._ResourceDelete = ResourceDelete
|
|
149
|
+
|
|
150
|
+
@property
|
|
151
|
+
def ResourceCreateTime(self):
|
|
152
|
+
"""Resource creation time
|
|
153
|
+
|
|
154
|
+
Note: This field may return null, indicating that no valid value is found.
|
|
155
|
+
:rtype: str
|
|
156
|
+
"""
|
|
157
|
+
return self._ResourceCreateTime
|
|
158
|
+
|
|
159
|
+
@ResourceCreateTime.setter
|
|
160
|
+
def ResourceCreateTime(self, ResourceCreateTime):
|
|
161
|
+
self._ResourceCreateTime = ResourceCreateTime
|
|
162
|
+
|
|
163
|
+
@property
|
|
164
|
+
def Tags(self):
|
|
165
|
+
"""Tag information
|
|
166
|
+
|
|
167
|
+
Note: This field may return null, indicating that no valid value is found.
|
|
168
|
+
:rtype: list of Tag
|
|
169
|
+
"""
|
|
170
|
+
return self._Tags
|
|
171
|
+
|
|
172
|
+
@Tags.setter
|
|
173
|
+
def Tags(self, Tags):
|
|
174
|
+
self._Tags = Tags
|
|
175
|
+
|
|
176
|
+
@property
|
|
177
|
+
def ResourceZone(self):
|
|
178
|
+
"""Availability zone
|
|
179
|
+
|
|
180
|
+
Note: This field may return null, indicating that no valid value is found.
|
|
181
|
+
:rtype: str
|
|
182
|
+
"""
|
|
183
|
+
return self._ResourceZone
|
|
184
|
+
|
|
185
|
+
@ResourceZone.setter
|
|
186
|
+
def ResourceZone(self, ResourceZone):
|
|
187
|
+
self._ResourceZone = ResourceZone
|
|
188
|
+
|
|
189
|
+
@property
|
|
190
|
+
def ComplianceResult(self):
|
|
191
|
+
"""Compliance status
|
|
192
|
+
Note: This field may return null, indicating that no valid value is found.
|
|
193
|
+
:rtype: str
|
|
194
|
+
"""
|
|
195
|
+
return self._ComplianceResult
|
|
196
|
+
|
|
197
|
+
@ComplianceResult.setter
|
|
198
|
+
def ComplianceResult(self, ComplianceResult):
|
|
199
|
+
self._ComplianceResult = ComplianceResult
|
|
200
|
+
|
|
201
|
+
@property
|
|
202
|
+
def ResourceOwnerId(self):
|
|
203
|
+
"""Resource owner uid
|
|
204
|
+
:rtype: int
|
|
205
|
+
"""
|
|
206
|
+
return self._ResourceOwnerId
|
|
207
|
+
|
|
208
|
+
@ResourceOwnerId.setter
|
|
209
|
+
def ResourceOwnerId(self, ResourceOwnerId):
|
|
210
|
+
self._ResourceOwnerId = ResourceOwnerId
|
|
211
|
+
|
|
212
|
+
@property
|
|
213
|
+
def ResourceOwnerName(self):
|
|
214
|
+
"""User nickname
|
|
215
|
+
Note: This field may return null, indicating that no valid value is found.
|
|
216
|
+
:rtype: str
|
|
217
|
+
"""
|
|
218
|
+
return self._ResourceOwnerName
|
|
219
|
+
|
|
220
|
+
@ResourceOwnerName.setter
|
|
221
|
+
def ResourceOwnerName(self, ResourceOwnerName):
|
|
222
|
+
self._ResourceOwnerName = ResourceOwnerName
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
def _deserialize(self, params):
|
|
226
|
+
self._ResourceType = params.get("ResourceType")
|
|
227
|
+
self._ResourceName = params.get("ResourceName")
|
|
228
|
+
self._ResourceId = params.get("ResourceId")
|
|
229
|
+
self._ResourceRegion = params.get("ResourceRegion")
|
|
230
|
+
self._ResourceStatus = params.get("ResourceStatus")
|
|
231
|
+
self._ResourceDelete = params.get("ResourceDelete")
|
|
232
|
+
self._ResourceCreateTime = params.get("ResourceCreateTime")
|
|
233
|
+
if params.get("Tags") is not None:
|
|
234
|
+
self._Tags = []
|
|
235
|
+
for item in params.get("Tags"):
|
|
236
|
+
obj = Tag()
|
|
237
|
+
obj._deserialize(item)
|
|
238
|
+
self._Tags.append(obj)
|
|
239
|
+
self._ResourceZone = params.get("ResourceZone")
|
|
240
|
+
self._ComplianceResult = params.get("ComplianceResult")
|
|
241
|
+
self._ResourceOwnerId = params.get("ResourceOwnerId")
|
|
242
|
+
self._ResourceOwnerName = params.get("ResourceOwnerName")
|
|
243
|
+
memeber_set = set(params.keys())
|
|
244
|
+
for name, value in vars(self).items():
|
|
245
|
+
property_name = name[1:]
|
|
246
|
+
if property_name in memeber_set:
|
|
247
|
+
memeber_set.remove(property_name)
|
|
248
|
+
if len(memeber_set) > 0:
|
|
249
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
|
|
21
253
|
class Annotation(AbstractModel):
|
|
22
254
|
"""Compliance details
|
|
23
255
|
|
|
@@ -1488,6 +1720,192 @@ class ListAggregateConfigRulesResponse(AbstractModel):
|
|
|
1488
1720
|
self._RequestId = params.get("RequestId")
|
|
1489
1721
|
|
|
1490
1722
|
|
|
1723
|
+
class ListAggregateDiscoveredResourcesRequest(AbstractModel):
|
|
1724
|
+
"""ListAggregateDiscoveredResources request structure.
|
|
1725
|
+
|
|
1726
|
+
"""
|
|
1727
|
+
|
|
1728
|
+
def __init__(self):
|
|
1729
|
+
r"""
|
|
1730
|
+
:param _MaxResults: Items per Page
|
|
1731
|
+
:type MaxResults: int
|
|
1732
|
+
:param _AccountGroupId: Account group ID
|
|
1733
|
+
:type AccountGroupId: str
|
|
1734
|
+
:param _Filters: resourceName: Resource name; resourceId: Resource ID; resourceType: Resource type
|
|
1735
|
+
:type Filters: list of Filter
|
|
1736
|
+
:param _Tags: <Tag>
|
|
1737
|
+
:type Tags: list of Tag
|
|
1738
|
+
:param _NextToken: Next page token.
|
|
1739
|
+
:type NextToken: str
|
|
1740
|
+
:param _OrderType: Sorting method asc, desc
|
|
1741
|
+
:type OrderType: str
|
|
1742
|
+
"""
|
|
1743
|
+
self._MaxResults = None
|
|
1744
|
+
self._AccountGroupId = None
|
|
1745
|
+
self._Filters = None
|
|
1746
|
+
self._Tags = None
|
|
1747
|
+
self._NextToken = None
|
|
1748
|
+
self._OrderType = None
|
|
1749
|
+
|
|
1750
|
+
@property
|
|
1751
|
+
def MaxResults(self):
|
|
1752
|
+
"""Items per Page
|
|
1753
|
+
:rtype: int
|
|
1754
|
+
"""
|
|
1755
|
+
return self._MaxResults
|
|
1756
|
+
|
|
1757
|
+
@MaxResults.setter
|
|
1758
|
+
def MaxResults(self, MaxResults):
|
|
1759
|
+
self._MaxResults = MaxResults
|
|
1760
|
+
|
|
1761
|
+
@property
|
|
1762
|
+
def AccountGroupId(self):
|
|
1763
|
+
"""Account group ID
|
|
1764
|
+
:rtype: str
|
|
1765
|
+
"""
|
|
1766
|
+
return self._AccountGroupId
|
|
1767
|
+
|
|
1768
|
+
@AccountGroupId.setter
|
|
1769
|
+
def AccountGroupId(self, AccountGroupId):
|
|
1770
|
+
self._AccountGroupId = AccountGroupId
|
|
1771
|
+
|
|
1772
|
+
@property
|
|
1773
|
+
def Filters(self):
|
|
1774
|
+
"""resourceName: Resource name; resourceId: Resource ID; resourceType: Resource type
|
|
1775
|
+
:rtype: list of Filter
|
|
1776
|
+
"""
|
|
1777
|
+
return self._Filters
|
|
1778
|
+
|
|
1779
|
+
@Filters.setter
|
|
1780
|
+
def Filters(self, Filters):
|
|
1781
|
+
self._Filters = Filters
|
|
1782
|
+
|
|
1783
|
+
@property
|
|
1784
|
+
def Tags(self):
|
|
1785
|
+
"""<Tag>
|
|
1786
|
+
:rtype: list of Tag
|
|
1787
|
+
"""
|
|
1788
|
+
return self._Tags
|
|
1789
|
+
|
|
1790
|
+
@Tags.setter
|
|
1791
|
+
def Tags(self, Tags):
|
|
1792
|
+
self._Tags = Tags
|
|
1793
|
+
|
|
1794
|
+
@property
|
|
1795
|
+
def NextToken(self):
|
|
1796
|
+
"""Next page token.
|
|
1797
|
+
:rtype: str
|
|
1798
|
+
"""
|
|
1799
|
+
return self._NextToken
|
|
1800
|
+
|
|
1801
|
+
@NextToken.setter
|
|
1802
|
+
def NextToken(self, NextToken):
|
|
1803
|
+
self._NextToken = NextToken
|
|
1804
|
+
|
|
1805
|
+
@property
|
|
1806
|
+
def OrderType(self):
|
|
1807
|
+
"""Sorting method asc, desc
|
|
1808
|
+
:rtype: str
|
|
1809
|
+
"""
|
|
1810
|
+
return self._OrderType
|
|
1811
|
+
|
|
1812
|
+
@OrderType.setter
|
|
1813
|
+
def OrderType(self, OrderType):
|
|
1814
|
+
self._OrderType = OrderType
|
|
1815
|
+
|
|
1816
|
+
|
|
1817
|
+
def _deserialize(self, params):
|
|
1818
|
+
self._MaxResults = params.get("MaxResults")
|
|
1819
|
+
self._AccountGroupId = params.get("AccountGroupId")
|
|
1820
|
+
if params.get("Filters") is not None:
|
|
1821
|
+
self._Filters = []
|
|
1822
|
+
for item in params.get("Filters"):
|
|
1823
|
+
obj = Filter()
|
|
1824
|
+
obj._deserialize(item)
|
|
1825
|
+
self._Filters.append(obj)
|
|
1826
|
+
if params.get("Tags") is not None:
|
|
1827
|
+
self._Tags = []
|
|
1828
|
+
for item in params.get("Tags"):
|
|
1829
|
+
obj = Tag()
|
|
1830
|
+
obj._deserialize(item)
|
|
1831
|
+
self._Tags.append(obj)
|
|
1832
|
+
self._NextToken = params.get("NextToken")
|
|
1833
|
+
self._OrderType = params.get("OrderType")
|
|
1834
|
+
memeber_set = set(params.keys())
|
|
1835
|
+
for name, value in vars(self).items():
|
|
1836
|
+
property_name = name[1:]
|
|
1837
|
+
if property_name in memeber_set:
|
|
1838
|
+
memeber_set.remove(property_name)
|
|
1839
|
+
if len(memeber_set) > 0:
|
|
1840
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
1841
|
+
|
|
1842
|
+
|
|
1843
|
+
|
|
1844
|
+
class ListAggregateDiscoveredResourcesResponse(AbstractModel):
|
|
1845
|
+
"""ListAggregateDiscoveredResources response structure.
|
|
1846
|
+
|
|
1847
|
+
"""
|
|
1848
|
+
|
|
1849
|
+
def __init__(self):
|
|
1850
|
+
r"""
|
|
1851
|
+
:param _Items: Details.
|
|
1852
|
+
:type Items: list of AggregateResourceInfo
|
|
1853
|
+
:param _NextToken: next page
|
|
1854
|
+
Note: This field may return null, indicating that no valid value is found.
|
|
1855
|
+
:type NextToken: str
|
|
1856
|
+
:param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1857
|
+
:type RequestId: str
|
|
1858
|
+
"""
|
|
1859
|
+
self._Items = None
|
|
1860
|
+
self._NextToken = None
|
|
1861
|
+
self._RequestId = None
|
|
1862
|
+
|
|
1863
|
+
@property
|
|
1864
|
+
def Items(self):
|
|
1865
|
+
"""Details.
|
|
1866
|
+
:rtype: list of AggregateResourceInfo
|
|
1867
|
+
"""
|
|
1868
|
+
return self._Items
|
|
1869
|
+
|
|
1870
|
+
@Items.setter
|
|
1871
|
+
def Items(self, Items):
|
|
1872
|
+
self._Items = Items
|
|
1873
|
+
|
|
1874
|
+
@property
|
|
1875
|
+
def NextToken(self):
|
|
1876
|
+
"""next page
|
|
1877
|
+
Note: This field may return null, indicating that no valid value is found.
|
|
1878
|
+
:rtype: str
|
|
1879
|
+
"""
|
|
1880
|
+
return self._NextToken
|
|
1881
|
+
|
|
1882
|
+
@NextToken.setter
|
|
1883
|
+
def NextToken(self, NextToken):
|
|
1884
|
+
self._NextToken = NextToken
|
|
1885
|
+
|
|
1886
|
+
@property
|
|
1887
|
+
def RequestId(self):
|
|
1888
|
+
"""The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
1889
|
+
:rtype: str
|
|
1890
|
+
"""
|
|
1891
|
+
return self._RequestId
|
|
1892
|
+
|
|
1893
|
+
@RequestId.setter
|
|
1894
|
+
def RequestId(self, RequestId):
|
|
1895
|
+
self._RequestId = RequestId
|
|
1896
|
+
|
|
1897
|
+
|
|
1898
|
+
def _deserialize(self, params):
|
|
1899
|
+
if params.get("Items") is not None:
|
|
1900
|
+
self._Items = []
|
|
1901
|
+
for item in params.get("Items"):
|
|
1902
|
+
obj = AggregateResourceInfo()
|
|
1903
|
+
obj._deserialize(item)
|
|
1904
|
+
self._Items.append(obj)
|
|
1905
|
+
self._NextToken = params.get("NextToken")
|
|
1906
|
+
self._RequestId = params.get("RequestId")
|
|
1907
|
+
|
|
1908
|
+
|
|
1491
1909
|
class ListConfigRulesRequest(AbstractModel):
|
|
1492
1910
|
"""ListConfigRules request structure.
|
|
1493
1911
|
|
|
@@ -185,6 +185,9 @@ FAILEDOPERATION_UNOPENERROR = 'FailedOperation.UnOpenError'
|
|
|
185
185
|
# Video decoding abnormality
|
|
186
186
|
FAILEDOPERATION_VIDEODECODEFAILED = 'FailedOperation.VideoDecodeFailed'
|
|
187
187
|
|
|
188
|
+
#
|
|
189
|
+
FAILEDOPERATION_VIDEODURATIONEXCEEDED = 'FailedOperation.VideoDurationExceeded'
|
|
190
|
+
|
|
188
191
|
# Internal error.
|
|
189
192
|
INTERNALERROR = 'InternalError'
|
|
190
193
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=lyaXW0PeYAMq7DWHJiHa1-Jx55uvLypVABJ3wKCC7RE,630
|
|
2
2
|
tencentcloud/advisor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
tencentcloud/advisor/v20200721/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
tencentcloud/advisor/v20200721/advisor_client.py,sha256=b5pLP_oF5HZHo4xbn-hI4dkpnirhcHB2rNDWvGf4q1Y,2919
|
|
@@ -159,9 +159,9 @@ tencentcloud/common/profile/client_profile.py,sha256=sSL6GthiTm_OL2nOWX4ekfby71F
|
|
|
159
159
|
tencentcloud/common/profile/http_profile.py,sha256=gGWNo7x2zu3QnjMyDrGAIrBaihQv1hQkw55KovqhB1I,1893
|
|
160
160
|
tencentcloud/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
161
161
|
tencentcloud/config/v20220802/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
162
|
-
tencentcloud/config/v20220802/config_client.py,sha256=
|
|
163
|
-
tencentcloud/config/v20220802/errorcodes.py,sha256=
|
|
164
|
-
tencentcloud/config/v20220802/models.py,sha256=
|
|
162
|
+
tencentcloud/config/v20220802/config_client.py,sha256=EqNS0_dxCC84CccXu8d-oFyUPmgwkn_hua3peHfG4QY,6593
|
|
163
|
+
tencentcloud/config/v20220802/errorcodes.py,sha256=CCQqDWvDIh72Z0PZDMfaPAWrW38afRsrwDD_g8Z1khY,1078
|
|
164
|
+
tencentcloud/config/v20220802/models.py,sha256=v6T41o0EgiYl8rnUdtWedjuZJiF_RyKkVWhXccFvf6g,85344
|
|
165
165
|
tencentcloud/controlcenter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
166
166
|
tencentcloud/controlcenter/v20230110/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
167
167
|
tencentcloud/controlcenter/v20230110/controlcenter_client.py,sha256=brsNDrz2WCSmIRGCg2Zne0GN9mQfKtTVQpmVQ67y4Cw,2030
|
|
@@ -282,7 +282,7 @@ tencentcloud/facefusion/v20220927/facefusion_client.py,sha256=s2jNN_ZTuxh-RV9Wh4
|
|
|
282
282
|
tencentcloud/facefusion/v20220927/models.py,sha256=dNoH82457_skQb1UgUc92iIIdSRpObCBCv3575Z-Crc,44203
|
|
283
283
|
tencentcloud/faceid/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
284
284
|
tencentcloud/faceid/v20180301/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
285
|
-
tencentcloud/faceid/v20180301/errorcodes.py,sha256=
|
|
285
|
+
tencentcloud/faceid/v20180301/errorcodes.py,sha256=if59ahLlNuG4TVb3s0bhJCMW1xLyzLjogKgDud_YkTA,9962
|
|
286
286
|
tencentcloud/faceid/v20180301/faceid_client.py,sha256=Zto1akPPCqRbpysgrABFKtz3f-x0Rb-G8pfnPe15RtU,24130
|
|
287
287
|
tencentcloud/faceid/v20180301/models.py,sha256=DkJg2NuUFck4XONGyu6pY5BdyA5oZFcVzo6b0iGCzE8,382368
|
|
288
288
|
tencentcloud/gaap/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -614,7 +614,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
614
614
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
|
|
615
615
|
tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
|
|
616
616
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=GA7Fo5GmpEJ2kufV2upw-ZpMZxznsPZ3NKDKDDAI4Ao,67384
|
|
617
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
618
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
619
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
620
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
617
|
+
tencentcloud_sdk_python_intl_en-3.0.1120.dist-info/METADATA,sha256=s8wzH3UC_QDrshd9N5HX2LX5AWhLDeiII0z8c94df-4,1628
|
|
618
|
+
tencentcloud_sdk_python_intl_en-3.0.1120.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
619
|
+
tencentcloud_sdk_python_intl_en-3.0.1120.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
620
|
+
tencentcloud_sdk_python_intl_en-3.0.1120.dist-info/RECORD,,
|
|
File without changes
|