tencentcloud-sdk-python 3.0.1151__py2.py3-none-any.whl → 3.0.1152__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/dlc/v20210125/dlc_client.py +23 -0
- tencentcloud/dlc/v20210125/models.py +204 -0
- tencentcloud/iotexplorer/v20190423/models.py +50 -0
- tencentcloud/mps/v20190612/models.py +3 -0
- tencentcloud/teo/v20220901/models.py +5 -5
- tencentcloud/tione/v20211111/models.py +115 -3
- tencentcloud/tke/v20180525/models.py +4 -6
- tencentcloud/tsf/v20180326/models.py +143 -1
- tencentcloud/tsf/v20180326/tsf_client.py +46 -0
- {tencentcloud_sdk_python-3.0.1151.dist-info → tencentcloud_sdk_python-3.0.1152.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1151.dist-info → tencentcloud_sdk_python-3.0.1152.dist-info}/RECORD +15 -15
- {tencentcloud_sdk_python-3.0.1151.dist-info → tencentcloud_sdk_python-3.0.1152.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1151.dist-info → tencentcloud_sdk_python-3.0.1152.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1151.dist-info → tencentcloud_sdk_python-3.0.1152.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -1866,6 +1866,29 @@ class DlcClient(AbstractClient):
|
|
1866
1866
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1867
1867
|
|
1868
1868
|
|
1869
|
+
def DescribeTaskLog(self, request):
|
1870
|
+
"""本接口(DescribeTaskLog)用于获取spark 作业任务日志详情
|
1871
|
+
|
1872
|
+
:param request: Request instance for DescribeTaskLog.
|
1873
|
+
:type request: :class:`tencentcloud.dlc.v20210125.models.DescribeTaskLogRequest`
|
1874
|
+
:rtype: :class:`tencentcloud.dlc.v20210125.models.DescribeTaskLogResponse`
|
1875
|
+
|
1876
|
+
"""
|
1877
|
+
try:
|
1878
|
+
params = request._serialize()
|
1879
|
+
headers = request.headers
|
1880
|
+
body = self.call("DescribeTaskLog", params, headers=headers)
|
1881
|
+
response = json.loads(body)
|
1882
|
+
model = models.DescribeTaskLogResponse()
|
1883
|
+
model._deserialize(response["Response"])
|
1884
|
+
return model
|
1885
|
+
except Exception as e:
|
1886
|
+
if isinstance(e, TencentCloudSDKException):
|
1887
|
+
raise
|
1888
|
+
else:
|
1889
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1890
|
+
|
1891
|
+
|
1869
1892
|
def DescribeTaskResult(self, request):
|
1870
1893
|
"""查询任务结果
|
1871
1894
|
|
@@ -13734,6 +13734,210 @@ class DescribeTablesResponse(AbstractModel):
|
|
13734
13734
|
self._RequestId = params.get("RequestId")
|
13735
13735
|
|
13736
13736
|
|
13737
|
+
class DescribeTaskLogRequest(AbstractModel):
|
13738
|
+
"""DescribeTaskLog请求参数结构体
|
13739
|
+
|
13740
|
+
"""
|
13741
|
+
|
13742
|
+
def __init__(self):
|
13743
|
+
r"""
|
13744
|
+
:param _TaskId: 列表返回的Id
|
13745
|
+
:type TaskId: str
|
13746
|
+
:param _StartTime: 开始运行时间,unix时间戳(毫秒)
|
13747
|
+
:type StartTime: int
|
13748
|
+
:param _EndTime: 结束运行时间,unix时间戳(毫秒)
|
13749
|
+
:type EndTime: int
|
13750
|
+
:param _Limit: 分页大小,最大1000,配合Context一起使用
|
13751
|
+
:type Limit: int
|
13752
|
+
:param _Context: 下一次分页参数,第一次传空。透传上次接口返回的Context值,可获取后续更多日志,总计最多可获取1万条原始日志,过期时间1小时。
|
13753
|
+
:type Context: str
|
13754
|
+
:param _Asc: 是否升序排列,true:升序排序,false:倒序,默认false,倒序排列
|
13755
|
+
:type Asc: bool
|
13756
|
+
:param _Filters: 预览日志的通用过滤条件
|
13757
|
+
:type Filters: list of Filter
|
13758
|
+
:param _BatchId: SparkSQL任务唯一ID
|
13759
|
+
:type BatchId: str
|
13760
|
+
"""
|
13761
|
+
self._TaskId = None
|
13762
|
+
self._StartTime = None
|
13763
|
+
self._EndTime = None
|
13764
|
+
self._Limit = None
|
13765
|
+
self._Context = None
|
13766
|
+
self._Asc = None
|
13767
|
+
self._Filters = None
|
13768
|
+
self._BatchId = None
|
13769
|
+
|
13770
|
+
@property
|
13771
|
+
def TaskId(self):
|
13772
|
+
return self._TaskId
|
13773
|
+
|
13774
|
+
@TaskId.setter
|
13775
|
+
def TaskId(self, TaskId):
|
13776
|
+
self._TaskId = TaskId
|
13777
|
+
|
13778
|
+
@property
|
13779
|
+
def StartTime(self):
|
13780
|
+
return self._StartTime
|
13781
|
+
|
13782
|
+
@StartTime.setter
|
13783
|
+
def StartTime(self, StartTime):
|
13784
|
+
self._StartTime = StartTime
|
13785
|
+
|
13786
|
+
@property
|
13787
|
+
def EndTime(self):
|
13788
|
+
return self._EndTime
|
13789
|
+
|
13790
|
+
@EndTime.setter
|
13791
|
+
def EndTime(self, EndTime):
|
13792
|
+
self._EndTime = EndTime
|
13793
|
+
|
13794
|
+
@property
|
13795
|
+
def Limit(self):
|
13796
|
+
return self._Limit
|
13797
|
+
|
13798
|
+
@Limit.setter
|
13799
|
+
def Limit(self, Limit):
|
13800
|
+
self._Limit = Limit
|
13801
|
+
|
13802
|
+
@property
|
13803
|
+
def Context(self):
|
13804
|
+
return self._Context
|
13805
|
+
|
13806
|
+
@Context.setter
|
13807
|
+
def Context(self, Context):
|
13808
|
+
self._Context = Context
|
13809
|
+
|
13810
|
+
@property
|
13811
|
+
def Asc(self):
|
13812
|
+
return self._Asc
|
13813
|
+
|
13814
|
+
@Asc.setter
|
13815
|
+
def Asc(self, Asc):
|
13816
|
+
self._Asc = Asc
|
13817
|
+
|
13818
|
+
@property
|
13819
|
+
def Filters(self):
|
13820
|
+
return self._Filters
|
13821
|
+
|
13822
|
+
@Filters.setter
|
13823
|
+
def Filters(self, Filters):
|
13824
|
+
self._Filters = Filters
|
13825
|
+
|
13826
|
+
@property
|
13827
|
+
def BatchId(self):
|
13828
|
+
return self._BatchId
|
13829
|
+
|
13830
|
+
@BatchId.setter
|
13831
|
+
def BatchId(self, BatchId):
|
13832
|
+
self._BatchId = BatchId
|
13833
|
+
|
13834
|
+
|
13835
|
+
def _deserialize(self, params):
|
13836
|
+
self._TaskId = params.get("TaskId")
|
13837
|
+
self._StartTime = params.get("StartTime")
|
13838
|
+
self._EndTime = params.get("EndTime")
|
13839
|
+
self._Limit = params.get("Limit")
|
13840
|
+
self._Context = params.get("Context")
|
13841
|
+
self._Asc = params.get("Asc")
|
13842
|
+
if params.get("Filters") is not None:
|
13843
|
+
self._Filters = []
|
13844
|
+
for item in params.get("Filters"):
|
13845
|
+
obj = Filter()
|
13846
|
+
obj._deserialize(item)
|
13847
|
+
self._Filters.append(obj)
|
13848
|
+
self._BatchId = params.get("BatchId")
|
13849
|
+
memeber_set = set(params.keys())
|
13850
|
+
for name, value in vars(self).items():
|
13851
|
+
property_name = name[1:]
|
13852
|
+
if property_name in memeber_set:
|
13853
|
+
memeber_set.remove(property_name)
|
13854
|
+
if len(memeber_set) > 0:
|
13855
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
13856
|
+
|
13857
|
+
|
13858
|
+
|
13859
|
+
class DescribeTaskLogResponse(AbstractModel):
|
13860
|
+
"""DescribeTaskLog返回参数结构体
|
13861
|
+
|
13862
|
+
"""
|
13863
|
+
|
13864
|
+
def __init__(self):
|
13865
|
+
r"""
|
13866
|
+
:param _Context: 下一次分页参数
|
13867
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
13868
|
+
:type Context: str
|
13869
|
+
:param _ListOver: 是否获取完结
|
13870
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
13871
|
+
:type ListOver: bool
|
13872
|
+
:param _Results: 日志详情
|
13873
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
13874
|
+
:type Results: list of JobLogResult
|
13875
|
+
:param _LogUrl: 日志url
|
13876
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
13877
|
+
:type LogUrl: str
|
13878
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13879
|
+
:type RequestId: str
|
13880
|
+
"""
|
13881
|
+
self._Context = None
|
13882
|
+
self._ListOver = None
|
13883
|
+
self._Results = None
|
13884
|
+
self._LogUrl = None
|
13885
|
+
self._RequestId = None
|
13886
|
+
|
13887
|
+
@property
|
13888
|
+
def Context(self):
|
13889
|
+
return self._Context
|
13890
|
+
|
13891
|
+
@Context.setter
|
13892
|
+
def Context(self, Context):
|
13893
|
+
self._Context = Context
|
13894
|
+
|
13895
|
+
@property
|
13896
|
+
def ListOver(self):
|
13897
|
+
return self._ListOver
|
13898
|
+
|
13899
|
+
@ListOver.setter
|
13900
|
+
def ListOver(self, ListOver):
|
13901
|
+
self._ListOver = ListOver
|
13902
|
+
|
13903
|
+
@property
|
13904
|
+
def Results(self):
|
13905
|
+
return self._Results
|
13906
|
+
|
13907
|
+
@Results.setter
|
13908
|
+
def Results(self, Results):
|
13909
|
+
self._Results = Results
|
13910
|
+
|
13911
|
+
@property
|
13912
|
+
def LogUrl(self):
|
13913
|
+
return self._LogUrl
|
13914
|
+
|
13915
|
+
@LogUrl.setter
|
13916
|
+
def LogUrl(self, LogUrl):
|
13917
|
+
self._LogUrl = LogUrl
|
13918
|
+
|
13919
|
+
@property
|
13920
|
+
def RequestId(self):
|
13921
|
+
return self._RequestId
|
13922
|
+
|
13923
|
+
@RequestId.setter
|
13924
|
+
def RequestId(self, RequestId):
|
13925
|
+
self._RequestId = RequestId
|
13926
|
+
|
13927
|
+
|
13928
|
+
def _deserialize(self, params):
|
13929
|
+
self._Context = params.get("Context")
|
13930
|
+
self._ListOver = params.get("ListOver")
|
13931
|
+
if params.get("Results") is not None:
|
13932
|
+
self._Results = []
|
13933
|
+
for item in params.get("Results"):
|
13934
|
+
obj = JobLogResult()
|
13935
|
+
obj._deserialize(item)
|
13936
|
+
self._Results.append(obj)
|
13937
|
+
self._LogUrl = params.get("LogUrl")
|
13938
|
+
self._RequestId = params.get("RequestId")
|
13939
|
+
|
13940
|
+
|
13737
13941
|
class DescribeTaskResultRequest(AbstractModel):
|
13738
13942
|
"""DescribeTaskResult请求参数结构体
|
13739
13943
|
|
@@ -2644,6 +2644,10 @@ class CreateStudioProductRequest(AbstractModel):
|
|
2644
2644
|
:type ProductDesc: str
|
2645
2645
|
:param _ProjectId: 产品的项目ID
|
2646
2646
|
:type ProjectId: str
|
2647
|
+
:param _Rate: 平均传输速率
|
2648
|
+
:type Rate: str
|
2649
|
+
:param _Period: 期限
|
2650
|
+
:type Period: str
|
2647
2651
|
"""
|
2648
2652
|
self._ProductName = None
|
2649
2653
|
self._CategoryId = None
|
@@ -2653,6 +2657,8 @@ class CreateStudioProductRequest(AbstractModel):
|
|
2653
2657
|
self._DataProtocol = None
|
2654
2658
|
self._ProductDesc = None
|
2655
2659
|
self._ProjectId = None
|
2660
|
+
self._Rate = None
|
2661
|
+
self._Period = None
|
2656
2662
|
|
2657
2663
|
@property
|
2658
2664
|
def ProductName(self):
|
@@ -2718,6 +2724,22 @@ class CreateStudioProductRequest(AbstractModel):
|
|
2718
2724
|
def ProjectId(self, ProjectId):
|
2719
2725
|
self._ProjectId = ProjectId
|
2720
2726
|
|
2727
|
+
@property
|
2728
|
+
def Rate(self):
|
2729
|
+
return self._Rate
|
2730
|
+
|
2731
|
+
@Rate.setter
|
2732
|
+
def Rate(self, Rate):
|
2733
|
+
self._Rate = Rate
|
2734
|
+
|
2735
|
+
@property
|
2736
|
+
def Period(self):
|
2737
|
+
return self._Period
|
2738
|
+
|
2739
|
+
@Period.setter
|
2740
|
+
def Period(self, Period):
|
2741
|
+
self._Period = Period
|
2742
|
+
|
2721
2743
|
|
2722
2744
|
def _deserialize(self, params):
|
2723
2745
|
self._ProductName = params.get("ProductName")
|
@@ -2728,6 +2750,8 @@ class CreateStudioProductRequest(AbstractModel):
|
|
2728
2750
|
self._DataProtocol = params.get("DataProtocol")
|
2729
2751
|
self._ProductDesc = params.get("ProductDesc")
|
2730
2752
|
self._ProjectId = params.get("ProjectId")
|
2753
|
+
self._Rate = params.get("Rate")
|
2754
|
+
self._Period = params.get("Period")
|
2731
2755
|
memeber_set = set(params.keys())
|
2732
2756
|
for name, value in vars(self).items():
|
2733
2757
|
property_name = name[1:]
|
@@ -15885,6 +15909,12 @@ wifi、wifi-ble、cellular、5g、lorawan、ble、ethernet、wifi-ethernet、els
|
|
15885
15909
|
:param _DeviceCount: 设备数量
|
15886
15910
|
注意:此字段可能返回 null,表示取不到有效值。
|
15887
15911
|
:type DeviceCount: int
|
15912
|
+
:param _Rate: 平均传输速率
|
15913
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
15914
|
+
:type Rate: str
|
15915
|
+
:param _Period: 有效期
|
15916
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
15917
|
+
:type Period: str
|
15888
15918
|
"""
|
15889
15919
|
self._ProductId = None
|
15890
15920
|
self._ProductName = None
|
@@ -15905,6 +15935,8 @@ wifi、wifi-ble、cellular、5g、lorawan、ble、ethernet、wifi-ethernet、els
|
|
15905
15935
|
self._CreatorNickName = None
|
15906
15936
|
self._BindStrategy = None
|
15907
15937
|
self._DeviceCount = None
|
15938
|
+
self._Rate = None
|
15939
|
+
self._Period = None
|
15908
15940
|
|
15909
15941
|
@property
|
15910
15942
|
def ProductId(self):
|
@@ -16058,6 +16090,22 @@ wifi、wifi-ble、cellular、5g、lorawan、ble、ethernet、wifi-ethernet、els
|
|
16058
16090
|
def DeviceCount(self, DeviceCount):
|
16059
16091
|
self._DeviceCount = DeviceCount
|
16060
16092
|
|
16093
|
+
@property
|
16094
|
+
def Rate(self):
|
16095
|
+
return self._Rate
|
16096
|
+
|
16097
|
+
@Rate.setter
|
16098
|
+
def Rate(self, Rate):
|
16099
|
+
self._Rate = Rate
|
16100
|
+
|
16101
|
+
@property
|
16102
|
+
def Period(self):
|
16103
|
+
return self._Period
|
16104
|
+
|
16105
|
+
@Period.setter
|
16106
|
+
def Period(self, Period):
|
16107
|
+
self._Period = Period
|
16108
|
+
|
16061
16109
|
|
16062
16110
|
def _deserialize(self, params):
|
16063
16111
|
self._ProductId = params.get("ProductId")
|
@@ -16079,6 +16127,8 @@ wifi、wifi-ble、cellular、5g、lorawan、ble、ethernet、wifi-ethernet、els
|
|
16079
16127
|
self._CreatorNickName = params.get("CreatorNickName")
|
16080
16128
|
self._BindStrategy = params.get("BindStrategy")
|
16081
16129
|
self._DeviceCount = params.get("DeviceCount")
|
16130
|
+
self._Rate = params.get("Rate")
|
16131
|
+
self._Period = params.get("Period")
|
16082
16132
|
memeber_set = set(params.keys())
|
16083
16133
|
for name, value in vars(self).items():
|
16084
16134
|
property_name = name[1:]
|
@@ -409,6 +409,9 @@ class Activity(AbstractModel):
|
|
409
409
|
<li>action-image-sprite:雪碧图</li>
|
410
410
|
<li>action-snapshotByTimeOffset: 时间点截图</li>
|
411
411
|
<li>action-adaptive-substream:自适应码流</li>
|
412
|
+
|
413
|
+
|
414
|
+
|
412
415
|
注意:此字段可能返回 null,表示取不到有效值。
|
413
416
|
:type ActivityType: str
|
414
417
|
:param _ReardriveIndex: 后驱节点索引数组
|
@@ -15286,9 +15286,9 @@ class Https(AbstractModel):
|
|
15286
15286
|
注意:此字段可能返回 null,表示取不到有效值。
|
15287
15287
|
:type ApplyType: str
|
15288
15288
|
:param _CipherSuite: 密码套件,取值有:
|
15289
|
-
<li>loose-v2023
|
15290
|
-
<li>general-v2023
|
15291
|
-
<li>strict-v2023
|
15289
|
+
<li>loose-v2023:提供高兼容性,安全性一般,支持 TLS 1.0-1.3 密码套件;</li>
|
15290
|
+
<li>general-v2023:提供较高兼容性,安全性中等,支持 TLS 1.2-1.3 密码套件;</li>
|
15291
|
+
<li>strict-v2023:提供高安全性能,禁用所有含不安全隐患的加密套件,支持 TLS 1.2-1.3 密码套件。</li>
|
15292
15292
|
注意:此字段可能返回 null,表示取不到有效值。
|
15293
15293
|
:type CipherSuite: str
|
15294
15294
|
"""
|
@@ -19958,7 +19958,7 @@ class OriginDetail(AbstractModel):
|
|
19958
19958
|
<li>COS:腾讯云 COS 对象存储源站;</li>
|
19959
19959
|
<li>AWS_S3:AWS S3 对象存储源站;</li>
|
19960
19960
|
<li>ORIGIN_GROUP:源站组类型源站;</li>
|
19961
|
-
<li>VODEO
|
19961
|
+
<li>VODEO:云点播-混合云版;</li>
|
19962
19962
|
<li>SPACE:源站卸载,当前仅白名单开放;</li>
|
19963
19963
|
<li>LB:负载均衡,当前仅白名单开放。</li>
|
19964
19964
|
:type OriginType: str
|
@@ -20311,7 +20311,7 @@ class OriginInfo(AbstractModel):
|
|
20311
20311
|
<li>COS:腾讯云 COS 对象存储源站;</li>
|
20312
20312
|
<li>AWS_S3:AWS S3 对象存储源站;</li>
|
20313
20313
|
<li>ORIGIN_GROUP:源站组类型源站;</li>
|
20314
|
-
<li>VODEO
|
20314
|
+
<li>VODEO:云点播-混合云版;</li>
|
20315
20315
|
<li>SPACE:源站卸载,当前仅白名单开放;</li>
|
20316
20316
|
<li>LB:负载均衡,当前仅白名单开放。</li>
|
20317
20317
|
:type OriginType: str
|
@@ -2577,8 +2577,10 @@ HYBRID_PAID:
|
|
2577
2577
|
:type Command: str
|
2578
2578
|
:param _ServiceEIP: 是否开启TIONE内网访问外部,此功能仅支持后付费机型与从TIONE平台购买的预付费机型;使用从CVM选择资源组时此配置不生效。
|
2579
2579
|
:type ServiceEIP: :class:`tencentcloud.tione.v20211111.models.ServiceEIP`
|
2580
|
-
:param _CommandBase64: 服务的启动命令,以base64
|
2580
|
+
:param _CommandBase64: 服务的启动命令,以base64格式进行输入,与Command同时配置时,仅当前参数生效
|
2581
2581
|
:type CommandBase64: str
|
2582
|
+
:param _ServicePort: 服务端口,仅在非内置镜像时生效,默认8501。不支持输入8501-8510,6006,9092
|
2583
|
+
:type ServicePort: int
|
2582
2584
|
"""
|
2583
2585
|
self._ServiceGroupId = None
|
2584
2586
|
self._ServiceGroupName = None
|
@@ -2612,6 +2614,7 @@ HYBRID_PAID:
|
|
2612
2614
|
self._Command = None
|
2613
2615
|
self._ServiceEIP = None
|
2614
2616
|
self._CommandBase64 = None
|
2617
|
+
self._ServicePort = None
|
2615
2618
|
|
2616
2619
|
@property
|
2617
2620
|
def ServiceGroupId(self):
|
@@ -2869,6 +2872,14 @@ HYBRID_PAID:
|
|
2869
2872
|
def CommandBase64(self, CommandBase64):
|
2870
2873
|
self._CommandBase64 = CommandBase64
|
2871
2874
|
|
2875
|
+
@property
|
2876
|
+
def ServicePort(self):
|
2877
|
+
return self._ServicePort
|
2878
|
+
|
2879
|
+
@ServicePort.setter
|
2880
|
+
def ServicePort(self, ServicePort):
|
2881
|
+
self._ServicePort = ServicePort
|
2882
|
+
|
2872
2883
|
|
2873
2884
|
def _deserialize(self, params):
|
2874
2885
|
self._ServiceGroupId = params.get("ServiceGroupId")
|
@@ -2936,6 +2947,7 @@ HYBRID_PAID:
|
|
2936
2947
|
self._ServiceEIP = ServiceEIP()
|
2937
2948
|
self._ServiceEIP._deserialize(params.get("ServiceEIP"))
|
2938
2949
|
self._CommandBase64 = params.get("CommandBase64")
|
2950
|
+
self._ServicePort = params.get("ServicePort")
|
2939
2951
|
memeber_set = set(params.keys())
|
2940
2952
|
for name, value in vars(self).items():
|
2941
2953
|
property_name = name[1:]
|
@@ -12550,7 +12562,7 @@ class ImageInfo(AbstractModel):
|
|
12550
12562
|
|
12551
12563
|
def __init__(self):
|
12552
12564
|
r"""
|
12553
|
-
:param _ImageType: 镜像类型:TCR为腾讯云TCR镜像; CCR为腾讯云TCR个人版镜像,PreSet
|
12565
|
+
:param _ImageType: 镜像类型:TCR为腾讯云TCR镜像; CCR为腾讯云TCR个人版镜像,PreSet为平台预置镜像,CUSTOM为第三方自定义镜像
|
12554
12566
|
:type ImageType: str
|
12555
12567
|
:param _ImageUrl: 镜像地址
|
12556
12568
|
:type ImageUrl: str
|
@@ -12569,6 +12581,9 @@ class ImageInfo(AbstractModel):
|
|
12569
12581
|
:param _SupportDataPipeline: 是否支持数据构建
|
12570
12582
|
注意:此字段可能返回 null,表示取不到有效值。
|
12571
12583
|
:type SupportDataPipeline: bool
|
12584
|
+
:param _ImageSecret: 镜像仓库用户名密码信息(仅当ImageType为CUSTOM第三方镜像的时候需要)
|
12585
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
12586
|
+
:type ImageSecret: :class:`tencentcloud.tione.v20211111.models.ImageSecret`
|
12572
12587
|
"""
|
12573
12588
|
self._ImageType = None
|
12574
12589
|
self._ImageUrl = None
|
@@ -12577,6 +12592,7 @@ class ImageInfo(AbstractModel):
|
|
12577
12592
|
self._AllowSaveAllContent = None
|
12578
12593
|
self._ImageName = None
|
12579
12594
|
self._SupportDataPipeline = None
|
12595
|
+
self._ImageSecret = None
|
12580
12596
|
|
12581
12597
|
@property
|
12582
12598
|
def ImageType(self):
|
@@ -12634,6 +12650,14 @@ class ImageInfo(AbstractModel):
|
|
12634
12650
|
def SupportDataPipeline(self, SupportDataPipeline):
|
12635
12651
|
self._SupportDataPipeline = SupportDataPipeline
|
12636
12652
|
|
12653
|
+
@property
|
12654
|
+
def ImageSecret(self):
|
12655
|
+
return self._ImageSecret
|
12656
|
+
|
12657
|
+
@ImageSecret.setter
|
12658
|
+
def ImageSecret(self, ImageSecret):
|
12659
|
+
self._ImageSecret = ImageSecret
|
12660
|
+
|
12637
12661
|
|
12638
12662
|
def _deserialize(self, params):
|
12639
12663
|
self._ImageType = params.get("ImageType")
|
@@ -12643,6 +12667,69 @@ class ImageInfo(AbstractModel):
|
|
12643
12667
|
self._AllowSaveAllContent = params.get("AllowSaveAllContent")
|
12644
12668
|
self._ImageName = params.get("ImageName")
|
12645
12669
|
self._SupportDataPipeline = params.get("SupportDataPipeline")
|
12670
|
+
if params.get("ImageSecret") is not None:
|
12671
|
+
self._ImageSecret = ImageSecret()
|
12672
|
+
self._ImageSecret._deserialize(params.get("ImageSecret"))
|
12673
|
+
memeber_set = set(params.keys())
|
12674
|
+
for name, value in vars(self).items():
|
12675
|
+
property_name = name[1:]
|
12676
|
+
if property_name in memeber_set:
|
12677
|
+
memeber_set.remove(property_name)
|
12678
|
+
if len(memeber_set) > 0:
|
12679
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
12680
|
+
|
12681
|
+
|
12682
|
+
|
12683
|
+
class ImageSecret(AbstractModel):
|
12684
|
+
"""自定义镜像仓库凭据
|
12685
|
+
|
12686
|
+
"""
|
12687
|
+
|
12688
|
+
def __init__(self):
|
12689
|
+
r"""
|
12690
|
+
:param _KeyId: 用于加密密码的KMS公钥ID
|
12691
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
12692
|
+
:type KeyId: str
|
12693
|
+
:param _Username: 用户名
|
12694
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
12695
|
+
:type Username: str
|
12696
|
+
:param _Password: 密码,base64编码; 当keyId不为空时,密码是加密后的
|
12697
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
12698
|
+
:type Password: str
|
12699
|
+
"""
|
12700
|
+
self._KeyId = None
|
12701
|
+
self._Username = None
|
12702
|
+
self._Password = None
|
12703
|
+
|
12704
|
+
@property
|
12705
|
+
def KeyId(self):
|
12706
|
+
return self._KeyId
|
12707
|
+
|
12708
|
+
@KeyId.setter
|
12709
|
+
def KeyId(self, KeyId):
|
12710
|
+
self._KeyId = KeyId
|
12711
|
+
|
12712
|
+
@property
|
12713
|
+
def Username(self):
|
12714
|
+
return self._Username
|
12715
|
+
|
12716
|
+
@Username.setter
|
12717
|
+
def Username(self, Username):
|
12718
|
+
self._Username = Username
|
12719
|
+
|
12720
|
+
@property
|
12721
|
+
def Password(self):
|
12722
|
+
return self._Password
|
12723
|
+
|
12724
|
+
@Password.setter
|
12725
|
+
def Password(self, Password):
|
12726
|
+
self._Password = Password
|
12727
|
+
|
12728
|
+
|
12729
|
+
def _deserialize(self, params):
|
12730
|
+
self._KeyId = params.get("KeyId")
|
12731
|
+
self._Username = params.get("Username")
|
12732
|
+
self._Password = params.get("Password")
|
12646
12733
|
memeber_set = set(params.keys())
|
12647
12734
|
for name, value in vars(self).items():
|
12648
12735
|
property_name = name[1:]
|
@@ -14835,8 +14922,10 @@ HYBRID_PAID:
|
|
14835
14922
|
:type Command: str
|
14836
14923
|
:param _ServiceEIP: 是否开启TIONE内网访问外部,此功能仅支持后付费机型与从TIONE平台购买的预付费机型;使用从CVM选择资源组时此配置不生效。
|
14837
14924
|
:type ServiceEIP: :class:`tencentcloud.tione.v20211111.models.ServiceEIP`
|
14838
|
-
:param _CommandBase64: 服务的启动命令,以base64
|
14925
|
+
:param _CommandBase64: 服务的启动命令,以base64格式进行输入,与Command同时配置时,仅当前参数生效
|
14839
14926
|
:type CommandBase64: str
|
14927
|
+
:param _ServicePort: 服务端口,仅在非内置镜像时生效,默认8501。不支持输入8501-8510,6006,9092
|
14928
|
+
:type ServicePort: int
|
14840
14929
|
"""
|
14841
14930
|
self._ServiceId = None
|
14842
14931
|
self._ModelInfo = None
|
@@ -14862,6 +14951,7 @@ HYBRID_PAID:
|
|
14862
14951
|
self._Command = None
|
14863
14952
|
self._ServiceEIP = None
|
14864
14953
|
self._CommandBase64 = None
|
14954
|
+
self._ServicePort = None
|
14865
14955
|
|
14866
14956
|
@property
|
14867
14957
|
def ServiceId(self):
|
@@ -15055,6 +15145,14 @@ HYBRID_PAID:
|
|
15055
15145
|
def CommandBase64(self, CommandBase64):
|
15056
15146
|
self._CommandBase64 = CommandBase64
|
15057
15147
|
|
15148
|
+
@property
|
15149
|
+
def ServicePort(self):
|
15150
|
+
return self._ServicePort
|
15151
|
+
|
15152
|
+
@ServicePort.setter
|
15153
|
+
def ServicePort(self, ServicePort):
|
15154
|
+
self._ServicePort = ServicePort
|
15155
|
+
|
15058
15156
|
|
15059
15157
|
def _deserialize(self, params):
|
15060
15158
|
self._ServiceId = params.get("ServiceId")
|
@@ -15109,6 +15207,7 @@ HYBRID_PAID:
|
|
15109
15207
|
self._ServiceEIP = ServiceEIP()
|
15110
15208
|
self._ServiceEIP._deserialize(params.get("ServiceEIP"))
|
15111
15209
|
self._CommandBase64 = params.get("CommandBase64")
|
15210
|
+
self._ServicePort = params.get("ServicePort")
|
15112
15211
|
memeber_set = set(params.keys())
|
15113
15212
|
for name, value in vars(self).items():
|
15114
15213
|
property_name = name[1:]
|
@@ -19908,6 +20007,9 @@ HYBRID_PAID:
|
|
19908
20007
|
:param _ServiceEIP: 开启TIONE内网访问外部设置
|
19909
20008
|
注意:此字段可能返回 null,表示取不到有效值。
|
19910
20009
|
:type ServiceEIP: :class:`tencentcloud.tione.v20211111.models.ServiceEIP`
|
20010
|
+
:param _ServicePort: 服务端口,默认为8501
|
20011
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
20012
|
+
:type ServicePort: int
|
19911
20013
|
"""
|
19912
20014
|
self._Replicas = None
|
19913
20015
|
self._ImageInfo = None
|
@@ -19939,6 +20041,7 @@ HYBRID_PAID:
|
|
19939
20041
|
self._InferCodeInfo = None
|
19940
20042
|
self._Command = None
|
19941
20043
|
self._ServiceEIP = None
|
20044
|
+
self._ServicePort = None
|
19942
20045
|
|
19943
20046
|
@property
|
19944
20047
|
def Replicas(self):
|
@@ -20188,6 +20291,14 @@ HYBRID_PAID:
|
|
20188
20291
|
def ServiceEIP(self, ServiceEIP):
|
20189
20292
|
self._ServiceEIP = ServiceEIP
|
20190
20293
|
|
20294
|
+
@property
|
20295
|
+
def ServicePort(self):
|
20296
|
+
return self._ServicePort
|
20297
|
+
|
20298
|
+
@ServicePort.setter
|
20299
|
+
def ServicePort(self, ServicePort):
|
20300
|
+
self._ServicePort = ServicePort
|
20301
|
+
|
20191
20302
|
|
20192
20303
|
def _deserialize(self, params):
|
20193
20304
|
self._Replicas = params.get("Replicas")
|
@@ -20259,6 +20370,7 @@ HYBRID_PAID:
|
|
20259
20370
|
if params.get("ServiceEIP") is not None:
|
20260
20371
|
self._ServiceEIP = ServiceEIP()
|
20261
20372
|
self._ServiceEIP._deserialize(params.get("ServiceEIP"))
|
20373
|
+
self._ServicePort = params.get("ServicePort")
|
20262
20374
|
memeber_set = set(params.keys())
|
20263
20375
|
for name, value in vars(self).items():
|
20264
20376
|
property_name = name[1:]
|
@@ -183,9 +183,7 @@ class AddExistedInstancesRequest(AbstractModel):
|
|
183
183
|
:type NodePool: :class:`tencentcloud.tke.v20180525.models.NodePoolOption`
|
184
184
|
:param _SkipValidateOptions: 校验规则相关选项,可配置跳过某些校验规则。目前支持GlobalRouteCIDRCheck(跳过GlobalRouter的相关校验),VpcCniCIDRCheck(跳过VpcCni相关校验)
|
185
185
|
:type SkipValidateOptions: list of str
|
186
|
-
:param _InstanceAdvancedSettingsOverrides: 参数InstanceAdvancedSettingsOverride数组用于定制化地配置各台instance,与InstanceIds顺序对应。当传入InstanceAdvancedSettingsOverrides数组时,将覆盖默认参数InstanceAdvancedSettings;当没有传入参数InstanceAdvancedSettingsOverrides时,InstanceAdvancedSettings参数对每台instance
|
187
|
-
|
188
|
-
参数InstanceAdvancedSettingsOverride数组的长度应与InstanceIds数组一致;当长度大于InstanceIds数组长度时将报错;当长度小于InstanceIds数组时,没有对应配置的instace将使用默认配置。
|
186
|
+
:param _InstanceAdvancedSettingsOverrides: 参数InstanceAdvancedSettingsOverride数组用于定制化地配置各台instance,与InstanceIds顺序对应。当传入InstanceAdvancedSettingsOverrides数组时,将覆盖默认参数InstanceAdvancedSettings;当没有传入参数InstanceAdvancedSettingsOverrides时,InstanceAdvancedSettings参数对每台instance生效。参数InstanceAdvancedSettingsOverride数组的长度应与InstanceIds数组一致;当长度大于InstanceIds数组长度时将报错;当长度小于InstanceIds数组时,没有对应配置的instance将使用默认配置。
|
189
187
|
:type InstanceAdvancedSettingsOverrides: list of InstanceAdvancedSettings
|
190
188
|
:param _ImageId: 节点镜像
|
191
189
|
:type ImageId: str
|
@@ -5092,7 +5090,7 @@ class CreateClusterReleaseRequest(AbstractModel):
|
|
5092
5090
|
:type Password: str
|
5093
5091
|
:param _ChartNamespace: 制品命名空间
|
5094
5092
|
:type ChartNamespace: str
|
5095
|
-
:param _ClusterType: 集群类型,支持传 tke, eks, tkeedge,
|
5093
|
+
:param _ClusterType: 集群类型,支持传 tke, eks, tkeedge, external(注册集群)
|
5096
5094
|
:type ClusterType: str
|
5097
5095
|
"""
|
5098
5096
|
self._ClusterId = None
|
@@ -38855,7 +38853,7 @@ class UpgradeClusterReleaseRequest(AbstractModel):
|
|
38855
38853
|
:type Values: :class:`tencentcloud.tke.v20180525.models.ReleaseValues`
|
38856
38854
|
:param _ChartFrom: 制品来源,范围:tke-market 或 other
|
38857
38855
|
:type ChartFrom: str
|
38858
|
-
:param _ChartVersion: 制品版本(
|
38856
|
+
:param _ChartVersion: 制品版本( 从第三方安装时,不传这个参数)
|
38859
38857
|
:type ChartVersion: str
|
38860
38858
|
:param _ChartRepoURL: 制品仓库URL地址
|
38861
38859
|
:type ChartRepoURL: str
|
@@ -38865,7 +38863,7 @@ class UpgradeClusterReleaseRequest(AbstractModel):
|
|
38865
38863
|
:type Password: str
|
38866
38864
|
:param _ChartNamespace: 制品命名空间
|
38867
38865
|
:type ChartNamespace: str
|
38868
|
-
:param _ClusterType: 集群类型,支持传 tke, eks, tkeedge,
|
38866
|
+
:param _ClusterType: 集群类型,支持传 tke, eks, tkeedge, external(注册集群)
|
38869
38867
|
:type ClusterType: str
|
38870
38868
|
"""
|
38871
38869
|
self._ClusterId = None
|
@@ -25197,6 +25197,77 @@ class DescribeUsableUnitNamespacesResponse(AbstractModel):
|
|
25197
25197
|
self._RequestId = params.get("RequestId")
|
25198
25198
|
|
25199
25199
|
|
25200
|
+
class DisableLaneRuleRequest(AbstractModel):
|
25201
|
+
"""DisableLaneRule请求参数结构体
|
25202
|
+
|
25203
|
+
"""
|
25204
|
+
|
25205
|
+
def __init__(self):
|
25206
|
+
r"""
|
25207
|
+
:param _RuleId: 泳道规则ID
|
25208
|
+
:type RuleId: str
|
25209
|
+
"""
|
25210
|
+
self._RuleId = None
|
25211
|
+
|
25212
|
+
@property
|
25213
|
+
def RuleId(self):
|
25214
|
+
return self._RuleId
|
25215
|
+
|
25216
|
+
@RuleId.setter
|
25217
|
+
def RuleId(self, RuleId):
|
25218
|
+
self._RuleId = RuleId
|
25219
|
+
|
25220
|
+
|
25221
|
+
def _deserialize(self, params):
|
25222
|
+
self._RuleId = params.get("RuleId")
|
25223
|
+
memeber_set = set(params.keys())
|
25224
|
+
for name, value in vars(self).items():
|
25225
|
+
property_name = name[1:]
|
25226
|
+
if property_name in memeber_set:
|
25227
|
+
memeber_set.remove(property_name)
|
25228
|
+
if len(memeber_set) > 0:
|
25229
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
25230
|
+
|
25231
|
+
|
25232
|
+
|
25233
|
+
class DisableLaneRuleResponse(AbstractModel):
|
25234
|
+
"""DisableLaneRule返回参数结构体
|
25235
|
+
|
25236
|
+
"""
|
25237
|
+
|
25238
|
+
def __init__(self):
|
25239
|
+
r"""
|
25240
|
+
:param _Result: 操作状态。成功:true,失败:false
|
25241
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
25242
|
+
:type Result: bool
|
25243
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
25244
|
+
:type RequestId: str
|
25245
|
+
"""
|
25246
|
+
self._Result = None
|
25247
|
+
self._RequestId = None
|
25248
|
+
|
25249
|
+
@property
|
25250
|
+
def Result(self):
|
25251
|
+
return self._Result
|
25252
|
+
|
25253
|
+
@Result.setter
|
25254
|
+
def Result(self, Result):
|
25255
|
+
self._Result = Result
|
25256
|
+
|
25257
|
+
@property
|
25258
|
+
def RequestId(self):
|
25259
|
+
return self._RequestId
|
25260
|
+
|
25261
|
+
@RequestId.setter
|
25262
|
+
def RequestId(self, RequestId):
|
25263
|
+
self._RequestId = RequestId
|
25264
|
+
|
25265
|
+
|
25266
|
+
def _deserialize(self, params):
|
25267
|
+
self._Result = params.get("Result")
|
25268
|
+
self._RequestId = params.get("RequestId")
|
25269
|
+
|
25270
|
+
|
25200
25271
|
class DisableTaskFlowRequest(AbstractModel):
|
25201
25272
|
"""DisableTaskFlow请求参数结构体
|
25202
25273
|
|
@@ -25715,6 +25786,77 @@ class DraftApiGroupResponse(AbstractModel):
|
|
25715
25786
|
self._RequestId = params.get("RequestId")
|
25716
25787
|
|
25717
25788
|
|
25789
|
+
class EnableLaneRuleRequest(AbstractModel):
|
25790
|
+
"""EnableLaneRule请求参数结构体
|
25791
|
+
|
25792
|
+
"""
|
25793
|
+
|
25794
|
+
def __init__(self):
|
25795
|
+
r"""
|
25796
|
+
:param _RuleId: 泳道规则ID
|
25797
|
+
:type RuleId: str
|
25798
|
+
"""
|
25799
|
+
self._RuleId = None
|
25800
|
+
|
25801
|
+
@property
|
25802
|
+
def RuleId(self):
|
25803
|
+
return self._RuleId
|
25804
|
+
|
25805
|
+
@RuleId.setter
|
25806
|
+
def RuleId(self, RuleId):
|
25807
|
+
self._RuleId = RuleId
|
25808
|
+
|
25809
|
+
|
25810
|
+
def _deserialize(self, params):
|
25811
|
+
self._RuleId = params.get("RuleId")
|
25812
|
+
memeber_set = set(params.keys())
|
25813
|
+
for name, value in vars(self).items():
|
25814
|
+
property_name = name[1:]
|
25815
|
+
if property_name in memeber_set:
|
25816
|
+
memeber_set.remove(property_name)
|
25817
|
+
if len(memeber_set) > 0:
|
25818
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
25819
|
+
|
25820
|
+
|
25821
|
+
|
25822
|
+
class EnableLaneRuleResponse(AbstractModel):
|
25823
|
+
"""EnableLaneRule返回参数结构体
|
25824
|
+
|
25825
|
+
"""
|
25826
|
+
|
25827
|
+
def __init__(self):
|
25828
|
+
r"""
|
25829
|
+
:param _Result: 操作状态。成功:true,失败:false
|
25830
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
25831
|
+
:type Result: bool
|
25832
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
25833
|
+
:type RequestId: str
|
25834
|
+
"""
|
25835
|
+
self._Result = None
|
25836
|
+
self._RequestId = None
|
25837
|
+
|
25838
|
+
@property
|
25839
|
+
def Result(self):
|
25840
|
+
return self._Result
|
25841
|
+
|
25842
|
+
@Result.setter
|
25843
|
+
def Result(self, Result):
|
25844
|
+
self._Result = Result
|
25845
|
+
|
25846
|
+
@property
|
25847
|
+
def RequestId(self):
|
25848
|
+
return self._RequestId
|
25849
|
+
|
25850
|
+
@RequestId.setter
|
25851
|
+
def RequestId(self, RequestId):
|
25852
|
+
self._RequestId = RequestId
|
25853
|
+
|
25854
|
+
|
25855
|
+
def _deserialize(self, params):
|
25856
|
+
self._Result = params.get("Result")
|
25857
|
+
self._RequestId = params.get("RequestId")
|
25858
|
+
|
25859
|
+
|
25718
25860
|
class EnableTaskFlowRequest(AbstractModel):
|
25719
25861
|
"""EnableTaskFlow请求参数结构体
|
25720
25862
|
|
@@ -33042,7 +33184,7 @@ class ModifyLaneRuleResponse(AbstractModel):
|
|
33042
33184
|
|
33043
33185
|
def __init__(self):
|
33044
33186
|
r"""
|
33045
|
-
:param _Result:
|
33187
|
+
:param _Result: 操作状态。成功:true,失败:false
|
33046
33188
|
注意:此字段可能返回 null,表示取不到有效值。
|
33047
33189
|
:type Result: bool
|
33048
33190
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -3617,6 +3617,29 @@ class TsfClient(AbstractClient):
|
|
3617
3617
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
3618
3618
|
|
3619
3619
|
|
3620
|
+
def DisableLaneRule(self, request):
|
3621
|
+
"""禁用泳道规则
|
3622
|
+
|
3623
|
+
:param request: Request instance for DisableLaneRule.
|
3624
|
+
:type request: :class:`tencentcloud.tsf.v20180326.models.DisableLaneRuleRequest`
|
3625
|
+
:rtype: :class:`tencentcloud.tsf.v20180326.models.DisableLaneRuleResponse`
|
3626
|
+
|
3627
|
+
"""
|
3628
|
+
try:
|
3629
|
+
params = request._serialize()
|
3630
|
+
headers = request.headers
|
3631
|
+
body = self.call("DisableLaneRule", params, headers=headers)
|
3632
|
+
response = json.loads(body)
|
3633
|
+
model = models.DisableLaneRuleResponse()
|
3634
|
+
model._deserialize(response["Response"])
|
3635
|
+
return model
|
3636
|
+
except Exception as e:
|
3637
|
+
if isinstance(e, TencentCloudSDKException):
|
3638
|
+
raise
|
3639
|
+
else:
|
3640
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
3641
|
+
|
3642
|
+
|
3620
3643
|
def DisableTask(self, request):
|
3621
3644
|
"""停用任务
|
3622
3645
|
|
@@ -3778,6 +3801,29 @@ class TsfClient(AbstractClient):
|
|
3778
3801
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
3779
3802
|
|
3780
3803
|
|
3804
|
+
def EnableLaneRule(self, request):
|
3805
|
+
"""启用泳道规则
|
3806
|
+
|
3807
|
+
:param request: Request instance for EnableLaneRule.
|
3808
|
+
:type request: :class:`tencentcloud.tsf.v20180326.models.EnableLaneRuleRequest`
|
3809
|
+
:rtype: :class:`tencentcloud.tsf.v20180326.models.EnableLaneRuleResponse`
|
3810
|
+
|
3811
|
+
"""
|
3812
|
+
try:
|
3813
|
+
params = request._serialize()
|
3814
|
+
headers = request.headers
|
3815
|
+
body = self.call("EnableLaneRule", params, headers=headers)
|
3816
|
+
response = json.loads(body)
|
3817
|
+
model = models.EnableLaneRuleResponse()
|
3818
|
+
model._deserialize(response["Response"])
|
3819
|
+
return model
|
3820
|
+
except Exception as e:
|
3821
|
+
if isinstance(e, TencentCloudSDKException):
|
3822
|
+
raise
|
3823
|
+
else:
|
3824
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
3825
|
+
|
3826
|
+
|
3781
3827
|
def EnableTask(self, request):
|
3782
3828
|
"""启用任务
|
3783
3829
|
|
{tencentcloud_sdk_python-3.0.1151.dist-info → tencentcloud_sdk_python-3.0.1152.dist-info}/RECORD
RENAMED
@@ -50,7 +50,7 @@ QcloudApi/modules/vod.py,sha256=l05_qYx0l5bq6LJ8mAX2YO3pRXzxY3JMdDHV1N_SRKE,679
|
|
50
50
|
QcloudApi/modules/vpc.py,sha256=JBiNpcnrAwf_UJ_UdpxQybKeCTfeveJ9R1B-vO1_w_U,679
|
51
51
|
QcloudApi/modules/wenzhi.py,sha256=hr1rRLU8TxxSfejMqV2O4alO_yXF3C0tfZMSzziu54Q,685
|
52
52
|
QcloudApi/modules/yunsou.py,sha256=JlgzMjnJaho6axFVhSTAv6DS0HLcjl0LJL02q6qI2yY,685
|
53
|
-
tencentcloud/__init__.py,sha256=
|
53
|
+
tencentcloud/__init__.py,sha256=QtBx6mQrqYpg_nDb1-NkmbY02xm7gOWYdT7SEIA3e2Q,631
|
54
54
|
tencentcloud/aa/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
55
55
|
tencentcloud/aa/v20200224/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
56
56
|
tencentcloud/aa/v20200224/aa_client.py,sha256=L7P5zpJElo9WoLSkhvLxnfpEGCZ1q2e5Fzx3wLEioAA,2184
|
@@ -492,9 +492,9 @@ tencentcloud/dcdb/v20180411/errorcodes.py,sha256=T3UkIh6ZBDw2xa-zulZx7fJYTVTOs76
|
|
492
492
|
tencentcloud/dcdb/v20180411/models.py,sha256=pd8FYVw4i_oBBYzbFPBn1EHMik69wo8-s4EFHVlbB9o,411989
|
493
493
|
tencentcloud/dlc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
494
494
|
tencentcloud/dlc/v20210125/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
495
|
-
tencentcloud/dlc/v20210125/dlc_client.py,sha256=
|
495
|
+
tencentcloud/dlc/v20210125/dlc_client.py,sha256=HwUIWkgmKUzK-BG2aep5PdpkMDDq5sTGG-VYD2uI1IY,115252
|
496
496
|
tencentcloud/dlc/v20210125/errorcodes.py,sha256=q-u--_3HUZXEwKhe3GPZTa9CByyXAhV1bHTdFhpqiz4,30362
|
497
|
-
tencentcloud/dlc/v20210125/models.py,sha256=
|
497
|
+
tencentcloud/dlc/v20210125/models.py,sha256=iVeVS0JOQd7ApOEXLZQjJBw5vmIIQJePmQo3aRpXTEw,796762
|
498
498
|
tencentcloud/dnspod/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
499
499
|
tencentcloud/dnspod/v20210323/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
500
500
|
tencentcloud/dnspod/v20210323/dnspod_client.py,sha256=xEPJUhz1jfAbNwqZvN9V1r2DQaKfu05Bh_2RFzcLMS0,67581
|
@@ -737,7 +737,7 @@ tencentcloud/iotexplorer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
737
737
|
tencentcloud/iotexplorer/v20190423/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
738
738
|
tencentcloud/iotexplorer/v20190423/errorcodes.py,sha256=8PfDQpxqLPvU8XnMZj7Hhgv1rJkhXeH-sZtXiPK3reo,22095
|
739
739
|
tencentcloud/iotexplorer/v20190423/iotexplorer_client.py,sha256=YFn2DlLpM9JZ21uMZFrW8CrefgTtwGEuov9EksMB748,120736
|
740
|
-
tencentcloud/iotexplorer/v20190423/models.py,sha256=
|
740
|
+
tencentcloud/iotexplorer/v20190423/models.py,sha256=9yIOL5nG82Mpm7qM6hQS1266N5_Wqpf_wnpq-Tb_DHM,521496
|
741
741
|
tencentcloud/iottid/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
742
742
|
tencentcloud/iottid/v20190411/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
743
743
|
tencentcloud/iottid/v20190411/errorcodes.py,sha256=8HLJco204GFDbjmQDdjbUSLO1AFGPXVNVhsglGcae-g,1707
|
@@ -876,7 +876,7 @@ tencentcloud/monitor/v20180724/monitor_client.py,sha256=QZJsG5PUGybk01NwtlSnFekG
|
|
876
876
|
tencentcloud/mps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
877
877
|
tencentcloud/mps/v20190612/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
878
878
|
tencentcloud/mps/v20190612/errorcodes.py,sha256=d8Goh4KkepFlnGa9-0wreNaWJw2XU7YiSIakDEjI1pE,13699
|
879
|
-
tencentcloud/mps/v20190612/models.py,sha256=
|
879
|
+
tencentcloud/mps/v20190612/models.py,sha256=sRMzJ_pb8-8N1RyH7HCQIw4I2SwhRmFC5V3KNDD8FiY,1378999
|
880
880
|
tencentcloud/mps/v20190612/mps_client.py,sha256=9CTnbs4WwUWdMnJ42wbhnKT-a1DukoLuRdKfIHzJftw,100517
|
881
881
|
tencentcloud/mrs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
882
882
|
tencentcloud/mrs/v20200910/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1191,7 +1191,7 @@ tencentcloud/teo/v20220106/models.py,sha256=rkriO1NNqjyJntfd99ifhT61-9R0muvljDfS
|
|
1191
1191
|
tencentcloud/teo/v20220106/teo_client.py,sha256=zKdu8PLL0kN-RRe1XGMwbrcaYtB_Ou7Z6YXb50_K2Gc,5399
|
1192
1192
|
tencentcloud/teo/v20220901/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1193
1193
|
tencentcloud/teo/v20220901/errorcodes.py,sha256=0CWlwpCr2sx4W_l-1M_nltzpBRE4V_TA8OBmCJcRyGc,45644
|
1194
|
-
tencentcloud/teo/v20220901/models.py,sha256=
|
1194
|
+
tencentcloud/teo/v20220901/models.py,sha256=a7uzRN55b6uTL7_Dth_YE18qlRwTrqwwnHNIXoPFUDw,835562
|
1195
1195
|
tencentcloud/teo/v20220901/teo_client.py,sha256=ke11Gr2_jTTwdQSFSMkSnQ68GHHo76xBDUQZcYtZw8U,102929
|
1196
1196
|
tencentcloud/thpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1197
1197
|
tencentcloud/thpc/v20211109/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1243,7 +1243,7 @@ tencentcloud/tione/v20191022/models.py,sha256=WiYuN65FXyAWbVOsz2uRpJ369jBtYxFwPR
|
|
1243
1243
|
tencentcloud/tione/v20191022/tione_client.py,sha256=fV7aF7w36i9jgvrJF1qGEVscFHrEI4Ukej9_PpGxaKw,21143
|
1244
1244
|
tencentcloud/tione/v20211111/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1245
1245
|
tencentcloud/tione/v20211111/errorcodes.py,sha256=_gLO0ZJgPciQkJ9HpLf_4XLKkruCtQMwZWGM6BmZJXI,19189
|
1246
|
-
tencentcloud/tione/v20211111/models.py,sha256=
|
1246
|
+
tencentcloud/tione/v20211111/models.py,sha256=iWBqmH3PdHJN6KrI1RnlFRpmpg-yZNuGZak9RrUevsY,735176
|
1247
1247
|
tencentcloud/tione/v20211111/tione_client.py,sha256=98LZqzcIet17xf0Z8ri81XCISS1uXOL_7ptCAR6evII,70294
|
1248
1248
|
tencentcloud/tiw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1249
1249
|
tencentcloud/tiw/v20190919/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1253,7 +1253,7 @@ tencentcloud/tiw/v20190919/tiw_client.py,sha256=vARxuPvbelzSgsDMZuIQSoppzEutxJaP
|
|
1253
1253
|
tencentcloud/tke/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1254
1254
|
tencentcloud/tke/v20180525/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1255
1255
|
tencentcloud/tke/v20180525/errorcodes.py,sha256=deGqLrkjV1TwN3N6nhMaoYiQQ8Y3h0207qCmeOql6bM,20644
|
1256
|
-
tencentcloud/tke/v20180525/models.py,sha256=
|
1256
|
+
tencentcloud/tke/v20180525/models.py,sha256=OK7Q3T_UWHbh_jQCqGoloM930MQOT5V-HNN3FyWXKuc,1189803
|
1257
1257
|
tencentcloud/tke/v20180525/tke_client.py,sha256=B67Sq3NN-jhNTJc4vd15Ka5Z9b8F0X6pm0p_mESgLg0,207337
|
1258
1258
|
tencentcloud/tke/v20220501/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1259
1259
|
tencentcloud/tke/v20220501/errorcodes.py,sha256=1d5UObbunCeop2dF1ynMu5MNaVtKXkfVKZwkKxaRGII,2032
|
@@ -1316,8 +1316,8 @@ tencentcloud/tse/v20201207/tse_client.py,sha256=3tGGVUFNqTkJ2lZu_DqhfmA_s_UaulHL
|
|
1316
1316
|
tencentcloud/tsf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1317
1317
|
tencentcloud/tsf/v20180326/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1318
1318
|
tencentcloud/tsf/v20180326/errorcodes.py,sha256=3P2ebelyceENaVq_kWystj1_6TjZzKeGMQKNYImVqKY,50784
|
1319
|
-
tencentcloud/tsf/v20180326/models.py,sha256=
|
1320
|
-
tencentcloud/tsf/v20180326/tsf_client.py,sha256=
|
1319
|
+
tencentcloud/tsf/v20180326/models.py,sha256=ZuWFB2-Uv3c7PUW8oc_W9xgifI3AyMSsxAaQueFMvqk,1343785
|
1320
|
+
tencentcloud/tsf/v20180326/tsf_client.py,sha256=DmhDhSHnzYZG4nHGhiABX2MZSlDHpDEnY6DADUhNM6c,198907
|
1321
1321
|
tencentcloud/tsw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1322
1322
|
tencentcloud/tsw/v20200924/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1323
1323
|
tencentcloud/tsw/v20200924/errorcodes.py,sha256=JjzBKhEAD8EAScLPJdVMhb_AEom5CiRFPj26_h1rg4A,652
|
@@ -1429,8 +1429,8 @@ tencentcloud/yunsou/v20191115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
1429
1429
|
tencentcloud/yunsou/v20191115/errorcodes.py,sha256=zB4-XPxmvEhgHoLsKlbayJVRLEagPDcs-UAheVZCoAc,1301
|
1430
1430
|
tencentcloud/yunsou/v20191115/models.py,sha256=sNTR9ixO8CV9yKQahrhOsEJlxOK5d7aXBoIBIPxfJsQ,23137
|
1431
1431
|
tencentcloud/yunsou/v20191115/yunsou_client.py,sha256=ly73Hr8rGamWa6AAvQjurKgd4L83PRY5WjcDv4ziQC8,2741
|
1432
|
-
tencentcloud_sdk_python-3.0.
|
1433
|
-
tencentcloud_sdk_python-3.0.
|
1434
|
-
tencentcloud_sdk_python-3.0.
|
1435
|
-
tencentcloud_sdk_python-3.0.
|
1436
|
-
tencentcloud_sdk_python-3.0.
|
1432
|
+
tencentcloud_sdk_python-3.0.1152.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
|
1433
|
+
tencentcloud_sdk_python-3.0.1152.dist-info/METADATA,sha256=y7oMxnGtF8sYlnEycjN43_lSx0aRyPn1QuWbyidZcXY,1511
|
1434
|
+
tencentcloud_sdk_python-3.0.1152.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
1435
|
+
tencentcloud_sdk_python-3.0.1152.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
|
1436
|
+
tencentcloud_sdk_python-3.0.1152.dist-info/RECORD,,
|
{tencentcloud_sdk_python-3.0.1151.dist-info → tencentcloud_sdk_python-3.0.1152.dist-info}/LICENSE
RENAMED
File without changes
|
{tencentcloud_sdk_python-3.0.1151.dist-info → tencentcloud_sdk_python-3.0.1152.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|