tencentcloud-sdk-python-bh 3.1.67__tar.gz → 3.1.92__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.67 → tencentcloud_sdk_python_bh-3.1.92}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_bh-3.1.67 → tencentcloud_sdk_python_bh-3.1.92}/setup.py +1 -1
  3. {tencentcloud_sdk_python_bh-3.1.67 → tencentcloud_sdk_python_bh-3.1.92}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_bh-3.1.67 → tencentcloud_sdk_python_bh-3.1.92}/tencentcloud/bh/v20230418/bh_client.py +23 -0
  5. {tencentcloud_sdk_python_bh-3.1.67 → tencentcloud_sdk_python_bh-3.1.92}/tencentcloud/bh/v20230418/bh_client_async.py +18 -0
  6. {tencentcloud_sdk_python_bh-3.1.67 → tencentcloud_sdk_python_bh-3.1.92}/tencentcloud/bh/v20230418/models.py +136 -42
  7. {tencentcloud_sdk_python_bh-3.1.67 → tencentcloud_sdk_python_bh-3.1.92}/tencentcloud_sdk_python_bh.egg-info/PKG-INFO +2 -2
  8. tencentcloud_sdk_python_bh-3.1.92/tencentcloud_sdk_python_bh.egg-info/requires.txt +1 -0
  9. tencentcloud_sdk_python_bh-3.1.67/tencentcloud_sdk_python_bh.egg-info/requires.txt +0 -1
  10. {tencentcloud_sdk_python_bh-3.1.67 → tencentcloud_sdk_python_bh-3.1.92}/README.rst +0 -0
  11. {tencentcloud_sdk_python_bh-3.1.67 → tencentcloud_sdk_python_bh-3.1.92}/setup.cfg +0 -0
  12. {tencentcloud_sdk_python_bh-3.1.67 → tencentcloud_sdk_python_bh-3.1.92}/tencentcloud/bh/__init__.py +0 -0
  13. {tencentcloud_sdk_python_bh-3.1.67 → tencentcloud_sdk_python_bh-3.1.92}/tencentcloud/bh/v20230418/__init__.py +0 -0
  14. {tencentcloud_sdk_python_bh-3.1.67 → tencentcloud_sdk_python_bh-3.1.92}/tencentcloud/bh/v20230418/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_bh-3.1.67 → tencentcloud_sdk_python_bh-3.1.92}/tencentcloud_sdk_python_bh.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_bh-3.1.67 → tencentcloud_sdk_python_bh-3.1.92}/tencentcloud_sdk_python_bh.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_bh-3.1.67 → tencentcloud_sdk_python_bh-3.1.92}/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.67
3
+ Version: 3.1.92
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.67
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.92
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.67,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.92,<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.67'
17
+ __version__ = '3.1.92'
@@ -95,6 +95,29 @@ class BhClient(AbstractClient):
95
95
  raise TencentCloudSDKException(type(e).__name__, str(e))
96
96
 
97
97
 
98
+ def BindDeviceAccountKubeconfig(self, request):
99
+ r"""绑定容器账号凭据
100
+
101
+ :param request: Request instance for BindDeviceAccountKubeconfig.
102
+ :type request: :class:`tencentcloud.bh.v20230418.models.BindDeviceAccountKubeconfigRequest`
103
+ :rtype: :class:`tencentcloud.bh.v20230418.models.BindDeviceAccountKubeconfigResponse`
104
+
105
+ """
106
+ try:
107
+ params = request._serialize()
108
+ headers = request.headers
109
+ body = self.call("BindDeviceAccountKubeconfig", params, headers=headers)
110
+ response = json.loads(body)
111
+ model = models.BindDeviceAccountKubeconfigResponse()
112
+ model._deserialize(response["Response"])
113
+ return model
114
+ except Exception as e:
115
+ if isinstance(e, TencentCloudSDKException):
116
+ raise
117
+ else:
118
+ raise TencentCloudSDKException(type(e).__name__, str(e))
119
+
120
+
98
121
  def BindDeviceAccountPassword(self, request):
99
122
  r"""绑定主机账号密码
100
123
 
@@ -79,6 +79,24 @@ class BhClient(AbstractClient):
79
79
 
80
80
  return await self.call_and_deserialize(**kwargs)
81
81
 
82
+ async def BindDeviceAccountKubeconfig(
83
+ self,
84
+ request: models.BindDeviceAccountKubeconfigRequest,
85
+ opts: Dict = None,
86
+ ) -> models.BindDeviceAccountKubeconfigResponse:
87
+ """
88
+ 绑定容器账号凭据
89
+ """
90
+
91
+ kwargs = {}
92
+ kwargs["action"] = "BindDeviceAccountKubeconfig"
93
+ kwargs["params"] = request._serialize()
94
+ kwargs["resp_cls"] = models.BindDeviceAccountKubeconfigResponse
95
+ kwargs["headers"] = request.headers
96
+ kwargs["opts"] = opts or {}
97
+
98
+ return await self.call_and_deserialize(**kwargs)
99
+
82
100
  async def BindDeviceAccountPassword(
83
101
  self,
84
102
  request: models.BindDeviceAccountPasswordRequest,
@@ -2004,6 +2004,100 @@ class AuthModeSetting(AbstractModel):
2004
2004
 
2005
2005
 
2006
2006
 
2007
+ class BindDeviceAccountKubeconfigRequest(AbstractModel):
2008
+ r"""BindDeviceAccountKubeconfig请求参数结构体
2009
+
2010
+ """
2011
+
2012
+ def __init__(self):
2013
+ r"""
2014
+ :param _Id: 容器账号Id
2015
+ :type Id: int
2016
+ :param _Kubeconfig: 容器账号凭据
2017
+ :type Kubeconfig: str
2018
+ :param _ManageDimension: 托管维度。1-集群
2019
+ :type ManageDimension: int
2020
+ """
2021
+ self._Id = None
2022
+ self._Kubeconfig = None
2023
+ self._ManageDimension = None
2024
+
2025
+ @property
2026
+ def Id(self):
2027
+ r"""容器账号Id
2028
+ :rtype: int
2029
+ """
2030
+ return self._Id
2031
+
2032
+ @Id.setter
2033
+ def Id(self, Id):
2034
+ self._Id = Id
2035
+
2036
+ @property
2037
+ def Kubeconfig(self):
2038
+ r"""容器账号凭据
2039
+ :rtype: str
2040
+ """
2041
+ return self._Kubeconfig
2042
+
2043
+ @Kubeconfig.setter
2044
+ def Kubeconfig(self, Kubeconfig):
2045
+ self._Kubeconfig = Kubeconfig
2046
+
2047
+ @property
2048
+ def ManageDimension(self):
2049
+ r"""托管维度。1-集群
2050
+ :rtype: int
2051
+ """
2052
+ return self._ManageDimension
2053
+
2054
+ @ManageDimension.setter
2055
+ def ManageDimension(self, ManageDimension):
2056
+ self._ManageDimension = ManageDimension
2057
+
2058
+
2059
+ def _deserialize(self, params):
2060
+ self._Id = params.get("Id")
2061
+ self._Kubeconfig = params.get("Kubeconfig")
2062
+ self._ManageDimension = params.get("ManageDimension")
2063
+ memeber_set = set(params.keys())
2064
+ for name, value in vars(self).items():
2065
+ property_name = name[1:]
2066
+ if property_name in memeber_set:
2067
+ memeber_set.remove(property_name)
2068
+ if len(memeber_set) > 0:
2069
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
2070
+
2071
+
2072
+
2073
+ class BindDeviceAccountKubeconfigResponse(AbstractModel):
2074
+ r"""BindDeviceAccountKubeconfig返回参数结构体
2075
+
2076
+ """
2077
+
2078
+ def __init__(self):
2079
+ r"""
2080
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2081
+ :type RequestId: str
2082
+ """
2083
+ self._RequestId = None
2084
+
2085
+ @property
2086
+ def RequestId(self):
2087
+ r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2088
+ :rtype: str
2089
+ """
2090
+ return self._RequestId
2091
+
2092
+ @RequestId.setter
2093
+ def RequestId(self, RequestId):
2094
+ self._RequestId = RequestId
2095
+
2096
+
2097
+ def _deserialize(self, params):
2098
+ self._RequestId = params.get("RequestId")
2099
+
2100
+
2007
2101
  class BindDeviceAccountPasswordRequest(AbstractModel):
2008
2102
  r"""BindDeviceAccountPassword请求参数结构体
2009
2103
 
@@ -14457,21 +14551,21 @@ class ModifyAclRequest(AbstractModel):
14457
14551
  :type AllowAnyAccount: bool
14458
14552
  :param _Id: 访问权限ID
14459
14553
  :type Id: int
14460
- :param _AllowClipFileUp: 是否开启剪贴板文件上行
14554
+ :param _AllowClipFileUp: 是否开启剪贴板文件上行,不传时默认为false
14461
14555
  :type AllowClipFileUp: bool
14462
- :param _AllowClipFileDown: 是否开启剪贴板文件下行
14556
+ :param _AllowClipFileDown: 是否开启剪贴板文件下行,不传时默认为false
14463
14557
  :type AllowClipFileDown: bool
14464
- :param _AllowClipTextUp: 是否开启剪贴板文本(含图片)上行
14558
+ :param _AllowClipTextUp: 是否开启剪贴板文本(含图片)上行,不传时默认为false
14465
14559
  :type AllowClipTextUp: bool
14466
- :param _AllowClipTextDown: 是否开启剪贴板文本(含图片)下行
14560
+ :param _AllowClipTextDown: 是否开启剪贴板文本(含图片)下行,不传时默认为false
14467
14561
  :type AllowClipTextDown: bool
14468
- :param _AllowFileUp: 是否开启文件传输上传
14562
+ :param _AllowFileUp: 是否开启文件传输上传,不传时默认为false
14469
14563
  :type AllowFileUp: bool
14470
- :param _MaxFileUpSize: 文件传输上传大小限制(预留参数,目前暂未使用)
14564
+ :param _MaxFileUpSize: 文件传输上传大小限制(预留参数,目前暂未使用),不传时默认为0
14471
14565
  :type MaxFileUpSize: int
14472
- :param _AllowFileDown: 是否开启文件传输下载
14566
+ :param _AllowFileDown: 是否开启文件传输下载,不传时默认为false
14473
14567
  :type AllowFileDown: bool
14474
- :param _MaxFileDownSize: 文件传输下载大小限制(预留参数,目前暂未使用)
14568
+ :param _MaxFileDownSize: 文件传输下载大小限制(预留参数,目前暂未使用),不传时默认为0
14475
14569
  :type MaxFileDownSize: int
14476
14570
  :param _UserIdSet: 关联的用户ID
14477
14571
  :type UserIdSet: list of int non-negative
@@ -14479,25 +14573,25 @@ class ModifyAclRequest(AbstractModel):
14479
14573
  :type UserGroupIdSet: list of int non-negative
14480
14574
  :param _DeviceIdSet: 关联的资产ID
14481
14575
  :type DeviceIdSet: list of int non-negative
14482
- :param _AppAssetIdSet: 关联的应用资产ID集合
14576
+ :param _AppAssetIdSet: 关联的应用资产ID集合,不传时表示不选择任何应用资产
14483
14577
  :type AppAssetIdSet: list of int non-negative
14484
- :param _DeviceGroupIdSet: 关联的资产组ID
14578
+ :param _DeviceGroupIdSet: 关联的资产组ID,不传时表示不选择任何资产组
14485
14579
  :type DeviceGroupIdSet: list of int non-negative
14486
- :param _AccountSet: 关联的账号
14580
+ :param _AccountSet: 关联的资产账号,不传时表示不选择任何资产账号
14487
14581
  :type AccountSet: list of str
14488
- :param _CmdTemplateIdSet: 关联的高危命令模板ID
14582
+ :param _CmdTemplateIdSet: 关联的高危命令模板ID,不传时表示不选择任何模板
14489
14583
  :type CmdTemplateIdSet: list of int non-negative
14490
- :param _ACTemplateIdSet: 关联高危DB模板ID
14584
+ :param _ACTemplateIdSet: 关联高危DB模板ID,不传时表示不选择任何模板
14491
14585
  :type ACTemplateIdSet: list of str
14492
- :param _AllowDiskFileUp: 是否开启 RDP 磁盘映射文件上传
14586
+ :param _AllowDiskFileUp: 是否开启 RDP 磁盘映射文件上传,不传时默认为false
14493
14587
  :type AllowDiskFileUp: bool
14494
- :param _AllowDiskFileDown: 是否开启 RDP 磁盘映射文件下载
14588
+ :param _AllowDiskFileDown: 是否开启 RDP 磁盘映射文件下载,不传时默认为false
14495
14589
  :type AllowDiskFileDown: bool
14496
- :param _AllowShellFileUp: 是否开启rz sz文件上传
14590
+ :param _AllowShellFileUp: 是否开启rz sz文件上传,不传时默认为false
14497
14591
  :type AllowShellFileUp: bool
14498
- :param _AllowShellFileDown: 是否开启rz sz文件下载
14592
+ :param _AllowShellFileDown: 是否开启rz sz文件下载,不传时默认为false
14499
14593
  :type AllowShellFileDown: bool
14500
- :param _AllowFileDel: 是否开启 SFTP 文件删除
14594
+ :param _AllowFileDel: 是否开启 SFTP 文件删除,不传时默认为false
14501
14595
  :type AllowFileDel: bool
14502
14596
  :param _ValidateFrom: 访问权限生效时间,如:"2021-09-22T00:00:00+00:00"
14503
14597
  生效、失效时间不填则访问权限长期有效
@@ -14507,11 +14601,11 @@ class ModifyAclRequest(AbstractModel):
14507
14601
  :type ValidateTo: str
14508
14602
  :param _DepartmentId: 权限所属部门的ID,如:1.2.3
14509
14603
  :type DepartmentId: str
14510
- :param _AllowAccessCredential: 是否允许使用访问串
14604
+ :param _AllowAccessCredential: 是否允许使用访问串,不传时默认为true
14511
14605
  :type AllowAccessCredential: bool
14512
- :param _AllowKeyboardLogger: 是否允许键盘记录
14606
+ :param _AllowKeyboardLogger: 是否允许键盘记录,不传时默认为false
14513
14607
  :type AllowKeyboardLogger: bool
14514
- :param _MaxAccessCredentialDuration: 访问串有效期最大时长,秒数,允许使用访问串时需大于0且必须为86400整数倍
14608
+ :param _MaxAccessCredentialDuration: 访问串有效期最大时长,秒数,允许使用访问串时需大于0且必须为86400整数倍,不传时默认为9999天对应的秒数
14515
14609
  :type MaxAccessCredentialDuration: int
14516
14610
  """
14517
14611
  self._Name = None
@@ -14592,7 +14686,7 @@ class ModifyAclRequest(AbstractModel):
14592
14686
 
14593
14687
  @property
14594
14688
  def AllowClipFileUp(self):
14595
- r"""是否开启剪贴板文件上行
14689
+ r"""是否开启剪贴板文件上行,不传时默认为false
14596
14690
  :rtype: bool
14597
14691
  """
14598
14692
  return self._AllowClipFileUp
@@ -14603,7 +14697,7 @@ class ModifyAclRequest(AbstractModel):
14603
14697
 
14604
14698
  @property
14605
14699
  def AllowClipFileDown(self):
14606
- r"""是否开启剪贴板文件下行
14700
+ r"""是否开启剪贴板文件下行,不传时默认为false
14607
14701
  :rtype: bool
14608
14702
  """
14609
14703
  return self._AllowClipFileDown
@@ -14614,7 +14708,7 @@ class ModifyAclRequest(AbstractModel):
14614
14708
 
14615
14709
  @property
14616
14710
  def AllowClipTextUp(self):
14617
- r"""是否开启剪贴板文本(含图片)上行
14711
+ r"""是否开启剪贴板文本(含图片)上行,不传时默认为false
14618
14712
  :rtype: bool
14619
14713
  """
14620
14714
  return self._AllowClipTextUp
@@ -14625,7 +14719,7 @@ class ModifyAclRequest(AbstractModel):
14625
14719
 
14626
14720
  @property
14627
14721
  def AllowClipTextDown(self):
14628
- r"""是否开启剪贴板文本(含图片)下行
14722
+ r"""是否开启剪贴板文本(含图片)下行,不传时默认为false
14629
14723
  :rtype: bool
14630
14724
  """
14631
14725
  return self._AllowClipTextDown
@@ -14636,7 +14730,7 @@ class ModifyAclRequest(AbstractModel):
14636
14730
 
14637
14731
  @property
14638
14732
  def AllowFileUp(self):
14639
- r"""是否开启文件传输上传
14733
+ r"""是否开启文件传输上传,不传时默认为false
14640
14734
  :rtype: bool
14641
14735
  """
14642
14736
  return self._AllowFileUp
@@ -14647,7 +14741,7 @@ class ModifyAclRequest(AbstractModel):
14647
14741
 
14648
14742
  @property
14649
14743
  def MaxFileUpSize(self):
14650
- r"""文件传输上传大小限制(预留参数,目前暂未使用)
14744
+ r"""文件传输上传大小限制(预留参数,目前暂未使用),不传时默认为0
14651
14745
  :rtype: int
14652
14746
  """
14653
14747
  return self._MaxFileUpSize
@@ -14658,7 +14752,7 @@ class ModifyAclRequest(AbstractModel):
14658
14752
 
14659
14753
  @property
14660
14754
  def AllowFileDown(self):
14661
- r"""是否开启文件传输下载
14755
+ r"""是否开启文件传输下载,不传时默认为false
14662
14756
  :rtype: bool
14663
14757
  """
14664
14758
  return self._AllowFileDown
@@ -14669,7 +14763,7 @@ class ModifyAclRequest(AbstractModel):
14669
14763
 
14670
14764
  @property
14671
14765
  def MaxFileDownSize(self):
14672
- r"""文件传输下载大小限制(预留参数,目前暂未使用)
14766
+ r"""文件传输下载大小限制(预留参数,目前暂未使用),不传时默认为0
14673
14767
  :rtype: int
14674
14768
  """
14675
14769
  return self._MaxFileDownSize
@@ -14713,7 +14807,7 @@ class ModifyAclRequest(AbstractModel):
14713
14807
 
14714
14808
  @property
14715
14809
  def AppAssetIdSet(self):
14716
- r"""关联的应用资产ID集合
14810
+ r"""关联的应用资产ID集合,不传时表示不选择任何应用资产
14717
14811
  :rtype: list of int non-negative
14718
14812
  """
14719
14813
  return self._AppAssetIdSet
@@ -14724,7 +14818,7 @@ class ModifyAclRequest(AbstractModel):
14724
14818
 
14725
14819
  @property
14726
14820
  def DeviceGroupIdSet(self):
14727
- r"""关联的资产组ID
14821
+ r"""关联的资产组ID,不传时表示不选择任何资产组
14728
14822
  :rtype: list of int non-negative
14729
14823
  """
14730
14824
  return self._DeviceGroupIdSet
@@ -14735,7 +14829,7 @@ class ModifyAclRequest(AbstractModel):
14735
14829
 
14736
14830
  @property
14737
14831
  def AccountSet(self):
14738
- r"""关联的账号
14832
+ r"""关联的资产账号,不传时表示不选择任何资产账号
14739
14833
  :rtype: list of str
14740
14834
  """
14741
14835
  return self._AccountSet
@@ -14746,7 +14840,7 @@ class ModifyAclRequest(AbstractModel):
14746
14840
 
14747
14841
  @property
14748
14842
  def CmdTemplateIdSet(self):
14749
- r"""关联的高危命令模板ID
14843
+ r"""关联的高危命令模板ID,不传时表示不选择任何模板
14750
14844
  :rtype: list of int non-negative
14751
14845
  """
14752
14846
  return self._CmdTemplateIdSet
@@ -14757,7 +14851,7 @@ class ModifyAclRequest(AbstractModel):
14757
14851
 
14758
14852
  @property
14759
14853
  def ACTemplateIdSet(self):
14760
- r"""关联高危DB模板ID
14854
+ r"""关联高危DB模板ID,不传时表示不选择任何模板
14761
14855
  :rtype: list of str
14762
14856
  """
14763
14857
  return self._ACTemplateIdSet
@@ -14768,7 +14862,7 @@ class ModifyAclRequest(AbstractModel):
14768
14862
 
14769
14863
  @property
14770
14864
  def AllowDiskFileUp(self):
14771
- r"""是否开启 RDP 磁盘映射文件上传
14865
+ r"""是否开启 RDP 磁盘映射文件上传,不传时默认为false
14772
14866
  :rtype: bool
14773
14867
  """
14774
14868
  return self._AllowDiskFileUp
@@ -14779,7 +14873,7 @@ class ModifyAclRequest(AbstractModel):
14779
14873
 
14780
14874
  @property
14781
14875
  def AllowDiskFileDown(self):
14782
- r"""是否开启 RDP 磁盘映射文件下载
14876
+ r"""是否开启 RDP 磁盘映射文件下载,不传时默认为false
14783
14877
  :rtype: bool
14784
14878
  """
14785
14879
  return self._AllowDiskFileDown
@@ -14790,7 +14884,7 @@ class ModifyAclRequest(AbstractModel):
14790
14884
 
14791
14885
  @property
14792
14886
  def AllowShellFileUp(self):
14793
- r"""是否开启rz sz文件上传
14887
+ r"""是否开启rz sz文件上传,不传时默认为false
14794
14888
  :rtype: bool
14795
14889
  """
14796
14890
  return self._AllowShellFileUp
@@ -14801,7 +14895,7 @@ class ModifyAclRequest(AbstractModel):
14801
14895
 
14802
14896
  @property
14803
14897
  def AllowShellFileDown(self):
14804
- r"""是否开启rz sz文件下载
14898
+ r"""是否开启rz sz文件下载,不传时默认为false
14805
14899
  :rtype: bool
14806
14900
  """
14807
14901
  return self._AllowShellFileDown
@@ -14812,7 +14906,7 @@ class ModifyAclRequest(AbstractModel):
14812
14906
 
14813
14907
  @property
14814
14908
  def AllowFileDel(self):
14815
- r"""是否开启 SFTP 文件删除
14909
+ r"""是否开启 SFTP 文件删除,不传时默认为false
14816
14910
  :rtype: bool
14817
14911
  """
14818
14912
  return self._AllowFileDel
@@ -14858,7 +14952,7 @@ class ModifyAclRequest(AbstractModel):
14858
14952
 
14859
14953
  @property
14860
14954
  def AllowAccessCredential(self):
14861
- r"""是否允许使用访问串
14955
+ r"""是否允许使用访问串,不传时默认为true
14862
14956
  :rtype: bool
14863
14957
  """
14864
14958
  return self._AllowAccessCredential
@@ -14869,7 +14963,7 @@ class ModifyAclRequest(AbstractModel):
14869
14963
 
14870
14964
  @property
14871
14965
  def AllowKeyboardLogger(self):
14872
- r"""是否允许键盘记录
14966
+ r"""是否允许键盘记录,不传时默认为false
14873
14967
  :rtype: bool
14874
14968
  """
14875
14969
  return self._AllowKeyboardLogger
@@ -14880,7 +14974,7 @@ class ModifyAclRequest(AbstractModel):
14880
14974
 
14881
14975
  @property
14882
14976
  def MaxAccessCredentialDuration(self):
14883
- r"""访问串有效期最大时长,秒数,允许使用访问串时需大于0且必须为86400整数倍
14977
+ r"""访问串有效期最大时长,秒数,允许使用访问串时需大于0且必须为86400整数倍,不传时默认为9999天对应的秒数
14884
14978
  :rtype: int
14885
14979
  """
14886
14980
  return self._MaxAccessCredentialDuration
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-bh
3
- Version: 3.1.67
3
+ Version: 3.1.92
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.67
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.92
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.92
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.67