tencentcloud-sdk-python 3.0.1129__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/aiart/v20221229/models.py +27 -0
- tencentcloud/asr/v20190614/asr_client.py +1 -1
- tencentcloud/asr/v20190614/models.py +3 -0
- tencentcloud/bsca/v20210811/models.py +24 -0
- tencentcloud/ccc/v20200210/ccc_client.py +2 -2
- tencentcloud/ccc/v20200210/models.py +10 -10
- 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/dts/v20211206/models.py +2 -2
- 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 +633 -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 +67 -6
- tencentcloud/lke/v20231130/models.py +13 -1
- tencentcloud/ocr/v20181119/models.py +32 -32
- tencentcloud/organization/v20210331/errorcodes.py +177 -0
- tencentcloud/organization/v20210331/models.py +1737 -139
- tencentcloud/organization/v20210331/organization_client.py +276 -0
- tencentcloud/rce/v20201103/models.py +4 -3
- tencentcloud/smh/v20210712/errorcodes.py +3 -3
- tencentcloud/tat/v20201028/models.py +3 -3
- tencentcloud/tke/v20180525/models.py +376 -4
- tencentcloud/tke/v20180525/tke_client.py +46 -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 +30 -31
- tencentcloud/vod/v20180717/vod_client.py +2 -2
- tencentcloud/wedata/v20210820/models.py +35254 -56013
- tencentcloud/wedata/v20210820/wedata_client.py +104 -2069
- {tencentcloud_sdk_python-3.0.1129.dist-info → tencentcloud_sdk_python-3.0.1131.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1129.dist-info → tencentcloud_sdk_python-3.0.1131.dist-info}/RECORD +46 -46
- {tencentcloud_sdk_python-3.0.1129.dist-info → tencentcloud_sdk_python-3.0.1131.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1129.dist-info → tencentcloud_sdk_python-3.0.1131.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1129.dist-info → tencentcloud_sdk_python-3.0.1131.dist-info}/top_level.txt +0 -0
|
@@ -2088,6 +2088,8 @@ class CreateDomainRequest(AbstractModel):
|
|
|
2088
2088
|
1,表示开启Http3。
|
|
2089
2089
|
默认不开启Http3。可以通过SetDomainHttp3开启。
|
|
2090
2090
|
:type Http3Supported: int
|
|
2091
|
+
:param _IsDefaultServer: 是否作为默认域名,默认为“否”
|
|
2092
|
+
:type IsDefaultServer: bool
|
|
2091
2093
|
"""
|
|
2092
2094
|
self._ListenerId = None
|
|
2093
2095
|
self._Domain = None
|
|
@@ -2095,6 +2097,7 @@ class CreateDomainRequest(AbstractModel):
|
|
|
2095
2097
|
self._ClientCertificateId = None
|
|
2096
2098
|
self._PolyClientCertificateIds = None
|
|
2097
2099
|
self._Http3Supported = None
|
|
2100
|
+
self._IsDefaultServer = None
|
|
2098
2101
|
|
|
2099
2102
|
@property
|
|
2100
2103
|
def ListenerId(self):
|
|
@@ -2144,6 +2147,14 @@ class CreateDomainRequest(AbstractModel):
|
|
|
2144
2147
|
def Http3Supported(self, Http3Supported):
|
|
2145
2148
|
self._Http3Supported = Http3Supported
|
|
2146
2149
|
|
|
2150
|
+
@property
|
|
2151
|
+
def IsDefaultServer(self):
|
|
2152
|
+
return self._IsDefaultServer
|
|
2153
|
+
|
|
2154
|
+
@IsDefaultServer.setter
|
|
2155
|
+
def IsDefaultServer(self, IsDefaultServer):
|
|
2156
|
+
self._IsDefaultServer = IsDefaultServer
|
|
2157
|
+
|
|
2147
2158
|
|
|
2148
2159
|
def _deserialize(self, params):
|
|
2149
2160
|
self._ListenerId = params.get("ListenerId")
|
|
@@ -2152,6 +2163,7 @@ class CreateDomainRequest(AbstractModel):
|
|
|
2152
2163
|
self._ClientCertificateId = params.get("ClientCertificateId")
|
|
2153
2164
|
self._PolyClientCertificateIds = params.get("PolyClientCertificateIds")
|
|
2154
2165
|
self._Http3Supported = params.get("Http3Supported")
|
|
2166
|
+
self._IsDefaultServer = params.get("IsDefaultServer")
|
|
2155
2167
|
memeber_set = set(params.keys())
|
|
2156
2168
|
for name, value in vars(self).items():
|
|
2157
2169
|
property_name = name[1:]
|
|
@@ -10233,6 +10245,9 @@ class DomainRuleSet(AbstractModel):
|
|
|
10233
10245
|
1表示启用。
|
|
10234
10246
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10235
10247
|
:type Http3Supported: int
|
|
10248
|
+
:param _IsDefaultServer: 是否为默认域名
|
|
10249
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10250
|
+
:type IsDefaultServer: bool
|
|
10236
10251
|
"""
|
|
10237
10252
|
self._Domain = None
|
|
10238
10253
|
self._RuleSet = None
|
|
@@ -10255,6 +10270,7 @@ class DomainRuleSet(AbstractModel):
|
|
|
10255
10270
|
self._DomainStatus = None
|
|
10256
10271
|
self._BanStatus = None
|
|
10257
10272
|
self._Http3Supported = None
|
|
10273
|
+
self._IsDefaultServer = None
|
|
10258
10274
|
|
|
10259
10275
|
@property
|
|
10260
10276
|
def Domain(self):
|
|
@@ -10424,6 +10440,14 @@ class DomainRuleSet(AbstractModel):
|
|
|
10424
10440
|
def Http3Supported(self, Http3Supported):
|
|
10425
10441
|
self._Http3Supported = Http3Supported
|
|
10426
10442
|
|
|
10443
|
+
@property
|
|
10444
|
+
def IsDefaultServer(self):
|
|
10445
|
+
return self._IsDefaultServer
|
|
10446
|
+
|
|
10447
|
+
@IsDefaultServer.setter
|
|
10448
|
+
def IsDefaultServer(self, IsDefaultServer):
|
|
10449
|
+
self._IsDefaultServer = IsDefaultServer
|
|
10450
|
+
|
|
10427
10451
|
|
|
10428
10452
|
def _deserialize(self, params):
|
|
10429
10453
|
self._Domain = params.get("Domain")
|
|
@@ -10462,6 +10486,7 @@ class DomainRuleSet(AbstractModel):
|
|
|
10462
10486
|
self._DomainStatus = params.get("DomainStatus")
|
|
10463
10487
|
self._BanStatus = params.get("BanStatus")
|
|
10464
10488
|
self._Http3Supported = params.get("Http3Supported")
|
|
10489
|
+
self._IsDefaultServer = params.get("IsDefaultServer")
|
|
10465
10490
|
memeber_set = set(params.keys())
|
|
10466
10491
|
for name, value in vars(self).items():
|
|
10467
10492
|
property_name = name[1:]
|
|
@@ -11815,6 +11840,8 @@ class ModifyDomainRequest(AbstractModel):
|
|
|
11815
11840
|
携带该字段时并且ClientCertificateId=default,表示使用监听器证书;
|
|
11816
11841
|
其他情况,使用该ClientCertificateId或PolyClientCertificateIds指定的证书。
|
|
11817
11842
|
:type PolyClientCertificateIds: list of str
|
|
11843
|
+
:param _IsDefaultServer: 是否作为默认域名,默认为“否”
|
|
11844
|
+
:type IsDefaultServer: bool
|
|
11818
11845
|
"""
|
|
11819
11846
|
self._ListenerId = None
|
|
11820
11847
|
self._OldDomain = None
|
|
@@ -11822,6 +11849,7 @@ class ModifyDomainRequest(AbstractModel):
|
|
|
11822
11849
|
self._CertificateId = None
|
|
11823
11850
|
self._ClientCertificateId = None
|
|
11824
11851
|
self._PolyClientCertificateIds = None
|
|
11852
|
+
self._IsDefaultServer = None
|
|
11825
11853
|
|
|
11826
11854
|
@property
|
|
11827
11855
|
def ListenerId(self):
|
|
@@ -11871,6 +11899,14 @@ class ModifyDomainRequest(AbstractModel):
|
|
|
11871
11899
|
def PolyClientCertificateIds(self, PolyClientCertificateIds):
|
|
11872
11900
|
self._PolyClientCertificateIds = PolyClientCertificateIds
|
|
11873
11901
|
|
|
11902
|
+
@property
|
|
11903
|
+
def IsDefaultServer(self):
|
|
11904
|
+
return self._IsDefaultServer
|
|
11905
|
+
|
|
11906
|
+
@IsDefaultServer.setter
|
|
11907
|
+
def IsDefaultServer(self, IsDefaultServer):
|
|
11908
|
+
self._IsDefaultServer = IsDefaultServer
|
|
11909
|
+
|
|
11874
11910
|
|
|
11875
11911
|
def _deserialize(self, params):
|
|
11876
11912
|
self._ListenerId = params.get("ListenerId")
|
|
@@ -11879,6 +11915,7 @@ class ModifyDomainRequest(AbstractModel):
|
|
|
11879
11915
|
self._CertificateId = params.get("CertificateId")
|
|
11880
11916
|
self._ClientCertificateId = params.get("ClientCertificateId")
|
|
11881
11917
|
self._PolyClientCertificateIds = params.get("PolyClientCertificateIds")
|
|
11918
|
+
self._IsDefaultServer = params.get("IsDefaultServer")
|
|
11882
11919
|
memeber_set = set(params.keys())
|
|
11883
11920
|
for name, value in vars(self).items():
|
|
11884
11921
|
property_name = name[1:]
|
|
@@ -26,6 +26,9 @@ FAILEDOPERATION_ACTIONUNREACHABLE = 'FailedOperation.ActionUnreachable'
|
|
|
26
26
|
# 广播任务正在执行。
|
|
27
27
|
FAILEDOPERATION_BROADCASTTASKISRUNNING = 'FailedOperation.BroadcastTaskIsRunning'
|
|
28
28
|
|
|
29
|
+
# 产品未开通视频AI分析服务
|
|
30
|
+
FAILEDOPERATION_CLOUDSTORAGEAISERVICENOTENABLED = 'FailedOperation.CloudStorageAIServiceNotEnabled'
|
|
31
|
+
|
|
29
32
|
# 设备已经被禁用。
|
|
30
33
|
FAILEDOPERATION_DEVICEALREADYDISABLED = 'FailedOperation.DeviceAlreadyDisabled'
|
|
31
34
|
|
|
@@ -158,6 +161,12 @@ INVALIDPARAMETERVALUE_FORWARDREDIRECTDENIED = 'InvalidParameterValue.ForwardRedi
|
|
|
158
161
|
# 拉取产品列表失败。
|
|
159
162
|
INVALIDPARAMETERVALUE_GETPRODUCTSLISTERROR = 'InvalidParameterValue.GetProductsListError'
|
|
160
163
|
|
|
164
|
+
# 回调 Token 格式有误
|
|
165
|
+
INVALIDPARAMETERVALUE_INVALIDCALLBACKTOKEN = 'InvalidParameterValue.InvalidCallbackToken'
|
|
166
|
+
|
|
167
|
+
# 回调 URL 无效或格式有误
|
|
168
|
+
INVALIDPARAMETERVALUE_INVALIDCALLBACKURL = 'InvalidParameterValue.InvalidCallbackUrl'
|
|
169
|
+
|
|
161
170
|
# SQL语句含有非法字符。
|
|
162
171
|
INVALIDPARAMETERVALUE_INVALIDSQL = 'InvalidParameterValue.InvalidSQL'
|
|
163
172
|
|
|
@@ -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
|
|