tencentcloud-sdk-python 3.0.1378__py2.py3-none-any.whl → 3.0.1380__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.
Files changed (56) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/autoscaling/v20180419/autoscaling_client.py +5 -6
  3. tencentcloud/autoscaling/v20180419/models.py +398 -294
  4. tencentcloud/batch/v20170312/batch_client.py +3 -3
  5. tencentcloud/batch/v20170312/models.py +230 -168
  6. tencentcloud/bh/v20230418/models.py +235 -2
  7. tencentcloud/bi/v20220105/models.py +32 -0
  8. tencentcloud/cbs/v20170312/cbs_client.py +1 -1
  9. tencentcloud/cbs/v20170312/models.py +18 -18
  10. tencentcloud/cdb/v20170320/errorcodes.py +6 -0
  11. tencentcloud/cdb/v20170320/models.py +32 -2
  12. tencentcloud/cfw/v20190904/models.py +24 -24
  13. tencentcloud/clb/v20180317/clb_client.py +7 -7
  14. tencentcloud/clb/v20180317/models.py +57 -47
  15. tencentcloud/cynosdb/v20190107/errorcodes.py +9 -0
  16. tencentcloud/cynosdb/v20190107/models.py +21 -2
  17. tencentcloud/dbbrain/v20210527/dbbrain_client.py +46 -0
  18. tencentcloud/dbbrain/v20210527/models.py +368 -0
  19. tencentcloud/dnspod/v20210323/dnspod_client.py +23 -0
  20. tencentcloud/dnspod/v20210323/models.py +503 -0
  21. tencentcloud/domain/v20180808/errorcodes.py +3 -0
  22. tencentcloud/domain/v20180808/models.py +68 -44
  23. tencentcloud/emr/v20190103/models.py +30 -0
  24. tencentcloud/ess/v20201111/models.py +15 -0
  25. tencentcloud/essbasic/v20210526/models.py +2 -2
  26. tencentcloud/lkeap/v20240522/lkeap_client.py +1 -1
  27. tencentcloud/mps/v20190612/models.py +211 -2
  28. tencentcloud/postgres/v20170312/models.py +12 -83
  29. tencentcloud/postgres/v20170312/postgres_client.py +12 -29
  30. tencentcloud/tbaas/v20180416/models.py +0 -234
  31. tencentcloud/tbaas/v20180416/tbaas_client.py +0 -23
  32. tencentcloud/tcb/v20180608/models.py +4 -4
  33. tencentcloud/tdmq/v20200217/errorcodes.py +33 -0
  34. tencentcloud/teo/v20220901/models.py +589 -92
  35. tencentcloud/teo/v20220901/teo_client.py +23 -0
  36. tencentcloud/thpc/v20211109/models.py +2 -2
  37. tencentcloud/thpc/v20220401/models.py +4 -4
  38. tencentcloud/thpc/v20230321/errorcodes.py +9 -0
  39. tencentcloud/thpc/v20230321/models.py +79 -0
  40. tencentcloud/thpc/v20230321/thpc_client.py +23 -0
  41. tencentcloud/tke/v20180525/models.py +242 -184
  42. tencentcloud/tmt/v20180321/errorcodes.py +3 -0
  43. tencentcloud/tmt/v20180321/models.py +443 -1
  44. tencentcloud/tmt/v20180321/tmt_client.py +28 -0
  45. tencentcloud/trtc/v20190722/trtc_client.py +2 -3
  46. tencentcloud/vpc/v20170312/models.py +162 -118
  47. tencentcloud/vpc/v20170312/vpc_client.py +1 -1
  48. tencentcloud/waf/v20180125/models.py +15 -0
  49. tencentcloud/wedata/v20210820/errorcodes.py +9 -0
  50. tencentcloud/wedata/v20210820/models.py +1839 -161
  51. tencentcloud/wedata/v20210820/wedata_client.py +115 -0
  52. {tencentcloud_sdk_python-3.0.1378.dist-info → tencentcloud_sdk_python-3.0.1380.dist-info}/METADATA +1 -1
  53. {tencentcloud_sdk_python-3.0.1378.dist-info → tencentcloud_sdk_python-3.0.1380.dist-info}/RECORD +56 -56
  54. {tencentcloud_sdk_python-3.0.1378.dist-info → tencentcloud_sdk_python-3.0.1380.dist-info}/LICENSE +0 -0
  55. {tencentcloud_sdk_python-3.0.1378.dist-info → tencentcloud_sdk_python-3.0.1380.dist-info}/WHEEL +0 -0
  56. {tencentcloud_sdk_python-3.0.1378.dist-info → tencentcloud_sdk_python-3.0.1380.dist-info}/top_level.txt +0 -0
@@ -1573,10 +1573,13 @@ class AssetSyncStatus(AbstractModel):
1573
1573
  :type LastStatus: int
1574
1574
  :param _InProcess: 同步任务是否正在进行中
1575
1575
  :type InProcess: bool
1576
+ :param _ErrMsg: 任务错误消息
1577
+ :type ErrMsg: str
1576
1578
  """
1577
1579
  self._LastTime = None
1578
1580
  self._LastStatus = None
1579
1581
  self._InProcess = None
1582
+ self._ErrMsg = None
1580
1583
 
1581
1584
  @property
1582
1585
  def LastTime(self):
@@ -1611,11 +1614,23 @@ class AssetSyncStatus(AbstractModel):
1611
1614
  def InProcess(self, InProcess):
1612
1615
  self._InProcess = InProcess
1613
1616
 
1617
+ @property
1618
+ def ErrMsg(self):
1619
+ """任务错误消息
1620
+ :rtype: str
1621
+ """
1622
+ return self._ErrMsg
1623
+
1624
+ @ErrMsg.setter
1625
+ def ErrMsg(self, ErrMsg):
1626
+ self._ErrMsg = ErrMsg
1627
+
1614
1628
 
1615
1629
  def _deserialize(self, params):
1616
1630
  self._LastTime = params.get("LastTime")
1617
1631
  self._LastStatus = params.get("LastStatus")
1618
1632
  self._InProcess = params.get("InProcess")
1633
+ self._ErrMsg = params.get("ErrMsg")
1619
1634
  memeber_set = set(params.keys())
1620
1635
  for name, value in vars(self).items():
1621
1636
  property_name = name[1:]
@@ -8772,13 +8787,17 @@ class DescribeUsersRequest(AbstractModel):
8772
8787
  :type AuthorizedDeviceIdSet: list of int non-negative
8773
8788
  :param _AuthorizedAppAssetIdSet: 查询具有指定应用资产ID访问权限的用户
8774
8789
  :type AuthorizedAppAssetIdSet: list of int non-negative
8775
- :param _AuthTypeSet: 认证方式,0 - 本地, 1 - LDAP, 2 - OAuth, 不传为全部
8790
+ :param _AuthTypeSet: 认证方式,0 - 本地, 1 - LDAP, 2 - OAuth, 3-ioa 不传为全部
8776
8791
  :type AuthTypeSet: list of int non-negative
8777
8792
  :param _DepartmentId: 部门ID,用于过滤属于某个部门的用户
8778
8793
  :type DepartmentId: str
8779
8794
  :param _Filters: 参数过滤数组
8780
8795
 
8781
8796
  :type Filters: list of Filter
8797
+ :param _IsCamUser: 是否获取cam用户, 0-否,1-是
8798
+ :type IsCamUser: int
8799
+ :param _UserFromSet: 用户来源,0-bh,1-ioa,不传为全部
8800
+ :type UserFromSet: list of int non-negative
8782
8801
  """
8783
8802
  self._IdSet = None
8784
8803
  self._Name = None
@@ -8792,6 +8811,8 @@ class DescribeUsersRequest(AbstractModel):
8792
8811
  self._AuthTypeSet = None
8793
8812
  self._DepartmentId = None
8794
8813
  self._Filters = None
8814
+ self._IsCamUser = None
8815
+ self._UserFromSet = None
8795
8816
 
8796
8817
  @property
8797
8818
  def IdSet(self):
@@ -8895,7 +8916,7 @@ class DescribeUsersRequest(AbstractModel):
8895
8916
 
8896
8917
  @property
8897
8918
  def AuthTypeSet(self):
8898
- """认证方式,0 - 本地, 1 - LDAP, 2 - OAuth, 不传为全部
8919
+ """认证方式,0 - 本地, 1 - LDAP, 2 - OAuth, 3-ioa 不传为全部
8899
8920
  :rtype: list of int non-negative
8900
8921
  """
8901
8922
  return self._AuthTypeSet
@@ -8927,6 +8948,28 @@ class DescribeUsersRequest(AbstractModel):
8927
8948
  def Filters(self, Filters):
8928
8949
  self._Filters = Filters
8929
8950
 
8951
+ @property
8952
+ def IsCamUser(self):
8953
+ """是否获取cam用户, 0-否,1-是
8954
+ :rtype: int
8955
+ """
8956
+ return self._IsCamUser
8957
+
8958
+ @IsCamUser.setter
8959
+ def IsCamUser(self, IsCamUser):
8960
+ self._IsCamUser = IsCamUser
8961
+
8962
+ @property
8963
+ def UserFromSet(self):
8964
+ """用户来源,0-bh,1-ioa,不传为全部
8965
+ :rtype: list of int non-negative
8966
+ """
8967
+ return self._UserFromSet
8968
+
8969
+ @UserFromSet.setter
8970
+ def UserFromSet(self, UserFromSet):
8971
+ self._UserFromSet = UserFromSet
8972
+
8930
8973
 
8931
8974
  def _deserialize(self, params):
8932
8975
  self._IdSet = params.get("IdSet")
@@ -8946,6 +8989,8 @@ class DescribeUsersRequest(AbstractModel):
8946
8989
  obj = Filter()
8947
8990
  obj._deserialize(item)
8948
8991
  self._Filters.append(obj)
8992
+ self._IsCamUser = params.get("IsCamUser")
8993
+ self._UserFromSet = params.get("UserFromSet")
8949
8994
  memeber_set = set(params.keys())
8950
8995
  for name, value in vars(self).items():
8951
8996
  property_name = name[1:]
@@ -9066,6 +9111,8 @@ class Device(AbstractModel):
9066
9111
  :type EnableSSL: int
9067
9112
  :param _SSLCertName: 已上传的SSL证书名称
9068
9113
  :type SSLCertName: str
9114
+ :param _IOAId: IOA侧的资源ID
9115
+ :type IOAId: int
9069
9116
  """
9070
9117
  self._Id = None
9071
9118
  self._InstanceId = None
@@ -9087,6 +9134,7 @@ class Device(AbstractModel):
9087
9134
  self._DomainName = None
9088
9135
  self._EnableSSL = None
9089
9136
  self._SSLCertName = None
9137
+ self._IOAId = None
9090
9138
 
9091
9139
  @property
9092
9140
  def Id(self):
@@ -9308,6 +9356,17 @@ class Device(AbstractModel):
9308
9356
  def SSLCertName(self, SSLCertName):
9309
9357
  self._SSLCertName = SSLCertName
9310
9358
 
9359
+ @property
9360
+ def IOAId(self):
9361
+ """IOA侧的资源ID
9362
+ :rtype: int
9363
+ """
9364
+ return self._IOAId
9365
+
9366
+ @IOAId.setter
9367
+ def IOAId(self, IOAId):
9368
+ self._IOAId = IOAId
9369
+
9311
9370
 
9312
9371
  def _deserialize(self, params):
9313
9372
  self._Id = params.get("Id")
@@ -9339,6 +9398,7 @@ class Device(AbstractModel):
9339
9398
  self._DomainName = params.get("DomainName")
9340
9399
  self._EnableSSL = params.get("EnableSSL")
9341
9400
  self._SSLCertName = params.get("SSLCertName")
9401
+ self._IOAId = params.get("IOAId")
9342
9402
  memeber_set = set(params.keys())
9343
9403
  for name, value in vars(self).items():
9344
9404
  property_name = name[1:]
@@ -9895,6 +9955,102 @@ class Group(AbstractModel):
9895
9955
 
9896
9956
 
9897
9957
 
9958
+ class IOAUserGroup(AbstractModel):
9959
+ """同步过来的ioa用户分组信息
9960
+
9961
+ """
9962
+
9963
+ def __init__(self):
9964
+ r"""
9965
+ :param _OrgId: ioa用户组织id
9966
+ :type OrgId: int
9967
+ :param _OrgName: ioa用户组织名称
9968
+ :type OrgName: str
9969
+ :param _OrgIdPath: ioa用户组织id路径
9970
+ :type OrgIdPath: str
9971
+ :param _OrgNamePath: ioa用户组织名称路径
9972
+ :type OrgNamePath: str
9973
+ :param _Source: ioa关联用户源类型
9974
+ :type Source: int
9975
+ """
9976
+ self._OrgId = None
9977
+ self._OrgName = None
9978
+ self._OrgIdPath = None
9979
+ self._OrgNamePath = None
9980
+ self._Source = None
9981
+
9982
+ @property
9983
+ def OrgId(self):
9984
+ """ioa用户组织id
9985
+ :rtype: int
9986
+ """
9987
+ return self._OrgId
9988
+
9989
+ @OrgId.setter
9990
+ def OrgId(self, OrgId):
9991
+ self._OrgId = OrgId
9992
+
9993
+ @property
9994
+ def OrgName(self):
9995
+ """ioa用户组织名称
9996
+ :rtype: str
9997
+ """
9998
+ return self._OrgName
9999
+
10000
+ @OrgName.setter
10001
+ def OrgName(self, OrgName):
10002
+ self._OrgName = OrgName
10003
+
10004
+ @property
10005
+ def OrgIdPath(self):
10006
+ """ioa用户组织id路径
10007
+ :rtype: str
10008
+ """
10009
+ return self._OrgIdPath
10010
+
10011
+ @OrgIdPath.setter
10012
+ def OrgIdPath(self, OrgIdPath):
10013
+ self._OrgIdPath = OrgIdPath
10014
+
10015
+ @property
10016
+ def OrgNamePath(self):
10017
+ """ioa用户组织名称路径
10018
+ :rtype: str
10019
+ """
10020
+ return self._OrgNamePath
10021
+
10022
+ @OrgNamePath.setter
10023
+ def OrgNamePath(self, OrgNamePath):
10024
+ self._OrgNamePath = OrgNamePath
10025
+
10026
+ @property
10027
+ def Source(self):
10028
+ """ioa关联用户源类型
10029
+ :rtype: int
10030
+ """
10031
+ return self._Source
10032
+
10033
+ @Source.setter
10034
+ def Source(self, Source):
10035
+ self._Source = Source
10036
+
10037
+
10038
+ def _deserialize(self, params):
10039
+ self._OrgId = params.get("OrgId")
10040
+ self._OrgName = params.get("OrgName")
10041
+ self._OrgIdPath = params.get("OrgIdPath")
10042
+ self._OrgNamePath = params.get("OrgNamePath")
10043
+ self._Source = params.get("Source")
10044
+ memeber_set = set(params.keys())
10045
+ for name, value in vars(self).items():
10046
+ property_name = name[1:]
10047
+ if property_name in memeber_set:
10048
+ memeber_set.remove(property_name)
10049
+ if len(memeber_set) > 0:
10050
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
10051
+
10052
+
10053
+
9898
10054
  class ImportExternalDeviceRequest(AbstractModel):
9899
10055
  """ImportExternalDevice请求参数结构体
9900
10056
 
@@ -12731,6 +12887,12 @@ class Resource(AbstractModel):
12731
12887
  :type ClientAccess: int
12732
12888
  :param _ExternalAccess: 1 默认值,外网访问开启,0 外网访问关闭,2 外网访问开通中,3 外网访问关闭中
12733
12889
  :type ExternalAccess: int
12890
+ :param _IOAResource: 0默认值。0-免费版(试用版)ioa,1-付费版ioa
12891
+ :type IOAResource: int
12892
+ :param _PackageIOAUserCount: 零信任堡垒机用户扩展包个数。1个扩展包对应20个用户数
12893
+ :type PackageIOAUserCount: int
12894
+ :param _PackageIOABandwidth: 零信任堡垒机带宽扩展包个数。一个扩展包表示4M带宽
12895
+ :type PackageIOABandwidth: int
12734
12896
  """
12735
12897
  self._ResourceId = None
12736
12898
  self._ApCode = None
@@ -12780,6 +12942,9 @@ class Resource(AbstractModel):
12780
12942
  self._WebAccess = None
12781
12943
  self._ClientAccess = None
12782
12944
  self._ExternalAccess = None
12945
+ self._IOAResource = None
12946
+ self._PackageIOAUserCount = None
12947
+ self._PackageIOABandwidth = None
12783
12948
 
12784
12949
  @property
12785
12950
  def ResourceId(self):
@@ -13309,6 +13474,39 @@ class Resource(AbstractModel):
13309
13474
  def ExternalAccess(self, ExternalAccess):
13310
13475
  self._ExternalAccess = ExternalAccess
13311
13476
 
13477
+ @property
13478
+ def IOAResource(self):
13479
+ """0默认值。0-免费版(试用版)ioa,1-付费版ioa
13480
+ :rtype: int
13481
+ """
13482
+ return self._IOAResource
13483
+
13484
+ @IOAResource.setter
13485
+ def IOAResource(self, IOAResource):
13486
+ self._IOAResource = IOAResource
13487
+
13488
+ @property
13489
+ def PackageIOAUserCount(self):
13490
+ """零信任堡垒机用户扩展包个数。1个扩展包对应20个用户数
13491
+ :rtype: int
13492
+ """
13493
+ return self._PackageIOAUserCount
13494
+
13495
+ @PackageIOAUserCount.setter
13496
+ def PackageIOAUserCount(self, PackageIOAUserCount):
13497
+ self._PackageIOAUserCount = PackageIOAUserCount
13498
+
13499
+ @property
13500
+ def PackageIOABandwidth(self):
13501
+ """ 零信任堡垒机带宽扩展包个数。一个扩展包表示4M带宽
13502
+ :rtype: int
13503
+ """
13504
+ return self._PackageIOABandwidth
13505
+
13506
+ @PackageIOABandwidth.setter
13507
+ def PackageIOABandwidth(self, PackageIOABandwidth):
13508
+ self._PackageIOABandwidth = PackageIOABandwidth
13509
+
13312
13510
 
13313
13511
  def _deserialize(self, params):
13314
13512
  self._ResourceId = params.get("ResourceId")
@@ -13364,6 +13562,9 @@ class Resource(AbstractModel):
13364
13562
  self._WebAccess = params.get("WebAccess")
13365
13563
  self._ClientAccess = params.get("ClientAccess")
13366
13564
  self._ExternalAccess = params.get("ExternalAccess")
13565
+ self._IOAResource = params.get("IOAResource")
13566
+ self._PackageIOAUserCount = params.get("PackageIOAUserCount")
13567
+ self._PackageIOABandwidth = params.get("PackageIOABandwidth")
13367
13568
  memeber_set = set(params.keys())
13368
13569
  for name, value in vars(self).items():
13369
13570
  property_name = name[1:]
@@ -17096,6 +17297,10 @@ class User(AbstractModel):
17096
17297
  :type Status: str
17097
17298
  :param _AclVersion: 权限版本
17098
17299
  :type AclVersion: int
17300
+ :param _UserFrom: 用户来源,0-bh,1-ioa
17301
+ :type UserFrom: int
17302
+ :param _IOAUserGroup: ioa同步过来的用户相关信息
17303
+ :type IOAUserGroup: :class:`tencentcloud.bh.v20230418.models.IOAUserGroup`
17099
17304
  """
17100
17305
  self._UserName = None
17101
17306
  self._RealName = None
@@ -17114,6 +17319,8 @@ class User(AbstractModel):
17114
17319
  self._UKeyStatus = None
17115
17320
  self._Status = None
17116
17321
  self._AclVersion = None
17322
+ self._UserFrom = None
17323
+ self._IOAUserGroup = None
17117
17324
 
17118
17325
  @property
17119
17326
  def UserName(self):
@@ -17304,6 +17511,28 @@ class User(AbstractModel):
17304
17511
  def AclVersion(self, AclVersion):
17305
17512
  self._AclVersion = AclVersion
17306
17513
 
17514
+ @property
17515
+ def UserFrom(self):
17516
+ """用户来源,0-bh,1-ioa
17517
+ :rtype: int
17518
+ """
17519
+ return self._UserFrom
17520
+
17521
+ @UserFrom.setter
17522
+ def UserFrom(self, UserFrom):
17523
+ self._UserFrom = UserFrom
17524
+
17525
+ @property
17526
+ def IOAUserGroup(self):
17527
+ """ioa同步过来的用户相关信息
17528
+ :rtype: :class:`tencentcloud.bh.v20230418.models.IOAUserGroup`
17529
+ """
17530
+ return self._IOAUserGroup
17531
+
17532
+ @IOAUserGroup.setter
17533
+ def IOAUserGroup(self, IOAUserGroup):
17534
+ self._IOAUserGroup = IOAUserGroup
17535
+
17307
17536
 
17308
17537
  def _deserialize(self, params):
17309
17538
  self._UserName = params.get("UserName")
@@ -17330,6 +17559,10 @@ class User(AbstractModel):
17330
17559
  self._UKeyStatus = params.get("UKeyStatus")
17331
17560
  self._Status = params.get("Status")
17332
17561
  self._AclVersion = params.get("AclVersion")
17562
+ self._UserFrom = params.get("UserFrom")
17563
+ if params.get("IOAUserGroup") is not None:
17564
+ self._IOAUserGroup = IOAUserGroup()
17565
+ self._IOAUserGroup._deserialize(params.get("IOAUserGroup"))
17333
17566
  memeber_set = set(params.keys())
17334
17567
  for name, value in vars(self).items():
17335
17568
  property_name = name[1:]
@@ -1498,6 +1498,8 @@ Operator 目前支持
1498
1498
  :type TokenType: int
1499
1499
  :param _TokenNum: 一次创建的token数
1500
1500
  :type TokenNum: int
1501
+ :param _ConfigParam: 嵌出显示配置,目前为ChatBI嵌出场景用,TableFilter表示数据表列表过滤,SqlView表示sql查看功能
1502
+ :type ConfigParam: str
1501
1503
  """
1502
1504
  self._ProjectId = None
1503
1505
  self._PageId = None
@@ -1511,6 +1513,7 @@ Operator 目前支持
1511
1513
  self._GlobalParam = None
1512
1514
  self._TokenType = None
1513
1515
  self._TokenNum = None
1516
+ self._ConfigParam = None
1514
1517
 
1515
1518
  @property
1516
1519
  def ProjectId(self):
@@ -1685,6 +1688,17 @@ Operator 目前支持
1685
1688
  def TokenNum(self, TokenNum):
1686
1689
  self._TokenNum = TokenNum
1687
1690
 
1691
+ @property
1692
+ def ConfigParam(self):
1693
+ """嵌出显示配置,目前为ChatBI嵌出场景用,TableFilter表示数据表列表过滤,SqlView表示sql查看功能
1694
+ :rtype: str
1695
+ """
1696
+ return self._ConfigParam
1697
+
1698
+ @ConfigParam.setter
1699
+ def ConfigParam(self, ConfigParam):
1700
+ self._ConfigParam = ConfigParam
1701
+
1688
1702
 
1689
1703
  def _deserialize(self, params):
1690
1704
  self._ProjectId = params.get("ProjectId")
@@ -1699,6 +1713,7 @@ Operator 目前支持
1699
1713
  self._GlobalParam = params.get("GlobalParam")
1700
1714
  self._TokenType = params.get("TokenType")
1701
1715
  self._TokenNum = params.get("TokenNum")
1716
+ self._ConfigParam = params.get("ConfigParam")
1702
1717
  memeber_set = set(params.keys())
1703
1718
  for name, value in vars(self).items():
1704
1719
  property_name = name[1:]
@@ -5280,6 +5295,9 @@ class EmbedTokenInfo(AbstractModel):
5280
5295
  :param _SingleUserMultiToken: 是否单用户多token
5281
5296
  注意:此字段可能返回 null,表示取不到有效值。
5282
5297
  :type SingleUserMultiToken: bool
5298
+ :param _ConfigParam: 嵌出显示配置,目前为ChatBI嵌出场景用,TableFilter表示数据表列表过滤,SqlView表示sql查看功能
5299
+ 注意:此字段可能返回 null,表示取不到有效值。
5300
+ :type ConfigParam: str
5283
5301
  """
5284
5302
  self._Id = None
5285
5303
  self._BIToken = None
@@ -5300,6 +5318,7 @@ class EmbedTokenInfo(AbstractModel):
5300
5318
  self._TokenType = None
5301
5319
  self._TokenNum = None
5302
5320
  self._SingleUserMultiToken = None
5321
+ self._ConfigParam = None
5303
5322
 
5304
5323
  @property
5305
5324
  def Id(self):
@@ -5531,6 +5550,18 @@ class EmbedTokenInfo(AbstractModel):
5531
5550
  def SingleUserMultiToken(self, SingleUserMultiToken):
5532
5551
  self._SingleUserMultiToken = SingleUserMultiToken
5533
5552
 
5553
+ @property
5554
+ def ConfigParam(self):
5555
+ """嵌出显示配置,目前为ChatBI嵌出场景用,TableFilter表示数据表列表过滤,SqlView表示sql查看功能
5556
+ 注意:此字段可能返回 null,表示取不到有效值。
5557
+ :rtype: str
5558
+ """
5559
+ return self._ConfigParam
5560
+
5561
+ @ConfigParam.setter
5562
+ def ConfigParam(self, ConfigParam):
5563
+ self._ConfigParam = ConfigParam
5564
+
5534
5565
 
5535
5566
  def _deserialize(self, params):
5536
5567
  self._Id = params.get("Id")
@@ -5552,6 +5583,7 @@ class EmbedTokenInfo(AbstractModel):
5552
5583
  self._TokenType = params.get("TokenType")
5553
5584
  self._TokenNum = params.get("TokenNum")
5554
5585
  self._SingleUserMultiToken = params.get("SingleUserMultiToken")
5586
+ self._ConfigParam = params.get("ConfigParam")
5555
5587
  memeber_set = set(params.keys())
5556
5588
  for name, value in vars(self).items():
5557
5589
  property_name = name[1:]
@@ -162,7 +162,7 @@ class CbsClient(AbstractClient):
162
162
  """本接口(CopySnapshotCrossRegions)用于快照跨地域复制。
163
163
 
164
164
  * 本接口为异步接口,当跨地域复制的请求下发成功后会返回一个新的快照ID,此时快照未立即复制到目标地域,可请求目标地域的[DescribeSnapshots](/document/product/362/15647)接口查询新快照的状态,判断是否复制完成。如果快照的状态为“NORMAL”,表示快照复制完成。
165
- * 本接口实现的快照跨地域复制操作将产生跨地域流量,预计2022年第三季度会针对此功能进行商业化计费;请留意后续站内信公告,避免产生预期外扣费。
165
+ * 本接口实现的快照跨地域复制操作将产生跨地域流量,预计2025年第三季度会针对此功能进行商业化计费;请留意后续站内信公告,避免产生预期外扣费。
166
166
 
167
167
  :param request: Request instance for CopySnapshotCrossRegions.
168
168
  :type request: :class:`tencentcloud.cbs.v20170312.models.CopySnapshotCrossRegionsRequest`
@@ -384,9 +384,9 @@ class ApplySnapshotRequest(AbstractModel):
384
384
  :type SnapshotId: str
385
385
  :param _DiskId: 快照原云硬盘ID,可通过[DescribeDisks](/document/product/362/16315)接口查询。
386
386
  :type DiskId: str
387
- :param _AutoStopInstance: 回滚前是否执行自动关机
387
+ :param _AutoStopInstance: 回滚前是否执行自动关机,仅支持回滚快照至已挂载的云硬盘时传入。
388
388
  :type AutoStopInstance: bool
389
- :param _AutoStartInstance: 回滚完成后是否自动开机
389
+ :param _AutoStartInstance: 回滚完成后是否自动开机,仅支持回滚快照至已挂载的云硬盘时传入。该参数传入时,需要同时传入AutoStopInstance参数。
390
390
  :type AutoStartInstance: bool
391
391
  """
392
392
  self._SnapshotId = None
@@ -418,7 +418,7 @@ class ApplySnapshotRequest(AbstractModel):
418
418
 
419
419
  @property
420
420
  def AutoStopInstance(self):
421
- """回滚前是否执行自动关机
421
+ """回滚前是否执行自动关机,仅支持回滚快照至已挂载的云硬盘时传入。
422
422
  :rtype: bool
423
423
  """
424
424
  return self._AutoStopInstance
@@ -429,7 +429,7 @@ class ApplySnapshotRequest(AbstractModel):
429
429
 
430
430
  @property
431
431
  def AutoStartInstance(self):
432
- """回滚完成后是否自动开机
432
+ """回滚完成后是否自动开机,仅支持回滚快照至已挂载的云硬盘时传入。该参数传入时,需要同时传入AutoStopInstance参数。
433
433
  :rtype: bool
434
434
  """
435
435
  return self._AutoStartInstance
@@ -2836,14 +2836,14 @@ class DescribeDiskAssociatedAutoSnapshotPolicyRequest(AbstractModel):
2836
2836
 
2837
2837
  def __init__(self):
2838
2838
  r"""
2839
- :param _DiskId: 要查询的云硬盘ID
2839
+ :param _DiskId: 要查询的云硬盘ID,通过[DescribeDisks](https://tcloud4api.woa.com/document/product/362/15601?!preview&!document=1)接口查询。
2840
2840
  :type DiskId: str
2841
2841
  """
2842
2842
  self._DiskId = None
2843
2843
 
2844
2844
  @property
2845
2845
  def DiskId(self):
2846
- """要查询的云硬盘ID
2846
+ """要查询的云硬盘ID,通过[DescribeDisks](https://tcloud4api.woa.com/document/product/362/15601?!preview&!document=1)接口查询。
2847
2847
  :rtype: str
2848
2848
  """
2849
2849
  return self._DiskId
@@ -4630,7 +4630,7 @@ class Disk(AbstractModel):
4630
4630
  :type Shareable: bool
4631
4631
  :param _CreateTime: 云硬盘的创建时间。
4632
4632
  :type CreateTime: str
4633
- :param _DeleteSnapshot: 销毁云盘时删除关联的非永久保留快照。0 表示非永久快照不随云盘销毁而销毁,1表示非永久快照随云盘销毁而销毁,默认取0。快照是否永久保留可以通过DescribeSnapshots接口返回的快照详情的IsPermanent字段来判断,true表示永久快照,false表示非永久快照。
4633
+ :param _DeleteSnapshot: 销毁云盘时删除关联的非永久保留快照。0 表示非永久快照不随云盘销毁而销毁,1表示非永久快照随云盘销毁而销毁,默认取0。快照是否永久保留可以通过[DescribeSnapshots](https://cloud.tencent.com/document/product/362/15647)接口返回的快照详情的IsPermanent字段来判断,true表示永久快照,false表示非永久快照。
4634
4634
  :type DeleteSnapshot: int
4635
4635
  :param _DiskBackupQuota: 云硬盘备份点配额。表示最大可以保留的备份点数量。
4636
4636
  :type DiskBackupQuota: int
@@ -5085,7 +5085,7 @@ class Disk(AbstractModel):
5085
5085
 
5086
5086
  @property
5087
5087
  def DeleteSnapshot(self):
5088
- """销毁云盘时删除关联的非永久保留快照。0 表示非永久快照不随云盘销毁而销毁,1表示非永久快照随云盘销毁而销毁,默认取0。快照是否永久保留可以通过DescribeSnapshots接口返回的快照详情的IsPermanent字段来判断,true表示永久快照,false表示非永久快照。
5088
+ """销毁云盘时删除关联的非永久保留快照。0 表示非永久快照不随云盘销毁而销毁,1表示非永久快照随云盘销毁而销毁,默认取0。快照是否永久保留可以通过[DescribeSnapshots](https://cloud.tencent.com/document/product/362/15647)接口返回的快照详情的IsPermanent字段来判断,true表示永久快照,false表示非永久快照。
5089
5089
  :rtype: int
5090
5090
  """
5091
5091
  return self._DeleteSnapshot
@@ -6872,9 +6872,9 @@ class ModifyDiskBackupQuotaRequest(AbstractModel):
6872
6872
 
6873
6873
  def __init__(self):
6874
6874
  r"""
6875
- :param _DiskId: 云硬盘ID
6875
+ :param _DiskId: 云硬盘ID。可通过[DescribeDisks](/document/product/362/16315)接口查询。
6876
6876
  :type DiskId: str
6877
- :param _DiskBackupQuota: 调整之后的云硬盘备份点配额。
6877
+ :param _DiskBackupQuota: 调整之后的云硬盘备份点配额。取值范围为1 ~ 1024。
6878
6878
  :type DiskBackupQuota: int
6879
6879
  """
6880
6880
  self._DiskId = None
@@ -6882,7 +6882,7 @@ class ModifyDiskBackupQuotaRequest(AbstractModel):
6882
6882
 
6883
6883
  @property
6884
6884
  def DiskId(self):
6885
- """云硬盘ID
6885
+ """云硬盘ID。可通过[DescribeDisks](/document/product/362/16315)接口查询。
6886
6886
  :rtype: str
6887
6887
  """
6888
6888
  return self._DiskId
@@ -6893,7 +6893,7 @@ class ModifyDiskBackupQuotaRequest(AbstractModel):
6893
6893
 
6894
6894
  @property
6895
6895
  def DiskBackupQuota(self):
6896
- """调整之后的云硬盘备份点配额。
6896
+ """调整之后的云硬盘备份点配额。取值范围为1 ~ 1024。
6897
6897
  :rtype: int
6898
6898
  """
6899
6899
  return self._DiskBackupQuota
@@ -6951,9 +6951,9 @@ class ModifyDiskExtraPerformanceRequest(AbstractModel):
6951
6951
 
6952
6952
  def __init__(self):
6953
6953
  r"""
6954
- :param _ThroughputPerformance: 额外购买的云硬盘性能值,单位MB/s。
6954
+ :param _ThroughputPerformance: 额外购买的云硬盘性能值,单位MiB/s。
6955
6955
  :type ThroughputPerformance: int
6956
- :param _DiskId: 需要创建快照的云硬盘ID,可通过[DescribeDisks](/document/product/362/16315)接口查询。
6956
+ :param _DiskId: 需要购买额外性能值的云硬盘ID,可通过[DescribeDisks](/document/product/362/16315)接口查询。仅大小超过460GiB的增强型SSD(CLOUD_HSSD)和极速型SSD(CLOUD_TSSD)云硬盘才支持购买额外性能。
6957
6957
  :type DiskId: str
6958
6958
  """
6959
6959
  self._ThroughputPerformance = None
@@ -6961,7 +6961,7 @@ class ModifyDiskExtraPerformanceRequest(AbstractModel):
6961
6961
 
6962
6962
  @property
6963
6963
  def ThroughputPerformance(self):
6964
- """额外购买的云硬盘性能值,单位MB/s。
6964
+ """额外购买的云硬盘性能值,单位MiB/s。
6965
6965
  :rtype: int
6966
6966
  """
6967
6967
  return self._ThroughputPerformance
@@ -6972,7 +6972,7 @@ class ModifyDiskExtraPerformanceRequest(AbstractModel):
6972
6972
 
6973
6973
  @property
6974
6974
  def DiskId(self):
6975
- """需要创建快照的云硬盘ID,可通过[DescribeDisks](/document/product/362/16315)接口查询。
6975
+ """需要购买额外性能值的云硬盘ID,可通过[DescribeDisks](/document/product/362/16315)接口查询。仅大小超过460GiB的增强型SSD(CLOUD_HSSD)和极速型SSD(CLOUD_TSSD)云硬盘才支持购买额外性能。
6976
6976
  :rtype: str
6977
6977
  """
6978
6978
  return self._DiskId
@@ -7226,7 +7226,7 @@ class ModifySnapshotAttributeRequest(AbstractModel):
7226
7226
  :type IsPermanent: bool
7227
7227
  :param _SnapshotName: 新的快照名称。最长为60个字符。
7228
7228
  :type SnapshotName: str
7229
- :param _Deadline: 快照的到期时间;设置好快照将会被同时设置为非永久保留方式;超过到期时间后快照将会被自动删除。
7229
+ :param _Deadline: 快照的到期时间;设置好快照将会被同时设置为非永久保留方式;超过到期时间后快照将会被自动删除。注:该参数仅在参数IsPermanent为False时生效。
7230
7230
  :type Deadline: str
7231
7231
  """
7232
7232
  self._SnapshotId = None
@@ -7269,7 +7269,7 @@ class ModifySnapshotAttributeRequest(AbstractModel):
7269
7269
 
7270
7270
  @property
7271
7271
  def Deadline(self):
7272
- """快照的到期时间;设置好快照将会被同时设置为非永久保留方式;超过到期时间后快照将会被自动删除。
7272
+ """快照的到期时间;设置好快照将会被同时设置为非永久保留方式;超过到期时间后快照将会被自动删除。注:该参数仅在参数IsPermanent为False时生效。
7273
7273
  :rtype: str
7274
7274
  """
7275
7275
  return self._Deadline
@@ -245,6 +245,9 @@ INTERNALERROR_INTERNALASSERTERROR = 'InternalError.InternalAssertError'
245
245
  # 请求执行异常。
246
246
  INTERNALERROR_INTERNALHTTPSERVERERROR = 'InternalError.InternalHttpServerError'
247
247
 
248
+ # 内部服务异常,请稍后重试
249
+ INTERNALERROR_INTERNALINNERSERVICEERROR = 'InternalError.InternalInnerServiceError'
250
+
248
251
  # 后台请求服务失败,请稍后重试。
249
252
  INTERNALERROR_INTERNALREQUESTERROR = 'InternalError.InternalRequestError'
250
253
 
@@ -299,6 +302,9 @@ INTERNALERROR_TIMEWINDOWERROR = 'InternalError.TimeWindowError'
299
302
  # 交易系统错误。
300
303
  INTERNALERROR_TRADEERROR = 'InternalError.TradeError'
301
304
 
305
+ # 开启事务失败
306
+ INTERNALERROR_TRANSACTIOBEGINERROR = 'InternalError.TransactioBeginError'
307
+
302
308
  # 操作失败。
303
309
  INTERNALERROR_TRANSACTIONBEGINERROR = 'InternalError.TransactionBeginError'
304
310