tencentcloud-sdk-python 3.0.1326__py2.py3-none-any.whl → 3.0.1328__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/batch/v20170312/models.py +0 -56
- tencentcloud/captcha/v20190722/models.py +0 -48
- tencentcloud/ccc/v20200210/ccc_client.py +5 -1
- tencentcloud/ccc/v20200210/models.py +4 -4
- tencentcloud/cdwch/v20200915/models.py +83 -0
- tencentcloud/clb/v20180317/clb_client.py +115 -0
- tencentcloud/clb/v20180317/models.py +537 -0
- tencentcloud/cvm/v20170312/models.py +0 -56
- tencentcloud/cwp/v20180228/models.py +4 -40
- tencentcloud/dts/v20211206/models.py +2 -2
- tencentcloud/faceid/v20180301/models.py +26 -12
- tencentcloud/hunyuan/v20230901/models.py +2 -10
- tencentcloud/lke/v20231130/models.py +115 -6
- tencentcloud/lkeap/v20240522/lkeap_client.py +9 -9
- tencentcloud/lkeap/v20240522/models.py +12 -2
- tencentcloud/lowcode/v20210108/errorcodes.py +3 -0
- tencentcloud/lowcode/v20210108/lowcode_client.py +207 -0
- tencentcloud/lowcode/v20210108/models.py +2996 -124
- tencentcloud/monitor/v20180724/models.py +333 -0
- tencentcloud/monitor/v20180724/monitor_client.py +23 -0
- tencentcloud/rce/v20201103/models.py +0 -84
- tencentcloud/redis/v20180412/models.py +0 -110
- tencentcloud/tcr/v20190924/models.py +0 -14
- tencentcloud/tdid/v20210519/models.py +130 -22
- tencentcloud/tdid/v20210519/tdid_client.py +4 -1
- tencentcloud/tsf/v20180326/models.py +0 -88
- tencentcloud/waf/v20180125/models.py +2 -2
- {tencentcloud_sdk_python-3.0.1326.dist-info → tencentcloud_sdk_python-3.0.1328.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1326.dist-info → tencentcloud_sdk_python-3.0.1328.dist-info}/RECORD +33 -33
- {tencentcloud_sdk_python-3.0.1326.dist-info → tencentcloud_sdk_python-3.0.1328.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1326.dist-info → tencentcloud_sdk_python-3.0.1328.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1326.dist-info → tencentcloud_sdk_python-3.0.1328.dist-info}/top_level.txt +0 -0
@@ -3177,13 +3177,10 @@ class OutputDescribeDataListFrontData(AbstractModel):
|
|
3177
3177
|
def __init__(self):
|
3178
3178
|
r"""
|
3179
3179
|
:param _Code: 错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误
|
3180
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3181
3180
|
:type Code: int
|
3182
3181
|
:param _Message: 错误信息
|
3183
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3184
3182
|
:type Message: str
|
3185
3183
|
:param _Value: 黑白名单数据信息
|
3186
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3187
3184
|
:type Value: :class:`tencentcloud.rce.v20201103.models.OuntputDescribeDataListInfo`
|
3188
3185
|
"""
|
3189
3186
|
self._Code = None
|
@@ -3193,7 +3190,6 @@ class OutputDescribeDataListFrontData(AbstractModel):
|
|
3193
3190
|
@property
|
3194
3191
|
def Code(self):
|
3195
3192
|
"""错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误
|
3196
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3197
3193
|
:rtype: int
|
3198
3194
|
"""
|
3199
3195
|
return self._Code
|
@@ -3205,7 +3201,6 @@ class OutputDescribeDataListFrontData(AbstractModel):
|
|
3205
3201
|
@property
|
3206
3202
|
def Message(self):
|
3207
3203
|
"""错误信息
|
3208
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3209
3204
|
:rtype: str
|
3210
3205
|
"""
|
3211
3206
|
return self._Message
|
@@ -3217,7 +3212,6 @@ class OutputDescribeDataListFrontData(AbstractModel):
|
|
3217
3212
|
@property
|
3218
3213
|
def Value(self):
|
3219
3214
|
"""黑白名单数据信息
|
3220
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3221
3215
|
:rtype: :class:`tencentcloud.rce.v20201103.models.OuntputDescribeDataListInfo`
|
3222
3216
|
"""
|
3223
3217
|
return self._Value
|
@@ -3251,34 +3245,24 @@ class OutputDescribeNameListDetail(AbstractModel):
|
|
3251
3245
|
def __init__(self):
|
3252
3246
|
r"""
|
3253
3247
|
:param _NameListId: 名单ID
|
3254
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3255
3248
|
:type NameListId: int
|
3256
3249
|
:param _ListName: 名单名称
|
3257
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3258
3250
|
:type ListName: str
|
3259
3251
|
:param _ListType: 名单类型 [1 黑名单 2 白名单]
|
3260
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3261
3252
|
:type ListType: int
|
3262
3253
|
:param _DataType: 数据类型[1 手机号 2 qqOpenId 3 2echatOpenId 4 ip 6 idfa 7 imei]
|
3263
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3264
3254
|
:type DataType: int
|
3265
3255
|
:param _SceneCode: 场景Code
|
3266
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3267
3256
|
:type SceneCode: str
|
3268
3257
|
:param _Status: 名单列表状态 [1 启用 2 停用]
|
3269
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3270
3258
|
:type Status: int
|
3271
3259
|
:param _Remark: 描述
|
3272
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3273
3260
|
:type Remark: str
|
3274
3261
|
:param _CreateTime: 创建时间
|
3275
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3276
3262
|
:type CreateTime: str
|
3277
3263
|
:param _UpdateTime: 更新时间
|
3278
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3279
3264
|
:type UpdateTime: str
|
3280
3265
|
:param _EncryptionType: 加密类型 [0 无需加密,1 MD5加密,2 SHA256加密]
|
3281
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3282
3266
|
:type EncryptionType: int
|
3283
3267
|
"""
|
3284
3268
|
self._NameListId = None
|
@@ -3295,7 +3279,6 @@ class OutputDescribeNameListDetail(AbstractModel):
|
|
3295
3279
|
@property
|
3296
3280
|
def NameListId(self):
|
3297
3281
|
"""名单ID
|
3298
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3299
3282
|
:rtype: int
|
3300
3283
|
"""
|
3301
3284
|
return self._NameListId
|
@@ -3307,7 +3290,6 @@ class OutputDescribeNameListDetail(AbstractModel):
|
|
3307
3290
|
@property
|
3308
3291
|
def ListName(self):
|
3309
3292
|
"""名单名称
|
3310
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3311
3293
|
:rtype: str
|
3312
3294
|
"""
|
3313
3295
|
return self._ListName
|
@@ -3319,7 +3301,6 @@ class OutputDescribeNameListDetail(AbstractModel):
|
|
3319
3301
|
@property
|
3320
3302
|
def ListType(self):
|
3321
3303
|
"""名单类型 [1 黑名单 2 白名单]
|
3322
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3323
3304
|
:rtype: int
|
3324
3305
|
"""
|
3325
3306
|
return self._ListType
|
@@ -3331,7 +3312,6 @@ class OutputDescribeNameListDetail(AbstractModel):
|
|
3331
3312
|
@property
|
3332
3313
|
def DataType(self):
|
3333
3314
|
"""数据类型[1 手机号 2 qqOpenId 3 2echatOpenId 4 ip 6 idfa 7 imei]
|
3334
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3335
3315
|
:rtype: int
|
3336
3316
|
"""
|
3337
3317
|
return self._DataType
|
@@ -3343,7 +3323,6 @@ class OutputDescribeNameListDetail(AbstractModel):
|
|
3343
3323
|
@property
|
3344
3324
|
def SceneCode(self):
|
3345
3325
|
"""场景Code
|
3346
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3347
3326
|
:rtype: str
|
3348
3327
|
"""
|
3349
3328
|
return self._SceneCode
|
@@ -3355,7 +3334,6 @@ class OutputDescribeNameListDetail(AbstractModel):
|
|
3355
3334
|
@property
|
3356
3335
|
def Status(self):
|
3357
3336
|
"""名单列表状态 [1 启用 2 停用]
|
3358
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3359
3337
|
:rtype: int
|
3360
3338
|
"""
|
3361
3339
|
return self._Status
|
@@ -3367,7 +3345,6 @@ class OutputDescribeNameListDetail(AbstractModel):
|
|
3367
3345
|
@property
|
3368
3346
|
def Remark(self):
|
3369
3347
|
"""描述
|
3370
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3371
3348
|
:rtype: str
|
3372
3349
|
"""
|
3373
3350
|
return self._Remark
|
@@ -3379,7 +3356,6 @@ class OutputDescribeNameListDetail(AbstractModel):
|
|
3379
3356
|
@property
|
3380
3357
|
def CreateTime(self):
|
3381
3358
|
"""创建时间
|
3382
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3383
3359
|
:rtype: str
|
3384
3360
|
"""
|
3385
3361
|
return self._CreateTime
|
@@ -3391,7 +3367,6 @@ class OutputDescribeNameListDetail(AbstractModel):
|
|
3391
3367
|
@property
|
3392
3368
|
def UpdateTime(self):
|
3393
3369
|
"""更新时间
|
3394
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3395
3370
|
:rtype: str
|
3396
3371
|
"""
|
3397
3372
|
return self._UpdateTime
|
@@ -3403,7 +3378,6 @@ class OutputDescribeNameListDetail(AbstractModel):
|
|
3403
3378
|
@property
|
3404
3379
|
def EncryptionType(self):
|
3405
3380
|
"""加密类型 [0 无需加密,1 MD5加密,2 SHA256加密]
|
3406
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3407
3381
|
:rtype: int
|
3408
3382
|
"""
|
3409
3383
|
return self._EncryptionType
|
@@ -3442,10 +3416,8 @@ class OutputDescribeNameListDetailFront(AbstractModel):
|
|
3442
3416
|
def __init__(self):
|
3443
3417
|
r"""
|
3444
3418
|
:param _Code: 错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误
|
3445
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3446
3419
|
:type Code: int
|
3447
3420
|
:param _Message: 错误信息
|
3448
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3449
3421
|
:type Message: str
|
3450
3422
|
:param _Value: 列表详情信息
|
3451
3423
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -3458,7 +3430,6 @@ class OutputDescribeNameListDetailFront(AbstractModel):
|
|
3458
3430
|
@property
|
3459
3431
|
def Code(self):
|
3460
3432
|
"""错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误
|
3461
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3462
3433
|
:rtype: int
|
3463
3434
|
"""
|
3464
3435
|
return self._Code
|
@@ -3470,7 +3441,6 @@ class OutputDescribeNameListDetailFront(AbstractModel):
|
|
3470
3441
|
@property
|
3471
3442
|
def Message(self):
|
3472
3443
|
"""错误信息
|
3473
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3474
3444
|
:rtype: str
|
3475
3445
|
"""
|
3476
3446
|
return self._Message
|
@@ -3518,17 +3488,14 @@ class OutputDescribeNameListFrontFix(AbstractModel):
|
|
3518
3488
|
:param _NameListId: 名单ID
|
3519
3489
|
:type NameListId: int
|
3520
3490
|
:param _ListName: 名单名称
|
3521
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3522
3491
|
:type ListName: str
|
3523
3492
|
:param _ListType: 名单类型 [1 黑名单 2 白名单]
|
3524
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3525
3493
|
:type ListType: int
|
3526
3494
|
:param _DataType: 数据类型[1 手机号 2 qqOpenId 3 2echatOpenId 4 ip 6 idfa 7 imei]
|
3527
3495
|
:type DataType: int
|
3528
3496
|
:param _Status: 记录状态 [1 启用 2 停用]
|
3529
3497
|
:type Status: int
|
3530
3498
|
:param _Remark: 描述
|
3531
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3532
3499
|
:type Remark: str
|
3533
3500
|
:param _CreateTime: 创建时间
|
3534
3501
|
:type CreateTime: str
|
@@ -3537,10 +3504,8 @@ class OutputDescribeNameListFrontFix(AbstractModel):
|
|
3537
3504
|
:param _EffectCount: 有效数据/数据总数
|
3538
3505
|
:type EffectCount: str
|
3539
3506
|
:param _EncryptionType: 加密类型[0 无需加密 1 MD5加密 2 SHA256加密]
|
3540
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3541
3507
|
:type EncryptionType: int
|
3542
3508
|
:param _SceneCode: 场景Code,all_scene代表全部场景
|
3543
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3544
3509
|
:type SceneCode: str
|
3545
3510
|
"""
|
3546
3511
|
self._NameListId = None
|
@@ -3569,7 +3534,6 @@ class OutputDescribeNameListFrontFix(AbstractModel):
|
|
3569
3534
|
@property
|
3570
3535
|
def ListName(self):
|
3571
3536
|
"""名单名称
|
3572
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3573
3537
|
:rtype: str
|
3574
3538
|
"""
|
3575
3539
|
return self._ListName
|
@@ -3581,7 +3545,6 @@ class OutputDescribeNameListFrontFix(AbstractModel):
|
|
3581
3545
|
@property
|
3582
3546
|
def ListType(self):
|
3583
3547
|
"""名单类型 [1 黑名单 2 白名单]
|
3584
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3585
3548
|
:rtype: int
|
3586
3549
|
"""
|
3587
3550
|
return self._ListType
|
@@ -3615,7 +3578,6 @@ class OutputDescribeNameListFrontFix(AbstractModel):
|
|
3615
3578
|
@property
|
3616
3579
|
def Remark(self):
|
3617
3580
|
"""描述
|
3618
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3619
3581
|
:rtype: str
|
3620
3582
|
"""
|
3621
3583
|
return self._Remark
|
@@ -3660,7 +3622,6 @@ class OutputDescribeNameListFrontFix(AbstractModel):
|
|
3660
3622
|
@property
|
3661
3623
|
def EncryptionType(self):
|
3662
3624
|
"""加密类型[0 无需加密 1 MD5加密 2 SHA256加密]
|
3663
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3664
3625
|
:rtype: int
|
3665
3626
|
"""
|
3666
3627
|
return self._EncryptionType
|
@@ -3672,7 +3633,6 @@ class OutputDescribeNameListFrontFix(AbstractModel):
|
|
3672
3633
|
@property
|
3673
3634
|
def SceneCode(self):
|
3674
3635
|
"""场景Code,all_scene代表全部场景
|
3675
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3676
3636
|
:rtype: str
|
3677
3637
|
"""
|
3678
3638
|
return self._SceneCode
|
@@ -3713,13 +3673,10 @@ class OutputDescribeNameListFrontFixListData(AbstractModel):
|
|
3713
3673
|
r"""
|
3714
3674
|
:param _Code: 错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误
|
3715
3675
|
|
3716
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3717
3676
|
:type Code: int
|
3718
3677
|
:param _Message: 错误信息
|
3719
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3720
3678
|
:type Message: str
|
3721
3679
|
:param _Value: 黑白名单列表信息
|
3722
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3723
3680
|
:type Value: :class:`tencentcloud.rce.v20201103.models.OutputDescribeNameListInfo`
|
3724
3681
|
"""
|
3725
3682
|
self._Code = None
|
@@ -3730,7 +3687,6 @@ class OutputDescribeNameListFrontFixListData(AbstractModel):
|
|
3730
3687
|
def Code(self):
|
3731
3688
|
"""错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误
|
3732
3689
|
|
3733
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3734
3690
|
:rtype: int
|
3735
3691
|
"""
|
3736
3692
|
return self._Code
|
@@ -3742,7 +3698,6 @@ class OutputDescribeNameListFrontFixListData(AbstractModel):
|
|
3742
3698
|
@property
|
3743
3699
|
def Message(self):
|
3744
3700
|
"""错误信息
|
3745
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3746
3701
|
:rtype: str
|
3747
3702
|
"""
|
3748
3703
|
return self._Message
|
@@ -3754,7 +3709,6 @@ class OutputDescribeNameListFrontFixListData(AbstractModel):
|
|
3754
3709
|
@property
|
3755
3710
|
def Value(self):
|
3756
3711
|
"""黑白名单列表信息
|
3757
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3758
3712
|
:rtype: :class:`tencentcloud.rce.v20201103.models.OutputDescribeNameListInfo`
|
3759
3713
|
"""
|
3760
3714
|
return self._Value
|
@@ -3788,7 +3742,6 @@ class OutputDescribeNameListInfo(AbstractModel):
|
|
3788
3742
|
def __init__(self):
|
3789
3743
|
r"""
|
3790
3744
|
:param _Count: 总数
|
3791
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3792
3745
|
:type Count: int
|
3793
3746
|
:param _List: 列表
|
3794
3747
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -3800,7 +3753,6 @@ class OutputDescribeNameListInfo(AbstractModel):
|
|
3800
3753
|
@property
|
3801
3754
|
def Count(self):
|
3802
3755
|
"""总数
|
3803
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3804
3756
|
:rtype: int
|
3805
3757
|
"""
|
3806
3758
|
return self._Count
|
@@ -3848,25 +3800,18 @@ class OutputDescribeUserUsageCnt(AbstractModel):
|
|
3848
3800
|
def __init__(self):
|
3849
3801
|
r"""
|
3850
3802
|
:param _PayMode: 当前付费模式,0 后付费 1 预付费
|
3851
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3852
3803
|
:type PayMode: int
|
3853
3804
|
:param _AfterPayModeThisMonthUsedCnt: 后付费本月使用量
|
3854
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3855
3805
|
:type AfterPayModeThisMonthUsedCnt: int
|
3856
3806
|
:param _CreateTime: 创建时间
|
3857
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3858
3807
|
:type CreateTime: str
|
3859
3808
|
:param _ExpireTime: 超出时间
|
3860
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3861
3809
|
:type ExpireTime: str
|
3862
3810
|
:param _AfterPayModeLastMonthUsedCnt: 后付费上月使用量
|
3863
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3864
3811
|
:type AfterPayModeLastMonthUsedCnt: int
|
3865
3812
|
:param _BeforePayModeTotalUsedCnt: 预付费总量
|
3866
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3867
3813
|
:type BeforePayModeTotalUsedCnt: int
|
3868
3814
|
:param _BeforePayModeRemainUsedCnt: 预付费剩余用量
|
3869
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3870
3815
|
:type BeforePayModeRemainUsedCnt: int
|
3871
3816
|
"""
|
3872
3817
|
self._PayMode = None
|
@@ -3880,7 +3825,6 @@ class OutputDescribeUserUsageCnt(AbstractModel):
|
|
3880
3825
|
@property
|
3881
3826
|
def PayMode(self):
|
3882
3827
|
"""当前付费模式,0 后付费 1 预付费
|
3883
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3884
3828
|
:rtype: int
|
3885
3829
|
"""
|
3886
3830
|
return self._PayMode
|
@@ -3892,7 +3836,6 @@ class OutputDescribeUserUsageCnt(AbstractModel):
|
|
3892
3836
|
@property
|
3893
3837
|
def AfterPayModeThisMonthUsedCnt(self):
|
3894
3838
|
"""后付费本月使用量
|
3895
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3896
3839
|
:rtype: int
|
3897
3840
|
"""
|
3898
3841
|
return self._AfterPayModeThisMonthUsedCnt
|
@@ -3904,7 +3847,6 @@ class OutputDescribeUserUsageCnt(AbstractModel):
|
|
3904
3847
|
@property
|
3905
3848
|
def CreateTime(self):
|
3906
3849
|
"""创建时间
|
3907
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3908
3850
|
:rtype: str
|
3909
3851
|
"""
|
3910
3852
|
return self._CreateTime
|
@@ -3916,7 +3858,6 @@ class OutputDescribeUserUsageCnt(AbstractModel):
|
|
3916
3858
|
@property
|
3917
3859
|
def ExpireTime(self):
|
3918
3860
|
"""超出时间
|
3919
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3920
3861
|
:rtype: str
|
3921
3862
|
"""
|
3922
3863
|
return self._ExpireTime
|
@@ -3928,7 +3869,6 @@ class OutputDescribeUserUsageCnt(AbstractModel):
|
|
3928
3869
|
@property
|
3929
3870
|
def AfterPayModeLastMonthUsedCnt(self):
|
3930
3871
|
"""后付费上月使用量
|
3931
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3932
3872
|
:rtype: int
|
3933
3873
|
"""
|
3934
3874
|
return self._AfterPayModeLastMonthUsedCnt
|
@@ -3940,7 +3880,6 @@ class OutputDescribeUserUsageCnt(AbstractModel):
|
|
3940
3880
|
@property
|
3941
3881
|
def BeforePayModeTotalUsedCnt(self):
|
3942
3882
|
"""预付费总量
|
3943
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3944
3883
|
:rtype: int
|
3945
3884
|
"""
|
3946
3885
|
return self._BeforePayModeTotalUsedCnt
|
@@ -3952,7 +3891,6 @@ class OutputDescribeUserUsageCnt(AbstractModel):
|
|
3952
3891
|
@property
|
3953
3892
|
def BeforePayModeRemainUsedCnt(self):
|
3954
3893
|
"""预付费剩余用量
|
3955
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3956
3894
|
:rtype: int
|
3957
3895
|
"""
|
3958
3896
|
return self._BeforePayModeRemainUsedCnt
|
@@ -4131,16 +4069,13 @@ class OutputManageMarketingRisk(AbstractModel):
|
|
4131
4069
|
1002:参数错误
|
4132
4070
|
4300:未开通服务
|
4133
4071
|
4301:后端未创建对应产品
|
4134
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4135
4072
|
:type Code: int
|
4136
4073
|
:param _Message: UTF-8编码,出错消息。
|
4137
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4138
4074
|
:type Message: str
|
4139
4075
|
:param _Value: 业务详情。
|
4140
4076
|
注意:此字段可能返回 null,表示取不到有效值。
|
4141
4077
|
:type Value: :class:`tencentcloud.rce.v20201103.models.OutputManageMarketingRiskValue`
|
4142
4078
|
:param _UUid: 控制台显示的req_id。
|
4143
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4144
4079
|
:type UUid: str
|
4145
4080
|
"""
|
4146
4081
|
self._Code = None
|
@@ -4156,7 +4091,6 @@ class OutputManageMarketingRisk(AbstractModel):
|
|
4156
4091
|
1002:参数错误
|
4157
4092
|
4300:未开通服务
|
4158
4093
|
4301:后端未创建对应产品
|
4159
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4160
4094
|
:rtype: int
|
4161
4095
|
"""
|
4162
4096
|
return self._Code
|
@@ -4168,7 +4102,6 @@ class OutputManageMarketingRisk(AbstractModel):
|
|
4168
4102
|
@property
|
4169
4103
|
def Message(self):
|
4170
4104
|
"""UTF-8编码,出错消息。
|
4171
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4172
4105
|
:rtype: str
|
4173
4106
|
"""
|
4174
4107
|
return self._Message
|
@@ -4192,7 +4125,6 @@ class OutputManageMarketingRisk(AbstractModel):
|
|
4192
4125
|
@property
|
4193
4126
|
def UUid(self):
|
4194
4127
|
"""控制台显示的req_id。
|
4195
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4196
4128
|
:rtype: str
|
4197
4129
|
"""
|
4198
4130
|
return self._UUid
|
@@ -4231,22 +4163,17 @@ class OutputManageMarketingRiskValue(AbstractModel):
|
|
4231
4163
|
当AccountType为2时,对应微信的OpenId/UnionId;
|
4232
4164
|
当AccountType为10004时,对应手机号的MD5值;
|
4233
4165
|
当AccountType为10005时,对应手机号的SHA256值。
|
4234
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4235
4166
|
:type UserId: str
|
4236
4167
|
:param _PostTime: 操作时间戳,单位秒(对应输入参数)。
|
4237
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4238
4168
|
:type PostTime: int
|
4239
4169
|
:param _AssociateAccount: 业务参数。
|
4240
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4241
4170
|
:type AssociateAccount: str
|
4242
4171
|
:param _UserIp: 操作来源的外网IP(对应输入参数)。
|
4243
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4244
4172
|
:type UserIp: str
|
4245
4173
|
:param _RiskLevel: 风险等级
|
4246
4174
|
pass:无恶意
|
4247
4175
|
review:低风险,需要人工审核
|
4248
4176
|
reject:高风险,建议拦截
|
4249
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4250
4177
|
:type RiskLevel: str
|
4251
4178
|
:param _RiskType: 风险类型,可能同时命中多个风险类型
|
4252
4179
|
1: 账号信用低,账号近期存在因恶意被处罚历史,网络低活跃,被举报等因素。
|
@@ -4267,13 +4194,10 @@ reject:高风险,建议拦截
|
|
4267
4194
|
2011: 疑似非常用IP,请求当前请求 IP 非该账号常用 IP。
|
4268
4195
|
2012: 疑似 IP 异常,使用 IDC 机房 IP 或使用代理 IP 或使用恶意 IP 等。
|
4269
4196
|
205: 非公网有效 IP,传进来的 IP 地址为内网 IP 地址或者 IP 保留地址。
|
4270
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4271
4197
|
:type RiskType: list of int
|
4272
4198
|
:param _ConstId: 设备指纹ID,如果集成了设备指纹,并传入了正确的DeviceToken和Platform,该字段正常输出;如果DeviceToken异常(校验不通过),则会在RiskType中返回"-1"标签,ConstId字段为空;如果没有集成设备指纹ConstId字段默认为空。
|
4273
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4274
4199
|
:type ConstId: str
|
4275
4200
|
:param _RiskInformation: 风险扩展数据。
|
4276
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4277
4201
|
:type RiskInformation: str
|
4278
4202
|
"""
|
4279
4203
|
self._UserId = None
|
@@ -4292,7 +4216,6 @@ reject:高风险,建议拦截
|
|
4292
4216
|
当AccountType为2时,对应微信的OpenId/UnionId;
|
4293
4217
|
当AccountType为10004时,对应手机号的MD5值;
|
4294
4218
|
当AccountType为10005时,对应手机号的SHA256值。
|
4295
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4296
4219
|
:rtype: str
|
4297
4220
|
"""
|
4298
4221
|
return self._UserId
|
@@ -4304,7 +4227,6 @@ reject:高风险,建议拦截
|
|
4304
4227
|
@property
|
4305
4228
|
def PostTime(self):
|
4306
4229
|
"""操作时间戳,单位秒(对应输入参数)。
|
4307
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4308
4230
|
:rtype: int
|
4309
4231
|
"""
|
4310
4232
|
return self._PostTime
|
@@ -4316,7 +4238,6 @@ reject:高风险,建议拦截
|
|
4316
4238
|
@property
|
4317
4239
|
def AssociateAccount(self):
|
4318
4240
|
"""业务参数。
|
4319
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4320
4241
|
:rtype: str
|
4321
4242
|
"""
|
4322
4243
|
return self._AssociateAccount
|
@@ -4328,7 +4249,6 @@ reject:高风险,建议拦截
|
|
4328
4249
|
@property
|
4329
4250
|
def UserIp(self):
|
4330
4251
|
"""操作来源的外网IP(对应输入参数)。
|
4331
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4332
4252
|
:rtype: str
|
4333
4253
|
"""
|
4334
4254
|
return self._UserIp
|
@@ -4343,7 +4263,6 @@ reject:高风险,建议拦截
|
|
4343
4263
|
pass:无恶意
|
4344
4264
|
review:低风险,需要人工审核
|
4345
4265
|
reject:高风险,建议拦截
|
4346
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4347
4266
|
:rtype: str
|
4348
4267
|
"""
|
4349
4268
|
return self._RiskLevel
|
@@ -4373,7 +4292,6 @@ reject:高风险,建议拦截
|
|
4373
4292
|
2011: 疑似非常用IP,请求当前请求 IP 非该账号常用 IP。
|
4374
4293
|
2012: 疑似 IP 异常,使用 IDC 机房 IP 或使用代理 IP 或使用恶意 IP 等。
|
4375
4294
|
205: 非公网有效 IP,传进来的 IP 地址为内网 IP 地址或者 IP 保留地址。
|
4376
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4377
4295
|
:rtype: list of int
|
4378
4296
|
"""
|
4379
4297
|
return self._RiskType
|
@@ -4385,7 +4303,6 @@ reject:高风险,建议拦截
|
|
4385
4303
|
@property
|
4386
4304
|
def ConstId(self):
|
4387
4305
|
"""设备指纹ID,如果集成了设备指纹,并传入了正确的DeviceToken和Platform,该字段正常输出;如果DeviceToken异常(校验不通过),则会在RiskType中返回"-1"标签,ConstId字段为空;如果没有集成设备指纹ConstId字段默认为空。
|
4388
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4389
4306
|
:rtype: str
|
4390
4307
|
"""
|
4391
4308
|
return self._ConstId
|
@@ -4397,7 +4314,6 @@ reject:高风险,建议拦截
|
|
4397
4314
|
@property
|
4398
4315
|
def RiskInformation(self):
|
4399
4316
|
"""风险扩展数据。
|
4400
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4401
4317
|
:rtype: str
|
4402
4318
|
"""
|
4403
4319
|
return self._RiskInformation
|