tencentcloud-sdk-python 3.0.1376__py2.py3-none-any.whl → 3.0.1378__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 (47) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/apm/v20210622/models.py +60 -0
  3. tencentcloud/asr/v20190614/models.py +15 -0
  4. tencentcloud/autoscaling/v20180419/models.py +45 -16
  5. tencentcloud/bh/v20230418/models.py +317 -2
  6. tencentcloud/billing/v20180709/billing_client.py +322 -0
  7. tencentcloud/billing/v20180709/errorcodes.py +9 -0
  8. tencentcloud/billing/v20180709/models.py +4894 -2542
  9. tencentcloud/cdb/v20170320/cdb_client.py +0 -25
  10. tencentcloud/cdb/v20170320/models.py +0 -113
  11. tencentcloud/cfw/v20190904/models.py +17 -2
  12. tencentcloud/dsgc/v20190723/models.py +15 -0
  13. tencentcloud/ess/v20201111/ess_client.py +27 -0
  14. tencentcloud/ess/v20201111/models.py +186 -4
  15. tencentcloud/essbasic/v20210526/essbasic_client.py +27 -0
  16. tencentcloud/essbasic/v20210526/models.py +220 -4
  17. tencentcloud/gaap/v20180529/errorcodes.py +0 -33
  18. tencentcloud/gaap/v20180529/gaap_client.py +0 -75
  19. tencentcloud/gaap/v20180529/models.py +0 -653
  20. tencentcloud/hunyuan/v20230901/models.py +280 -8
  21. tencentcloud/iai/v20180301/models.py +44 -34
  22. tencentcloud/keewidb/v20220308/models.py +4 -0
  23. tencentcloud/lighthouse/v20200324/lighthouse_client.py +1 -1
  24. tencentcloud/lighthouse/v20200324/models.py +6 -6
  25. tencentcloud/lke/v20231130/models.py +192 -2
  26. tencentcloud/postgres/v20170312/models.py +0 -6
  27. tencentcloud/redis/v20180412/models.py +48 -0
  28. tencentcloud/tag/v20180813/models.py +8 -8
  29. tencentcloud/tcb/v20180608/models.py +30 -0
  30. tencentcloud/tcbr/v20220217/models.py +162 -0
  31. tencentcloud/tdmq/v20200217/models.py +6 -6
  32. tencentcloud/teo/v20220901/models.py +0 -20
  33. tencentcloud/thpc/v20230321/models.py +8 -10
  34. tencentcloud/tione/v20211111/models.py +274 -0
  35. tencentcloud/tke/v20180525/models.py +10 -0
  36. tencentcloud/trtc/v20190722/models.py +15 -0
  37. tencentcloud/vod/v20180717/models.py +2 -2
  38. tencentcloud/vpc/v20170312/models.py +24 -24
  39. tencentcloud/waf/v20180125/errorcodes.py +12 -0
  40. tencentcloud/waf/v20180125/models.py +246 -29
  41. tencentcloud/wedata/v20210820/models.py +2692 -154
  42. tencentcloud/wedata/v20210820/wedata_client.py +161 -0
  43. {tencentcloud_sdk_python-3.0.1376.dist-info → tencentcloud_sdk_python-3.0.1378.dist-info}/METADATA +1 -1
  44. {tencentcloud_sdk_python-3.0.1376.dist-info → tencentcloud_sdk_python-3.0.1378.dist-info}/RECORD +47 -47
  45. {tencentcloud_sdk_python-3.0.1376.dist-info → tencentcloud_sdk_python-3.0.1378.dist-info}/LICENSE +0 -0
  46. {tencentcloud_sdk_python-3.0.1376.dist-info → tencentcloud_sdk_python-3.0.1378.dist-info}/WHEEL +0 -0
  47. {tencentcloud_sdk_python-3.0.1376.dist-info → tencentcloud_sdk_python-3.0.1378.dist-info}/top_level.txt +0 -0
@@ -9327,6 +9327,42 @@ class EnvVar(AbstractModel):
9327
9327
 
9328
9328
 
9329
9329
 
9330
+ class ExecAction(AbstractModel):
9331
+ """执行命令探针检查行为
9332
+
9333
+ """
9334
+
9335
+ def __init__(self):
9336
+ r"""
9337
+ :param _Command: 执行命令列表
9338
+ :type Command: list of str
9339
+ """
9340
+ self._Command = None
9341
+
9342
+ @property
9343
+ def Command(self):
9344
+ """执行命令列表
9345
+ :rtype: list of str
9346
+ """
9347
+ return self._Command
9348
+
9349
+ @Command.setter
9350
+ def Command(self, Command):
9351
+ self._Command = Command
9352
+
9353
+
9354
+ def _deserialize(self, params):
9355
+ self._Command = params.get("Command")
9356
+ memeber_set = set(params.keys())
9357
+ for name, value in vars(self).items():
9358
+ property_name = name[1:]
9359
+ if property_name in memeber_set:
9360
+ memeber_set.remove(property_name)
9361
+ if len(memeber_set) > 0:
9362
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
9363
+
9364
+
9365
+
9330
9366
  class Filter(AbstractModel):
9331
9367
  """过滤器
9332
9368
 
@@ -9753,8 +9789,11 @@ class HTTPGetAction(AbstractModel):
9753
9789
  r"""
9754
9790
  :param _Path: http 路径
9755
9791
  :type Path: str
9792
+ :param _Port: 调用端口
9793
+ :type Port: int
9756
9794
  """
9757
9795
  self._Path = None
9796
+ self._Port = None
9758
9797
 
9759
9798
  @property
9760
9799
  def Path(self):
@@ -9767,9 +9806,21 @@ class HTTPGetAction(AbstractModel):
9767
9806
  def Path(self, Path):
9768
9807
  self._Path = Path
9769
9808
 
9809
+ @property
9810
+ def Port(self):
9811
+ """调用端口
9812
+ :rtype: int
9813
+ """
9814
+ return self._Port
9815
+
9816
+ @Port.setter
9817
+ def Port(self, Port):
9818
+ self._Port = Port
9819
+
9770
9820
 
9771
9821
  def _deserialize(self, params):
9772
9822
  self._Path = params.get("Path")
9823
+ self._Port = params.get("Port")
9773
9824
  memeber_set = set(params.keys())
9774
9825
  for name, value in vars(self).items():
9775
9826
  property_name = name[1:]
@@ -14979,6 +15030,57 @@ class NotebookSetItem(AbstractModel):
14979
15030
 
14980
15031
 
14981
15032
 
15033
+ class NumOrPercent(AbstractModel):
15034
+ """用于表示百分比或数量
15035
+
15036
+ """
15037
+
15038
+ def __init__(self):
15039
+ r"""
15040
+ :param _Type: Num,Percent ,分别表示数量和百分比,默认为 Num
15041
+ :type Type: str
15042
+ :param _Value: 数值
15043
+ :type Value: int
15044
+ """
15045
+ self._Type = None
15046
+ self._Value = None
15047
+
15048
+ @property
15049
+ def Type(self):
15050
+ """Num,Percent ,分别表示数量和百分比,默认为 Num
15051
+ :rtype: str
15052
+ """
15053
+ return self._Type
15054
+
15055
+ @Type.setter
15056
+ def Type(self, Type):
15057
+ self._Type = Type
15058
+
15059
+ @property
15060
+ def Value(self):
15061
+ """数值
15062
+ :rtype: int
15063
+ """
15064
+ return self._Value
15065
+
15066
+ @Value.setter
15067
+ def Value(self, Value):
15068
+ self._Value = Value
15069
+
15070
+
15071
+ def _deserialize(self, params):
15072
+ self._Type = params.get("Type")
15073
+ self._Value = params.get("Value")
15074
+ memeber_set = set(params.keys())
15075
+ for name, value in vars(self).items():
15076
+ property_name = name[1:]
15077
+ if property_name in memeber_set:
15078
+ memeber_set.remove(property_name)
15079
+ if len(memeber_set) > 0:
15080
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
15081
+
15082
+
15083
+
14982
15084
  class Option(AbstractModel):
14983
15085
  """键值对
14984
15086
 
@@ -15600,8 +15702,17 @@ class ProbeAction(AbstractModel):
15600
15702
  r"""
15601
15703
  :param _HTTPGet: http get 行为
15602
15704
  :type HTTPGet: :class:`tencentcloud.tione.v20211111.models.HTTPGetAction`
15705
+ :param _Exec: 执行命令检查 行为
15706
+ :type Exec: :class:`tencentcloud.tione.v20211111.models.ExecAction`
15707
+ :param _TCPSocket: tcp socket 检查行为
15708
+ :type TCPSocket: :class:`tencentcloud.tione.v20211111.models.TCPSocketAction`
15709
+ :param _ActionType: 探针类型,默认 HTTPGet,可选值:HTTPGet、Exec、TCPSocket
15710
+ :type ActionType: str
15603
15711
  """
15604
15712
  self._HTTPGet = None
15713
+ self._Exec = None
15714
+ self._TCPSocket = None
15715
+ self._ActionType = None
15605
15716
 
15606
15717
  @property
15607
15718
  def HTTPGet(self):
@@ -15614,11 +15725,51 @@ class ProbeAction(AbstractModel):
15614
15725
  def HTTPGet(self, HTTPGet):
15615
15726
  self._HTTPGet = HTTPGet
15616
15727
 
15728
+ @property
15729
+ def Exec(self):
15730
+ """执行命令检查 行为
15731
+ :rtype: :class:`tencentcloud.tione.v20211111.models.ExecAction`
15732
+ """
15733
+ return self._Exec
15734
+
15735
+ @Exec.setter
15736
+ def Exec(self, Exec):
15737
+ self._Exec = Exec
15738
+
15739
+ @property
15740
+ def TCPSocket(self):
15741
+ """tcp socket 检查行为
15742
+ :rtype: :class:`tencentcloud.tione.v20211111.models.TCPSocketAction`
15743
+ """
15744
+ return self._TCPSocket
15745
+
15746
+ @TCPSocket.setter
15747
+ def TCPSocket(self, TCPSocket):
15748
+ self._TCPSocket = TCPSocket
15749
+
15750
+ @property
15751
+ def ActionType(self):
15752
+ """探针类型,默认 HTTPGet,可选值:HTTPGet、Exec、TCPSocket
15753
+ :rtype: str
15754
+ """
15755
+ return self._ActionType
15756
+
15757
+ @ActionType.setter
15758
+ def ActionType(self, ActionType):
15759
+ self._ActionType = ActionType
15760
+
15617
15761
 
15618
15762
  def _deserialize(self, params):
15619
15763
  if params.get("HTTPGet") is not None:
15620
15764
  self._HTTPGet = HTTPGetAction()
15621
15765
  self._HTTPGet._deserialize(params.get("HTTPGet"))
15766
+ if params.get("Exec") is not None:
15767
+ self._Exec = ExecAction()
15768
+ self._Exec._deserialize(params.get("Exec"))
15769
+ if params.get("TCPSocket") is not None:
15770
+ self._TCPSocket = TCPSocketAction()
15771
+ self._TCPSocket._deserialize(params.get("TCPSocket"))
15772
+ self._ActionType = params.get("ActionType")
15622
15773
  memeber_set = set(params.keys())
15623
15774
  for name, value in vars(self).items():
15624
15775
  property_name = name[1:]
@@ -16488,6 +16639,61 @@ class ResourceInstanceRunningJobInfo(AbstractModel):
16488
16639
 
16489
16640
 
16490
16641
 
16642
+ class RollingUpdate(AbstractModel):
16643
+ """滚动更新策略
16644
+
16645
+ """
16646
+
16647
+ def __init__(self):
16648
+ r"""
16649
+ :param _MaxUnavailable: 滚动更新的最大不可用
16650
+ :type MaxUnavailable: :class:`tencentcloud.tione.v20211111.models.NumOrPercent`
16651
+ :param _MaxSurge: 滚动更新的最大新增实例
16652
+ :type MaxSurge: :class:`tencentcloud.tione.v20211111.models.NumOrPercent`
16653
+ """
16654
+ self._MaxUnavailable = None
16655
+ self._MaxSurge = None
16656
+
16657
+ @property
16658
+ def MaxUnavailable(self):
16659
+ """滚动更新的最大不可用
16660
+ :rtype: :class:`tencentcloud.tione.v20211111.models.NumOrPercent`
16661
+ """
16662
+ return self._MaxUnavailable
16663
+
16664
+ @MaxUnavailable.setter
16665
+ def MaxUnavailable(self, MaxUnavailable):
16666
+ self._MaxUnavailable = MaxUnavailable
16667
+
16668
+ @property
16669
+ def MaxSurge(self):
16670
+ """滚动更新的最大新增实例
16671
+ :rtype: :class:`tencentcloud.tione.v20211111.models.NumOrPercent`
16672
+ """
16673
+ return self._MaxSurge
16674
+
16675
+ @MaxSurge.setter
16676
+ def MaxSurge(self, MaxSurge):
16677
+ self._MaxSurge = MaxSurge
16678
+
16679
+
16680
+ def _deserialize(self, params):
16681
+ if params.get("MaxUnavailable") is not None:
16682
+ self._MaxUnavailable = NumOrPercent()
16683
+ self._MaxUnavailable._deserialize(params.get("MaxUnavailable"))
16684
+ if params.get("MaxSurge") is not None:
16685
+ self._MaxSurge = NumOrPercent()
16686
+ self._MaxSurge._deserialize(params.get("MaxSurge"))
16687
+ memeber_set = set(params.keys())
16688
+ for name, value in vars(self).items():
16689
+ property_name = name[1:]
16690
+ if property_name in memeber_set:
16691
+ memeber_set.remove(property_name)
16692
+ if len(memeber_set) > 0:
16693
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
16694
+
16695
+
16696
+
16491
16697
  class SSHConfig(AbstractModel):
16492
16698
  """notebook ssh端口配置
16493
16699
 
@@ -17831,6 +18037,8 @@ UPDATING 更新中
17831
18037
  :type AuthorizationEnable: bool
17832
18038
  :param _AuthTokens: 限流鉴权 token 列表
17833
18039
  :type AuthTokens: list of AuthToken
18040
+ :param _MonitorSource: 用于监控的创建来源字段
18041
+ :type MonitorSource: str
17834
18042
  """
17835
18043
  self._ServiceGroupId = None
17836
18044
  self._ServiceGroupName = None
@@ -17854,6 +18062,7 @@ UPDATING 更新中
17854
18062
  self._AppId = None
17855
18063
  self._AuthorizationEnable = None
17856
18064
  self._AuthTokens = None
18065
+ self._MonitorSource = None
17857
18066
 
17858
18067
  @property
17859
18068
  def ServiceGroupId(self):
@@ -18126,6 +18335,17 @@ UPDATING 更新中
18126
18335
  def AuthTokens(self, AuthTokens):
18127
18336
  self._AuthTokens = AuthTokens
18128
18337
 
18338
+ @property
18339
+ def MonitorSource(self):
18340
+ """用于监控的创建来源字段
18341
+ :rtype: str
18342
+ """
18343
+ return self._MonitorSource
18344
+
18345
+ @MonitorSource.setter
18346
+ def MonitorSource(self, MonitorSource):
18347
+ self._MonitorSource = MonitorSource
18348
+
18129
18349
 
18130
18350
  def _deserialize(self, params):
18131
18351
  self._ServiceGroupId = params.get("ServiceGroupId")
@@ -18165,6 +18385,7 @@ UPDATING 更新中
18165
18385
  obj = AuthToken()
18166
18386
  obj._deserialize(item)
18167
18387
  self._AuthTokens.append(obj)
18388
+ self._MonitorSource = params.get("MonitorSource")
18168
18389
  memeber_set = set(params.keys())
18169
18390
  for name, value in vars(self).items():
18170
18391
  property_name = name[1:]
@@ -18293,6 +18514,8 @@ HYBRID_PAID:
18293
18514
  :type GrpcEnable: bool
18294
18515
  :param _HealthProbe: 健康探针
18295
18516
  :type HealthProbe: :class:`tencentcloud.tione.v20211111.models.HealthProbe`
18517
+ :param _RollingUpdate: 滚动更新配置
18518
+ :type RollingUpdate: :class:`tencentcloud.tione.v20211111.models.RollingUpdate`
18296
18519
  """
18297
18520
  self._Replicas = None
18298
18521
  self._ImageInfo = None
@@ -18330,6 +18553,7 @@ HYBRID_PAID:
18330
18553
  self._PreStopCommand = None
18331
18554
  self._GrpcEnable = None
18332
18555
  self._HealthProbe = None
18556
+ self._RollingUpdate = None
18333
18557
 
18334
18558
  @property
18335
18559
  def Replicas(self):
@@ -18774,6 +18998,17 @@ HYBRID_PAID:
18774
18998
  def HealthProbe(self, HealthProbe):
18775
18999
  self._HealthProbe = HealthProbe
18776
19000
 
19001
+ @property
19002
+ def RollingUpdate(self):
19003
+ """滚动更新配置
19004
+ :rtype: :class:`tencentcloud.tione.v20211111.models.RollingUpdate`
19005
+ """
19006
+ return self._RollingUpdate
19007
+
19008
+ @RollingUpdate.setter
19009
+ def RollingUpdate(self, RollingUpdate):
19010
+ self._RollingUpdate = RollingUpdate
19011
+
18777
19012
 
18778
19013
  def _deserialize(self, params):
18779
19014
  self._Replicas = params.get("Replicas")
@@ -18855,6 +19090,9 @@ HYBRID_PAID:
18855
19090
  if params.get("HealthProbe") is not None:
18856
19091
  self._HealthProbe = HealthProbe()
18857
19092
  self._HealthProbe._deserialize(params.get("HealthProbe"))
19093
+ if params.get("RollingUpdate") is not None:
19094
+ self._RollingUpdate = RollingUpdate()
19095
+ self._RollingUpdate._deserialize(params.get("RollingUpdate"))
18858
19096
  memeber_set = set(params.keys())
18859
19097
  for name, value in vars(self).items():
18860
19098
  property_name = name[1:]
@@ -19785,6 +20023,42 @@ class StopTrainingTaskResponse(AbstractModel):
19785
20023
  self._RequestId = params.get("RequestId")
19786
20024
 
19787
20025
 
20026
+ class TCPSocketAction(AbstractModel):
20027
+ """tcp socket 健康探针检查行为
20028
+
20029
+ """
20030
+
20031
+ def __init__(self):
20032
+ r"""
20033
+ :param _Port: 调用端口
20034
+ :type Port: int
20035
+ """
20036
+ self._Port = None
20037
+
20038
+ @property
20039
+ def Port(self):
20040
+ """调用端口
20041
+ :rtype: int
20042
+ """
20043
+ return self._Port
20044
+
20045
+ @Port.setter
20046
+ def Port(self, Port):
20047
+ self._Port = Port
20048
+
20049
+
20050
+ def _deserialize(self, params):
20051
+ self._Port = params.get("Port")
20052
+ memeber_set = set(params.keys())
20053
+ for name, value in vars(self).items():
20054
+ property_name = name[1:]
20055
+ if property_name in memeber_set:
20056
+ memeber_set.remove(property_name)
20057
+ if len(memeber_set) > 0:
20058
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
20059
+
20060
+
20061
+
19788
20062
  class TJCallInfo(AbstractModel):
19789
20063
  """太极服务的调用信息
19790
20064
 
@@ -30990,21 +30990,26 @@ class InstanceAdvancedSettings(AbstractModel):
30990
30990
  def __init__(self):
30991
30991
  r"""
30992
30992
  :param _DesiredPodNumber: 该节点属于podCIDR大小自定义模式时,可指定节点上运行的pod数量上限
30993
+ 注意:此字段可能返回 null,表示取不到有效值。
30993
30994
  :type DesiredPodNumber: int
30994
30995
  :param _GPUArgs: GPU驱动相关参数,相关的GPU参数获取:https://cloud.tencent.com/document/api/213/15715
30995
30996
  注意:此字段可能返回 null,表示取不到有效值。
30996
30997
  :type GPUArgs: :class:`tencentcloud.tke.v20180525.models.GPUArgs`
30997
30998
  :param _PreStartUserScript: base64 编码的用户脚本,在初始化节点之前执行,目前只对添加已有节点生效
30999
+ 注意:此字段可能返回 null,表示取不到有效值。
30998
31000
  :type PreStartUserScript: str
30999
31001
  :param _Taints: 节点污点
31000
31002
  注意:此字段可能返回 null,表示取不到有效值。
31001
31003
  :type Taints: list of Taint
31002
31004
  :param _MountTarget: 数据盘挂载点, 默认不挂载数据盘. 已格式化的 ext3,ext4,xfs 文件系统的数据盘将直接挂载,其他文件系统或未格式化的数据盘将自动格式化为ext4 (tlinux系统格式化成xfs)并挂载,请注意备份数据! 无数据盘或有多块数据盘的云主机此设置不生效。
31003
31005
  注意,注意,多盘场景请使用下方的DataDisks数据结构,设置对应的云盘类型、云盘大小、挂载路径、是否格式化等信息。
31006
+ 注意:此字段可能返回 null,表示取不到有效值。
31004
31007
  :type MountTarget: str
31005
31008
  :param _DockerGraphPath: dockerd --graph 指定值, 默认为 /var/lib/docker
31009
+ 注意:此字段可能返回 null,表示取不到有效值。
31006
31010
  :type DockerGraphPath: str
31007
31011
  :param _UserScript: base64 编码的用户脚本, 此脚本会在 k8s 组件运行后执行, 需要用户保证脚本的可重入及重试逻辑, 脚本及其生成的日志文件可在节点的 /data/ccs_userscript/ 路径查看, 如果要求节点需要在进行初始化完成后才可加入调度, 可配合 unschedulable 参数使用, 在 userScript 最后初始化完成后, 添加 kubectl uncordon nodename --kubeconfig=/root/.kube/config 命令使节点加入调度
31012
+ 注意:此字段可能返回 null,表示取不到有效值。
31008
31013
  :type UserScript: str
31009
31014
  :param _Unschedulable: 设置加入的节点是否参与调度,默认值为0,表示参与调度;非0表示不参与调度, 待节点初始化完成之后, 可执行kubectl uncordon nodename使node加入调度.
31010
31015
  :type Unschedulable: int
@@ -31032,6 +31037,7 @@ class InstanceAdvancedSettings(AbstractModel):
31032
31037
  @property
31033
31038
  def DesiredPodNumber(self):
31034
31039
  """该节点属于podCIDR大小自定义模式时,可指定节点上运行的pod数量上限
31040
+ 注意:此字段可能返回 null,表示取不到有效值。
31035
31041
  :rtype: int
31036
31042
  """
31037
31043
  return self._DesiredPodNumber
@@ -31055,6 +31061,7 @@ class InstanceAdvancedSettings(AbstractModel):
31055
31061
  @property
31056
31062
  def PreStartUserScript(self):
31057
31063
  """base64 编码的用户脚本,在初始化节点之前执行,目前只对添加已有节点生效
31064
+ 注意:此字段可能返回 null,表示取不到有效值。
31058
31065
  :rtype: str
31059
31066
  """
31060
31067
  return self._PreStartUserScript
@@ -31079,6 +31086,7 @@ class InstanceAdvancedSettings(AbstractModel):
31079
31086
  def MountTarget(self):
31080
31087
  """数据盘挂载点, 默认不挂载数据盘. 已格式化的 ext3,ext4,xfs 文件系统的数据盘将直接挂载,其他文件系统或未格式化的数据盘将自动格式化为ext4 (tlinux系统格式化成xfs)并挂载,请注意备份数据! 无数据盘或有多块数据盘的云主机此设置不生效。
31081
31088
  注意,注意,多盘场景请使用下方的DataDisks数据结构,设置对应的云盘类型、云盘大小、挂载路径、是否格式化等信息。
31089
+ 注意:此字段可能返回 null,表示取不到有效值。
31082
31090
  :rtype: str
31083
31091
  """
31084
31092
  return self._MountTarget
@@ -31090,6 +31098,7 @@ class InstanceAdvancedSettings(AbstractModel):
31090
31098
  @property
31091
31099
  def DockerGraphPath(self):
31092
31100
  """dockerd --graph 指定值, 默认为 /var/lib/docker
31101
+ 注意:此字段可能返回 null,表示取不到有效值。
31093
31102
  :rtype: str
31094
31103
  """
31095
31104
  return self._DockerGraphPath
@@ -31101,6 +31110,7 @@ class InstanceAdvancedSettings(AbstractModel):
31101
31110
  @property
31102
31111
  def UserScript(self):
31103
31112
  """base64 编码的用户脚本, 此脚本会在 k8s 组件运行后执行, 需要用户保证脚本的可重入及重试逻辑, 脚本及其生成的日志文件可在节点的 /data/ccs_userscript/ 路径查看, 如果要求节点需要在进行初始化完成后才可加入调度, 可配合 unschedulable 参数使用, 在 userScript 最后初始化完成后, 添加 kubectl uncordon nodename --kubeconfig=/root/.kube/config 命令使节点加入调度
31113
+ 注意:此字段可能返回 null,表示取不到有效值。
31104
31114
  :rtype: str
31105
31115
  """
31106
31116
  return self._UserScript
@@ -10054,11 +10054,14 @@ class RecognizeConfig(AbstractModel):
10054
10054
  挪威语: no
10055
10055
  丹麦语: da
10056
10056
  :type TranslationLanguage: str
10057
+ :param _HotWordList: 热词表:该参数用于提升识别准确率。 单个热词限制:"热词|权重",单个热词不超过30个字符(最多10个汉字),权重[1-11]或者100,如:“腾讯云|5” 或 “ASR|11”; 热词表限制:多个热词用英文逗号分割,最多支持300个热词,如:“腾讯云|10,语音识别|5,ASR|11”;
10058
+ :type HotWordList: str
10057
10059
  """
10058
10060
  self._Language = None
10059
10061
  self._AlternativeLanguage = None
10060
10062
  self._Model = None
10061
10063
  self._TranslationLanguage = None
10064
+ self._HotWordList = None
10062
10065
 
10063
10066
  @property
10064
10067
  def Language(self):
@@ -10177,12 +10180,24 @@ class RecognizeConfig(AbstractModel):
10177
10180
 
10178
10181
  self._TranslationLanguage = TranslationLanguage
10179
10182
 
10183
+ @property
10184
+ def HotWordList(self):
10185
+ """热词表:该参数用于提升识别准确率。 单个热词限制:"热词|权重",单个热词不超过30个字符(最多10个汉字),权重[1-11]或者100,如:“腾讯云|5” 或 “ASR|11”; 热词表限制:多个热词用英文逗号分割,最多支持300个热词,如:“腾讯云|10,语音识别|5,ASR|11”;
10186
+ :rtype: str
10187
+ """
10188
+ return self._HotWordList
10189
+
10190
+ @HotWordList.setter
10191
+ def HotWordList(self, HotWordList):
10192
+ self._HotWordList = HotWordList
10193
+
10180
10194
 
10181
10195
  def _deserialize(self, params):
10182
10196
  self._Language = params.get("Language")
10183
10197
  self._AlternativeLanguage = params.get("AlternativeLanguage")
10184
10198
  self._Model = params.get("Model")
10185
10199
  self._TranslationLanguage = params.get("TranslationLanguage")
10200
+ self._HotWordList = params.get("HotWordList")
10186
10201
  memeber_set = set(params.keys())
10187
10202
  for name, value in vars(self).items():
10188
10203
  property_name = name[1:]
@@ -24817,7 +24817,7 @@ class DescribeCDNStatDetailsRequest(AbstractModel):
24817
24817
  <li>Yunnan:云南。</li>
24818
24818
  <li>Chongqing:重庆。</li>
24819
24819
  <li>Sichuan:四川。</li>
24820
- <li>Tibet:西藏。</li>
24820
+ <li>Xizang:西藏。</li>
24821
24821
  <li>Guangdong:广东。</li>
24822
24822
  <li>Guangxi:广西。</li>
24823
24823
  <li>Hainan:海南。</li>
@@ -24962,7 +24962,7 @@ class DescribeCDNStatDetailsRequest(AbstractModel):
24962
24962
  <li>Yunnan:云南。</li>
24963
24963
  <li>Chongqing:重庆。</li>
24964
24964
  <li>Sichuan:四川。</li>
24965
- <li>Tibet:西藏。</li>
24965
+ <li>Xizang:西藏。</li>
24966
24966
  <li>Guangdong:广东。</li>
24967
24967
  <li>Guangxi:广西。</li>
24968
24968
  <li>Hainan:海南。</li>
@@ -22828,19 +22828,19 @@ class DescribeAddressesRequest(AbstractModel):
22828
22828
 
22829
22829
  def __init__(self):
22830
22830
  r"""
22831
- :param _AddressIds: 标识 EIP 的唯一 ID 列表。EIP 唯一 ID 形如:`eip-11112222`。参数不支持同时指定`AddressIds`和`Filters.address-id`。
22831
+ :param _AddressIds: 标识 EIP 的唯一 ID 列表。EIP 唯一 ID 形如:`eip-11112222`。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。参数不支持同时指定`AddressIds`和`Filters.address-id`。
22832
22832
  :type AddressIds: list of str
22833
22833
  :param _Filters: 每次请求的`Filters`的上限为10,`Filter.Values`的上限为100。详细的过滤条件如下:
22834
- <li> address-id - String - 是否必填:否 - (过滤条件)按照 EIP 的唯一 ID 过滤。EIP 唯一 ID 形如:eip-11112222。</li>
22835
- <li> address-name - String - 是否必填:否 - (过滤条件)按照 EIP 名称过滤。不支持模糊过滤。</li>
22836
- <li> address-ip - String - 是否必填:否 - (过滤条件)按照 EIP 的 IP 地址过滤。</li>
22837
- <li> address-status - String - 是否必填:否 - (过滤条件)按照 EIP 的状态过滤。状态包含:'CREATING''BINDING''BIND''UNBINDING''UNBIND''OFFLINING''BIND_ENI'。</li>
22838
- <li> instance-id - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的实例 ID 过滤。实例 ID 形如:ins-11112222。</li>
22839
- <li> private-ip-address - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的内网 IP 过滤。</li>
22840
- <li> network-interface-id - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的弹性网卡 ID 过滤。弹性网卡 ID 形如:eni-11112222。</li>
22834
+ <li> address-id - String - 是否必填:否 - (过滤条件)按照 EIP 的唯一 ID 过滤。EIP 唯一 ID 形如:eip-11112222。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取address-id。</li>
22835
+ <li> address-name - String - 是否必填:否 - (过滤条件)按照 EIP 名称过滤。不支持模糊过滤。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取address-name。</li>
22836
+ <li> address-ip - String - 是否必填:否 - (过滤条件)按照 EIP 的 IP 地址过滤。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取address-ip。</li>
22837
+ <li> address-status - String - 是否必填:否 - (过滤条件)按照 EIP 的状态过滤。状态包含:'CREATING':创建中,'BINDING':绑定中,'BIND':已绑,'UNBINDING':解绑中,'UNBIND':未绑定,'OFFLINING':下线中,'BIND_ENI':绑定了ENI。</li>
22838
+ <li> instance-id - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的实例 ID 过滤。实例 ID 形如:ins-11112222。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取instance-id。</li>
22839
+ <li> private-ip-address - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的内网 IP 过滤。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取private-ip-address。</li>
22840
+ <li> network-interface-id - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的弹性网卡 ID 过滤。弹性网卡 ID 形如:eni-11112222。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取network-interface-id。</li>
22841
22841
  <li> is-arrears - String - 是否必填:否 - (过滤条件)按照 EIP 是否欠费进行过滤。(TRUE:EIP 处于欠费状态|FALSE:EIP 费用状态正常)</li>
22842
- <li> address-type - String - 是否必填:否 - (过滤条件)按照 IP类型 进行过滤。可选值:'WanIP', 'EIP','AnycastEIP','HighQualityEIP', 'AntiDDoSEIP'。默认值是'EIP'。</li>
22843
- <li> address-isp - String - 是否必填:否 - (过滤条件)按照 运营商类型 进行过滤。可选值:'BGP','CMCC''CUCC', 'CTCC'</li>
22842
+ <li> address-type - String - 是否必填:否 - (过滤条件)按照 IP类型 进行过滤。可选值:'WanIP':普通公网 IP, 'EIP':弹性公网 IP,'AnycastEIP':加速 IP,'HighQualityEIP':精品弹性公网 IP, 'AntiDDoSEIP':高防 IP。默认值是'EIP'。</li>
22843
+ <li> address-isp - String - 是否必填:否 - (过滤条件)按照 运营商类型 进行过滤。可选值:'BGP':常规BGP,'CMCC':移动,'CUCC':联通, 'CTCC':电信</li>
22844
22844
  <li> dedicated-cluster-id - String - 是否必填:否 - (过滤条件)按照 CDC 的唯一 ID 过滤。CDC 唯一 ID 形如:cluster-11112222。</li>
22845
22845
  <li> tag-key - String - 是否必填:否 - (过滤条件)按照标签键进行过滤。</li>
22846
22846
  <li> tag-value - String - 是否必填:否 - (过滤条件)按照标签值进行过滤。</li>
@@ -22858,7 +22858,7 @@ class DescribeAddressesRequest(AbstractModel):
22858
22858
 
22859
22859
  @property
22860
22860
  def AddressIds(self):
22861
- """标识 EIP 的唯一 ID 列表。EIP 唯一 ID 形如:`eip-11112222`。参数不支持同时指定`AddressIds`和`Filters.address-id`。
22861
+ """标识 EIP 的唯一 ID 列表。EIP 唯一 ID 形如:`eip-11112222`。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取AddressId。参数不支持同时指定`AddressIds`和`Filters.address-id`。
22862
22862
  :rtype: list of str
22863
22863
  """
22864
22864
  return self._AddressIds
@@ -22870,16 +22870,16 @@ class DescribeAddressesRequest(AbstractModel):
22870
22870
  @property
22871
22871
  def Filters(self):
22872
22872
  """每次请求的`Filters`的上限为10,`Filter.Values`的上限为100。详细的过滤条件如下:
22873
- <li> address-id - String - 是否必填:否 - (过滤条件)按照 EIP 的唯一 ID 过滤。EIP 唯一 ID 形如:eip-11112222。</li>
22874
- <li> address-name - String - 是否必填:否 - (过滤条件)按照 EIP 名称过滤。不支持模糊过滤。</li>
22875
- <li> address-ip - String - 是否必填:否 - (过滤条件)按照 EIP 的 IP 地址过滤。</li>
22876
- <li> address-status - String - 是否必填:否 - (过滤条件)按照 EIP 的状态过滤。状态包含:'CREATING''BINDING''BIND''UNBINDING''UNBIND''OFFLINING''BIND_ENI'。</li>
22877
- <li> instance-id - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的实例 ID 过滤。实例 ID 形如:ins-11112222。</li>
22878
- <li> private-ip-address - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的内网 IP 过滤。</li>
22879
- <li> network-interface-id - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的弹性网卡 ID 过滤。弹性网卡 ID 形如:eni-11112222。</li>
22873
+ <li> address-id - String - 是否必填:否 - (过滤条件)按照 EIP 的唯一 ID 过滤。EIP 唯一 ID 形如:eip-11112222。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取address-id。</li>
22874
+ <li> address-name - String - 是否必填:否 - (过滤条件)按照 EIP 名称过滤。不支持模糊过滤。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取address-name。</li>
22875
+ <li> address-ip - String - 是否必填:否 - (过滤条件)按照 EIP 的 IP 地址过滤。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取address-ip。</li>
22876
+ <li> address-status - String - 是否必填:否 - (过滤条件)按照 EIP 的状态过滤。状态包含:'CREATING':创建中,'BINDING':绑定中,'BIND':已绑,'UNBINDING':解绑中,'UNBIND':未绑定,'OFFLINING':下线中,'BIND_ENI':绑定了ENI。</li>
22877
+ <li> instance-id - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的实例 ID 过滤。实例 ID 形如:ins-11112222。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取instance-id。</li>
22878
+ <li> private-ip-address - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的内网 IP 过滤。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取private-ip-address。</li>
22879
+ <li> network-interface-id - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的弹性网卡 ID 过滤。弹性网卡 ID 形如:eni-11112222。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取network-interface-id。</li>
22880
22880
  <li> is-arrears - String - 是否必填:否 - (过滤条件)按照 EIP 是否欠费进行过滤。(TRUE:EIP 处于欠费状态|FALSE:EIP 费用状态正常)</li>
22881
- <li> address-type - String - 是否必填:否 - (过滤条件)按照 IP类型 进行过滤。可选值:'WanIP', 'EIP','AnycastEIP','HighQualityEIP', 'AntiDDoSEIP'。默认值是'EIP'。</li>
22882
- <li> address-isp - String - 是否必填:否 - (过滤条件)按照 运营商类型 进行过滤。可选值:'BGP','CMCC''CUCC', 'CTCC'</li>
22881
+ <li> address-type - String - 是否必填:否 - (过滤条件)按照 IP类型 进行过滤。可选值:'WanIP':普通公网 IP, 'EIP':弹性公网 IP,'AnycastEIP':加速 IP,'HighQualityEIP':精品弹性公网 IP, 'AntiDDoSEIP':高防 IP。默认值是'EIP'。</li>
22882
+ <li> address-isp - String - 是否必填:否 - (过滤条件)按照 运营商类型 进行过滤。可选值:'BGP':常规BGP,'CMCC':移动,'CUCC':联通, 'CTCC':电信</li>
22883
22883
  <li> dedicated-cluster-id - String - 是否必填:否 - (过滤条件)按照 CDC 的唯一 ID 过滤。CDC 唯一 ID 形如:cluster-11112222。</li>
22884
22884
  <li> tag-key - String - 是否必填:否 - (过滤条件)按照标签键进行过滤。</li>
22885
22885
  <li> tag-value - String - 是否必填:否 - (过滤条件)按照标签值进行过滤。</li>
@@ -49875,7 +49875,7 @@ class ModifyIPv6AddressesBandwidthRequest(AbstractModel):
49875
49875
  r"""
49876
49876
  :param _IPv6AddressIds: 弹性公网IPv6地址唯一ID,可以使用[DescribeIPv6Addresses](https://cloud.tencent.com/document/api/215/113677)接口获取IPv6AddressId。
49877
49877
  :type IPv6AddressIds: list of str
49878
- :param _InternetMaxBandwidthOut: 弹性公网IPv6地址网络带宽,可调整的带宽上限值参考产品文档中[IPv6 计费限制说明](https://cloud.tencent.com/document/product/1142/38369)。
49878
+ :param _InternetMaxBandwidthOut: 弹性公网IPv6地址网络带宽,可调整的带宽上限值参考产品文档中[IPv6 计费限制说明](https://write.woa.com/document/123652708247588864#IPv6)。
49879
49879
  :type InternetMaxBandwidthOut: int
49880
49880
  """
49881
49881
  self._IPv6AddressIds = None
@@ -49894,7 +49894,7 @@ class ModifyIPv6AddressesBandwidthRequest(AbstractModel):
49894
49894
 
49895
49895
  @property
49896
49896
  def InternetMaxBandwidthOut(self):
49897
- """弹性公网IPv6地址网络带宽,可调整的带宽上限值参考产品文档中[IPv6 计费限制说明](https://cloud.tencent.com/document/product/1142/38369)。
49897
+ """弹性公网IPv6地址网络带宽,可调整的带宽上限值参考产品文档中[IPv6 计费限制说明](https://write.woa.com/document/123652708247588864#IPv6)。
49898
49898
  :rtype: int
49899
49899
  """
49900
49900
  return self._InternetMaxBandwidthOut
@@ -49952,7 +49952,7 @@ class ModifyIp6AddressesBandwidthRequest(AbstractModel):
49952
49952
 
49953
49953
  def __init__(self):
49954
49954
  r"""
49955
- :param _InternetMaxBandwidthOut: 修改的目标带宽,单位Mbps。可调整的带宽上限值参考产品文档中[IPv6 计费限制说明](https://cloud.tencent.com/document/product/1142/38369)。
49955
+ :param _InternetMaxBandwidthOut: 修改的目标带宽,单位Mbps。可调整的带宽上限值参考产品文档中[IPv6 计费限制说明](https://write.woa.com/document/123652708247588864#IPv6)。
49956
49956
  :type InternetMaxBandwidthOut: int
49957
49957
  :param _Ip6Addresses: IPv6地址。可以使用[DescribeIp6Addresses](https://cloud.tencent.com/document/product/215/40089)接口查询Ip6Addresses。Ip6Addresses和Ip6AddressIds必须且只能传一个。
49958
49958
  :type Ip6Addresses: list of str
@@ -49965,7 +49965,7 @@ class ModifyIp6AddressesBandwidthRequest(AbstractModel):
49965
49965
 
49966
49966
  @property
49967
49967
  def InternetMaxBandwidthOut(self):
49968
- """修改的目标带宽,单位Mbps。可调整的带宽上限值参考产品文档中[IPv6 计费限制说明](https://cloud.tencent.com/document/product/1142/38369)。
49968
+ """修改的目标带宽,单位Mbps。可调整的带宽上限值参考产品文档中[IPv6 计费限制说明](https://write.woa.com/document/123652708247588864#IPv6)。
49969
49969
  :rtype: int
49970
49970
  """
49971
49971
  return self._InternetMaxBandwidthOut
@@ -35,6 +35,9 @@ FAILEDOPERATION_CLSDBOPERATIONFAILED = 'FailedOperation.CLSDBOperationFailed'
35
35
  # CLS内部错误。
36
36
  FAILEDOPERATION_CLSINTERNALERROR = 'FailedOperation.CLSInternalError'
37
37
 
38
+ # 证书不存在
39
+ FAILEDOPERATION_CERTIFICATENOTFOUND = 'FailedOperation.CertificateNotFound'
40
+
38
41
  # 操作CH数据库失败
39
42
  FAILEDOPERATION_CLICKHOUSEOPERATIONFAILED = 'FailedOperation.ClickHouseOperationFailed'
40
43
 
@@ -65,6 +68,9 @@ INTERNALERROR_ASYNCHRONOUSCALLFAILED = 'InternalError.AsynchronousCallFailed'
65
68
  # DBErr
66
69
  INTERNALERROR_DBERR = 'InternalError.DBErr'
67
70
 
71
+ # 调用SSL证书接口发生内部错误
72
+ INTERNALERROR_SSLCALLFAILED = 'InternalError.SSLCallFailed'
73
+
68
74
  # 存在内部错误,请联系我们
69
75
  INTERNALERROR_UNKNOWNERR = 'InternalError.UnknownErr'
70
76
 
@@ -77,6 +83,9 @@ INVALIDPARAMETER_BOTNAMEREPEATERR = 'InvalidParameter.BotNameRepeatErr'
77
83
  # Bot场景不存在
78
84
  INVALIDPARAMETER_BOTSCENENOTEXISTERR = 'InvalidParameter.BotSceneNotExistErr'
79
85
 
86
+ # 证书和私钥检查不通过
87
+ INVALIDPARAMETER_CERTIFICATECHECKERR = 'InvalidParameter.CertificateCheckErr'
88
+
80
89
  # 证书信息参数错误
81
90
  INVALIDPARAMETER_CERTIFICATIONPARAMETERERR = 'InvalidParameter.CertificationParameterErr'
82
91
 
@@ -173,6 +182,9 @@ RESOURCEUNAVAILABLE = 'ResourceUnavailable'
173
182
  # IPV6网络正在分配,请耐心等待
174
183
  RESOURCEUNAVAILABLE_DOMAINIPV6INCONFIGERR = 'ResourceUnavailable.DomainIpv6InConfigErr'
175
184
 
185
+ # SSL证书ID关联的证书内容错误
186
+ RESOURCEUNAVAILABLE_SSLCERTIFICATEERR = 'ResourceUnavailable.SSLCertificateErr'
187
+
176
188
  # 资源售罄。
177
189
  RESOURCESSOLDOUT = 'ResourcesSoldOut'
178
190