tencentcloud-sdk-python 3.0.1401__py2.py3-none-any.whl → 3.0.1402__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.
@@ -2250,6 +2250,8 @@ class CallDetail(AbstractModel):
2250
2250
  :param _SubScene: 筛选子场景
2251
2251
  注意:此字段可能返回 null,表示取不到有效值。
2252
2252
  :type SubScene: str
2253
+ :param _BillingTag: 账单明细对应的自定义tag
2254
+ :type BillingTag: str
2253
2255
  """
2254
2256
  self._Id = None
2255
2257
  self._CallTime = None
@@ -2263,6 +2265,7 @@ class CallDetail(AbstractModel):
2263
2265
  self._AppName = None
2264
2266
  self._PageUsage = None
2265
2267
  self._SubScene = None
2268
+ self._BillingTag = None
2266
2269
 
2267
2270
  @property
2268
2271
  def Id(self):
@@ -2408,6 +2411,17 @@ class CallDetail(AbstractModel):
2408
2411
  def SubScene(self, SubScene):
2409
2412
  self._SubScene = SubScene
2410
2413
 
2414
+ @property
2415
+ def BillingTag(self):
2416
+ """账单明细对应的自定义tag
2417
+ :rtype: str
2418
+ """
2419
+ return self._BillingTag
2420
+
2421
+ @BillingTag.setter
2422
+ def BillingTag(self, BillingTag):
2423
+ self._BillingTag = BillingTag
2424
+
2411
2425
 
2412
2426
  def _deserialize(self, params):
2413
2427
  self._Id = params.get("Id")
@@ -2422,6 +2436,7 @@ class CallDetail(AbstractModel):
2422
2436
  self._AppName = params.get("AppName")
2423
2437
  self._PageUsage = params.get("PageUsage")
2424
2438
  self._SubScene = params.get("SubScene")
2439
+ self._BillingTag = params.get("BillingTag")
2425
2440
  memeber_set = set(params.keys())
2426
2441
  for name, value in vars(self).items():
2427
2442
  property_name = name[1:]
@@ -5952,6 +5967,8 @@ class DescribeAppResponse(AbstractModel):
5952
5967
  :type AppStatus: int
5953
5968
  :param _AppStatusDesc: 状态说明
5954
5969
  :type AppStatusDesc: str
5970
+ :param _IsCopying: 应用是否在复制中
5971
+ :type IsCopying: bool
5955
5972
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5956
5973
  :type RequestId: str
5957
5974
  """
@@ -5968,6 +5985,7 @@ class DescribeAppResponse(AbstractModel):
5968
5985
  self._AppKey = None
5969
5986
  self._AppStatus = None
5970
5987
  self._AppStatusDesc = None
5988
+ self._IsCopying = None
5971
5989
  self._RequestId = None
5972
5990
 
5973
5991
  @property
@@ -6113,6 +6131,17 @@ class DescribeAppResponse(AbstractModel):
6113
6131
  def AppStatusDesc(self, AppStatusDesc):
6114
6132
  self._AppStatusDesc = AppStatusDesc
6115
6133
 
6134
+ @property
6135
+ def IsCopying(self):
6136
+ """应用是否在复制中
6137
+ :rtype: bool
6138
+ """
6139
+ return self._IsCopying
6140
+
6141
+ @IsCopying.setter
6142
+ def IsCopying(self, IsCopying):
6143
+ self._IsCopying = IsCopying
6144
+
6116
6145
  @property
6117
6146
  def RequestId(self):
6118
6147
  """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -6143,6 +6172,7 @@ class DescribeAppResponse(AbstractModel):
6143
6172
  self._AppKey = params.get("AppKey")
6144
6173
  self._AppStatus = params.get("AppStatus")
6145
6174
  self._AppStatusDesc = params.get("AppStatusDesc")
6175
+ self._IsCopying = params.get("IsCopying")
6146
6176
  self._RequestId = params.get("RequestId")
6147
6177
 
6148
6178
 
@@ -20296,9 +20326,9 @@ class ListUsageCallDetailRequest(AbstractModel):
20296
20326
  :type StartTime: str
20297
20327
  :param _EndTime: 结束时间
20298
20328
  :type EndTime: str
20299
- :param _PageNumber: 页码
20329
+ :param _PageNumber: 页码(从1开始)
20300
20330
  :type PageNumber: int
20301
- :param _PageSize: 分页数量
20331
+ :param _PageSize: 分页数量(最大值1000)
20302
20332
  :type PageSize: int
20303
20333
  :param _UinAccount: uin列表
20304
20334
  :type UinAccount: list of str
@@ -20310,6 +20340,8 @@ class ListUsageCallDetailRequest(AbstractModel):
20310
20340
  :type SubScenes: list of str
20311
20341
  :param _AppType: 应用类型(knowledge_qa应用管理, shared_knowlege 共享知识库)
20312
20342
  :type AppType: str
20343
+ :param _BillingTag: 账单明细对应的自定义tag
20344
+ :type BillingTag: str
20313
20345
  """
20314
20346
  self._ModelName = None
20315
20347
  self._StartTime = None
@@ -20321,6 +20353,7 @@ class ListUsageCallDetailRequest(AbstractModel):
20321
20353
  self._CallType = None
20322
20354
  self._SubScenes = None
20323
20355
  self._AppType = None
20356
+ self._BillingTag = None
20324
20357
 
20325
20358
  @property
20326
20359
  def ModelName(self):
@@ -20357,7 +20390,7 @@ class ListUsageCallDetailRequest(AbstractModel):
20357
20390
 
20358
20391
  @property
20359
20392
  def PageNumber(self):
20360
- """页码
20393
+ """页码(从1开始)
20361
20394
  :rtype: int
20362
20395
  """
20363
20396
  return self._PageNumber
@@ -20368,7 +20401,7 @@ class ListUsageCallDetailRequest(AbstractModel):
20368
20401
 
20369
20402
  @property
20370
20403
  def PageSize(self):
20371
- """分页数量
20404
+ """分页数量(最大值1000)
20372
20405
  :rtype: int
20373
20406
  """
20374
20407
  return self._PageSize
@@ -20432,6 +20465,17 @@ class ListUsageCallDetailRequest(AbstractModel):
20432
20465
  def AppType(self, AppType):
20433
20466
  self._AppType = AppType
20434
20467
 
20468
+ @property
20469
+ def BillingTag(self):
20470
+ """账单明细对应的自定义tag
20471
+ :rtype: str
20472
+ """
20473
+ return self._BillingTag
20474
+
20475
+ @BillingTag.setter
20476
+ def BillingTag(self, BillingTag):
20477
+ self._BillingTag = BillingTag
20478
+
20435
20479
 
20436
20480
  def _deserialize(self, params):
20437
20481
  self._ModelName = params.get("ModelName")
@@ -20444,6 +20488,7 @@ class ListUsageCallDetailRequest(AbstractModel):
20444
20488
  self._CallType = params.get("CallType")
20445
20489
  self._SubScenes = params.get("SubScenes")
20446
20490
  self._AppType = params.get("AppType")
20491
+ self._BillingTag = params.get("BillingTag")
20447
20492
  memeber_set = set(params.keys())
20448
20493
  for name, value in vars(self).items():
20449
20494
  property_name = name[1:]
@@ -34640,11 +34640,11 @@ class TextVehicleFront(AbstractModel):
34640
34640
  :param _Seal: 印章
34641
34641
  注意:此字段可能返回 null,表示取不到有效值。
34642
34642
  :type Seal: str
34643
- :param _StateElectronic: 状态
34643
+ :param _StateElectronic: 状态,该字段仅支持电子行驶证返回
34644
34644
  :type StateElectronic: str
34645
- :param _InspectionValidityTimeElectronic: 检验有效期
34645
+ :param _InspectionValidityTimeElectronic: 检验有效期,该字段仅支持电子行驶证返回
34646
34646
  :type InspectionValidityTimeElectronic: str
34647
- :param _GenerationTimeElectronic: 生成时间
34647
+ :param _GenerationTimeElectronic: 生成时间,该字段仅支持电子行驶证返回
34648
34648
  :type GenerationTimeElectronic: str
34649
34649
  """
34650
34650
  self._PlateNo = None
@@ -34796,7 +34796,7 @@ class TextVehicleFront(AbstractModel):
34796
34796
 
34797
34797
  @property
34798
34798
  def StateElectronic(self):
34799
- """状态
34799
+ """状态,该字段仅支持电子行驶证返回
34800
34800
  :rtype: str
34801
34801
  """
34802
34802
  return self._StateElectronic
@@ -34807,7 +34807,7 @@ class TextVehicleFront(AbstractModel):
34807
34807
 
34808
34808
  @property
34809
34809
  def InspectionValidityTimeElectronic(self):
34810
- """检验有效期
34810
+ """检验有效期,该字段仅支持电子行驶证返回
34811
34811
  :rtype: str
34812
34812
  """
34813
34813
  return self._InspectionValidityTimeElectronic
@@ -34818,7 +34818,7 @@ class TextVehicleFront(AbstractModel):
34818
34818
 
34819
34819
  @property
34820
34820
  def GenerationTimeElectronic(self):
34821
- """生成时间
34821
+ """生成时间,该字段仅支持电子行驶证返回
34822
34822
  :rtype: str
34823
34823
  """
34824
34824
  return self._GenerationTimeElectronic
@@ -185,6 +185,9 @@ RESOURCENOTFOUND = 'ResourceNotFound'
185
185
  # 命令不存在。
186
186
  RESOURCENOTFOUND_COMMANDNOTFOUND = 'ResourceNotFound.CommandNotFound'
187
187
 
188
+ # CosBucket不存在。
189
+ RESOURCENOTFOUND_COSBUCKETNOTFOUNDCODE = 'ResourceNotFound.CosBucketNotFoundCode'
190
+
188
191
  # 实例不存在。
189
192
  RESOURCENOTFOUND_INSTANCENOTFOUND = 'ResourceNotFound.InstanceNotFound'
190
193
 
@@ -20010,6 +20010,115 @@ class DescribeLogSwitchesResponse(AbstractModel):
20010
20010
  self._RequestId = params.get("RequestId")
20011
20011
 
20012
20012
 
20013
+ class DescribeMasterComponentRequest(AbstractModel):
20014
+ """DescribeMasterComponent请求参数结构体
20015
+
20016
+ """
20017
+
20018
+ def __init__(self):
20019
+ r"""
20020
+ :param _ClusterId: 集群ID
20021
+ :type ClusterId: str
20022
+ :param _Component: master组件名称,支持kube-apiserver、kube-scheduler、kube-controller-manager
20023
+ :type Component: str
20024
+ """
20025
+ self._ClusterId = None
20026
+ self._Component = None
20027
+
20028
+ @property
20029
+ def ClusterId(self):
20030
+ """集群ID
20031
+ :rtype: str
20032
+ """
20033
+ return self._ClusterId
20034
+
20035
+ @ClusterId.setter
20036
+ def ClusterId(self, ClusterId):
20037
+ self._ClusterId = ClusterId
20038
+
20039
+ @property
20040
+ def Component(self):
20041
+ """master组件名称,支持kube-apiserver、kube-scheduler、kube-controller-manager
20042
+ :rtype: str
20043
+ """
20044
+ return self._Component
20045
+
20046
+ @Component.setter
20047
+ def Component(self, Component):
20048
+ self._Component = Component
20049
+
20050
+
20051
+ def _deserialize(self, params):
20052
+ self._ClusterId = params.get("ClusterId")
20053
+ self._Component = params.get("Component")
20054
+ memeber_set = set(params.keys())
20055
+ for name, value in vars(self).items():
20056
+ property_name = name[1:]
20057
+ if property_name in memeber_set:
20058
+ memeber_set.remove(property_name)
20059
+ if len(memeber_set) > 0:
20060
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
20061
+
20062
+
20063
+
20064
+ class DescribeMasterComponentResponse(AbstractModel):
20065
+ """DescribeMasterComponent返回参数结构体
20066
+
20067
+ """
20068
+
20069
+ def __init__(self):
20070
+ r"""
20071
+ :param _Component: master组件名称
20072
+ :type Component: str
20073
+ :param _Status: master组件状态,三种状态:running、updating、shutdown
20074
+ :type Status: str
20075
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
20076
+ :type RequestId: str
20077
+ """
20078
+ self._Component = None
20079
+ self._Status = None
20080
+ self._RequestId = None
20081
+
20082
+ @property
20083
+ def Component(self):
20084
+ """master组件名称
20085
+ :rtype: str
20086
+ """
20087
+ return self._Component
20088
+
20089
+ @Component.setter
20090
+ def Component(self, Component):
20091
+ self._Component = Component
20092
+
20093
+ @property
20094
+ def Status(self):
20095
+ """master组件状态,三种状态:running、updating、shutdown
20096
+ :rtype: str
20097
+ """
20098
+ return self._Status
20099
+
20100
+ @Status.setter
20101
+ def Status(self, Status):
20102
+ self._Status = Status
20103
+
20104
+ @property
20105
+ def RequestId(self):
20106
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
20107
+ :rtype: str
20108
+ """
20109
+ return self._RequestId
20110
+
20111
+ @RequestId.setter
20112
+ def RequestId(self, RequestId):
20113
+ self._RequestId = RequestId
20114
+
20115
+
20116
+ def _deserialize(self, params):
20117
+ self._Component = params.get("Component")
20118
+ self._Status = params.get("Status")
20119
+ self._RequestId = params.get("RequestId")
20120
+
20121
+
20013
20122
  class DescribeOSImagesRequest(AbstractModel):
20014
20123
  """DescribeOSImages请求参数结构体
20015
20124
 
@@ -34492,6 +34601,115 @@ class ModifyClusterVirtualNodePoolResponse(AbstractModel):
34492
34601
  self._RequestId = params.get("RequestId")
34493
34602
 
34494
34603
 
34604
+ class ModifyMasterComponentRequest(AbstractModel):
34605
+ """ModifyMasterComponent请求参数结构体
34606
+
34607
+ """
34608
+
34609
+ def __init__(self):
34610
+ r"""
34611
+ :param _ClusterId: 集群ID
34612
+ :type ClusterId: str
34613
+ :param _Component: master组件名称,支持kube-apiserver、kube-scheduler、kube-controller-manager
34614
+ :type Component: str
34615
+ :param _Operation: 停机或恢复,值只能为:shutdown或restore
34616
+ :type Operation: str
34617
+ :param _DryRun: 为true时,不真正执行停机或恢复操作
34618
+ :type DryRun: bool
34619
+ """
34620
+ self._ClusterId = None
34621
+ self._Component = None
34622
+ self._Operation = None
34623
+ self._DryRun = None
34624
+
34625
+ @property
34626
+ def ClusterId(self):
34627
+ """集群ID
34628
+ :rtype: str
34629
+ """
34630
+ return self._ClusterId
34631
+
34632
+ @ClusterId.setter
34633
+ def ClusterId(self, ClusterId):
34634
+ self._ClusterId = ClusterId
34635
+
34636
+ @property
34637
+ def Component(self):
34638
+ """master组件名称,支持kube-apiserver、kube-scheduler、kube-controller-manager
34639
+ :rtype: str
34640
+ """
34641
+ return self._Component
34642
+
34643
+ @Component.setter
34644
+ def Component(self, Component):
34645
+ self._Component = Component
34646
+
34647
+ @property
34648
+ def Operation(self):
34649
+ """停机或恢复,值只能为:shutdown或restore
34650
+ :rtype: str
34651
+ """
34652
+ return self._Operation
34653
+
34654
+ @Operation.setter
34655
+ def Operation(self, Operation):
34656
+ self._Operation = Operation
34657
+
34658
+ @property
34659
+ def DryRun(self):
34660
+ """为true时,不真正执行停机或恢复操作
34661
+ :rtype: bool
34662
+ """
34663
+ return self._DryRun
34664
+
34665
+ @DryRun.setter
34666
+ def DryRun(self, DryRun):
34667
+ self._DryRun = DryRun
34668
+
34669
+
34670
+ def _deserialize(self, params):
34671
+ self._ClusterId = params.get("ClusterId")
34672
+ self._Component = params.get("Component")
34673
+ self._Operation = params.get("Operation")
34674
+ self._DryRun = params.get("DryRun")
34675
+ memeber_set = set(params.keys())
34676
+ for name, value in vars(self).items():
34677
+ property_name = name[1:]
34678
+ if property_name in memeber_set:
34679
+ memeber_set.remove(property_name)
34680
+ if len(memeber_set) > 0:
34681
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
34682
+
34683
+
34684
+
34685
+ class ModifyMasterComponentResponse(AbstractModel):
34686
+ """ModifyMasterComponent返回参数结构体
34687
+
34688
+ """
34689
+
34690
+ def __init__(self):
34691
+ r"""
34692
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
34693
+ :type RequestId: str
34694
+ """
34695
+ self._RequestId = None
34696
+
34697
+ @property
34698
+ def RequestId(self):
34699
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
34700
+ :rtype: str
34701
+ """
34702
+ return self._RequestId
34703
+
34704
+ @RequestId.setter
34705
+ def RequestId(self, RequestId):
34706
+ self._RequestId = RequestId
34707
+
34708
+
34709
+ def _deserialize(self, params):
34710
+ self._RequestId = params.get("RequestId")
34711
+
34712
+
34495
34713
  class ModifyNodePoolDesiredCapacityAboutAsgRequest(AbstractModel):
34496
34714
  """ModifyNodePoolDesiredCapacityAboutAsg请求参数结构体
34497
34715
 
@@ -2855,6 +2855,29 @@ class TkeClient(AbstractClient):
2855
2855
  raise TencentCloudSDKException(type(e).__name__, str(e))
2856
2856
 
2857
2857
 
2858
+ def DescribeMasterComponent(self, request):
2859
+ """进行master组件停机故障演练时,获取master组件运行状态,支持kube-apiserver、kube-scheduler、kube-controller-manager
2860
+
2861
+ :param request: Request instance for DescribeMasterComponent.
2862
+ :type request: :class:`tencentcloud.tke.v20180525.models.DescribeMasterComponentRequest`
2863
+ :rtype: :class:`tencentcloud.tke.v20180525.models.DescribeMasterComponentResponse`
2864
+
2865
+ """
2866
+ try:
2867
+ params = request._serialize()
2868
+ headers = request.headers
2869
+ body = self.call("DescribeMasterComponent", params, headers=headers)
2870
+ response = json.loads(body)
2871
+ model = models.DescribeMasterComponentResponse()
2872
+ model._deserialize(response["Response"])
2873
+ return model
2874
+ except Exception as e:
2875
+ if isinstance(e, TencentCloudSDKException):
2876
+ raise
2877
+ else:
2878
+ raise TencentCloudSDKException(type(e).__name__, str(e))
2879
+
2880
+
2858
2881
  def DescribeOSImages(self, request):
2859
2882
  """获取OS聚合信息
2860
2883
 
@@ -4465,6 +4488,29 @@ class TkeClient(AbstractClient):
4465
4488
  raise TencentCloudSDKException(type(e).__name__, str(e))
4466
4489
 
4467
4490
 
4491
+ def ModifyMasterComponent(self, request):
4492
+ """修改master组件,支持kube-apiserver、kube-scheduler、kube-controller-manager副本数调整为0和恢复
4493
+
4494
+ :param request: Request instance for ModifyMasterComponent.
4495
+ :type request: :class:`tencentcloud.tke.v20180525.models.ModifyMasterComponentRequest`
4496
+ :rtype: :class:`tencentcloud.tke.v20180525.models.ModifyMasterComponentResponse`
4497
+
4498
+ """
4499
+ try:
4500
+ params = request._serialize()
4501
+ headers = request.headers
4502
+ body = self.call("ModifyMasterComponent", params, headers=headers)
4503
+ response = json.loads(body)
4504
+ model = models.ModifyMasterComponentResponse()
4505
+ model._deserialize(response["Response"])
4506
+ return model
4507
+ except Exception as e:
4508
+ if isinstance(e, TencentCloudSDKException):
4509
+ raise
4510
+ else:
4511
+ raise TencentCloudSDKException(type(e).__name__, str(e))
4512
+
4513
+
4468
4514
  def ModifyNodePoolDesiredCapacityAboutAsg(self, request):
4469
4515
  """修改节点池关联伸缩组的期望实例数
4470
4516
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python
3
- Version: 3.0.1401
3
+ Version: 3.0.1402
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=07nsnHPgnHnP-VhYGjc7T1jn9ySbmZuWrQlhYQie6S8,631
53
+ tencentcloud/__init__.py,sha256=fPvXIyxaXrXs0kSuV1IuRpwj6tUYAhNkTdauzgYpAVc,631
54
54
  tencentcloud/aai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
55
  tencentcloud/aai/v20180522/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
56
56
  tencentcloud/aai/v20180522/aai_client.py,sha256=UNkXLBkE-C-wBaan9RD0U4t2H-XCJDTPgWDFYzUitgE,5497
@@ -206,7 +206,7 @@ tencentcloud/bmlb/v20180625/errorcodes.py,sha256=1tCdhpkCIcG7wVO2vmsNVT0biqJAcBB
206
206
  tencentcloud/bmlb/v20180625/models.py,sha256=_rpNymrRbRVJxSQBhIPGATnEz3EVecO44SKEvEr32d4,411862
207
207
  tencentcloud/bmvpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
208
208
  tencentcloud/bmvpc/v20180625/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
209
- tencentcloud/bmvpc/v20180625/bmvpc_client.py,sha256=T3Um8AuycJECEyWLyxoBekIa6rvTajx8Si8ZDYGulsI,58956
209
+ tencentcloud/bmvpc/v20180625/bmvpc_client.py,sha256=WWcMVlyxWntNLM5F9uaPsmRzz8FoJE4oEd0kCFjpuTA,59964
210
210
  tencentcloud/bmvpc/v20180625/errorcodes.py,sha256=OuKUHXNwcj9Aa522EvHoRqKzJiTjQHaCKmnkxiLS5M4,3260
211
211
  tencentcloud/bmvpc/v20180625/models.py,sha256=VB2_BN2j9a987CHkOYW8auBgEE8xJ4N7BpEcaU9B0Jc,314919
212
212
  tencentcloud/bpaas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -272,7 +272,7 @@ tencentcloud/cdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
272
272
  tencentcloud/cdb/v20170320/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
273
273
  tencentcloud/cdb/v20170320/cdb_client.py,sha256=i10_TW51FQ6asQjcaX0Lq5OY1oXSPItZQeCrivXToIk,173847
274
274
  tencentcloud/cdb/v20170320/errorcodes.py,sha256=P9_n7BssOvR9ptKD-ojcdBM6kZfykjPVyWr6GdgGUFk,21155
275
- tencentcloud/cdb/v20170320/models.py,sha256=_nAO_eZ53fpgKk_3u1r_hjOfrZrSYu3eKhTDfZDRc7Y,1245594
275
+ tencentcloud/cdb/v20170320/models.py,sha256=d3VHMOr7uIv4xGS1XfI3fBMyRpMLAanrR5Ki1vkmbSQ,1246036
276
276
  tencentcloud/cdc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
277
277
  tencentcloud/cdc/v20201214/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
278
278
  tencentcloud/cdc/v20201214/cdc_client.py,sha256=drZo3gVqdh0ibMHSYbJWzDkWrUDo7lQ4zoS1J10FS-w,22442
@@ -282,7 +282,7 @@ tencentcloud/cdn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
282
282
  tencentcloud/cdn/v20180606/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
283
283
  tencentcloud/cdn/v20180606/cdn_client.py,sha256=NJBKMj_cv6C-wYffXjz6FvZdVx8FkqIKAF6xacQc6hQ,83971
284
284
  tencentcloud/cdn/v20180606/errorcodes.py,sha256=pFjQUPE8Nc186pTkM3_ymjHJ3Ytt1NiPPiGY9VLyjE0,22502
285
- tencentcloud/cdn/v20180606/models.py,sha256=aiNTAuDDdcnLdZBKSChbHZwwVMrxfE4sYdXxPduCElE,1115427
285
+ tencentcloud/cdn/v20180606/models.py,sha256=wnbmS2lB-n68Y63WrlYpjugYlWCGLrL-4dSKz4XvuPg,1115423
286
286
  tencentcloud/cds/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
287
287
  tencentcloud/cds/v20180420/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
288
288
  tencentcloud/cds/v20180420/cds_client.py,sha256=_TtDZwG3bsTvkER_z61tkaQ1oGCl5UMbatcK-l2RrpY,5937
@@ -322,7 +322,7 @@ tencentcloud/cfw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
322
322
  tencentcloud/cfw/v20190904/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
323
323
  tencentcloud/cfw/v20190904/cfw_client.py,sha256=-SGv4CJzBmKKAzZO9gcNe2gyKC-RZrMzPyDPkeDDYNw,105727
324
324
  tencentcloud/cfw/v20190904/errorcodes.py,sha256=YndQOT3duchcZkxlKGFmkT373szv4XD80IeP-EJt9Dk,3606
325
- tencentcloud/cfw/v20190904/models.py,sha256=QStj9_RNpNG5gv5UR15CrkseoOr9JKacoPOzobKoGII,777715
325
+ tencentcloud/cfw/v20190904/models.py,sha256=RbQnwHIOtkpZ9TniAqtObs9fX3JwoZXmhDXOAwhT-WA,777751
326
326
  tencentcloud/chc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
327
327
  tencentcloud/chc/v20230418/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
328
328
  tencentcloud/chc/v20230418/chc_client.py,sha256=POkgZThxGEzTXtHh5vj4k0Xx4Ksks8K6NLXC0nV6_NE,36146
@@ -364,7 +364,7 @@ tencentcloud/cis/v20180408/models.py,sha256=u8sSUq3cQ0AcPN3YnIa6lWnnVMXBEwQXp6D_
364
364
  tencentcloud/ckafka/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
365
365
  tencentcloud/ckafka/v20190819/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
366
366
  tencentcloud/ckafka/v20190819/ckafka_client.py,sha256=Gz3tsy72-Dim9q6UVzGGwo7ZFWitA1KNEafMky3IE64,80351
367
- tencentcloud/ckafka/v20190819/errorcodes.py,sha256=p253cPoNUJLy0RGNhZBO2QLelCQo19fb3WfZe8MRARI,3613
367
+ tencentcloud/ckafka/v20190819/errorcodes.py,sha256=_APdAUiRiPBlF0LjIiExo33SnCl-3ivkdeuHbit1nmg,3638
368
368
  tencentcloud/ckafka/v20190819/models.py,sha256=VLZ7tWKj2bdHlljiBSHSEF18ad_HN-kAg8UXbeZZQ94,1007566
369
369
  tencentcloud/clb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
370
370
  tencentcloud/clb/v20180317/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -524,7 +524,7 @@ tencentcloud/dnspod/v20210323/models.py,sha256=v5Z6F9hcr_E53QDRKFxB505VO4yo1PuSr
524
524
  tencentcloud/domain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
525
525
  tencentcloud/domain/v20180808/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
526
526
  tencentcloud/domain/v20180808/domain_client.py,sha256=CJAsVaHUcE6SbCffKQLy2SCGu6oUAiXK8ugKKj7pJtk,52743
527
- tencentcloud/domain/v20180808/errorcodes.py,sha256=Fpdaze90cDiNC2JWudfjbtfmdCVpcvozqyFyMLuwdHU,15363
527
+ tencentcloud/domain/v20180808/errorcodes.py,sha256=clHZbuNrCP3lhOtMQYreBLIWNkyfHucx13TeyMTRUZY,15478
528
528
  tencentcloud/domain/v20180808/models.py,sha256=BPYJkkMTIxCLh4DDrh0oVO-EXEkCpOoV0fy-15lynKg,328085
529
529
  tencentcloud/drm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
530
530
  tencentcloud/drm/v20181115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -664,8 +664,8 @@ tencentcloud/gpm/v20200820/models.py,sha256=YEtP3XCSynzTf9fkjCX6FFTphZ7EuB8qIxfz
664
664
  tencentcloud/gs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
665
665
  tencentcloud/gs/v20191118/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
666
666
  tencentcloud/gs/v20191118/errorcodes.py,sha256=oIAmPdpRJO6FvvrKyCQBHDlMEJl-9DgtfUrhgQVtXIs,3103
667
- tencentcloud/gs/v20191118/gs_client.py,sha256=GEFjZOAA6_FB4hGatJa-lEmJe4ndk85R2kJso__ImbQ,71478
668
- tencentcloud/gs/v20191118/models.py,sha256=s_-bQc_3bcOzLwZK_-86zW9Of4TxkHk3SOOjh1DVSo4,305807
667
+ tencentcloud/gs/v20191118/gs_client.py,sha256=u5GtGFPzZaRzZyBYEutqip68qwvr_2JQ5iEyEjlS82o,74389
668
+ tencentcloud/gs/v20191118/models.py,sha256=wxB0TDrZ92KBp8FhjDi2OsmOPpdyPfIlk46hDBEViyE,319727
669
669
  tencentcloud/gse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
670
670
  tencentcloud/gse/v20191112/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
671
671
  tencentcloud/gse/v20191112/errorcodes.py,sha256=aKN_XsLdBZPXK6Kum2QHZq-i_dAg5ifSEH-shEhDjUc,2578
@@ -756,9 +756,9 @@ tencentcloud/ims/v20201229/ims_client.py,sha256=XZaBildr-XfNeDnmRB5fFoEdl1gk8465
756
756
  tencentcloud/ims/v20201229/models.py,sha256=2_ylb0W5IVOQ-DAjZjcTbGeY-rZ_IusVK65cz2BDHZA,96037
757
757
  tencentcloud/ioa/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
758
758
  tencentcloud/ioa/v20220601/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
759
- tencentcloud/ioa/v20220601/errorcodes.py,sha256=rkTsep90oQCDDqxfXp5FaAxH7L6R3xRUgClS30G2lv4,1882
760
- tencentcloud/ioa/v20220601/ioa_client.py,sha256=hsgXrWFlug6v6UCvrFXl72rF9GHYhuJGb9I_MVvFTXY,11942
761
- tencentcloud/ioa/v20220601/models.py,sha256=XQf7zUtL3p4zvtrPBMRTHkCShU-bEOY8aUBwGl9dwjk,149542
759
+ tencentcloud/ioa/v20220601/errorcodes.py,sha256=ENR6bB9LYpkb5PgrABBBZgyn1Vus6uNb06nK8ZH5qeI,1988
760
+ tencentcloud/ioa/v20220601/ioa_client.py,sha256=Kux-QxrvfZb9FQMiSlTmpo9qNf4-XwYMd0iLRyMNg24,13858
761
+ tencentcloud/ioa/v20220601/models.py,sha256=2IEoyU9yLZsaKgFlAjY-nFVL6KgNvgeT-80knka6h5w,168718
762
762
  tencentcloud/iot/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
763
763
  tencentcloud/iot/v20180123/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
764
764
  tencentcloud/iot/v20180123/errorcodes.py,sha256=te8srvVA2PBBblNbmzPj1EiB3rWXrJw4CevqAK4wKz4,6163
@@ -849,7 +849,7 @@ tencentcloud/lke/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
849
849
  tencentcloud/lke/v20231130/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
850
850
  tencentcloud/lke/v20231130/errorcodes.py,sha256=F8jwAr2NVhzB1Nj3RsF71vsqdEzHFz-nNMv-1NOhRzU,1934
851
851
  tencentcloud/lke/v20231130/lke_client.py,sha256=6wBWm22KogbcE9YLXwdMp7IcfSnZNpA3QtNmtOHLBiI,98969
852
- tencentcloud/lke/v20231130/models.py,sha256=bCSqA_l4qVCZhlqsXrjR_OEqKHTOUofJpZX-_YWh2Yg,901177
852
+ tencentcloud/lke/v20231130/models.py,sha256=7S6sEeAEyHD2TCrFi-jeDdfvO_s7Pf1tWNgAOW-3ow8,902489
853
853
  tencentcloud/lkeap/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
854
854
  tencentcloud/lkeap/v20240522/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
855
855
  tencentcloud/lkeap/v20240522/errorcodes.py,sha256=pSx0n_A6I_tVRJNr38UZIiklPU-CTx0v2g51OrUsnWM,2470
@@ -965,7 +965,7 @@ tencentcloud/oceanus/v20190422/oceanus_client.py,sha256=HZQ5Dmh06DpxJX0Em6NmrlAX
965
965
  tencentcloud/ocr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
966
966
  tencentcloud/ocr/v20181119/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
967
967
  tencentcloud/ocr/v20181119/errorcodes.py,sha256=L12AZxzshizeJibob00zcd-pBSaeP5XE7OlNM1Firlk,7012
968
- tencentcloud/ocr/v20181119/models.py,sha256=I4wVEkkgFwtUtC5UtQbStIRNIAX1ojBhQAi7MC19JqI,1383235
968
+ tencentcloud/ocr/v20181119/models.py,sha256=1cvuUst_QAAGfjF-_duR25U4TIe5chMOmI7K5-KdrQE,1383487
969
969
  tencentcloud/ocr/v20181119/ocr_client.py,sha256=07801ok2bHJyINQxMmo4mzAD61-fUZQ8CNEAgOEaX-Y,124028
970
970
  tencentcloud/omics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
971
971
  tencentcloud/omics/v20221128/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1122,7 +1122,7 @@ tencentcloud/tan/v20220420/models.py,sha256=FW82sDGoGw3cwwdQFLO4Gfrau6TGxAVoWsI0
1122
1122
  tencentcloud/tan/v20220420/tan_client.py,sha256=e_AKDwcbf0NtEb7N_k2gZqZ2jb8cYkzi9zWELhwLSKE,1918
1123
1123
  tencentcloud/tat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1124
1124
  tencentcloud/tat/v20201028/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1125
- tencentcloud/tat/v20201028/errorcodes.py,sha256=Q9o1s8jZKxTkQgpTYyOO83uHfKYaR9cCFs-MZ1vdYeo,8919
1125
+ tencentcloud/tat/v20201028/errorcodes.py,sha256=cXgSnfe6wXG8iAknu0kjpfqaB9kve-s_nIrWLe3T7BU,9026
1126
1126
  tencentcloud/tat/v20201028/models.py,sha256=Z83vcWccGLWTv7wz56y68trqaZ4wfxCBmB46Q4_vpHA,230381
1127
1127
  tencentcloud/tat/v20201028/tat_client.py,sha256=8Hq5Q4tJBDHwcyUYP-HlOmAH6M6ZjYoNAlPLrw6dZHI,28336
1128
1128
  tencentcloud/tav/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1297,8 +1297,8 @@ tencentcloud/tiw/v20190919/tiw_client.py,sha256=qap-_nFLqWBi5tGmKfarmAvtZzj1eEkL
1297
1297
  tencentcloud/tke/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1298
1298
  tencentcloud/tke/v20180525/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1299
1299
  tencentcloud/tke/v20180525/errorcodes.py,sha256=45Xg_ji64lVjur-sl96KKAgmsALqNiJPo3mID_Kaua8,22230
1300
- tencentcloud/tke/v20180525/models.py,sha256=HYNfx19AhbS3woWF0ZA4EC2ycojHpJsHboaIn-SRw9k,1479948
1301
- tencentcloud/tke/v20180525/tke_client.py,sha256=n_vvWSfgExsfv5ZJ8aMbv8AJGmHzWbcHCmyisfphB2Q,214513
1300
+ tencentcloud/tke/v20180525/models.py,sha256=S6bpwEGwRuOCisGCFB9sElJANoNcNI94haIH9ZAcrPo,1486428
1301
+ tencentcloud/tke/v20180525/tke_client.py,sha256=BiYrs2RcaeITqdt4wiPeQoMXxKlfg23cT_6EsdgXfmg,216525
1302
1302
  tencentcloud/tke/v20220501/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1303
1303
  tencentcloud/tke/v20220501/errorcodes.py,sha256=xxVAmn900-r6uNi7vGdva1I_bgL_udY5kbIlVRBXcR0,2173
1304
1304
  tencentcloud/tke/v20220501/models.py,sha256=r9jYkUy8REUCejVdYzlIGqI9_o9TXKyi9HZep_RorNs,214312
@@ -1502,8 +1502,8 @@ tencentcloud/yunsou/v20191115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
1502
1502
  tencentcloud/yunsou/v20191115/errorcodes.py,sha256=zB4-XPxmvEhgHoLsKlbayJVRLEagPDcs-UAheVZCoAc,1301
1503
1503
  tencentcloud/yunsou/v20191115/models.py,sha256=rL2feGJfTHvEmkfS_c9En9Xl1g32vTs9IC_q5p9CYgY,27680
1504
1504
  tencentcloud/yunsou/v20191115/yunsou_client.py,sha256=ly73Hr8rGamWa6AAvQjurKgd4L83PRY5WjcDv4ziQC8,2741
1505
- tencentcloud_sdk_python-3.0.1401.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
1506
- tencentcloud_sdk_python-3.0.1401.dist-info/METADATA,sha256=VmuSn6CL6pVZCVTyDXNIKUWzdpAyKnzrBbVlnQNjE3U,1613
1507
- tencentcloud_sdk_python-3.0.1401.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
1508
- tencentcloud_sdk_python-3.0.1401.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
1509
- tencentcloud_sdk_python-3.0.1401.dist-info/RECORD,,
1505
+ tencentcloud_sdk_python-3.0.1402.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
1506
+ tencentcloud_sdk_python-3.0.1402.dist-info/METADATA,sha256=VSxXdTRl63jS0Hub3Vef0b_wAQDo7d7u_jCgqrQnHVw,1613
1507
+ tencentcloud_sdk_python-3.0.1402.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
1508
+ tencentcloud_sdk_python-3.0.1402.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
1509
+ tencentcloud_sdk_python-3.0.1402.dist-info/RECORD,,