tencentcloud-sdk-python-bh 3.1.59__tar.gz → 3.1.61__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {tencentcloud_sdk_python_bh-3.1.59 → tencentcloud_sdk_python_bh-3.1.61}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_bh-3.1.59 → tencentcloud_sdk_python_bh-3.1.61}/setup.py +1 -1
- {tencentcloud_sdk_python_bh-3.1.59 → tencentcloud_sdk_python_bh-3.1.61}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_bh-3.1.59 → tencentcloud_sdk_python_bh-3.1.61}/tencentcloud/bh/v20230418/bh_client.py +46 -0
- {tencentcloud_sdk_python_bh-3.1.59 → tencentcloud_sdk_python_bh-3.1.61}/tencentcloud/bh/v20230418/bh_client_async.py +36 -0
- {tencentcloud_sdk_python_bh-3.1.59 → tencentcloud_sdk_python_bh-3.1.61}/tencentcloud/bh/v20230418/models.py +264 -0
- {tencentcloud_sdk_python_bh-3.1.59 → tencentcloud_sdk_python_bh-3.1.61}/tencentcloud_sdk_python_bh.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_bh-3.1.61/tencentcloud_sdk_python_bh.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_bh-3.1.59/tencentcloud_sdk_python_bh.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_bh-3.1.59 → tencentcloud_sdk_python_bh-3.1.61}/README.rst +0 -0
- {tencentcloud_sdk_python_bh-3.1.59 → tencentcloud_sdk_python_bh-3.1.61}/setup.cfg +0 -0
- {tencentcloud_sdk_python_bh-3.1.59 → tencentcloud_sdk_python_bh-3.1.61}/tencentcloud/bh/__init__.py +0 -0
- {tencentcloud_sdk_python_bh-3.1.59 → tencentcloud_sdk_python_bh-3.1.61}/tencentcloud/bh/v20230418/__init__.py +0 -0
- {tencentcloud_sdk_python_bh-3.1.59 → tencentcloud_sdk_python_bh-3.1.61}/tencentcloud/bh/v20230418/errorcodes.py +0 -0
- {tencentcloud_sdk_python_bh-3.1.59 → tencentcloud_sdk_python_bh-3.1.61}/tencentcloud_sdk_python_bh.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_bh-3.1.59 → tencentcloud_sdk_python_bh-3.1.61}/tencentcloud_sdk_python_bh.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_bh-3.1.59 → tencentcloud_sdk_python_bh-3.1.61}/tencentcloud_sdk_python_bh.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-bh
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.61
|
|
4
4
|
Summary: Tencent Cloud Bh SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.61
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-bh',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.61,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Bh SDK for Python',
|
|
@@ -1038,6 +1038,52 @@ class BhClient(AbstractClient):
|
|
|
1038
1038
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1039
1039
|
|
|
1040
1040
|
|
|
1041
|
+
def DescribeDeviceCount(self, request):
|
|
1042
|
+
r"""查询用户导入的主机数
|
|
1043
|
+
|
|
1044
|
+
:param request: Request instance for DescribeDeviceCount.
|
|
1045
|
+
:type request: :class:`tencentcloud.bh.v20230418.models.DescribeDeviceCountRequest`
|
|
1046
|
+
:rtype: :class:`tencentcloud.bh.v20230418.models.DescribeDeviceCountResponse`
|
|
1047
|
+
|
|
1048
|
+
"""
|
|
1049
|
+
try:
|
|
1050
|
+
params = request._serialize()
|
|
1051
|
+
headers = request.headers
|
|
1052
|
+
body = self.call("DescribeDeviceCount", params, headers=headers)
|
|
1053
|
+
response = json.loads(body)
|
|
1054
|
+
model = models.DescribeDeviceCountResponse()
|
|
1055
|
+
model._deserialize(response["Response"])
|
|
1056
|
+
return model
|
|
1057
|
+
except Exception as e:
|
|
1058
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1059
|
+
raise
|
|
1060
|
+
else:
|
|
1061
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1062
|
+
|
|
1063
|
+
|
|
1064
|
+
def DescribeDeviceCountSummary(self, request):
|
|
1065
|
+
r"""查询用户导入的主机数
|
|
1066
|
+
|
|
1067
|
+
:param request: Request instance for DescribeDeviceCountSummary.
|
|
1068
|
+
:type request: :class:`tencentcloud.bh.v20230418.models.DescribeDeviceCountSummaryRequest`
|
|
1069
|
+
:rtype: :class:`tencentcloud.bh.v20230418.models.DescribeDeviceCountSummaryResponse`
|
|
1070
|
+
|
|
1071
|
+
"""
|
|
1072
|
+
try:
|
|
1073
|
+
params = request._serialize()
|
|
1074
|
+
headers = request.headers
|
|
1075
|
+
body = self.call("DescribeDeviceCountSummary", params, headers=headers)
|
|
1076
|
+
response = json.loads(body)
|
|
1077
|
+
model = models.DescribeDeviceCountSummaryResponse()
|
|
1078
|
+
model._deserialize(response["Response"])
|
|
1079
|
+
return model
|
|
1080
|
+
except Exception as e:
|
|
1081
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1082
|
+
raise
|
|
1083
|
+
else:
|
|
1084
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1085
|
+
|
|
1086
|
+
|
|
1041
1087
|
def DescribeDeviceGroupMembers(self, request):
|
|
1042
1088
|
r"""查询资产组成员列表
|
|
1043
1089
|
|
|
@@ -817,6 +817,42 @@ class BhClient(AbstractClient):
|
|
|
817
817
|
|
|
818
818
|
return await self.call_and_deserialize(**kwargs)
|
|
819
819
|
|
|
820
|
+
async def DescribeDeviceCount(
|
|
821
|
+
self,
|
|
822
|
+
request: models.DescribeDeviceCountRequest,
|
|
823
|
+
opts: Dict = None,
|
|
824
|
+
) -> models.DescribeDeviceCountResponse:
|
|
825
|
+
"""
|
|
826
|
+
查询用户导入的主机数
|
|
827
|
+
"""
|
|
828
|
+
|
|
829
|
+
kwargs = {}
|
|
830
|
+
kwargs["action"] = "DescribeDeviceCount"
|
|
831
|
+
kwargs["params"] = request._serialize()
|
|
832
|
+
kwargs["resp_cls"] = models.DescribeDeviceCountResponse
|
|
833
|
+
kwargs["headers"] = request.headers
|
|
834
|
+
kwargs["opts"] = opts or {}
|
|
835
|
+
|
|
836
|
+
return await self.call_and_deserialize(**kwargs)
|
|
837
|
+
|
|
838
|
+
async def DescribeDeviceCountSummary(
|
|
839
|
+
self,
|
|
840
|
+
request: models.DescribeDeviceCountSummaryRequest,
|
|
841
|
+
opts: Dict = None,
|
|
842
|
+
) -> models.DescribeDeviceCountSummaryResponse:
|
|
843
|
+
"""
|
|
844
|
+
查询用户导入的主机数
|
|
845
|
+
"""
|
|
846
|
+
|
|
847
|
+
kwargs = {}
|
|
848
|
+
kwargs["action"] = "DescribeDeviceCountSummary"
|
|
849
|
+
kwargs["params"] = request._serialize()
|
|
850
|
+
kwargs["resp_cls"] = models.DescribeDeviceCountSummaryResponse
|
|
851
|
+
kwargs["headers"] = request.headers
|
|
852
|
+
kwargs["opts"] = opts or {}
|
|
853
|
+
|
|
854
|
+
return await self.call_and_deserialize(**kwargs)
|
|
855
|
+
|
|
820
856
|
async def DescribeDeviceGroupMembers(
|
|
821
857
|
self,
|
|
822
858
|
request: models.DescribeDeviceGroupMembersRequest,
|
|
@@ -8501,6 +8501,219 @@ class DescribeDeviceAccountsResponse(AbstractModel):
|
|
|
8501
8501
|
self._RequestId = params.get("RequestId")
|
|
8502
8502
|
|
|
8503
8503
|
|
|
8504
|
+
class DescribeDeviceCountRequest(AbstractModel):
|
|
8505
|
+
r"""DescribeDeviceCount请求参数结构体
|
|
8506
|
+
|
|
8507
|
+
"""
|
|
8508
|
+
|
|
8509
|
+
def __init__(self):
|
|
8510
|
+
r"""
|
|
8511
|
+
:param _ApCode: 地域码
|
|
8512
|
+
:type ApCode: str
|
|
8513
|
+
:param _VpcId: 用户VPC实例ID
|
|
8514
|
+
:type VpcId: str
|
|
8515
|
+
:param _ResourceId: 堡垒机服务ID
|
|
8516
|
+
:type ResourceId: str
|
|
8517
|
+
:param _Kind: 资产类型,1-Linux, 2-Windows,3-MySQL,4-SqlServer 不传-全部
|
|
8518
|
+
:type Kind: int
|
|
8519
|
+
:param _BindResource: 是否绑定服务,1-已绑定, 2-未绑定, 不传-全部
|
|
8520
|
+
:type BindResource: int
|
|
8521
|
+
"""
|
|
8522
|
+
self._ApCode = None
|
|
8523
|
+
self._VpcId = None
|
|
8524
|
+
self._ResourceId = None
|
|
8525
|
+
self._Kind = None
|
|
8526
|
+
self._BindResource = None
|
|
8527
|
+
|
|
8528
|
+
@property
|
|
8529
|
+
def ApCode(self):
|
|
8530
|
+
r"""地域码
|
|
8531
|
+
:rtype: str
|
|
8532
|
+
"""
|
|
8533
|
+
return self._ApCode
|
|
8534
|
+
|
|
8535
|
+
@ApCode.setter
|
|
8536
|
+
def ApCode(self, ApCode):
|
|
8537
|
+
self._ApCode = ApCode
|
|
8538
|
+
|
|
8539
|
+
@property
|
|
8540
|
+
def VpcId(self):
|
|
8541
|
+
r"""用户VPC实例ID
|
|
8542
|
+
:rtype: str
|
|
8543
|
+
"""
|
|
8544
|
+
return self._VpcId
|
|
8545
|
+
|
|
8546
|
+
@VpcId.setter
|
|
8547
|
+
def VpcId(self, VpcId):
|
|
8548
|
+
self._VpcId = VpcId
|
|
8549
|
+
|
|
8550
|
+
@property
|
|
8551
|
+
def ResourceId(self):
|
|
8552
|
+
r"""堡垒机服务ID
|
|
8553
|
+
:rtype: str
|
|
8554
|
+
"""
|
|
8555
|
+
return self._ResourceId
|
|
8556
|
+
|
|
8557
|
+
@ResourceId.setter
|
|
8558
|
+
def ResourceId(self, ResourceId):
|
|
8559
|
+
self._ResourceId = ResourceId
|
|
8560
|
+
|
|
8561
|
+
@property
|
|
8562
|
+
def Kind(self):
|
|
8563
|
+
r"""资产类型,1-Linux, 2-Windows,3-MySQL,4-SqlServer 不传-全部
|
|
8564
|
+
:rtype: int
|
|
8565
|
+
"""
|
|
8566
|
+
return self._Kind
|
|
8567
|
+
|
|
8568
|
+
@Kind.setter
|
|
8569
|
+
def Kind(self, Kind):
|
|
8570
|
+
self._Kind = Kind
|
|
8571
|
+
|
|
8572
|
+
@property
|
|
8573
|
+
def BindResource(self):
|
|
8574
|
+
r"""是否绑定服务,1-已绑定, 2-未绑定, 不传-全部
|
|
8575
|
+
:rtype: int
|
|
8576
|
+
"""
|
|
8577
|
+
return self._BindResource
|
|
8578
|
+
|
|
8579
|
+
@BindResource.setter
|
|
8580
|
+
def BindResource(self, BindResource):
|
|
8581
|
+
self._BindResource = BindResource
|
|
8582
|
+
|
|
8583
|
+
|
|
8584
|
+
def _deserialize(self, params):
|
|
8585
|
+
self._ApCode = params.get("ApCode")
|
|
8586
|
+
self._VpcId = params.get("VpcId")
|
|
8587
|
+
self._ResourceId = params.get("ResourceId")
|
|
8588
|
+
self._Kind = params.get("Kind")
|
|
8589
|
+
self._BindResource = params.get("BindResource")
|
|
8590
|
+
memeber_set = set(params.keys())
|
|
8591
|
+
for name, value in vars(self).items():
|
|
8592
|
+
property_name = name[1:]
|
|
8593
|
+
if property_name in memeber_set:
|
|
8594
|
+
memeber_set.remove(property_name)
|
|
8595
|
+
if len(memeber_set) > 0:
|
|
8596
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
8597
|
+
|
|
8598
|
+
|
|
8599
|
+
|
|
8600
|
+
class DescribeDeviceCountResponse(AbstractModel):
|
|
8601
|
+
r"""DescribeDeviceCount返回参数结构体
|
|
8602
|
+
|
|
8603
|
+
"""
|
|
8604
|
+
|
|
8605
|
+
def __init__(self):
|
|
8606
|
+
r"""
|
|
8607
|
+
:param _TotalCount: 主机总数
|
|
8608
|
+
:type TotalCount: int
|
|
8609
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
8610
|
+
:type RequestId: str
|
|
8611
|
+
"""
|
|
8612
|
+
self._TotalCount = None
|
|
8613
|
+
self._RequestId = None
|
|
8614
|
+
|
|
8615
|
+
@property
|
|
8616
|
+
def TotalCount(self):
|
|
8617
|
+
r"""主机总数
|
|
8618
|
+
:rtype: int
|
|
8619
|
+
"""
|
|
8620
|
+
return self._TotalCount
|
|
8621
|
+
|
|
8622
|
+
@TotalCount.setter
|
|
8623
|
+
def TotalCount(self, TotalCount):
|
|
8624
|
+
self._TotalCount = TotalCount
|
|
8625
|
+
|
|
8626
|
+
@property
|
|
8627
|
+
def RequestId(self):
|
|
8628
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
8629
|
+
:rtype: str
|
|
8630
|
+
"""
|
|
8631
|
+
return self._RequestId
|
|
8632
|
+
|
|
8633
|
+
@RequestId.setter
|
|
8634
|
+
def RequestId(self, RequestId):
|
|
8635
|
+
self._RequestId = RequestId
|
|
8636
|
+
|
|
8637
|
+
|
|
8638
|
+
def _deserialize(self, params):
|
|
8639
|
+
self._TotalCount = params.get("TotalCount")
|
|
8640
|
+
self._RequestId = params.get("RequestId")
|
|
8641
|
+
|
|
8642
|
+
|
|
8643
|
+
class DescribeDeviceCountSummaryRequest(AbstractModel):
|
|
8644
|
+
r"""DescribeDeviceCountSummary请求参数结构体
|
|
8645
|
+
|
|
8646
|
+
"""
|
|
8647
|
+
|
|
8648
|
+
|
|
8649
|
+
class DescribeDeviceCountSummaryResponse(AbstractModel):
|
|
8650
|
+
r"""DescribeDeviceCountSummary返回参数结构体
|
|
8651
|
+
|
|
8652
|
+
"""
|
|
8653
|
+
|
|
8654
|
+
def __init__(self):
|
|
8655
|
+
r"""
|
|
8656
|
+
:param _DeviceCountSet: 各种类型的资产总数
|
|
8657
|
+
:type DeviceCountSet: list of DeviceCount
|
|
8658
|
+
:param _AppAssetCountSet: 各种类型应用资产总数
|
|
8659
|
+
:type AppAssetCountSet: list of DeviceCount
|
|
8660
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
8661
|
+
:type RequestId: str
|
|
8662
|
+
"""
|
|
8663
|
+
self._DeviceCountSet = None
|
|
8664
|
+
self._AppAssetCountSet = None
|
|
8665
|
+
self._RequestId = None
|
|
8666
|
+
|
|
8667
|
+
@property
|
|
8668
|
+
def DeviceCountSet(self):
|
|
8669
|
+
r"""各种类型的资产总数
|
|
8670
|
+
:rtype: list of DeviceCount
|
|
8671
|
+
"""
|
|
8672
|
+
return self._DeviceCountSet
|
|
8673
|
+
|
|
8674
|
+
@DeviceCountSet.setter
|
|
8675
|
+
def DeviceCountSet(self, DeviceCountSet):
|
|
8676
|
+
self._DeviceCountSet = DeviceCountSet
|
|
8677
|
+
|
|
8678
|
+
@property
|
|
8679
|
+
def AppAssetCountSet(self):
|
|
8680
|
+
r"""各种类型应用资产总数
|
|
8681
|
+
:rtype: list of DeviceCount
|
|
8682
|
+
"""
|
|
8683
|
+
return self._AppAssetCountSet
|
|
8684
|
+
|
|
8685
|
+
@AppAssetCountSet.setter
|
|
8686
|
+
def AppAssetCountSet(self, AppAssetCountSet):
|
|
8687
|
+
self._AppAssetCountSet = AppAssetCountSet
|
|
8688
|
+
|
|
8689
|
+
@property
|
|
8690
|
+
def RequestId(self):
|
|
8691
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
8692
|
+
:rtype: str
|
|
8693
|
+
"""
|
|
8694
|
+
return self._RequestId
|
|
8695
|
+
|
|
8696
|
+
@RequestId.setter
|
|
8697
|
+
def RequestId(self, RequestId):
|
|
8698
|
+
self._RequestId = RequestId
|
|
8699
|
+
|
|
8700
|
+
|
|
8701
|
+
def _deserialize(self, params):
|
|
8702
|
+
if params.get("DeviceCountSet") is not None:
|
|
8703
|
+
self._DeviceCountSet = []
|
|
8704
|
+
for item in params.get("DeviceCountSet"):
|
|
8705
|
+
obj = DeviceCount()
|
|
8706
|
+
obj._deserialize(item)
|
|
8707
|
+
self._DeviceCountSet.append(obj)
|
|
8708
|
+
if params.get("AppAssetCountSet") is not None:
|
|
8709
|
+
self._AppAssetCountSet = []
|
|
8710
|
+
for item in params.get("AppAssetCountSet"):
|
|
8711
|
+
obj = DeviceCount()
|
|
8712
|
+
obj._deserialize(item)
|
|
8713
|
+
self._AppAssetCountSet.append(obj)
|
|
8714
|
+
self._RequestId = params.get("RequestId")
|
|
8715
|
+
|
|
8716
|
+
|
|
8504
8717
|
class DescribeDeviceGroupMembersRequest(AbstractModel):
|
|
8505
8718
|
r"""DescribeDeviceGroupMembers请求参数结构体
|
|
8506
8719
|
|
|
@@ -12051,6 +12264,57 @@ class DeviceAccount(AbstractModel):
|
|
|
12051
12264
|
|
|
12052
12265
|
|
|
12053
12266
|
|
|
12267
|
+
class DeviceCount(AbstractModel):
|
|
12268
|
+
r"""资产数目
|
|
12269
|
+
|
|
12270
|
+
"""
|
|
12271
|
+
|
|
12272
|
+
def __init__(self):
|
|
12273
|
+
r"""
|
|
12274
|
+
:param _Kind: 资产类型
|
|
12275
|
+
:type Kind: int
|
|
12276
|
+
:param _Count: 资产数目
|
|
12277
|
+
:type Count: int
|
|
12278
|
+
"""
|
|
12279
|
+
self._Kind = None
|
|
12280
|
+
self._Count = None
|
|
12281
|
+
|
|
12282
|
+
@property
|
|
12283
|
+
def Kind(self):
|
|
12284
|
+
r"""资产类型
|
|
12285
|
+
:rtype: int
|
|
12286
|
+
"""
|
|
12287
|
+
return self._Kind
|
|
12288
|
+
|
|
12289
|
+
@Kind.setter
|
|
12290
|
+
def Kind(self, Kind):
|
|
12291
|
+
self._Kind = Kind
|
|
12292
|
+
|
|
12293
|
+
@property
|
|
12294
|
+
def Count(self):
|
|
12295
|
+
r"""资产数目
|
|
12296
|
+
:rtype: int
|
|
12297
|
+
"""
|
|
12298
|
+
return self._Count
|
|
12299
|
+
|
|
12300
|
+
@Count.setter
|
|
12301
|
+
def Count(self, Count):
|
|
12302
|
+
self._Count = Count
|
|
12303
|
+
|
|
12304
|
+
|
|
12305
|
+
def _deserialize(self, params):
|
|
12306
|
+
self._Kind = params.get("Kind")
|
|
12307
|
+
self._Count = params.get("Count")
|
|
12308
|
+
memeber_set = set(params.keys())
|
|
12309
|
+
for name, value in vars(self).items():
|
|
12310
|
+
property_name = name[1:]
|
|
12311
|
+
if property_name in memeber_set:
|
|
12312
|
+
memeber_set.remove(property_name)
|
|
12313
|
+
if len(memeber_set) > 0:
|
|
12314
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
12315
|
+
|
|
12316
|
+
|
|
12317
|
+
|
|
12054
12318
|
class DisableClientTcpAccessRequest(AbstractModel):
|
|
12055
12319
|
r"""DisableClientTcpAccess请求参数结构体
|
|
12056
12320
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-bh
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.61
|
|
4
4
|
Summary: Tencent Cloud Bh SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.61
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.61
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.59
|
|
File without changes
|
|
File without changes
|
{tencentcloud_sdk_python_bh-3.1.59 → tencentcloud_sdk_python_bh-3.1.61}/tencentcloud/bh/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|