tencentcloud-sdk-python 3.0.1422__py2.py3-none-any.whl → 3.0.1423__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.
@@ -12672,6 +12672,137 @@ class DescribeCloudNativeAPIGatewayServiceRateLimitResponse(AbstractModel):
12672
12672
  self._RequestId = params.get("RequestId")
12673
12673
 
12674
12674
 
12675
+ class DescribeCloudNativeAPIGatewayServicesLightRequest(AbstractModel):
12676
+ """DescribeCloudNativeAPIGatewayServicesLight请求参数结构体
12677
+
12678
+ """
12679
+
12680
+ def __init__(self):
12681
+ r"""
12682
+ :param _GatewayId: 网关ID
12683
+ :type GatewayId: str
12684
+ :param _Limit: 列表数量
12685
+ :type Limit: int
12686
+ :param _Offset: 列表 offset
12687
+ :type Offset: int
12688
+ :param _Filters: 过滤条件,多个过滤条件之间是与的关系,支持 id、name、upstreamType
12689
+ :type Filters: list of ListFilter
12690
+ """
12691
+ self._GatewayId = None
12692
+ self._Limit = None
12693
+ self._Offset = None
12694
+ self._Filters = None
12695
+
12696
+ @property
12697
+ def GatewayId(self):
12698
+ """网关ID
12699
+ :rtype: str
12700
+ """
12701
+ return self._GatewayId
12702
+
12703
+ @GatewayId.setter
12704
+ def GatewayId(self, GatewayId):
12705
+ self._GatewayId = GatewayId
12706
+
12707
+ @property
12708
+ def Limit(self):
12709
+ """列表数量
12710
+ :rtype: int
12711
+ """
12712
+ return self._Limit
12713
+
12714
+ @Limit.setter
12715
+ def Limit(self, Limit):
12716
+ self._Limit = Limit
12717
+
12718
+ @property
12719
+ def Offset(self):
12720
+ """列表 offset
12721
+ :rtype: int
12722
+ """
12723
+ return self._Offset
12724
+
12725
+ @Offset.setter
12726
+ def Offset(self, Offset):
12727
+ self._Offset = Offset
12728
+
12729
+ @property
12730
+ def Filters(self):
12731
+ """过滤条件,多个过滤条件之间是与的关系,支持 id、name、upstreamType
12732
+ :rtype: list of ListFilter
12733
+ """
12734
+ return self._Filters
12735
+
12736
+ @Filters.setter
12737
+ def Filters(self, Filters):
12738
+ self._Filters = Filters
12739
+
12740
+
12741
+ def _deserialize(self, params):
12742
+ self._GatewayId = params.get("GatewayId")
12743
+ self._Limit = params.get("Limit")
12744
+ self._Offset = params.get("Offset")
12745
+ if params.get("Filters") is not None:
12746
+ self._Filters = []
12747
+ for item in params.get("Filters"):
12748
+ obj = ListFilter()
12749
+ obj._deserialize(item)
12750
+ self._Filters.append(obj)
12751
+ memeber_set = set(params.keys())
12752
+ for name, value in vars(self).items():
12753
+ property_name = name[1:]
12754
+ if property_name in memeber_set:
12755
+ memeber_set.remove(property_name)
12756
+ if len(memeber_set) > 0:
12757
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
12758
+
12759
+
12760
+
12761
+ class DescribeCloudNativeAPIGatewayServicesLightResponse(AbstractModel):
12762
+ """DescribeCloudNativeAPIGatewayServicesLight返回参数结构体
12763
+
12764
+ """
12765
+
12766
+ def __init__(self):
12767
+ r"""
12768
+ :param _Result: 无
12769
+ :type Result: :class:`tencentcloud.tse.v20201207.models.GatewayServices`
12770
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12771
+ :type RequestId: str
12772
+ """
12773
+ self._Result = None
12774
+ self._RequestId = None
12775
+
12776
+ @property
12777
+ def Result(self):
12778
+ """无
12779
+ :rtype: :class:`tencentcloud.tse.v20201207.models.GatewayServices`
12780
+ """
12781
+ return self._Result
12782
+
12783
+ @Result.setter
12784
+ def Result(self, Result):
12785
+ self._Result = Result
12786
+
12787
+ @property
12788
+ def RequestId(self):
12789
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12790
+ :rtype: str
12791
+ """
12792
+ return self._RequestId
12793
+
12794
+ @RequestId.setter
12795
+ def RequestId(self, RequestId):
12796
+ self._RequestId = RequestId
12797
+
12798
+
12799
+ def _deserialize(self, params):
12800
+ if params.get("Result") is not None:
12801
+ self._Result = GatewayServices()
12802
+ self._Result._deserialize(params.get("Result"))
12803
+ self._RequestId = params.get("RequestId")
12804
+
12805
+
12675
12806
  class DescribeCloudNativeAPIGatewayServicesRequest(AbstractModel):
12676
12807
  """DescribeCloudNativeAPIGatewayServices请求参数结构体
12677
12808
 
@@ -18958,6 +19089,62 @@ class GatewayInstanceSchemeAndPorts(AbstractModel):
18958
19089
 
18959
19090
 
18960
19091
 
19092
+ class GatewayServices(AbstractModel):
19093
+ """轻量查询网关服务列表出参
19094
+
19095
+ """
19096
+
19097
+ def __init__(self):
19098
+ r"""
19099
+ :param _ServiceList: 服务列表
19100
+ :type ServiceList: list of KongServiceLightPreview
19101
+ :param _TotalCount: 结果总数
19102
+ :type TotalCount: int
19103
+ """
19104
+ self._ServiceList = None
19105
+ self._TotalCount = None
19106
+
19107
+ @property
19108
+ def ServiceList(self):
19109
+ """服务列表
19110
+ :rtype: list of KongServiceLightPreview
19111
+ """
19112
+ return self._ServiceList
19113
+
19114
+ @ServiceList.setter
19115
+ def ServiceList(self, ServiceList):
19116
+ self._ServiceList = ServiceList
19117
+
19118
+ @property
19119
+ def TotalCount(self):
19120
+ """结果总数
19121
+ :rtype: int
19122
+ """
19123
+ return self._TotalCount
19124
+
19125
+ @TotalCount.setter
19126
+ def TotalCount(self, TotalCount):
19127
+ self._TotalCount = TotalCount
19128
+
19129
+
19130
+ def _deserialize(self, params):
19131
+ if params.get("ServiceList") is not None:
19132
+ self._ServiceList = []
19133
+ for item in params.get("ServiceList"):
19134
+ obj = KongServiceLightPreview()
19135
+ obj._deserialize(item)
19136
+ self._ServiceList.append(obj)
19137
+ self._TotalCount = params.get("TotalCount")
19138
+ memeber_set = set(params.keys())
19139
+ for name, value in vars(self).items():
19140
+ property_name = name[1:]
19141
+ if property_name in memeber_set:
19142
+ memeber_set.remove(property_name)
19143
+ if len(memeber_set) > 0:
19144
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
19145
+
19146
+
19147
+
18961
19148
  class GovernanceAlias(AbstractModel):
18962
19149
  """服务别名结构信息
18963
19150
 
@@ -22556,6 +22743,166 @@ class KongServiceDetail(AbstractModel):
22556
22743
 
22557
22744
 
22558
22745
 
22746
+ class KongServiceLightPreview(AbstractModel):
22747
+ """云原生网关服务简洁预览信息
22748
+
22749
+ """
22750
+
22751
+ def __init__(self):
22752
+ r"""
22753
+ :param _ID: 服务ID
22754
+ :type ID: str
22755
+ :param _Name: 服务名字
22756
+ :type Name: str
22757
+ :param _UpstreamInfo: 后端配置
22758
+ :type UpstreamInfo: :class:`tencentcloud.tse.v20201207.models.KongUpstreamInfo`
22759
+ :param _UpstreamType: 后端类型
22760
+ :type UpstreamType: str
22761
+ :param _CreatedTime: 创建时间
22762
+ :type CreatedTime: str
22763
+ :param _Path: 请求路径
22764
+ 注意:此字段可能返回 null,表示取不到有效值。
22765
+ :type Path: str
22766
+ :param _Protocol: 后端协议
22767
+ :type Protocol: str
22768
+ :param _Retries: 重试次数
22769
+ :type Retries: int
22770
+ :param _Timeout: 后端延时,单位ms
22771
+ :type Timeout: int
22772
+ """
22773
+ self._ID = None
22774
+ self._Name = None
22775
+ self._UpstreamInfo = None
22776
+ self._UpstreamType = None
22777
+ self._CreatedTime = None
22778
+ self._Path = None
22779
+ self._Protocol = None
22780
+ self._Retries = None
22781
+ self._Timeout = None
22782
+
22783
+ @property
22784
+ def ID(self):
22785
+ """服务ID
22786
+ :rtype: str
22787
+ """
22788
+ return self._ID
22789
+
22790
+ @ID.setter
22791
+ def ID(self, ID):
22792
+ self._ID = ID
22793
+
22794
+ @property
22795
+ def Name(self):
22796
+ """服务名字
22797
+ :rtype: str
22798
+ """
22799
+ return self._Name
22800
+
22801
+ @Name.setter
22802
+ def Name(self, Name):
22803
+ self._Name = Name
22804
+
22805
+ @property
22806
+ def UpstreamInfo(self):
22807
+ """后端配置
22808
+ :rtype: :class:`tencentcloud.tse.v20201207.models.KongUpstreamInfo`
22809
+ """
22810
+ return self._UpstreamInfo
22811
+
22812
+ @UpstreamInfo.setter
22813
+ def UpstreamInfo(self, UpstreamInfo):
22814
+ self._UpstreamInfo = UpstreamInfo
22815
+
22816
+ @property
22817
+ def UpstreamType(self):
22818
+ """后端类型
22819
+ :rtype: str
22820
+ """
22821
+ return self._UpstreamType
22822
+
22823
+ @UpstreamType.setter
22824
+ def UpstreamType(self, UpstreamType):
22825
+ self._UpstreamType = UpstreamType
22826
+
22827
+ @property
22828
+ def CreatedTime(self):
22829
+ """创建时间
22830
+ :rtype: str
22831
+ """
22832
+ return self._CreatedTime
22833
+
22834
+ @CreatedTime.setter
22835
+ def CreatedTime(self, CreatedTime):
22836
+ self._CreatedTime = CreatedTime
22837
+
22838
+ @property
22839
+ def Path(self):
22840
+ """请求路径
22841
+ 注意:此字段可能返回 null,表示取不到有效值。
22842
+ :rtype: str
22843
+ """
22844
+ return self._Path
22845
+
22846
+ @Path.setter
22847
+ def Path(self, Path):
22848
+ self._Path = Path
22849
+
22850
+ @property
22851
+ def Protocol(self):
22852
+ """后端协议
22853
+ :rtype: str
22854
+ """
22855
+ return self._Protocol
22856
+
22857
+ @Protocol.setter
22858
+ def Protocol(self, Protocol):
22859
+ self._Protocol = Protocol
22860
+
22861
+ @property
22862
+ def Retries(self):
22863
+ """重试次数
22864
+ :rtype: int
22865
+ """
22866
+ return self._Retries
22867
+
22868
+ @Retries.setter
22869
+ def Retries(self, Retries):
22870
+ self._Retries = Retries
22871
+
22872
+ @property
22873
+ def Timeout(self):
22874
+ """后端延时,单位ms
22875
+ :rtype: int
22876
+ """
22877
+ return self._Timeout
22878
+
22879
+ @Timeout.setter
22880
+ def Timeout(self, Timeout):
22881
+ self._Timeout = Timeout
22882
+
22883
+
22884
+ def _deserialize(self, params):
22885
+ self._ID = params.get("ID")
22886
+ self._Name = params.get("Name")
22887
+ if params.get("UpstreamInfo") is not None:
22888
+ self._UpstreamInfo = KongUpstreamInfo()
22889
+ self._UpstreamInfo._deserialize(params.get("UpstreamInfo"))
22890
+ self._UpstreamType = params.get("UpstreamType")
22891
+ self._CreatedTime = params.get("CreatedTime")
22892
+ self._Path = params.get("Path")
22893
+ self._Protocol = params.get("Protocol")
22894
+ self._Retries = params.get("Retries")
22895
+ self._Timeout = params.get("Timeout")
22896
+ memeber_set = set(params.keys())
22897
+ for name, value in vars(self).items():
22898
+ property_name = name[1:]
22899
+ if property_name in memeber_set:
22900
+ memeber_set.remove(property_name)
22901
+ if len(memeber_set) > 0:
22902
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
22903
+
22904
+
22905
+
22559
22906
  class KongServicePreview(AbstractModel):
22560
22907
  """云原生网关服务预览信息
22561
22908
 
@@ -1360,6 +1360,29 @@ class TseClient(AbstractClient):
1360
1360
  raise TencentCloudSDKException(type(e).__name__, str(e))
1361
1361
 
1362
1362
 
1363
+ def DescribeCloudNativeAPIGatewayServicesLight(self, request):
1364
+ """轻量查询云原生网关服务列表
1365
+
1366
+ :param request: Request instance for DescribeCloudNativeAPIGatewayServicesLight.
1367
+ :type request: :class:`tencentcloud.tse.v20201207.models.DescribeCloudNativeAPIGatewayServicesLightRequest`
1368
+ :rtype: :class:`tencentcloud.tse.v20201207.models.DescribeCloudNativeAPIGatewayServicesLightResponse`
1369
+
1370
+ """
1371
+ try:
1372
+ params = request._serialize()
1373
+ headers = request.headers
1374
+ body = self.call("DescribeCloudNativeAPIGatewayServicesLight", params, headers=headers)
1375
+ response = json.loads(body)
1376
+ model = models.DescribeCloudNativeAPIGatewayServicesLightResponse()
1377
+ model._deserialize(response["Response"])
1378
+ return model
1379
+ except Exception as e:
1380
+ if isinstance(e, TencentCloudSDKException):
1381
+ raise
1382
+ else:
1383
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1384
+
1385
+
1363
1386
  def DescribeCloudNativeAPIGatewayUpstream(self, request):
1364
1387
  """获取云原生网关服务详情下的Upstream列表
1365
1388
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python
3
- Version: 3.0.1422
3
+ Version: 3.0.1423
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=EQCKXXbP1047vfBNe2wkuMRjfQk0_w2_6USz0wqJyjw,631
53
+ tencentcloud/__init__.py,sha256=-GdqPfy8hMgjHygr5TLD-huCbJ_ZP9lmTMHrj_pf8JY,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=TS0CfKHCyAf0JjZWSnoCkz26lWtT4jwp9-usOLcAJEE,5470
@@ -287,7 +287,7 @@ tencentcloud/cdn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
287
287
  tencentcloud/cdn/v20180606/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
288
288
  tencentcloud/cdn/v20180606/cdn_client.py,sha256=ScjHXq_iiv9alyaGe4hBZDFG_-FnbrqHw2kKTf_M-d4,84007
289
289
  tencentcloud/cdn/v20180606/errorcodes.py,sha256=snsWtl8_ny_bpuEEp8CDvjnQMPpEWdzjNH0R-PJ4Jrw,22853
290
- tencentcloud/cdn/v20180606/models.py,sha256=KRmoL_oByFdlCbxiFt5e-5OiMlyr2KJqY2Z1568x_v4,1115624
290
+ tencentcloud/cdn/v20180606/models.py,sha256=4dwALjPM74-RaUCxYWwlsShXzFspzzJg38ldtSrefRI,1115624
291
291
  tencentcloud/cds/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
292
292
  tencentcloud/cds/v20180420/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
293
293
  tencentcloud/cds/v20180420/cds_client.py,sha256=B5FoLzmC0F-mUxAbh4L6ZdltR3vs4J7c93cMpmIIwJo,5910
@@ -297,7 +297,7 @@ tencentcloud/cdwch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
297
297
  tencentcloud/cdwch/v20200915/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
298
298
  tencentcloud/cdwch/v20200915/cdwch_client.py,sha256=Opv_BGuD7Nh_1otG0sxXQTx8dkrY1Y2SCd_WMSOIjNQ,27235
299
299
  tencentcloud/cdwch/v20200915/errorcodes.py,sha256=cVaWiT6C01PO8udIwajGAbYW972DIMP510--AzL4K9E,1108
300
- tencentcloud/cdwch/v20200915/models.py,sha256=oimhJdeiaWmOpVImkFRt2rQMi3drOkckXX3Si3Hoqu0,231781
300
+ tencentcloud/cdwch/v20200915/models.py,sha256=601o-Q-oO09xjkA8YcQjXgyF4cOwpIdxHuDIBohYMOY,231803
301
301
  tencentcloud/cdwdoris/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
302
302
  tencentcloud/cdwdoris/v20211228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
303
303
  tencentcloud/cdwdoris/v20211228/cdwdoris_client.py,sha256=NjFI8PfZJ8wkda-2-6q8h21FzRlrIHn6_GYtTaUZWCE,55895
@@ -399,7 +399,7 @@ tencentcloud/cls/v20201016/models.py,sha256=cDLdrg3L0Ew_hqIX09rbX5WYcjLJkEEYEPGA
399
399
  tencentcloud/cme/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
400
400
  tencentcloud/cme/v20191029/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
401
401
  tencentcloud/cme/v20191029/cme_client.py,sha256=wSAV62NpuY2GuzCNKclWXzEbD1TMyW79CzDvDcqPcdw,55293
402
- tencentcloud/cme/v20191029/errorcodes.py,sha256=Pu0o2wWaugyolMV6FHrLjwan_nrZ0H7WbqdAAkgnfPw,8663
402
+ tencentcloud/cme/v20191029/errorcodes.py,sha256=h4a7GnEMwxgGH4OVsH1F3XzMebs0IaSERk35BwOJUB0,8789
403
403
  tencentcloud/cme/v20191029/models.py,sha256=XqVGBBjcEY7V4wsvQPd5CWrSq2TF5VB0_nN0b3cQRNY,575604
404
404
  tencentcloud/cmq/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
405
405
  tencentcloud/cmq/v20190304/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -454,9 +454,9 @@ tencentcloud/csxg/v20230303/errorcodes.py,sha256=ScYNj0-nP3QGzAdFvu9cbxmgl_kZOgy
454
454
  tencentcloud/csxg/v20230303/models.py,sha256=f3WQwgV7KEi_t3iPF_9H6h4L8szgC_3LW7K-z6at13A,6067
455
455
  tencentcloud/ctem/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
456
456
  tencentcloud/ctem/v20231128/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
457
- tencentcloud/ctem/v20231128/ctem_client.py,sha256=w95RvJs5j7bmCY0sbAhti3Q701MuQS8CGVf7UiLp37Q,22801
457
+ tencentcloud/ctem/v20231128/ctem_client.py,sha256=0ETUs7G-mlc_DLe70MrPoJhqNkkHafPVzLtGpqrVrNo,25492
458
458
  tencentcloud/ctem/v20231128/errorcodes.py,sha256=qk2wjYYpLmKIR_6qMdGsBZcUqOFfdbTv6UHHex6dlhk,1907
459
- tencentcloud/ctem/v20231128/models.py,sha256=wW9WtUBZpkb27edE4rvvjuNiYZIoYsF___y1ghD0cBo,279031
459
+ tencentcloud/ctem/v20231128/models.py,sha256=BdwV4VMKpwo2NOk9tegJKtChRTzFtwhkzIjmuja-Ymk,305826
460
460
  tencentcloud/cvm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
461
461
  tencentcloud/cvm/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
462
462
  tencentcloud/cvm/v20170312/cvm_client.py,sha256=3DJXLCLB4JtP8hUEps64P5TwKI1A3E2t0aUnqomYBK0,128651
@@ -645,7 +645,7 @@ tencentcloud/gme/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
645
645
  tencentcloud/gme/v20180711/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
646
646
  tencentcloud/gme/v20180711/errorcodes.py,sha256=vxvgbUCG2QicLkCT6yDxdPWBKhxxDmATtXHCQp79DyU,4349
647
647
  tencentcloud/gme/v20180711/gme_client.py,sha256=L8FbCAhxAhRWb-OmBoIIbOgOFkzlWOTQNjpuSXvYuEE,35087
648
- tencentcloud/gme/v20180711/models.py,sha256=rxBrUl1Fvu7AwGriYckfGeIJ95-zopkmp2IY0uWWJgo,197585
648
+ tencentcloud/gme/v20180711/models.py,sha256=xmbb78K8vkprRjia_4PU_-spdSLRw0_WFObQj05y52c,200561
649
649
  tencentcloud/goosefs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
650
650
  tencentcloud/goosefs/v20220519/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
651
651
  tencentcloud/goosefs/v20220519/errorcodes.py,sha256=KvHs6W2GONKBsXXCjJUx8q8sqMTR7e5vr5Gx01t5b24,625
@@ -804,7 +804,7 @@ tencentcloud/kms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
804
804
  tencentcloud/kms/v20190118/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
805
805
  tencentcloud/kms/v20190118/errorcodes.py,sha256=f2U3l9TotZd1fI6KIUtKrQO4wsAbpaBC6kpy8t1mBsw,6737
806
806
  tencentcloud/kms/v20190118/kms_client.py,sha256=A5MOQAWMpXquRbrR7MQ7a_awoApRCvKORzrtdKUZsNY,64236
807
- tencentcloud/kms/v20190118/models.py,sha256=xXB3h8LCfrMlxGKB4mMyC-NQKAxxG_Mk9Wni92QigZY,268184
807
+ tencentcloud/kms/v20190118/models.py,sha256=dTMD1erx80DUIQls35b10DHgGkeFGNY27MhzuZ6ywtc,277774
808
808
  tencentcloud/lcic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
809
809
  tencentcloud/lcic/v20220817/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
810
810
  tencentcloud/lcic/v20220817/errorcodes.py,sha256=y0SbkvrxTNhC-uPOBG-v7P9WtbDheaT5O7iTxWCZDio,4697
@@ -822,9 +822,9 @@ tencentcloud/live/v20180801/live_client.py,sha256=AvcKOtflj3ltjNXjjsp6ttM5cFLByN
822
822
  tencentcloud/live/v20180801/models.py,sha256=fijfMEp-YD8fmQEH2CJZB6Xijnx6JxPnhqvh0qWvY9g,1271244
823
823
  tencentcloud/lke/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
824
824
  tencentcloud/lke/v20231130/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
825
- tencentcloud/lke/v20231130/errorcodes.py,sha256=PoDK8fBr8yid1AAvdQ3bEI76es3N8DoFFowkAnYVW7c,1907
826
- tencentcloud/lke/v20231130/lke_client.py,sha256=GX8z2Xh94nUZs3APkqaHBDU9772_Oq-kPrDHEdibesM,103969
827
- tencentcloud/lke/v20231130/models.py,sha256=iQ3DAOhHJBoqOGH_GcDx9nGjTNzZ3Q3QtCSTV1KnhN8,983782
825
+ tencentcloud/lke/v20231130/errorcodes.py,sha256=IIzRSWC6WhNQsTE2b3WxQMT-vTEtSFlHwMNi5fMv9x4,800
826
+ tencentcloud/lke/v20231130/lke_client.py,sha256=p4sJF1gD4CB04m5H9XVa5moCpO5EJI13Z-PAkY-seB0,95322
827
+ tencentcloud/lke/v20231130/models.py,sha256=8-dYhQPAN1ZlrEbTiHV8_KYh5jx0N9xpOcbOtTrGeKU,920745
828
828
  tencentcloud/lkeap/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
829
829
  tencentcloud/lkeap/v20240522/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
830
830
  tencentcloud/lkeap/v20240522/errorcodes.py,sha256=lNLL01CjcMK_8EciKdlA6zh_gwkiFJULL4DaG0YfIMw,2443
@@ -880,9 +880,9 @@ tencentcloud/monitor/v20180724/errorcodes.py,sha256=eDOJNfzXPmFSaCay8L5AHOOxNA1J
880
880
  tencentcloud/monitor/v20180724/models.py,sha256=8iF87QHn_gukm4ytz8lHy9aQGe0Uhx5AFKmiW0TfMjk,1256838
881
881
  tencentcloud/monitor/v20180724/monitor_client.py,sha256=jy0-R55I4ptB6MWvErpQydhuK3LghwYXcTwE8_n-pN8,162832
882
882
  tencentcloud/monitor/v20230616/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
883
- tencentcloud/monitor/v20230616/errorcodes.py,sha256=Hlo0ov1527P-oHqF8LGNmP9iYoay5KSsLYEBPuzgVvU,956
884
- tencentcloud/monitor/v20230616/models.py,sha256=1OUJ_tbiDhI_pRk9p7q29S5tyNkeSXCvHt2dXBV3pQE,16207
885
- tencentcloud/monitor/v20230616/monitor_client.py,sha256=0TivHYdr92mTx5XxCJaIdKvxq1Uo1ngm1oJsZ9H6Ios,2835
883
+ tencentcloud/monitor/v20230616/errorcodes.py,sha256=bUq13jEyzPHY2Int3VvXcf2Vn7GpM7jvS8EGy5WKHCA,733
884
+ tencentcloud/monitor/v20230616/models.py,sha256=tE7HVWgh7XIEoQrTywTrKZGITddP_o44qpSon2inKsc,7202
885
+ tencentcloud/monitor/v20230616/monitor_client.py,sha256=WD5JhrNke9cgPgbXqn5k1RqGmJGkhvzHOHd9a7YTinI,1944
886
886
  tencentcloud/mps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
887
887
  tencentcloud/mps/v20190612/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
888
888
  tencentcloud/mps/v20190612/errorcodes.py,sha256=1mhmQVjpxqAAVz1TjiBoCaIJP9H32wUp3jtkjvV9ha0,15729
@@ -970,7 +970,7 @@ tencentcloud/rce/v20201103/rce_client.py,sha256=okuqgie9MJcraxa_5BYslinHfzpUd18t
970
970
  tencentcloud/redis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
971
971
  tencentcloud/redis/v20180412/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
972
972
  tencentcloud/redis/v20180412/errorcodes.py,sha256=tq8s7aDA260F_A_ojIhASA58VOuYxfDk5WOvK7H6aXI,12596
973
- tencentcloud/redis/v20180412/models.py,sha256=zD_6_O15xOK-aUbIFHYa5Fh9sLGsTc_yik7XVuFXnU4,737316
973
+ tencentcloud/redis/v20180412/models.py,sha256=vvd_5UkkvscFDi1Pi2FV6WK93lXTVDJ0AOL9toE8Imw,738488
974
974
  tencentcloud/redis/v20180412/redis_client.py,sha256=iKq72NYPDSypEPHMSgrDOJPBolL6t3FNlMI39As4ASU,108194
975
975
  tencentcloud/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
976
976
  tencentcloud/region/v20220627/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -984,7 +984,7 @@ tencentcloud/rum/v20210622/models.py,sha256=UCyysEMhSC8J_Z4TdR0GDFfKT7ByXlrarGw0
984
984
  tencentcloud/rum/v20210622/rum_client.py,sha256=-Ga7HUE-HdXc5PneelVlXMTkqiT0e12V1gJwruOGgzI,49560
985
985
  tencentcloud/scf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
986
986
  tencentcloud/scf/v20180416/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
987
- tencentcloud/scf/v20180416/errorcodes.py,sha256=2Xl3md7lUKPhdPsjVgRh6N617vAd6C33v9wgHyHQVZ0,34132
987
+ tencentcloud/scf/v20180416/errorcodes.py,sha256=jWP5WmlKYP-_tMvaE7AtCIsx6A7Xdlb8WFIHqqlhfQI,34781
988
988
  tencentcloud/scf/v20180416/models.py,sha256=Zs9P1ss7Gn1Kmo6kvtyee-GuGXpI0qZzCSSLRp8qsUo,446829
989
989
  tencentcloud/scf/v20180416/scf_client.py,sha256=isQ8Rgimk5mEDhEHVOohORwXWCuXDc-MJ-AZPJElasc,49884
990
990
  tencentcloud/securitylake/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1034,7 +1034,7 @@ tencentcloud/ssa/v20180608/ssa_client.py,sha256=JvN6-YFwg9rVneCP-E_5z3aeejjmkxSa
1034
1034
  tencentcloud/ssl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1035
1035
  tencentcloud/ssl/v20191205/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1036
1036
  tencentcloud/ssl/v20191205/errorcodes.py,sha256=eTex_tjOdHh1VnWia7IFP6AbAQxAuqayMXaPUINhENE,14983
1037
- tencentcloud/ssl/v20191205/models.py,sha256=Un6FpUVIdirEfU8CGoywN9_aGBFCNsXJRjcVjCv9GHA,726467
1037
+ tencentcloud/ssl/v20191205/models.py,sha256=sJQmSItzdEFBFukDRBpmjQPgrKirXV1h5hdMcxyZXO8,728253
1038
1038
  tencentcloud/ssl/v20191205/ssl_client.py,sha256=cEX8dAp3cOypis7Tv6itfHzGVoHf-WB2APTOolEcZVU,68338
1039
1039
  tencentcloud/sslpod/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1040
1040
  tencentcloud/sslpod/v20190605/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1203,7 +1203,7 @@ tencentcloud/tiw/v20190919/tiw_client.py,sha256=q-4kzdXwJlqA9DFmZsNNvKdQZtVEjjD7
1203
1203
  tencentcloud/tke/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1204
1204
  tencentcloud/tke/v20180525/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1205
1205
  tencentcloud/tke/v20180525/errorcodes.py,sha256=Lbgko-43Nil_LT2Sy7wCTQ2IjSFzyOuraiwoGxZiwlY,22210
1206
- tencentcloud/tke/v20180525/models.py,sha256=kATz5Lhtm_jnvfw6BSnmX9QVhiB8zewX60zRecuMTVQ,1492165
1206
+ tencentcloud/tke/v20180525/models.py,sha256=mxbuxnHbGHfa_SmHJttd1AXOKZWt_j5PG9kxbEDnFeA,1492283
1207
1207
  tencentcloud/tke/v20180525/tke_client.py,sha256=xKtkcQRveXGTdAYph9mhfDw7cHchzukEWdx8mQDWct4,216498
1208
1208
  tencentcloud/tke/v20220501/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1209
1209
  tencentcloud/tke/v20220501/errorcodes.py,sha256=-apsAhCOfVI2nlQMNLiMa1urX4o8yiLf_TWI7ji9gS4,2153
@@ -1261,8 +1261,8 @@ tencentcloud/trtc/v20190722/trtc_client.py,sha256=k2OzeFuutxHoSRP3C9qdT8PzQ7LZGn
1261
1261
  tencentcloud/tse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1262
1262
  tencentcloud/tse/v20201207/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1263
1263
  tencentcloud/tse/v20201207/errorcodes.py,sha256=xki92E6I1i_dASuJ0H-90bqqTiDWTeixJLfxT7nJxZI,6497
1264
- tencentcloud/tse/v20201207/models.py,sha256=Inxw1dbPXKfuleinmyFaXbGlLu_vcz_AgD0Lo4e3wFs,886074
1265
- tencentcloud/tse/v20201207/tse_client.py,sha256=T3E8X6mnxQzCsl9W7Lfo1wemPCAQNag3pVy6Ptw5vI0,115271
1264
+ tencentcloud/tse/v20201207/models.py,sha256=COgsij9IsNV0HGg5w4pZsZ-baF-USfVF2AuyQVSgDiI,895610
1265
+ tencentcloud/tse/v20201207/tse_client.py,sha256=3lOiCobmc7zqIA1ruAlLjUQR1SM7dj8Dj2mVCfxKo4Q,116311
1266
1266
  tencentcloud/tsf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1267
1267
  tencentcloud/tsf/v20180326/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1268
1268
  tencentcloud/tsf/v20180326/errorcodes.py,sha256=cmTG_Bb7_YhOQRpHttMWcOkLpVCPnve7u8W62z-WL2Q,53794
@@ -1393,8 +1393,8 @@ tencentcloud/yunsou/v20191115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
1393
1393
  tencentcloud/yunsou/v20191115/errorcodes.py,sha256=YV391ulIJZVFPtkkzGWg4n2fbxEDxJh5ji0uglbVnA0,1274
1394
1394
  tencentcloud/yunsou/v20191115/models.py,sha256=jTr6sa2LfXEBd7uOgC19JRTLBXZmLGyP3QjNfGqLPyo,27653
1395
1395
  tencentcloud/yunsou/v20191115/yunsou_client.py,sha256=H2Kzv6ow4QKnLc63655ffyUZBaGSczEYf3R5UTjcjGA,2714
1396
- tencentcloud_sdk_python-3.0.1422.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
1397
- tencentcloud_sdk_python-3.0.1422.dist-info/METADATA,sha256=uJFlYtNacE3lF3zjMAwUtmh782Zj3N6Oj5emwDxk3vk,1613
1398
- tencentcloud_sdk_python-3.0.1422.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
1399
- tencentcloud_sdk_python-3.0.1422.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
1400
- tencentcloud_sdk_python-3.0.1422.dist-info/RECORD,,
1396
+ tencentcloud_sdk_python-3.0.1423.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
1397
+ tencentcloud_sdk_python-3.0.1423.dist-info/METADATA,sha256=HxJrqgI2oe_LoMzRgZqevUKLyA9n4soUD-Vyz4eu-aA,1613
1398
+ tencentcloud_sdk_python-3.0.1423.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
1399
+ tencentcloud_sdk_python-3.0.1423.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
1400
+ tencentcloud_sdk_python-3.0.1423.dist-info/RECORD,,