tencentcloud-sdk-python 3.0.1151__py2.py3-none-any.whl → 3.0.1153__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.
@@ -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, exernal(注册集群)
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, exernal(注册集群)
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
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python
3
- Version: 3.0.1151
3
+ Version: 3.0.1153
4
4
  Summary: Tencent Cloud SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -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=DtwDwBauz1G3jqZhcnMOSIKB7Sxg23BfCdJYW1F_6_0,631
53
+ tencentcloud/__init__.py,sha256=BlzH05waaPP5T6f_VZslFarwt_yZ5n3uMTPSqc9n85s,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
@@ -350,7 +350,7 @@ tencentcloud/ckafka/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
350
350
  tencentcloud/ckafka/v20190819/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
351
351
  tencentcloud/ckafka/v20190819/ckafka_client.py,sha256=xNJhaTtg0S3VAYeW4utKz6TTqGWTEUH4kZZrc-zkweg,75510
352
352
  tencentcloud/ckafka/v20190819/errorcodes.py,sha256=sPYGdgXWt4BcCbJaKnm15NxxtU6Izt8UZNd84ZQExBQ,3315
353
- tencentcloud/ckafka/v20190819/models.py,sha256=wFs2LgzgGh8IwjDVyV1Rp_mfd7T0zJ_1E1S66Ia0zQA,823298
353
+ tencentcloud/ckafka/v20190819/models.py,sha256=y5N0-YpfXungGE2Any3QzPwNm6egRGvLqx-S1PK5JWE,823668
354
354
  tencentcloud/clb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
355
355
  tencentcloud/clb/v20180317/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
356
356
  tencentcloud/clb/v20180317/clb_client.py,sha256=nh3jUzeAnA6uOK7qKu0PJYGzMbWhXPCfr-Jl4IyyLEk,98330
@@ -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=E1QtPkDqD3xduWaxbTc00yo7Df0b5R_K-h3GgXRMwXc,114341
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=6LTk5MWNvIyPqy9EuIA0DUY7BB9BgG84pOnQDCW_cSA,791015
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
@@ -581,8 +581,8 @@ tencentcloud/es/v20180416/models.py,sha256=j6nZqae78PYvI9O9tc2eayJlFOGtkVVPthIJ6
581
581
  tencentcloud/ess/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
582
582
  tencentcloud/ess/v20201111/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
583
583
  tencentcloud/ess/v20201111/errorcodes.py,sha256=2n89U4czb0w4J8VyN7uMdYmbK8tGlK8nJHuVZbGrKRg,25736
584
- tencentcloud/ess/v20201111/ess_client.py,sha256=ZhKbm9GGPHtqutKIjskmedb1yEdx0AtBOlTr1W4gRMw,134354
585
- tencentcloud/ess/v20201111/models.py,sha256=wbbvD0iNLjaWidMlkhsnw46NTBEt4ReVSL7LQkKSPwA,809765
584
+ tencentcloud/ess/v20201111/ess_client.py,sha256=vt7fPSH5LedP18yVKX5kM3uA0wwXrlQ31QcbvyPUNo8,134757
585
+ tencentcloud/ess/v20201111/models.py,sha256=NgMjvQ4RAwdwlJz8dJfa4tczoQpc9hthaHSdlpdM5UA,810760
586
586
  tencentcloud/essbasic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
587
587
  tencentcloud/essbasic/v20201222/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
588
588
  tencentcloud/essbasic/v20201222/errorcodes.py,sha256=cZPs0vLmArRFQoZqxM4alb0WeBF9f0V0IHmt65dUdxs,5392
@@ -591,7 +591,7 @@ tencentcloud/essbasic/v20201222/models.py,sha256=Q2E6jmVT1emRziwRN-qj8XpdzpxvqqH
591
591
  tencentcloud/essbasic/v20210526/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
592
592
  tencentcloud/essbasic/v20210526/errorcodes.py,sha256=L1_0J4AOPtBTgtVqauXq0aVisXRe03bOUWFB0QCnXRs,18219
593
593
  tencentcloud/essbasic/v20210526/essbasic_client.py,sha256=RMjEa_zeDuv8OlKH8JbbpkEbm6IsperHT6IDB8MebLQ,134796
594
- tencentcloud/essbasic/v20210526/models.py,sha256=wmDo32G_tJuDLAxZ9pG1z-7BruBUMWwH8TtF5MH3wb0,739598
594
+ tencentcloud/essbasic/v20210526/models.py,sha256=nppK-XsTIMcECyXNiMqhMrZ4diemgSrYWsqO1jqbeK8,739878
595
595
  tencentcloud/facefusion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
596
596
  tencentcloud/facefusion/v20181201/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
597
597
  tencentcloud/facefusion/v20181201/errorcodes.py,sha256=v269JghsRzIpaQbiHgyqn8wKNfvjYkVM7SjaPBRQYPs,5731
@@ -670,7 +670,7 @@ tencentcloud/hunyuan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hS
670
670
  tencentcloud/hunyuan/v20230901/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
671
671
  tencentcloud/hunyuan/v20230901/errorcodes.py,sha256=IWgQkpe5W36F9wcH98DZndBAy_JYjVaJnYIKseLae6Q,2032
672
672
  tencentcloud/hunyuan/v20230901/hunyuan_client.py,sha256=fRqXQtMhCrhw04YKagxsUTbreMumAYrlbAQHGQkedaE,10489
673
- tencentcloud/hunyuan/v20230901/models.py,sha256=-rIkTFKr7fRT5h2OBr1CfIP6_NkKgsPmCQwitq5oQNA,49419
673
+ tencentcloud/hunyuan/v20230901/models.py,sha256=jAycQ4CvXW9ASp4qfSD4qduw06VjjE3CqhiCdHfqA0I,49460
674
674
  tencentcloud/iai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
675
675
  tencentcloud/iai/v20180301/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
676
676
  tencentcloud/iai/v20180301/errorcodes.py,sha256=xzb_jVEPBY2KTTJJcsktqdNxS6Bz5-wq8ufnGgMmMX8,11999
@@ -736,8 +736,8 @@ tencentcloud/iotcloud/v20210408/models.py,sha256=xguEgcarj3Eu_055Vo6yj1_WBBgiNUD
736
736
  tencentcloud/iotexplorer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
737
737
  tencentcloud/iotexplorer/v20190423/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
738
738
  tencentcloud/iotexplorer/v20190423/errorcodes.py,sha256=8PfDQpxqLPvU8XnMZj7Hhgv1rJkhXeH-sZtXiPK3reo,22095
739
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py,sha256=YFn2DlLpM9JZ21uMZFrW8CrefgTtwGEuov9EksMB748,120736
740
- tencentcloud/iotexplorer/v20190423/models.py,sha256=_NqyghrvUgrCoIrE8Gq63NwkEs2YllNhQrcM6cUblag,520289
739
+ tencentcloud/iotexplorer/v20190423/iotexplorer_client.py,sha256=WVg3SwbmkAF2gfkhgeBWXblwGGg3b9Bsb5vM-vEMGcA,121748
740
+ tencentcloud/iotexplorer/v20190423/models.py,sha256=aUp2EDwh3V109cz7icua5dF9NDA3QBqvdalqMq3wcY4,524114
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=vjw-jKQyZshE6_tlR1oEXMkfjaKfIZ3j6dTsQ3stoY8,1378996
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=KGavsuhUPKSZxHC3_hk7uWjdZgsUWAZ0NM7Buzwqxe8,835582
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
@@ -1242,9 +1242,9 @@ tencentcloud/tione/v20191022/errorcodes.py,sha256=6-jRe_FFur3_Q6SxaaE3kyN-typUoN
1242
1242
  tencentcloud/tione/v20191022/models.py,sha256=WiYuN65FXyAWbVOsz2uRpJ369jBtYxFwPRi-gDqu5G4,144167
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
- tencentcloud/tione/v20211111/errorcodes.py,sha256=_gLO0ZJgPciQkJ9HpLf_4XLKkruCtQMwZWGM6BmZJXI,19189
1246
- tencentcloud/tione/v20211111/models.py,sha256=S6Bu2GZlXWkws2wJOrSJW3PRS8OmGn79exkcS1LBfh0,731468
1247
- tencentcloud/tione/v20211111/tione_client.py,sha256=98LZqzcIet17xf0Z8ri81XCISS1uXOL_7ptCAR6evII,70294
1245
+ tencentcloud/tione/v20211111/errorcodes.py,sha256=FsWMWuxDjNSZ7trlpJSRkisWzZ564_4VoB8JiQhr6zc,13858
1246
+ tencentcloud/tione/v20211111/models.py,sha256=Sx2-Ayqxjfq3tQJZTHuYogkME_mMxqe6drCy3HHh1M4,476014
1247
+ tencentcloud/tione/v20211111/tione_client.py,sha256=wKGwqy_Kk91Xwvwg8AbhG-iml7-GSLxbBj15fTHuGuA,35469
1248
1248
  tencentcloud/tiw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1249
1249
  tencentcloud/tiw/v20190919/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1250
1250
  tencentcloud/tiw/v20190919/errorcodes.py,sha256=0oMWmaqetmlvem4cOEGq7Bg8TXj3szer_XKifuBhAAY,6092
@@ -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=aAoH3CmIoalj7YOgMdTUHyFOi_SzuV_fqNFOrTFN0YE,1189799
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=8hO0AuJ_hgmPwvkxYIlCdfJ5jyxIWcQkMXrVHLhk0Eo,1339970
1320
- tencentcloud/tsf/v20180326/tsf_client.py,sha256=8ACWk1aXaVn1Xi_bY8hU80EQHkVeYhcCJgdC_yJSosY,197199
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.1151.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
1433
- tencentcloud_sdk_python-3.0.1151.dist-info/METADATA,sha256=0d28AC9bN4r0BiVrr34nx-BHW7RDWZ8DfG5wvkKozcc,1511
1434
- tencentcloud_sdk_python-3.0.1151.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
1435
- tencentcloud_sdk_python-3.0.1151.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
1436
- tencentcloud_sdk_python-3.0.1151.dist-info/RECORD,,
1432
+ tencentcloud_sdk_python-3.0.1153.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
1433
+ tencentcloud_sdk_python-3.0.1153.dist-info/METADATA,sha256=5DVKIZ7n0LXj5ufExURGg_TMh6hyCjTcqDb31USQ9oI,1511
1434
+ tencentcloud_sdk_python-3.0.1153.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
1435
+ tencentcloud_sdk_python-3.0.1153.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
1436
+ tencentcloud_sdk_python-3.0.1153.dist-info/RECORD,,