tencentcloud-sdk-python 3.0.1362__py2.py3-none-any.whl → 3.0.1364__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 (68) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/batch/v20170312/models.py +12 -18
  3. tencentcloud/cat/v20180409/cat_client.py +23 -0
  4. tencentcloud/cat/v20180409/models.py +199 -0
  5. tencentcloud/cbs/v20170312/models.py +26 -12
  6. tencentcloud/ccc/v20200210/ccc_client.py +23 -0
  7. tencentcloud/ccc/v20200210/errorcodes.py +3 -0
  8. tencentcloud/ccc/v20200210/models.py +162 -60
  9. tencentcloud/cdwch/v20200915/models.py +0 -12
  10. tencentcloud/cdwpg/v20201230/models.py +0 -12
  11. tencentcloud/cfw/v20190904/models.py +115 -12
  12. tencentcloud/chc/v20230418/models.py +15 -0
  13. tencentcloud/clb/v20180317/clb_client.py +1 -1
  14. tencentcloud/clb/v20180317/models.py +262 -366
  15. tencentcloud/cls/v20201016/models.py +35 -0
  16. tencentcloud/cme/v20191029/errorcodes.py +3 -0
  17. tencentcloud/common/abstract_client.py +29 -24
  18. tencentcloud/common/abstract_model.py +5 -1
  19. tencentcloud/common/common_client.py +14 -15
  20. tencentcloud/common/credential.py +68 -65
  21. tencentcloud/common/exception/tencent_cloud_sdk_exception.py +1 -1
  22. tencentcloud/common/profile/client_profile.py +32 -30
  23. tencentcloud/common/profile/http_profile.py +20 -12
  24. tencentcloud/common/retry.py +18 -0
  25. tencentcloud/cvm/v20170312/cvm_client.py +7 -1
  26. tencentcloud/cvm/v20170312/errorcodes.py +1 -1
  27. tencentcloud/cvm/v20170312/models.py +88 -68
  28. tencentcloud/cynosdb/v20190107/cynosdb_client.py +69 -0
  29. tencentcloud/cynosdb/v20190107/models.py +318 -0
  30. tencentcloud/dc/v20180410/models.py +2 -2
  31. tencentcloud/dlc/v20210125/models.py +0 -16
  32. tencentcloud/dts/v20211206/models.py +11 -7
  33. tencentcloud/es/v20250101/models.py +2 -6
  34. tencentcloud/ess/v20201111/models.py +31 -12
  35. tencentcloud/gwlb/v20240906/errorcodes.py +3 -0
  36. tencentcloud/gwlb/v20240906/gwlb_client.py +0 -1
  37. tencentcloud/gwlb/v20240906/models.py +4 -4
  38. tencentcloud/hunyuan/v20230901/models.py +2 -2
  39. tencentcloud/ioa/v20220601/ioa_client.py +46 -0
  40. tencentcloud/ioa/v20220601/models.py +538 -0
  41. tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +3 -1
  42. tencentcloud/lcic/v20220817/models.py +30 -0
  43. tencentcloud/lke/v20231130/errorcodes.py +3 -0
  44. tencentcloud/lke/v20231130/lke_client.py +4 -2
  45. tencentcloud/lke/v20231130/models.py +167 -6
  46. tencentcloud/lkeap/v20240522/lkeap_client.py +2 -2
  47. tencentcloud/lkeap/v20240522/models.py +4 -4
  48. tencentcloud/monitor/v20180724/models.py +169 -0
  49. tencentcloud/monitor/v20180724/monitor_client.py +23 -0
  50. tencentcloud/mps/v20190612/models.py +20 -20
  51. tencentcloud/tcbr/v20220217/models.py +30 -0
  52. tencentcloud/teo/v20220901/errorcodes.py +3 -0
  53. tencentcloud/teo/v20220901/models.py +8 -112
  54. tencentcloud/tsf/v20180326/models.py +15 -0
  55. tencentcloud/tts/v20190823/models.py +15 -15
  56. tencentcloud/tts/v20190823/tts_client.py +4 -3
  57. tencentcloud/vpc/v20170312/models.py +710 -0
  58. tencentcloud/vpc/v20170312/vpc_client.py +116 -1
  59. tencentcloud/vrs/v20200824/models.py +17 -0
  60. tencentcloud/waf/v20180125/errorcodes.py +9 -0
  61. tencentcloud/waf/v20180125/models.py +3372 -240
  62. tencentcloud/waf/v20180125/waf_client.py +138 -0
  63. tencentcloud/wedata/v20210820/models.py +55 -0
  64. {tencentcloud_sdk_python-3.0.1362.dist-info → tencentcloud_sdk_python-3.0.1364.dist-info}/METADATA +1 -1
  65. {tencentcloud_sdk_python-3.0.1362.dist-info → tencentcloud_sdk_python-3.0.1364.dist-info}/RECORD +68 -68
  66. {tencentcloud_sdk_python-3.0.1362.dist-info → tencentcloud_sdk_python-3.0.1364.dist-info}/LICENSE +0 -0
  67. {tencentcloud_sdk_python-3.0.1362.dist-info → tencentcloud_sdk_python-3.0.1364.dist-info}/WHEEL +0 -0
  68. {tencentcloud_sdk_python-3.0.1362.dist-info → tencentcloud_sdk_python-3.0.1364.dist-info}/top_level.txt +0 -0
@@ -4899,6 +4899,8 @@ class ClusterV2(AbstractModel):
4899
4899
  :type KuberneteNativeSecret: str
4900
4900
  :param _EnableLogCollection: 是否开启cls日志功能
4901
4901
  :type EnableLogCollection: bool
4902
+ :param _Reason: 集群状态的原因
4903
+ :type Reason: str
4902
4904
  """
4903
4905
  self._ClusterId = None
4904
4906
  self._ClusterName = None
@@ -4937,6 +4939,7 @@ class ClusterV2(AbstractModel):
4937
4939
  self._KuberneteNativeType = None
4938
4940
  self._KuberneteNativeSecret = None
4939
4941
  self._EnableLogCollection = None
4942
+ self._Reason = None
4940
4943
 
4941
4944
  @property
4942
4945
  def ClusterId(self):
@@ -5380,6 +5383,17 @@ class ClusterV2(AbstractModel):
5380
5383
  def EnableLogCollection(self, EnableLogCollection):
5381
5384
  self._EnableLogCollection = EnableLogCollection
5382
5385
 
5386
+ @property
5387
+ def Reason(self):
5388
+ """集群状态的原因
5389
+ :rtype: str
5390
+ """
5391
+ return self._Reason
5392
+
5393
+ @Reason.setter
5394
+ def Reason(self, Reason):
5395
+ self._Reason = Reason
5396
+
5383
5397
 
5384
5398
  def _deserialize(self, params):
5385
5399
  self._ClusterId = params.get("ClusterId")
@@ -5421,6 +5435,7 @@ class ClusterV2(AbstractModel):
5421
5435
  self._KuberneteNativeType = params.get("KuberneteNativeType")
5422
5436
  self._KuberneteNativeSecret = params.get("KuberneteNativeSecret")
5423
5437
  self._EnableLogCollection = params.get("EnableLogCollection")
5438
+ self._Reason = params.get("Reason")
5424
5439
  memeber_set = set(params.keys())
5425
5440
  for name, value in vars(self).items():
5426
5441
  property_name = name[1:]
@@ -663,6 +663,8 @@ class TextToVoiceRequest(AbstractModel):
663
663
  :param _VoiceType: 音色 ID,包括标准音色与精品音色,精品音色拟真度更高,价格不同于标准音色,请参见[购买指南](https://cloud.tencent.com/document/product/1073/34112)。完整的音色 ID 列表请参见[音色列表](https://cloud.tencent.com/document/product/1073/92668)。
664
664
  若使用一句话版声音复刻,请填入固定值“200000000”
665
665
  :type VoiceType: int
666
+ :param _FastVoiceType: 一句话版声音复刻音色ID,使用一句话版声音复刻音色时需填写。【已废弃】
667
+ :type FastVoiceType: str
666
668
  :param _PrimaryLanguage: 主语言类型:<li>1-中文(默认)</li><li>2-英文</li><li>3-日文</li>
667
669
  :type PrimaryLanguage: int
668
670
  :param _SampleRate: 音频采样率:
@@ -681,8 +683,6 @@ class TextToVoiceRequest(AbstractModel):
681
683
  :type EmotionCategory: str
682
684
  :param _EmotionIntensity: 控制合成音频情感程度,取值范围为[50,200],默认为100;只有EmotionCategory不为空时生效;
683
685
  :type EmotionIntensity: int
684
- :param _FastVoiceType: 一句话版声音复刻音色ID,使用一句话版声音复刻音色时需填写。【已废弃】
685
- :type FastVoiceType: str
686
686
  """
687
687
  self._Text = None
688
688
  self._SessionId = None
@@ -691,6 +691,7 @@ class TextToVoiceRequest(AbstractModel):
691
691
  self._ProjectId = None
692
692
  self._ModelType = None
693
693
  self._VoiceType = None
694
+ self._FastVoiceType = None
694
695
  self._PrimaryLanguage = None
695
696
  self._SampleRate = None
696
697
  self._Codec = None
@@ -698,7 +699,6 @@ class TextToVoiceRequest(AbstractModel):
698
699
  self._SegmentRate = None
699
700
  self._EmotionCategory = None
700
701
  self._EmotionIntensity = None
701
- self._FastVoiceType = None
702
702
 
703
703
  @property
704
704
  def Text(self):
@@ -779,6 +779,17 @@ class TextToVoiceRequest(AbstractModel):
779
779
  def VoiceType(self, VoiceType):
780
780
  self._VoiceType = VoiceType
781
781
 
782
+ @property
783
+ def FastVoiceType(self):
784
+ """一句话版声音复刻音色ID,使用一句话版声音复刻音色时需填写。【已废弃】
785
+ :rtype: str
786
+ """
787
+ return self._FastVoiceType
788
+
789
+ @FastVoiceType.setter
790
+ def FastVoiceType(self, FastVoiceType):
791
+ self._FastVoiceType = FastVoiceType
792
+
782
793
  @property
783
794
  def PrimaryLanguage(self):
784
795
  """主语言类型:<li>1-中文(默认)</li><li>2-英文</li><li>3-日文</li>
@@ -860,17 +871,6 @@ class TextToVoiceRequest(AbstractModel):
860
871
  def EmotionIntensity(self, EmotionIntensity):
861
872
  self._EmotionIntensity = EmotionIntensity
862
873
 
863
- @property
864
- def FastVoiceType(self):
865
- """一句话版声音复刻音色ID,使用一句话版声音复刻音色时需填写。【已废弃】
866
- :rtype: str
867
- """
868
- return self._FastVoiceType
869
-
870
- @FastVoiceType.setter
871
- def FastVoiceType(self, FastVoiceType):
872
- self._FastVoiceType = FastVoiceType
873
-
874
874
 
875
875
  def _deserialize(self, params):
876
876
  self._Text = params.get("Text")
@@ -880,6 +880,7 @@ class TextToVoiceRequest(AbstractModel):
880
880
  self._ProjectId = params.get("ProjectId")
881
881
  self._ModelType = params.get("ModelType")
882
882
  self._VoiceType = params.get("VoiceType")
883
+ self._FastVoiceType = params.get("FastVoiceType")
883
884
  self._PrimaryLanguage = params.get("PrimaryLanguage")
884
885
  self._SampleRate = params.get("SampleRate")
885
886
  self._Codec = params.get("Codec")
@@ -887,7 +888,6 @@ class TextToVoiceRequest(AbstractModel):
887
888
  self._SegmentRate = params.get("SegmentRate")
888
889
  self._EmotionCategory = params.get("EmotionCategory")
889
890
  self._EmotionIntensity = params.get("EmotionIntensity")
890
- self._FastVoiceType = params.get("FastVoiceType")
891
891
  memeber_set = set(params.keys())
892
892
  for name, value in vars(self).items():
893
893
  property_name = name[1:]
@@ -97,9 +97,10 @@ class TtsClient(AbstractClient):
97
97
  腾讯TTS技术可以应用到很多场景,比如,移动APP语音播报新闻;智能设备语音提醒;依靠网上现有节目或少量录音,快速合成明星语音,降低邀约成本;支持车载导航语音合成的个性化语音播报。
98
98
  基础合成支持 SSML,语法详见 [SSML 标记语言](https://cloud.tencent.com/document/product/1073/49575)。
99
99
  默认接口请求频率限制:
100
- 精品音色和标准音色:20次/秒
101
- 大模型音色:10次/秒
102
- 一句话复刻音色:暂不支持
100
+ 精品音色和标准音色:默认20并发
101
+ 大模型音色:默认10并发
102
+ 一句话复刻音色:默认5并发
103
+ 超自然大模型音色:暂不支持
103
104
 
104
105
  :param request: Request instance for TextToVoice.
105
106
  :type request: :class:`tencentcloud.tts.v20190823.models.TextToVoiceRequest`