tencentcloud-sdk-python 3.0.1250__py2.py3-none-any.whl → 3.0.1251__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 (32) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/batch/v20170312/models.py +8 -1
  3. tencentcloud/ccc/v20200210/models.py +117 -0
  4. tencentcloud/cls/v20201016/cls_client.py +92 -0
  5. tencentcloud/cls/v20201016/models.py +688 -0
  6. tencentcloud/cynosdb/v20190107/models.py +13 -0
  7. tencentcloud/dc/v20180410/dc_client.py +23 -0
  8. tencentcloud/dc/v20180410/models.py +426 -0
  9. tencentcloud/emr/v20190103/errorcodes.py +1 -1
  10. tencentcloud/emr/v20190103/models.py +1 -93
  11. tencentcloud/ess/v20201111/models.py +4 -5
  12. tencentcloud/essbasic/v20210526/models.py +2 -3
  13. tencentcloud/faceid/v20180301/models.py +27 -0
  14. tencentcloud/gwlb/__init__.py +0 -0
  15. tencentcloud/gwlb/v20240906/__init__.py +0 -0
  16. tencentcloud/gwlb/v20240906/errorcodes.py +48 -0
  17. tencentcloud/gwlb/v20240906/gwlb_client.py +448 -0
  18. tencentcloud/gwlb/v20240906/models.py +2834 -0
  19. tencentcloud/privatedns/v20201028/errorcodes.py +18 -0
  20. tencentcloud/privatedns/v20201028/models.py +142 -0
  21. tencentcloud/privatedns/v20201028/privatedns_client.py +23 -0
  22. tencentcloud/sms/v20190711/errorcodes.py +3 -0
  23. tencentcloud/sms/v20210111/errorcodes.py +3 -0
  24. tencentcloud/teo/v20220901/models.py +8 -5
  25. tencentcloud/tke/v20180525/models.py +2 -2
  26. tencentcloud/vclm/v20240523/models.py +12 -0
  27. tencentcloud/vtc/v20240223/models.py +12 -0
  28. {tencentcloud_sdk_python-3.0.1250.dist-info → tencentcloud_sdk_python-3.0.1251.dist-info}/METADATA +1 -1
  29. {tencentcloud_sdk_python-3.0.1250.dist-info → tencentcloud_sdk_python-3.0.1251.dist-info}/RECORD +32 -27
  30. {tencentcloud_sdk_python-3.0.1250.dist-info → tencentcloud_sdk_python-3.0.1251.dist-info}/LICENSE +0 -0
  31. {tencentcloud_sdk_python-3.0.1250.dist-info → tencentcloud_sdk_python-3.0.1251.dist-info}/WHEEL +0 -0
  32. {tencentcloud_sdk_python-3.0.1250.dist-info → tencentcloud_sdk_python-3.0.1251.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py CHANGED
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1250'
17
+ __version__ = '3.0.1251'
@@ -8246,7 +8246,7 @@ class Task(AbstractModel):
8246
8246
  :type Application: :class:`tencentcloud.batch.v20170312.models.Application`
8247
8247
  :param _TaskName: 任务名称,在一个作业内部唯一
8248
8248
  :type TaskName: str
8249
- :param _TaskInstanceNum: 任务实例运行个数
8249
+ :param _TaskInstanceNum: 任务实例运行个数,默认为1
8250
8250
  :type TaskInstanceNum: int
8251
8251
  :param _ComputeEnv: 运行环境信息,ComputeEnv 和 EnvId 必须指定一个(且只有一个)参数。
8252
8252
  :type ComputeEnv: :class:`tencentcloud.batch.v20170312.models.AnonymousComputeEnv`
@@ -8277,6 +8277,13 @@ class Task(AbstractModel):
8277
8277
  :param _RestartComputeNode: 任务完成后,重启计算节点。适用于指定计算环境执行任务。
8278
8278
  :type RestartComputeNode: bool
8279
8279
  :param _ResourceMaxRetryCount: 启动任务过程中,创建计算资源如CVM失败后的最大重试次数,默认为0。最大值100。
8280
+ 计算资源创建重试的等待时间间隔策略设置如下:
8281
+ [1, 3]: 等待600 s发起重试;
8282
+ [4, 10]: 等待900 s发起重试;
8283
+ [11, 50]: 等待1800 s发起重试;
8284
+ [51, 100]: 等待3600 s发起重试;
8285
+ [a, b]表示重试次数区间,每次重试的等待时间随着重试次数的增加而递增。
8286
+ 例如,计算资源创建重试8次的耗时为:3*600 + 5*900 = 6300 s
8280
8287
  :type ResourceMaxRetryCount: int
8281
8288
  """
8282
8289
  self._Application = None
@@ -1593,6 +1593,93 @@ HoaiMy
1593
1593
  :type EndFunctionEnable: bool
1594
1594
  :param _EndFunctionDesc: EndFunctionEnable为true时生效;call_end function calling的desc,默认为 "End the call when user has to leave (like says bye) or you are instructed to do so."
1595
1595
  :type EndFunctionDesc: str
1596
+ :param _NotifyDuration: 用户多久没说话提示时长,最小10秒,默认10秒
1597
+ :type NotifyDuration: int
1598
+ :param _NotifyMessage: 用户NotifyDuration没说话,ai提示的语句,默认是"抱歉,我没听清。您可以重复下吗?"
1599
+ :type NotifyMessage: str
1600
+ :param _CustomTTSConfig: 和voiceType字段需要选填一个,这里是使用自己自定义的TTS,voiceType是系统内置的一些音色
1601
+
1602
+ tencent TTS:
1603
+ {
1604
+ "TTSType": "tencent", // String TTS类型, 目前支持"tencent" 和 “minixmax”, 其他的厂商支持中
1605
+   "AppId": "您的应用ID", // String 必填
1606
+   "SecretId": "您的密钥ID", // String 必填
1607
+   "SecretKey": "您的密钥Key", // String 必填
1608
+   "VoiceType": 101001, // Integer 必填,音色 ID,包括标准音色与精品音色,精品音色拟真度更高,价格不同于标准音色,请参见语音合成计费概述。完整的音色 ID 列表请参见语音合成音色列表。
1609
+   "Speed": 1.25, // Integer 非必填,语速,范围:[-2,6],分别对应不同语速: -2: 代表0.6倍 -1: 代表0.8倍 0: 代表1.0倍(默认) 1: 代表1.2倍 2: 代表1.5倍 6: 代表2.5倍 如果需要更细化的语速,可以保留小数点后 2 位,例如0.5/1.25/2.81等。 参数值与实际语速转换,可参考 语速转换
1610
+   "Volume": 5, // Integer 非必填,音量大小,范围:[0,10],分别对应11个等级的音量,默认值为0,代表正常音量。
1611
+   "PrimaryLanguage": 1, // Integer 可选 主要语言 1-中文(默认) 2-英文 3-日文
1612
+ "FastVoiceType": "xxxx" // 可选参数, 快速声音复刻的参数
1613
+  }
1614
+
1615
+ 参考:https://cloud.tencent.com/document/product/1073/92668#55924b56-1a73-4663-a7a1-a8dd82d6e823
1616
+
1617
+ minimax TTS
1618
+ {
1619
+ "TTSType": "minimax", // String TTS类型,
1620
+ "Model": "speech-01-turbo",
1621
+ "APIUrl": "https://api.minimax.chat/v1/t2a_v2",
1622
+ "APIKey": "eyxxxx",
1623
+ "GroupId": "181000000000000",
1624
+ "VoiceType":"female-tianmei-jingpin",
1625
+ "Speed": 1.2
1626
+ }
1627
+
1628
+ 参考:https://platform.minimaxi.com/document/T2A%20V2?key=66719005a427f0c8a5701643
1629
+ 限频参考:https://platform.minimaxi.com/document/Rate%20limits?key=66b19417290299a26b234572 可能会导致回答卡顿
1630
+
1631
+
1632
+
1633
+ volcengine TTS
1634
+ {
1635
+ "TTSType": "volcengine", // 必填:String TTS类型
1636
+ "AppId" : "xxxxxxxx", // 必填:String 火山引擎分配的Appid
1637
+ "Token" : "TY9d4sQXHxxxxxxx", // 必填: String类型 火山引擎的访问token
1638
+ "Speed" : 1.0, // 可选参数 语速,默认为1.0
1639
+ "Volume": 1.0, // 可选参数, 音量大小, 默认为1.0
1640
+ "Cluster" : "volcano_tts", // 可选参数,业务集群, 默认是 volcano_tts
1641
+ "VoiceType" : "zh_male_aojiaobazong_moon_bigtts" // 音色类型, 默认为大模型语音合成的音色。 如果使用普通语音合成,则需要填写对应的音色类型。 音色类型填写错误会导致没有声音。
1642
+ }
1643
+
1644
+
1645
+
1646
+ 火山引擎音色类型参考:
1647
+ https://www.volcengine.com/docs/6561/162929
1648
+ 语音合成音色列表--语音技术-火山引擎
1649
+ 大模型语音合成音色列表--语音技术-火山引擎
1650
+
1651
+
1652
+ Azure TTS
1653
+ {
1654
+ "TTSType": "azure", // 必填:String TTS类型
1655
+ "SubscriptionKey": "xxxxxxxx", // 必填:String 订阅的Key
1656
+ "Region": "chinanorth3", // 必填:String 订阅的地区
1657
+ "VoiceName": "zh-CN-XiaoxiaoNeural", // 必填:String 音色名必填
1658
+ "Language": "zh-CN", // 必填:String 合成的语言
1659
+ "Rate": 1 // 选填:float 语速 0.5~2 默认为 1
1660
+ }
1661
+
1662
+ 参考:
1663
+ https://docs.azure.cn/zh-cn/ai-services/speech-service/speech-synthesis-markup-voice
1664
+
1665
+
1666
+ 自定义 TTS
1667
+ {
1668
+ "TTSType": "custom", // String 必填
1669
+ "APIKey": "ApiKey", // String 必填 用来鉴权
1670
+ "APIUrl": "http://0.0.0.0:8080/stream-audio" // String,必填,TTS API URL
1671
+ "AudioFormat": "wav", // String, 非必填,期望输出的音频格式,如mp3, ogg_opus,pcm,wav,默认为 wav,目前只支持pcm和wav,
1672
+ "SampleRate": 16000, // Integer,非必填,音频采样率,默认为16000(16k),推荐值为16000
1673
+ "AudioChannel": 1, // Integer,非必填,音频通道数,取值:1 或 2 默认为1
1674
+ }
1675
+
1676
+
1677
+ 具体协议规范:
1678
+ https://doc.weixin.qq.com/doc/w3_ANQAiAbdAFwHILbJBmtSqSbV1WZ3L?scode=AJEAIQdfAAo5a1xajYANQAiAbdAFw
1679
+
1680
+
1681
+
1682
+ :type CustomTTSConfig: str
1596
1683
  """
1597
1684
  self._SdkAppId = None
1598
1685
  self._Callee = None
@@ -1611,6 +1698,9 @@ HoaiMy
1611
1698
  self._InterruptSpeechDuration = None
1612
1699
  self._EndFunctionEnable = None
1613
1700
  self._EndFunctionDesc = None
1701
+ self._NotifyDuration = None
1702
+ self._NotifyMessage = None
1703
+ self._CustomTTSConfig = None
1614
1704
 
1615
1705
  @property
1616
1706
  def SdkAppId(self):
@@ -1748,6 +1838,30 @@ HoaiMy
1748
1838
  def EndFunctionDesc(self, EndFunctionDesc):
1749
1839
  self._EndFunctionDesc = EndFunctionDesc
1750
1840
 
1841
+ @property
1842
+ def NotifyDuration(self):
1843
+ return self._NotifyDuration
1844
+
1845
+ @NotifyDuration.setter
1846
+ def NotifyDuration(self, NotifyDuration):
1847
+ self._NotifyDuration = NotifyDuration
1848
+
1849
+ @property
1850
+ def NotifyMessage(self):
1851
+ return self._NotifyMessage
1852
+
1853
+ @NotifyMessage.setter
1854
+ def NotifyMessage(self, NotifyMessage):
1855
+ self._NotifyMessage = NotifyMessage
1856
+
1857
+ @property
1858
+ def CustomTTSConfig(self):
1859
+ return self._CustomTTSConfig
1860
+
1861
+ @CustomTTSConfig.setter
1862
+ def CustomTTSConfig(self, CustomTTSConfig):
1863
+ self._CustomTTSConfig = CustomTTSConfig
1864
+
1751
1865
 
1752
1866
  def _deserialize(self, params):
1753
1867
  self._SdkAppId = params.get("SdkAppId")
@@ -1767,6 +1881,9 @@ HoaiMy
1767
1881
  self._InterruptSpeechDuration = params.get("InterruptSpeechDuration")
1768
1882
  self._EndFunctionEnable = params.get("EndFunctionEnable")
1769
1883
  self._EndFunctionDesc = params.get("EndFunctionDesc")
1884
+ self._NotifyDuration = params.get("NotifyDuration")
1885
+ self._NotifyMessage = params.get("NotifyMessage")
1886
+ self._CustomTTSConfig = params.get("CustomTTSConfig")
1770
1887
  memeber_set = set(params.keys())
1771
1888
  for name, value in vars(self).items():
1772
1889
  property_name = name[1:]
@@ -509,6 +509,29 @@ class ClsClient(AbstractClient):
509
509
  raise TencentCloudSDKException(type(e).__name__, str(e))
510
510
 
511
511
 
512
+ def CreateNoticeContent(self, request):
513
+ """该接口用于创建通知内容。
514
+
515
+ :param request: Request instance for CreateNoticeContent.
516
+ :type request: :class:`tencentcloud.cls.v20201016.models.CreateNoticeContentRequest`
517
+ :rtype: :class:`tencentcloud.cls.v20201016.models.CreateNoticeContentResponse`
518
+
519
+ """
520
+ try:
521
+ params = request._serialize()
522
+ headers = request.headers
523
+ body = self.call("CreateNoticeContent", params, headers=headers)
524
+ response = json.loads(body)
525
+ model = models.CreateNoticeContentResponse()
526
+ model._deserialize(response["Response"])
527
+ return model
528
+ except Exception as e:
529
+ if isinstance(e, TencentCloudSDKException):
530
+ raise
531
+ else:
532
+ raise TencentCloudSDKException(type(e).__name__, str(e))
533
+
534
+
512
535
  def CreateScheduledSql(self, request):
513
536
  """本接口用于创建定时SQL分析任务
514
537
 
@@ -946,6 +969,29 @@ class ClsClient(AbstractClient):
946
969
  raise TencentCloudSDKException(type(e).__name__, str(e))
947
970
 
948
971
 
972
+ def DeleteNoticeContent(self, request):
973
+ """该接口用于删除通知内容配置
974
+
975
+ :param request: Request instance for DeleteNoticeContent.
976
+ :type request: :class:`tencentcloud.cls.v20201016.models.DeleteNoticeContentRequest`
977
+ :rtype: :class:`tencentcloud.cls.v20201016.models.DeleteNoticeContentResponse`
978
+
979
+ """
980
+ try:
981
+ params = request._serialize()
982
+ headers = request.headers
983
+ body = self.call("DeleteNoticeContent", params, headers=headers)
984
+ response = json.loads(body)
985
+ model = models.DeleteNoticeContentResponse()
986
+ model._deserialize(response["Response"])
987
+ return model
988
+ except Exception as e:
989
+ if isinstance(e, TencentCloudSDKException):
990
+ raise
991
+ else:
992
+ raise TencentCloudSDKException(type(e).__name__, str(e))
993
+
994
+
949
995
  def DeleteScheduledSql(self, request):
950
996
  """本接口用于删除定时SQL分析任务
951
997
 
@@ -1545,6 +1591,29 @@ class ClsClient(AbstractClient):
1545
1591
  raise TencentCloudSDKException(type(e).__name__, str(e))
1546
1592
 
1547
1593
 
1594
+ def DescribeNoticeContents(self, request):
1595
+ """获取通知内容列表
1596
+
1597
+ :param request: Request instance for DescribeNoticeContents.
1598
+ :type request: :class:`tencentcloud.cls.v20201016.models.DescribeNoticeContentsRequest`
1599
+ :rtype: :class:`tencentcloud.cls.v20201016.models.DescribeNoticeContentsResponse`
1600
+
1601
+ """
1602
+ try:
1603
+ params = request._serialize()
1604
+ headers = request.headers
1605
+ body = self.call("DescribeNoticeContents", params, headers=headers)
1606
+ response = json.loads(body)
1607
+ model = models.DescribeNoticeContentsResponse()
1608
+ model._deserialize(response["Response"])
1609
+ return model
1610
+ except Exception as e:
1611
+ if isinstance(e, TencentCloudSDKException):
1612
+ raise
1613
+ else:
1614
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1615
+
1616
+
1548
1617
  def DescribePartitions(self, request):
1549
1618
  """该接口已废弃,如需获取分区数量,请使用DescribeTopics接口。
1550
1619
 
@@ -2051,6 +2120,29 @@ class ClsClient(AbstractClient):
2051
2120
  raise TencentCloudSDKException(type(e).__name__, str(e))
2052
2121
 
2053
2122
 
2123
+ def ModifyNoticeContent(self, request):
2124
+ """该接口用于修改通知内容配置
2125
+
2126
+ :param request: Request instance for ModifyNoticeContent.
2127
+ :type request: :class:`tencentcloud.cls.v20201016.models.ModifyNoticeContentRequest`
2128
+ :rtype: :class:`tencentcloud.cls.v20201016.models.ModifyNoticeContentResponse`
2129
+
2130
+ """
2131
+ try:
2132
+ params = request._serialize()
2133
+ headers = request.headers
2134
+ body = self.call("ModifyNoticeContent", params, headers=headers)
2135
+ response = json.loads(body)
2136
+ model = models.ModifyNoticeContentResponse()
2137
+ model._deserialize(response["Response"])
2138
+ return model
2139
+ except Exception as e:
2140
+ if isinstance(e, TencentCloudSDKException):
2141
+ raise
2142
+ else:
2143
+ raise TencentCloudSDKException(type(e).__name__, str(e))
2144
+
2145
+
2054
2146
  def ModifyScheduledSql(self, request):
2055
2147
  """本接口用于修改定时SQL分析任务
2056
2148