tencentcloud-sdk-python 3.0.1250__py2.py3-none-any.whl → 3.0.1252__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 (58) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/batch/v20170312/models.py +8 -1
  3. tencentcloud/bma/v20221115/models.py +24 -0
  4. tencentcloud/cam/v20190116/models.py +16 -16
  5. tencentcloud/ccc/v20200210/models.py +117 -0
  6. tencentcloud/cdwdoris/v20211228/models.py +45 -0
  7. tencentcloud/cfg/v20210820/models.py +26 -0
  8. tencentcloud/cls/v20201016/cls_client.py +94 -1
  9. tencentcloud/cls/v20201016/models.py +769 -3
  10. tencentcloud/cynosdb/v20190107/cynosdb_client.py +1 -1
  11. tencentcloud/cynosdb/v20190107/models.py +25 -0
  12. tencentcloud/dasb/v20191018/models.py +21 -9
  13. tencentcloud/dc/v20180410/dc_client.py +23 -0
  14. tencentcloud/dc/v20180410/models.py +426 -0
  15. tencentcloud/dnspod/v20210323/models.py +1 -3
  16. tencentcloud/emr/v20190103/emr_client.py +92 -0
  17. tencentcloud/emr/v20190103/errorcodes.py +1 -1
  18. tencentcloud/emr/v20190103/models.py +1389 -179
  19. tencentcloud/es/v20180416/models.py +204 -1
  20. tencentcloud/ess/v20201111/models.py +6 -6
  21. tencentcloud/essbasic/v20210526/models.py +18 -5
  22. tencentcloud/facefusion/v20220927/errorcodes.py +15 -0
  23. tencentcloud/faceid/v20180301/models.py +27 -0
  24. tencentcloud/gwlb/__init__.py +0 -0
  25. tencentcloud/gwlb/v20240906/__init__.py +0 -0
  26. tencentcloud/gwlb/v20240906/errorcodes.py +48 -0
  27. tencentcloud/gwlb/v20240906/gwlb_client.py +448 -0
  28. tencentcloud/gwlb/v20240906/models.py +2835 -0
  29. tencentcloud/hunyuan/v20230901/models.py +139 -13
  30. tencentcloud/iss/v20230517/errorcodes.py +6 -0
  31. tencentcloud/iss/v20230517/iss_client.py +1 -1
  32. tencentcloud/iss/v20230517/models.py +72 -12
  33. tencentcloud/ocr/v20181119/errorcodes.py +1 -1
  34. tencentcloud/privatedns/v20201028/errorcodes.py +18 -0
  35. tencentcloud/privatedns/v20201028/models.py +142 -0
  36. tencentcloud/privatedns/v20201028/privatedns_client.py +23 -0
  37. tencentcloud/redis/v20180412/redis_client.py +1 -1
  38. tencentcloud/sms/v20190711/errorcodes.py +3 -0
  39. tencentcloud/sms/v20210111/errorcodes.py +2 -2
  40. tencentcloud/sms/v20210111/models.py +1 -1
  41. tencentcloud/sqlserver/v20180328/models.py +24 -0
  42. tencentcloud/sts/v20180813/models.py +2 -2
  43. tencentcloud/tcss/v20201101/models.py +147 -2
  44. tencentcloud/teo/v20220901/errorcodes.py +9 -9
  45. tencentcloud/teo/v20220901/models.py +83 -77
  46. tencentcloud/teo/v20220901/teo_client.py +4 -4
  47. tencentcloud/tke/v20180525/errorcodes.py +3 -0
  48. tencentcloud/tke/v20180525/models.py +248 -2
  49. tencentcloud/tke/v20180525/tke_client.py +46 -0
  50. tencentcloud/vclm/v20240523/models.py +12 -0
  51. tencentcloud/vpc/v20170312/models.py +24 -20
  52. tencentcloud/vpc/v20170312/vpc_client.py +2 -2
  53. tencentcloud/vtc/v20240223/models.py +12 -0
  54. {tencentcloud_sdk_python-3.0.1250.dist-info → tencentcloud_sdk_python-3.0.1252.dist-info}/METADATA +1 -1
  55. {tencentcloud_sdk_python-3.0.1250.dist-info → tencentcloud_sdk_python-3.0.1252.dist-info}/RECORD +58 -53
  56. {tencentcloud_sdk_python-3.0.1250.dist-info → tencentcloud_sdk_python-3.0.1252.dist-info}/LICENSE +0 -0
  57. {tencentcloud_sdk_python-3.0.1250.dist-info → tencentcloud_sdk_python-3.0.1252.dist-info}/WHEEL +0 -0
  58. {tencentcloud_sdk_python-3.0.1250.dist-info → tencentcloud_sdk_python-3.0.1252.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.1252'
@@ -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
@@ -634,11 +634,22 @@ class CreateBPFakeAPPResponse(AbstractModel):
634
634
 
635
635
  def __init__(self):
636
636
  r"""
637
+ :param _FakeAPPId: FakeAPPId
638
+ :type FakeAPPId: int
637
639
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
638
640
  :type RequestId: str
639
641
  """
642
+ self._FakeAPPId = None
640
643
  self._RequestId = None
641
644
 
645
+ @property
646
+ def FakeAPPId(self):
647
+ return self._FakeAPPId
648
+
649
+ @FakeAPPId.setter
650
+ def FakeAPPId(self, FakeAPPId):
651
+ self._FakeAPPId = FakeAPPId
652
+
642
653
  @property
643
654
  def RequestId(self):
644
655
  return self._RequestId
@@ -649,6 +660,7 @@ class CreateBPFakeAPPResponse(AbstractModel):
649
660
 
650
661
 
651
662
  def _deserialize(self, params):
663
+ self._FakeAPPId = params.get("FakeAPPId")
652
664
  self._RequestId = params.get("RequestId")
653
665
 
654
666
 
@@ -728,11 +740,22 @@ class CreateBPFakeURLResponse(AbstractModel):
728
740
 
729
741
  def __init__(self):
730
742
  r"""
743
+ :param _FakeURLId: FakeURLId
744
+ :type FakeURLId: int
731
745
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
732
746
  :type RequestId: str
733
747
  """
748
+ self._FakeURLId = None
734
749
  self._RequestId = None
735
750
 
751
+ @property
752
+ def FakeURLId(self):
753
+ return self._FakeURLId
754
+
755
+ @FakeURLId.setter
756
+ def FakeURLId(self, FakeURLId):
757
+ self._FakeURLId = FakeURLId
758
+
736
759
  @property
737
760
  def RequestId(self):
738
761
  return self._RequestId
@@ -743,6 +766,7 @@ class CreateBPFakeURLResponse(AbstractModel):
743
766
 
744
767
 
745
768
  def _deserialize(self, params):
769
+ self._FakeURLId = params.get("FakeURLId")
746
770
  self._RequestId = params.get("RequestId")
747
771
 
748
772
 
@@ -4832,7 +4832,7 @@ class GetPolicyRequest(AbstractModel):
4832
4832
 
4833
4833
  def __init__(self):
4834
4834
  r"""
4835
- :param _PolicyId: 策略Id
4835
+ :param _PolicyId: 策略Id
4836
4836
  :type PolicyId: int
4837
4837
  """
4838
4838
  self._PolicyId = None
@@ -4865,28 +4865,28 @@ class GetPolicyResponse(AbstractModel):
4865
4865
 
4866
4866
  def __init__(self):
4867
4867
  r"""
4868
- :param _PolicyName: 策略名
4868
+ :param _PolicyName: 策略名。
4869
4869
  注意:此字段可能返回 null,表示取不到有效值。
4870
4870
  :type PolicyName: str
4871
- :param _Description: 策略描述
4871
+ :param _Description: 策略描述。
4872
4872
  注意:此字段可能返回 null,表示取不到有效值。
4873
4873
  :type Description: str
4874
- :param _Type: 1 表示自定义策略,2 表示预设策略
4874
+ :param _Type: 1 表示自定义策略,2 表示预设策略。
4875
4875
  注意:此字段可能返回 null,表示取不到有效值。
4876
4876
  :type Type: int
4877
- :param _AddTime: 创建时间
4877
+ :param _AddTime: 策略创建时间。
4878
4878
  注意:此字段可能返回 null,表示取不到有效值。
4879
4879
  :type AddTime: str
4880
- :param _UpdateTime: 最近更新时间
4880
+ :param _UpdateTime: 策略最近更新时间。
4881
4881
  注意:此字段可能返回 null,表示取不到有效值。
4882
4882
  :type UpdateTime: str
4883
- :param _PolicyDocument: 策略文档
4883
+ :param _PolicyDocument: 策略文档。
4884
4884
  注意:此字段可能返回 null,表示取不到有效值。
4885
4885
  :type PolicyDocument: str
4886
- :param _PresetAlias: 备注
4886
+ :param _PresetAlias: 备注。
4887
4887
  注意:此字段可能返回 null,表示取不到有效值。
4888
4888
  :type PresetAlias: str
4889
- :param _IsServiceLinkedRolePolicy: 是否服务相关策略
4889
+ :param _IsServiceLinkedRolePolicy: 是否是服务相关策略,0代表不是服务相关策略,1代表是服务相关策略。
4890
4890
  注意:此字段可能返回 null,表示取不到有效值。
4891
4891
  :type IsServiceLinkedRolePolicy: int
4892
4892
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -6583,15 +6583,15 @@ class ListAttachedUserAllPoliciesRequest(AbstractModel):
6583
6583
 
6584
6584
  def __init__(self):
6585
6585
  r"""
6586
- :param _TargetUin: 目标用户ID
6586
+ :param _TargetUin: 目标用户Uin
6587
6587
  :type TargetUin: int
6588
- :param _Rp: 每页数量,必须大于 0 且小于或等于 200
6588
+ :param _Rp: 每页数量,必须大于 0 且小于等于 200
6589
6589
  :type Rp: int
6590
- :param _Page: 页码,从 1开始,不能大于 200
6590
+ :param _Page: 页码,从 1开始,不能大于 200
6591
6591
  :type Page: int
6592
- :param _AttachType: 0:返回直接关联和随组关联策略,1:只返回直接关联策略,2:只返回随组关联策略
6592
+ :param _AttachType: 关联类型。0:返回直接关联和随组关联策略,1:只返回直接关联策略,2:只返回随组关联策略。
6593
6593
  :type AttachType: int
6594
- :param _StrategyType: 策略类型
6594
+ :param _StrategyType: 策略类型。1表示自定义策略,2表示预设策略。
6595
6595
  :type StrategyType: int
6596
6596
  :param _Keyword: 搜索关键字
6597
6597
  :type Keyword: str
@@ -6676,9 +6676,9 @@ class ListAttachedUserAllPoliciesResponse(AbstractModel):
6676
6676
 
6677
6677
  def __init__(self):
6678
6678
  r"""
6679
- :param _PolicyList: 策略列表数据
6679
+ :param _PolicyList: 策略列表数据。
6680
6680
  :type PolicyList: list of AttachedUserPolicy
6681
- :param _TotalNum: 策略总数
6681
+ :param _TotalNum: 策略总数。
6682
6682
  :type TotalNum: int
6683
6683
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6684
6684
  :type RequestId: str
@@ -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:]
@@ -3001,6 +3001,11 @@ class DescribeBackUpJobRequest(AbstractModel):
3001
3001
  r"""
3002
3002
  :param _InstanceId: 集群id
3003
3003
  :type InstanceId: str
3004
+ :param _ApplicationType: 任务类型:
3005
+ 0-不限制,或使用TypeFilters过滤;
3006
+ 1-备份恢复(包括周期备份和一次性备份);
3007
+ 2-数据迁移(包括跨集群迁移和cos迁移)
3008
+ :type ApplicationType: int
3004
3009
  :param _PageSize: 分页大小
3005
3010
  :type PageSize: int
3006
3011
  :param _PageNum: 页号
@@ -3013,6 +3018,7 @@ class DescribeBackUpJobRequest(AbstractModel):
3013
3018
  :type JobIdFiltersStr: str
3014
3019
  """
3015
3020
  self._InstanceId = None
3021
+ self._ApplicationType = None
3016
3022
  self._PageSize = None
3017
3023
  self._PageNum = None
3018
3024
  self._BeginTime = None
@@ -3027,6 +3033,14 @@ class DescribeBackUpJobRequest(AbstractModel):
3027
3033
  def InstanceId(self, InstanceId):
3028
3034
  self._InstanceId = InstanceId
3029
3035
 
3036
+ @property
3037
+ def ApplicationType(self):
3038
+ return self._ApplicationType
3039
+
3040
+ @ApplicationType.setter
3041
+ def ApplicationType(self, ApplicationType):
3042
+ self._ApplicationType = ApplicationType
3043
+
3030
3044
  @property
3031
3045
  def PageSize(self):
3032
3046
  return self._PageSize
@@ -3070,6 +3084,7 @@ class DescribeBackUpJobRequest(AbstractModel):
3070
3084
 
3071
3085
  def _deserialize(self, params):
3072
3086
  self._InstanceId = params.get("InstanceId")
3087
+ self._ApplicationType = params.get("ApplicationType")
3073
3088
  self._PageSize = params.get("PageSize")
3074
3089
  self._PageNum = params.get("PageNum")
3075
3090
  self._BeginTime = params.get("BeginTime")
@@ -3133,6 +3148,36 @@ class DescribeBackUpSchedulesRequest(AbstractModel):
3133
3148
 
3134
3149
  """
3135
3150
 
3151
+ def __init__(self):
3152
+ r"""
3153
+ :param _ApplicationType: 任务类型
3154
+ 0-不限制,或使用TypeFilters过滤;
3155
+ 1-备份恢复(包括周期备份和一次性备份);
3156
+ 2-数据迁移(包括跨集群迁移和cos迁移)
3157
+ :type ApplicationType: int
3158
+ """
3159
+ self._ApplicationType = None
3160
+
3161
+ @property
3162
+ def ApplicationType(self):
3163
+ return self._ApplicationType
3164
+
3165
+ @ApplicationType.setter
3166
+ def ApplicationType(self, ApplicationType):
3167
+ self._ApplicationType = ApplicationType
3168
+
3169
+
3170
+ def _deserialize(self, params):
3171
+ self._ApplicationType = params.get("ApplicationType")
3172
+ memeber_set = set(params.keys())
3173
+ for name, value in vars(self).items():
3174
+ property_name = name[1:]
3175
+ if property_name in memeber_set:
3176
+ memeber_set.remove(property_name)
3177
+ if len(memeber_set) > 0:
3178
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
3179
+
3180
+
3136
3181
 
3137
3182
  class DescribeBackUpSchedulesResponse(AbstractModel):
3138
3183
  """DescribeBackUpSchedules返回参数结构体
@@ -337,6 +337,9 @@ class ActionLibraryListResult(AbstractModel):
337
337
  :param _IsNewAction: 是否是新动作
338
338
  注意:此字段可能返回 null,表示取不到有效值。
339
339
  :type IsNewAction: bool
340
+ :param _ObjectTypeId: 对象类型ID
341
+ 注意:此字段可能返回 null,表示取不到有效值。
342
+ :type ObjectTypeId: int
340
343
  """
341
344
  self._ActionName = None
342
345
  self._Desc = None
@@ -358,6 +361,7 @@ class ActionLibraryListResult(AbstractModel):
358
361
  self._ObjectType = None
359
362
  self._MetricIdList = None
360
363
  self._IsNewAction = None
364
+ self._ObjectTypeId = None
361
365
 
362
366
  @property
363
367
  def ActionName(self):
@@ -519,6 +523,14 @@ class ActionLibraryListResult(AbstractModel):
519
523
  def IsNewAction(self, IsNewAction):
520
524
  self._IsNewAction = IsNewAction
521
525
 
526
+ @property
527
+ def ObjectTypeId(self):
528
+ return self._ObjectTypeId
529
+
530
+ @ObjectTypeId.setter
531
+ def ObjectTypeId(self, ObjectTypeId):
532
+ self._ObjectTypeId = ObjectTypeId
533
+
522
534
 
523
535
  def _deserialize(self, params):
524
536
  self._ActionName = params.get("ActionName")
@@ -541,6 +553,7 @@ class ActionLibraryListResult(AbstractModel):
541
553
  self._ObjectType = params.get("ObjectType")
542
554
  self._MetricIdList = params.get("MetricIdList")
543
555
  self._IsNewAction = params.get("IsNewAction")
556
+ self._ObjectTypeId = params.get("ObjectTypeId")
544
557
  memeber_set = set(params.keys())
545
558
  for name, value in vars(self).items():
546
559
  property_name = name[1:]
@@ -4771,6 +4784,9 @@ class TaskReportInfo(AbstractModel):
4771
4784
  :type ArchiveStage: int
4772
4785
  :param _ArchiveTime: 归档时间
4773
4786
  :type ArchiveTime: str
4787
+ :param _ArchiveUuid: 归档ID
4788
+ 注意:此字段可能返回 null,表示取不到有效值。
4789
+ :type ArchiveUuid: str
4774
4790
  """
4775
4791
  self._Stage = None
4776
4792
  self._CreateTime = None
@@ -4780,6 +4796,7 @@ class TaskReportInfo(AbstractModel):
4780
4796
  self._Log = None
4781
4797
  self._ArchiveStage = None
4782
4798
  self._ArchiveTime = None
4799
+ self._ArchiveUuid = None
4783
4800
 
4784
4801
  @property
4785
4802
  def Stage(self):
@@ -4845,6 +4862,14 @@ class TaskReportInfo(AbstractModel):
4845
4862
  def ArchiveTime(self, ArchiveTime):
4846
4863
  self._ArchiveTime = ArchiveTime
4847
4864
 
4865
+ @property
4866
+ def ArchiveUuid(self):
4867
+ return self._ArchiveUuid
4868
+
4869
+ @ArchiveUuid.setter
4870
+ def ArchiveUuid(self, ArchiveUuid):
4871
+ self._ArchiveUuid = ArchiveUuid
4872
+
4848
4873
 
4849
4874
  def _deserialize(self, params):
4850
4875
  self._Stage = params.get("Stage")
@@ -4855,6 +4880,7 @@ class TaskReportInfo(AbstractModel):
4855
4880
  self._Log = params.get("Log")
4856
4881
  self._ArchiveStage = params.get("ArchiveStage")
4857
4882
  self._ArchiveTime = params.get("ArchiveTime")
4883
+ self._ArchiveUuid = params.get("ArchiveUuid")
4858
4884
  memeber_set = set(params.keys())
4859
4885
  for name, value in vars(self).items():
4860
4886
  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
 
@@ -2167,7 +2259,8 @@ class ClsClient(AbstractClient):
2167
2259
 
2168
2260
 
2169
2261
  def QueryMetric(self, request):
2170
- """查询指定时刻指标的最新值
2262
+ """查询指定时刻指标的最新值。
2263
+ 如果该时刻向前推5分钟内均无指标数据,则无相应的查询结果。
2171
2264
 
2172
2265
  :param request: Request instance for QueryMetric.
2173
2266
  :type request: :class:`tencentcloud.cls.v20201016.models.QueryMetricRequest`