tencentcloud-sdk-python-bh 3.1.13__tar.gz → 3.1.17__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.
Files changed (17) hide show
  1. {tencentcloud_sdk_python_bh-3.1.13 → tencentcloud_sdk_python_bh-3.1.17}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_bh-3.1.13 → tencentcloud_sdk_python_bh-3.1.17}/setup.py +1 -1
  3. {tencentcloud_sdk_python_bh-3.1.13 → tencentcloud_sdk_python_bh-3.1.17}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_bh-3.1.13 → tencentcloud_sdk_python_bh-3.1.17}/tencentcloud/bh/v20230418/models.py +83 -0
  5. {tencentcloud_sdk_python_bh-3.1.13 → tencentcloud_sdk_python_bh-3.1.17}/tencentcloud_sdk_python_bh.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_bh-3.1.17/tencentcloud_sdk_python_bh.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_bh-3.1.13/tencentcloud_sdk_python_bh.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_bh-3.1.13 → tencentcloud_sdk_python_bh-3.1.17}/README.rst +0 -0
  9. {tencentcloud_sdk_python_bh-3.1.13 → tencentcloud_sdk_python_bh-3.1.17}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_bh-3.1.13 → tencentcloud_sdk_python_bh-3.1.17}/tencentcloud/bh/__init__.py +0 -0
  11. {tencentcloud_sdk_python_bh-3.1.13 → tencentcloud_sdk_python_bh-3.1.17}/tencentcloud/bh/v20230418/__init__.py +0 -0
  12. {tencentcloud_sdk_python_bh-3.1.13 → tencentcloud_sdk_python_bh-3.1.17}/tencentcloud/bh/v20230418/bh_client.py +0 -0
  13. {tencentcloud_sdk_python_bh-3.1.13 → tencentcloud_sdk_python_bh-3.1.17}/tencentcloud/bh/v20230418/bh_client_async.py +0 -0
  14. {tencentcloud_sdk_python_bh-3.1.13 → tencentcloud_sdk_python_bh-3.1.17}/tencentcloud/bh/v20230418/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_bh-3.1.13 → tencentcloud_sdk_python_bh-3.1.17}/tencentcloud_sdk_python_bh.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_bh-3.1.13 → tencentcloud_sdk_python_bh-3.1.17}/tencentcloud_sdk_python_bh.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_bh-3.1.13 → tencentcloud_sdk_python_bh-3.1.17}/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.13
3
+ Version: 3.1.17
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.13
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.17
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.13,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.17,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Bh SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.13'
17
+ __version__ = '3.1.17'
@@ -12458,6 +12458,57 @@ class EnableIntranetAccessResponse(AbstractModel):
12458
12458
  self._RequestId = params.get("RequestId")
12459
12459
 
12460
12460
 
12461
+ class EnvInternetAccessSetting(AbstractModel):
12462
+ r"""大区环境网络配置
12463
+
12464
+ """
12465
+
12466
+ def __init__(self):
12467
+ r"""
12468
+ :param _DisableExternalAccess: true:不能访问公网
12469
+ :type DisableExternalAccess: bool
12470
+ :param _DisableDownloadDataAcl: true:不能创建数据下载权限
12471
+ :type DisableDownloadDataAcl: bool
12472
+ """
12473
+ self._DisableExternalAccess = None
12474
+ self._DisableDownloadDataAcl = None
12475
+
12476
+ @property
12477
+ def DisableExternalAccess(self):
12478
+ r"""true:不能访问公网
12479
+ :rtype: bool
12480
+ """
12481
+ return self._DisableExternalAccess
12482
+
12483
+ @DisableExternalAccess.setter
12484
+ def DisableExternalAccess(self, DisableExternalAccess):
12485
+ self._DisableExternalAccess = DisableExternalAccess
12486
+
12487
+ @property
12488
+ def DisableDownloadDataAcl(self):
12489
+ r"""true:不能创建数据下载权限
12490
+ :rtype: bool
12491
+ """
12492
+ return self._DisableDownloadDataAcl
12493
+
12494
+ @DisableDownloadDataAcl.setter
12495
+ def DisableDownloadDataAcl(self, DisableDownloadDataAcl):
12496
+ self._DisableDownloadDataAcl = DisableDownloadDataAcl
12497
+
12498
+
12499
+ def _deserialize(self, params):
12500
+ self._DisableExternalAccess = params.get("DisableExternalAccess")
12501
+ self._DisableDownloadDataAcl = params.get("DisableDownloadDataAcl")
12502
+ memeber_set = set(params.keys())
12503
+ for name, value in vars(self).items():
12504
+ property_name = name[1:]
12505
+ if property_name in memeber_set:
12506
+ memeber_set.remove(property_name)
12507
+ if len(memeber_set) > 0:
12508
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
12509
+
12510
+
12511
+
12461
12512
  class ExternalDevice(AbstractModel):
12462
12513
  r"""主机参数,导入外部主机时使用
12463
12514
 
@@ -16861,6 +16912,8 @@ class Resource(AbstractModel):
16861
16912
  :type IntranetPrivateIpSet: list of str
16862
16913
  :param _IntranetVpcId: 开通内网访问的vpc
16863
16914
  :type IntranetVpcId: str
16915
+ :param _IntranetSubnetId: 开通内网访问的subnetId
16916
+ :type IntranetSubnetId: str
16864
16917
  :param _IntranetVpcCidr: 开通内网访问vpc的网段
16865
16918
  :type IntranetVpcCidr: str
16866
16919
  :param _DomainName: 堡垒机内网ip自定义域名
@@ -16929,6 +16982,7 @@ class Resource(AbstractModel):
16929
16982
  self._IntranetAccess = None
16930
16983
  self._IntranetPrivateIpSet = None
16931
16984
  self._IntranetVpcId = None
16985
+ self._IntranetSubnetId = None
16932
16986
  self._IntranetVpcCidr = None
16933
16987
  self._DomainName = None
16934
16988
  self._ShareClb = None
@@ -17373,6 +17427,17 @@ class Resource(AbstractModel):
17373
17427
  def IntranetVpcId(self, IntranetVpcId):
17374
17428
  self._IntranetVpcId = IntranetVpcId
17375
17429
 
17430
+ @property
17431
+ def IntranetSubnetId(self):
17432
+ r"""开通内网访问的subnetId
17433
+ :rtype: str
17434
+ """
17435
+ return self._IntranetSubnetId
17436
+
17437
+ @IntranetSubnetId.setter
17438
+ def IntranetSubnetId(self, IntranetSubnetId):
17439
+ self._IntranetSubnetId = IntranetSubnetId
17440
+
17376
17441
  @property
17377
17442
  def IntranetVpcCidr(self):
17378
17443
  r"""开通内网访问vpc的网段
@@ -17573,6 +17638,7 @@ class Resource(AbstractModel):
17573
17638
  self._IntranetAccess = params.get("IntranetAccess")
17574
17639
  self._IntranetPrivateIpSet = params.get("IntranetPrivateIpSet")
17575
17640
  self._IntranetVpcId = params.get("IntranetVpcId")
17641
+ self._IntranetSubnetId = params.get("IntranetSubnetId")
17576
17642
  self._IntranetVpcCidr = params.get("IntranetVpcCidr")
17577
17643
  self._DomainName = params.get("DomainName")
17578
17644
  self._ShareClb = params.get("ShareClb")
@@ -20839,9 +20905,12 @@ class SecuritySetting(AbstractModel):
20839
20905
  :type AuthModeGM: :class:`tencentcloud.bh.v20230418.models.AuthModeSetting`
20840
20906
  :param _Reconnection: 资产重连次数
20841
20907
  :type Reconnection: :class:`tencentcloud.bh.v20230418.models.ReconnectionSetting`
20908
+ :param _EnvInternetAccess: 大区环境网络设置
20909
+ :type EnvInternetAccess: :class:`tencentcloud.bh.v20230418.models.EnvInternetAccessSetting`
20842
20910
  """
20843
20911
  self._AuthModeGM = None
20844
20912
  self._Reconnection = None
20913
+ self._EnvInternetAccess = None
20845
20914
 
20846
20915
  @property
20847
20916
  def AuthModeGM(self):
@@ -20865,6 +20934,17 @@ class SecuritySetting(AbstractModel):
20865
20934
  def Reconnection(self, Reconnection):
20866
20935
  self._Reconnection = Reconnection
20867
20936
 
20937
+ @property
20938
+ def EnvInternetAccess(self):
20939
+ r"""大区环境网络设置
20940
+ :rtype: :class:`tencentcloud.bh.v20230418.models.EnvInternetAccessSetting`
20941
+ """
20942
+ return self._EnvInternetAccess
20943
+
20944
+ @EnvInternetAccess.setter
20945
+ def EnvInternetAccess(self, EnvInternetAccess):
20946
+ self._EnvInternetAccess = EnvInternetAccess
20947
+
20868
20948
 
20869
20949
  def _deserialize(self, params):
20870
20950
  if params.get("AuthModeGM") is not None:
@@ -20873,6 +20953,9 @@ class SecuritySetting(AbstractModel):
20873
20953
  if params.get("Reconnection") is not None:
20874
20954
  self._Reconnection = ReconnectionSetting()
20875
20955
  self._Reconnection._deserialize(params.get("Reconnection"))
20956
+ if params.get("EnvInternetAccess") is not None:
20957
+ self._EnvInternetAccess = EnvInternetAccessSetting()
20958
+ self._EnvInternetAccess._deserialize(params.get("EnvInternetAccess"))
20876
20959
  memeber_set = set(params.keys())
20877
20960
  for name, value in vars(self).items():
20878
20961
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-bh
3
- Version: 3.1.13
3
+ Version: 3.1.17
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.13
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.17
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.17
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.13