tencentcloud-sdk-python 3.0.1269__py2.py3-none-any.whl → 3.0.1271__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 (39) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/af/v20200226/af_client.py +3 -1
  3. tencentcloud/autoscaling/v20180419/models.py +6 -2
  4. tencentcloud/billing/v20180709/models.py +2 -2
  5. tencentcloud/cdwch/v20200915/cdwch_client.py +23 -0
  6. tencentcloud/cdwch/v20200915/models.py +175 -0
  7. tencentcloud/ckafka/v20190819/models.py +2 -2
  8. tencentcloud/cwp/v20180228/models.py +16 -0
  9. tencentcloud/cynosdb/v20190107/models.py +17 -2
  10. tencentcloud/ess/v20201111/models.py +60 -4
  11. tencentcloud/essbasic/v20210526/models.py +75 -4
  12. tencentcloud/faceid/v20180301/models.py +4 -0
  13. tencentcloud/iai/v20180301/models.py +12 -12
  14. tencentcloud/iap/__init__.py +0 -0
  15. tencentcloud/iap/v20240713/__init__.py +0 -0
  16. tencentcloud/iap/v20240713/errorcodes.py +48 -0
  17. tencentcloud/iap/v20240713/iap_client.py +164 -0
  18. tencentcloud/iap/v20240713/models.py +762 -0
  19. tencentcloud/lcic/v20220817/models.py +12 -6
  20. tencentcloud/live/v20180801/errorcodes.py +15 -0
  21. tencentcloud/live/v20180801/live_client.py +185 -0
  22. tencentcloud/live/v20180801/models.py +3372 -1460
  23. tencentcloud/market/v20191010/models.py +0 -2
  24. tencentcloud/mps/v20190612/models.py +316 -0
  25. tencentcloud/mps/v20190612/mps_client.py +25 -0
  26. tencentcloud/redis/v20180412/models.py +314 -216
  27. tencentcloud/redis/v20180412/redis_client.py +47 -47
  28. tencentcloud/tat/v20201028/models.py +10 -10
  29. tencentcloud/tke/v20220501/tke_client.py +2 -2
  30. tencentcloud/tse/v20201207/models.py +311 -6
  31. tencentcloud/vpc/v20170312/errorcodes.py +3 -0
  32. tencentcloud/vpc/v20170312/models.py +769 -32
  33. tencentcloud/vpc/v20170312/vpc_client.py +93 -1
  34. tencentcloud/wedata/v20210820/models.py +79 -4
  35. {tencentcloud_sdk_python-3.0.1269.dist-info → tencentcloud_sdk_python-3.0.1271.dist-info}/METADATA +1 -1
  36. {tencentcloud_sdk_python-3.0.1269.dist-info → tencentcloud_sdk_python-3.0.1271.dist-info}/RECORD +39 -34
  37. {tencentcloud_sdk_python-3.0.1269.dist-info → tencentcloud_sdk_python-3.0.1271.dist-info}/LICENSE +0 -0
  38. {tencentcloud_sdk_python-3.0.1269.dist-info → tencentcloud_sdk_python-3.0.1271.dist-info}/WHEEL +0 -0
  39. {tencentcloud_sdk_python-3.0.1269.dist-info → tencentcloud_sdk_python-3.0.1271.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.1269'
17
+ __version__ = '3.0.1271'
@@ -27,7 +27,9 @@ class AfClient(AbstractClient):
27
27
 
28
28
 
29
29
  def DescribeAntiFraud(self, request):
30
- """天御反欺诈服务,主要应用于银行、证券、保险、消费金融等金融行业客户,通过腾讯的大数据风控能力,
30
+ """该接口未在使用,后端地址已无法访问,经查近60天日志无正常业务访问记录,申请预下线。
31
+
32
+ 天御反欺诈服务,主要应用于银行、证券、保险、消费金融等金融行业客户,通过腾讯的大数据风控能力,
31
33
  可以准确识别恶意用户信息,解决客户在支付、活动、理财,风控等业务环节遇到的欺诈威胁,降低企业
32
34
  的损失。
33
35
 
@@ -13536,7 +13536,9 @@ class StartInstanceRefreshRequest(AbstractModel):
13536
13536
  :type AutoScalingGroupId: str
13537
13537
  :param _RefreshSettings: 刷新设置。
13538
13538
  :type RefreshSettings: :class:`tencentcloud.autoscaling.v20180419.models.RefreshSettings`
13539
- :param _RefreshMode: 刷新模式,目前仅支持滚动更新,默认值为 ROLLING_UPDATE_RESET。
13539
+ :param _RefreshMode: 刷新模式。取值范围:
13540
+ <li>ROLLING_UPDATE_RESET:重装系统进行滚动更新</li>
13541
+ <li>ROLLING_UPDATE_REPLACE:新建实例替换进行滚动更新,该模式暂不支持回滚接口</li>
13540
13542
  :type RefreshMode: str
13541
13543
  """
13542
13544
  self._AutoScalingGroupId = None
@@ -13567,7 +13569,9 @@ class StartInstanceRefreshRequest(AbstractModel):
13567
13569
 
13568
13570
  @property
13569
13571
  def RefreshMode(self):
13570
- """刷新模式,目前仅支持滚动更新,默认值为 ROLLING_UPDATE_RESET。
13572
+ """刷新模式。取值范围:
13573
+ <li>ROLLING_UPDATE_RESET:重装系统进行滚动更新</li>
13574
+ <li>ROLLING_UPDATE_REPLACE:新建实例替换进行滚动更新,该模式暂不支持回滚接口</li>
13571
13575
  :rtype: str
13572
13576
  """
13573
13577
  return self._RefreshMode
@@ -20796,7 +20796,7 @@ class DescribeCostSummaryByProductResponse(AbstractModel):
20796
20796
  :param _Data: 消耗按产品汇总详情
20797
20797
  注意:此字段可能返回 null,表示取不到有效值。
20798
20798
  :type Data: list of ConsumptionBusinessSummaryDataItem
20799
- :param _RecordNum: 记录数量,NeedRecordNum为0是返回null
20799
+ :param _RecordNum: 记录数量,NeedRecordNum为0时返回null
20800
20800
  注意:此字段可能返回 null,表示取不到有效值。
20801
20801
  :type RecordNum: int
20802
20802
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -20844,7 +20844,7 @@ class DescribeCostSummaryByProductResponse(AbstractModel):
20844
20844
 
20845
20845
  @property
20846
20846
  def RecordNum(self):
20847
- """记录数量,NeedRecordNum为0是返回null
20847
+ """记录数量,NeedRecordNum为0时返回null
20848
20848
  注意:此字段可能返回 null,表示取不到有效值。
20849
20849
  :rtype: int
20850
20850
  """
@@ -601,6 +601,29 @@ class CdwchClient(AbstractClient):
601
601
  raise TencentCloudSDKException(type(e).__name__, str(e))
602
602
 
603
603
 
604
+ def ScaleCNOutUpInstance(self, request):
605
+ """open-api接口提供弹性伸缩云原生集群能力
606
+
607
+ :param request: Request instance for ScaleCNOutUpInstance.
608
+ :type request: :class:`tencentcloud.cdwch.v20200915.models.ScaleCNOutUpInstanceRequest`
609
+ :rtype: :class:`tencentcloud.cdwch.v20200915.models.ScaleCNOutUpInstanceResponse`
610
+
611
+ """
612
+ try:
613
+ params = request._serialize()
614
+ headers = request.headers
615
+ body = self.call("ScaleCNOutUpInstance", params, headers=headers)
616
+ response = json.loads(body)
617
+ model = models.ScaleCNOutUpInstanceResponse()
618
+ model._deserialize(response["Response"])
619
+ return model
620
+ except Exception as e:
621
+ if isinstance(e, TencentCloudSDKException):
622
+ raise
623
+ else:
624
+ raise TencentCloudSDKException(type(e).__name__, str(e))
625
+
626
+
604
627
  def ScaleOutInstance(self, request):
605
628
  """调整clickhouse节点数量
606
629
 
@@ -6602,6 +6602,181 @@ class ResourceSpec(AbstractModel):
6602
6602
 
6603
6603
 
6604
6604
 
6605
+ class ScaleCNOutUpInstanceRequest(AbstractModel):
6606
+ """ScaleCNOutUpInstance请求参数结构体
6607
+
6608
+ """
6609
+
6610
+ def __init__(self):
6611
+ r"""
6612
+ :param _InstanceId: 实例唯一ID
6613
+ :type InstanceId: str
6614
+ :param _VirtualCluster: warehouse名称
6615
+ :type VirtualCluster: str
6616
+ :param _UserSubnetID: 子网id
6617
+ :type UserSubnetID: str
6618
+ :param _NewCount: 新的warehouse的个数
6619
+ :type NewCount: int
6620
+ :param _NewSpecName: 集群的规格2X-Small、X-Small、Small
6621
+ :type NewSpecName: str
6622
+ """
6623
+ self._InstanceId = None
6624
+ self._VirtualCluster = None
6625
+ self._UserSubnetID = None
6626
+ self._NewCount = None
6627
+ self._NewSpecName = None
6628
+
6629
+ @property
6630
+ def InstanceId(self):
6631
+ """实例唯一ID
6632
+ :rtype: str
6633
+ """
6634
+ return self._InstanceId
6635
+
6636
+ @InstanceId.setter
6637
+ def InstanceId(self, InstanceId):
6638
+ self._InstanceId = InstanceId
6639
+
6640
+ @property
6641
+ def VirtualCluster(self):
6642
+ """warehouse名称
6643
+ :rtype: str
6644
+ """
6645
+ return self._VirtualCluster
6646
+
6647
+ @VirtualCluster.setter
6648
+ def VirtualCluster(self, VirtualCluster):
6649
+ self._VirtualCluster = VirtualCluster
6650
+
6651
+ @property
6652
+ def UserSubnetID(self):
6653
+ """子网id
6654
+ :rtype: str
6655
+ """
6656
+ return self._UserSubnetID
6657
+
6658
+ @UserSubnetID.setter
6659
+ def UserSubnetID(self, UserSubnetID):
6660
+ self._UserSubnetID = UserSubnetID
6661
+
6662
+ @property
6663
+ def NewCount(self):
6664
+ """新的warehouse的个数
6665
+ :rtype: int
6666
+ """
6667
+ return self._NewCount
6668
+
6669
+ @NewCount.setter
6670
+ def NewCount(self, NewCount):
6671
+ self._NewCount = NewCount
6672
+
6673
+ @property
6674
+ def NewSpecName(self):
6675
+ """集群的规格2X-Small、X-Small、Small
6676
+ :rtype: str
6677
+ """
6678
+ return self._NewSpecName
6679
+
6680
+ @NewSpecName.setter
6681
+ def NewSpecName(self, NewSpecName):
6682
+ self._NewSpecName = NewSpecName
6683
+
6684
+
6685
+ def _deserialize(self, params):
6686
+ self._InstanceId = params.get("InstanceId")
6687
+ self._VirtualCluster = params.get("VirtualCluster")
6688
+ self._UserSubnetID = params.get("UserSubnetID")
6689
+ self._NewCount = params.get("NewCount")
6690
+ self._NewSpecName = params.get("NewSpecName")
6691
+ memeber_set = set(params.keys())
6692
+ for name, value in vars(self).items():
6693
+ property_name = name[1:]
6694
+ if property_name in memeber_set:
6695
+ memeber_set.remove(property_name)
6696
+ if len(memeber_set) > 0:
6697
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
6698
+
6699
+
6700
+
6701
+ class ScaleCNOutUpInstanceResponse(AbstractModel):
6702
+ """ScaleCNOutUpInstance返回参数结构体
6703
+
6704
+ """
6705
+
6706
+ def __init__(self):
6707
+ r"""
6708
+ :param _FlowId: 流程ID
6709
+ 注意:此字段可能返回 null,表示取不到有效值。
6710
+ :type FlowId: str
6711
+ :param _InstanceId: 实例ID
6712
+ 注意:此字段可能返回 null,表示取不到有效值。
6713
+ :type InstanceId: str
6714
+ :param _ErrorMsg: 错误信息
6715
+ 注意:此字段可能返回 null,表示取不到有效值。
6716
+ :type ErrorMsg: str
6717
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6718
+ :type RequestId: str
6719
+ """
6720
+ self._FlowId = None
6721
+ self._InstanceId = None
6722
+ self._ErrorMsg = None
6723
+ self._RequestId = None
6724
+
6725
+ @property
6726
+ def FlowId(self):
6727
+ """流程ID
6728
+ 注意:此字段可能返回 null,表示取不到有效值。
6729
+ :rtype: str
6730
+ """
6731
+ return self._FlowId
6732
+
6733
+ @FlowId.setter
6734
+ def FlowId(self, FlowId):
6735
+ self._FlowId = FlowId
6736
+
6737
+ @property
6738
+ def InstanceId(self):
6739
+ """实例ID
6740
+ 注意:此字段可能返回 null,表示取不到有效值。
6741
+ :rtype: str
6742
+ """
6743
+ return self._InstanceId
6744
+
6745
+ @InstanceId.setter
6746
+ def InstanceId(self, InstanceId):
6747
+ self._InstanceId = InstanceId
6748
+
6749
+ @property
6750
+ def ErrorMsg(self):
6751
+ """错误信息
6752
+ 注意:此字段可能返回 null,表示取不到有效值。
6753
+ :rtype: str
6754
+ """
6755
+ return self._ErrorMsg
6756
+
6757
+ @ErrorMsg.setter
6758
+ def ErrorMsg(self, ErrorMsg):
6759
+ self._ErrorMsg = ErrorMsg
6760
+
6761
+ @property
6762
+ def RequestId(self):
6763
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6764
+ :rtype: str
6765
+ """
6766
+ return self._RequestId
6767
+
6768
+ @RequestId.setter
6769
+ def RequestId(self, RequestId):
6770
+ self._RequestId = RequestId
6771
+
6772
+
6773
+ def _deserialize(self, params):
6774
+ self._FlowId = params.get("FlowId")
6775
+ self._InstanceId = params.get("InstanceId")
6776
+ self._ErrorMsg = params.get("ErrorMsg")
6777
+ self._RequestId = params.get("RequestId")
6778
+
6779
+
6605
6780
  class ScaleOutInstanceRequest(AbstractModel):
6606
6781
  """ScaleOutInstance请求参数结构体
6607
6782
 
@@ -24232,7 +24232,7 @@ class ModifyInstancePreRequest(AbstractModel):
24232
24232
 
24233
24233
  def __init__(self):
24234
24234
  r"""
24235
- :param _InstanceId: 实例名称
24235
+ :param _InstanceId: ckafka集群实例Id
24236
24236
  :type InstanceId: str
24237
24237
  :param _DiskSize: 预计磁盘,根据磁盘步长,规格向上调整。
24238
24238
  :type DiskSize: int
@@ -24248,7 +24248,7 @@ class ModifyInstancePreRequest(AbstractModel):
24248
24248
 
24249
24249
  @property
24250
24250
  def InstanceId(self):
24251
- """实例名称
24251
+ """ckafka集群实例Id
24252
24252
  :rtype: str
24253
24253
  """
24254
24254
  return self._InstanceId
@@ -105251,6 +105251,14 @@ class VulInfoList(AbstractModel):
105251
105251
  :param _CvssScore: CVSS评分
105252
105252
  :type CvssScore: float
105253
105253
  :param _Labels: 漏洞标签 多个逗号分割
105254
+
105255
+ 存在EXP:EXP
105256
+ 在野攻击:KNOWN_EXPLOITED
105257
+ 本地利用:LOCAL
105258
+ 必修漏洞:NEED_FIX
105259
+ 远程利用:NETWORK
105260
+ 存在POC:POC
105261
+ 系统重启:RESTART
105254
105262
  :type Labels: str
105255
105263
  :param _FixSwitch: 是否能自动修复且包含能自动修复的主机, 0=否 1=是
105256
105264
  :type FixSwitch: int
@@ -105480,6 +105488,14 @@ class VulInfoList(AbstractModel):
105480
105488
  @property
105481
105489
  def Labels(self):
105482
105490
  """漏洞标签 多个逗号分割
105491
+
105492
+ 存在EXP:EXP
105493
+ 在野攻击:KNOWN_EXPLOITED
105494
+ 本地利用:LOCAL
105495
+ 必修漏洞:NEED_FIX
105496
+ 远程利用:NETWORK
105497
+ 存在POC:POC
105498
+ 系统重启:RESTART
105483
105499
  :rtype: str
105484
105500
  """
105485
105501
  return self._Labels
@@ -4089,6 +4089,8 @@ class ClusterInstanceDetail(AbstractModel):
4089
4089
  :param _InstanceStorageType: 实例存储类型
4090
4090
  注意:此字段可能返回 null,表示取不到有效值。
4091
4091
  :type InstanceStorageType: str
4092
+ :param _DbMode: 数据库类型
4093
+ :type DbMode: str
4092
4094
  """
4093
4095
  self._InstanceId = None
4094
4096
  self._InstanceName = None
@@ -4106,6 +4108,7 @@ class ClusterInstanceDetail(AbstractModel):
4106
4108
  self._InstanceTasks = None
4107
4109
  self._InstanceDeviceType = None
4108
4110
  self._InstanceStorageType = None
4111
+ self._DbMode = None
4109
4112
 
4110
4113
  @property
4111
4114
  def InstanceId(self):
@@ -4290,6 +4293,17 @@ class ClusterInstanceDetail(AbstractModel):
4290
4293
  def InstanceStorageType(self, InstanceStorageType):
4291
4294
  self._InstanceStorageType = InstanceStorageType
4292
4295
 
4296
+ @property
4297
+ def DbMode(self):
4298
+ """数据库类型
4299
+ :rtype: str
4300
+ """
4301
+ return self._DbMode
4302
+
4303
+ @DbMode.setter
4304
+ def DbMode(self, DbMode):
4305
+ self._DbMode = DbMode
4306
+
4293
4307
 
4294
4308
  def _deserialize(self, params):
4295
4309
  self._InstanceId = params.get("InstanceId")
@@ -4313,6 +4327,7 @@ class ClusterInstanceDetail(AbstractModel):
4313
4327
  self._InstanceTasks.append(obj)
4314
4328
  self._InstanceDeviceType = params.get("InstanceDeviceType")
4315
4329
  self._InstanceStorageType = params.get("InstanceStorageType")
4330
+ self._DbMode = params.get("DbMode")
4316
4331
  memeber_set = set(params.keys())
4317
4332
  for name, value in vars(self).items():
4318
4333
  property_name = name[1:]
@@ -8325,7 +8340,7 @@ pausing
8325
8340
  :type CreateTime: str
8326
8341
  :param _DbType: 数据库类型
8327
8342
  :type DbType: str
8328
- :param _DbMode: 数据库类型,normal,serverless
8343
+ :param _DbMode: Db类型:<li>NORMAL</li><li>SERVERLESS</li>
8329
8344
  注意:此字段可能返回 null,表示取不到有效值。
8330
8345
  :type DbMode: str
8331
8346
  :param _DbVersion: 数据库版本
@@ -8689,7 +8704,7 @@ pausing
8689
8704
 
8690
8705
  @property
8691
8706
  def DbMode(self):
8692
- """数据库类型,normal,serverless
8707
+ """Db类型:<li>NORMAL</li><li>SERVERLESS</li>
8693
8708
  注意:此字段可能返回 null,表示取不到有效值。
8694
8709
  :rtype: str
8695
8710
  """
@@ -3883,19 +3883,29 @@ class CreateBatchInitOrganizationUrlRequest(AbstractModel):
3883
3883
  注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
3884
3884
  :type Operator: :class:`tencentcloud.ess.v20201111.models.UserInfo`
3885
3885
  :param _OperateTypes: 初始化操作类型
3886
- <ul><li>CREATE_SEAL : 创建印章</li>
3886
+ <ul>
3887
+ <li>CREATE_SEAL : 创建印章</li>
3887
3888
  <li>AUTH_JOIN_ORGANIZATION_GROUP : 加入集团企业</li>
3888
- <li>OPEN_AUTO_SIGN :开通企业自动签署</li></ul>
3889
+ <li>OPEN_AUTO_SIGN :开通企业自动签署</li>
3890
+ <li>PARTNER_AUTO_SIGN_AUTH :合作方企业授权自动签</li>
3891
+ </ul>
3889
3892
  :type OperateTypes: list of str
3890
3893
  :param _OrganizationIds: 批量操作的企业Id列表,最大支持50个
3891
3894
  :type OrganizationIds: list of str
3892
3895
  :param _Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
3893
3896
  :type Agent: :class:`tencentcloud.ess.v20201111.models.Agent`
3897
+ :param _AuthorizedOrganizationId: 被授权的合作方企业在电子签的企业电子签账号,当操作类型包含 PARTNER_AUTO_SIGN_AUTH (合作方企业授权自动签)时必传。
3898
+
3899
+ 企业电子签账号可在[电子签的网页端](https://qian.tencent.com/console/company-settings/company-center) ,于企业设置-企业信息菜单栏下复制获取。
3900
+
3901
+ ![企业电子签账号](https://qcloudimg.tencent-cloud.cn/raw/4e6b30ee92f00671f7f1c5bd127c27db.png)
3902
+ :type AuthorizedOrganizationId: str
3894
3903
  """
3895
3904
  self._Operator = None
3896
3905
  self._OperateTypes = None
3897
3906
  self._OrganizationIds = None
3898
3907
  self._Agent = None
3908
+ self._AuthorizedOrganizationId = None
3899
3909
 
3900
3910
  @property
3901
3911
  def Operator(self):
@@ -3912,9 +3922,12 @@ class CreateBatchInitOrganizationUrlRequest(AbstractModel):
3912
3922
  @property
3913
3923
  def OperateTypes(self):
3914
3924
  """初始化操作类型
3915
- <ul><li>CREATE_SEAL : 创建印章</li>
3925
+ <ul>
3926
+ <li>CREATE_SEAL : 创建印章</li>
3916
3927
  <li>AUTH_JOIN_ORGANIZATION_GROUP : 加入集团企业</li>
3917
- <li>OPEN_AUTO_SIGN :开通企业自动签署</li></ul>
3928
+ <li>OPEN_AUTO_SIGN :开通企业自动签署</li>
3929
+ <li>PARTNER_AUTO_SIGN_AUTH :合作方企业授权自动签</li>
3930
+ </ul>
3918
3931
  :rtype: list of str
3919
3932
  """
3920
3933
  return self._OperateTypes
@@ -3945,6 +3958,21 @@ class CreateBatchInitOrganizationUrlRequest(AbstractModel):
3945
3958
  def Agent(self, Agent):
3946
3959
  self._Agent = Agent
3947
3960
 
3961
+ @property
3962
+ def AuthorizedOrganizationId(self):
3963
+ """被授权的合作方企业在电子签的企业电子签账号,当操作类型包含 PARTNER_AUTO_SIGN_AUTH (合作方企业授权自动签)时必传。
3964
+
3965
+ 企业电子签账号可在[电子签的网页端](https://qian.tencent.com/console/company-settings/company-center) ,于企业设置-企业信息菜单栏下复制获取。
3966
+
3967
+ ![企业电子签账号](https://qcloudimg.tencent-cloud.cn/raw/4e6b30ee92f00671f7f1c5bd127c27db.png)
3968
+ :rtype: str
3969
+ """
3970
+ return self._AuthorizedOrganizationId
3971
+
3972
+ @AuthorizedOrganizationId.setter
3973
+ def AuthorizedOrganizationId(self, AuthorizedOrganizationId):
3974
+ self._AuthorizedOrganizationId = AuthorizedOrganizationId
3975
+
3948
3976
 
3949
3977
  def _deserialize(self, params):
3950
3978
  if params.get("Operator") is not None:
@@ -3955,6 +3983,7 @@ class CreateBatchInitOrganizationUrlRequest(AbstractModel):
3955
3983
  if params.get("Agent") is not None:
3956
3984
  self._Agent = Agent()
3957
3985
  self._Agent._deserialize(params.get("Agent"))
3986
+ self._AuthorizedOrganizationId = params.get("AuthorizedOrganizationId")
3958
3987
  memeber_set = set(params.keys())
3959
3988
  for name, value in vars(self).items():
3960
3989
  property_name = name[1:]
@@ -4878,6 +4907,14 @@ class CreateBatchSignUrlRequest(AbstractModel):
4878
4907
  :type JumpToDetail: bool
4879
4908
  :param _FlowBatchUrlInfo: 批量签署合同相关信息,指定合同和签署方的信息,用于补充动态签署人。
4880
4909
  :type FlowBatchUrlInfo: :class:`tencentcloud.ess.v20201111.models.FlowBatchUrlInfo`
4910
+ :param _AutoJumpBack: 签署完成后是否自动回跳
4911
+ <ul><li>false:否, 签署完成不会自动跳转回来(默认)</li><li>true:是, 签署完成会自动跳转回来</li></ul>
4912
+
4913
+ 注:
4914
+ 1. 该参数<font color="red">只针对APP类型(电子签小程序跳转贵方小程序)场景</font> 的签署链接有效
4915
+ 2. <font color="red">手机应用APP 或 微信小程序需要监控界面的返回走后序逻辑</font>, 微信小程序的文档可以参考[这个](https://developers.weixin.qq.com/miniprogram/dev/reference/api/App.html#onShow-Object-object)
4916
+ 3. <font color="red">电子签小程序跳转贵方APP,不支持自动跳转,必需用户手动点击完成按钮(微信的限制)</font>
4917
+ :type AutoJumpBack: bool
4881
4918
  """
4882
4919
  self._Operator = None
4883
4920
  self._Name = None
@@ -4890,6 +4927,7 @@ class CreateBatchSignUrlRequest(AbstractModel):
4890
4927
  self._OrganizationName = None
4891
4928
  self._JumpToDetail = None
4892
4929
  self._FlowBatchUrlInfo = None
4930
+ self._AutoJumpBack = None
4893
4931
 
4894
4932
  @property
4895
4933
  def Operator(self):
@@ -5046,6 +5084,23 @@ class CreateBatchSignUrlRequest(AbstractModel):
5046
5084
  def FlowBatchUrlInfo(self, FlowBatchUrlInfo):
5047
5085
  self._FlowBatchUrlInfo = FlowBatchUrlInfo
5048
5086
 
5087
+ @property
5088
+ def AutoJumpBack(self):
5089
+ """签署完成后是否自动回跳
5090
+ <ul><li>false:否, 签署完成不会自动跳转回来(默认)</li><li>true:是, 签署完成会自动跳转回来</li></ul>
5091
+
5092
+ 注:
5093
+ 1. 该参数<font color="red">只针对APP类型(电子签小程序跳转贵方小程序)场景</font> 的签署链接有效
5094
+ 2. <font color="red">手机应用APP 或 微信小程序需要监控界面的返回走后序逻辑</font>, 微信小程序的文档可以参考[这个](https://developers.weixin.qq.com/miniprogram/dev/reference/api/App.html#onShow-Object-object)
5095
+ 3. <font color="red">电子签小程序跳转贵方APP,不支持自动跳转,必需用户手动点击完成按钮(微信的限制)</font>
5096
+ :rtype: bool
5097
+ """
5098
+ return self._AutoJumpBack
5099
+
5100
+ @AutoJumpBack.setter
5101
+ def AutoJumpBack(self, AutoJumpBack):
5102
+ self._AutoJumpBack = AutoJumpBack
5103
+
5049
5104
 
5050
5105
  def _deserialize(self, params):
5051
5106
  if params.get("Operator") is not None:
@@ -5065,6 +5120,7 @@ class CreateBatchSignUrlRequest(AbstractModel):
5065
5120
  if params.get("FlowBatchUrlInfo") is not None:
5066
5121
  self._FlowBatchUrlInfo = FlowBatchUrlInfo()
5067
5122
  self._FlowBatchUrlInfo._deserialize(params.get("FlowBatchUrlInfo"))
5123
+ self._AutoJumpBack = params.get("AutoJumpBack")
5068
5124
  memeber_set = set(params.keys())
5069
5125
  for name, value in vars(self).items():
5070
5126
  property_name = name[1:]
@@ -2742,6 +2742,14 @@ class ChannelCreateBatchSignUrlRequest(AbstractModel):
2742
2742
  :type OpenId: str
2743
2743
  :param _OrganizationOpenId: 第三方平台子客企业的企业的标识, 即OrganizationOpenId,批签合同经办人为子客企业员工是为必填。
2744
2744
  :type OrganizationOpenId: str
2745
+ :param _AutoJumpBack: 签署完成后是否自动回跳
2746
+ <ul><li>false:否, 签署完成不会自动跳转回来(默认)</li><li>true:是, 签署完成会自动跳转回来</li></ul>
2747
+
2748
+ 注:
2749
+ 1. 该参数<font color="red">只针对APP类型(电子签小程序跳转贵方小程序)场景</font> 的签署链接有效
2750
+ 2. <font color="red">手机应用APP 或 微信小程序需要监控界面的返回走后序逻辑</font>, 微信小程序的文档可以参考[这个](https://developers.weixin.qq.com/miniprogram/dev/reference/api/App.html#onShow-Object-object)
2751
+ 3. <font color="red">电子签小程序跳转贵方APP,不支持自动跳转,必需用户手动点击完成按钮(微信的限制)</font>
2752
+ :type AutoJumpBack: bool
2745
2753
  """
2746
2754
  self._Agent = None
2747
2755
  self._Name = None
@@ -2756,6 +2764,7 @@ class ChannelCreateBatchSignUrlRequest(AbstractModel):
2756
2764
  self._FlowBatchUrlInfo = None
2757
2765
  self._OpenId = None
2758
2766
  self._OrganizationOpenId = None
2767
+ self._AutoJumpBack = None
2759
2768
 
2760
2769
  @property
2761
2770
  def Agent(self):
@@ -2948,6 +2957,23 @@ class ChannelCreateBatchSignUrlRequest(AbstractModel):
2948
2957
  def OrganizationOpenId(self, OrganizationOpenId):
2949
2958
  self._OrganizationOpenId = OrganizationOpenId
2950
2959
 
2960
+ @property
2961
+ def AutoJumpBack(self):
2962
+ """签署完成后是否自动回跳
2963
+ <ul><li>false:否, 签署完成不会自动跳转回来(默认)</li><li>true:是, 签署完成会自动跳转回来</li></ul>
2964
+
2965
+ 注:
2966
+ 1. 该参数<font color="red">只针对APP类型(电子签小程序跳转贵方小程序)场景</font> 的签署链接有效
2967
+ 2. <font color="red">手机应用APP 或 微信小程序需要监控界面的返回走后序逻辑</font>, 微信小程序的文档可以参考[这个](https://developers.weixin.qq.com/miniprogram/dev/reference/api/App.html#onShow-Object-object)
2968
+ 3. <font color="red">电子签小程序跳转贵方APP,不支持自动跳转,必需用户手动点击完成按钮(微信的限制)</font>
2969
+ :rtype: bool
2970
+ """
2971
+ return self._AutoJumpBack
2972
+
2973
+ @AutoJumpBack.setter
2974
+ def AutoJumpBack(self, AutoJumpBack):
2975
+ self._AutoJumpBack = AutoJumpBack
2976
+
2951
2977
 
2952
2978
  def _deserialize(self, params):
2953
2979
  if params.get("Agent") is not None:
@@ -2969,6 +2995,7 @@ class ChannelCreateBatchSignUrlRequest(AbstractModel):
2969
2995
  self._FlowBatchUrlInfo._deserialize(params.get("FlowBatchUrlInfo"))
2970
2996
  self._OpenId = params.get("OpenId")
2971
2997
  self._OrganizationOpenId = params.get("OrganizationOpenId")
2998
+ self._AutoJumpBack = params.get("AutoJumpBack")
2972
2999
  memeber_set = set(params.keys())
2973
3000
  for name, value in vars(self).items():
2974
3001
  property_name = name[1:]
@@ -12555,15 +12582,28 @@ class CreateBatchInitOrganizationUrlRequest(AbstractModel):
12555
12582
  :param _Agent: 应用相关信息。 此接口Agent.AppId 必填。
12556
12583
  :type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
12557
12584
  :param _OperateTypes: 初始化操作类型
12558
- <ul><li>CREATE_SEAL : 创建印章</li>
12559
- <li>OPEN_AUTO_SIGN :开通企业自动签署</li></ul>
12585
+ <ul>
12586
+ <li>CREATE_SEAL : 创建印章</li>
12587
+ <li>OPEN_AUTO_SIGN :开通企业自动签署</li>
12588
+ <li>PARTNER_AUTO_SIGN_AUTH :合作方企业或应用平台方授权自动签</li>
12589
+ </ul>
12560
12590
  :type OperateTypes: list of str
12561
12591
  :param _ProxyOrganizationOpenIds: 批量操作的企业列表在第三方平台的企业Id列表,即ProxyOrganizationOpenId列表,最大支持50个
12562
12592
  :type ProxyOrganizationOpenIds: list of str
12593
+ :param _IsAuthorizePlatformApplication: 当操作类型包含 PARTNER_AUTO_SIGN_AUTH 且是给应用平台方授权自动签时传true。
12594
+ ![image](https://qcloudimg.tencent-cloud.cn/raw/f9aba7c999a6d79ada20b4384520e120.png)
12595
+ :type IsAuthorizePlatformApplication: bool
12596
+ :param _AuthorizedProxyOrganizationOpenId: 被授权的合作方企业在第三方平台子客企业标识,即ProxyOrganizationOpenId,当操作类型包含 PARTNER_AUTO_SIGN_AUTH 且要进行合作方企业授权自动签时必传。
12597
+
12598
+
12599
+
12600
+ :type AuthorizedProxyOrganizationOpenId: str
12563
12601
  """
12564
12602
  self._Agent = None
12565
12603
  self._OperateTypes = None
12566
12604
  self._ProxyOrganizationOpenIds = None
12605
+ self._IsAuthorizePlatformApplication = None
12606
+ self._AuthorizedProxyOrganizationOpenId = None
12567
12607
 
12568
12608
  @property
12569
12609
  def Agent(self):
@@ -12579,8 +12619,11 @@ class CreateBatchInitOrganizationUrlRequest(AbstractModel):
12579
12619
  @property
12580
12620
  def OperateTypes(self):
12581
12621
  """初始化操作类型
12582
- <ul><li>CREATE_SEAL : 创建印章</li>
12583
- <li>OPEN_AUTO_SIGN :开通企业自动签署</li></ul>
12622
+ <ul>
12623
+ <li>CREATE_SEAL : 创建印章</li>
12624
+ <li>OPEN_AUTO_SIGN :开通企业自动签署</li>
12625
+ <li>PARTNER_AUTO_SIGN_AUTH :合作方企业或应用平台方授权自动签</li>
12626
+ </ul>
12584
12627
  :rtype: list of str
12585
12628
  """
12586
12629
  return self._OperateTypes
@@ -12600,6 +12643,32 @@ class CreateBatchInitOrganizationUrlRequest(AbstractModel):
12600
12643
  def ProxyOrganizationOpenIds(self, ProxyOrganizationOpenIds):
12601
12644
  self._ProxyOrganizationOpenIds = ProxyOrganizationOpenIds
12602
12645
 
12646
+ @property
12647
+ def IsAuthorizePlatformApplication(self):
12648
+ """当操作类型包含 PARTNER_AUTO_SIGN_AUTH 且是给应用平台方授权自动签时传true。
12649
+ ![image](https://qcloudimg.tencent-cloud.cn/raw/f9aba7c999a6d79ada20b4384520e120.png)
12650
+ :rtype: bool
12651
+ """
12652
+ return self._IsAuthorizePlatformApplication
12653
+
12654
+ @IsAuthorizePlatformApplication.setter
12655
+ def IsAuthorizePlatformApplication(self, IsAuthorizePlatformApplication):
12656
+ self._IsAuthorizePlatformApplication = IsAuthorizePlatformApplication
12657
+
12658
+ @property
12659
+ def AuthorizedProxyOrganizationOpenId(self):
12660
+ """被授权的合作方企业在第三方平台子客企业标识,即ProxyOrganizationOpenId,当操作类型包含 PARTNER_AUTO_SIGN_AUTH 且要进行合作方企业授权自动签时必传。
12661
+
12662
+
12663
+
12664
+ :rtype: str
12665
+ """
12666
+ return self._AuthorizedProxyOrganizationOpenId
12667
+
12668
+ @AuthorizedProxyOrganizationOpenId.setter
12669
+ def AuthorizedProxyOrganizationOpenId(self, AuthorizedProxyOrganizationOpenId):
12670
+ self._AuthorizedProxyOrganizationOpenId = AuthorizedProxyOrganizationOpenId
12671
+
12603
12672
 
12604
12673
  def _deserialize(self, params):
12605
12674
  if params.get("Agent") is not None:
@@ -12607,6 +12676,8 @@ class CreateBatchInitOrganizationUrlRequest(AbstractModel):
12607
12676
  self._Agent._deserialize(params.get("Agent"))
12608
12677
  self._OperateTypes = params.get("OperateTypes")
12609
12678
  self._ProxyOrganizationOpenIds = params.get("ProxyOrganizationOpenIds")
12679
+ self._IsAuthorizePlatformApplication = params.get("IsAuthorizePlatformApplication")
12680
+ self._AuthorizedProxyOrganizationOpenId = params.get("AuthorizedProxyOrganizationOpenId")
12610
12681
  memeber_set = set(params.keys())
12611
12682
  for name, value in vars(self).items():
12612
12683
  property_name = name[1:]