tencentcloud-sdk-python 3.0.1328__py2.py3-none-any.whl → 3.0.1330__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/ams/v20201229/models.py +157 -0
- tencentcloud/asr/v20190614/asr_client.py +1 -1
- tencentcloud/batch/v20170312/models.py +2 -26
- tencentcloud/cdwdoris/v20211228/models.py +30 -0
- tencentcloud/cfw/v20190904/cfw_client.py +9 -3
- tencentcloud/clb/v20180317/models.py +45 -0
- tencentcloud/cvm/v20170312/models.py +22 -38
- tencentcloud/cynosdb/v20190107/models.py +23 -4
- tencentcloud/dlc/v20210125/models.py +0 -10
- tencentcloud/emr/v20190103/models.py +4 -4
- tencentcloud/ess/v20201111/ess_client.py +27 -0
- tencentcloud/ess/v20201111/models.py +147 -316
- tencentcloud/essbasic/v20210526/essbasic_client.py +27 -0
- tencentcloud/essbasic/v20210526/models.py +146 -238
- tencentcloud/faceid/v20180301/models.py +20 -12
- tencentcloud/lcic/v20220817/models.py +12 -2
- tencentcloud/lighthouse/v20200324/models.py +12 -12
- tencentcloud/live/v20180801/models.py +10 -112
- tencentcloud/lke/v20231130/lke_client.py +23 -0
- tencentcloud/lke/v20231130/models.py +128 -4
- tencentcloud/ocr/v20181119/models.py +23 -0
- tencentcloud/ocr/v20181119/ocr_client.py +10 -0
- tencentcloud/organization/v20210331/models.py +30 -0
- tencentcloud/rce/v20201103/models.py +18 -54
- tencentcloud/taf/v20200210/models.py +0 -2
- tencentcloud/tcbr/v20220217/models.py +30 -0
- tencentcloud/teo/v20220901/models.py +18 -4
- tencentcloud/tke/v20180525/models.py +2 -320
- tencentcloud/tke/v20220501/models.py +0 -8
- tencentcloud/tse/v20201207/models.py +153 -0
- tencentcloud/vm/v20201229/models.py +615 -68
- tencentcloud/vm/v20210922/models.py +737 -102
- tencentcloud/vpc/v20170312/vpc_client.py +1 -1
- tencentcloud/weilingwith/v20230427/models.py +0 -20
- {tencentcloud_sdk_python-3.0.1328.dist-info → tencentcloud_sdk_python-3.0.1330.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1328.dist-info → tencentcloud_sdk_python-3.0.1330.dist-info}/RECORD +40 -55
- tencentcloud/lp/__init__.py +0 -0
- tencentcloud/lp/v20200224/__init__.py +0 -0
- tencentcloud/lp/v20200224/errorcodes.py +0 -78
- tencentcloud/lp/v20200224/lp_client.py +0 -49
- tencentcloud/lp/v20200224/models.py +0 -748
- tencentcloud/rkp/__init__.py +0 -0
- tencentcloud/rkp/v20191209/__init__.py +0 -0
- tencentcloud/rkp/v20191209/errorcodes.py +0 -102
- tencentcloud/rkp/v20191209/models.py +0 -1007
- tencentcloud/rkp/v20191209/rkp_client.py +0 -101
- tencentcloud/rp/__init__.py +0 -0
- tencentcloud/rp/v20200224/__init__.py +0 -0
- tencentcloud/rp/v20200224/errorcodes.py +0 -78
- tencentcloud/rp/v20200224/models.py +0 -655
- tencentcloud/rp/v20200224/rp_client.py +0 -49
- {tencentcloud_sdk_python-3.0.1328.dist-info → tencentcloud_sdk_python-3.0.1330.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1328.dist-info → tencentcloud_sdk_python-3.0.1330.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1328.dist-info → tencentcloud_sdk_python-3.0.1330.dist-info}/top_level.txt +0 -0
@@ -2086,6 +2086,29 @@ class LkeClient(AbstractClient):
|
|
2086
2086
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2087
2087
|
|
2088
2088
|
|
2089
|
+
def RenameDoc(self, request):
|
2090
|
+
"""文档重命名
|
2091
|
+
|
2092
|
+
:param request: Request instance for RenameDoc.
|
2093
|
+
:type request: :class:`tencentcloud.lke.v20231130.models.RenameDocRequest`
|
2094
|
+
:rtype: :class:`tencentcloud.lke.v20231130.models.RenameDocResponse`
|
2095
|
+
|
2096
|
+
"""
|
2097
|
+
try:
|
2098
|
+
params = request._serialize()
|
2099
|
+
headers = request.headers
|
2100
|
+
body = self.call("RenameDoc", params, headers=headers)
|
2101
|
+
response = json.loads(body)
|
2102
|
+
model = models.RenameDocResponse()
|
2103
|
+
model._deserialize(response["Response"])
|
2104
|
+
return model
|
2105
|
+
except Exception as e:
|
2106
|
+
if isinstance(e, TencentCloudSDKException):
|
2107
|
+
raise
|
2108
|
+
else:
|
2109
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2110
|
+
|
2111
|
+
|
2089
2112
|
def ResetSession(self, request):
|
2090
2113
|
"""重置会话
|
2091
2114
|
|
@@ -11882,9 +11882,9 @@ class GetWsTokenRequest(AbstractModel):
|
|
11882
11882
|
|
11883
11883
|
def __init__(self):
|
11884
11884
|
r"""
|
11885
|
-
:param _Type:
|
11885
|
+
:param _Type: 接入类型,当前请填写5
|
11886
11886
|
:type Type: int
|
11887
|
-
:param _BotAppKey:
|
11887
|
+
:param _BotAppKey: 当Type=5时,必填;应用AppKey(应用发布后在应用页面[发布管理]-[调用信息]-[API管理]处获取)
|
11888
11888
|
:type BotAppKey: str
|
11889
11889
|
:param _VisitorBizId: 访客ID(外部输入,建议唯一,标识当前接入会话的用户)
|
11890
11890
|
:type VisitorBizId: str
|
@@ -11898,7 +11898,7 @@ class GetWsTokenRequest(AbstractModel):
|
|
11898
11898
|
|
11899
11899
|
@property
|
11900
11900
|
def Type(self):
|
11901
|
-
"""
|
11901
|
+
"""接入类型,当前请填写5
|
11902
11902
|
:rtype: int
|
11903
11903
|
"""
|
11904
11904
|
return self._Type
|
@@ -11909,7 +11909,7 @@ class GetWsTokenRequest(AbstractModel):
|
|
11909
11909
|
|
11910
11910
|
@property
|
11911
11911
|
def BotAppKey(self):
|
11912
|
-
"""
|
11912
|
+
"""当Type=5时,必填;应用AppKey(应用发布后在应用页面[发布管理]-[调用信息]-[API管理]处获取)
|
11913
11913
|
:rtype: str
|
11914
11914
|
"""
|
11915
11915
|
return self._BotAppKey
|
@@ -23268,6 +23268,130 @@ class ReleaseRejectedQuestion(AbstractModel):
|
|
23268
23268
|
|
23269
23269
|
|
23270
23270
|
|
23271
|
+
class RenameDocRequest(AbstractModel):
|
23272
|
+
"""RenameDoc请求参数结构体
|
23273
|
+
|
23274
|
+
"""
|
23275
|
+
|
23276
|
+
def __init__(self):
|
23277
|
+
r"""
|
23278
|
+
:param _LoginUin: 登录用户主账号(集成商模式必填)
|
23279
|
+
:type LoginUin: str
|
23280
|
+
:param _LoginSubAccountUin: 登录用户子账号(集成商模式必填)
|
23281
|
+
:type LoginSubAccountUin: str
|
23282
|
+
:param _BotBizId: 应用ID
|
23283
|
+
:type BotBizId: str
|
23284
|
+
:param _DocBizId: 文档ID
|
23285
|
+
:type DocBizId: str
|
23286
|
+
:param _NewName: 新文档名,需要带上后缀
|
23287
|
+
:type NewName: str
|
23288
|
+
"""
|
23289
|
+
self._LoginUin = None
|
23290
|
+
self._LoginSubAccountUin = None
|
23291
|
+
self._BotBizId = None
|
23292
|
+
self._DocBizId = None
|
23293
|
+
self._NewName = None
|
23294
|
+
|
23295
|
+
@property
|
23296
|
+
def LoginUin(self):
|
23297
|
+
"""登录用户主账号(集成商模式必填)
|
23298
|
+
:rtype: str
|
23299
|
+
"""
|
23300
|
+
return self._LoginUin
|
23301
|
+
|
23302
|
+
@LoginUin.setter
|
23303
|
+
def LoginUin(self, LoginUin):
|
23304
|
+
self._LoginUin = LoginUin
|
23305
|
+
|
23306
|
+
@property
|
23307
|
+
def LoginSubAccountUin(self):
|
23308
|
+
"""登录用户子账号(集成商模式必填)
|
23309
|
+
:rtype: str
|
23310
|
+
"""
|
23311
|
+
return self._LoginSubAccountUin
|
23312
|
+
|
23313
|
+
@LoginSubAccountUin.setter
|
23314
|
+
def LoginSubAccountUin(self, LoginSubAccountUin):
|
23315
|
+
self._LoginSubAccountUin = LoginSubAccountUin
|
23316
|
+
|
23317
|
+
@property
|
23318
|
+
def BotBizId(self):
|
23319
|
+
"""应用ID
|
23320
|
+
:rtype: str
|
23321
|
+
"""
|
23322
|
+
return self._BotBizId
|
23323
|
+
|
23324
|
+
@BotBizId.setter
|
23325
|
+
def BotBizId(self, BotBizId):
|
23326
|
+
self._BotBizId = BotBizId
|
23327
|
+
|
23328
|
+
@property
|
23329
|
+
def DocBizId(self):
|
23330
|
+
"""文档ID
|
23331
|
+
:rtype: str
|
23332
|
+
"""
|
23333
|
+
return self._DocBizId
|
23334
|
+
|
23335
|
+
@DocBizId.setter
|
23336
|
+
def DocBizId(self, DocBizId):
|
23337
|
+
self._DocBizId = DocBizId
|
23338
|
+
|
23339
|
+
@property
|
23340
|
+
def NewName(self):
|
23341
|
+
"""新文档名,需要带上后缀
|
23342
|
+
:rtype: str
|
23343
|
+
"""
|
23344
|
+
return self._NewName
|
23345
|
+
|
23346
|
+
@NewName.setter
|
23347
|
+
def NewName(self, NewName):
|
23348
|
+
self._NewName = NewName
|
23349
|
+
|
23350
|
+
|
23351
|
+
def _deserialize(self, params):
|
23352
|
+
self._LoginUin = params.get("LoginUin")
|
23353
|
+
self._LoginSubAccountUin = params.get("LoginSubAccountUin")
|
23354
|
+
self._BotBizId = params.get("BotBizId")
|
23355
|
+
self._DocBizId = params.get("DocBizId")
|
23356
|
+
self._NewName = params.get("NewName")
|
23357
|
+
memeber_set = set(params.keys())
|
23358
|
+
for name, value in vars(self).items():
|
23359
|
+
property_name = name[1:]
|
23360
|
+
if property_name in memeber_set:
|
23361
|
+
memeber_set.remove(property_name)
|
23362
|
+
if len(memeber_set) > 0:
|
23363
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
23364
|
+
|
23365
|
+
|
23366
|
+
|
23367
|
+
class RenameDocResponse(AbstractModel):
|
23368
|
+
"""RenameDoc返回参数结构体
|
23369
|
+
|
23370
|
+
"""
|
23371
|
+
|
23372
|
+
def __init__(self):
|
23373
|
+
r"""
|
23374
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
23375
|
+
:type RequestId: str
|
23376
|
+
"""
|
23377
|
+
self._RequestId = None
|
23378
|
+
|
23379
|
+
@property
|
23380
|
+
def RequestId(self):
|
23381
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
23382
|
+
:rtype: str
|
23383
|
+
"""
|
23384
|
+
return self._RequestId
|
23385
|
+
|
23386
|
+
@RequestId.setter
|
23387
|
+
def RequestId(self, RequestId):
|
23388
|
+
self._RequestId = RequestId
|
23389
|
+
|
23390
|
+
|
23391
|
+
def _deserialize(self, params):
|
23392
|
+
self._RequestId = params.get("RequestId")
|
23393
|
+
|
23394
|
+
|
23271
23395
|
class ResetSessionRequest(AbstractModel):
|
23272
23396
|
"""ResetSession请求参数结构体
|
23273
23397
|
|
@@ -10630,11 +10630,14 @@ class GeneralEfficientOCRResponse(AbstractModel):
|
|
10630
10630
|
:type TextDetections: list of TextDetection
|
10631
10631
|
:param _Angel: 图片旋转角度(角度制),文本的水平方向为0°;顺时针为正,逆时针为负。点击查看<a href="https://cloud.tencent.com/document/product/866/45139">如何纠正倾斜文本</a>
|
10632
10632
|
:type Angel: float
|
10633
|
+
:param _Angle: 图片旋转角度(角度制),文本的水平方向为0°;顺时针为正,逆时针为负。点击查看<a href="https://cloud.tencent.com/document/product/866/45139">如何纠正倾斜文本</a>
|
10634
|
+
:type Angle: float
|
10633
10635
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
10634
10636
|
:type RequestId: str
|
10635
10637
|
"""
|
10636
10638
|
self._TextDetections = None
|
10637
10639
|
self._Angel = None
|
10640
|
+
self._Angle = None
|
10638
10641
|
self._RequestId = None
|
10639
10642
|
|
10640
10643
|
@property
|
@@ -10650,6 +10653,8 @@ class GeneralEfficientOCRResponse(AbstractModel):
|
|
10650
10653
|
|
10651
10654
|
@property
|
10652
10655
|
def Angel(self):
|
10656
|
+
warnings.warn("parameter `Angel` is deprecated", DeprecationWarning)
|
10657
|
+
|
10653
10658
|
"""图片旋转角度(角度制),文本的水平方向为0°;顺时针为正,逆时针为负。点击查看<a href="https://cloud.tencent.com/document/product/866/45139">如何纠正倾斜文本</a>
|
10654
10659
|
:rtype: float
|
10655
10660
|
"""
|
@@ -10657,8 +10662,21 @@ class GeneralEfficientOCRResponse(AbstractModel):
|
|
10657
10662
|
|
10658
10663
|
@Angel.setter
|
10659
10664
|
def Angel(self, Angel):
|
10665
|
+
warnings.warn("parameter `Angel` is deprecated", DeprecationWarning)
|
10666
|
+
|
10660
10667
|
self._Angel = Angel
|
10661
10668
|
|
10669
|
+
@property
|
10670
|
+
def Angle(self):
|
10671
|
+
"""图片旋转角度(角度制),文本的水平方向为0°;顺时针为正,逆时针为负。点击查看<a href="https://cloud.tencent.com/document/product/866/45139">如何纠正倾斜文本</a>
|
10672
|
+
:rtype: float
|
10673
|
+
"""
|
10674
|
+
return self._Angle
|
10675
|
+
|
10676
|
+
@Angle.setter
|
10677
|
+
def Angle(self, Angle):
|
10678
|
+
self._Angle = Angle
|
10679
|
+
|
10662
10680
|
@property
|
10663
10681
|
def RequestId(self):
|
10664
10682
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -10679,6 +10697,7 @@ class GeneralEfficientOCRResponse(AbstractModel):
|
|
10679
10697
|
obj._deserialize(item)
|
10680
10698
|
self._TextDetections.append(obj)
|
10681
10699
|
self._Angel = params.get("Angel")
|
10700
|
+
self._Angle = params.get("Angle")
|
10682
10701
|
self._RequestId = params.get("RequestId")
|
10683
10702
|
|
10684
10703
|
|
@@ -24100,6 +24119,8 @@ class RecognizeGeneralInvoiceRequest(AbstractModel):
|
|
24100
24119
|
15:非税发票
|
24101
24120
|
16:全电发票
|
24102
24121
|
17:医疗发票
|
24122
|
+
18:完税凭证
|
24123
|
+
19:海关缴款书
|
24103
24124
|
-1:其他发票
|
24104
24125
|
:type Types: list of int
|
24105
24126
|
:param _EnableOther: 是否开启其他票识别,默认值为true,开启后可支持其他发票的智能识别。
|
@@ -24174,6 +24195,8 @@ class RecognizeGeneralInvoiceRequest(AbstractModel):
|
|
24174
24195
|
15:非税发票
|
24175
24196
|
16:全电发票
|
24176
24197
|
17:医疗发票
|
24198
|
+
18:完税凭证
|
24199
|
+
19:海关缴款书
|
24177
24200
|
-1:其他发票
|
24178
24201
|
:rtype: list of int
|
24179
24202
|
"""
|
@@ -1827,6 +1827,16 @@ class OcrClient(AbstractClient):
|
|
1827
1827
|
<td> 医疗住院收费票据(电子) </td>
|
1828
1828
|
<td> 17 </td>
|
1829
1829
|
</tr>
|
1830
|
+
<tr>
|
1831
|
+
<td> TaxPayment </td>
|
1832
|
+
<td> 完税凭证 </td>
|
1833
|
+
<td> 18 </td>
|
1834
|
+
</tr>
|
1835
|
+
<tr>
|
1836
|
+
<td> CustomsPaymentReceipt </td>
|
1837
|
+
<td> 海关缴款 </td>
|
1838
|
+
<td> 19 </td>
|
1839
|
+
</tr>
|
1830
1840
|
<tr>
|
1831
1841
|
<td> OtherInvoice </td>
|
1832
1842
|
<td> 其他发票 </td>
|
@@ -14858,6 +14858,8 @@ class OrgMember(AbstractModel):
|
|
14858
14858
|
:type PermissionStatus: str
|
14859
14859
|
:param _Tags: 成员标签列表
|
14860
14860
|
:type Tags: list of Tag
|
14861
|
+
:param _NickName: 腾讯云昵称
|
14862
|
+
:type NickName: str
|
14861
14863
|
"""
|
14862
14864
|
self._MemberUin = None
|
14863
14865
|
self._Name = None
|
@@ -14877,6 +14879,7 @@ class OrgMember(AbstractModel):
|
|
14877
14879
|
self._BindStatus = None
|
14878
14880
|
self._PermissionStatus = None
|
14879
14881
|
self._Tags = None
|
14882
|
+
self._NickName = None
|
14880
14883
|
|
14881
14884
|
@property
|
14882
14885
|
def MemberUin(self):
|
@@ -15076,6 +15079,17 @@ class OrgMember(AbstractModel):
|
|
15076
15079
|
def Tags(self, Tags):
|
15077
15080
|
self._Tags = Tags
|
15078
15081
|
|
15082
|
+
@property
|
15083
|
+
def NickName(self):
|
15084
|
+
"""腾讯云昵称
|
15085
|
+
:rtype: str
|
15086
|
+
"""
|
15087
|
+
return self._NickName
|
15088
|
+
|
15089
|
+
@NickName.setter
|
15090
|
+
def NickName(self, NickName):
|
15091
|
+
self._NickName = NickName
|
15092
|
+
|
15079
15093
|
|
15080
15094
|
def _deserialize(self, params):
|
15081
15095
|
self._MemberUin = params.get("MemberUin")
|
@@ -15111,6 +15125,7 @@ class OrgMember(AbstractModel):
|
|
15111
15125
|
obj = Tag()
|
15112
15126
|
obj._deserialize(item)
|
15113
15127
|
self._Tags.append(obj)
|
15128
|
+
self._NickName = params.get("NickName")
|
15114
15129
|
memeber_set = set(params.keys())
|
15115
15130
|
for name, value in vars(self).items():
|
15116
15131
|
property_name = name[1:]
|
@@ -19821,6 +19836,8 @@ class UpdateOrganizationMemberRequest(AbstractModel):
|
|
19821
19836
|
:type IsAllowQuit: str
|
19822
19837
|
:param _PayUin: 代付者Uin。成员财务权限有代付费时需要,取值为成员对应主体的主体管理员Uin
|
19823
19838
|
:type PayUin: str
|
19839
|
+
:param _IsModifyNickName: 是否同步组织成员名称到成员账号昵称。取值: 1-同步 0-不同步
|
19840
|
+
:type IsModifyNickName: int
|
19824
19841
|
"""
|
19825
19842
|
self._MemberUin = None
|
19826
19843
|
self._Name = None
|
@@ -19829,6 +19846,7 @@ class UpdateOrganizationMemberRequest(AbstractModel):
|
|
19829
19846
|
self._PermissionIds = None
|
19830
19847
|
self._IsAllowQuit = None
|
19831
19848
|
self._PayUin = None
|
19849
|
+
self._IsModifyNickName = None
|
19832
19850
|
|
19833
19851
|
@property
|
19834
19852
|
def MemberUin(self):
|
@@ -19908,6 +19926,17 @@ class UpdateOrganizationMemberRequest(AbstractModel):
|
|
19908
19926
|
def PayUin(self, PayUin):
|
19909
19927
|
self._PayUin = PayUin
|
19910
19928
|
|
19929
|
+
@property
|
19930
|
+
def IsModifyNickName(self):
|
19931
|
+
"""是否同步组织成员名称到成员账号昵称。取值: 1-同步 0-不同步
|
19932
|
+
:rtype: int
|
19933
|
+
"""
|
19934
|
+
return self._IsModifyNickName
|
19935
|
+
|
19936
|
+
@IsModifyNickName.setter
|
19937
|
+
def IsModifyNickName(self, IsModifyNickName):
|
19938
|
+
self._IsModifyNickName = IsModifyNickName
|
19939
|
+
|
19911
19940
|
|
19912
19941
|
def _deserialize(self, params):
|
19913
19942
|
self._MemberUin = params.get("MemberUin")
|
@@ -19917,6 +19946,7 @@ class UpdateOrganizationMemberRequest(AbstractModel):
|
|
19917
19946
|
self._PermissionIds = params.get("PermissionIds")
|
19918
19947
|
self._IsAllowQuit = params.get("IsAllowQuit")
|
19919
19948
|
self._PayUin = params.get("PayUin")
|
19949
|
+
self._IsModifyNickName = params.get("IsModifyNickName")
|
19920
19950
|
memeber_set = set(params.keys())
|
19921
19951
|
for name, value in vars(self).items():
|
19922
19952
|
property_name = name[1:]
|
@@ -205,20 +205,13 @@ class DataAuthorizationInfo(AbstractModel):
|
|
205
205
|
r"""
|
206
206
|
:param _DataProviderName: 数据委托方、需求方:客户主体名称。
|
207
207
|
:type DataProviderName: str
|
208
|
-
:param _DataRecipientName:
|
209
|
-
|
210
|
-
固定填:腾讯云计算(北京)有限责任公司
|
208
|
+
:param _DataRecipientName: 数据受托方、提供方:腾讯云主体名称。固定填:腾讯云计算(北京)有限责任公司
|
211
209
|
:type DataRecipientName: str
|
212
210
|
:param _UserDataType: 客户请求RCE所提供的用户数据类型,支持多选。实际以接口请求传参为准。
|
213
|
-
|
214
211
|
1-手机号;
|
215
|
-
|
216
212
|
2-微信开放账号;
|
217
|
-
|
218
213
|
3-QQ开放账号;
|
219
|
-
|
220
214
|
4-IP地址;
|
221
|
-
|
222
215
|
999-其它;
|
223
216
|
:type UserDataType: list of int non-negative
|
224
217
|
:param _IsAuthorize: 客户是否已按[合规指南](https://rule.tencent.com/rule/202409130001)要求获取用户授权,同意客户委托腾讯云处理入参信息
|
@@ -227,16 +220,11 @@ class DataAuthorizationInfo(AbstractModel):
|
|
227
220
|
:param _IsOrderHandling: 客户是否已按[合规指南](https://rule.tencent.com/rule/202409130001)要求获取用户授权,同意腾讯云结合客户提供的信息,对已合法收集的用户数据进行必要处理得出服务结果,并返回给客户。
|
228
221
|
1-已授权;其它值为未授权。
|
229
222
|
:type IsOrderHandling: int
|
230
|
-
:param _AuthorizationTerm:
|
231
|
-
|
232
|
-
不填默认无固定期限。
|
223
|
+
:param _AuthorizationTerm: 客户获得的用户授权期限时间戳(单位秒)。不填默认无固定期限。
|
233
224
|
:type AuthorizationTerm: int
|
234
|
-
:param _PrivacyPolicyLink:
|
235
|
-
客户获得用户授权所依赖的协议地址。
|
225
|
+
:param _PrivacyPolicyLink: 客户获得用户授权所依赖的协议地址。
|
236
226
|
:type PrivacyPolicyLink: str
|
237
|
-
:param _IsPersonalData:
|
238
|
-
|
239
|
-
固定填:1。
|
227
|
+
:param _IsPersonalData: 是否是用户个人敏感数据(不推荐使用)。固定填:1。
|
240
228
|
:type IsPersonalData: int
|
241
229
|
"""
|
242
230
|
self._DataProviderName = None
|
@@ -261,9 +249,7 @@ class DataAuthorizationInfo(AbstractModel):
|
|
261
249
|
|
262
250
|
@property
|
263
251
|
def DataRecipientName(self):
|
264
|
-
"""
|
265
|
-
|
266
|
-
固定填:腾讯云计算(北京)有限责任公司
|
252
|
+
"""数据受托方、提供方:腾讯云主体名称。固定填:腾讯云计算(北京)有限责任公司
|
267
253
|
:rtype: str
|
268
254
|
"""
|
269
255
|
return self._DataRecipientName
|
@@ -275,15 +261,10 @@ class DataAuthorizationInfo(AbstractModel):
|
|
275
261
|
@property
|
276
262
|
def UserDataType(self):
|
277
263
|
"""客户请求RCE所提供的用户数据类型,支持多选。实际以接口请求传参为准。
|
278
|
-
|
279
264
|
1-手机号;
|
280
|
-
|
281
265
|
2-微信开放账号;
|
282
|
-
|
283
266
|
3-QQ开放账号;
|
284
|
-
|
285
267
|
4-IP地址;
|
286
|
-
|
287
268
|
999-其它;
|
288
269
|
:rtype: list of int non-negative
|
289
270
|
"""
|
@@ -319,9 +300,7 @@ class DataAuthorizationInfo(AbstractModel):
|
|
319
300
|
|
320
301
|
@property
|
321
302
|
def AuthorizationTerm(self):
|
322
|
-
"""
|
323
|
-
|
324
|
-
不填默认无固定期限。
|
303
|
+
"""客户获得的用户授权期限时间戳(单位秒)。不填默认无固定期限。
|
325
304
|
:rtype: int
|
326
305
|
"""
|
327
306
|
return self._AuthorizationTerm
|
@@ -332,8 +311,7 @@ class DataAuthorizationInfo(AbstractModel):
|
|
332
311
|
|
333
312
|
@property
|
334
313
|
def PrivacyPolicyLink(self):
|
335
|
-
"""
|
336
|
-
客户获得用户授权所依赖的协议地址。
|
314
|
+
"""客户获得用户授权所依赖的协议地址。
|
337
315
|
:rtype: str
|
338
316
|
"""
|
339
317
|
return self._PrivacyPolicyLink
|
@@ -344,9 +322,7 @@ class DataAuthorizationInfo(AbstractModel):
|
|
344
322
|
|
345
323
|
@property
|
346
324
|
def IsPersonalData(self):
|
347
|
-
"""
|
348
|
-
|
349
|
-
固定填:1。
|
325
|
+
"""是否是用户个人敏感数据(不推荐使用)。固定填:1。
|
350
326
|
:rtype: int
|
351
327
|
"""
|
352
328
|
return self._IsPersonalData
|
@@ -1124,12 +1100,9 @@ class InputCryptoManageMarketingRisk(AbstractModel):
|
|
1124
1100
|
def __init__(self):
|
1125
1101
|
r"""
|
1126
1102
|
:param _IsAuthorized: 是否授权:1已授权,否则未授权。
|
1127
|
-
|
1128
|
-
|
1129
|
-
|
1103
|
+
调用全栈式风控引擎接口服务时,客户需先明确授权。
|
1130
1104
|
:type IsAuthorized: str
|
1131
1105
|
:param _CryptoType: 加密类型:1AES加密
|
1132
|
-
|
1133
1106
|
:type CryptoType: str
|
1134
1107
|
:param _CryptoContent: 加密内容,非空时接口采用加密模式。
|
1135
1108
|
:type CryptoContent: str
|
@@ -1141,9 +1114,7 @@ class InputCryptoManageMarketingRisk(AbstractModel):
|
|
1141
1114
|
@property
|
1142
1115
|
def IsAuthorized(self):
|
1143
1116
|
"""是否授权:1已授权,否则未授权。
|
1144
|
-
|
1145
|
-
|
1146
|
-
|
1117
|
+
调用全栈式风控引擎接口服务时,客户需先明确授权。
|
1147
1118
|
:rtype: str
|
1148
1119
|
"""
|
1149
1120
|
return self._IsAuthorized
|
@@ -1155,7 +1126,6 @@ class InputCryptoManageMarketingRisk(AbstractModel):
|
|
1155
1126
|
@property
|
1156
1127
|
def CryptoType(self):
|
1157
1128
|
"""加密类型:1AES加密
|
1158
|
-
|
1159
1129
|
:rtype: str
|
1160
1130
|
"""
|
1161
1131
|
return self._CryptoType
|
@@ -1690,7 +1660,6 @@ class InputManageMarketingRisk(AbstractModel):
|
|
1690
1660
|
2:iOS
|
1691
1661
|
3:H5
|
1692
1662
|
4:小程序
|
1693
|
-
|
1694
1663
|
:type Platform: str
|
1695
1664
|
:param _DataAuthorization: 数据授权信息。
|
1696
1665
|
:type DataAuthorization: :class:`tencentcloud.rce.v20201103.models.DataAuthorizationInfo`
|
@@ -1966,7 +1935,6 @@ class InputManageMarketingRisk(AbstractModel):
|
|
1966
1935
|
2:iOS
|
1967
1936
|
3:H5
|
1968
1937
|
4:小程序
|
1969
|
-
|
1970
1938
|
:rtype: str
|
1971
1939
|
"""
|
1972
1940
|
return self._Platform
|
@@ -3671,12 +3639,11 @@ class OutputDescribeNameListFrontFixListData(AbstractModel):
|
|
3671
3639
|
|
3672
3640
|
def __init__(self):
|
3673
3641
|
r"""
|
3674
|
-
:param _Code: 错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000
|
3675
|
-
|
3642
|
+
:param _Code: 错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误。
|
3676
3643
|
:type Code: int
|
3677
|
-
:param _Message:
|
3644
|
+
:param _Message: 错误信息。
|
3678
3645
|
:type Message: str
|
3679
|
-
:param _Value:
|
3646
|
+
:param _Value: 黑白名单列表信息。
|
3680
3647
|
:type Value: :class:`tencentcloud.rce.v20201103.models.OutputDescribeNameListInfo`
|
3681
3648
|
"""
|
3682
3649
|
self._Code = None
|
@@ -3685,8 +3652,7 @@ class OutputDescribeNameListFrontFixListData(AbstractModel):
|
|
3685
3652
|
|
3686
3653
|
@property
|
3687
3654
|
def Code(self):
|
3688
|
-
"""错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000
|
3689
|
-
|
3655
|
+
"""错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误。
|
3690
3656
|
:rtype: int
|
3691
3657
|
"""
|
3692
3658
|
return self._Code
|
@@ -3697,7 +3663,7 @@ class OutputDescribeNameListFrontFixListData(AbstractModel):
|
|
3697
3663
|
|
3698
3664
|
@property
|
3699
3665
|
def Message(self):
|
3700
|
-
"""
|
3666
|
+
"""错误信息。
|
3701
3667
|
:rtype: str
|
3702
3668
|
"""
|
3703
3669
|
return self._Message
|
@@ -3708,7 +3674,7 @@ class OutputDescribeNameListFrontFixListData(AbstractModel):
|
|
3708
3674
|
|
3709
3675
|
@property
|
3710
3676
|
def Value(self):
|
3711
|
-
"""
|
3677
|
+
"""黑白名单列表信息。
|
3712
3678
|
:rtype: :class:`tencentcloud.rce.v20201103.models.OutputDescribeNameListInfo`
|
3713
3679
|
"""
|
3714
3680
|
return self._Value
|
@@ -4166,7 +4132,7 @@ class OutputManageMarketingRiskValue(AbstractModel):
|
|
4166
4132
|
:type UserId: str
|
4167
4133
|
:param _PostTime: 操作时间戳,单位秒(对应输入参数)。
|
4168
4134
|
:type PostTime: int
|
4169
|
-
:param _AssociateAccount:
|
4135
|
+
:param _AssociateAccount: 业务预留参数(暂无实际业务含义, 无需关注返回值)
|
4170
4136
|
:type AssociateAccount: str
|
4171
4137
|
:param _UserIp: 操作来源的外网IP(对应输入参数)。
|
4172
4138
|
:type UserIp: str
|
@@ -4237,7 +4203,7 @@ reject:高风险,建议拦截
|
|
4237
4203
|
|
4238
4204
|
@property
|
4239
4205
|
def AssociateAccount(self):
|
4240
|
-
"""
|
4206
|
+
"""业务预留参数(暂无实际业务含义, 无需关注返回值)
|
4241
4207
|
:rtype: str
|
4242
4208
|
"""
|
4243
4209
|
return self._AssociateAccount
|
@@ -4496,7 +4462,6 @@ class QQAccountInfo(AbstractModel):
|
|
4496
4462
|
支持标准中国大陆11位手机号SHA256加密后位的64位小写字符串。
|
4497
4463
|
:type MobilePhone: str
|
4498
4464
|
:param _DeviceId: 用户设备号(已不推荐使用)。
|
4499
|
-
|
4500
4465
|
:type DeviceId: str
|
4501
4466
|
"""
|
4502
4467
|
self._QQOpenId = None
|
@@ -4554,7 +4519,6 @@ class QQAccountInfo(AbstractModel):
|
|
4554
4519
|
@property
|
4555
4520
|
def DeviceId(self):
|
4556
4521
|
"""用户设备号(已不推荐使用)。
|
4557
|
-
|
4558
4522
|
:rtype: str
|
4559
4523
|
"""
|
4560
4524
|
return self._DeviceId
|
@@ -94,7 +94,6 @@ class ManagePortraitRiskOutput(AbstractModel):
|
|
94
94
|
:param _Code: 返回码(0,成功,其他失败)
|
95
95
|
:type Code: int
|
96
96
|
:param _Message: 返回码对应的信息
|
97
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
98
97
|
:type Message: str
|
99
98
|
:param _Value: 结果
|
100
99
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -118,7 +117,6 @@ class ManagePortraitRiskOutput(AbstractModel):
|
|
118
117
|
@property
|
119
118
|
def Message(self):
|
120
119
|
"""返回码对应的信息
|
121
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
122
120
|
:rtype: str
|
123
121
|
"""
|
124
122
|
return self._Message
|
@@ -1041,10 +1041,16 @@ class DescribeCloudRunServersRequest(AbstractModel):
|
|
1041
1041
|
:type PageSize: int
|
1042
1042
|
:param _PageNum: 不传或传0时 会默认为1
|
1043
1043
|
:type PageNum: int
|
1044
|
+
:param _ServerName: 服务名
|
1045
|
+
:type ServerName: str
|
1046
|
+
:param _ServerType: 服务类型:function | container
|
1047
|
+
:type ServerType: str
|
1044
1048
|
"""
|
1045
1049
|
self._EnvId = None
|
1046
1050
|
self._PageSize = None
|
1047
1051
|
self._PageNum = None
|
1052
|
+
self._ServerName = None
|
1053
|
+
self._ServerType = None
|
1048
1054
|
|
1049
1055
|
@property
|
1050
1056
|
def EnvId(self):
|
@@ -1081,11 +1087,35 @@ class DescribeCloudRunServersRequest(AbstractModel):
|
|
1081
1087
|
def PageNum(self, PageNum):
|
1082
1088
|
self._PageNum = PageNum
|
1083
1089
|
|
1090
|
+
@property
|
1091
|
+
def ServerName(self):
|
1092
|
+
"""服务名
|
1093
|
+
:rtype: str
|
1094
|
+
"""
|
1095
|
+
return self._ServerName
|
1096
|
+
|
1097
|
+
@ServerName.setter
|
1098
|
+
def ServerName(self, ServerName):
|
1099
|
+
self._ServerName = ServerName
|
1100
|
+
|
1101
|
+
@property
|
1102
|
+
def ServerType(self):
|
1103
|
+
"""服务类型:function | container
|
1104
|
+
:rtype: str
|
1105
|
+
"""
|
1106
|
+
return self._ServerType
|
1107
|
+
|
1108
|
+
@ServerType.setter
|
1109
|
+
def ServerType(self, ServerType):
|
1110
|
+
self._ServerType = ServerType
|
1111
|
+
|
1084
1112
|
|
1085
1113
|
def _deserialize(self, params):
|
1086
1114
|
self._EnvId = params.get("EnvId")
|
1087
1115
|
self._PageSize = params.get("PageSize")
|
1088
1116
|
self._PageNum = params.get("PageNum")
|
1117
|
+
self._ServerName = params.get("ServerName")
|
1118
|
+
self._ServerType = params.get("ServerType")
|
1089
1119
|
memeber_set = set(params.keys())
|
1090
1120
|
for name, value in vars(self).items():
|
1091
1121
|
property_name = name[1:]
|