tencentcloud-sdk-python 3.0.1256__py2.py3-none-any.whl → 3.0.1257__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 (26) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/ccc/v20200210/models.py +12 -0
  3. tencentcloud/cdb/v20170320/models.py +12 -0
  4. tencentcloud/cdwdoris/v20211228/models.py +13 -0
  5. tencentcloud/cfw/v20190904/models.py +6 -0
  6. tencentcloud/ckafka/v20190819/models.py +1 -1
  7. tencentcloud/cwp/v20180228/models.py +5 -4
  8. tencentcloud/dlc/v20210125/models.py +13 -0
  9. tencentcloud/emr/v20190103/models.py +12 -0
  10. tencentcloud/ess/v20201111/models.py +28 -3
  11. tencentcloud/essbasic/v20210526/models.py +26 -3
  12. tencentcloud/iss/v20230517/models.py +25 -0
  13. tencentcloud/mqtt/v20240516/models.py +2 -2
  14. tencentcloud/organization/v20210331/errorcodes.py +1 -1
  15. tencentcloud/partners/v20180321/models.py +71 -0
  16. tencentcloud/partners/v20180321/partners_client.py +23 -0
  17. tencentcloud/ssl/v20191205/models.py +43 -2
  18. tencentcloud/tcss/v20201101/models.py +343 -0
  19. tencentcloud/teo/v20220901/errorcodes.py +24 -0
  20. tencentcloud/teo/v20220901/models.py +6 -6
  21. tencentcloud/vpc/v20170312/models.py +3 -4
  22. {tencentcloud_sdk_python-3.0.1256.dist-info → tencentcloud_sdk_python-3.0.1257.dist-info}/METADATA +1 -1
  23. {tencentcloud_sdk_python-3.0.1256.dist-info → tencentcloud_sdk_python-3.0.1257.dist-info}/RECORD +26 -26
  24. {tencentcloud_sdk_python-3.0.1256.dist-info → tencentcloud_sdk_python-3.0.1257.dist-info}/LICENSE +0 -0
  25. {tencentcloud_sdk_python-3.0.1256.dist-info → tencentcloud_sdk_python-3.0.1257.dist-info}/WHEEL +0 -0
  26. {tencentcloud_sdk_python-3.0.1256.dist-info → tencentcloud_sdk_python-3.0.1257.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.1256'
17
+ __version__ = '3.0.1257'
@@ -8874,11 +8874,14 @@ class OwnNumberApplyDetailItem(AbstractModel):
8874
8874
  :type MaxCallCount: int
8875
8875
  :param _MaxCallPSec: 每秒最大并发数
8876
8876
  :type MaxCallPSec: int
8877
+ :param _OutboundCalleeFormat: 呼出被叫格式,使用 {+E.164} 或 {E.164},
8878
+ :type OutboundCalleeFormat: str
8877
8879
  """
8878
8880
  self._CallType = None
8879
8881
  self._PhoneNumber = None
8880
8882
  self._MaxCallCount = None
8881
8883
  self._MaxCallPSec = None
8884
+ self._OutboundCalleeFormat = None
8882
8885
 
8883
8886
  @property
8884
8887
  def CallType(self):
@@ -8912,12 +8915,21 @@ class OwnNumberApplyDetailItem(AbstractModel):
8912
8915
  def MaxCallPSec(self, MaxCallPSec):
8913
8916
  self._MaxCallPSec = MaxCallPSec
8914
8917
 
8918
+ @property
8919
+ def OutboundCalleeFormat(self):
8920
+ return self._OutboundCalleeFormat
8921
+
8922
+ @OutboundCalleeFormat.setter
8923
+ def OutboundCalleeFormat(self, OutboundCalleeFormat):
8924
+ self._OutboundCalleeFormat = OutboundCalleeFormat
8925
+
8915
8926
 
8916
8927
  def _deserialize(self, params):
8917
8928
  self._CallType = params.get("CallType")
8918
8929
  self._PhoneNumber = params.get("PhoneNumber")
8919
8930
  self._MaxCallCount = params.get("MaxCallCount")
8920
8931
  self._MaxCallPSec = params.get("MaxCallPSec")
8932
+ self._OutboundCalleeFormat = params.get("OutboundCalleeFormat")
8921
8933
  memeber_set = set(params.keys())
8922
8934
  for name, value in vars(self).items():
8923
8935
  property_name = name[1:]
@@ -26459,9 +26459,12 @@ class ReadonlyNode(AbstractModel):
26459
26459
  :type IsRandomZone: str
26460
26460
  :param _Zone: 指定该节点分布在哪个可用区。
26461
26461
  :type Zone: str
26462
+ :param _NodeId: 升级集群版实例时,如果要调整只读节点可用区,需要指定节点id。
26463
+ :type NodeId: str
26462
26464
  """
26463
26465
  self._IsRandomZone = None
26464
26466
  self._Zone = None
26467
+ self._NodeId = None
26465
26468
 
26466
26469
  @property
26467
26470
  def IsRandomZone(self):
@@ -26479,10 +26482,19 @@ class ReadonlyNode(AbstractModel):
26479
26482
  def Zone(self, Zone):
26480
26483
  self._Zone = Zone
26481
26484
 
26485
+ @property
26486
+ def NodeId(self):
26487
+ return self._NodeId
26488
+
26489
+ @NodeId.setter
26490
+ def NodeId(self, NodeId):
26491
+ self._NodeId = NodeId
26492
+
26482
26493
 
26483
26494
  def _deserialize(self, params):
26484
26495
  self._IsRandomZone = params.get("IsRandomZone")
26485
26496
  self._Zone = params.get("Zone")
26497
+ self._NodeId = params.get("NodeId")
26486
26498
  memeber_set = set(params.keys())
26487
26499
  for name, value in vars(self).items():
26488
26500
  property_name = name[1:]
@@ -221,6 +221,9 @@ class BackUpJobDisplay(AbstractModel):
221
221
  :param _BackupCosInfo: 备份实例中关于cos的信息
222
222
  注意:此字段可能返回 null,表示取不到有效值。
223
223
  :type BackupCosInfo: :class:`tencentcloud.cdwdoris.v20211228.models.BackupCosInfo`
224
+ :param _IsUserDefineBucket: 是否使用的自定义桶
225
+ 注意:此字段可能返回 null,表示取不到有效值。
226
+ :type IsUserDefineBucket: bool
224
227
  """
225
228
  self._JobId = None
226
229
  self._Snapshot = None
@@ -234,6 +237,7 @@ class BackUpJobDisplay(AbstractModel):
234
237
  self._DorisSourceInfo = None
235
238
  self._JobStatusNum = None
236
239
  self._BackupCosInfo = None
240
+ self._IsUserDefineBucket = None
237
241
 
238
242
  @property
239
243
  def JobId(self):
@@ -331,6 +335,14 @@ class BackUpJobDisplay(AbstractModel):
331
335
  def BackupCosInfo(self, BackupCosInfo):
332
336
  self._BackupCosInfo = BackupCosInfo
333
337
 
338
+ @property
339
+ def IsUserDefineBucket(self):
340
+ return self._IsUserDefineBucket
341
+
342
+ @IsUserDefineBucket.setter
343
+ def IsUserDefineBucket(self, IsUserDefineBucket):
344
+ self._IsUserDefineBucket = IsUserDefineBucket
345
+
334
346
 
335
347
  def _deserialize(self, params):
336
348
  self._JobId = params.get("JobId")
@@ -349,6 +361,7 @@ class BackUpJobDisplay(AbstractModel):
349
361
  if params.get("BackupCosInfo") is not None:
350
362
  self._BackupCosInfo = BackupCosInfo()
351
363
  self._BackupCosInfo._deserialize(params.get("BackupCosInfo"))
364
+ self._IsUserDefineBucket = params.get("IsUserDefineBucket")
352
365
  memeber_set = set(params.keys())
353
366
  for name, value in vars(self).items():
354
367
  property_name = name[1:]
@@ -3634,6 +3634,12 @@ class CreateRuleItem(AbstractModel):
3634
3634
  :param _TargetType: 访问目的类型:入向规则时类型可以为ip,net,template,instance,group,tag;出向规则时可以为 ip,net,domain,template,location
3635
3635
  :type TargetType: str
3636
3636
  :param _Protocol: 协议,可选的值: TCP UDP ICMP ANY HTTP HTTPS HTTP/HTTPS SMTP SMTPS SMTP/SMTPS FTP DNS
3637
+ 1. 入方向 旁路防火墙/全局规则 仅支持TCP
3638
+
3639
+ 2.出方向 旁路防火墙/全局规则 仅支持TCP HTTP/HTTPS TLS/SSL
3640
+
3641
+ 3.domain 请选择七层协议 如HTTP/HTTPS
3642
+
3637
3643
  :type Protocol: str
3638
3644
  :param _RuleAction: 访问控制策略中设置的流量通过云防火墙的方式。取值: accept:放行 drop:拒绝 log:观察
3639
3645
  :type RuleAction: str
@@ -6177,7 +6177,7 @@ class CreateTopicRequest(AbstractModel):
6177
6177
  :type RetentionMs: int
6178
6178
  :param _SegmentMs: Segment分片滚动的时长,单位ms,当前最小为3600000ms
6179
6179
  :type SegmentMs: int
6180
- :param _MaxMessageBytes: 主题消息最大值,单位为 Byte,最小值1024Byte(即1KB),最大值为8388608Byte(即8MB)。
6180
+ :param _MaxMessageBytes: 主题消息最大值,单位为 Byte,最小值1024Byte(即1KB),最大值为12582912Byte(即12MB)
6181
6181
  :type MaxMessageBytes: int
6182
6182
  :param _EnableAclRule: 预设ACL规则, 1:打开 0:关闭,默认不打开
6183
6183
  :type EnableAclRule: int
@@ -4321,7 +4321,7 @@ class AssetProcessBaseInfo(AbstractModel):
4321
4321
  :type ParentProcessName: str
4322
4322
  :param _Status: 进程状态
4323
4323
  :type Status: str
4324
- :param _HasSign: 数字签名:0无,1有, 999 空,仅windows
4324
+ :param _HasSign: 数字签名:0无,1有, 999 空,仅Windows
4325
4325
  :type HasSign: int
4326
4326
  :param _InstallByPackage: 是否通过安装包安装::0否,1是, 999 空,仅linux
4327
4327
  :type InstallByPackage: int
@@ -6070,7 +6070,7 @@ class AssetWebFrameBaseInfo(AbstractModel):
6070
6070
  :param _Tag: 主机标签
6071
6071
  注意:此字段可能返回 null,表示取不到有效值。
6072
6072
  :type Tag: list of MachineTag
6073
- :param _Name: 数据库名
6073
+ :param _Name: Web应用名
6074
6074
  :type Name: str
6075
6075
  :param _Version: 版本
6076
6076
  :type Version: str
@@ -6822,7 +6822,7 @@ class AssetWebServiceBaseInfo(AbstractModel):
6822
6822
  :param _Tag: 主机标签
6823
6823
  注意:此字段可能返回 null,表示取不到有效值。
6824
6824
  :type Tag: list of MachineTag
6825
- :param _Name: 数据库名
6825
+ :param _Name: 服务名
6826
6826
  :type Name: str
6827
6827
  :param _Version: 版本
6828
6828
  :type Version: str
@@ -66981,7 +66981,8 @@ class MachineSimple(AbstractModel):
66981
66981
  :type Tag: list of MachineTag
66982
66982
  :param _RegionInfo: 地域信息
66983
66983
  :type RegionInfo: :class:`tencentcloud.cwp.v20180228.models.RegionInfo`
66984
- :param _InstanceState: 实例状态 TERMINATED_PRO_VERSION 已销毁
66984
+ :param _InstanceState: 实例状态请参考CVM实例列表InstanceState值
66985
+ https://cloud.tencent.com/document/api/213/15753#Instance
66985
66986
  :type InstanceState: str
66986
66987
  :param _ProjectId: 项目ID
66987
66988
  :type ProjectId: int
@@ -8005,6 +8005,9 @@ class DataEngineInfo(AbstractModel):
8005
8005
  :param _EngineNetworkName: 引擎所在网络名称
8006
8006
  注意:此字段可能返回 null,表示取不到有效值。
8007
8007
  :type EngineNetworkName: str
8008
+ :param _IsPoolMode: 是否使用预留池
8009
+ 注意:此字段可能返回 null,表示取不到有效值。
8010
+ :type IsPoolMode: str
8008
8011
  """
8009
8012
  self._DataEngineName = None
8010
8013
  self._EngineType = None
@@ -8059,6 +8062,7 @@ class DataEngineInfo(AbstractModel):
8059
8062
  self._EngineResourceUsedCU = None
8060
8063
  self._AccessInfos = None
8061
8064
  self._EngineNetworkName = None
8065
+ self._IsPoolMode = None
8062
8066
 
8063
8067
  @property
8064
8068
  def DataEngineName(self):
@@ -8484,6 +8488,14 @@ class DataEngineInfo(AbstractModel):
8484
8488
  def EngineNetworkName(self, EngineNetworkName):
8485
8489
  self._EngineNetworkName = EngineNetworkName
8486
8490
 
8491
+ @property
8492
+ def IsPoolMode(self):
8493
+ return self._IsPoolMode
8494
+
8495
+ @IsPoolMode.setter
8496
+ def IsPoolMode(self, IsPoolMode):
8497
+ self._IsPoolMode = IsPoolMode
8498
+
8487
8499
 
8488
8500
  def _deserialize(self, params):
8489
8501
  self._DataEngineName = params.get("DataEngineName")
@@ -8558,6 +8570,7 @@ class DataEngineInfo(AbstractModel):
8558
8570
  obj._deserialize(item)
8559
8571
  self._AccessInfos.append(obj)
8560
8572
  self._EngineNetworkName = params.get("EngineNetworkName")
8573
+ self._IsPoolMode = params.get("IsPoolMode")
8561
8574
  memeber_set = set(params.keys())
8562
8575
  for name, value in vars(self).items():
8563
8576
  property_name = name[1:]
@@ -4136,12 +4136,15 @@ class DeleteUserManagerUserListRequest(AbstractModel):
4136
4136
  :type DisplayStrategy: str
4137
4137
  :param _UserGroupList: 用户组
4138
4138
  :type UserGroupList: list of UserAndGroup
4139
+ :param _DeleteHomeDir: 是否删除家目录,只针对cvm集群
4140
+ :type DeleteHomeDir: bool
4139
4141
  """
4140
4142
  self._InstanceId = None
4141
4143
  self._UserNameList = None
4142
4144
  self._TkeClusterId = None
4143
4145
  self._DisplayStrategy = None
4144
4146
  self._UserGroupList = None
4147
+ self._DeleteHomeDir = None
4145
4148
 
4146
4149
  @property
4147
4150
  def InstanceId(self):
@@ -4183,6 +4186,14 @@ class DeleteUserManagerUserListRequest(AbstractModel):
4183
4186
  def UserGroupList(self, UserGroupList):
4184
4187
  self._UserGroupList = UserGroupList
4185
4188
 
4189
+ @property
4190
+ def DeleteHomeDir(self):
4191
+ return self._DeleteHomeDir
4192
+
4193
+ @DeleteHomeDir.setter
4194
+ def DeleteHomeDir(self, DeleteHomeDir):
4195
+ self._DeleteHomeDir = DeleteHomeDir
4196
+
4186
4197
 
4187
4198
  def _deserialize(self, params):
4188
4199
  self._InstanceId = params.get("InstanceId")
@@ -4195,6 +4206,7 @@ class DeleteUserManagerUserListRequest(AbstractModel):
4195
4206
  obj = UserAndGroup()
4196
4207
  obj._deserialize(item)
4197
4208
  self._UserGroupList.append(obj)
4209
+ self._DeleteHomeDir = params.get("DeleteHomeDir")
4198
4210
  memeber_set = set(params.keys())
4199
4211
  for name, value in vars(self).items():
4200
4212
  property_name = name[1:]
@@ -4519,10 +4519,18 @@ class CreateEmbedWebUrlRequest(AbstractModel):
4519
4519
  <li>PREVIEW_FLOW_DETAIL:生成查看合同详情的嵌入页面(仅支持PC端)</li></ul>
4520
4520
  :type EmbedType: str
4521
4521
  :param _BusinessId: WEB嵌入的业务资源ID
4522
- <ul><li>PREVIEW_SEAL_DETAIL,必填,取值为印章id</li>
4523
- <li>MODIFY_TEMPLATE,PREVIEW_TEMPLATE,必填,取值为模板id</li>
4524
- <li>PREVIEW_FLOW,PREVIEW_FLOW_DETAIL,必填,取值为合同id</li>
4522
+
4523
+ 当EmbedType取值
4524
+ <ul>
4525
+ <li>为PREVIEW_SEAL_DETAIL,必填,取值为印章id。</li>
4526
+ <li>为CREATE_TEMPLATE,非必填,取值为资源id。*资源Id获取可使用接口[上传文件](https://qian.tencent.com/developers/companyApis/templatesAndFiles/UploadFiles)*</li>
4527
+ <li>为MODIFY_TEMPLATE,PREVIEW_TEMPLATE,必填,取值为模板id。</li>
4528
+ <li>为PREVIEW_FLOW,PREVIEW_FLOW_DETAIL,必填,取值为合同id。</li>
4525
4529
  </ul>
4530
+
4531
+ 注意:
4532
+ 1. CREATE_TEMPLATE中的BusinessId仅支持PDF文件类型, 如果您的文件不是PDF, 请使用接口[创建文件转换任务
4533
+ ](https://qian.tencent.com/developers/companyApis/templatesAndFiles/CreateConvertTaskApi) 和[查询转换任务状态](https://qian.tencent.com/developers/companyApis/templatesAndFiles/GetTaskResultApi) 来进行转换成PDF资源。
4526
4534
  :type BusinessId: str
4527
4535
  :param _Agent: 代理企业和员工的信息。
4528
4536
  <br/>在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
@@ -16509,9 +16517,17 @@ class EmbedUrlOption(AbstractModel):
16509
16517
  <ul><li> <b>true</b> :允许在模板预览页展示控件</li>
16510
16518
  <li> <b>false</b> :(默认)不允许在模板预览页展示控件</li></ul>
16511
16519
  :type ShowTemplateComponent: bool
16520
+ :param _SkipUploadFile: 跳过上传文件,默认为false(展示上传文件页)![image](https://qcloudimg.tencent-cloud.cn/raw/8ca33745cf772e79831dbe5a70e82400.png)
16521
+ - false: 展示上传文件页
16522
+ - true: 不展示上传文件页
16523
+
16524
+
16525
+ 注意: 此参数仅针对**EmbedType=CREATE_TEMPLATE(创建模板)有效**,
16526
+ :type SkipUploadFile: bool
16512
16527
  """
16513
16528
  self._ShowFlowDetailComponent = None
16514
16529
  self._ShowTemplateComponent = None
16530
+ self._SkipUploadFile = None
16515
16531
 
16516
16532
  @property
16517
16533
  def ShowFlowDetailComponent(self):
@@ -16529,10 +16545,19 @@ class EmbedUrlOption(AbstractModel):
16529
16545
  def ShowTemplateComponent(self, ShowTemplateComponent):
16530
16546
  self._ShowTemplateComponent = ShowTemplateComponent
16531
16547
 
16548
+ @property
16549
+ def SkipUploadFile(self):
16550
+ return self._SkipUploadFile
16551
+
16552
+ @SkipUploadFile.setter
16553
+ def SkipUploadFile(self, SkipUploadFile):
16554
+ self._SkipUploadFile = SkipUploadFile
16555
+
16532
16556
 
16533
16557
  def _deserialize(self, params):
16534
16558
  self._ShowFlowDetailComponent = params.get("ShowFlowDetailComponent")
16535
16559
  self._ShowTemplateComponent = params.get("ShowTemplateComponent")
16560
+ self._SkipUploadFile = params.get("SkipUploadFile")
16536
16561
  memeber_set = set(params.keys())
16537
16562
  for name, value in vars(self).items():
16538
16563
  property_name = name[1:]
@@ -2699,11 +2699,17 @@ class ChannelCreateEmbedWebUrlRequest(AbstractModel):
2699
2699
  :type EmbedType: str
2700
2700
  :param _BusinessId: WEB嵌入的业务资源ID
2701
2701
 
2702
+ 当EmbedType取值
2702
2703
  <ul>
2703
- <li>当EmbedType取值MODIFY_TEMPLATE,PREVIEW_TEMPLATE时需要填写模板id作为BusinessId</li>
2704
- <li>当EmbedType取值PREVIEW_FLOW,PREVIEW_FLOW_DETAIL时需要填写合同id作为BusinessId</li>
2705
- <li>当EmbedType取值PREVIEW_SEAL_DETAIL需要填写印章id作为BusinessId</li>
2704
+ <li>为MODIFY_TEMPLATE,PREVIEW_TEMPLATE必填,取值为模板id</li>
2705
+ <li>为CREATE_TEMPLATE,非必填,取值为资源id。*资源Id获取可使用接口[上传文件](https://qian.tencent.com/developers/partnerApis/files/UploadFiles)*</li>
2706
+ <li>为PREVIEW_FLOW,PREVIEW_FLOW_DETAIL必填,取值为合同id</li>
2707
+ <li>为PREVIEW_SEAL_DETAIL必填,取值为印章id</li>
2706
2708
  </ul>
2709
+
2710
+
2711
+ 注意:
2712
+ 1. CREATE_TEMPLATE中的BusinessId仅支持PDF文件类型, 如果您的文件不是PDF, 请使用接口[创建文件转换任务](https://qian.tencent.com/developers/partnerApis/files/ChannelCreateConvertTaskApi) 和[查询转换任务状态](https://qian.tencent.com/developers/partnerApis/files/ChannelGetTaskResultApi) 来进行转换成PDF资源。
2707
2713
  :type BusinessId: str
2708
2714
  :param _HiddenComponents: 是否隐藏控件,只有预览模板时生效
2709
2715
  :type HiddenComponents: bool
@@ -14412,9 +14418,17 @@ class EmbedUrlOption(AbstractModel):
14412
14418
  <ul><li> <b>true</b> :允许在模板预览页展示控件</li>
14413
14419
  <li> <b>false</b> :(默认)不允许在模板预览页展示控件</li></ul>
14414
14420
  :type ShowTemplateComponent: bool
14421
+ :param _SkipUploadFile: 跳过上传文件,默认为false(展示上传文件页)![image](https://qcloudimg.tencent-cloud.cn/raw/8ca33745cf772e79831dbe5a70e82400.png)
14422
+ - false: 展示上传文件页
14423
+ - true: 不展示上传文件页
14424
+
14425
+
14426
+ 注意: 此参数仅针对**EmbedType=CREATE_TEMPLATE(创建模板)有效**,
14427
+ :type SkipUploadFile: str
14415
14428
  """
14416
14429
  self._ShowFlowDetailComponent = None
14417
14430
  self._ShowTemplateComponent = None
14431
+ self._SkipUploadFile = None
14418
14432
 
14419
14433
  @property
14420
14434
  def ShowFlowDetailComponent(self):
@@ -14432,10 +14446,19 @@ class EmbedUrlOption(AbstractModel):
14432
14446
  def ShowTemplateComponent(self, ShowTemplateComponent):
14433
14447
  self._ShowTemplateComponent = ShowTemplateComponent
14434
14448
 
14449
+ @property
14450
+ def SkipUploadFile(self):
14451
+ return self._SkipUploadFile
14452
+
14453
+ @SkipUploadFile.setter
14454
+ def SkipUploadFile(self, SkipUploadFile):
14455
+ self._SkipUploadFile = SkipUploadFile
14456
+
14435
14457
 
14436
14458
  def _deserialize(self, params):
14437
14459
  self._ShowFlowDetailComponent = params.get("ShowFlowDetailComponent")
14438
14460
  self._ShowTemplateComponent = params.get("ShowTemplateComponent")
14461
+ self._SkipUploadFile = params.get("SkipUploadFile")
14439
14462
  memeber_set = set(params.keys())
14440
14463
  for name, value in vars(self).items():
14441
14464
  property_name = name[1:]
@@ -5269,6 +5269,9 @@ class DescribeDeviceData(AbstractModel):
5269
5269
  :param _StreamName: RTMP推流地址自定义streamName
5270
5270
  注意:此字段可能返回 null,表示取不到有效值。
5271
5271
  :type StreamName: str
5272
+ :param _SilentFrameSwitch: 是否开启静音帧(0:关闭;1 开启)
5273
+ 注意:此字段可能返回 null,表示取不到有效值。
5274
+ :type SilentFrameSwitch: int
5272
5275
  """
5273
5276
  self._DeviceId = None
5274
5277
  self._Code = None
@@ -5300,6 +5303,7 @@ class DescribeDeviceData(AbstractModel):
5300
5303
  self._SubscribeSwitch = None
5301
5304
  self._AppName = None
5302
5305
  self._StreamName = None
5306
+ self._SilentFrameSwitch = None
5303
5307
 
5304
5308
  @property
5305
5309
  def DeviceId(self):
@@ -5541,6 +5545,14 @@ class DescribeDeviceData(AbstractModel):
5541
5545
  def StreamName(self, StreamName):
5542
5546
  self._StreamName = StreamName
5543
5547
 
5548
+ @property
5549
+ def SilentFrameSwitch(self):
5550
+ return self._SilentFrameSwitch
5551
+
5552
+ @SilentFrameSwitch.setter
5553
+ def SilentFrameSwitch(self, SilentFrameSwitch):
5554
+ self._SilentFrameSwitch = SilentFrameSwitch
5555
+
5544
5556
 
5545
5557
  def _deserialize(self, params):
5546
5558
  self._DeviceId = params.get("DeviceId")
@@ -5573,6 +5585,7 @@ class DescribeDeviceData(AbstractModel):
5573
5585
  self._SubscribeSwitch = params.get("SubscribeSwitch")
5574
5586
  self._AppName = params.get("AppName")
5575
5587
  self._StreamName = params.get("StreamName")
5588
+ self._SilentFrameSwitch = params.get("SilentFrameSwitch")
5576
5589
  memeber_set = set(params.keys())
5577
5590
  for name, value in vars(self).items():
5578
5591
  property_name = name[1:]
@@ -16269,6 +16282,8 @@ class UpdateUserDeviceRequest(AbstractModel):
16269
16282
  :type AudioSwitch: int
16270
16283
  :param _SubscribeSwitch: 订阅开关(0:关闭;1:开启)默认开启,开启状态下会订阅设备通道变化,仅国标NVR设备有效
16271
16284
  :type SubscribeSwitch: int
16285
+ :param _SilentFrameSwitch: 是否开启静音帧(0:关闭;1 开启)
16286
+ :type SilentFrameSwitch: int
16272
16287
  """
16273
16288
  self._DeviceId = None
16274
16289
  self._Name = None
@@ -16281,6 +16296,7 @@ class UpdateUserDeviceRequest(AbstractModel):
16281
16296
  self._ProtocolType = None
16282
16297
  self._AudioSwitch = None
16283
16298
  self._SubscribeSwitch = None
16299
+ self._SilentFrameSwitch = None
16284
16300
 
16285
16301
  @property
16286
16302
  def DeviceId(self):
@@ -16370,6 +16386,14 @@ class UpdateUserDeviceRequest(AbstractModel):
16370
16386
  def SubscribeSwitch(self, SubscribeSwitch):
16371
16387
  self._SubscribeSwitch = SubscribeSwitch
16372
16388
 
16389
+ @property
16390
+ def SilentFrameSwitch(self):
16391
+ return self._SilentFrameSwitch
16392
+
16393
+ @SilentFrameSwitch.setter
16394
+ def SilentFrameSwitch(self, SilentFrameSwitch):
16395
+ self._SilentFrameSwitch = SilentFrameSwitch
16396
+
16373
16397
 
16374
16398
  def _deserialize(self, params):
16375
16399
  self._DeviceId = params.get("DeviceId")
@@ -16383,6 +16407,7 @@ class UpdateUserDeviceRequest(AbstractModel):
16383
16407
  self._ProtocolType = params.get("ProtocolType")
16384
16408
  self._AudioSwitch = params.get("AudioSwitch")
16385
16409
  self._SubscribeSwitch = params.get("SubscribeSwitch")
16410
+ self._SilentFrameSwitch = params.get("SilentFrameSwitch")
16386
16411
  memeber_set = set(params.keys())
16387
16412
  for name, value in vars(self).items():
16388
16413
  property_name = name[1:]
@@ -321,7 +321,7 @@ class CreateAuthorizationPolicyRequest(AbstractModel):
321
321
  :type Username: str
322
322
  :param _ClientId: 客户端
323
323
  :type ClientId: str
324
- :param _Ip: ip
324
+ :param _Ip: IP地址
325
325
  :type Ip: str
326
326
  :param _Remark: 备注信息
327
327
  :type Remark: str
@@ -2458,7 +2458,7 @@ class ModifyAuthorizationPolicyRequest(AbstractModel):
2458
2458
  :type Retain: int
2459
2459
  :param _ClientId: 客户端
2460
2460
  :type ClientId: str
2461
- :param _Ip: ip
2461
+ :param _Ip: IP
2462
2462
  :type Ip: str
2463
2463
  :param _Qos: 0、1、2
2464
2464
  :type Qos: str
@@ -602,7 +602,7 @@ INVALIDPARAMETERVALUE_IDENTITYCENTERZONENAMEALREADYEXIST = 'InvalidParameterValu
602
602
  # 策略内容不合法。
603
603
  INVALIDPARAMETERVALUE_POLICYCONTENTINVALID = 'InvalidParameterValue.PolicyContentInvalid'
604
604
 
605
- # sso登陆启用状态值非法
605
+ # sso登录启用状态值非法
606
606
  INVALIDPARAMETERVALUE_SSOSTATUSINVALID = 'InvalidParameterValue.SSoStatusInvalid'
607
607
 
608
608
  # X509证书格式错误。
@@ -2635,6 +2635,77 @@ class DescribeAgentPayDealsV2Response(AbstractModel):
2635
2635
  self._RequestId = params.get("RequestId")
2636
2636
 
2637
2637
 
2638
+ class DescribeAgentRelateBigDealIdsRequest(AbstractModel):
2639
+ """DescribeAgentRelateBigDealIds请求参数结构体
2640
+
2641
+ """
2642
+
2643
+ def __init__(self):
2644
+ r"""
2645
+ :param _BigDealId: 大订单号
2646
+ :type BigDealId: str
2647
+ """
2648
+ self._BigDealId = None
2649
+
2650
+ @property
2651
+ def BigDealId(self):
2652
+ return self._BigDealId
2653
+
2654
+ @BigDealId.setter
2655
+ def BigDealId(self, BigDealId):
2656
+ self._BigDealId = BigDealId
2657
+
2658
+
2659
+ def _deserialize(self, params):
2660
+ self._BigDealId = params.get("BigDealId")
2661
+ memeber_set = set(params.keys())
2662
+ for name, value in vars(self).items():
2663
+ property_name = name[1:]
2664
+ if property_name in memeber_set:
2665
+ memeber_set.remove(property_name)
2666
+ if len(memeber_set) > 0:
2667
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
2668
+
2669
+
2670
+
2671
+ class DescribeAgentRelateBigDealIdsResponse(AbstractModel):
2672
+ """DescribeAgentRelateBigDealIds返回参数结构体
2673
+
2674
+ """
2675
+
2676
+ def __init__(self):
2677
+ r"""
2678
+ :param _BigDealIdList: 申请合并支付的关联大订单号列表(不包含请求的订单号)
2679
+ 注意:此字段可能返回 null,表示取不到有效值。
2680
+ :type BigDealIdList: list of str
2681
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2682
+ :type RequestId: str
2683
+ """
2684
+ self._BigDealIdList = None
2685
+ self._RequestId = None
2686
+
2687
+ @property
2688
+ def BigDealIdList(self):
2689
+ return self._BigDealIdList
2690
+
2691
+ @BigDealIdList.setter
2692
+ def BigDealIdList(self, BigDealIdList):
2693
+ self._BigDealIdList = BigDealIdList
2694
+
2695
+ @property
2696
+ def RequestId(self):
2697
+ return self._RequestId
2698
+
2699
+ @RequestId.setter
2700
+ def RequestId(self, RequestId):
2701
+ self._RequestId = RequestId
2702
+
2703
+
2704
+ def _deserialize(self, params):
2705
+ self._BigDealIdList = params.get("BigDealIdList")
2706
+ self._RequestId = params.get("RequestId")
2707
+
2708
+
2638
2709
  class DescribeAgentSelfPayDealsV2Request(AbstractModel):
2639
2710
  """DescribeAgentSelfPayDealsV2请求参数结构体
2640
2711
 
@@ -282,6 +282,29 @@ class PartnersClient(AbstractClient):
282
282
  raise TencentCloudSDKException(type(e).__name__, str(e))
283
283
 
284
284
 
285
+ def DescribeAgentRelateBigDealIds(self, request):
286
+ """根据大订单号查询关联申请合并支付的其他订单号
287
+
288
+ :param request: Request instance for DescribeAgentRelateBigDealIds.
289
+ :type request: :class:`tencentcloud.partners.v20180321.models.DescribeAgentRelateBigDealIdsRequest`
290
+ :rtype: :class:`tencentcloud.partners.v20180321.models.DescribeAgentRelateBigDealIdsResponse`
291
+
292
+ """
293
+ try:
294
+ params = request._serialize()
295
+ headers = request.headers
296
+ body = self.call("DescribeAgentRelateBigDealIds", params, headers=headers)
297
+ response = json.loads(body)
298
+ model = models.DescribeAgentRelateBigDealIdsResponse()
299
+ model._deserialize(response["Response"])
300
+ return model
301
+ except Exception as e:
302
+ if isinstance(e, TencentCloudSDKException):
303
+ raise
304
+ else:
305
+ raise TencentCloudSDKException(type(e).__name__, str(e))
306
+
307
+
285
308
  def DescribeAgentSelfPayDealsV2(self, request):
286
309
  """查询代理商名下指定代客的自付订单(预付费)
287
310