tencentcloud-sdk-python 3.0.1270__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/autoscaling/v20180419/models.py +6 -2
- tencentcloud/cdwch/v20200915/cdwch_client.py +23 -0
- tencentcloud/cdwch/v20200915/models.py +175 -0
- tencentcloud/cynosdb/v20190107/models.py +17 -2
- tencentcloud/ess/v20201111/models.py +33 -4
- tencentcloud/essbasic/v20210526/models.py +48 -4
- tencentcloud/market/v20191010/models.py +0 -2
- tencentcloud/mps/v20190612/models.py +284 -0
- tencentcloud/mps/v20190612/mps_client.py +25 -0
- tencentcloud/wedata/v20210820/models.py +79 -4
- {tencentcloud_sdk_python-3.0.1270.dist-info → tencentcloud_sdk_python-3.0.1271.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1270.dist-info → tencentcloud_sdk_python-3.0.1271.dist-info}/RECORD +16 -16
- {tencentcloud_sdk_python-3.0.1270.dist-info → tencentcloud_sdk_python-3.0.1271.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1270.dist-info → tencentcloud_sdk_python-3.0.1271.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1270.dist-info → tencentcloud_sdk_python-3.0.1271.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -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:
|
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
|
-
"""
|
13572
|
+
"""刷新模式。取值范围:
|
13573
|
+
<li>ROLLING_UPDATE_RESET:重装系统进行滚动更新</li>
|
13574
|
+
<li>ROLLING_UPDATE_REPLACE:新建实例替换进行滚动更新,该模式暂不支持回滚接口</li>
|
13571
13575
|
:rtype: str
|
13572
13576
|
"""
|
13573
13577
|
return self._RefreshMode
|
@@ -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
|
|
@@ -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:
|
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
|
-
"""
|
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
|
3886
|
+
<ul>
|
3887
|
+
<li>CREATE_SEAL : 创建印章</li>
|
3887
3888
|
<li>AUTH_JOIN_ORGANIZATION_GROUP : 加入集团企业</li>
|
3888
|
-
<li>OPEN_AUTO_SIGN :开通企业自动签署</li
|
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
|
+

|
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
|
3925
|
+
<ul>
|
3926
|
+
<li>CREATE_SEAL : 创建印章</li>
|
3916
3927
|
<li>AUTH_JOIN_ORGANIZATION_GROUP : 加入集团企业</li>
|
3917
|
-
<li>OPEN_AUTO_SIGN :开通企业自动签署</li
|
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
|
+

|
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:]
|
@@ -12582,15 +12582,28 @@ class CreateBatchInitOrganizationUrlRequest(AbstractModel):
|
|
12582
12582
|
:param _Agent: 应用相关信息。 此接口Agent.AppId 必填。
|
12583
12583
|
:type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
|
12584
12584
|
:param _OperateTypes: 初始化操作类型
|
12585
|
-
<ul
|
12586
|
-
<li>
|
12585
|
+
<ul>
|
12586
|
+
<li>CREATE_SEAL : 创建印章</li>
|
12587
|
+
<li>OPEN_AUTO_SIGN :开通企业自动签署</li>
|
12588
|
+
<li>PARTNER_AUTO_SIGN_AUTH :合作方企业或应用平台方授权自动签</li>
|
12589
|
+
</ul>
|
12587
12590
|
:type OperateTypes: list of str
|
12588
12591
|
:param _ProxyOrganizationOpenIds: 批量操作的企业列表在第三方平台的企业Id列表,即ProxyOrganizationOpenId列表,最大支持50个
|
12589
12592
|
:type ProxyOrganizationOpenIds: list of str
|
12593
|
+
:param _IsAuthorizePlatformApplication: 当操作类型包含 PARTNER_AUTO_SIGN_AUTH 且是给应用平台方授权自动签时传true。
|
12594
|
+

|
12595
|
+
:type IsAuthorizePlatformApplication: bool
|
12596
|
+
:param _AuthorizedProxyOrganizationOpenId: 被授权的合作方企业在第三方平台子客企业标识,即ProxyOrganizationOpenId,当操作类型包含 PARTNER_AUTO_SIGN_AUTH 且要进行合作方企业授权自动签时必传。
|
12597
|
+
|
12598
|
+
|
12599
|
+
|
12600
|
+
:type AuthorizedProxyOrganizationOpenId: str
|
12590
12601
|
"""
|
12591
12602
|
self._Agent = None
|
12592
12603
|
self._OperateTypes = None
|
12593
12604
|
self._ProxyOrganizationOpenIds = None
|
12605
|
+
self._IsAuthorizePlatformApplication = None
|
12606
|
+
self._AuthorizedProxyOrganizationOpenId = None
|
12594
12607
|
|
12595
12608
|
@property
|
12596
12609
|
def Agent(self):
|
@@ -12606,8 +12619,11 @@ class CreateBatchInitOrganizationUrlRequest(AbstractModel):
|
|
12606
12619
|
@property
|
12607
12620
|
def OperateTypes(self):
|
12608
12621
|
"""初始化操作类型
|
12609
|
-
<ul
|
12610
|
-
<li>
|
12622
|
+
<ul>
|
12623
|
+
<li>CREATE_SEAL : 创建印章</li>
|
12624
|
+
<li>OPEN_AUTO_SIGN :开通企业自动签署</li>
|
12625
|
+
<li>PARTNER_AUTO_SIGN_AUTH :合作方企业或应用平台方授权自动签</li>
|
12626
|
+
</ul>
|
12611
12627
|
:rtype: list of str
|
12612
12628
|
"""
|
12613
12629
|
return self._OperateTypes
|
@@ -12627,6 +12643,32 @@ class CreateBatchInitOrganizationUrlRequest(AbstractModel):
|
|
12627
12643
|
def ProxyOrganizationOpenIds(self, ProxyOrganizationOpenIds):
|
12628
12644
|
self._ProxyOrganizationOpenIds = ProxyOrganizationOpenIds
|
12629
12645
|
|
12646
|
+
@property
|
12647
|
+
def IsAuthorizePlatformApplication(self):
|
12648
|
+
"""当操作类型包含 PARTNER_AUTO_SIGN_AUTH 且是给应用平台方授权自动签时传true。
|
12649
|
+

|
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
|
+
|
12630
12672
|
|
12631
12673
|
def _deserialize(self, params):
|
12632
12674
|
if params.get("Agent") is not None:
|
@@ -12634,6 +12676,8 @@ class CreateBatchInitOrganizationUrlRequest(AbstractModel):
|
|
12634
12676
|
self._Agent._deserialize(params.get("Agent"))
|
12635
12677
|
self._OperateTypes = params.get("OperateTypes")
|
12636
12678
|
self._ProxyOrganizationOpenIds = params.get("ProxyOrganizationOpenIds")
|
12679
|
+
self._IsAuthorizePlatformApplication = params.get("IsAuthorizePlatformApplication")
|
12680
|
+
self._AuthorizedProxyOrganizationOpenId = params.get("AuthorizedProxyOrganizationOpenId")
|
12637
12681
|
memeber_set = set(params.keys())
|
12638
12682
|
for name, value in vars(self).items():
|
12639
12683
|
property_name = name[1:]
|
@@ -141,7 +141,6 @@ class FlowProductRemindResponse(AbstractModel):
|
|
141
141
|
:param _FlowId: 流水号
|
142
142
|
:type FlowId: str
|
143
143
|
:param _Info: 消息
|
144
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
145
144
|
:type Info: str
|
146
145
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
147
146
|
:type RequestId: str
|
@@ -176,7 +175,6 @@ class FlowProductRemindResponse(AbstractModel):
|
|
176
175
|
@property
|
177
176
|
def Info(self):
|
178
177
|
"""消息
|
179
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
180
178
|
:rtype: str
|
181
179
|
"""
|
182
180
|
return self._Info
|
@@ -31563,6 +31563,101 @@ class HighlightSegmentItem(AbstractModel):
|
|
31563
31563
|
|
31564
31564
|
|
31565
31565
|
|
31566
|
+
class ImageEncodeConfig(AbstractModel):
|
31567
|
+
"""图片编码格式参数
|
31568
|
+
|
31569
|
+
"""
|
31570
|
+
|
31571
|
+
def __init__(self):
|
31572
|
+
r"""
|
31573
|
+
:param _Format: 图片格式,取值范围:JPG、BMP、GIF、PNG、WebP,缺省为原图格式。
|
31574
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
31575
|
+
:type Format: str
|
31576
|
+
:param _Quality: 图片的相对质量,取值范围:1 - 100,数值以原图质量为标准,缺省为原图质量。
|
31577
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
31578
|
+
:type Quality: int
|
31579
|
+
"""
|
31580
|
+
self._Format = None
|
31581
|
+
self._Quality = None
|
31582
|
+
|
31583
|
+
@property
|
31584
|
+
def Format(self):
|
31585
|
+
"""图片格式,取值范围:JPG、BMP、GIF、PNG、WebP,缺省为原图格式。
|
31586
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
31587
|
+
:rtype: str
|
31588
|
+
"""
|
31589
|
+
return self._Format
|
31590
|
+
|
31591
|
+
@Format.setter
|
31592
|
+
def Format(self, Format):
|
31593
|
+
self._Format = Format
|
31594
|
+
|
31595
|
+
@property
|
31596
|
+
def Quality(self):
|
31597
|
+
"""图片的相对质量,取值范围:1 - 100,数值以原图质量为标准,缺省为原图质量。
|
31598
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
31599
|
+
:rtype: int
|
31600
|
+
"""
|
31601
|
+
return self._Quality
|
31602
|
+
|
31603
|
+
@Quality.setter
|
31604
|
+
def Quality(self, Quality):
|
31605
|
+
self._Quality = Quality
|
31606
|
+
|
31607
|
+
|
31608
|
+
def _deserialize(self, params):
|
31609
|
+
self._Format = params.get("Format")
|
31610
|
+
self._Quality = params.get("Quality")
|
31611
|
+
memeber_set = set(params.keys())
|
31612
|
+
for name, value in vars(self).items():
|
31613
|
+
property_name = name[1:]
|
31614
|
+
if property_name in memeber_set:
|
31615
|
+
memeber_set.remove(property_name)
|
31616
|
+
if len(memeber_set) > 0:
|
31617
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
31618
|
+
|
31619
|
+
|
31620
|
+
|
31621
|
+
class ImageEnhanceConfig(AbstractModel):
|
31622
|
+
"""图片增强参数
|
31623
|
+
|
31624
|
+
"""
|
31625
|
+
|
31626
|
+
def __init__(self):
|
31627
|
+
r"""
|
31628
|
+
:param _SuperResolution: 超分配置。
|
31629
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
31630
|
+
:type SuperResolution: :class:`tencentcloud.mps.v20190612.models.SuperResolutionConfig`
|
31631
|
+
"""
|
31632
|
+
self._SuperResolution = None
|
31633
|
+
|
31634
|
+
@property
|
31635
|
+
def SuperResolution(self):
|
31636
|
+
"""超分配置。
|
31637
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
31638
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.SuperResolutionConfig`
|
31639
|
+
"""
|
31640
|
+
return self._SuperResolution
|
31641
|
+
|
31642
|
+
@SuperResolution.setter
|
31643
|
+
def SuperResolution(self, SuperResolution):
|
31644
|
+
self._SuperResolution = SuperResolution
|
31645
|
+
|
31646
|
+
|
31647
|
+
def _deserialize(self, params):
|
31648
|
+
if params.get("SuperResolution") is not None:
|
31649
|
+
self._SuperResolution = SuperResolutionConfig()
|
31650
|
+
self._SuperResolution._deserialize(params.get("SuperResolution"))
|
31651
|
+
memeber_set = set(params.keys())
|
31652
|
+
for name, value in vars(self).items():
|
31653
|
+
property_name = name[1:]
|
31654
|
+
if property_name in memeber_set:
|
31655
|
+
memeber_set.remove(property_name)
|
31656
|
+
if len(memeber_set) > 0:
|
31657
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
31658
|
+
|
31659
|
+
|
31660
|
+
|
31566
31661
|
class ImageQualityEnhanceConfig(AbstractModel):
|
31567
31662
|
"""综合增强配置
|
31568
31663
|
|
@@ -32030,6 +32125,65 @@ class ImageSpriteTemplate(AbstractModel):
|
|
32030
32125
|
|
32031
32126
|
|
32032
32127
|
|
32128
|
+
class ImageTaskInput(AbstractModel):
|
32129
|
+
"""图片任务输入参数
|
32130
|
+
|
32131
|
+
"""
|
32132
|
+
|
32133
|
+
def __init__(self):
|
32134
|
+
r"""
|
32135
|
+
:param _EncodeConfig: 图片编码配置。
|
32136
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
32137
|
+
:type EncodeConfig: :class:`tencentcloud.mps.v20190612.models.ImageEncodeConfig`
|
32138
|
+
:param _EnhanceConfig: 图片增强配置。
|
32139
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
32140
|
+
:type EnhanceConfig: :class:`tencentcloud.mps.v20190612.models.ImageEnhanceConfig`
|
32141
|
+
"""
|
32142
|
+
self._EncodeConfig = None
|
32143
|
+
self._EnhanceConfig = None
|
32144
|
+
|
32145
|
+
@property
|
32146
|
+
def EncodeConfig(self):
|
32147
|
+
"""图片编码配置。
|
32148
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
32149
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.ImageEncodeConfig`
|
32150
|
+
"""
|
32151
|
+
return self._EncodeConfig
|
32152
|
+
|
32153
|
+
@EncodeConfig.setter
|
32154
|
+
def EncodeConfig(self, EncodeConfig):
|
32155
|
+
self._EncodeConfig = EncodeConfig
|
32156
|
+
|
32157
|
+
@property
|
32158
|
+
def EnhanceConfig(self):
|
32159
|
+
"""图片增强配置。
|
32160
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
32161
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.ImageEnhanceConfig`
|
32162
|
+
"""
|
32163
|
+
return self._EnhanceConfig
|
32164
|
+
|
32165
|
+
@EnhanceConfig.setter
|
32166
|
+
def EnhanceConfig(self, EnhanceConfig):
|
32167
|
+
self._EnhanceConfig = EnhanceConfig
|
32168
|
+
|
32169
|
+
|
32170
|
+
def _deserialize(self, params):
|
32171
|
+
if params.get("EncodeConfig") is not None:
|
32172
|
+
self._EncodeConfig = ImageEncodeConfig()
|
32173
|
+
self._EncodeConfig._deserialize(params.get("EncodeConfig"))
|
32174
|
+
if params.get("EnhanceConfig") is not None:
|
32175
|
+
self._EnhanceConfig = ImageEnhanceConfig()
|
32176
|
+
self._EnhanceConfig._deserialize(params.get("EnhanceConfig"))
|
32177
|
+
memeber_set = set(params.keys())
|
32178
|
+
for name, value in vars(self).items():
|
32179
|
+
property_name = name[1:]
|
32180
|
+
if property_name in memeber_set:
|
32181
|
+
memeber_set.remove(property_name)
|
32182
|
+
if len(memeber_set) > 0:
|
32183
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
32184
|
+
|
32185
|
+
|
32186
|
+
|
32033
32187
|
class ImageWatermarkInput(AbstractModel):
|
32034
32188
|
"""图片水印模板输入参数
|
32035
32189
|
|
@@ -45359,6 +45513,136 @@ class PornOcrReviewTemplateInfoForUpdate(AbstractModel):
|
|
45359
45513
|
|
45360
45514
|
|
45361
45515
|
|
45516
|
+
class ProcessImageRequest(AbstractModel):
|
45517
|
+
"""ProcessImage请求参数结构体
|
45518
|
+
|
45519
|
+
"""
|
45520
|
+
|
45521
|
+
def __init__(self):
|
45522
|
+
r"""
|
45523
|
+
:param _InputInfo: 图片处理的文件输入信息。
|
45524
|
+
:type InputInfo: :class:`tencentcloud.mps.v20190612.models.MediaInputInfo`
|
45525
|
+
:param _OutputStorage: 图片处理输出文件的目标存储。不填则继承 InputInfo 中的存储位置。
|
45526
|
+
:type OutputStorage: :class:`tencentcloud.mps.v20190612.models.TaskOutputStorage`
|
45527
|
+
:param _OutputDir: 图片处理生成的文件输出的路径。如果不填表示与 InputInfo 中文件所在的目录一致。如果是目录,如`/image/201907/`,表示继承原文件名输出到该目录。
|
45528
|
+
:type OutputDir: str
|
45529
|
+
:param _ImageTask: 图片处理参数。
|
45530
|
+
:type ImageTask: :class:`tencentcloud.mps.v20190612.models.ImageTaskInput`
|
45531
|
+
"""
|
45532
|
+
self._InputInfo = None
|
45533
|
+
self._OutputStorage = None
|
45534
|
+
self._OutputDir = None
|
45535
|
+
self._ImageTask = None
|
45536
|
+
|
45537
|
+
@property
|
45538
|
+
def InputInfo(self):
|
45539
|
+
"""图片处理的文件输入信息。
|
45540
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.MediaInputInfo`
|
45541
|
+
"""
|
45542
|
+
return self._InputInfo
|
45543
|
+
|
45544
|
+
@InputInfo.setter
|
45545
|
+
def InputInfo(self, InputInfo):
|
45546
|
+
self._InputInfo = InputInfo
|
45547
|
+
|
45548
|
+
@property
|
45549
|
+
def OutputStorage(self):
|
45550
|
+
"""图片处理输出文件的目标存储。不填则继承 InputInfo 中的存储位置。
|
45551
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.TaskOutputStorage`
|
45552
|
+
"""
|
45553
|
+
return self._OutputStorage
|
45554
|
+
|
45555
|
+
@OutputStorage.setter
|
45556
|
+
def OutputStorage(self, OutputStorage):
|
45557
|
+
self._OutputStorage = OutputStorage
|
45558
|
+
|
45559
|
+
@property
|
45560
|
+
def OutputDir(self):
|
45561
|
+
"""图片处理生成的文件输出的路径。如果不填表示与 InputInfo 中文件所在的目录一致。如果是目录,如`/image/201907/`,表示继承原文件名输出到该目录。
|
45562
|
+
:rtype: str
|
45563
|
+
"""
|
45564
|
+
return self._OutputDir
|
45565
|
+
|
45566
|
+
@OutputDir.setter
|
45567
|
+
def OutputDir(self, OutputDir):
|
45568
|
+
self._OutputDir = OutputDir
|
45569
|
+
|
45570
|
+
@property
|
45571
|
+
def ImageTask(self):
|
45572
|
+
"""图片处理参数。
|
45573
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.ImageTaskInput`
|
45574
|
+
"""
|
45575
|
+
return self._ImageTask
|
45576
|
+
|
45577
|
+
@ImageTask.setter
|
45578
|
+
def ImageTask(self, ImageTask):
|
45579
|
+
self._ImageTask = ImageTask
|
45580
|
+
|
45581
|
+
|
45582
|
+
def _deserialize(self, params):
|
45583
|
+
if params.get("InputInfo") is not None:
|
45584
|
+
self._InputInfo = MediaInputInfo()
|
45585
|
+
self._InputInfo._deserialize(params.get("InputInfo"))
|
45586
|
+
if params.get("OutputStorage") is not None:
|
45587
|
+
self._OutputStorage = TaskOutputStorage()
|
45588
|
+
self._OutputStorage._deserialize(params.get("OutputStorage"))
|
45589
|
+
self._OutputDir = params.get("OutputDir")
|
45590
|
+
if params.get("ImageTask") is not None:
|
45591
|
+
self._ImageTask = ImageTaskInput()
|
45592
|
+
self._ImageTask._deserialize(params.get("ImageTask"))
|
45593
|
+
memeber_set = set(params.keys())
|
45594
|
+
for name, value in vars(self).items():
|
45595
|
+
property_name = name[1:]
|
45596
|
+
if property_name in memeber_set:
|
45597
|
+
memeber_set.remove(property_name)
|
45598
|
+
if len(memeber_set) > 0:
|
45599
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
45600
|
+
|
45601
|
+
|
45602
|
+
|
45603
|
+
class ProcessImageResponse(AbstractModel):
|
45604
|
+
"""ProcessImage返回参数结构体
|
45605
|
+
|
45606
|
+
"""
|
45607
|
+
|
45608
|
+
def __init__(self):
|
45609
|
+
r"""
|
45610
|
+
:param _TaskId: 任务 ID。
|
45611
|
+
:type TaskId: str
|
45612
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
45613
|
+
:type RequestId: str
|
45614
|
+
"""
|
45615
|
+
self._TaskId = None
|
45616
|
+
self._RequestId = None
|
45617
|
+
|
45618
|
+
@property
|
45619
|
+
def TaskId(self):
|
45620
|
+
"""任务 ID。
|
45621
|
+
:rtype: str
|
45622
|
+
"""
|
45623
|
+
return self._TaskId
|
45624
|
+
|
45625
|
+
@TaskId.setter
|
45626
|
+
def TaskId(self, TaskId):
|
45627
|
+
self._TaskId = TaskId
|
45628
|
+
|
45629
|
+
@property
|
45630
|
+
def RequestId(self):
|
45631
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
45632
|
+
:rtype: str
|
45633
|
+
"""
|
45634
|
+
return self._RequestId
|
45635
|
+
|
45636
|
+
@RequestId.setter
|
45637
|
+
def RequestId(self, RequestId):
|
45638
|
+
self._RequestId = RequestId
|
45639
|
+
|
45640
|
+
|
45641
|
+
def _deserialize(self, params):
|
45642
|
+
self._TaskId = params.get("TaskId")
|
45643
|
+
self._RequestId = params.get("RequestId")
|
45644
|
+
|
45645
|
+
|
45362
45646
|
class ProcessLiveStreamRequest(AbstractModel):
|
45363
45647
|
"""ProcessLiveStream请求参数结构体
|
45364
45648
|
|
@@ -2392,6 +2392,31 @@ class MpsClient(AbstractClient):
|
|
2392
2392
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2393
2393
|
|
2394
2394
|
|
2395
|
+
def ProcessImage(self, request):
|
2396
|
+
"""发起图片处理,功能包括:
|
2397
|
+
1. 格式转换;
|
2398
|
+
2. 图像增强;
|
2399
|
+
|
2400
|
+
:param request: Request instance for ProcessImage.
|
2401
|
+
:type request: :class:`tencentcloud.mps.v20190612.models.ProcessImageRequest`
|
2402
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.ProcessImageResponse`
|
2403
|
+
|
2404
|
+
"""
|
2405
|
+
try:
|
2406
|
+
params = request._serialize()
|
2407
|
+
headers = request.headers
|
2408
|
+
body = self.call("ProcessImage", params, headers=headers)
|
2409
|
+
response = json.loads(body)
|
2410
|
+
model = models.ProcessImageResponse()
|
2411
|
+
model._deserialize(response["Response"])
|
2412
|
+
return model
|
2413
|
+
except Exception as e:
|
2414
|
+
if isinstance(e, TencentCloudSDKException):
|
2415
|
+
raise
|
2416
|
+
else:
|
2417
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2418
|
+
|
2419
|
+
|
2395
2420
|
def ProcessLiveStream(self, request):
|
2396
2421
|
"""对直播流媒体发起处理任务,功能包括:
|
2397
2422
|
|
@@ -79113,9 +79113,9 @@ class UpdateDataModelRegistryInfoRequest(AbstractModel):
|
|
79113
79113
|
:type CloudappId: str
|
79114
79114
|
:param _AppCamRole: 数语的CAM角色
|
79115
79115
|
:type AppCamRole: str
|
79116
|
-
:param _Ip:
|
79116
|
+
:param _Ip: 数语的公网访问ip
|
79117
79117
|
:type Ip: str
|
79118
|
-
:param _Port:
|
79118
|
+
:param _Port: 数语的公网访问端口
|
79119
79119
|
:type Port: int
|
79120
79120
|
:param _AppCamRoleId: 数语的CAM角色id
|
79121
79121
|
:type AppCamRoleId: str
|
@@ -79125,6 +79125,16 @@ class UpdateDataModelRegistryInfoRequest(AbstractModel):
|
|
79125
79125
|
:type TenantId: str
|
79126
79126
|
:param _OwnId: 主账号id
|
79127
79127
|
:type OwnId: str
|
79128
|
+
:param _VpcId: VpcId
|
79129
|
+
:type VpcId: str
|
79130
|
+
:param _VpcRegion: Vpc地域
|
79131
|
+
:type VpcRegion: str
|
79132
|
+
:param _Pip: 数语的内网访问ip
|
79133
|
+
:type Pip: str
|
79134
|
+
:param _Pport: 数语的内网访问端口
|
79135
|
+
:type Pport: int
|
79136
|
+
:param _IsPublic: 是否开放公网访问数语, 1:是,0:否,默认1开放
|
79137
|
+
:type IsPublic: int
|
79128
79138
|
"""
|
79129
79139
|
self._CloudappId = None
|
79130
79140
|
self._AppCamRole = None
|
@@ -79134,6 +79144,11 @@ class UpdateDataModelRegistryInfoRequest(AbstractModel):
|
|
79134
79144
|
self._Provider = None
|
79135
79145
|
self._TenantId = None
|
79136
79146
|
self._OwnId = None
|
79147
|
+
self._VpcId = None
|
79148
|
+
self._VpcRegion = None
|
79149
|
+
self._Pip = None
|
79150
|
+
self._Pport = None
|
79151
|
+
self._IsPublic = None
|
79137
79152
|
|
79138
79153
|
@property
|
79139
79154
|
def CloudappId(self):
|
@@ -79159,7 +79174,7 @@ class UpdateDataModelRegistryInfoRequest(AbstractModel):
|
|
79159
79174
|
|
79160
79175
|
@property
|
79161
79176
|
def Ip(self):
|
79162
|
-
"""
|
79177
|
+
"""数语的公网访问ip
|
79163
79178
|
:rtype: str
|
79164
79179
|
"""
|
79165
79180
|
return self._Ip
|
@@ -79170,7 +79185,7 @@ class UpdateDataModelRegistryInfoRequest(AbstractModel):
|
|
79170
79185
|
|
79171
79186
|
@property
|
79172
79187
|
def Port(self):
|
79173
|
-
"""
|
79188
|
+
"""数语的公网访问端口
|
79174
79189
|
:rtype: int
|
79175
79190
|
"""
|
79176
79191
|
return self._Port
|
@@ -79223,6 +79238,61 @@ class UpdateDataModelRegistryInfoRequest(AbstractModel):
|
|
79223
79238
|
def OwnId(self, OwnId):
|
79224
79239
|
self._OwnId = OwnId
|
79225
79240
|
|
79241
|
+
@property
|
79242
|
+
def VpcId(self):
|
79243
|
+
"""VpcId
|
79244
|
+
:rtype: str
|
79245
|
+
"""
|
79246
|
+
return self._VpcId
|
79247
|
+
|
79248
|
+
@VpcId.setter
|
79249
|
+
def VpcId(self, VpcId):
|
79250
|
+
self._VpcId = VpcId
|
79251
|
+
|
79252
|
+
@property
|
79253
|
+
def VpcRegion(self):
|
79254
|
+
"""Vpc地域
|
79255
|
+
:rtype: str
|
79256
|
+
"""
|
79257
|
+
return self._VpcRegion
|
79258
|
+
|
79259
|
+
@VpcRegion.setter
|
79260
|
+
def VpcRegion(self, VpcRegion):
|
79261
|
+
self._VpcRegion = VpcRegion
|
79262
|
+
|
79263
|
+
@property
|
79264
|
+
def Pip(self):
|
79265
|
+
"""数语的内网访问ip
|
79266
|
+
:rtype: str
|
79267
|
+
"""
|
79268
|
+
return self._Pip
|
79269
|
+
|
79270
|
+
@Pip.setter
|
79271
|
+
def Pip(self, Pip):
|
79272
|
+
self._Pip = Pip
|
79273
|
+
|
79274
|
+
@property
|
79275
|
+
def Pport(self):
|
79276
|
+
"""数语的内网访问端口
|
79277
|
+
:rtype: int
|
79278
|
+
"""
|
79279
|
+
return self._Pport
|
79280
|
+
|
79281
|
+
@Pport.setter
|
79282
|
+
def Pport(self, Pport):
|
79283
|
+
self._Pport = Pport
|
79284
|
+
|
79285
|
+
@property
|
79286
|
+
def IsPublic(self):
|
79287
|
+
"""是否开放公网访问数语, 1:是,0:否,默认1开放
|
79288
|
+
:rtype: int
|
79289
|
+
"""
|
79290
|
+
return self._IsPublic
|
79291
|
+
|
79292
|
+
@IsPublic.setter
|
79293
|
+
def IsPublic(self, IsPublic):
|
79294
|
+
self._IsPublic = IsPublic
|
79295
|
+
|
79226
79296
|
|
79227
79297
|
def _deserialize(self, params):
|
79228
79298
|
self._CloudappId = params.get("CloudappId")
|
@@ -79233,6 +79303,11 @@ class UpdateDataModelRegistryInfoRequest(AbstractModel):
|
|
79233
79303
|
self._Provider = params.get("Provider")
|
79234
79304
|
self._TenantId = params.get("TenantId")
|
79235
79305
|
self._OwnId = params.get("OwnId")
|
79306
|
+
self._VpcId = params.get("VpcId")
|
79307
|
+
self._VpcRegion = params.get("VpcRegion")
|
79308
|
+
self._Pip = params.get("Pip")
|
79309
|
+
self._Pport = params.get("Pport")
|
79310
|
+
self._IsPublic = params.get("IsPublic")
|
79236
79311
|
memeber_set = set(params.keys())
|
79237
79312
|
for name, value in vars(self).items():
|
79238
79313
|
property_name = name[1:]
|
{tencentcloud_sdk_python-3.0.1270.dist-info → tencentcloud_sdk_python-3.0.1271.dist-info}/RECORD
RENAMED
@@ -50,7 +50,7 @@ QcloudApi/modules/vod.py,sha256=l05_qYx0l5bq6LJ8mAX2YO3pRXzxY3JMdDHV1N_SRKE,679
|
|
50
50
|
QcloudApi/modules/vpc.py,sha256=JBiNpcnrAwf_UJ_UdpxQybKeCTfeveJ9R1B-vO1_w_U,679
|
51
51
|
QcloudApi/modules/wenzhi.py,sha256=hr1rRLU8TxxSfejMqV2O4alO_yXF3C0tfZMSzziu54Q,685
|
52
52
|
QcloudApi/modules/yunsou.py,sha256=JlgzMjnJaho6axFVhSTAv6DS0HLcjl0LJL02q6qI2yY,685
|
53
|
-
tencentcloud/__init__.py,sha256=
|
53
|
+
tencentcloud/__init__.py,sha256=P6vTkLaluDX9Gn1s6PgPFroJkx3jmGv0Q0JfRgc9tjQ,631
|
54
54
|
tencentcloud/aa/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
55
55
|
tencentcloud/aa/v20200224/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
56
56
|
tencentcloud/aa/v20200224/aa_client.py,sha256=L7P5zpJElo9WoLSkhvLxnfpEGCZ1q2e5Fzx3wLEioAA,2184
|
@@ -149,7 +149,7 @@ tencentcloud/autoscaling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
149
149
|
tencentcloud/autoscaling/v20180419/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
150
150
|
tencentcloud/autoscaling/v20180419/autoscaling_client.py,sha256=uQKdR2JmKzv8SyxNialLhaf4lKWLDyRafD3NBBjdh6g,70128
|
151
151
|
tencentcloud/autoscaling/v20180419/errorcodes.py,sha256=hne3WJw4w-lDJf2lzcpnhaGahe8pCjtJg214kecQEG8,22243
|
152
|
-
tencentcloud/autoscaling/v20180419/models.py,sha256=
|
152
|
+
tencentcloud/autoscaling/v20180419/models.py,sha256=38p-81_yE4aMP3iGQjB5Wh6erhPUKjk2LIF5vxBkDW8,584175
|
153
153
|
tencentcloud/ba/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
154
154
|
tencentcloud/ba/v20200720/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
155
155
|
tencentcloud/ba/v20200720/ba_client.py,sha256=Xx8oer0ij9FVyEQLCPgEhBfEYGC6YshgJk3Y1JPDfpY,3804
|
@@ -295,9 +295,9 @@ tencentcloud/cds/v20180420/errorcodes.py,sha256=Ed_74EneNf3XeL2pqGL8M5l9JnqSjQOY
|
|
295
295
|
tencentcloud/cds/v20180420/models.py,sha256=DeqduTELrd0Sl-4EUkveQT7sNhDfjxor_0GrqG1q_0s,28466
|
296
296
|
tencentcloud/cdwch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
297
297
|
tencentcloud/cdwch/v20200915/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
298
|
-
tencentcloud/cdwch/v20200915/cdwch_client.py,sha256=
|
298
|
+
tencentcloud/cdwch/v20200915/cdwch_client.py,sha256=OcbGqyl4cEdVAT9o4P3Du8yuHTuq_xBJZq5kNNEqGfQ,26368
|
299
299
|
tencentcloud/cdwch/v20200915/errorcodes.py,sha256=i5AghJAxSuSI3xB3eKtkZA1cnY_dQYmNEeTnn2ePSFM,703
|
300
|
-
tencentcloud/cdwch/v20200915/models.py,sha256=
|
300
|
+
tencentcloud/cdwch/v20200915/models.py,sha256=yd-hcMg6zrwyBK24HpvpmHiwKibObACiPMnkZcaFlB8,220270
|
301
301
|
tencentcloud/cdwdoris/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
302
302
|
tencentcloud/cdwdoris/v20211228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
303
303
|
tencentcloud/cdwdoris/v20211228/cdwdoris_client.py,sha256=KKpMsrUtQy7dURzO5kkjsGL_EW2NoFqScZ2tOZ-j6SI,55961
|
@@ -470,7 +470,7 @@ tencentcloud/cynosdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hS
|
|
470
470
|
tencentcloud/cynosdb/v20190107/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
471
471
|
tencentcloud/cynosdb/v20190107/cynosdb_client.py,sha256=d5guFQZVUZSRCVy74WDshAA43phS1QA-kd46UMOcLEw,142938
|
472
472
|
tencentcloud/cynosdb/v20190107/errorcodes.py,sha256=rRoiXR7NWsMPJk7Kmk--DjT9CFXJkhIycwQQKisG_Ag,13026
|
473
|
-
tencentcloud/cynosdb/v20190107/models.py,sha256=
|
473
|
+
tencentcloud/cynosdb/v20190107/models.py,sha256=FQDDjH64dMYmbZy7HdSQgSPHv1v3N-0anuf93Z-6LQY,1149051
|
474
474
|
tencentcloud/dasb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
475
475
|
tencentcloud/dasb/v20191018/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
476
476
|
tencentcloud/dasb/v20191018/dasb_client.py,sha256=FTJqlBHjqRmfkdsZFVOuZ5x_jg98jHrSEotXvPxPDFA,56319
|
@@ -602,7 +602,7 @@ tencentcloud/ess/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
602
602
|
tencentcloud/ess/v20201111/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
603
603
|
tencentcloud/ess/v20201111/errorcodes.py,sha256=mShfLfMlwo5en1UxN2AcHvQdHtPTqPkOSVwQdZSrEZs,26124
|
604
604
|
tencentcloud/ess/v20201111/ess_client.py,sha256=nndU65J6TA9ChHBjrS_JEu-2vDNh7IPu1sMMjtsvRqM,166020
|
605
|
-
tencentcloud/ess/v20201111/models.py,sha256=
|
605
|
+
tencentcloud/ess/v20201111/models.py,sha256=R2pbYMd1qcs0qzgj0mJatlS3TZWv3EhrYFaqM1WEmTM,1281068
|
606
606
|
tencentcloud/essbasic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
607
607
|
tencentcloud/essbasic/v20201222/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
608
608
|
tencentcloud/essbasic/v20201222/errorcodes.py,sha256=cZPs0vLmArRFQoZqxM4alb0WeBF9f0V0IHmt65dUdxs,5392
|
@@ -611,7 +611,7 @@ tencentcloud/essbasic/v20201222/models.py,sha256=O9e3iv74K4tUd9YKAf61DQ1KKG59MwV
|
|
611
611
|
tencentcloud/essbasic/v20210526/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
612
612
|
tencentcloud/essbasic/v20210526/errorcodes.py,sha256=L1_0J4AOPtBTgtVqauXq0aVisXRe03bOUWFB0QCnXRs,18219
|
613
613
|
tencentcloud/essbasic/v20210526/essbasic_client.py,sha256=k_Alx-Rc75h2xllcQI4XtKljLTBHSZsoP9-_5QbgEV0,157750
|
614
|
-
tencentcloud/essbasic/v20210526/models.py,sha256=
|
614
|
+
tencentcloud/essbasic/v20210526/models.py,sha256=Jq7Zde4sENgoWTsx31NPaZ5uEHgqyNhygSdF9T1y5lo,1133968
|
615
615
|
tencentcloud/facefusion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
616
616
|
tencentcloud/facefusion/v20181201/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
617
617
|
tencentcloud/facefusion/v20181201/errorcodes.py,sha256=v269JghsRzIpaQbiHgyqn8wKNfvjYkVM7SjaPBRQYPs,5731
|
@@ -869,7 +869,7 @@ tencentcloud/market/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
869
869
|
tencentcloud/market/v20191010/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
870
870
|
tencentcloud/market/v20191010/errorcodes.py,sha256=G69o8BRK65e_rfy58tPHFEdyIbZTLuBuF17ekweu_OY,941
|
871
871
|
tencentcloud/market/v20191010/market_client.py,sha256=LMzBfFKKUYUZzlRKbGffPXsyos_r07skYYyrzacmI-I,2922
|
872
|
-
tencentcloud/market/v20191010/models.py,sha256=
|
872
|
+
tencentcloud/market/v20191010/models.py,sha256=Gnv75e5rbntixaXBkLytGm1eCsmZZ_fU18-I3guzdK8,8735
|
873
873
|
tencentcloud/memcached/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
874
874
|
tencentcloud/memcached/v20190318/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
875
875
|
tencentcloud/memcached/v20190318/errorcodes.py,sha256=8fs06iNRjALGXPPInCp1vt19Ra9RSo8E4ZRpGrWDUvw,1378
|
@@ -911,8 +911,8 @@ tencentcloud/monitor/v20180724/monitor_client.py,sha256=HNI6MHa3QXAlj4YeqW3MShfX
|
|
911
911
|
tencentcloud/mps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
912
912
|
tencentcloud/mps/v20190612/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
913
913
|
tencentcloud/mps/v20190612/errorcodes.py,sha256=keLRQGAtAjG9LzCebUehHvs_lCvhJUuPN1C9nIzqc64,20991
|
914
|
-
tencentcloud/mps/v20190612/models.py,sha256=
|
915
|
-
tencentcloud/mps/v20190612/mps_client.py,sha256=
|
914
|
+
tencentcloud/mps/v20190612/models.py,sha256=S7TZgjkpCs9gSRMOvD35voeJOQ3oKH896vr5GmMHTB4,1930549
|
915
|
+
tencentcloud/mps/v20190612/mps_client.py,sha256=R8nGJiZs3c8wUbMXQHiwkOYFsGwNgxon4OVHn5hyCa4,109259
|
916
916
|
tencentcloud/mqtt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
917
917
|
tencentcloud/mqtt/v20240516/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
918
918
|
tencentcloud/mqtt/v20240516/errorcodes.py,sha256=DTXP3FlRd-cP8EGtRCnT9MZrt01eyVdpwuozAStYdeE,1501
|
@@ -1452,7 +1452,7 @@ tencentcloud/wav/v20210129/wav_client.py,sha256=UihFmkJEfK6tTfxFgAop0q0bs9ODjlCv
|
|
1452
1452
|
tencentcloud/wedata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1453
1453
|
tencentcloud/wedata/v20210820/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1454
1454
|
tencentcloud/wedata/v20210820/errorcodes.py,sha256=CzZHsPqsLbIo4TuHD5echw9eG8vBUIw-4YvbYr1U_M0,4265
|
1455
|
-
tencentcloud/wedata/v20210820/models.py,sha256=
|
1455
|
+
tencentcloud/wedata/v20210820/models.py,sha256=5GM7PASkwaJNa9J8WJ8veOc61OFh8o_2D3Tf1G73ZsM,2474700
|
1456
1456
|
tencentcloud/wedata/v20210820/wedata_client.py,sha256=V4K34TJFqhjM3lSTq6AVY9kaZGZS0L_O4_D63_mhK-Q,221103
|
1457
1457
|
tencentcloud/weilingwith/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1458
1458
|
tencentcloud/weilingwith/v20230427/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1488,8 +1488,8 @@ tencentcloud/yunsou/v20191115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
1488
1488
|
tencentcloud/yunsou/v20191115/errorcodes.py,sha256=zB4-XPxmvEhgHoLsKlbayJVRLEagPDcs-UAheVZCoAc,1301
|
1489
1489
|
tencentcloud/yunsou/v20191115/models.py,sha256=rL2feGJfTHvEmkfS_c9En9Xl1g32vTs9IC_q5p9CYgY,27680
|
1490
1490
|
tencentcloud/yunsou/v20191115/yunsou_client.py,sha256=ly73Hr8rGamWa6AAvQjurKgd4L83PRY5WjcDv4ziQC8,2741
|
1491
|
-
tencentcloud_sdk_python-3.0.
|
1492
|
-
tencentcloud_sdk_python-3.0.
|
1493
|
-
tencentcloud_sdk_python-3.0.
|
1494
|
-
tencentcloud_sdk_python-3.0.
|
1495
|
-
tencentcloud_sdk_python-3.0.
|
1491
|
+
tencentcloud_sdk_python-3.0.1271.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
|
1492
|
+
tencentcloud_sdk_python-3.0.1271.dist-info/METADATA,sha256=hUoXwwnegqa7trckmAQ5jSHwX0o8g5QztWKN5TZZahE,1511
|
1493
|
+
tencentcloud_sdk_python-3.0.1271.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
1494
|
+
tencentcloud_sdk_python-3.0.1271.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
|
1495
|
+
tencentcloud_sdk_python-3.0.1271.dist-info/RECORD,,
|
{tencentcloud_sdk_python-3.0.1270.dist-info → tencentcloud_sdk_python-3.0.1271.dist-info}/LICENSE
RENAMED
File without changes
|
{tencentcloud_sdk_python-3.0.1270.dist-info → tencentcloud_sdk_python-3.0.1271.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|