tencentcloud-sdk-python 3.0.1361__py2.py3-none-any.whl → 3.0.1363__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/batch/v20170312/models.py +12 -18
- tencentcloud/ccc/v20200210/ccc_client.py +23 -0
- tencentcloud/ccc/v20200210/errorcodes.py +3 -0
- tencentcloud/ccc/v20200210/models.py +91 -4
- tencentcloud/cdwch/v20200915/models.py +0 -12
- tencentcloud/cdwpg/v20201230/models.py +0 -136
- tencentcloud/cfw/v20190904/models.py +115 -12
- tencentcloud/chc/v20230418/models.py +15 -0
- tencentcloud/cme/v20191029/errorcodes.py +3 -0
- tencentcloud/common/abstract_client.py +29 -24
- tencentcloud/common/abstract_model.py +5 -1
- tencentcloud/common/common_client.py +14 -15
- tencentcloud/common/credential.py +68 -65
- tencentcloud/common/exception/tencent_cloud_sdk_exception.py +1 -1
- tencentcloud/common/profile/client_profile.py +32 -30
- tencentcloud/common/profile/http_profile.py +20 -12
- tencentcloud/common/retry.py +18 -0
- tencentcloud/cvm/v20170312/cvm_client.py +7 -1
- tencentcloud/cvm/v20170312/models.py +88 -68
- tencentcloud/cwp/v20180228/models.py +138 -12
- tencentcloud/cynosdb/v20190107/cynosdb_client.py +69 -0
- tencentcloud/cynosdb/v20190107/models.py +318 -0
- tencentcloud/dc/v20180410/models.py +2 -2
- tencentcloud/dlc/v20210125/models.py +0 -18
- tencentcloud/dts/v20211206/models.py +10 -6
- tencentcloud/es/v20250101/es_client.py +23 -0
- tencentcloud/es/v20250101/models.py +352 -1
- tencentcloud/ess/v20201111/models.py +15 -0
- tencentcloud/gaap/v20180529/gaap_client.py +1 -1
- tencentcloud/gaap/v20180529/models.py +2 -20
- tencentcloud/gs/v20191118/gs_client.py +46 -0
- tencentcloud/gs/v20191118/models.py +385 -8
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +69 -0
- tencentcloud/iotexplorer/v20190423/models.py +578 -0
- tencentcloud/lcic/v20220817/models.py +60 -0
- tencentcloud/lighthouse/v20200324/errorcodes.py +0 -6
- tencentcloud/lighthouse/v20200324/lighthouse_client.py +0 -56
- tencentcloud/lighthouse/v20200324/models.py +0 -158
- tencentcloud/lkeap/v20240522/models.py +2 -2
- tencentcloud/monitor/v20180724/models.py +169 -0
- tencentcloud/monitor/v20180724/monitor_client.py +23 -0
- tencentcloud/mps/v20190612/models.py +186 -35
- tencentcloud/oceanus/v20190422/models.py +2 -2
- tencentcloud/tcbr/v20220217/models.py +45 -0
- tencentcloud/tione/v20211111/models.py +91 -0
- tencentcloud/trocket/v20230308/models.py +141 -88
- tencentcloud/trocket/v20230308/trocket_client.py +2 -1
- tencentcloud/tts/v20190823/models.py +15 -15
- tencentcloud/tts/v20190823/tts_client.py +4 -3
- tencentcloud/vcube/v20220410/models.py +15 -0
- tencentcloud/vdb/v20230616/models.py +15 -0
- tencentcloud/vpc/v20170312/models.py +307 -78
- tencentcloud/vpc/v20170312/vpc_client.py +32 -4
- tencentcloud/vrs/v20200824/models.py +17 -0
- tencentcloud/waf/v20180125/errorcodes.py +9 -0
- tencentcloud/waf/v20180125/models.py +3041 -114
- tencentcloud/waf/v20180125/waf_client.py +138 -0
- tencentcloud/wedata/v20210820/models.py +55 -0
- {tencentcloud_sdk_python-3.0.1361.dist-info → tencentcloud_sdk_python-3.0.1363.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1361.dist-info → tencentcloud_sdk_python-3.0.1363.dist-info}/RECORD +64 -64
- {tencentcloud_sdk_python-3.0.1361.dist-info → tencentcloud_sdk_python-3.0.1363.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1361.dist-info → tencentcloud_sdk_python-3.0.1363.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1361.dist-info → tencentcloud_sdk_python-3.0.1363.dist-info}/top_level.txt +0 -0
@@ -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
|
-
|
101
|
-
|
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`
|
@@ -258,6 +258,8 @@ class ApplicationInfo(AbstractModel):
|
|
258
258
|
:type DomainList: list of str
|
259
259
|
:param _AppId: 账号AppId
|
260
260
|
:type AppId: str
|
261
|
+
:param _NameLimit: 扩展包名数量上限
|
262
|
+
:type NameLimit: int
|
261
263
|
"""
|
262
264
|
self._AppName = None
|
263
265
|
self._BundleId = None
|
@@ -274,6 +276,7 @@ class ApplicationInfo(AbstractModel):
|
|
274
276
|
self._WinProcessName = None
|
275
277
|
self._DomainList = None
|
276
278
|
self._AppId = None
|
279
|
+
self._NameLimit = None
|
277
280
|
|
278
281
|
@property
|
279
282
|
def AppName(self):
|
@@ -447,6 +450,17 @@ class ApplicationInfo(AbstractModel):
|
|
447
450
|
def AppId(self, AppId):
|
448
451
|
self._AppId = AppId
|
449
452
|
|
453
|
+
@property
|
454
|
+
def NameLimit(self):
|
455
|
+
"""扩展包名数量上限
|
456
|
+
:rtype: int
|
457
|
+
"""
|
458
|
+
return self._NameLimit
|
459
|
+
|
460
|
+
@NameLimit.setter
|
461
|
+
def NameLimit(self, NameLimit):
|
462
|
+
self._NameLimit = NameLimit
|
463
|
+
|
450
464
|
|
451
465
|
def _deserialize(self, params):
|
452
466
|
self._AppName = params.get("AppName")
|
@@ -474,6 +488,7 @@ class ApplicationInfo(AbstractModel):
|
|
474
488
|
self._WinProcessName = params.get("WinProcessName")
|
475
489
|
self._DomainList = params.get("DomainList")
|
476
490
|
self._AppId = params.get("AppId")
|
491
|
+
self._NameLimit = params.get("NameLimit")
|
477
492
|
memeber_set = set(params.keys())
|
478
493
|
for name, value in vars(self).items():
|
479
494
|
property_name = name[1:]
|
@@ -658,11 +658,25 @@ class CreateInstanceResponse(AbstractModel):
|
|
658
658
|
|
659
659
|
def __init__(self):
|
660
660
|
r"""
|
661
|
+
:param _InstanceIds: 实例 ID。
|
662
|
+
:type InstanceIds: list of str
|
661
663
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
662
664
|
:type RequestId: str
|
663
665
|
"""
|
666
|
+
self._InstanceIds = None
|
664
667
|
self._RequestId = None
|
665
668
|
|
669
|
+
@property
|
670
|
+
def InstanceIds(self):
|
671
|
+
"""实例 ID。
|
672
|
+
:rtype: list of str
|
673
|
+
"""
|
674
|
+
return self._InstanceIds
|
675
|
+
|
676
|
+
@InstanceIds.setter
|
677
|
+
def InstanceIds(self, InstanceIds):
|
678
|
+
self._InstanceIds = InstanceIds
|
679
|
+
|
666
680
|
@property
|
667
681
|
def RequestId(self):
|
668
682
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -676,6 +690,7 @@ class CreateInstanceResponse(AbstractModel):
|
|
676
690
|
|
677
691
|
|
678
692
|
def _deserialize(self, params):
|
693
|
+
self._InstanceIds = params.get("InstanceIds")
|
679
694
|
self._RequestId = params.get("RequestId")
|
680
695
|
|
681
696
|
|