tencentcloud-sdk-python 3.0.1424__py2.py3-none-any.whl → 3.0.1426__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.
Potentially problematic release.
This version of tencentcloud-sdk-python might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/aiart/v20221229/aiart_client.py +0 -27
- tencentcloud/aiart/v20221229/models.py +2 -205
- tencentcloud/batch/v20170312/errorcodes.py +3 -0
- tencentcloud/cbs/v20170312/errorcodes.py +3 -0
- tencentcloud/ccc/v20200210/models.py +15 -0
- tencentcloud/cdb/v20170320/cdb_client.py +1 -1
- tencentcloud/cdb/v20170320/models.py +98 -12
- tencentcloud/cfg/v20210820/models.py +15 -0
- tencentcloud/cfs/v20190719/models.py +90 -0
- tencentcloud/csip/v20221121/models.py +32 -2
- tencentcloud/dbbrain/v20210527/models.py +60 -0
- tencentcloud/dlc/v20210125/dlc_client.py +23 -0
- tencentcloud/dlc/v20210125/models.py +64 -0
- tencentcloud/eb/v20210416/models.py +8 -8
- tencentcloud/ess/v20201111/models.py +2 -2
- tencentcloud/gs/v20191118/models.py +49 -8
- tencentcloud/iai/v20180301/iai_client.py +0 -1
- tencentcloud/iai/v20180301/models.py +168 -126
- tencentcloud/igtm/v20231024/models.py +12 -238
- tencentcloud/ims/v20201229/errorcodes.py +3 -0
- tencentcloud/lighthouse/v20200324/models.py +15 -0
- tencentcloud/lke/v20231130/models.py +4 -4
- tencentcloud/lkeap/v20240522/models.py +6 -58
- tencentcloud/scf/v20180416/errorcodes.py +93 -0
- tencentcloud/tcbr/v20220217/models.py +15 -0
- tencentcloud/tke/v20180525/models.py +95 -0
- tencentcloud/trtc/v20190722/models.py +2583 -725
- tencentcloud/trtc/v20190722/trtc_client.py +194 -0
- tencentcloud/tsf/v20180326/errorcodes.py +2 -2
- tencentcloud/tts/v20190823/tts_client.py +1 -1
- tencentcloud/vod/v20180717/errorcodes.py +3 -0
- tencentcloud/vod/v20180717/models.py +19 -4
- tencentcloud/wedata/v20210820/errorcodes.py +12 -0
- tencentcloud/wedata/v20210820/models.py +865 -2
- tencentcloud/wedata/v20210820/wedata_client.py +161 -0
- {tencentcloud_sdk_python-3.0.1424.dist-info → tencentcloud_sdk_python-3.0.1426.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1424.dist-info → tencentcloud_sdk_python-3.0.1426.dist-info}/RECORD +41 -41
- {tencentcloud_sdk_python-3.0.1424.dist-info → tencentcloud_sdk_python-3.0.1426.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1424.dist-info → tencentcloud_sdk_python-3.0.1426.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1424.dist-info → tencentcloud_sdk_python-3.0.1426.dist-info}/top_level.txt +0 -0
|
@@ -4673,6 +4673,57 @@ class DescribeUserQuotaResponse(AbstractModel):
|
|
|
4673
4673
|
self._RequestId = params.get("RequestId")
|
|
4674
4674
|
|
|
4675
4675
|
|
|
4676
|
+
class ExstraPerformanceInfo(AbstractModel):
|
|
4677
|
+
"""购买完额外性能之后的值
|
|
4678
|
+
|
|
4679
|
+
"""
|
|
4680
|
+
|
|
4681
|
+
def __init__(self):
|
|
4682
|
+
r"""
|
|
4683
|
+
:param _Type: fixed: 最终值固定
|
|
4684
|
+
:type Type: str
|
|
4685
|
+
:param _Performance: 额外购买的CFS性能值,单位MB/s。
|
|
4686
|
+
:type Performance: int
|
|
4687
|
+
"""
|
|
4688
|
+
self._Type = None
|
|
4689
|
+
self._Performance = None
|
|
4690
|
+
|
|
4691
|
+
@property
|
|
4692
|
+
def Type(self):
|
|
4693
|
+
"""fixed: 最终值固定
|
|
4694
|
+
:rtype: str
|
|
4695
|
+
"""
|
|
4696
|
+
return self._Type
|
|
4697
|
+
|
|
4698
|
+
@Type.setter
|
|
4699
|
+
def Type(self, Type):
|
|
4700
|
+
self._Type = Type
|
|
4701
|
+
|
|
4702
|
+
@property
|
|
4703
|
+
def Performance(self):
|
|
4704
|
+
"""额外购买的CFS性能值,单位MB/s。
|
|
4705
|
+
:rtype: int
|
|
4706
|
+
"""
|
|
4707
|
+
return self._Performance
|
|
4708
|
+
|
|
4709
|
+
@Performance.setter
|
|
4710
|
+
def Performance(self, Performance):
|
|
4711
|
+
self._Performance = Performance
|
|
4712
|
+
|
|
4713
|
+
|
|
4714
|
+
def _deserialize(self, params):
|
|
4715
|
+
self._Type = params.get("Type")
|
|
4716
|
+
self._Performance = params.get("Performance")
|
|
4717
|
+
memeber_set = set(params.keys())
|
|
4718
|
+
for name, value in vars(self).items():
|
|
4719
|
+
property_name = name[1:]
|
|
4720
|
+
if property_name in memeber_set:
|
|
4721
|
+
memeber_set.remove(property_name)
|
|
4722
|
+
if len(memeber_set) > 0:
|
|
4723
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
4724
|
+
|
|
4725
|
+
|
|
4726
|
+
|
|
4676
4727
|
class FileSystemByPolicy(AbstractModel):
|
|
4677
4728
|
"""绑定快照策略的文件系统信息
|
|
4678
4729
|
|
|
@@ -4978,6 +5029,12 @@ Available:可用
|
|
|
4978
5029
|
:type AutoScaleUpRule: :class:`tencentcloud.cfs.v20190719.models.AutoScaleUpRule`
|
|
4979
5030
|
:param _Version: 文件系统版本
|
|
4980
5031
|
:type Version: str
|
|
5032
|
+
:param _ExstraPerformanceInfo: 额外性能信息
|
|
5033
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5034
|
+
:type ExstraPerformanceInfo: list of ExstraPerformanceInfo
|
|
5035
|
+
:param _MetaType: basic:标准版元数据类型
|
|
5036
|
+
enhanced:增项版元数据类型
|
|
5037
|
+
:type MetaType: str
|
|
4981
5038
|
"""
|
|
4982
5039
|
self._CreationTime = None
|
|
4983
5040
|
self._CreationToken = None
|
|
@@ -5005,6 +5062,8 @@ Available:可用
|
|
|
5005
5062
|
self._TieringDetail = None
|
|
5006
5063
|
self._AutoScaleUpRule = None
|
|
5007
5064
|
self._Version = None
|
|
5065
|
+
self._ExstraPerformanceInfo = None
|
|
5066
|
+
self._MetaType = None
|
|
5008
5067
|
|
|
5009
5068
|
@property
|
|
5010
5069
|
def CreationTime(self):
|
|
@@ -5301,6 +5360,30 @@ Available:可用
|
|
|
5301
5360
|
def Version(self, Version):
|
|
5302
5361
|
self._Version = Version
|
|
5303
5362
|
|
|
5363
|
+
@property
|
|
5364
|
+
def ExstraPerformanceInfo(self):
|
|
5365
|
+
"""额外性能信息
|
|
5366
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5367
|
+
:rtype: list of ExstraPerformanceInfo
|
|
5368
|
+
"""
|
|
5369
|
+
return self._ExstraPerformanceInfo
|
|
5370
|
+
|
|
5371
|
+
@ExstraPerformanceInfo.setter
|
|
5372
|
+
def ExstraPerformanceInfo(self, ExstraPerformanceInfo):
|
|
5373
|
+
self._ExstraPerformanceInfo = ExstraPerformanceInfo
|
|
5374
|
+
|
|
5375
|
+
@property
|
|
5376
|
+
def MetaType(self):
|
|
5377
|
+
"""basic:标准版元数据类型
|
|
5378
|
+
enhanced:增项版元数据类型
|
|
5379
|
+
:rtype: str
|
|
5380
|
+
"""
|
|
5381
|
+
return self._MetaType
|
|
5382
|
+
|
|
5383
|
+
@MetaType.setter
|
|
5384
|
+
def MetaType(self, MetaType):
|
|
5385
|
+
self._MetaType = MetaType
|
|
5386
|
+
|
|
5304
5387
|
|
|
5305
5388
|
def _deserialize(self, params):
|
|
5306
5389
|
self._CreationTime = params.get("CreationTime")
|
|
@@ -5340,6 +5423,13 @@ Available:可用
|
|
|
5340
5423
|
self._AutoScaleUpRule = AutoScaleUpRule()
|
|
5341
5424
|
self._AutoScaleUpRule._deserialize(params.get("AutoScaleUpRule"))
|
|
5342
5425
|
self._Version = params.get("Version")
|
|
5426
|
+
if params.get("ExstraPerformanceInfo") is not None:
|
|
5427
|
+
self._ExstraPerformanceInfo = []
|
|
5428
|
+
for item in params.get("ExstraPerformanceInfo"):
|
|
5429
|
+
obj = ExstraPerformanceInfo()
|
|
5430
|
+
obj._deserialize(item)
|
|
5431
|
+
self._ExstraPerformanceInfo.append(obj)
|
|
5432
|
+
self._MetaType = params.get("MetaType")
|
|
5343
5433
|
memeber_set = set(params.keys())
|
|
5344
5434
|
for name, value in vars(self).items():
|
|
5345
5435
|
property_name = name[1:]
|
|
@@ -10186,11 +10186,14 @@ class CreateAccessKeyCheckTaskRequest(AbstractModel):
|
|
|
10186
10186
|
:type AccessKeyList: list of str
|
|
10187
10187
|
:param _SubUinList: 账号uin列表
|
|
10188
10188
|
:type SubUinList: list of str
|
|
10189
|
+
:param _RiskRuleIDList: 风险规则id列表
|
|
10190
|
+
:type RiskRuleIDList: list of int
|
|
10189
10191
|
"""
|
|
10190
10192
|
self._MemberId = None
|
|
10191
10193
|
self._RiskIDList = None
|
|
10192
10194
|
self._AccessKeyList = None
|
|
10193
10195
|
self._SubUinList = None
|
|
10196
|
+
self._RiskRuleIDList = None
|
|
10194
10197
|
|
|
10195
10198
|
@property
|
|
10196
10199
|
def MemberId(self):
|
|
@@ -10236,12 +10239,24 @@ class CreateAccessKeyCheckTaskRequest(AbstractModel):
|
|
|
10236
10239
|
def SubUinList(self, SubUinList):
|
|
10237
10240
|
self._SubUinList = SubUinList
|
|
10238
10241
|
|
|
10242
|
+
@property
|
|
10243
|
+
def RiskRuleIDList(self):
|
|
10244
|
+
"""风险规则id列表
|
|
10245
|
+
:rtype: list of int
|
|
10246
|
+
"""
|
|
10247
|
+
return self._RiskRuleIDList
|
|
10248
|
+
|
|
10249
|
+
@RiskRuleIDList.setter
|
|
10250
|
+
def RiskRuleIDList(self, RiskRuleIDList):
|
|
10251
|
+
self._RiskRuleIDList = RiskRuleIDList
|
|
10252
|
+
|
|
10239
10253
|
|
|
10240
10254
|
def _deserialize(self, params):
|
|
10241
10255
|
self._MemberId = params.get("MemberId")
|
|
10242
10256
|
self._RiskIDList = params.get("RiskIDList")
|
|
10243
10257
|
self._AccessKeyList = params.get("AccessKeyList")
|
|
10244
10258
|
self._SubUinList = params.get("SubUinList")
|
|
10259
|
+
self._RiskRuleIDList = params.get("RiskRuleIDList")
|
|
10245
10260
|
memeber_set = set(params.keys())
|
|
10246
10261
|
for name, value in vars(self).items():
|
|
10247
10262
|
property_name = name[1:]
|
|
@@ -12030,7 +12045,7 @@ class DeleteRiskScanTaskRequest(AbstractModel):
|
|
|
12030
12045
|
|
|
12031
12046
|
def __init__(self):
|
|
12032
12047
|
r"""
|
|
12033
|
-
:param _TaskIdList: 任务id 列表
|
|
12048
|
+
:param _TaskIdList: 任务id 和目标AppID列表
|
|
12034
12049
|
:type TaskIdList: list of TaskIdListKey
|
|
12035
12050
|
:param _MemberId: 集团账号的成员id
|
|
12036
12051
|
:type MemberId: list of str
|
|
@@ -12040,7 +12055,7 @@ class DeleteRiskScanTaskRequest(AbstractModel):
|
|
|
12040
12055
|
|
|
12041
12056
|
@property
|
|
12042
12057
|
def TaskIdList(self):
|
|
12043
|
-
"""任务id 列表
|
|
12058
|
+
"""任务id 和目标AppID列表
|
|
12044
12059
|
:rtype: list of TaskIdListKey
|
|
12045
12060
|
"""
|
|
12046
12061
|
return self._TaskIdList
|
|
@@ -33394,8 +33409,11 @@ class TaskIdListKey(AbstractModel):
|
|
|
33394
33409
|
r"""
|
|
33395
33410
|
:param _TaskId: 任务ID
|
|
33396
33411
|
:type TaskId: str
|
|
33412
|
+
:param _TargetAppId: APP ID
|
|
33413
|
+
:type TargetAppId: str
|
|
33397
33414
|
"""
|
|
33398
33415
|
self._TaskId = None
|
|
33416
|
+
self._TargetAppId = None
|
|
33399
33417
|
|
|
33400
33418
|
@property
|
|
33401
33419
|
def TaskId(self):
|
|
@@ -33408,9 +33426,21 @@ class TaskIdListKey(AbstractModel):
|
|
|
33408
33426
|
def TaskId(self, TaskId):
|
|
33409
33427
|
self._TaskId = TaskId
|
|
33410
33428
|
|
|
33429
|
+
@property
|
|
33430
|
+
def TargetAppId(self):
|
|
33431
|
+
"""APP ID
|
|
33432
|
+
:rtype: str
|
|
33433
|
+
"""
|
|
33434
|
+
return self._TargetAppId
|
|
33435
|
+
|
|
33436
|
+
@TargetAppId.setter
|
|
33437
|
+
def TargetAppId(self, TargetAppId):
|
|
33438
|
+
self._TargetAppId = TargetAppId
|
|
33439
|
+
|
|
33411
33440
|
|
|
33412
33441
|
def _deserialize(self, params):
|
|
33413
33442
|
self._TaskId = params.get("TaskId")
|
|
33443
|
+
self._TargetAppId = params.get("TargetAppId")
|
|
33414
33444
|
memeber_set = set(params.keys())
|
|
33415
33445
|
for name, value in vars(self).items():
|
|
33416
33446
|
property_name = name[1:]
|
|
@@ -12753,6 +12753,14 @@ class DiagHistoryEventItem(AbstractModel):
|
|
|
12753
12753
|
:type Metric: str
|
|
12754
12754
|
:param _Region: 地域。
|
|
12755
12755
|
:type Region: str
|
|
12756
|
+
:param _ClusterId: 集群ID。
|
|
12757
|
+
:type ClusterId: str
|
|
12758
|
+
:param _ClusterName: 集群名称。
|
|
12759
|
+
:type ClusterName: str
|
|
12760
|
+
:param _Vip: vip地址。
|
|
12761
|
+
:type Vip: str
|
|
12762
|
+
:param _Vport: vip端口。
|
|
12763
|
+
:type Vport: int
|
|
12756
12764
|
"""
|
|
12757
12765
|
self._DiagType = None
|
|
12758
12766
|
self._EndTime = None
|
|
@@ -12764,6 +12772,10 @@ class DiagHistoryEventItem(AbstractModel):
|
|
|
12764
12772
|
self._InstanceId = None
|
|
12765
12773
|
self._Metric = None
|
|
12766
12774
|
self._Region = None
|
|
12775
|
+
self._ClusterId = None
|
|
12776
|
+
self._ClusterName = None
|
|
12777
|
+
self._Vip = None
|
|
12778
|
+
self._Vport = None
|
|
12767
12779
|
|
|
12768
12780
|
@property
|
|
12769
12781
|
def DiagType(self):
|
|
@@ -12875,6 +12887,50 @@ class DiagHistoryEventItem(AbstractModel):
|
|
|
12875
12887
|
def Region(self, Region):
|
|
12876
12888
|
self._Region = Region
|
|
12877
12889
|
|
|
12890
|
+
@property
|
|
12891
|
+
def ClusterId(self):
|
|
12892
|
+
"""集群ID。
|
|
12893
|
+
:rtype: str
|
|
12894
|
+
"""
|
|
12895
|
+
return self._ClusterId
|
|
12896
|
+
|
|
12897
|
+
@ClusterId.setter
|
|
12898
|
+
def ClusterId(self, ClusterId):
|
|
12899
|
+
self._ClusterId = ClusterId
|
|
12900
|
+
|
|
12901
|
+
@property
|
|
12902
|
+
def ClusterName(self):
|
|
12903
|
+
"""集群名称。
|
|
12904
|
+
:rtype: str
|
|
12905
|
+
"""
|
|
12906
|
+
return self._ClusterName
|
|
12907
|
+
|
|
12908
|
+
@ClusterName.setter
|
|
12909
|
+
def ClusterName(self, ClusterName):
|
|
12910
|
+
self._ClusterName = ClusterName
|
|
12911
|
+
|
|
12912
|
+
@property
|
|
12913
|
+
def Vip(self):
|
|
12914
|
+
"""vip地址。
|
|
12915
|
+
:rtype: str
|
|
12916
|
+
"""
|
|
12917
|
+
return self._Vip
|
|
12918
|
+
|
|
12919
|
+
@Vip.setter
|
|
12920
|
+
def Vip(self, Vip):
|
|
12921
|
+
self._Vip = Vip
|
|
12922
|
+
|
|
12923
|
+
@property
|
|
12924
|
+
def Vport(self):
|
|
12925
|
+
"""vip端口。
|
|
12926
|
+
:rtype: int
|
|
12927
|
+
"""
|
|
12928
|
+
return self._Vport
|
|
12929
|
+
|
|
12930
|
+
@Vport.setter
|
|
12931
|
+
def Vport(self, Vport):
|
|
12932
|
+
self._Vport = Vport
|
|
12933
|
+
|
|
12878
12934
|
|
|
12879
12935
|
def _deserialize(self, params):
|
|
12880
12936
|
self._DiagType = params.get("DiagType")
|
|
@@ -12887,6 +12943,10 @@ class DiagHistoryEventItem(AbstractModel):
|
|
|
12887
12943
|
self._InstanceId = params.get("InstanceId")
|
|
12888
12944
|
self._Metric = params.get("Metric")
|
|
12889
12945
|
self._Region = params.get("Region")
|
|
12946
|
+
self._ClusterId = params.get("ClusterId")
|
|
12947
|
+
self._ClusterName = params.get("ClusterName")
|
|
12948
|
+
self._Vip = params.get("Vip")
|
|
12949
|
+
self._Vport = params.get("Vport")
|
|
12890
12950
|
memeber_set = set(params.keys())
|
|
12891
12951
|
for name, value in vars(self).items():
|
|
12892
12952
|
property_name = name[1:]
|
|
@@ -2443,6 +2443,29 @@ class DlcClient(AbstractClient):
|
|
|
2443
2443
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2444
2444
|
|
|
2445
2445
|
|
|
2446
|
+
def DescribeUserRegisterTime(self, request):
|
|
2447
|
+
"""该接口(DescribeUserRegisterTime)用于查询当前用户注册时间,并判断是否是老用户。
|
|
2448
|
+
|
|
2449
|
+
:param request: Request instance for DescribeUserRegisterTime.
|
|
2450
|
+
:type request: :class:`tencentcloud.dlc.v20210125.models.DescribeUserRegisterTimeRequest`
|
|
2451
|
+
:rtype: :class:`tencentcloud.dlc.v20210125.models.DescribeUserRegisterTimeResponse`
|
|
2452
|
+
|
|
2453
|
+
"""
|
|
2454
|
+
try:
|
|
2455
|
+
params = request._serialize()
|
|
2456
|
+
headers = request.headers
|
|
2457
|
+
body = self.call("DescribeUserRegisterTime", params, headers=headers)
|
|
2458
|
+
response = json.loads(body)
|
|
2459
|
+
model = models.DescribeUserRegisterTimeResponse()
|
|
2460
|
+
model._deserialize(response["Response"])
|
|
2461
|
+
return model
|
|
2462
|
+
except Exception as e:
|
|
2463
|
+
if isinstance(e, TencentCloudSDKException):
|
|
2464
|
+
raise
|
|
2465
|
+
else:
|
|
2466
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2467
|
+
|
|
2468
|
+
|
|
2446
2469
|
def DescribeUserRoles(self, request):
|
|
2447
2470
|
"""列举用户角色信息
|
|
2448
2471
|
|
|
@@ -21481,6 +21481,70 @@ class DescribeUserInfoResponse(AbstractModel):
|
|
|
21481
21481
|
self._RequestId = params.get("RequestId")
|
|
21482
21482
|
|
|
21483
21483
|
|
|
21484
|
+
class DescribeUserRegisterTimeRequest(AbstractModel):
|
|
21485
|
+
"""DescribeUserRegisterTime请求参数结构体
|
|
21486
|
+
|
|
21487
|
+
"""
|
|
21488
|
+
|
|
21489
|
+
|
|
21490
|
+
class DescribeUserRegisterTimeResponse(AbstractModel):
|
|
21491
|
+
"""DescribeUserRegisterTime返回参数结构体
|
|
21492
|
+
|
|
21493
|
+
"""
|
|
21494
|
+
|
|
21495
|
+
def __init__(self):
|
|
21496
|
+
r"""
|
|
21497
|
+
:param _RegisterTime: 用户注册时间
|
|
21498
|
+
:type RegisterTime: int
|
|
21499
|
+
:param _IsOldUser: 是否时老用户
|
|
21500
|
+
:type IsOldUser: bool
|
|
21501
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
21502
|
+
:type RequestId: str
|
|
21503
|
+
"""
|
|
21504
|
+
self._RegisterTime = None
|
|
21505
|
+
self._IsOldUser = None
|
|
21506
|
+
self._RequestId = None
|
|
21507
|
+
|
|
21508
|
+
@property
|
|
21509
|
+
def RegisterTime(self):
|
|
21510
|
+
"""用户注册时间
|
|
21511
|
+
:rtype: int
|
|
21512
|
+
"""
|
|
21513
|
+
return self._RegisterTime
|
|
21514
|
+
|
|
21515
|
+
@RegisterTime.setter
|
|
21516
|
+
def RegisterTime(self, RegisterTime):
|
|
21517
|
+
self._RegisterTime = RegisterTime
|
|
21518
|
+
|
|
21519
|
+
@property
|
|
21520
|
+
def IsOldUser(self):
|
|
21521
|
+
"""是否时老用户
|
|
21522
|
+
:rtype: bool
|
|
21523
|
+
"""
|
|
21524
|
+
return self._IsOldUser
|
|
21525
|
+
|
|
21526
|
+
@IsOldUser.setter
|
|
21527
|
+
def IsOldUser(self, IsOldUser):
|
|
21528
|
+
self._IsOldUser = IsOldUser
|
|
21529
|
+
|
|
21530
|
+
@property
|
|
21531
|
+
def RequestId(self):
|
|
21532
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
21533
|
+
:rtype: str
|
|
21534
|
+
"""
|
|
21535
|
+
return self._RequestId
|
|
21536
|
+
|
|
21537
|
+
@RequestId.setter
|
|
21538
|
+
def RequestId(self, RequestId):
|
|
21539
|
+
self._RequestId = RequestId
|
|
21540
|
+
|
|
21541
|
+
|
|
21542
|
+
def _deserialize(self, params):
|
|
21543
|
+
self._RegisterTime = params.get("RegisterTime")
|
|
21544
|
+
self._IsOldUser = params.get("IsOldUser")
|
|
21545
|
+
self._RequestId = params.get("RequestId")
|
|
21546
|
+
|
|
21547
|
+
|
|
21484
21548
|
class DescribeUserRolesRequest(AbstractModel):
|
|
21485
21549
|
"""DescribeUserRoles请求参数结构体
|
|
21486
21550
|
|
|
@@ -1033,11 +1033,11 @@ class CreateRuleRequest(AbstractModel):
|
|
|
1033
1033
|
:type EventPattern: str
|
|
1034
1034
|
:param _EventBusId: 事件集ID
|
|
1035
1035
|
:type EventBusId: str
|
|
1036
|
-
:param _RuleName:
|
|
1036
|
+
:param _RuleName: 事件规则名称,只能包含字母、中文、数字、下划线、连字符,以字母/中文开头,以数字、字母或中文结尾,2~60个字符
|
|
1037
1037
|
:type RuleName: str
|
|
1038
1038
|
:param _Enable: 使能开关。
|
|
1039
1039
|
:type Enable: bool
|
|
1040
|
-
:param _Description:
|
|
1040
|
+
:param _Description: 事件规则描述,只能包含数字、中英文及常用标点符号,不超过200个字符
|
|
1041
1041
|
:type Description: str
|
|
1042
1042
|
"""
|
|
1043
1043
|
self._EventPattern = None
|
|
@@ -1070,7 +1070,7 @@ class CreateRuleRequest(AbstractModel):
|
|
|
1070
1070
|
|
|
1071
1071
|
@property
|
|
1072
1072
|
def RuleName(self):
|
|
1073
|
-
"""
|
|
1073
|
+
"""事件规则名称,只能包含字母、中文、数字、下划线、连字符,以字母/中文开头,以数字、字母或中文结尾,2~60个字符
|
|
1074
1074
|
:rtype: str
|
|
1075
1075
|
"""
|
|
1076
1076
|
return self._RuleName
|
|
@@ -1092,7 +1092,7 @@ class CreateRuleRequest(AbstractModel):
|
|
|
1092
1092
|
|
|
1093
1093
|
@property
|
|
1094
1094
|
def Description(self):
|
|
1095
|
-
"""
|
|
1095
|
+
"""事件规则描述,只能包含数字、中英文及常用标点符号,不超过200个字符
|
|
1096
1096
|
:rtype: str
|
|
1097
1097
|
"""
|
|
1098
1098
|
return self._Description
|
|
@@ -3585,7 +3585,7 @@ class ListEventBusesRequest(AbstractModel):
|
|
|
3585
3585
|
|
|
3586
3586
|
def __init__(self):
|
|
3587
3587
|
r"""
|
|
3588
|
-
:param _OrderBy: 根据哪个字段进行返回结果排序,支持以下字段:
|
|
3588
|
+
:param _OrderBy: 根据哪个字段进行返回结果排序,支持以下字段:created_at(创建时间), updated_at(修改时间)
|
|
3589
3589
|
:type OrderBy: str
|
|
3590
3590
|
:param _Limit: 返回数量,默认为20,最大值为100。
|
|
3591
3591
|
:type Limit: int
|
|
@@ -3604,7 +3604,7 @@ class ListEventBusesRequest(AbstractModel):
|
|
|
3604
3604
|
|
|
3605
3605
|
@property
|
|
3606
3606
|
def OrderBy(self):
|
|
3607
|
-
"""根据哪个字段进行返回结果排序,支持以下字段:
|
|
3607
|
+
"""根据哪个字段进行返回结果排序,支持以下字段:created_at(创建时间), updated_at(修改时间)
|
|
3608
3608
|
:rtype: str
|
|
3609
3609
|
"""
|
|
3610
3610
|
return self._OrderBy
|
|
@@ -6415,7 +6415,7 @@ class UpdateRuleRequest(AbstractModel):
|
|
|
6415
6415
|
:type EventBusId: str
|
|
6416
6416
|
:param _Enable: 使能开关。
|
|
6417
6417
|
:type Enable: bool
|
|
6418
|
-
:param _Description:
|
|
6418
|
+
:param _Description: 事件规则描述,只能包含数字、中英文及常用标点符号,不超过200个字符
|
|
6419
6419
|
:type Description: str
|
|
6420
6420
|
:param _EventPattern: 参考:[事件模式](https://cloud.tencent.com/document/product/1359/56084)
|
|
6421
6421
|
:type EventPattern: str
|
|
@@ -6464,7 +6464,7 @@ class UpdateRuleRequest(AbstractModel):
|
|
|
6464
6464
|
|
|
6465
6465
|
@property
|
|
6466
6466
|
def Description(self):
|
|
6467
|
-
"""
|
|
6467
|
+
"""事件规则描述,只能包含数字、中英文及常用标点符号,不超过200个字符
|
|
6468
6468
|
:rtype: str
|
|
6469
6469
|
"""
|
|
6470
6470
|
return self._Description
|
|
@@ -21355,7 +21355,7 @@ class DescribeInformationExtractionTaskRequest(AbstractModel):
|
|
|
21355
21355
|
:param _Agent: 代理企业和员工的信息。
|
|
21356
21356
|
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
21357
21357
|
:type Agent: :class:`tencentcloud.ess.v20201111.models.Agent`
|
|
21358
|
-
:param _TaskId:
|
|
21358
|
+
:param _TaskId: 合同智能提取任务ID,该参数通过调用接口[批量创建合同智能提取任务接口](https://qian.tencent.com/developers/companyApis/%E5%90%88%E5%90%8C%E6%99%BA%E8%83%BD%E7%9B%B8%E5%85%B3%E6%8E%A5%E5%8F%A3/CreateBatchInformationExtractionTask)获取。
|
|
21359
21359
|
:type TaskId: str
|
|
21360
21360
|
"""
|
|
21361
21361
|
self._Operator = None
|
|
@@ -21388,7 +21388,7 @@ class DescribeInformationExtractionTaskRequest(AbstractModel):
|
|
|
21388
21388
|
|
|
21389
21389
|
@property
|
|
21390
21390
|
def TaskId(self):
|
|
21391
|
-
"""
|
|
21391
|
+
"""合同智能提取任务ID,该参数通过调用接口[批量创建合同智能提取任务接口](https://qian.tencent.com/developers/companyApis/%E5%90%88%E5%90%8C%E6%99%BA%E8%83%BD%E7%9B%B8%E5%85%B3%E6%8E%A5%E5%8F%A3/CreateBatchInformationExtractionTask)获取。
|
|
21392
21392
|
:rtype: str
|
|
21393
21393
|
"""
|
|
21394
21394
|
return self._TaskId
|
|
@@ -39,7 +39,7 @@ class AndroidApp(AbstractModel):
|
|
|
39
39
|
:type UserId: str
|
|
40
40
|
:param _AppMode: 应用模式(NORMAL : 普通模式;ADVANCED : 高级模式)
|
|
41
41
|
:type AppMode: str
|
|
42
|
-
:param _UpdateState: 应用更新状态,取值:UPLOADING 上传中、CREATING 创建中、CREATE_FAIL 创建失败、CREATE_SUCCESS 创建成功、NORMAL 默认状态
|
|
42
|
+
:param _UpdateState: 应用更新状态,取值:UPLOADING 上传中、CREATING 创建中、CREATE_FAIL 创建失败、CREATE_SUCCESS 创建成功、PACKAGE_NAME_MISMATCH 包名不匹配、VERSION_ALREADY_EXISTS 版本已存在、APP_PARSE_FAIL app 解析失败、APP_EXISTS_SECURITY_RISK app 存在安全风险、NORMAL 默认状态
|
|
43
43
|
:type UpdateState: str
|
|
44
44
|
:param _PackageName: 安卓应用包名
|
|
45
45
|
:type PackageName: str
|
|
@@ -133,7 +133,7 @@ class AndroidApp(AbstractModel):
|
|
|
133
133
|
|
|
134
134
|
@property
|
|
135
135
|
def UpdateState(self):
|
|
136
|
-
"""应用更新状态,取值:UPLOADING 上传中、CREATING 创建中、CREATE_FAIL 创建失败、CREATE_SUCCESS 创建成功、NORMAL 默认状态
|
|
136
|
+
"""应用更新状态,取值:UPLOADING 上传中、CREATING 创建中、CREATE_FAIL 创建失败、CREATE_SUCCESS 创建成功、PACKAGE_NAME_MISMATCH 包名不匹配、VERSION_ALREADY_EXISTS 版本已存在、APP_PARSE_FAIL app 解析失败、APP_EXISTS_SECURITY_RISK app 存在安全风险、NORMAL 默认状态
|
|
137
137
|
:rtype: str
|
|
138
138
|
"""
|
|
139
139
|
return self._UpdateState
|
|
@@ -239,9 +239,7 @@ class AndroidAppVersionInfo(AbstractModel):
|
|
|
239
239
|
r"""
|
|
240
240
|
:param _AndroidAppVersion: 安卓应用版本
|
|
241
241
|
:type AndroidAppVersion: str
|
|
242
|
-
:param _State:
|
|
243
|
-
CREATING: 创建中、
|
|
244
|
-
CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
|
|
242
|
+
:param _State: 安卓应用版本创建状态,取值:NORMAL:无(默认)、UPLOADING:上传中、CREATING: 创建中、CREATE_FAIL:创建失败、PACKAGE_NAME_MISMATCH:包名不匹配、VERSION_ALREADY_EXISTS:版本已存在、APP_PARSE_FAIL: app 解析失败、APP_EXISTS_SECURITY_RISK:app 存在安全风险、CREATE_SUCCESS:创建成功
|
|
245
243
|
:type State: str
|
|
246
244
|
:param _CreateTime: 安卓应用版本创建时间
|
|
247
245
|
:type CreateTime: str
|
|
@@ -257,6 +255,12 @@ CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
|
|
|
257
255
|
:type Activity: str
|
|
258
256
|
:param _VersionName: 应用版本号(Version Name)
|
|
259
257
|
:type VersionName: str
|
|
258
|
+
:param _MD5: 应用包 MD5
|
|
259
|
+
:type MD5: str
|
|
260
|
+
:param _FileSize: 应用包文件大小(字节)
|
|
261
|
+
:type FileSize: int
|
|
262
|
+
:param _PackageName: 安卓应用包名
|
|
263
|
+
:type PackageName: str
|
|
260
264
|
"""
|
|
261
265
|
self._AndroidAppVersion = None
|
|
262
266
|
self._State = None
|
|
@@ -267,6 +271,9 @@ CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
|
|
|
267
271
|
self._AndroidAppVersionName = None
|
|
268
272
|
self._Activity = None
|
|
269
273
|
self._VersionName = None
|
|
274
|
+
self._MD5 = None
|
|
275
|
+
self._FileSize = None
|
|
276
|
+
self._PackageName = None
|
|
270
277
|
|
|
271
278
|
@property
|
|
272
279
|
def AndroidAppVersion(self):
|
|
@@ -281,9 +288,7 @@ CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
|
|
|
281
288
|
|
|
282
289
|
@property
|
|
283
290
|
def State(self):
|
|
284
|
-
"""
|
|
285
|
-
CREATING: 创建中、
|
|
286
|
-
CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
|
|
291
|
+
"""安卓应用版本创建状态,取值:NORMAL:无(默认)、UPLOADING:上传中、CREATING: 创建中、CREATE_FAIL:创建失败、PACKAGE_NAME_MISMATCH:包名不匹配、VERSION_ALREADY_EXISTS:版本已存在、APP_PARSE_FAIL: app 解析失败、APP_EXISTS_SECURITY_RISK:app 存在安全风险、CREATE_SUCCESS:创建成功
|
|
287
292
|
:rtype: str
|
|
288
293
|
"""
|
|
289
294
|
return self._State
|
|
@@ -369,6 +374,39 @@ CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
|
|
|
369
374
|
def VersionName(self, VersionName):
|
|
370
375
|
self._VersionName = VersionName
|
|
371
376
|
|
|
377
|
+
@property
|
|
378
|
+
def MD5(self):
|
|
379
|
+
"""应用包 MD5
|
|
380
|
+
:rtype: str
|
|
381
|
+
"""
|
|
382
|
+
return self._MD5
|
|
383
|
+
|
|
384
|
+
@MD5.setter
|
|
385
|
+
def MD5(self, MD5):
|
|
386
|
+
self._MD5 = MD5
|
|
387
|
+
|
|
388
|
+
@property
|
|
389
|
+
def FileSize(self):
|
|
390
|
+
"""应用包文件大小(字节)
|
|
391
|
+
:rtype: int
|
|
392
|
+
"""
|
|
393
|
+
return self._FileSize
|
|
394
|
+
|
|
395
|
+
@FileSize.setter
|
|
396
|
+
def FileSize(self, FileSize):
|
|
397
|
+
self._FileSize = FileSize
|
|
398
|
+
|
|
399
|
+
@property
|
|
400
|
+
def PackageName(self):
|
|
401
|
+
"""安卓应用包名
|
|
402
|
+
:rtype: str
|
|
403
|
+
"""
|
|
404
|
+
return self._PackageName
|
|
405
|
+
|
|
406
|
+
@PackageName.setter
|
|
407
|
+
def PackageName(self, PackageName):
|
|
408
|
+
self._PackageName = PackageName
|
|
409
|
+
|
|
372
410
|
|
|
373
411
|
def _deserialize(self, params):
|
|
374
412
|
self._AndroidAppVersion = params.get("AndroidAppVersion")
|
|
@@ -380,6 +418,9 @@ CREATE_FAIL:创建失败、CREATE_SUCCESS:创建成功)
|
|
|
380
418
|
self._AndroidAppVersionName = params.get("AndroidAppVersionName")
|
|
381
419
|
self._Activity = params.get("Activity")
|
|
382
420
|
self._VersionName = params.get("VersionName")
|
|
421
|
+
self._MD5 = params.get("MD5")
|
|
422
|
+
self._FileSize = params.get("FileSize")
|
|
423
|
+
self._PackageName = params.get("PackageName")
|
|
383
424
|
memeber_set = set(params.keys())
|
|
384
425
|
for name, value in vars(self).items():
|
|
385
426
|
property_name = name[1:]
|
|
@@ -759,7 +759,6 @@ class IaiClient(AbstractClient):
|
|
|
759
759
|
>
|
|
760
760
|
- 公共参数中的签名方式请使用V3版本,即配置SignatureMethod参数为TC3-HMAC-SHA256。
|
|
761
761
|
|
|
762
|
-
|
|
763
762
|
:param request: Request instance for SearchFacesReturnsByGroup.
|
|
764
763
|
:type request: :class:`tencentcloud.iai.v20180301.models.SearchFacesReturnsByGroupRequest`
|
|
765
764
|
:rtype: :class:`tencentcloud.iai.v20180301.models.SearchFacesReturnsByGroupResponse`
|