tencentcloud-sdk-python 3.0.1130__py2.py3-none-any.whl → 3.0.1131__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/cfs/v20190719/models.py +2 -2
- tencentcloud/cls/v20201016/models.py +19 -3
- tencentcloud/cynosdb/v20190107/models.py +98 -0
- tencentcloud/dnspod/v20210323/dnspod_client.py +6 -1
- tencentcloud/domain/v20180808/models.py +48 -0
- tencentcloud/dsgc/v20190723/models.py +173 -12
- tencentcloud/eb/v20210416/models.py +98 -0
- tencentcloud/emr/v20190103/models.py +1 -1
- tencentcloud/ess/v20201111/ess_client.py +23 -0
- tencentcloud/ess/v20201111/models.py +327 -0
- tencentcloud/facefusion/v20220927/models.py +1 -1
- tencentcloud/gaap/v20180529/models.py +37 -0
- tencentcloud/iotexplorer/v20190423/errorcodes.py +9 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +161 -0
- tencentcloud/iotexplorer/v20190423/models.py +907 -38
- tencentcloud/lcic/v20220817/models.py +5 -6
- tencentcloud/organization/v20210331/errorcodes.py +177 -0
- tencentcloud/organization/v20210331/models.py +1737 -139
- tencentcloud/organization/v20210331/organization_client.py +276 -0
- tencentcloud/tke/v20180525/models.py +15 -0
- tencentcloud/trocket/v20230308/models.py +0 -58
- tencentcloud/trocket/v20230308/trocket_client.py +0 -23
- tencentcloud/tse/v20201207/models.py +19 -0
- tencentcloud/vod/v20180717/models.py +14 -14
- tencentcloud/wedata/v20210820/models.py +35254 -56013
- tencentcloud/wedata/v20210820/wedata_client.py +104 -2069
- {tencentcloud_sdk_python-3.0.1130.dist-info → tencentcloud_sdk_python-3.0.1131.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1130.dist-info → tencentcloud_sdk_python-3.0.1131.dist-info}/RECORD +32 -32
- {tencentcloud_sdk_python-3.0.1130.dist-info → tencentcloud_sdk_python-3.0.1131.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1130.dist-info → tencentcloud_sdk_python-3.0.1131.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1130.dist-info → tencentcloud_sdk_python-3.0.1131.dist-info}/top_level.txt +0 -0
|
@@ -785,6 +785,75 @@ class IotexplorerClient(AbstractClient):
|
|
|
785
785
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
786
786
|
|
|
787
787
|
|
|
788
|
+
def DescribeCloudStorageAIService(self, request):
|
|
789
|
+
"""查询指定设备的云存 AI 服务开通状态与参数配置
|
|
790
|
+
|
|
791
|
+
:param request: Request instance for DescribeCloudStorageAIService.
|
|
792
|
+
:type request: :class:`tencentcloud.iotexplorer.v20190423.models.DescribeCloudStorageAIServiceRequest`
|
|
793
|
+
:rtype: :class:`tencentcloud.iotexplorer.v20190423.models.DescribeCloudStorageAIServiceResponse`
|
|
794
|
+
|
|
795
|
+
"""
|
|
796
|
+
try:
|
|
797
|
+
params = request._serialize()
|
|
798
|
+
headers = request.headers
|
|
799
|
+
body = self.call("DescribeCloudStorageAIService", params, headers=headers)
|
|
800
|
+
response = json.loads(body)
|
|
801
|
+
model = models.DescribeCloudStorageAIServiceResponse()
|
|
802
|
+
model._deserialize(response["Response"])
|
|
803
|
+
return model
|
|
804
|
+
except Exception as e:
|
|
805
|
+
if isinstance(e, TencentCloudSDKException):
|
|
806
|
+
raise
|
|
807
|
+
else:
|
|
808
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
809
|
+
|
|
810
|
+
|
|
811
|
+
def DescribeCloudStorageAIServiceCallback(self, request):
|
|
812
|
+
"""查询云存AI分析回调配置
|
|
813
|
+
|
|
814
|
+
:param request: Request instance for DescribeCloudStorageAIServiceCallback.
|
|
815
|
+
:type request: :class:`tencentcloud.iotexplorer.v20190423.models.DescribeCloudStorageAIServiceCallbackRequest`
|
|
816
|
+
:rtype: :class:`tencentcloud.iotexplorer.v20190423.models.DescribeCloudStorageAIServiceCallbackResponse`
|
|
817
|
+
|
|
818
|
+
"""
|
|
819
|
+
try:
|
|
820
|
+
params = request._serialize()
|
|
821
|
+
headers = request.headers
|
|
822
|
+
body = self.call("DescribeCloudStorageAIServiceCallback", params, headers=headers)
|
|
823
|
+
response = json.loads(body)
|
|
824
|
+
model = models.DescribeCloudStorageAIServiceCallbackResponse()
|
|
825
|
+
model._deserialize(response["Response"])
|
|
826
|
+
return model
|
|
827
|
+
except Exception as e:
|
|
828
|
+
if isinstance(e, TencentCloudSDKException):
|
|
829
|
+
raise
|
|
830
|
+
else:
|
|
831
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
832
|
+
|
|
833
|
+
|
|
834
|
+
def DescribeCloudStorageAIServiceTasks(self, request):
|
|
835
|
+
"""查询指定设备的云存 AI 分析任务列表
|
|
836
|
+
|
|
837
|
+
:param request: Request instance for DescribeCloudStorageAIServiceTasks.
|
|
838
|
+
:type request: :class:`tencentcloud.iotexplorer.v20190423.models.DescribeCloudStorageAIServiceTasksRequest`
|
|
839
|
+
:rtype: :class:`tencentcloud.iotexplorer.v20190423.models.DescribeCloudStorageAIServiceTasksResponse`
|
|
840
|
+
|
|
841
|
+
"""
|
|
842
|
+
try:
|
|
843
|
+
params = request._serialize()
|
|
844
|
+
headers = request.headers
|
|
845
|
+
body = self.call("DescribeCloudStorageAIServiceTasks", params, headers=headers)
|
|
846
|
+
response = json.loads(body)
|
|
847
|
+
model = models.DescribeCloudStorageAIServiceTasksResponse()
|
|
848
|
+
model._deserialize(response["Response"])
|
|
849
|
+
return model
|
|
850
|
+
except Exception as e:
|
|
851
|
+
if isinstance(e, TencentCloudSDKException):
|
|
852
|
+
raise
|
|
853
|
+
else:
|
|
854
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
855
|
+
|
|
856
|
+
|
|
788
857
|
def DescribeCloudStorageDate(self, request):
|
|
789
858
|
"""获取具有云存的日期
|
|
790
859
|
|
|
@@ -1498,6 +1567,29 @@ class IotexplorerClient(AbstractClient):
|
|
|
1498
1567
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1499
1568
|
|
|
1500
1569
|
|
|
1570
|
+
def DescribeProductCloudStorageAIService(self, request):
|
|
1571
|
+
"""查询指定产品的云存 AI 服务开通状态
|
|
1572
|
+
|
|
1573
|
+
:param request: Request instance for DescribeProductCloudStorageAIService.
|
|
1574
|
+
:type request: :class:`tencentcloud.iotexplorer.v20190423.models.DescribeProductCloudStorageAIServiceRequest`
|
|
1575
|
+
:rtype: :class:`tencentcloud.iotexplorer.v20190423.models.DescribeProductCloudStorageAIServiceResponse`
|
|
1576
|
+
|
|
1577
|
+
"""
|
|
1578
|
+
try:
|
|
1579
|
+
params = request._serialize()
|
|
1580
|
+
headers = request.headers
|
|
1581
|
+
body = self.call("DescribeProductCloudStorageAIService", params, headers=headers)
|
|
1582
|
+
response = json.loads(body)
|
|
1583
|
+
model = models.DescribeProductCloudStorageAIServiceResponse()
|
|
1584
|
+
model._deserialize(response["Response"])
|
|
1585
|
+
return model
|
|
1586
|
+
except Exception as e:
|
|
1587
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1588
|
+
raise
|
|
1589
|
+
else:
|
|
1590
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1591
|
+
|
|
1592
|
+
|
|
1501
1593
|
def DescribeProject(self, request):
|
|
1502
1594
|
"""查询项目详情
|
|
1503
1595
|
|
|
@@ -2096,6 +2188,52 @@ class IotexplorerClient(AbstractClient):
|
|
|
2096
2188
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2097
2189
|
|
|
2098
2190
|
|
|
2191
|
+
def ModifyCloudStorageAIService(self, request):
|
|
2192
|
+
"""修改指定设备的云存 AI 服务开通状态与参数配置
|
|
2193
|
+
|
|
2194
|
+
:param request: Request instance for ModifyCloudStorageAIService.
|
|
2195
|
+
:type request: :class:`tencentcloud.iotexplorer.v20190423.models.ModifyCloudStorageAIServiceRequest`
|
|
2196
|
+
:rtype: :class:`tencentcloud.iotexplorer.v20190423.models.ModifyCloudStorageAIServiceResponse`
|
|
2197
|
+
|
|
2198
|
+
"""
|
|
2199
|
+
try:
|
|
2200
|
+
params = request._serialize()
|
|
2201
|
+
headers = request.headers
|
|
2202
|
+
body = self.call("ModifyCloudStorageAIService", params, headers=headers)
|
|
2203
|
+
response = json.loads(body)
|
|
2204
|
+
model = models.ModifyCloudStorageAIServiceResponse()
|
|
2205
|
+
model._deserialize(response["Response"])
|
|
2206
|
+
return model
|
|
2207
|
+
except Exception as e:
|
|
2208
|
+
if isinstance(e, TencentCloudSDKException):
|
|
2209
|
+
raise
|
|
2210
|
+
else:
|
|
2211
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2212
|
+
|
|
2213
|
+
|
|
2214
|
+
def ModifyCloudStorageAIServiceCallback(self, request):
|
|
2215
|
+
"""修改云存AI分析回调配置
|
|
2216
|
+
|
|
2217
|
+
:param request: Request instance for ModifyCloudStorageAIServiceCallback.
|
|
2218
|
+
:type request: :class:`tencentcloud.iotexplorer.v20190423.models.ModifyCloudStorageAIServiceCallbackRequest`
|
|
2219
|
+
:rtype: :class:`tencentcloud.iotexplorer.v20190423.models.ModifyCloudStorageAIServiceCallbackResponse`
|
|
2220
|
+
|
|
2221
|
+
"""
|
|
2222
|
+
try:
|
|
2223
|
+
params = request._serialize()
|
|
2224
|
+
headers = request.headers
|
|
2225
|
+
body = self.call("ModifyCloudStorageAIServiceCallback", params, headers=headers)
|
|
2226
|
+
response = json.loads(body)
|
|
2227
|
+
model = models.ModifyCloudStorageAIServiceCallbackResponse()
|
|
2228
|
+
model._deserialize(response["Response"])
|
|
2229
|
+
return model
|
|
2230
|
+
except Exception as e:
|
|
2231
|
+
if isinstance(e, TencentCloudSDKException):
|
|
2232
|
+
raise
|
|
2233
|
+
else:
|
|
2234
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2235
|
+
|
|
2236
|
+
|
|
2099
2237
|
def ModifyFenceBind(self, request):
|
|
2100
2238
|
"""更新围栏绑定信息
|
|
2101
2239
|
|
|
@@ -2234,6 +2372,29 @@ class IotexplorerClient(AbstractClient):
|
|
|
2234
2372
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2235
2373
|
|
|
2236
2374
|
|
|
2375
|
+
def ModifyProductCloudStorageAIService(self, request):
|
|
2376
|
+
"""修改指定产品的云存 AI 服务开通状态
|
|
2377
|
+
|
|
2378
|
+
:param request: Request instance for ModifyProductCloudStorageAIService.
|
|
2379
|
+
:type request: :class:`tencentcloud.iotexplorer.v20190423.models.ModifyProductCloudStorageAIServiceRequest`
|
|
2380
|
+
:rtype: :class:`tencentcloud.iotexplorer.v20190423.models.ModifyProductCloudStorageAIServiceResponse`
|
|
2381
|
+
|
|
2382
|
+
"""
|
|
2383
|
+
try:
|
|
2384
|
+
params = request._serialize()
|
|
2385
|
+
headers = request.headers
|
|
2386
|
+
body = self.call("ModifyProductCloudStorageAIService", params, headers=headers)
|
|
2387
|
+
response = json.loads(body)
|
|
2388
|
+
model = models.ModifyProductCloudStorageAIServiceResponse()
|
|
2389
|
+
model._deserialize(response["Response"])
|
|
2390
|
+
return model
|
|
2391
|
+
except Exception as e:
|
|
2392
|
+
if isinstance(e, TencentCloudSDKException):
|
|
2393
|
+
raise
|
|
2394
|
+
else:
|
|
2395
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2396
|
+
|
|
2397
|
+
|
|
2237
2398
|
def ModifyProject(self, request):
|
|
2238
2399
|
"""修改项目
|
|
2239
2400
|
|