tencentcloud-sdk-python 3.0.1402__py2.py3-none-any.whl → 3.0.1404__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/cfs/v20190719/models.py +4 -4
- tencentcloud/clb/v20180317/models.py +2 -2
- tencentcloud/csip/v20221121/csip_client.py +23 -0
- tencentcloud/csip/v20221121/models.py +767 -0
- tencentcloud/ess/v20201111/ess_client.py +1 -0
- tencentcloud/ess/v20201111/models.py +55 -6
- tencentcloud/essbasic/v20210526/essbasic_client.py +1 -0
- tencentcloud/essbasic/v20210526/models.py +49 -12
- tencentcloud/goosefs/v20220519/goosefs_client.py +23 -0
- tencentcloud/goosefs/v20220519/models.py +94 -0
- tencentcloud/gs/v20191118/models.py +17 -2
- tencentcloud/hunyuan/v20230901/models.py +119 -0
- tencentcloud/lke/v20231130/models.py +2 -2
- tencentcloud/mps/v20190612/models.py +286 -0
- tencentcloud/ocr/v20181119/models.py +0 -569
- tencentcloud/ocr/v20181119/ocr_client.py +0 -50
- tencentcloud/ssl/v20191205/errorcodes.py +6 -0
- tencentcloud/ssl/v20191205/models.py +181 -0
- tencentcloud/ssl/v20191205/ssl_client.py +23 -0
- tencentcloud/trtc/v20190722/errorcodes.py +5 -2
- tencentcloud/trtc/v20190722/models.py +91 -4
- {tencentcloud_sdk_python-3.0.1402.dist-info → tencentcloud_sdk_python-3.0.1404.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1402.dist-info → tencentcloud_sdk_python-3.0.1404.dist-info}/RECORD +27 -27
- {tencentcloud_sdk_python-3.0.1402.dist-info → tencentcloud_sdk_python-3.0.1404.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1402.dist-info → tencentcloud_sdk_python-3.0.1404.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1402.dist-info → tencentcloud_sdk_python-3.0.1404.dist-info}/top_level.txt +0 -0
@@ -355,6 +355,7 @@ class EssClient(AbstractClient):
|
|
355
355
|
- 企业员工批量签署链接:需要传入签署方所在企业名称,用户名字和手机号(或者身份证件信息)参数来生成签署链接。<font color="red">该签署方企业必须已完成腾讯电子签企业认证</font>
|
356
356
|
- 个人批量签署链接:需要传入签署方用户名字和手机号(或者身份证件信息)参数来生成签署链接。个人批量签署进行的合同的签名区, 全部变成<font color="red">手写签名</font>(不管合同里边设置的签名限制)来进行。
|
357
357
|
- 不支持签署方含有签批控件,或设置了签署方在签署时自行添加签署控件功能的合同进行批量签署。
|
358
|
+
- 进行小程序批量签署必须指定待签署的流程id,<font color="red">接口中FlowIds参数必传。</font>
|
358
359
|
|
359
360
|
:param request: Request instance for CreateBatchSignUrl.
|
360
361
|
:type request: :class:`tencentcloud.ess.v20201111.models.CreateBatchSignUrlRequest`
|
@@ -5112,7 +5112,7 @@ class CreateBatchSignUrlRequest(AbstractModel):
|
|
5112
5112
|
<li>**SMS** : 短信通知(发送短信通知到Mobile参数所传的手机号)</li>
|
5113
5113
|
</ul>
|
5114
5114
|
:type NotifyType: str
|
5115
|
-
:param _FlowIds: 批量签署的合同流程ID
|
5115
|
+
:param _FlowIds: 批量签署的合同流程ID数组,<font color="red">此参数必传。</font>
|
5116
5116
|
注: `在调用此接口时,请确保合同流程均为本企业发起,且合同数量不超过100个。`
|
5117
5117
|
:type FlowIds: list of str
|
5118
5118
|
:param _OrganizationName: 目标签署人的企业名称,签署人如果是企业员工身份,需要传此参数。
|
@@ -5138,7 +5138,7 @@ class CreateBatchSignUrlRequest(AbstractModel):
|
|
5138
5138
|
注:
|
5139
5139
|
1. 该参数<font color="red">只针对APP类型(电子签小程序跳转贵方小程序)场景</font> 的签署链接有效
|
5140
5140
|
2. <font color="red">手机应用APP 或 微信小程序需要监控界面的返回走后序逻辑</font>, 微信小程序的文档可以参考[这个](https://developers.weixin.qq.com/miniprogram/dev/reference/api/App.html#onShow-Object-object)
|
5141
|
-
3. <font color="red">电子签小程序跳转贵方APP
|
5141
|
+
3. <font color="red">电子签小程序跳转贵方APP,不支持自动跳转,必须用户手动点击完成按钮(微信的限制)</font>
|
5142
5142
|
:type AutoJumpBack: bool
|
5143
5143
|
:param _UrlUseEnv: <font color="red">仅公众号 H5 跳转电子签小程序时</font>,如需签署完成的“返回应用”功能,在获取签署链接接口的 UrlUseEnv 参数需设置为 **WeChatOfficialAccounts**,小程序签署成功的结果页面中才会出现“返回应用”按钮。在用户点击“返回应用”按钮之后,会返回到公众号 H5。
|
5144
5144
|
|
@@ -5147,7 +5147,8 @@ class CreateBatchSignUrlRequest(AbstractModel):
|
|
5147
5147
|
:param _CanBatchReject: 是否允许此链接中签署方批量拒签。 <ul><li>false (默认): 不允许批量拒签</li> <li>true : 允许批量拒签。</li></ul>
|
5148
5148
|
注:`1. 合同组暂不支持批量拒签功能。2. 如果是链接直接跳转至详情页(JumpToDetail参数为true),也不支持批量拒签功能`
|
5149
5149
|
:type CanBatchReject: bool
|
5150
|
-
:param _CanSkipReadFlow: 是否允许此链接中签署方批量确认已读文件。 <ul><li>false (默认): 不允许批量确认已读文件。</li> <li>true : 允许批量确认已读文件。</li></ul
|
5150
|
+
:param _CanSkipReadFlow: 是否允许此链接中签署方批量确认已读文件。 <ul><li>false (默认): 不允许批量确认已读文件。</li> <li>true : 允许批量确认已读文件。</li></ul>
|
5151
|
+
注:`1. 此功能为白名单功能,使用前请联系对应客户经理进行开通。2. 使用此功能时,FlowIds参数必传。3. 对于企业签署方,如果对印章/签名控件有限制要求,需要保证所有印章/签名签署控件限制要求(印章id或印章/签名类型限制)一致,否则无法使用此功能。`
|
5151
5152
|
:type CanSkipReadFlow: bool
|
5152
5153
|
"""
|
5153
5154
|
self._Operator = None
|
@@ -5290,7 +5291,7 @@ class CreateBatchSignUrlRequest(AbstractModel):
|
|
5290
5291
|
|
5291
5292
|
@property
|
5292
5293
|
def FlowIds(self):
|
5293
|
-
"""批量签署的合同流程ID
|
5294
|
+
"""批量签署的合同流程ID数组,<font color="red">此参数必传。</font>
|
5294
5295
|
注: `在调用此接口时,请确保合同流程均为本企业发起,且合同数量不超过100个。`
|
5295
5296
|
:rtype: list of str
|
5296
5297
|
"""
|
@@ -5352,7 +5353,7 @@ class CreateBatchSignUrlRequest(AbstractModel):
|
|
5352
5353
|
注:
|
5353
5354
|
1. 该参数<font color="red">只针对APP类型(电子签小程序跳转贵方小程序)场景</font> 的签署链接有效
|
5354
5355
|
2. <font color="red">手机应用APP 或 微信小程序需要监控界面的返回走后序逻辑</font>, 微信小程序的文档可以参考[这个](https://developers.weixin.qq.com/miniprogram/dev/reference/api/App.html#onShow-Object-object)
|
5355
|
-
3. <font color="red">电子签小程序跳转贵方APP
|
5356
|
+
3. <font color="red">电子签小程序跳转贵方APP,不支持自动跳转,必须用户手动点击完成按钮(微信的限制)</font>
|
5356
5357
|
:rtype: bool
|
5357
5358
|
"""
|
5358
5359
|
return self._AutoJumpBack
|
@@ -5388,7 +5389,8 @@ class CreateBatchSignUrlRequest(AbstractModel):
|
|
5388
5389
|
|
5389
5390
|
@property
|
5390
5391
|
def CanSkipReadFlow(self):
|
5391
|
-
"""是否允许此链接中签署方批量确认已读文件。 <ul><li>false (默认): 不允许批量确认已读文件。</li> <li>true : 允许批量确认已读文件。</li></ul
|
5392
|
+
"""是否允许此链接中签署方批量确认已读文件。 <ul><li>false (默认): 不允许批量确认已读文件。</li> <li>true : 允许批量确认已读文件。</li></ul>
|
5393
|
+
注:`1. 此功能为白名单功能,使用前请联系对应客户经理进行开通。2. 使用此功能时,FlowIds参数必传。3. 对于企业签署方,如果对印章/签名控件有限制要求,需要保证所有印章/签名签署控件限制要求(印章id或印章/签名类型限制)一致,否则无法使用此功能。`
|
5392
5394
|
:rtype: bool
|
5393
5395
|
"""
|
5394
5396
|
return self._CanSkipReadFlow
|
@@ -29820,11 +29822,15 @@ class OperateTemplateRequest(AbstractModel):
|
|
29820
29822
|
:param _Agent: 代理企业和员工的信息。
|
29821
29823
|
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
29822
29824
|
:type Agent: :class:`tencentcloud.ess.v20201111.models.Agent`
|
29825
|
+
:param _TemplateName: 模板名称,长度不超过64字符。<br>
|
29826
|
+
模板复制时指定有效,若为空,则复制后模板名称为 **原模板名称_副本**。
|
29827
|
+
:type TemplateName: str
|
29823
29828
|
"""
|
29824
29829
|
self._Operator = None
|
29825
29830
|
self._TemplateId = None
|
29826
29831
|
self._OperateType = None
|
29827
29832
|
self._Agent = None
|
29833
|
+
self._TemplateName = None
|
29828
29834
|
|
29829
29835
|
@property
|
29830
29836
|
def Operator(self):
|
@@ -29878,6 +29884,18 @@ class OperateTemplateRequest(AbstractModel):
|
|
29878
29884
|
def Agent(self, Agent):
|
29879
29885
|
self._Agent = Agent
|
29880
29886
|
|
29887
|
+
@property
|
29888
|
+
def TemplateName(self):
|
29889
|
+
"""模板名称,长度不超过64字符。<br>
|
29890
|
+
模板复制时指定有效,若为空,则复制后模板名称为 **原模板名称_副本**。
|
29891
|
+
:rtype: str
|
29892
|
+
"""
|
29893
|
+
return self._TemplateName
|
29894
|
+
|
29895
|
+
@TemplateName.setter
|
29896
|
+
def TemplateName(self, TemplateName):
|
29897
|
+
self._TemplateName = TemplateName
|
29898
|
+
|
29881
29899
|
|
29882
29900
|
def _deserialize(self, params):
|
29883
29901
|
if params.get("Operator") is not None:
|
@@ -29888,6 +29906,7 @@ class OperateTemplateRequest(AbstractModel):
|
|
29888
29906
|
if params.get("Agent") is not None:
|
29889
29907
|
self._Agent = Agent()
|
29890
29908
|
self._Agent._deserialize(params.get("Agent"))
|
29909
|
+
self._TemplateName = params.get("TemplateName")
|
29891
29910
|
memeber_set = set(params.keys())
|
29892
29911
|
for name, value in vars(self).items():
|
29893
29912
|
property_name = name[1:]
|
@@ -29905,11 +29924,39 @@ class OperateTemplateResponse(AbstractModel):
|
|
29905
29924
|
|
29906
29925
|
def __init__(self):
|
29907
29926
|
r"""
|
29927
|
+
:param _TemplateId: 模板ID,为32位字符串,模板复制新建时返回
|
29928
|
+
:type TemplateId: str
|
29929
|
+
:param _TemplateName: 模板名称,模板复制新建时返回
|
29930
|
+
:type TemplateName: str
|
29908
29931
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
29909
29932
|
:type RequestId: str
|
29910
29933
|
"""
|
29934
|
+
self._TemplateId = None
|
29935
|
+
self._TemplateName = None
|
29911
29936
|
self._RequestId = None
|
29912
29937
|
|
29938
|
+
@property
|
29939
|
+
def TemplateId(self):
|
29940
|
+
"""模板ID,为32位字符串,模板复制新建时返回
|
29941
|
+
:rtype: str
|
29942
|
+
"""
|
29943
|
+
return self._TemplateId
|
29944
|
+
|
29945
|
+
@TemplateId.setter
|
29946
|
+
def TemplateId(self, TemplateId):
|
29947
|
+
self._TemplateId = TemplateId
|
29948
|
+
|
29949
|
+
@property
|
29950
|
+
def TemplateName(self):
|
29951
|
+
"""模板名称,模板复制新建时返回
|
29952
|
+
:rtype: str
|
29953
|
+
"""
|
29954
|
+
return self._TemplateName
|
29955
|
+
|
29956
|
+
@TemplateName.setter
|
29957
|
+
def TemplateName(self, TemplateName):
|
29958
|
+
self._TemplateName = TemplateName
|
29959
|
+
|
29913
29960
|
@property
|
29914
29961
|
def RequestId(self):
|
29915
29962
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -29923,6 +29970,8 @@ class OperateTemplateResponse(AbstractModel):
|
|
29923
29970
|
|
29924
29971
|
|
29925
29972
|
def _deserialize(self, params):
|
29973
|
+
self._TemplateId = params.get("TemplateId")
|
29974
|
+
self._TemplateName = params.get("TemplateName")
|
29926
29975
|
self._RequestId = params.get("RequestId")
|
29927
29976
|
|
29928
29977
|
|
@@ -253,6 +253,7 @@ class EssbasicClient(AbstractClient):
|
|
253
253
|
- 生成批量签署链接时,合同目标参与方状态需为<font color="red">待签署</font>状态。
|
254
254
|
- 个人批量签署进行的合同的签名区, 全部变成<font color="red">手写签名</font>(不管合同里边设置的签名限制)来进行。
|
255
255
|
- 不支持签署方含有签批控件,或设置了签署方在签署时自行添加签署控件功能的合同进行批量签署。
|
256
|
+
- 进行小程序批量签署必须指定待签署的流程id,<font color="red">接口中FlowIds参数必传。</font>
|
256
257
|
|
257
258
|
:param request: Request instance for ChannelCreateBatchSignUrl.
|
258
259
|
:type request: :class:`tencentcloud.essbasic.v20210526.models.ChannelCreateBatchSignUrlRequest`
|
@@ -2996,7 +2996,7 @@ class ChannelCreateBatchSignUrlRequest(AbstractModel):
|
|
2996
2996
|
<li>**SMS** : 短信通知(发送短信通知到Mobile参数所传的手机号)</li>
|
2997
2997
|
</ul>
|
2998
2998
|
:type NotifyType: str
|
2999
|
-
:param _FlowIds: 批量签署的合同流程ID
|
2999
|
+
:param _FlowIds: 批量签署的合同流程ID数组。<font color="red">此参数必传。</font>
|
3000
3000
|
注: `在调用此接口时,请确保合同流程均为本企业发起,且合同数量不超过100个。`
|
3001
3001
|
:type FlowIds: list of str
|
3002
3002
|
:param _OrganizationName: SaaS平台企业员工签署方的企业名称。目标签署人如果为saas应用企业员工身份,此参数必填。
|
@@ -3187,7 +3187,7 @@ class ChannelCreateBatchSignUrlRequest(AbstractModel):
|
|
3187
3187
|
|
3188
3188
|
@property
|
3189
3189
|
def FlowIds(self):
|
3190
|
-
"""批量签署的合同流程ID
|
3190
|
+
"""批量签署的合同流程ID数组。<font color="red">此参数必传。</font>
|
3191
3191
|
注: `在调用此接口时,请确保合同流程均为本企业发起,且合同数量不超过100个。`
|
3192
3192
|
:rtype: list of str
|
3193
3193
|
"""
|
@@ -14763,11 +14763,6 @@ class CreateConsoleLoginUrlRequest(AbstractModel):
|
|
14763
14763
|
:param _AuthorizationTypes: 可选的此企业允许的授权方式, 可以设置的方式有:
|
14764
14764
|
<ul><li>1:上传授权书</li>
|
14765
14765
|
<li>2:转法定代表人授权</li>
|
14766
|
-
<li>4:企业实名认证(信任第三方认证源)(此项有排他性, 选择后不能增添其他的方式)</li></ul>
|
14767
|
-
注:<ul>
|
14768
|
-
<li>未选择信任第三方认证源时,如果是法人进行企业激活,仅支持法人扫脸直接授权,该配置不对此法人生效`</li>
|
14769
|
-
<li>选择信任第三方认证源时,请先通过<a href="https://qian.tencent.com/developers/partnerApis/accounts/SyncProxyOrganization" target="_blank">同步企业信息</a>接口同步信息。</li>
|
14770
|
-
<li>该参数仅在企业未激活时生效</li>
|
14771
14766
|
</ul>
|
14772
14767
|
:type AuthorizationTypes: list of int
|
14773
14768
|
:param _Operator: 暂未开放
|
@@ -14987,11 +14982,6 @@ class CreateConsoleLoginUrlRequest(AbstractModel):
|
|
14987
14982
|
"""可选的此企业允许的授权方式, 可以设置的方式有:
|
14988
14983
|
<ul><li>1:上传授权书</li>
|
14989
14984
|
<li>2:转法定代表人授权</li>
|
14990
|
-
<li>4:企业实名认证(信任第三方认证源)(此项有排他性, 选择后不能增添其他的方式)</li></ul>
|
14991
|
-
注:<ul>
|
14992
|
-
<li>未选择信任第三方认证源时,如果是法人进行企业激活,仅支持法人扫脸直接授权,该配置不对此法人生效`</li>
|
14993
|
-
<li>选择信任第三方认证源时,请先通过<a href="https://qian.tencent.com/developers/partnerApis/accounts/SyncProxyOrganization" target="_blank">同步企业信息</a>接口同步信息。</li>
|
14994
|
-
<li>该参数仅在企业未激活时生效</li>
|
14995
14985
|
</ul>
|
14996
14986
|
:rtype: list of int
|
14997
14987
|
"""
|
@@ -26167,10 +26157,14 @@ class OperateTemplateRequest(AbstractModel):
|
|
26167
26157
|
<li>COPY: 复制新建</li>
|
26168
26158
|
</ul>
|
26169
26159
|
:type OperateType: str
|
26160
|
+
:param _TemplateName: 模板名称,长度不超过64字符。<br>
|
26161
|
+
模板复制时指定有效,若为空,则复制后模板名称为 **原模板名称_副本**。
|
26162
|
+
:type TemplateName: str
|
26170
26163
|
"""
|
26171
26164
|
self._Agent = None
|
26172
26165
|
self._TemplateId = None
|
26173
26166
|
self._OperateType = None
|
26167
|
+
self._TemplateName = None
|
26174
26168
|
|
26175
26169
|
@property
|
26176
26170
|
def Agent(self):
|
@@ -26218,6 +26212,18 @@ class OperateTemplateRequest(AbstractModel):
|
|
26218
26212
|
def OperateType(self, OperateType):
|
26219
26213
|
self._OperateType = OperateType
|
26220
26214
|
|
26215
|
+
@property
|
26216
|
+
def TemplateName(self):
|
26217
|
+
"""模板名称,长度不超过64字符。<br>
|
26218
|
+
模板复制时指定有效,若为空,则复制后模板名称为 **原模板名称_副本**。
|
26219
|
+
:rtype: str
|
26220
|
+
"""
|
26221
|
+
return self._TemplateName
|
26222
|
+
|
26223
|
+
@TemplateName.setter
|
26224
|
+
def TemplateName(self, TemplateName):
|
26225
|
+
self._TemplateName = TemplateName
|
26226
|
+
|
26221
26227
|
|
26222
26228
|
def _deserialize(self, params):
|
26223
26229
|
if params.get("Agent") is not None:
|
@@ -26225,6 +26231,7 @@ class OperateTemplateRequest(AbstractModel):
|
|
26225
26231
|
self._Agent._deserialize(params.get("Agent"))
|
26226
26232
|
self._TemplateId = params.get("TemplateId")
|
26227
26233
|
self._OperateType = params.get("OperateType")
|
26234
|
+
self._TemplateName = params.get("TemplateName")
|
26228
26235
|
memeber_set = set(params.keys())
|
26229
26236
|
for name, value in vars(self).items():
|
26230
26237
|
property_name = name[1:]
|
@@ -26242,11 +26249,39 @@ class OperateTemplateResponse(AbstractModel):
|
|
26242
26249
|
|
26243
26250
|
def __init__(self):
|
26244
26251
|
r"""
|
26252
|
+
:param _TemplateId: 模板ID,为32位字符串,模板复制新建时返回
|
26253
|
+
:type TemplateId: str
|
26254
|
+
:param _TemplateName: 模板名称,模板复制新建时返回
|
26255
|
+
:type TemplateName: str
|
26245
26256
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
26246
26257
|
:type RequestId: str
|
26247
26258
|
"""
|
26259
|
+
self._TemplateId = None
|
26260
|
+
self._TemplateName = None
|
26248
26261
|
self._RequestId = None
|
26249
26262
|
|
26263
|
+
@property
|
26264
|
+
def TemplateId(self):
|
26265
|
+
"""模板ID,为32位字符串,模板复制新建时返回
|
26266
|
+
:rtype: str
|
26267
|
+
"""
|
26268
|
+
return self._TemplateId
|
26269
|
+
|
26270
|
+
@TemplateId.setter
|
26271
|
+
def TemplateId(self, TemplateId):
|
26272
|
+
self._TemplateId = TemplateId
|
26273
|
+
|
26274
|
+
@property
|
26275
|
+
def TemplateName(self):
|
26276
|
+
"""模板名称,模板复制新建时返回
|
26277
|
+
:rtype: str
|
26278
|
+
"""
|
26279
|
+
return self._TemplateName
|
26280
|
+
|
26281
|
+
@TemplateName.setter
|
26282
|
+
def TemplateName(self, TemplateName):
|
26283
|
+
self._TemplateName = TemplateName
|
26284
|
+
|
26250
26285
|
@property
|
26251
26286
|
def RequestId(self):
|
26252
26287
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -26260,6 +26295,8 @@ class OperateTemplateResponse(AbstractModel):
|
|
26260
26295
|
|
26261
26296
|
|
26262
26297
|
def _deserialize(self, params):
|
26298
|
+
self._TemplateId = params.get("TemplateId")
|
26299
|
+
self._TemplateName = params.get("TemplateName")
|
26263
26300
|
self._RequestId = params.get("RequestId")
|
26264
26301
|
|
26265
26302
|
|
@@ -118,6 +118,29 @@ class GoosefsClient(AbstractClient):
|
|
118
118
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
119
119
|
|
120
120
|
|
121
|
+
def BuildClientNodeMountCommand(self, request):
|
122
|
+
"""生成客户端的挂载命令
|
123
|
+
|
124
|
+
:param request: Request instance for BuildClientNodeMountCommand.
|
125
|
+
:type request: :class:`tencentcloud.goosefs.v20220519.models.BuildClientNodeMountCommandRequest`
|
126
|
+
:rtype: :class:`tencentcloud.goosefs.v20220519.models.BuildClientNodeMountCommandResponse`
|
127
|
+
|
128
|
+
"""
|
129
|
+
try:
|
130
|
+
params = request._serialize()
|
131
|
+
headers = request.headers
|
132
|
+
body = self.call("BuildClientNodeMountCommand", params, headers=headers)
|
133
|
+
response = json.loads(body)
|
134
|
+
model = models.BuildClientNodeMountCommandResponse()
|
135
|
+
model._deserialize(response["Response"])
|
136
|
+
return model
|
137
|
+
except Exception as e:
|
138
|
+
if isinstance(e, TencentCloudSDKException):
|
139
|
+
raise
|
140
|
+
else:
|
141
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
142
|
+
|
143
|
+
|
121
144
|
def CreateDataRepositoryTask(self, request):
|
122
145
|
"""创建数据流通任务,包括从将文件系统的数据上传到存储桶下, 以及从存储桶下载到文件系统里。
|
123
146
|
|
@@ -378,6 +378,100 @@ class BatchDeleteClientNodesResponse(AbstractModel):
|
|
378
378
|
self._RequestId = params.get("RequestId")
|
379
379
|
|
380
380
|
|
381
|
+
class BuildClientNodeMountCommandRequest(AbstractModel):
|
382
|
+
"""BuildClientNodeMountCommand请求参数结构体
|
383
|
+
|
384
|
+
"""
|
385
|
+
|
386
|
+
def __init__(self):
|
387
|
+
r"""
|
388
|
+
:param _FileSystemId: 文件系统ID
|
389
|
+
:type FileSystemId: str
|
390
|
+
:param _CustomMountDir: 自定义挂载目录的绝对路径, 如果未指定, 则会使用默认值, 格式/goosefsx/${fs_id}-proxy. 比如/goosefsx/x-c60-a2b3d4-proxy
|
391
|
+
:type CustomMountDir: str
|
392
|
+
"""
|
393
|
+
self._FileSystemId = None
|
394
|
+
self._CustomMountDir = None
|
395
|
+
|
396
|
+
@property
|
397
|
+
def FileSystemId(self):
|
398
|
+
"""文件系统ID
|
399
|
+
:rtype: str
|
400
|
+
"""
|
401
|
+
return self._FileSystemId
|
402
|
+
|
403
|
+
@FileSystemId.setter
|
404
|
+
def FileSystemId(self, FileSystemId):
|
405
|
+
self._FileSystemId = FileSystemId
|
406
|
+
|
407
|
+
@property
|
408
|
+
def CustomMountDir(self):
|
409
|
+
"""自定义挂载目录的绝对路径, 如果未指定, 则会使用默认值, 格式/goosefsx/${fs_id}-proxy. 比如/goosefsx/x-c60-a2b3d4-proxy
|
410
|
+
:rtype: str
|
411
|
+
"""
|
412
|
+
return self._CustomMountDir
|
413
|
+
|
414
|
+
@CustomMountDir.setter
|
415
|
+
def CustomMountDir(self, CustomMountDir):
|
416
|
+
self._CustomMountDir = CustomMountDir
|
417
|
+
|
418
|
+
|
419
|
+
def _deserialize(self, params):
|
420
|
+
self._FileSystemId = params.get("FileSystemId")
|
421
|
+
self._CustomMountDir = params.get("CustomMountDir")
|
422
|
+
memeber_set = set(params.keys())
|
423
|
+
for name, value in vars(self).items():
|
424
|
+
property_name = name[1:]
|
425
|
+
if property_name in memeber_set:
|
426
|
+
memeber_set.remove(property_name)
|
427
|
+
if len(memeber_set) > 0:
|
428
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
429
|
+
|
430
|
+
|
431
|
+
|
432
|
+
class BuildClientNodeMountCommandResponse(AbstractModel):
|
433
|
+
"""BuildClientNodeMountCommand返回参数结构体
|
434
|
+
|
435
|
+
"""
|
436
|
+
|
437
|
+
def __init__(self):
|
438
|
+
r"""
|
439
|
+
:param _Command: 挂载命令
|
440
|
+
:type Command: str
|
441
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
442
|
+
:type RequestId: str
|
443
|
+
"""
|
444
|
+
self._Command = None
|
445
|
+
self._RequestId = None
|
446
|
+
|
447
|
+
@property
|
448
|
+
def Command(self):
|
449
|
+
"""挂载命令
|
450
|
+
:rtype: str
|
451
|
+
"""
|
452
|
+
return self._Command
|
453
|
+
|
454
|
+
@Command.setter
|
455
|
+
def Command(self, Command):
|
456
|
+
self._Command = Command
|
457
|
+
|
458
|
+
@property
|
459
|
+
def RequestId(self):
|
460
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
461
|
+
:rtype: str
|
462
|
+
"""
|
463
|
+
return self._RequestId
|
464
|
+
|
465
|
+
@RequestId.setter
|
466
|
+
def RequestId(self, RequestId):
|
467
|
+
self._RequestId = RequestId
|
468
|
+
|
469
|
+
|
470
|
+
def _deserialize(self, params):
|
471
|
+
self._Command = params.get("Command")
|
472
|
+
self._RequestId = params.get("RequestId")
|
473
|
+
|
474
|
+
|
381
475
|
class ChargeAttribute(AbstractModel):
|
382
476
|
"""付费信息详情
|
383
477
|
|
@@ -221,6 +221,8 @@ CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
|
|
221
221
|
:type UninstallCommand: str
|
222
222
|
:param _CleanupMode: 应用资源清理模式(实例安装应用所用资源),取值:CLEANUP_ON_UNINSTALL(默认值),卸载 App 时清理;CLEANUP_AFTER_INSTALL,安装 App 后立即清理。普通应用只有 CLEANUP_AFTER_INSTALL 模式。
|
223
223
|
:type CleanupMode: str
|
224
|
+
:param _AndroidAppVersionName: 安卓应用版本名称
|
225
|
+
:type AndroidAppVersionName: str
|
224
226
|
"""
|
225
227
|
self._AndroidAppVersion = None
|
226
228
|
self._State = None
|
@@ -228,6 +230,7 @@ CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
|
|
228
230
|
self._Command = None
|
229
231
|
self._UninstallCommand = None
|
230
232
|
self._CleanupMode = None
|
233
|
+
self._AndroidAppVersionName = None
|
231
234
|
|
232
235
|
@property
|
233
236
|
def AndroidAppVersion(self):
|
@@ -297,6 +300,17 @@ CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
|
|
297
300
|
def CleanupMode(self, CleanupMode):
|
298
301
|
self._CleanupMode = CleanupMode
|
299
302
|
|
303
|
+
@property
|
304
|
+
def AndroidAppVersionName(self):
|
305
|
+
"""安卓应用版本名称
|
306
|
+
:rtype: str
|
307
|
+
"""
|
308
|
+
return self._AndroidAppVersionName
|
309
|
+
|
310
|
+
@AndroidAppVersionName.setter
|
311
|
+
def AndroidAppVersionName(self, AndroidAppVersionName):
|
312
|
+
self._AndroidAppVersionName = AndroidAppVersionName
|
313
|
+
|
300
314
|
|
301
315
|
def _deserialize(self, params):
|
302
316
|
self._AndroidAppVersion = params.get("AndroidAppVersion")
|
@@ -305,6 +319,7 @@ CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
|
|
305
319
|
self._Command = params.get("Command")
|
306
320
|
self._UninstallCommand = params.get("UninstallCommand")
|
307
321
|
self._CleanupMode = params.get("CleanupMode")
|
322
|
+
self._AndroidAppVersionName = params.get("AndroidAppVersionName")
|
308
323
|
memeber_set = set(params.keys())
|
309
324
|
for name, value in vars(self).items():
|
310
325
|
property_name = name[1:]
|
@@ -4105,7 +4120,7 @@ class DescribeAndroidAppsRequest(AbstractModel):
|
|
4105
4120
|
:type Limit: int
|
4106
4121
|
:param _AndroidAppIds: 应用ID数组
|
4107
4122
|
:type AndroidAppIds: list of str
|
4108
|
-
:param _Filters:
|
4123
|
+
:param _Filters: 过滤条件,支持过滤的字段有:UserId
|
4109
4124
|
:type Filters: list of Filter
|
4110
4125
|
"""
|
4111
4126
|
self._Offset = None
|
@@ -4148,7 +4163,7 @@ class DescribeAndroidAppsRequest(AbstractModel):
|
|
4148
4163
|
|
4149
4164
|
@property
|
4150
4165
|
def Filters(self):
|
4151
|
-
"""
|
4166
|
+
"""过滤条件,支持过滤的字段有:UserId
|
4152
4167
|
:rtype: list of Filter
|
4153
4168
|
"""
|
4154
4169
|
return self._Filters
|