tencentcloud-sdk-python 3.0.990__py2.py3-none-any.whl → 3.0.991__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of tencentcloud-sdk-python might be problematic. Click here for more details.

Files changed (25) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/autoscaling/v20180419/autoscaling_client.py +177 -0
  3. tencentcloud/autoscaling/v20180419/errorcodes.py +27 -0
  4. tencentcloud/autoscaling/v20180419/models.py +1082 -10
  5. tencentcloud/emr/v20190103/models.py +67 -2
  6. tencentcloud/ess/v20201111/ess_client.py +23 -0
  7. tencentcloud/ess/v20201111/models.py +113 -0
  8. tencentcloud/essbasic/v20210526/essbasic_client.py +23 -0
  9. tencentcloud/essbasic/v20210526/models.py +31 -0
  10. tencentcloud/iai/v20200303/models.py +28 -28
  11. tencentcloud/live/v20180801/live_client.py +1 -2
  12. tencentcloud/live/v20180801/models.py +13 -0
  13. tencentcloud/mps/v20190612/models.py +78 -0
  14. tencentcloud/ocr/v20181119/models.py +2 -2
  15. tencentcloud/tcb/v20180608/models.py +114 -0
  16. tencentcloud/teo/v20220901/models.py +5 -8
  17. tencentcloud/tke/v20180525/errorcodes.py +13 -1
  18. tencentcloud/tke/v20180525/models.py +1993 -0
  19. tencentcloud/tke/v20180525/tke_client.py +207 -0
  20. tencentcloud/vpc/v20170312/models.py +226 -0
  21. {tencentcloud_sdk_python-3.0.990.dist-info → tencentcloud_sdk_python-3.0.991.dist-info}/METADATA +1 -1
  22. {tencentcloud_sdk_python-3.0.990.dist-info → tencentcloud_sdk_python-3.0.991.dist-info}/RECORD +25 -25
  23. {tencentcloud_sdk_python-3.0.990.dist-info → tencentcloud_sdk_python-3.0.991.dist-info}/LICENSE +0 -0
  24. {tencentcloud_sdk_python-3.0.990.dist-info → tencentcloud_sdk_python-3.0.991.dist-info}/WHEEL +0 -0
  25. {tencentcloud_sdk_python-3.0.990.dist-info → tencentcloud_sdk_python-3.0.991.dist-info}/top_level.txt +0 -0
@@ -808,6 +808,29 @@ class TkeClient(AbstractClient):
808
808
  raise TencentCloudSDKException(type(e).__name__, str(e))
809
809
 
810
810
 
811
+ def CreateReservedInstances(self, request):
812
+ """预留券实例的购买会预先扣除本次实例购买所需金额,在调用本接口前请确保账户余额充足。
813
+
814
+ :param request: Request instance for CreateReservedInstances.
815
+ :type request: :class:`tencentcloud.tke.v20180525.models.CreateReservedInstancesRequest`
816
+ :rtype: :class:`tencentcloud.tke.v20180525.models.CreateReservedInstancesResponse`
817
+
818
+ """
819
+ try:
820
+ params = request._serialize()
821
+ headers = request.headers
822
+ body = self.call("CreateReservedInstances", params, headers=headers)
823
+ response = json.loads(body)
824
+ model = models.CreateReservedInstancesResponse()
825
+ model._deserialize(response["Response"])
826
+ return model
827
+ except Exception as e:
828
+ if isinstance(e, TencentCloudSDKException):
829
+ raise
830
+ else:
831
+ raise TencentCloudSDKException(type(e).__name__, str(e))
832
+
833
+
811
834
  def CreateTKEEdgeCluster(self, request):
812
835
  """创建边缘计算集群
813
836
 
@@ -1452,6 +1475,29 @@ class TkeClient(AbstractClient):
1452
1475
  raise TencentCloudSDKException(type(e).__name__, str(e))
1453
1476
 
1454
1477
 
1478
+ def DeleteReservedInstances(self, request):
1479
+ """预留券实例如符合退还规则,可通过本接口主动退还。
1480
+
1481
+ :param request: Request instance for DeleteReservedInstances.
1482
+ :type request: :class:`tencentcloud.tke.v20180525.models.DeleteReservedInstancesRequest`
1483
+ :rtype: :class:`tencentcloud.tke.v20180525.models.DeleteReservedInstancesResponse`
1484
+
1485
+ """
1486
+ try:
1487
+ params = request._serialize()
1488
+ headers = request.headers
1489
+ body = self.call("DeleteReservedInstances", params, headers=headers)
1490
+ response = json.loads(body)
1491
+ model = models.DeleteReservedInstancesResponse()
1492
+ model._deserialize(response["Response"])
1493
+ return model
1494
+ except Exception as e:
1495
+ if isinstance(e, TencentCloudSDKException):
1496
+ raise
1497
+ else:
1498
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1499
+
1500
+
1455
1501
  def DeleteTKEEdgeCluster(self, request):
1456
1502
  """删除边缘计算集群
1457
1503
 
@@ -2625,6 +2671,75 @@ class TkeClient(AbstractClient):
2625
2671
  raise TencentCloudSDKException(type(e).__name__, str(e))
2626
2672
 
2627
2673
 
2674
+ def DescribePodDeductionRate(self, request):
2675
+ """查询各个规格的 Pod 的抵扣率
2676
+
2677
+ :param request: Request instance for DescribePodDeductionRate.
2678
+ :type request: :class:`tencentcloud.tke.v20180525.models.DescribePodDeductionRateRequest`
2679
+ :rtype: :class:`tencentcloud.tke.v20180525.models.DescribePodDeductionRateResponse`
2680
+
2681
+ """
2682
+ try:
2683
+ params = request._serialize()
2684
+ headers = request.headers
2685
+ body = self.call("DescribePodDeductionRate", params, headers=headers)
2686
+ response = json.loads(body)
2687
+ model = models.DescribePodDeductionRateResponse()
2688
+ model._deserialize(response["Response"])
2689
+ return model
2690
+ except Exception as e:
2691
+ if isinstance(e, TencentCloudSDKException):
2692
+ raise
2693
+ else:
2694
+ raise TencentCloudSDKException(type(e).__name__, str(e))
2695
+
2696
+
2697
+ def DescribePodsBySpec(self, request):
2698
+ """查询可以用预留券抵扣的 Pod 信息。
2699
+
2700
+ :param request: Request instance for DescribePodsBySpec.
2701
+ :type request: :class:`tencentcloud.tke.v20180525.models.DescribePodsBySpecRequest`
2702
+ :rtype: :class:`tencentcloud.tke.v20180525.models.DescribePodsBySpecResponse`
2703
+
2704
+ """
2705
+ try:
2706
+ params = request._serialize()
2707
+ headers = request.headers
2708
+ body = self.call("DescribePodsBySpec", params, headers=headers)
2709
+ response = json.loads(body)
2710
+ model = models.DescribePodsBySpecResponse()
2711
+ model._deserialize(response["Response"])
2712
+ return model
2713
+ except Exception as e:
2714
+ if isinstance(e, TencentCloudSDKException):
2715
+ raise
2716
+ else:
2717
+ raise TencentCloudSDKException(type(e).__name__, str(e))
2718
+
2719
+
2720
+ def DescribePostNodeResources(self, request):
2721
+ """包括 Pod 资源统计和绑定的预留券资源统计。
2722
+
2723
+ :param request: Request instance for DescribePostNodeResources.
2724
+ :type request: :class:`tencentcloud.tke.v20180525.models.DescribePostNodeResourcesRequest`
2725
+ :rtype: :class:`tencentcloud.tke.v20180525.models.DescribePostNodeResourcesResponse`
2726
+
2727
+ """
2728
+ try:
2729
+ params = request._serialize()
2730
+ headers = request.headers
2731
+ body = self.call("DescribePostNodeResources", params, headers=headers)
2732
+ response = json.loads(body)
2733
+ model = models.DescribePostNodeResourcesResponse()
2734
+ model._deserialize(response["Response"])
2735
+ return model
2736
+ except Exception as e:
2737
+ if isinstance(e, TencentCloudSDKException):
2738
+ raise
2739
+ else:
2740
+ raise TencentCloudSDKException(type(e).__name__, str(e))
2741
+
2742
+
2628
2743
  def DescribePrometheusAgentInstances(self, request):
2629
2744
  """获取关联目标集群的实例列表
2630
2745
 
@@ -3062,6 +3177,29 @@ class TkeClient(AbstractClient):
3062
3177
  raise TencentCloudSDKException(type(e).__name__, str(e))
3063
3178
 
3064
3179
 
3180
+ def DescribeRIUtilizationDetail(self, request):
3181
+ """预留实例用量查询
3182
+
3183
+ :param request: Request instance for DescribeRIUtilizationDetail.
3184
+ :type request: :class:`tencentcloud.tke.v20180525.models.DescribeRIUtilizationDetailRequest`
3185
+ :rtype: :class:`tencentcloud.tke.v20180525.models.DescribeRIUtilizationDetailResponse`
3186
+
3187
+ """
3188
+ try:
3189
+ params = request._serialize()
3190
+ headers = request.headers
3191
+ body = self.call("DescribeRIUtilizationDetail", params, headers=headers)
3192
+ response = json.loads(body)
3193
+ model = models.DescribeRIUtilizationDetailResponse()
3194
+ model._deserialize(response["Response"])
3195
+ return model
3196
+ except Exception as e:
3197
+ if isinstance(e, TencentCloudSDKException):
3198
+ raise
3199
+ else:
3200
+ raise TencentCloudSDKException(type(e).__name__, str(e))
3201
+
3202
+
3065
3203
  def DescribeRegions(self, request):
3066
3204
  """获取容器服务支持的所有地域
3067
3205
 
@@ -3085,6 +3223,29 @@ class TkeClient(AbstractClient):
3085
3223
  raise TencentCloudSDKException(type(e).__name__, str(e))
3086
3224
 
3087
3225
 
3226
+ def DescribeReservedInstances(self, request):
3227
+ """查询预留实例列表
3228
+
3229
+ :param request: Request instance for DescribeReservedInstances.
3230
+ :type request: :class:`tencentcloud.tke.v20180525.models.DescribeReservedInstancesRequest`
3231
+ :rtype: :class:`tencentcloud.tke.v20180525.models.DescribeReservedInstancesResponse`
3232
+
3233
+ """
3234
+ try:
3235
+ params = request._serialize()
3236
+ headers = request.headers
3237
+ body = self.call("DescribeReservedInstances", params, headers=headers)
3238
+ response = json.loads(body)
3239
+ model = models.DescribeReservedInstancesResponse()
3240
+ model._deserialize(response["Response"])
3241
+ return model
3242
+ except Exception as e:
3243
+ if isinstance(e, TencentCloudSDKException):
3244
+ raise
3245
+ else:
3246
+ raise TencentCloudSDKException(type(e).__name__, str(e))
3247
+
3248
+
3088
3249
  def DescribeResourceUsage(self, request):
3089
3250
  """获取集群资源使用量
3090
3251
 
@@ -4189,6 +4350,29 @@ class TkeClient(AbstractClient):
4189
4350
  raise TencentCloudSDKException(type(e).__name__, str(e))
4190
4351
 
4191
4352
 
4353
+ def ModifyReservedInstanceScope(self, request):
4354
+ """修改预留券的抵扣范围,抵扣范围取值:Region、Zone 和 Node。
4355
+
4356
+ :param request: Request instance for ModifyReservedInstanceScope.
4357
+ :type request: :class:`tencentcloud.tke.v20180525.models.ModifyReservedInstanceScopeRequest`
4358
+ :rtype: :class:`tencentcloud.tke.v20180525.models.ModifyReservedInstanceScopeResponse`
4359
+
4360
+ """
4361
+ try:
4362
+ params = request._serialize()
4363
+ headers = request.headers
4364
+ body = self.call("ModifyReservedInstanceScope", params, headers=headers)
4365
+ response = json.loads(body)
4366
+ model = models.ModifyReservedInstanceScopeResponse()
4367
+ model._deserialize(response["Response"])
4368
+ return model
4369
+ except Exception as e:
4370
+ if isinstance(e, TencentCloudSDKException):
4371
+ raise
4372
+ else:
4373
+ raise TencentCloudSDKException(type(e).__name__, str(e))
4374
+
4375
+
4192
4376
  def RemoveNodeFromNodePool(self, request):
4193
4377
  """移出节点池节点,但保留在集群内
4194
4378
 
@@ -4212,6 +4396,29 @@ class TkeClient(AbstractClient):
4212
4396
  raise TencentCloudSDKException(type(e).__name__, str(e))
4213
4397
 
4214
4398
 
4399
+ def RenewReservedInstances(self, request):
4400
+ """续费时请确保账户余额充足。
4401
+
4402
+ :param request: Request instance for RenewReservedInstances.
4403
+ :type request: :class:`tencentcloud.tke.v20180525.models.RenewReservedInstancesRequest`
4404
+ :rtype: :class:`tencentcloud.tke.v20180525.models.RenewReservedInstancesResponse`
4405
+
4406
+ """
4407
+ try:
4408
+ params = request._serialize()
4409
+ headers = request.headers
4410
+ body = self.call("RenewReservedInstances", params, headers=headers)
4411
+ response = json.loads(body)
4412
+ model = models.RenewReservedInstancesResponse()
4413
+ model._deserialize(response["Response"])
4414
+ return model
4415
+ except Exception as e:
4416
+ if isinstance(e, TencentCloudSDKException):
4417
+ raise
4418
+ else:
4419
+ raise TencentCloudSDKException(type(e).__name__, str(e))
4420
+
4421
+
4215
4422
  def RestartEKSContainerInstances(self, request):
4216
4423
  """重启弹性容器实例,支持批量操作
4217
4424
 
@@ -9719,6 +9719,129 @@ class CreateVpcPeeringConnectionRequest(AbstractModel):
9719
9719
 
9720
9720
  """
9721
9721
 
9722
+ def __init__(self):
9723
+ r"""
9724
+ :param _SourceVpcId: 本端VPC唯一ID。
9725
+ :type SourceVpcId: str
9726
+ :param _PeeringConnectionName: 对等连接名称。
9727
+ :type PeeringConnectionName: str
9728
+ :param _DestinationVpcId: 对端VPC唯一ID。
9729
+ :type DestinationVpcId: str
9730
+ :param _DestinationUin: 对端用户UIN。
9731
+ :type DestinationUin: str
9732
+ :param _DestinationRegion: 对端地域。
9733
+ :type DestinationRegion: str
9734
+ :param _Bandwidth: 带宽上限,单位Mbps。
9735
+ :type Bandwidth: int
9736
+ :param _Type: 互通类型,VPC_PEER:VPC间互通;VPC_BM_PEER:VPC与黑石网络互通。
9737
+ :type Type: str
9738
+ :param _ChargeType: 计费模式,日峰值POSTPAID_BY_DAY_MAX,月95POSTPAID_BY_MONTH_95。
9739
+ :type ChargeType: str
9740
+ :param _QosLevel: 服务分级:PT、AU、AG。
9741
+ :type QosLevel: str
9742
+ """
9743
+ self._SourceVpcId = None
9744
+ self._PeeringConnectionName = None
9745
+ self._DestinationVpcId = None
9746
+ self._DestinationUin = None
9747
+ self._DestinationRegion = None
9748
+ self._Bandwidth = None
9749
+ self._Type = None
9750
+ self._ChargeType = None
9751
+ self._QosLevel = None
9752
+
9753
+ @property
9754
+ def SourceVpcId(self):
9755
+ return self._SourceVpcId
9756
+
9757
+ @SourceVpcId.setter
9758
+ def SourceVpcId(self, SourceVpcId):
9759
+ self._SourceVpcId = SourceVpcId
9760
+
9761
+ @property
9762
+ def PeeringConnectionName(self):
9763
+ return self._PeeringConnectionName
9764
+
9765
+ @PeeringConnectionName.setter
9766
+ def PeeringConnectionName(self, PeeringConnectionName):
9767
+ self._PeeringConnectionName = PeeringConnectionName
9768
+
9769
+ @property
9770
+ def DestinationVpcId(self):
9771
+ return self._DestinationVpcId
9772
+
9773
+ @DestinationVpcId.setter
9774
+ def DestinationVpcId(self, DestinationVpcId):
9775
+ self._DestinationVpcId = DestinationVpcId
9776
+
9777
+ @property
9778
+ def DestinationUin(self):
9779
+ return self._DestinationUin
9780
+
9781
+ @DestinationUin.setter
9782
+ def DestinationUin(self, DestinationUin):
9783
+ self._DestinationUin = DestinationUin
9784
+
9785
+ @property
9786
+ def DestinationRegion(self):
9787
+ return self._DestinationRegion
9788
+
9789
+ @DestinationRegion.setter
9790
+ def DestinationRegion(self, DestinationRegion):
9791
+ self._DestinationRegion = DestinationRegion
9792
+
9793
+ @property
9794
+ def Bandwidth(self):
9795
+ return self._Bandwidth
9796
+
9797
+ @Bandwidth.setter
9798
+ def Bandwidth(self, Bandwidth):
9799
+ self._Bandwidth = Bandwidth
9800
+
9801
+ @property
9802
+ def Type(self):
9803
+ return self._Type
9804
+
9805
+ @Type.setter
9806
+ def Type(self, Type):
9807
+ self._Type = Type
9808
+
9809
+ @property
9810
+ def ChargeType(self):
9811
+ return self._ChargeType
9812
+
9813
+ @ChargeType.setter
9814
+ def ChargeType(self, ChargeType):
9815
+ self._ChargeType = ChargeType
9816
+
9817
+ @property
9818
+ def QosLevel(self):
9819
+ return self._QosLevel
9820
+
9821
+ @QosLevel.setter
9822
+ def QosLevel(self, QosLevel):
9823
+ self._QosLevel = QosLevel
9824
+
9825
+
9826
+ def _deserialize(self, params):
9827
+ self._SourceVpcId = params.get("SourceVpcId")
9828
+ self._PeeringConnectionName = params.get("PeeringConnectionName")
9829
+ self._DestinationVpcId = params.get("DestinationVpcId")
9830
+ self._DestinationUin = params.get("DestinationUin")
9831
+ self._DestinationRegion = params.get("DestinationRegion")
9832
+ self._Bandwidth = params.get("Bandwidth")
9833
+ self._Type = params.get("Type")
9834
+ self._ChargeType = params.get("ChargeType")
9835
+ self._QosLevel = params.get("QosLevel")
9836
+ memeber_set = set(params.keys())
9837
+ for name, value in vars(self).items():
9838
+ property_name = name[1:]
9839
+ if property_name in memeber_set:
9840
+ memeber_set.remove(property_name)
9841
+ if len(memeber_set) > 0:
9842
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
9843
+
9844
+
9722
9845
 
9723
9846
  class CreateVpcPeeringConnectionResponse(AbstractModel):
9724
9847
  """CreateVpcPeeringConnection返回参数结构体
@@ -9727,11 +9850,23 @@ class CreateVpcPeeringConnectionResponse(AbstractModel):
9727
9850
 
9728
9851
  def __init__(self):
9729
9852
  r"""
9853
+ :param _PeeringConnectionId: 对等连接ID
9854
+ 注意:此字段可能返回 null,表示取不到有效值。
9855
+ :type PeeringConnectionId: str
9730
9856
  :param _RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
9731
9857
  :type RequestId: str
9732
9858
  """
9859
+ self._PeeringConnectionId = None
9733
9860
  self._RequestId = None
9734
9861
 
9862
+ @property
9863
+ def PeeringConnectionId(self):
9864
+ return self._PeeringConnectionId
9865
+
9866
+ @PeeringConnectionId.setter
9867
+ def PeeringConnectionId(self, PeeringConnectionId):
9868
+ self._PeeringConnectionId = PeeringConnectionId
9869
+
9735
9870
  @property
9736
9871
  def RequestId(self):
9737
9872
  return self._RequestId
@@ -9742,6 +9877,7 @@ class CreateVpcPeeringConnectionResponse(AbstractModel):
9742
9877
 
9743
9878
 
9744
9879
  def _deserialize(self, params):
9880
+ self._PeeringConnectionId = params.get("PeeringConnectionId")
9745
9881
  self._RequestId = params.get("RequestId")
9746
9882
 
9747
9883
 
@@ -34025,6 +34161,69 @@ class ModifyVpcPeeringConnectionRequest(AbstractModel):
34025
34161
 
34026
34162
  """
34027
34163
 
34164
+ def __init__(self):
34165
+ r"""
34166
+ :param _PeeringConnectionId: 对等连接ID。
34167
+ :type PeeringConnectionId: str
34168
+ :param _PeeringConnectionName: 对等连接名称。
34169
+ :type PeeringConnectionName: str
34170
+ :param _Bandwidth: 带宽上限,单位Mbps。
34171
+ :type Bandwidth: int
34172
+ :param _ChargeType: 计费模式,日峰值POSTPAID_BY_DAY_MAX,月95 POSTPAID_BY_MONTH_95。
34173
+ :type ChargeType: str
34174
+ """
34175
+ self._PeeringConnectionId = None
34176
+ self._PeeringConnectionName = None
34177
+ self._Bandwidth = None
34178
+ self._ChargeType = None
34179
+
34180
+ @property
34181
+ def PeeringConnectionId(self):
34182
+ return self._PeeringConnectionId
34183
+
34184
+ @PeeringConnectionId.setter
34185
+ def PeeringConnectionId(self, PeeringConnectionId):
34186
+ self._PeeringConnectionId = PeeringConnectionId
34187
+
34188
+ @property
34189
+ def PeeringConnectionName(self):
34190
+ return self._PeeringConnectionName
34191
+
34192
+ @PeeringConnectionName.setter
34193
+ def PeeringConnectionName(self, PeeringConnectionName):
34194
+ self._PeeringConnectionName = PeeringConnectionName
34195
+
34196
+ @property
34197
+ def Bandwidth(self):
34198
+ return self._Bandwidth
34199
+
34200
+ @Bandwidth.setter
34201
+ def Bandwidth(self, Bandwidth):
34202
+ self._Bandwidth = Bandwidth
34203
+
34204
+ @property
34205
+ def ChargeType(self):
34206
+ return self._ChargeType
34207
+
34208
+ @ChargeType.setter
34209
+ def ChargeType(self, ChargeType):
34210
+ self._ChargeType = ChargeType
34211
+
34212
+
34213
+ def _deserialize(self, params):
34214
+ self._PeeringConnectionId = params.get("PeeringConnectionId")
34215
+ self._PeeringConnectionName = params.get("PeeringConnectionName")
34216
+ self._Bandwidth = params.get("Bandwidth")
34217
+ self._ChargeType = params.get("ChargeType")
34218
+ memeber_set = set(params.keys())
34219
+ for name, value in vars(self).items():
34220
+ property_name = name[1:]
34221
+ if property_name in memeber_set:
34222
+ memeber_set.remove(property_name)
34223
+ if len(memeber_set) > 0:
34224
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
34225
+
34226
+
34028
34227
 
34029
34228
  class ModifyVpcPeeringConnectionResponse(AbstractModel):
34030
34229
  """ModifyVpcPeeringConnection返回参数结构体
@@ -37217,6 +37416,33 @@ class RejectVpcPeeringConnectionRequest(AbstractModel):
37217
37416
 
37218
37417
  """
37219
37418
 
37419
+ def __init__(self):
37420
+ r"""
37421
+ :param _PeeringConnectionId: 对等连接唯一ID。
37422
+ :type PeeringConnectionId: str
37423
+ """
37424
+ self._PeeringConnectionId = None
37425
+
37426
+ @property
37427
+ def PeeringConnectionId(self):
37428
+ return self._PeeringConnectionId
37429
+
37430
+ @PeeringConnectionId.setter
37431
+ def PeeringConnectionId(self, PeeringConnectionId):
37432
+ self._PeeringConnectionId = PeeringConnectionId
37433
+
37434
+
37435
+ def _deserialize(self, params):
37436
+ self._PeeringConnectionId = params.get("PeeringConnectionId")
37437
+ memeber_set = set(params.keys())
37438
+ for name, value in vars(self).items():
37439
+ property_name = name[1:]
37440
+ if property_name in memeber_set:
37441
+ memeber_set.remove(property_name)
37442
+ if len(memeber_set) > 0:
37443
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
37444
+
37445
+
37220
37446
 
37221
37447
  class RejectVpcPeeringConnectionResponse(AbstractModel):
37222
37448
  """RejectVpcPeeringConnection返回参数结构体
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python
3
- Version: 3.0.990
3
+ Version: 3.0.991
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=4aCI6okUb24arcIW7yeBmyMO9vUBScerL3VBlbe4O1M,630
53
+ tencentcloud/__init__.py,sha256=BSQaxjQ9qoPGlB46eBreCGDTPhT_Fk1ZDEQ680D4OGY,630
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
@@ -147,9 +147,9 @@ tencentcloud/asw/v20200722/errorcodes.py,sha256=yZtlh9FAHjLpfOzY0E4wKdtYF_6zbI0r
147
147
  tencentcloud/asw/v20200722/models.py,sha256=gThuFvyjCEJgJP-Tim71tjaw-ZN92_LzEoT_ysrR_mk,44296
148
148
  tencentcloud/autoscaling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
149
149
  tencentcloud/autoscaling/v20180419/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
150
- tencentcloud/autoscaling/v20180419/autoscaling_client.py,sha256=OILSld1Oc3o3Qa8-alN7id12zh8gnsl_-LvJzP7ouYg,60839
151
- tencentcloud/autoscaling/v20180419/errorcodes.py,sha256=jfpx_KvQW0OveMpBj-sMQM4UjAvQswSme0Bh8XkeoJw,20156
152
- tencentcloud/autoscaling/v20180419/models.py,sha256=atXNUAxhWNGP75wAVH5mZgwrPnFGEXOZuCE26rOrgmk,392766
150
+ tencentcloud/autoscaling/v20180419/autoscaling_client.py,sha256=jf4jTEKRju-j2ifZQcG3xZp7RhqeACaPtme4Fo0J544,69676
151
+ tencentcloud/autoscaling/v20180419/errorcodes.py,sha256=Zle4QXCyTBUiCqd3s1TftobJQSJrXLyTsELc6bwSLew,21614
152
+ tencentcloud/autoscaling/v20180419/models.py,sha256=doJIK8HNqtpeAQ-cwfRY8X8G_GAq8EwMFTnQe4Lfpg0,429101
153
153
  tencentcloud/ba/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
154
154
  tencentcloud/ba/v20200720/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
155
155
  tencentcloud/ba/v20200720/ba_client.py,sha256=Xx8oer0ij9FVyEQLCPgEhBfEYGC6YshgJk3Y1JPDfpY,3804
@@ -570,7 +570,7 @@ tencentcloud/emr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
570
570
  tencentcloud/emr/v20190103/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
571
571
  tencentcloud/emr/v20190103/emr_client.py,sha256=f4nH5ZyW9gqlzX4Pur4CwA35_IA_YQpoxg0r5TDpayA,31029
572
572
  tencentcloud/emr/v20190103/errorcodes.py,sha256=lZfwm06YYsIQVH_9PEy6M0uGZX12kRIQZOOLKY01o4o,14541
573
- tencentcloud/emr/v20190103/models.py,sha256=l_26S1JHcMNseE3LlOq8VhxvSkxf4NFwRVql9GcKbws,463530
573
+ tencentcloud/emr/v20190103/models.py,sha256=ooLkBTfrhdUnXKeC3CUXn_XDMY0Ygii_lXvrmmI1tlw,465540
574
574
  tencentcloud/es/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
575
575
  tencentcloud/es/v20180416/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
576
576
  tencentcloud/es/v20180416/errorcodes.py,sha256=Sim0LIX_I9vHv6FqGQwR-EgkqGhj2w0gM2-XfbUlBzY,15347
@@ -579,8 +579,8 @@ tencentcloud/es/v20180416/models.py,sha256=K-mYB9j-jDLiG83u1-j5a74Tqn8IqZWmU6Obo
579
579
  tencentcloud/ess/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
580
580
  tencentcloud/ess/v20201111/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
581
581
  tencentcloud/ess/v20201111/errorcodes.py,sha256=-zfX5HCKDgpU1m49i3Mh6wHaO8902xBJUHB5J0Xn1GU,24653
582
- tencentcloud/ess/v20201111/ess_client.py,sha256=azIFLlkkyDxHYMgzn6IuXxmQUGU_-xW6mcjnAu9JhKM,113488
583
- tencentcloud/ess/v20201111/models.py,sha256=ef0aI6XfoZXuyKICvQEBujjKs7f7IFbFKa8aokwLT04,589120
582
+ tencentcloud/ess/v20201111/ess_client.py,sha256=e6goUcQP8zIY-m03cH7D3LVhn-o4nevKj8aNpjTvoRk,114611
583
+ tencentcloud/ess/v20201111/models.py,sha256=cTTQvz7S6dlbW6WZCUBXF5c8Wby2zV4vERTe88LL_4k,592599
584
584
  tencentcloud/essbasic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
585
585
  tencentcloud/essbasic/v20201222/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
586
586
  tencentcloud/essbasic/v20201222/errorcodes.py,sha256=cZPs0vLmArRFQoZqxM4alb0WeBF9f0V0IHmt65dUdxs,5392
@@ -588,8 +588,8 @@ tencentcloud/essbasic/v20201222/essbasic_client.py,sha256=kua9joup-BLKbyITYpVovM
588
588
  tencentcloud/essbasic/v20201222/models.py,sha256=Q2E6jmVT1emRziwRN-qj8XpdzpxvqqHTKOEQz8JaM_s,270905
589
589
  tencentcloud/essbasic/v20210526/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
590
590
  tencentcloud/essbasic/v20210526/errorcodes.py,sha256=KK7N259j7gk-2_DQ93PA68N6PqDEOgL_j5yGX1uiCyk,17658
591
- tencentcloud/essbasic/v20210526/essbasic_client.py,sha256=_5qiSG435ZgW3hxBhoA731gvjs0af1IPewiFzuoluFY,72071
592
- tencentcloud/essbasic/v20210526/models.py,sha256=BQ-a8wWWYevSi5sWZjOi2GldE8SdtOfPx8UrqpvFoJU,476088
591
+ tencentcloud/essbasic/v20210526/essbasic_client.py,sha256=sj0UZnk6ylXxIRg-0agZBONWuIZZ7rXKk2LGLbPVgCg,73259
592
+ tencentcloud/essbasic/v20210526/models.py,sha256=g17yLmpxAZ_7QOrrHzsG2g0RrK4_Au79XJdErhtJFUM,476873
593
593
  tencentcloud/facefusion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
594
594
  tencentcloud/facefusion/v20181201/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
595
595
  tencentcloud/facefusion/v20181201/errorcodes.py,sha256=tCTdaG-r2kJM_vvBCl6_lI3OzI2vFGeNWblM7g-YiTU,6831
@@ -667,7 +667,7 @@ tencentcloud/iai/v20180301/models.py,sha256=eOeQMGnoDLyBIt6mWgWnd99zsmuswDNOEzGR
667
667
  tencentcloud/iai/v20200303/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
668
668
  tencentcloud/iai/v20200303/errorcodes.py,sha256=XQKJXGNr5BBpCfh_2gBD0mlMFYDcQJMmalUZWLKPvUw,12105
669
669
  tencentcloud/iai/v20200303/iai_client.py,sha256=onBYwi3e5qD35lANBJhwPlqMdlzu1h_YzaxXhcI67GM,49515
670
- tencentcloud/iai/v20200303/models.py,sha256=JNtP_1Z6-ev0vTaVUnj3QP42V2KfzsFiqdv-DFKoN0M,250247
670
+ tencentcloud/iai/v20200303/models.py,sha256=LyJRiqJKczBjcBqaFgtmAIkp__p2-X2N7auwcjBAvAI,251563
671
671
  tencentcloud/ic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
672
672
  tencentcloud/ic/v20190307/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
673
673
  tencentcloud/ic/v20190307/errorcodes.py,sha256=8VbSKDjqxSd3nzVkD2KHfN3g_VqIcvFMFit7YGIFlSs,983
@@ -786,8 +786,8 @@ tencentcloud/lighthouse/v20200324/models.py,sha256=s-ZIMH3qAjyjcHz99y5mN6gj67GvR
786
786
  tencentcloud/live/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
787
787
  tencentcloud/live/v20180801/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
788
788
  tencentcloud/live/v20180801/errorcodes.py,sha256=Ew2EiOicOC6TblOK1dqIE8YtagcAyZx88UJw2IPPhuw,20164
789
- tencentcloud/live/v20180801/live_client.py,sha256=97Lq_RT6XTetHAjby3jwQXtkuVIfUtZpK8hZTOcyOnU,157957
790
- tencentcloud/live/v20180801/models.py,sha256=v20yxgifSGL1M6Fx_SK72bs7sxTUF14478NYXKv8CdI,767702
789
+ tencentcloud/live/v20180801/live_client.py,sha256=Y31D7BJ-navipts3YSrLonfnaymiIdut3ClCVkzD4qA,157870
790
+ tencentcloud/live/v20180801/models.py,sha256=rhXttyTGjdUAlqnYNVxnyXFAh6kfDf88ghHIHine9O0,768020
791
791
  tencentcloud/lowcode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
792
792
  tencentcloud/lowcode/v20210108/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
793
793
  tencentcloud/lowcode/v20210108/errorcodes.py,sha256=ZkpeDXiPLJe7W3TH-FBCg3I8m8YiUBEEmGV51yx9jdc,948
@@ -854,7 +854,7 @@ tencentcloud/monitor/v20180724/monitor_client.py,sha256=fgQAjiXg3kNr5JbAyySZQCx1
854
854
  tencentcloud/mps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
855
855
  tencentcloud/mps/v20190612/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
856
856
  tencentcloud/mps/v20190612/errorcodes.py,sha256=_ZLOkE1SwpsjWtIeTCUV-1OctReJNisJHXC0kT0a5DE,13604
857
- tencentcloud/mps/v20190612/models.py,sha256=YDrFrvwjaHyt_kEoxO7QmmOF2th3S4eZe50G5Yd9UsE,1324548
857
+ tencentcloud/mps/v20190612/models.py,sha256=NhoAuFzzkeWQ_A8tusMn_Z1sXwGg939G-F_lPRnJlRs,1327560
858
858
  tencentcloud/mps/v20190612/mps_client.py,sha256=a_SWAox6S5yVH-6LKQfRV1V4oABDKlqh5uyxaSoZ_YM,100285
859
859
  tencentcloud/mrs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
860
860
  tencentcloud/mrs/v20200910/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -894,7 +894,7 @@ tencentcloud/oceanus/v20190422/oceanus_client.py,sha256=R4aUFYhqwpn6cbPJNPQH8R5N
894
894
  tencentcloud/ocr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
895
895
  tencentcloud/ocr/v20181119/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
896
896
  tencentcloud/ocr/v20181119/errorcodes.py,sha256=lX4LUPXOAY0XuU37iKiYOZgaysvTHiM_-Z0OdTWwPqA,5927
897
- tencentcloud/ocr/v20181119/models.py,sha256=vMgxLb9Hk-4uOc3ll-bb9aOyiNU-vvYrXnSboOVcTn4,780152
897
+ tencentcloud/ocr/v20181119/models.py,sha256=c9BkOFOmJMMqwPB5nTYgBaHES1Wk5PDbgt-XHwrSoUM,780212
898
898
  tencentcloud/ocr/v20181119/ocr_client.py,sha256=C0oGtJZovgj6kh_rKJef0jBap1ONxub9YfNrZ6dQHpc,110470
899
899
  tencentcloud/omics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
900
900
  tencentcloud/omics/v20221128/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1091,7 +1091,7 @@ tencentcloud/tcaplusdb/v20190823/tcaplusdb_client.py,sha256=C57y21bS7Zz2uI3YviwM
1091
1091
  tencentcloud/tcb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1092
1092
  tencentcloud/tcb/v20180608/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1093
1093
  tencentcloud/tcb/v20180608/errorcodes.py,sha256=yS9oOxhqGl-R77CSzIZK52O3MXlOBqh2n-IqbIINW_U,4156
1094
- tencentcloud/tcb/v20180608/models.py,sha256=fnfo43C_bXOkBGnyLlAybOgTxp9cfMUTr5D_m1laY-4,550515
1094
+ tencentcloud/tcb/v20180608/models.py,sha256=zNK0YKyNmOzhYUDuHDLPX6_FL1YXXr4_Ngan3-a2Lkw,553921
1095
1095
  tencentcloud/tcb/v20180608/tcb_client.py,sha256=ElGFTFe0Y26r04Czy2AQQvwZEyE2T7b9Ltj56A-AO5c,84257
1096
1096
  tencentcloud/tcbr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1097
1097
  tencentcloud/tcbr/v20220217/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1164,7 +1164,7 @@ tencentcloud/teo/v20220106/models.py,sha256=EVQ4hXpq622SfHnekmjYnTY8-kOjsiRkwhMd
1164
1164
  tencentcloud/teo/v20220106/teo_client.py,sha256=zKdu8PLL0kN-RRe1XGMwbrcaYtB_Ou7Z6YXb50_K2Gc,5399
1165
1165
  tencentcloud/teo/v20220901/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1166
1166
  tencentcloud/teo/v20220901/errorcodes.py,sha256=TLrNyGNpEVQPXXSXUa_uFgAcKASHHCpITOD_3gZBZ6k,27387
1167
- tencentcloud/teo/v20220901/models.py,sha256=3o7sTIxdybDOA_TiEA48g38dVUB6aV-lubSr8FN0yOM,631308
1167
+ tencentcloud/teo/v20220901/models.py,sha256=a-ayMCLHqRMeHDCume_gfNMPPaqkSpCqDxinoezgDj0,631484
1168
1168
  tencentcloud/teo/v20220901/teo_client.py,sha256=QARN_zlGE2Z5u6hDdBG6v0gA22HgfyM-CsvVU-sopnA,64591
1169
1169
  tencentcloud/thpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1170
1170
  tencentcloud/thpc/v20211109/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1225,9 +1225,9 @@ tencentcloud/tiw/v20190919/models.py,sha256=NewxouXCepDGOpLSYgZBbEJ6xZzLTSaFW3RZ
1225
1225
  tencentcloud/tiw/v20190919/tiw_client.py,sha256=ol2eAAUr1DC9gWEgZI-ai6Q2y3ozFXuSnPTCGEt_z0U,61603
1226
1226
  tencentcloud/tke/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1227
1227
  tencentcloud/tke/v20180525/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1228
- tencentcloud/tke/v20180525/errorcodes.py,sha256=6P0PH8j3k8V13Ia6KXLI_3g_j8U2zlL-JIbFt4yqImo,19591
1229
- tencentcloud/tke/v20180525/models.py,sha256=6_KeMOKpiqcZfWCYR15n7Wv36IsqbI0-k2Ww1R91A9A,1061553
1230
- tencentcloud/tke/v20180525/tke_client.py,sha256=2MYzHjy6KV5oJYbbS2gLBRrn_qD0YPMmUGGK0mhPV4E,191187
1228
+ tencentcloud/tke/v20180525/errorcodes.py,sha256=Ss-jGLBvOsfzI5_dWWGyEiBxB2mQfwP56PVvUnxtnnQ,19924
1229
+ tencentcloud/tke/v20180525/models.py,sha256=CrLAbdMKp1yxcfwhrBNFKRYVjBfXO7M4GsjX6r9woRc,1119121
1230
+ tencentcloud/tke/v20180525/tke_client.py,sha256=CdaMnabwXk82MzNtyNrr2xLw7dj6ls2mk68Clgku3nQ,199717
1231
1231
  tencentcloud/tkgdq/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1232
1232
  tencentcloud/tkgdq/v20190411/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1233
1233
  tencentcloud/tkgdq/v20190411/errorcodes.py,sha256=CunR90NoQ3rWMQ0mOlGnZJfDJdHuY_CAJD1IxNacPg8,1685
@@ -1332,7 +1332,7 @@ tencentcloud/vod/v20180717/vod_client.py,sha256=0wIHgrV98uJSdJ8Bj-7SEFHPAq1U8XeV
1332
1332
  tencentcloud/vpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1333
1333
  tencentcloud/vpc/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1334
1334
  tencentcloud/vpc/v20170312/errorcodes.py,sha256=QTjQ_3KIJyXSiiJ3wR2aZ-QtUhES49UO7nWdtMsO4G4,45216
1335
- tencentcloud/vpc/v20170312/models.py,sha256=cJ2v20mx9kQNKh5G3VLeImN5T8Zcl7C0IjfCYCzc1No,1358159
1335
+ tencentcloud/vpc/v20170312/models.py,sha256=uzlm4Hnhc-GumghE-uEejdLNURgBHzwQlR9TgPArzyM,1365413
1336
1336
  tencentcloud/vpc/v20170312/vpc_client.py,sha256=G8baeBbd7SBOtdzHN10LD-oP2885Vz2FmMrClkqb5Ew,342735
1337
1337
  tencentcloud/vrs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1338
1338
  tencentcloud/vrs/v20200824/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1393,8 +1393,8 @@ tencentcloud/zj/v20190121/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
1393
1393
  tencentcloud/zj/v20190121/errorcodes.py,sha256=Sve02QefdLHNF7PhZubfyONtIBDBK-7Wie178rWP3mc,2052
1394
1394
  tencentcloud/zj/v20190121/models.py,sha256=AkPI4BDqIfktpPGPC3Wh1Jqw8EsX0BYSpPSMODmrEp8,114355
1395
1395
  tencentcloud/zj/v20190121/zj_client.py,sha256=VlT4mHtfzsUXr74BrX7OHBSRdwAGdlSI4o8OUd2JQhQ,19407
1396
- tencentcloud_sdk_python-3.0.990.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
1397
- tencentcloud_sdk_python-3.0.990.dist-info/METADATA,sha256=1tEIKp7Cc6AwvaBGy0VFTfV_IFGGmsU9mtmeLMUfJaM,1510
1398
- tencentcloud_sdk_python-3.0.990.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
1399
- tencentcloud_sdk_python-3.0.990.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
1400
- tencentcloud_sdk_python-3.0.990.dist-info/RECORD,,
1396
+ tencentcloud_sdk_python-3.0.991.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
1397
+ tencentcloud_sdk_python-3.0.991.dist-info/METADATA,sha256=V6tr8Oh3OpK1i5LKmX0pQjk86RGyIWchlG9bKJboWIU,1510
1398
+ tencentcloud_sdk_python-3.0.991.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
1399
+ tencentcloud_sdk_python-3.0.991.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
1400
+ tencentcloud_sdk_python-3.0.991.dist-info/RECORD,,