tencentcloud-sdk-python 3.0.1445__py2.py3-none-any.whl → 3.0.1446__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.

Potentially problematic release.


This version of tencentcloud-sdk-python might be problematic. Click here for more details.

Files changed (26) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/cbs/v20170312/models.py +17 -2
  3. tencentcloud/ccc/v20200210/models.py +21 -0
  4. tencentcloud/dlc/v20210125/dlc_client.py +161 -0
  5. tencentcloud/dlc/v20210125/errorcodes.py +3 -0
  6. tencentcloud/dlc/v20210125/models.py +1019 -0
  7. tencentcloud/es/v20180416/models.py +85 -0
  8. tencentcloud/ess/v20201111/models.py +32 -0
  9. tencentcloud/essbasic/v20210526/models.py +62 -0
  10. tencentcloud/ioa/v20220601/models.py +78 -50
  11. tencentcloud/mps/v20190612/models.py +55 -10
  12. tencentcloud/postgres/v20170312/models.py +2 -2
  13. tencentcloud/tbaas/v20180416/models.py +12 -12
  14. tencentcloud/tcaplusdb/v20190823/models.py +0 -328
  15. tencentcloud/tdmq/v20200217/errorcodes.py +3 -0
  16. tencentcloud/tdmq/v20200217/models.py +51 -17
  17. tencentcloud/tdmq/v20200217/tdmq_client.py +23 -0
  18. tencentcloud/trocket/v20230308/models.py +2 -2
  19. tencentcloud/tse/v20201207/models.py +15 -0
  20. tencentcloud/tsf/v20180326/models.py +10 -8
  21. tencentcloud/vod/v20180717/models.py +4 -12
  22. {tencentcloud_sdk_python-3.0.1445.dist-info → tencentcloud_sdk_python-3.0.1446.dist-info}/METADATA +1 -1
  23. {tencentcloud_sdk_python-3.0.1445.dist-info → tencentcloud_sdk_python-3.0.1446.dist-info}/RECORD +26 -26
  24. {tencentcloud_sdk_python-3.0.1445.dist-info → tencentcloud_sdk_python-3.0.1446.dist-info}/LICENSE +0 -0
  25. {tencentcloud_sdk_python-3.0.1445.dist-info → tencentcloud_sdk_python-3.0.1446.dist-info}/WHEEL +0 -0
  26. {tencentcloud_sdk_python-3.0.1445.dist-info → tencentcloud_sdk_python-3.0.1446.dist-info}/top_level.txt +0 -0
@@ -18013,11 +18013,14 @@ class CreateLiveRecordTemplateRequest(AbstractModel):
18013
18013
  :type Name: str
18014
18014
  :param _Comment: 模板描述信息,长度限制:256 个字符。
18015
18015
  :type Comment: str
18016
+ :param _RecordType: 录制类型,取值为video(音视频录制)、audio(纯音频录制)、auto(自动探测)。不填时默认值为video。
18017
+ :type RecordType: str
18016
18018
  """
18017
18019
  self._HLSConfigure = None
18018
18020
  self._MP4Configure = None
18019
18021
  self._Name = None
18020
18022
  self._Comment = None
18023
+ self._RecordType = None
18021
18024
 
18022
18025
  @property
18023
18026
  def HLSConfigure(self):
@@ -18063,6 +18066,17 @@ class CreateLiveRecordTemplateRequest(AbstractModel):
18063
18066
  def Comment(self, Comment):
18064
18067
  self._Comment = Comment
18065
18068
 
18069
+ @property
18070
+ def RecordType(self):
18071
+ """录制类型,取值为video(音视频录制)、audio(纯音频录制)、auto(自动探测)。不填时默认值为video。
18072
+ :rtype: str
18073
+ """
18074
+ return self._RecordType
18075
+
18076
+ @RecordType.setter
18077
+ def RecordType(self, RecordType):
18078
+ self._RecordType = RecordType
18079
+
18066
18080
 
18067
18081
  def _deserialize(self, params):
18068
18082
  if params.get("HLSConfigure") is not None:
@@ -18073,6 +18087,7 @@ class CreateLiveRecordTemplateRequest(AbstractModel):
18073
18087
  self._MP4Configure._deserialize(params.get("MP4Configure"))
18074
18088
  self._Name = params.get("Name")
18075
18089
  self._Comment = params.get("Comment")
18090
+ self._RecordType = params.get("RecordType")
18076
18091
  memeber_set = set(params.keys())
18077
18092
  for name, value in vars(self).items():
18078
18093
  property_name = name[1:]
@@ -38613,6 +38628,8 @@ class LiveRecordTemplate(AbstractModel):
38613
38628
  :type CreateTime: str
38614
38629
  :param _UpdateTime: 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
38615
38630
  :type UpdateTime: str
38631
+ :param _RecordType: 录制类型,取值为video(音视频录制)、audio(纯音频录制)、auto(自动探测)。
38632
+ :type RecordType: str
38616
38633
  """
38617
38634
  self._Definition = None
38618
38635
  self._HLSConfigure = None
@@ -38622,6 +38639,7 @@ class LiveRecordTemplate(AbstractModel):
38622
38639
  self._Type = None
38623
38640
  self._CreateTime = None
38624
38641
  self._UpdateTime = None
38642
+ self._RecordType = None
38625
38643
 
38626
38644
  @property
38627
38645
  def Definition(self):
@@ -38713,6 +38731,17 @@ class LiveRecordTemplate(AbstractModel):
38713
38731
  def UpdateTime(self, UpdateTime):
38714
38732
  self._UpdateTime = UpdateTime
38715
38733
 
38734
+ @property
38735
+ def RecordType(self):
38736
+ """录制类型,取值为video(音视频录制)、audio(纯音频录制)、auto(自动探测)。
38737
+ :rtype: str
38738
+ """
38739
+ return self._RecordType
38740
+
38741
+ @RecordType.setter
38742
+ def RecordType(self, RecordType):
38743
+ self._RecordType = RecordType
38744
+
38716
38745
 
38717
38746
  def _deserialize(self, params):
38718
38747
  self._Definition = params.get("Definition")
@@ -38727,6 +38756,7 @@ class LiveRecordTemplate(AbstractModel):
38727
38756
  self._Type = params.get("Type")
38728
38757
  self._CreateTime = params.get("CreateTime")
38729
38758
  self._UpdateTime = params.get("UpdateTime")
38759
+ self._RecordType = params.get("RecordType")
38730
38760
  memeber_set = set(params.keys())
38731
38761
  for name, value in vars(self).items():
38732
38762
  property_name = name[1:]
@@ -41229,20 +41259,20 @@ class LiveStreamTaskNotifyConfig(AbstractModel):
41229
41259
  def __init__(self):
41230
41260
  r"""
41231
41261
  :param _NotifyType: 通知类型:
41232
- "CMQ":回调消息写入cmq队列;
41262
+ TDMQ-CMQ:消息队列
41233
41263
  "URL": 指定URL时HTTP回调推送到 NotifyUrl 指定的地址,回调协议http+json,包体内容同[解析直播事件通知接口](https://cloud.tencent.com/document/product/862/39229) 的输出参数
41234
41264
 
41235
41265
  <font color="red"> 注:不填或为空时默认 CMQ,如需采用其他类型需填写对应类型值。 </font>
41236
41266
  :type NotifyType: str
41237
41267
  :param _NotifyUrl: HTTP回调地址,NotifyType为URL时必填。
41238
41268
  :type NotifyUrl: str
41239
- :param _CmqModel: CMQ 的模型,有 Queue 和 Topic 两种,目前仅支持 Queue。
41269
+ :param _CmqModel: Queue 和 Topic 两种模型。
41240
41270
  :type CmqModel: str
41241
- :param _CmqRegion: CMQ 的园区,如 sh,bj 等。
41271
+ :param _CmqRegion: TDMQ-CMQ 的园区,如 sh,bj 等。
41242
41272
  :type CmqRegion: str
41243
- :param _QueueName: 当模型为 Queue 时有效,表示接收事件通知的 CMQ 的队列名。
41273
+ :param _QueueName: 当模型为 Queue 时有效,表示接收事件通知的 TDMQ-CMQ 的队列名。
41244
41274
  :type QueueName: str
41245
- :param _TopicName: 当模型为 Topic 时有效,表示接收事件通知的 CMQ 的主题名。
41275
+ :param _TopicName: 当模型为 Topic 时有效,表示接收事件通知的 TDMQ-CMQ 的主题名。
41246
41276
  :type TopicName: str
41247
41277
  :param _NotifyKey: 用于生成回调签名的 Key。
41248
41278
  注意:此字段可能返回 null,表示取不到有效值。
@@ -41259,7 +41289,7 @@ class LiveStreamTaskNotifyConfig(AbstractModel):
41259
41289
  @property
41260
41290
  def NotifyType(self):
41261
41291
  """通知类型:
41262
- "CMQ":回调消息写入cmq队列;
41292
+ TDMQ-CMQ:消息队列
41263
41293
  "URL": 指定URL时HTTP回调推送到 NotifyUrl 指定的地址,回调协议http+json,包体内容同[解析直播事件通知接口](https://cloud.tencent.com/document/product/862/39229) 的输出参数
41264
41294
 
41265
41295
  <font color="red"> 注:不填或为空时默认 CMQ,如需采用其他类型需填写对应类型值。 </font>
@@ -41284,7 +41314,7 @@ class LiveStreamTaskNotifyConfig(AbstractModel):
41284
41314
 
41285
41315
  @property
41286
41316
  def CmqModel(self):
41287
- """CMQ 的模型,有 Queue 和 Topic 两种,目前仅支持 Queue。
41317
+ """ Queue 和 Topic 两种模型。
41288
41318
  :rtype: str
41289
41319
  """
41290
41320
  return self._CmqModel
@@ -41295,7 +41325,7 @@ class LiveStreamTaskNotifyConfig(AbstractModel):
41295
41325
 
41296
41326
  @property
41297
41327
  def CmqRegion(self):
41298
- """CMQ 的园区,如 sh,bj 等。
41328
+ """TDMQ-CMQ 的园区,如 sh,bj 等。
41299
41329
  :rtype: str
41300
41330
  """
41301
41331
  return self._CmqRegion
@@ -41306,7 +41336,7 @@ class LiveStreamTaskNotifyConfig(AbstractModel):
41306
41336
 
41307
41337
  @property
41308
41338
  def QueueName(self):
41309
- """当模型为 Queue 时有效,表示接收事件通知的 CMQ 的队列名。
41339
+ """当模型为 Queue 时有效,表示接收事件通知的 TDMQ-CMQ 的队列名。
41310
41340
  :rtype: str
41311
41341
  """
41312
41342
  return self._QueueName
@@ -41317,7 +41347,7 @@ class LiveStreamTaskNotifyConfig(AbstractModel):
41317
41347
 
41318
41348
  @property
41319
41349
  def TopicName(self):
41320
- """当模型为 Topic 时有效,表示接收事件通知的 CMQ 的主题名。
41350
+ """当模型为 Topic 时有效,表示接收事件通知的 TDMQ-CMQ 的主题名。
41321
41351
  :rtype: str
41322
41352
  """
41323
41353
  return self._TopicName
@@ -47193,12 +47223,15 @@ class ModifyLiveRecordTemplateRequest(AbstractModel):
47193
47223
  :type Name: str
47194
47224
  :param _Comment: 模板描述信息,长度限制:256 个字符。
47195
47225
  :type Comment: str
47226
+ :param _RecordType: 录制类型,取值为video(音视频录制)、audio(纯音频录制)、auto(自动探测)。
47227
+ :type RecordType: str
47196
47228
  """
47197
47229
  self._Definition = None
47198
47230
  self._HLSConfigure = None
47199
47231
  self._MP4Configure = None
47200
47232
  self._Name = None
47201
47233
  self._Comment = None
47234
+ self._RecordType = None
47202
47235
 
47203
47236
  @property
47204
47237
  def Definition(self):
@@ -47255,6 +47288,17 @@ class ModifyLiveRecordTemplateRequest(AbstractModel):
47255
47288
  def Comment(self, Comment):
47256
47289
  self._Comment = Comment
47257
47290
 
47291
+ @property
47292
+ def RecordType(self):
47293
+ """录制类型,取值为video(音视频录制)、audio(纯音频录制)、auto(自动探测)。
47294
+ :rtype: str
47295
+ """
47296
+ return self._RecordType
47297
+
47298
+ @RecordType.setter
47299
+ def RecordType(self, RecordType):
47300
+ self._RecordType = RecordType
47301
+
47258
47302
 
47259
47303
  def _deserialize(self, params):
47260
47304
  self._Definition = params.get("Definition")
@@ -47266,6 +47310,7 @@ class ModifyLiveRecordTemplateRequest(AbstractModel):
47266
47310
  self._MP4Configure._deserialize(params.get("MP4Configure"))
47267
47311
  self._Name = params.get("Name")
47268
47312
  self._Comment = params.get("Comment")
47313
+ self._RecordType = params.get("RecordType")
47269
47314
  memeber_set = set(params.keys())
47270
47315
  for name, value in vars(self).items():
47271
47316
  property_name = name[1:]
@@ -12950,14 +12950,14 @@ class IsolateDBInstancesRequest(AbstractModel):
12950
12950
 
12951
12951
  def __init__(self):
12952
12952
  r"""
12953
- :param _DBInstanceIdSet: 实例ID集合。可通过[DescribeDBInstances](https://cloud.tencent.com/document/api/409/16773)接口获取。注意:当前已不支持同时隔离多个实例,这里只能传入单个实例ID。
12953
+ :param _DBInstanceIdSet: 实例ID集合。可通过[DescribeDBInstances](https://cloud.tencent.com/document/api/409/16773)接口获取。注意:不推荐同时隔离多个实例。建议每次操作仅传入单个实例ID。
12954
12954
  :type DBInstanceIdSet: list of str
12955
12955
  """
12956
12956
  self._DBInstanceIdSet = None
12957
12957
 
12958
12958
  @property
12959
12959
  def DBInstanceIdSet(self):
12960
- """实例ID集合。可通过[DescribeDBInstances](https://cloud.tencent.com/document/api/409/16773)接口获取。注意:当前已不支持同时隔离多个实例,这里只能传入单个实例ID。
12960
+ """实例ID集合。可通过[DescribeDBInstances](https://cloud.tencent.com/document/api/409/16773)接口获取。注意:不推荐同时隔离多个实例。建议每次操作仅传入单个实例ID。
12961
12961
  :rtype: list of str
12962
12962
  """
12963
12963
  return self._DBInstanceIdSet
@@ -3094,9 +3094,9 @@ class InvokeChainMakerDemoContractRequest(AbstractModel):
3094
3094
  :type ChainId: str
3095
3095
  :param _ContractName: 合约名称,可在合约管理中获取
3096
3096
  :type ContractName: str
3097
- :param _FuncName: 合约方法名
3097
+ :param _FuncName: 合约方法名,由合约代码定义,可以参考合约详情中的合约调用定义
3098
3098
  :type FuncName: str
3099
- :param _FuncParam: 合约方法入参,json格式字符串,key/value都是string类型的map
3099
+ :param _FuncParam: 合约方法入参,json格式字符串,key/value都是string类型的map,由合约代码定义,可以参考合约详情中的合约调用定义
3100
3100
  :type FuncParam: str
3101
3101
  :param _AsyncFlag: 是否异步执行,1为是,否则为0;如果异步执行,可使用返回值中的交易TxID查询执行结果
3102
3102
  :type AsyncFlag: int
@@ -3143,7 +3143,7 @@ class InvokeChainMakerDemoContractRequest(AbstractModel):
3143
3143
 
3144
3144
  @property
3145
3145
  def FuncName(self):
3146
- """合约方法名
3146
+ """合约方法名,由合约代码定义,可以参考合约详情中的合约调用定义
3147
3147
  :rtype: str
3148
3148
  """
3149
3149
  return self._FuncName
@@ -3154,7 +3154,7 @@ class InvokeChainMakerDemoContractRequest(AbstractModel):
3154
3154
 
3155
3155
  @property
3156
3156
  def FuncParam(self):
3157
- """合约方法入参,json格式字符串,key/value都是string类型的map
3157
+ """合约方法入参,json格式字符串,key/value都是string类型的map,由合约代码定义,可以参考合约详情中的合约调用定义
3158
3158
  :rtype: str
3159
3159
  """
3160
3160
  return self._FuncParam
@@ -3897,9 +3897,9 @@ class QueryChainMakerContractRequest(AbstractModel):
3897
3897
  :type ChainId: str
3898
3898
  :param _ContractName: 合约名称,可在合约管理中获取
3899
3899
  :type ContractName: str
3900
- :param _FuncName: 合约方法名
3900
+ :param _FuncName: 合约方法名,由合约代码定义
3901
3901
  :type FuncName: str
3902
- :param _FuncParam: 合约方法入参,json格式字符串,key/value都是string类型的map
3902
+ :param _FuncParam: 合约方法入参,json格式字符串,key/value都是string类型的map,由合约代码定义
3903
3903
  :type FuncParam: str
3904
3904
  """
3905
3905
  self._ClusterId = None
@@ -3943,7 +3943,7 @@ class QueryChainMakerContractRequest(AbstractModel):
3943
3943
 
3944
3944
  @property
3945
3945
  def FuncName(self):
3946
- """合约方法名
3946
+ """合约方法名,由合约代码定义
3947
3947
  :rtype: str
3948
3948
  """
3949
3949
  return self._FuncName
@@ -3954,7 +3954,7 @@ class QueryChainMakerContractRequest(AbstractModel):
3954
3954
 
3955
3955
  @property
3956
3956
  def FuncParam(self):
3957
- """合约方法入参,json格式字符串,key/value都是string类型的map
3957
+ """合约方法入参,json格式字符串,key/value都是string类型的map,由合约代码定义
3958
3958
  :rtype: str
3959
3959
  """
3960
3960
  return self._FuncParam
@@ -4197,9 +4197,9 @@ class QueryChainMakerDemoContractRequest(AbstractModel):
4197
4197
  :type ChainId: str
4198
4198
  :param _ContractName: 合约名称,可在合约管理中获取
4199
4199
  :type ContractName: str
4200
- :param _FuncName: 合约方法名
4200
+ :param _FuncName: 合约方法名,由合约代码定义,可以参考合约详情中的合约调用定义
4201
4201
  :type FuncName: str
4202
- :param _FuncParam: 合约方法入参,json格式字符串,key/value都是string类型的map
4202
+ :param _FuncParam: 合约方法入参,json格式字符串,key/value都是string类型的map,由合约代码定义,可以参考合约详情中的合约调用定义
4203
4203
  :type FuncParam: str
4204
4204
  """
4205
4205
  self._ClusterId = None
@@ -4243,7 +4243,7 @@ class QueryChainMakerDemoContractRequest(AbstractModel):
4243
4243
 
4244
4244
  @property
4245
4245
  def FuncName(self):
4246
- """合约方法名
4246
+ """合约方法名,由合约代码定义,可以参考合约详情中的合约调用定义
4247
4247
  :rtype: str
4248
4248
  """
4249
4249
  return self._FuncName
@@ -4254,7 +4254,7 @@ class QueryChainMakerDemoContractRequest(AbstractModel):
4254
4254
 
4255
4255
  @property
4256
4256
  def FuncParam(self):
4257
- """合约方法入参,json格式字符串,key/value都是string类型的map
4257
+ """合约方法入参,json格式字符串,key/value都是string类型的map,由合约代码定义,可以参考合约详情中的合约调用定义
4258
4258
  :rtype: str
4259
4259
  """
4260
4260
  return self._FuncParam