tencentcloud-sdk-python 3.0.1397__py2.py3-none-any.whl → 3.0.1399__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tencentcloud/__init__.py +1 -1
- tencentcloud/autoscaling/v20180419/errorcodes.py +3 -0
- tencentcloud/autoscaling/v20180419/models.py +4 -4
- tencentcloud/btoe/v20210514/btoe_client.py +39 -13
- tencentcloud/ccc/v20200210/ccc_client.py +23 -0
- tencentcloud/ccc/v20200210/models.py +136 -4
- tencentcloud/cdn/v20180606/models.py +2 -2
- tencentcloud/ckafka/v20190819/models.py +15 -0
- tencentcloud/clb/v20180317/models.py +30 -0
- tencentcloud/dbbrain/v20210527/errorcodes.py +9 -0
- tencentcloud/dnspod/v20210323/dnspod_client.py +46 -0
- tencentcloud/dnspod/v20210323/errorcodes.py +15 -0
- tencentcloud/dnspod/v20210323/models.py +874 -18
- tencentcloud/ess/v20201111/models.py +23 -2
- tencentcloud/essbasic/v20210526/models.py +29 -6
- tencentcloud/faceid/v20180301/models.py +108 -6
- tencentcloud/gs/v20191118/models.py +4 -0
- tencentcloud/hai/v20230812/errorcodes.py +6 -0
- tencentcloud/hai/v20230812/hai_client.py +23 -0
- tencentcloud/hai/v20230812/models.py +79 -0
- tencentcloud/ioa/v20220601/ioa_client.py +23 -0
- tencentcloud/ioa/v20220601/models.py +301 -2
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +4 -4
- tencentcloud/lke/v20231130/lke_client.py +161 -0
- tencentcloud/lke/v20231130/models.py +1181 -67
- tencentcloud/lowcode/v20210108/models.py +64 -0
- tencentcloud/mps/v20190612/models.py +21 -0
- tencentcloud/ocr/v20181119/models.py +1096 -0
- tencentcloud/ocr/v20181119/ocr_client.py +106 -2
- tencentcloud/postgres/v20170312/models.py +2 -2
- tencentcloud/sms/v20190711/models.py +12 -28
- tencentcloud/sms/v20210111/models.py +12 -28
- tencentcloud/tat/v20201028/errorcodes.py +3 -0
- tencentcloud/tcss/v20201101/errorcodes.py +3 -0
- tencentcloud/tcss/v20201101/models.py +153 -0
- tencentcloud/tcss/v20201101/tcss_client.py +23 -0
- tencentcloud/teo/v20220901/models.py +2 -2
- tencentcloud/tke/v20180525/models.py +75 -0
- tencentcloud/trtc/v20190722/models.py +10 -6
- tencentcloud/vod/v20180717/errorcodes.py +3 -0
- tencentcloud/vod/v20180717/models.py +30 -22
- tencentcloud/wedata/v20210820/models.py +8919 -2673
- tencentcloud/wedata/v20210820/wedata_client.py +141 -3
- {tencentcloud_sdk_python-3.0.1397.dist-info → tencentcloud_sdk_python-3.0.1399.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1397.dist-info → tencentcloud_sdk_python-3.0.1399.dist-info}/RECORD +48 -48
- {tencentcloud_sdk_python-3.0.1397.dist-info → tencentcloud_sdk_python-3.0.1399.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1397.dist-info → tencentcloud_sdk_python-3.0.1399.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1397.dist-info → tencentcloud_sdk_python-3.0.1399.dist-info}/top_level.txt +0 -0
@@ -3553,7 +3553,7 @@ class CreateSubdomainValidateTXTValueResponse(AbstractModel):
|
|
3553
3553
|
|
3554
3554
|
def __init__(self):
|
3555
3555
|
r"""
|
3556
|
-
:param _Domain: 需要添加 TXT
|
3556
|
+
:param _Domain: 需要添加 TXT 记录的主域名。
|
3557
3557
|
:type Domain: str
|
3558
3558
|
:param _Subdomain: 需要添加 TXT 记录的主机记录。
|
3559
3559
|
:type Subdomain: str
|
@@ -3561,6 +3561,8 @@ class CreateSubdomainValidateTXTValueResponse(AbstractModel):
|
|
3561
3561
|
:type RecordType: str
|
3562
3562
|
:param _Value: 需要添加 TXT 记录的记录值。
|
3563
3563
|
:type Value: str
|
3564
|
+
:param _ParentDomain: 需要添加 TXT 记录的上级域名(可选,主域名和上级域名任选一个添加即可)。
|
3565
|
+
:type ParentDomain: str
|
3564
3566
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3565
3567
|
:type RequestId: str
|
3566
3568
|
"""
|
@@ -3568,11 +3570,12 @@ class CreateSubdomainValidateTXTValueResponse(AbstractModel):
|
|
3568
3570
|
self._Subdomain = None
|
3569
3571
|
self._RecordType = None
|
3570
3572
|
self._Value = None
|
3573
|
+
self._ParentDomain = None
|
3571
3574
|
self._RequestId = None
|
3572
3575
|
|
3573
3576
|
@property
|
3574
3577
|
def Domain(self):
|
3575
|
-
"""需要添加 TXT
|
3578
|
+
"""需要添加 TXT 记录的主域名。
|
3576
3579
|
:rtype: str
|
3577
3580
|
"""
|
3578
3581
|
return self._Domain
|
@@ -3614,6 +3617,17 @@ class CreateSubdomainValidateTXTValueResponse(AbstractModel):
|
|
3614
3617
|
def Value(self, Value):
|
3615
3618
|
self._Value = Value
|
3616
3619
|
|
3620
|
+
@property
|
3621
|
+
def ParentDomain(self):
|
3622
|
+
"""需要添加 TXT 记录的上级域名(可选,主域名和上级域名任选一个添加即可)。
|
3623
|
+
:rtype: str
|
3624
|
+
"""
|
3625
|
+
return self._ParentDomain
|
3626
|
+
|
3627
|
+
@ParentDomain.setter
|
3628
|
+
def ParentDomain(self, ParentDomain):
|
3629
|
+
self._ParentDomain = ParentDomain
|
3630
|
+
|
3617
3631
|
@property
|
3618
3632
|
def RequestId(self):
|
3619
3633
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -3631,6 +3645,7 @@ class CreateSubdomainValidateTXTValueResponse(AbstractModel):
|
|
3631
3645
|
self._Subdomain = params.get("Subdomain")
|
3632
3646
|
self._RecordType = params.get("RecordType")
|
3633
3647
|
self._Value = params.get("Value")
|
3648
|
+
self._ParentDomain = params.get("ParentDomain")
|
3634
3649
|
self._RequestId = params.get("RequestId")
|
3635
3650
|
|
3636
3651
|
|
@@ -7323,6 +7338,180 @@ class DescribeDomainShareUserListResponse(AbstractModel):
|
|
7323
7338
|
self._RequestId = params.get("RequestId")
|
7324
7339
|
|
7325
7340
|
|
7341
|
+
class DescribeDomainVipListRequest(AbstractModel):
|
7342
|
+
"""DescribeDomainVipList请求参数结构体
|
7343
|
+
|
7344
|
+
"""
|
7345
|
+
|
7346
|
+
def __init__(self):
|
7347
|
+
r"""
|
7348
|
+
:param _Offset: 偏移量,默认值为0。
|
7349
|
+
:type Offset: int
|
7350
|
+
:param _Limit: 限制数量,默认值为20。
|
7351
|
+
:type Limit: int
|
7352
|
+
:param _Keyword: 通过关键字搜索域名关联的套餐,默认值为空,为空时不作为筛选条件。
|
7353
|
+
:type Keyword: str
|
7354
|
+
:param _ResourceIdList: 使用资源ID列表查询
|
7355
|
+
:type ResourceIdList: list of str
|
7356
|
+
:param _GradeList: 需要筛选的套餐版本
|
7357
|
+
:type GradeList: list of str
|
7358
|
+
:param _GetUnbindResource: 是否只获取未绑定域名套餐
|
7359
|
+
:type GetUnbindResource: bool
|
7360
|
+
"""
|
7361
|
+
self._Offset = None
|
7362
|
+
self._Limit = None
|
7363
|
+
self._Keyword = None
|
7364
|
+
self._ResourceIdList = None
|
7365
|
+
self._GradeList = None
|
7366
|
+
self._GetUnbindResource = None
|
7367
|
+
|
7368
|
+
@property
|
7369
|
+
def Offset(self):
|
7370
|
+
"""偏移量,默认值为0。
|
7371
|
+
:rtype: int
|
7372
|
+
"""
|
7373
|
+
return self._Offset
|
7374
|
+
|
7375
|
+
@Offset.setter
|
7376
|
+
def Offset(self, Offset):
|
7377
|
+
self._Offset = Offset
|
7378
|
+
|
7379
|
+
@property
|
7380
|
+
def Limit(self):
|
7381
|
+
"""限制数量,默认值为20。
|
7382
|
+
:rtype: int
|
7383
|
+
"""
|
7384
|
+
return self._Limit
|
7385
|
+
|
7386
|
+
@Limit.setter
|
7387
|
+
def Limit(self, Limit):
|
7388
|
+
self._Limit = Limit
|
7389
|
+
|
7390
|
+
@property
|
7391
|
+
def Keyword(self):
|
7392
|
+
"""通过关键字搜索域名关联的套餐,默认值为空,为空时不作为筛选条件。
|
7393
|
+
:rtype: str
|
7394
|
+
"""
|
7395
|
+
return self._Keyword
|
7396
|
+
|
7397
|
+
@Keyword.setter
|
7398
|
+
def Keyword(self, Keyword):
|
7399
|
+
self._Keyword = Keyword
|
7400
|
+
|
7401
|
+
@property
|
7402
|
+
def ResourceIdList(self):
|
7403
|
+
"""使用资源ID列表查询
|
7404
|
+
:rtype: list of str
|
7405
|
+
"""
|
7406
|
+
return self._ResourceIdList
|
7407
|
+
|
7408
|
+
@ResourceIdList.setter
|
7409
|
+
def ResourceIdList(self, ResourceIdList):
|
7410
|
+
self._ResourceIdList = ResourceIdList
|
7411
|
+
|
7412
|
+
@property
|
7413
|
+
def GradeList(self):
|
7414
|
+
"""需要筛选的套餐版本
|
7415
|
+
:rtype: list of str
|
7416
|
+
"""
|
7417
|
+
return self._GradeList
|
7418
|
+
|
7419
|
+
@GradeList.setter
|
7420
|
+
def GradeList(self, GradeList):
|
7421
|
+
self._GradeList = GradeList
|
7422
|
+
|
7423
|
+
@property
|
7424
|
+
def GetUnbindResource(self):
|
7425
|
+
"""是否只获取未绑定域名套餐
|
7426
|
+
:rtype: bool
|
7427
|
+
"""
|
7428
|
+
return self._GetUnbindResource
|
7429
|
+
|
7430
|
+
@GetUnbindResource.setter
|
7431
|
+
def GetUnbindResource(self, GetUnbindResource):
|
7432
|
+
self._GetUnbindResource = GetUnbindResource
|
7433
|
+
|
7434
|
+
|
7435
|
+
def _deserialize(self, params):
|
7436
|
+
self._Offset = params.get("Offset")
|
7437
|
+
self._Limit = params.get("Limit")
|
7438
|
+
self._Keyword = params.get("Keyword")
|
7439
|
+
self._ResourceIdList = params.get("ResourceIdList")
|
7440
|
+
self._GradeList = params.get("GradeList")
|
7441
|
+
self._GetUnbindResource = params.get("GetUnbindResource")
|
7442
|
+
memeber_set = set(params.keys())
|
7443
|
+
for name, value in vars(self).items():
|
7444
|
+
property_name = name[1:]
|
7445
|
+
if property_name in memeber_set:
|
7446
|
+
memeber_set.remove(property_name)
|
7447
|
+
if len(memeber_set) > 0:
|
7448
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
7449
|
+
|
7450
|
+
|
7451
|
+
|
7452
|
+
class DescribeDomainVipListResponse(AbstractModel):
|
7453
|
+
"""DescribeDomainVipList返回参数结构体
|
7454
|
+
|
7455
|
+
"""
|
7456
|
+
|
7457
|
+
def __init__(self):
|
7458
|
+
r"""
|
7459
|
+
:param _TotalCount: 符合筛选条件的套餐总数
|
7460
|
+
:type TotalCount: int
|
7461
|
+
:param _PackageList: 套餐信息列表
|
7462
|
+
:type PackageList: list of PackageListItem
|
7463
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7464
|
+
:type RequestId: str
|
7465
|
+
"""
|
7466
|
+
self._TotalCount = None
|
7467
|
+
self._PackageList = None
|
7468
|
+
self._RequestId = None
|
7469
|
+
|
7470
|
+
@property
|
7471
|
+
def TotalCount(self):
|
7472
|
+
"""符合筛选条件的套餐总数
|
7473
|
+
:rtype: int
|
7474
|
+
"""
|
7475
|
+
return self._TotalCount
|
7476
|
+
|
7477
|
+
@TotalCount.setter
|
7478
|
+
def TotalCount(self, TotalCount):
|
7479
|
+
self._TotalCount = TotalCount
|
7480
|
+
|
7481
|
+
@property
|
7482
|
+
def PackageList(self):
|
7483
|
+
"""套餐信息列表
|
7484
|
+
:rtype: list of PackageListItem
|
7485
|
+
"""
|
7486
|
+
return self._PackageList
|
7487
|
+
|
7488
|
+
@PackageList.setter
|
7489
|
+
def PackageList(self, PackageList):
|
7490
|
+
self._PackageList = PackageList
|
7491
|
+
|
7492
|
+
@property
|
7493
|
+
def RequestId(self):
|
7494
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7495
|
+
:rtype: str
|
7496
|
+
"""
|
7497
|
+
return self._RequestId
|
7498
|
+
|
7499
|
+
@RequestId.setter
|
7500
|
+
def RequestId(self, RequestId):
|
7501
|
+
self._RequestId = RequestId
|
7502
|
+
|
7503
|
+
|
7504
|
+
def _deserialize(self, params):
|
7505
|
+
self._TotalCount = params.get("TotalCount")
|
7506
|
+
if params.get("PackageList") is not None:
|
7507
|
+
self._PackageList = []
|
7508
|
+
for item in params.get("PackageList"):
|
7509
|
+
obj = PackageListItem()
|
7510
|
+
obj._deserialize(item)
|
7511
|
+
self._PackageList.append(obj)
|
7512
|
+
self._RequestId = params.get("RequestId")
|
7513
|
+
|
7514
|
+
|
7326
7515
|
class DescribeDomainWhoisRequest(AbstractModel):
|
7327
7516
|
"""DescribeDomainWhois请求参数结构体
|
7328
7517
|
|
@@ -10412,6 +10601,165 @@ class DescribeVASStatisticResponse(AbstractModel):
|
|
10412
10601
|
self._RequestId = params.get("RequestId")
|
10413
10602
|
|
10414
10603
|
|
10604
|
+
class DescribeVasListRequest(AbstractModel):
|
10605
|
+
"""DescribeVasList请求参数结构体
|
10606
|
+
|
10607
|
+
"""
|
10608
|
+
|
10609
|
+
def __init__(self):
|
10610
|
+
r"""
|
10611
|
+
:param _Offset: 偏移量,默认值为0。
|
10612
|
+
:type Offset: int
|
10613
|
+
:param _Limit: 限制数量,默认值为20。
|
10614
|
+
:type Limit: int
|
10615
|
+
:param _DomainId: 域名ID
|
10616
|
+
:type DomainId: int
|
10617
|
+
:param _ResourceIdList: 使用资源 ID 列表查询
|
10618
|
+
:type ResourceIdList: list of str
|
10619
|
+
:param _LimitType: 增值服务类型
|
10620
|
+
:type LimitType: str
|
10621
|
+
"""
|
10622
|
+
self._Offset = None
|
10623
|
+
self._Limit = None
|
10624
|
+
self._DomainId = None
|
10625
|
+
self._ResourceIdList = None
|
10626
|
+
self._LimitType = None
|
10627
|
+
|
10628
|
+
@property
|
10629
|
+
def Offset(self):
|
10630
|
+
"""偏移量,默认值为0。
|
10631
|
+
:rtype: int
|
10632
|
+
"""
|
10633
|
+
return self._Offset
|
10634
|
+
|
10635
|
+
@Offset.setter
|
10636
|
+
def Offset(self, Offset):
|
10637
|
+
self._Offset = Offset
|
10638
|
+
|
10639
|
+
@property
|
10640
|
+
def Limit(self):
|
10641
|
+
"""限制数量,默认值为20。
|
10642
|
+
:rtype: int
|
10643
|
+
"""
|
10644
|
+
return self._Limit
|
10645
|
+
|
10646
|
+
@Limit.setter
|
10647
|
+
def Limit(self, Limit):
|
10648
|
+
self._Limit = Limit
|
10649
|
+
|
10650
|
+
@property
|
10651
|
+
def DomainId(self):
|
10652
|
+
"""域名ID
|
10653
|
+
:rtype: int
|
10654
|
+
"""
|
10655
|
+
return self._DomainId
|
10656
|
+
|
10657
|
+
@DomainId.setter
|
10658
|
+
def DomainId(self, DomainId):
|
10659
|
+
self._DomainId = DomainId
|
10660
|
+
|
10661
|
+
@property
|
10662
|
+
def ResourceIdList(self):
|
10663
|
+
"""使用资源 ID 列表查询
|
10664
|
+
:rtype: list of str
|
10665
|
+
"""
|
10666
|
+
return self._ResourceIdList
|
10667
|
+
|
10668
|
+
@ResourceIdList.setter
|
10669
|
+
def ResourceIdList(self, ResourceIdList):
|
10670
|
+
self._ResourceIdList = ResourceIdList
|
10671
|
+
|
10672
|
+
@property
|
10673
|
+
def LimitType(self):
|
10674
|
+
"""增值服务类型
|
10675
|
+
:rtype: str
|
10676
|
+
"""
|
10677
|
+
return self._LimitType
|
10678
|
+
|
10679
|
+
@LimitType.setter
|
10680
|
+
def LimitType(self, LimitType):
|
10681
|
+
self._LimitType = LimitType
|
10682
|
+
|
10683
|
+
|
10684
|
+
def _deserialize(self, params):
|
10685
|
+
self._Offset = params.get("Offset")
|
10686
|
+
self._Limit = params.get("Limit")
|
10687
|
+
self._DomainId = params.get("DomainId")
|
10688
|
+
self._ResourceIdList = params.get("ResourceIdList")
|
10689
|
+
self._LimitType = params.get("LimitType")
|
10690
|
+
memeber_set = set(params.keys())
|
10691
|
+
for name, value in vars(self).items():
|
10692
|
+
property_name = name[1:]
|
10693
|
+
if property_name in memeber_set:
|
10694
|
+
memeber_set.remove(property_name)
|
10695
|
+
if len(memeber_set) > 0:
|
10696
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
10697
|
+
|
10698
|
+
|
10699
|
+
|
10700
|
+
class DescribeVasListResponse(AbstractModel):
|
10701
|
+
"""DescribeVasList返回参数结构体
|
10702
|
+
|
10703
|
+
"""
|
10704
|
+
|
10705
|
+
def __init__(self):
|
10706
|
+
r"""
|
10707
|
+
:param _TotalCount: 符合筛选条件的套餐总数
|
10708
|
+
:type TotalCount: int
|
10709
|
+
:param _VasList: 增值服务信息列表
|
10710
|
+
:type VasList: list of VasListItem
|
10711
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
10712
|
+
:type RequestId: str
|
10713
|
+
"""
|
10714
|
+
self._TotalCount = None
|
10715
|
+
self._VasList = None
|
10716
|
+
self._RequestId = None
|
10717
|
+
|
10718
|
+
@property
|
10719
|
+
def TotalCount(self):
|
10720
|
+
"""符合筛选条件的套餐总数
|
10721
|
+
:rtype: int
|
10722
|
+
"""
|
10723
|
+
return self._TotalCount
|
10724
|
+
|
10725
|
+
@TotalCount.setter
|
10726
|
+
def TotalCount(self, TotalCount):
|
10727
|
+
self._TotalCount = TotalCount
|
10728
|
+
|
10729
|
+
@property
|
10730
|
+
def VasList(self):
|
10731
|
+
"""增值服务信息列表
|
10732
|
+
:rtype: list of VasListItem
|
10733
|
+
"""
|
10734
|
+
return self._VasList
|
10735
|
+
|
10736
|
+
@VasList.setter
|
10737
|
+
def VasList(self, VasList):
|
10738
|
+
self._VasList = VasList
|
10739
|
+
|
10740
|
+
@property
|
10741
|
+
def RequestId(self):
|
10742
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
10743
|
+
:rtype: str
|
10744
|
+
"""
|
10745
|
+
return self._RequestId
|
10746
|
+
|
10747
|
+
@RequestId.setter
|
10748
|
+
def RequestId(self, RequestId):
|
10749
|
+
self._RequestId = RequestId
|
10750
|
+
|
10751
|
+
|
10752
|
+
def _deserialize(self, params):
|
10753
|
+
self._TotalCount = params.get("TotalCount")
|
10754
|
+
if params.get("VasList") is not None:
|
10755
|
+
self._VasList = []
|
10756
|
+
for item in params.get("VasList"):
|
10757
|
+
obj = VasListItem()
|
10758
|
+
obj._deserialize(item)
|
10759
|
+
self._VasList.append(obj)
|
10760
|
+
self._RequestId = params.get("RequestId")
|
10761
|
+
|
10762
|
+
|
10415
10763
|
class DomainAliasAnalyticsItem(AbstractModel):
|
10416
10764
|
"""域名别名解析量统计信息
|
10417
10765
|
|
@@ -16108,27 +16456,283 @@ class PackageDetailItem(AbstractModel):
|
|
16108
16456
|
|
16109
16457
|
|
16110
16458
|
|
16111
|
-
class
|
16112
|
-
"""
|
16459
|
+
class PackageListItem(AbstractModel):
|
16460
|
+
"""套餐列表元素
|
16113
16461
|
|
16114
16462
|
"""
|
16115
16463
|
|
16116
16464
|
def __init__(self):
|
16117
16465
|
r"""
|
16118
|
-
:param
|
16119
|
-
|
16120
|
-
:
|
16121
|
-
:
|
16122
|
-
|
16123
|
-
|
16124
|
-
|
16125
|
-
|
16126
|
-
|
16127
|
-
|
16128
|
-
|
16129
|
-
:
|
16130
|
-
|
16131
|
-
|
16466
|
+
:param _DomainId: 域名ID
|
16467
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
16468
|
+
:type DomainId: int
|
16469
|
+
:param _Domain: 域名的原始格式
|
16470
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
16471
|
+
:type Domain: str
|
16472
|
+
:param _Grade: 套餐等级代码
|
16473
|
+
:type Grade: str
|
16474
|
+
:param _GradeTitle: 套餐名称
|
16475
|
+
:type GradeTitle: str
|
16476
|
+
:param _VipStartAt: 付费套餐开通时间
|
16477
|
+
:type VipStartAt: str
|
16478
|
+
:param _VipEndAt: 付费套餐到期时间
|
16479
|
+
:type VipEndAt: str
|
16480
|
+
:param _VipAutoRenew: 域名是否开通VIP自动续费,是:YES,否:NO,默认:DEFAULT
|
16481
|
+
:type VipAutoRenew: str
|
16482
|
+
:param _RemainTimes: 套餐剩余换绑/绑定域名次数
|
16483
|
+
:type RemainTimes: int
|
16484
|
+
:param _ResourceId: 套餐资源ID
|
16485
|
+
:type ResourceId: str
|
16486
|
+
:param _GradeLevel: 域名等级代号
|
16487
|
+
:type GradeLevel: int
|
16488
|
+
:param _Status: 套餐绑定的域名的状态
|
16489
|
+
:type Status: str
|
16490
|
+
:param _IsGracePeriod: 套餐是否处于宽限期
|
16491
|
+
:type IsGracePeriod: str
|
16492
|
+
:param _Downgrade: 是否降级
|
16493
|
+
:type Downgrade: bool
|
16494
|
+
:param _SecurityInfo: 关联安全防护信息
|
16495
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
16496
|
+
:type SecurityInfo: :class:`tencentcloud.dnspod.v20210323.models.SecurityInfo`
|
16497
|
+
:param _IsSubDomain: 套餐绑定的域名是否为子域名
|
16498
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
16499
|
+
:type IsSubDomain: bool
|
16500
|
+
"""
|
16501
|
+
self._DomainId = None
|
16502
|
+
self._Domain = None
|
16503
|
+
self._Grade = None
|
16504
|
+
self._GradeTitle = None
|
16505
|
+
self._VipStartAt = None
|
16506
|
+
self._VipEndAt = None
|
16507
|
+
self._VipAutoRenew = None
|
16508
|
+
self._RemainTimes = None
|
16509
|
+
self._ResourceId = None
|
16510
|
+
self._GradeLevel = None
|
16511
|
+
self._Status = None
|
16512
|
+
self._IsGracePeriod = None
|
16513
|
+
self._Downgrade = None
|
16514
|
+
self._SecurityInfo = None
|
16515
|
+
self._IsSubDomain = None
|
16516
|
+
|
16517
|
+
@property
|
16518
|
+
def DomainId(self):
|
16519
|
+
"""域名ID
|
16520
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
16521
|
+
:rtype: int
|
16522
|
+
"""
|
16523
|
+
return self._DomainId
|
16524
|
+
|
16525
|
+
@DomainId.setter
|
16526
|
+
def DomainId(self, DomainId):
|
16527
|
+
self._DomainId = DomainId
|
16528
|
+
|
16529
|
+
@property
|
16530
|
+
def Domain(self):
|
16531
|
+
"""域名的原始格式
|
16532
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
16533
|
+
:rtype: str
|
16534
|
+
"""
|
16535
|
+
return self._Domain
|
16536
|
+
|
16537
|
+
@Domain.setter
|
16538
|
+
def Domain(self, Domain):
|
16539
|
+
self._Domain = Domain
|
16540
|
+
|
16541
|
+
@property
|
16542
|
+
def Grade(self):
|
16543
|
+
"""套餐等级代码
|
16544
|
+
:rtype: str
|
16545
|
+
"""
|
16546
|
+
return self._Grade
|
16547
|
+
|
16548
|
+
@Grade.setter
|
16549
|
+
def Grade(self, Grade):
|
16550
|
+
self._Grade = Grade
|
16551
|
+
|
16552
|
+
@property
|
16553
|
+
def GradeTitle(self):
|
16554
|
+
"""套餐名称
|
16555
|
+
:rtype: str
|
16556
|
+
"""
|
16557
|
+
return self._GradeTitle
|
16558
|
+
|
16559
|
+
@GradeTitle.setter
|
16560
|
+
def GradeTitle(self, GradeTitle):
|
16561
|
+
self._GradeTitle = GradeTitle
|
16562
|
+
|
16563
|
+
@property
|
16564
|
+
def VipStartAt(self):
|
16565
|
+
"""付费套餐开通时间
|
16566
|
+
:rtype: str
|
16567
|
+
"""
|
16568
|
+
return self._VipStartAt
|
16569
|
+
|
16570
|
+
@VipStartAt.setter
|
16571
|
+
def VipStartAt(self, VipStartAt):
|
16572
|
+
self._VipStartAt = VipStartAt
|
16573
|
+
|
16574
|
+
@property
|
16575
|
+
def VipEndAt(self):
|
16576
|
+
"""付费套餐到期时间
|
16577
|
+
:rtype: str
|
16578
|
+
"""
|
16579
|
+
return self._VipEndAt
|
16580
|
+
|
16581
|
+
@VipEndAt.setter
|
16582
|
+
def VipEndAt(self, VipEndAt):
|
16583
|
+
self._VipEndAt = VipEndAt
|
16584
|
+
|
16585
|
+
@property
|
16586
|
+
def VipAutoRenew(self):
|
16587
|
+
"""域名是否开通VIP自动续费,是:YES,否:NO,默认:DEFAULT
|
16588
|
+
:rtype: str
|
16589
|
+
"""
|
16590
|
+
return self._VipAutoRenew
|
16591
|
+
|
16592
|
+
@VipAutoRenew.setter
|
16593
|
+
def VipAutoRenew(self, VipAutoRenew):
|
16594
|
+
self._VipAutoRenew = VipAutoRenew
|
16595
|
+
|
16596
|
+
@property
|
16597
|
+
def RemainTimes(self):
|
16598
|
+
"""套餐剩余换绑/绑定域名次数
|
16599
|
+
:rtype: int
|
16600
|
+
"""
|
16601
|
+
return self._RemainTimes
|
16602
|
+
|
16603
|
+
@RemainTimes.setter
|
16604
|
+
def RemainTimes(self, RemainTimes):
|
16605
|
+
self._RemainTimes = RemainTimes
|
16606
|
+
|
16607
|
+
@property
|
16608
|
+
def ResourceId(self):
|
16609
|
+
"""套餐资源ID
|
16610
|
+
:rtype: str
|
16611
|
+
"""
|
16612
|
+
return self._ResourceId
|
16613
|
+
|
16614
|
+
@ResourceId.setter
|
16615
|
+
def ResourceId(self, ResourceId):
|
16616
|
+
self._ResourceId = ResourceId
|
16617
|
+
|
16618
|
+
@property
|
16619
|
+
def GradeLevel(self):
|
16620
|
+
"""域名等级代号
|
16621
|
+
:rtype: int
|
16622
|
+
"""
|
16623
|
+
return self._GradeLevel
|
16624
|
+
|
16625
|
+
@GradeLevel.setter
|
16626
|
+
def GradeLevel(self, GradeLevel):
|
16627
|
+
self._GradeLevel = GradeLevel
|
16628
|
+
|
16629
|
+
@property
|
16630
|
+
def Status(self):
|
16631
|
+
"""套餐绑定的域名的状态
|
16632
|
+
:rtype: str
|
16633
|
+
"""
|
16634
|
+
return self._Status
|
16635
|
+
|
16636
|
+
@Status.setter
|
16637
|
+
def Status(self, Status):
|
16638
|
+
self._Status = Status
|
16639
|
+
|
16640
|
+
@property
|
16641
|
+
def IsGracePeriod(self):
|
16642
|
+
"""套餐是否处于宽限期
|
16643
|
+
:rtype: str
|
16644
|
+
"""
|
16645
|
+
return self._IsGracePeriod
|
16646
|
+
|
16647
|
+
@IsGracePeriod.setter
|
16648
|
+
def IsGracePeriod(self, IsGracePeriod):
|
16649
|
+
self._IsGracePeriod = IsGracePeriod
|
16650
|
+
|
16651
|
+
@property
|
16652
|
+
def Downgrade(self):
|
16653
|
+
"""是否降级
|
16654
|
+
:rtype: bool
|
16655
|
+
"""
|
16656
|
+
return self._Downgrade
|
16657
|
+
|
16658
|
+
@Downgrade.setter
|
16659
|
+
def Downgrade(self, Downgrade):
|
16660
|
+
self._Downgrade = Downgrade
|
16661
|
+
|
16662
|
+
@property
|
16663
|
+
def SecurityInfo(self):
|
16664
|
+
"""关联安全防护信息
|
16665
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
16666
|
+
:rtype: :class:`tencentcloud.dnspod.v20210323.models.SecurityInfo`
|
16667
|
+
"""
|
16668
|
+
return self._SecurityInfo
|
16669
|
+
|
16670
|
+
@SecurityInfo.setter
|
16671
|
+
def SecurityInfo(self, SecurityInfo):
|
16672
|
+
self._SecurityInfo = SecurityInfo
|
16673
|
+
|
16674
|
+
@property
|
16675
|
+
def IsSubDomain(self):
|
16676
|
+
"""套餐绑定的域名是否为子域名
|
16677
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
16678
|
+
:rtype: bool
|
16679
|
+
"""
|
16680
|
+
return self._IsSubDomain
|
16681
|
+
|
16682
|
+
@IsSubDomain.setter
|
16683
|
+
def IsSubDomain(self, IsSubDomain):
|
16684
|
+
self._IsSubDomain = IsSubDomain
|
16685
|
+
|
16686
|
+
|
16687
|
+
def _deserialize(self, params):
|
16688
|
+
self._DomainId = params.get("DomainId")
|
16689
|
+
self._Domain = params.get("Domain")
|
16690
|
+
self._Grade = params.get("Grade")
|
16691
|
+
self._GradeTitle = params.get("GradeTitle")
|
16692
|
+
self._VipStartAt = params.get("VipStartAt")
|
16693
|
+
self._VipEndAt = params.get("VipEndAt")
|
16694
|
+
self._VipAutoRenew = params.get("VipAutoRenew")
|
16695
|
+
self._RemainTimes = params.get("RemainTimes")
|
16696
|
+
self._ResourceId = params.get("ResourceId")
|
16697
|
+
self._GradeLevel = params.get("GradeLevel")
|
16698
|
+
self._Status = params.get("Status")
|
16699
|
+
self._IsGracePeriod = params.get("IsGracePeriod")
|
16700
|
+
self._Downgrade = params.get("Downgrade")
|
16701
|
+
if params.get("SecurityInfo") is not None:
|
16702
|
+
self._SecurityInfo = SecurityInfo()
|
16703
|
+
self._SecurityInfo._deserialize(params.get("SecurityInfo"))
|
16704
|
+
self._IsSubDomain = params.get("IsSubDomain")
|
16705
|
+
memeber_set = set(params.keys())
|
16706
|
+
for name, value in vars(self).items():
|
16707
|
+
property_name = name[1:]
|
16708
|
+
if property_name in memeber_set:
|
16709
|
+
memeber_set.remove(property_name)
|
16710
|
+
if len(memeber_set) > 0:
|
16711
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
16712
|
+
|
16713
|
+
|
16714
|
+
|
16715
|
+
class PayOrderWithBalanceRequest(AbstractModel):
|
16716
|
+
"""PayOrderWithBalance请求参数结构体
|
16717
|
+
|
16718
|
+
"""
|
16719
|
+
|
16720
|
+
def __init__(self):
|
16721
|
+
r"""
|
16722
|
+
:param _BigDealIdList: 需要支付的大订单号数组
|
16723
|
+
:type BigDealIdList: list of str
|
16724
|
+
:param _VoucherIdList: 代金券ID数组。可以从控制台查到拥有的代金券
|
16725
|
+
:type VoucherIdList: list of str
|
16726
|
+
"""
|
16727
|
+
self._BigDealIdList = None
|
16728
|
+
self._VoucherIdList = None
|
16729
|
+
|
16730
|
+
@property
|
16731
|
+
def BigDealIdList(self):
|
16732
|
+
"""需要支付的大订单号数组
|
16733
|
+
:rtype: list of str
|
16734
|
+
"""
|
16735
|
+
return self._BigDealIdList
|
16132
16736
|
|
16133
16737
|
@BigDealIdList.setter
|
16134
16738
|
def BigDealIdList(self, BigDealIdList):
|
@@ -17348,6 +17952,72 @@ class RollbackSnapshotResponse(AbstractModel):
|
|
17348
17952
|
self._RequestId = params.get("RequestId")
|
17349
17953
|
|
17350
17954
|
|
17955
|
+
class SecurityInfo(AbstractModel):
|
17956
|
+
"""套餐中安全防护信息
|
17957
|
+
|
17958
|
+
"""
|
17959
|
+
|
17960
|
+
def __init__(self):
|
17961
|
+
r"""
|
17962
|
+
:param _IsDefendFree: 是否是免费赠送:yes-是;no-不是
|
17963
|
+
:type IsDefendFree: str
|
17964
|
+
:param _Key: 防护类型
|
17965
|
+
:type Key: str
|
17966
|
+
:param _ResourceId: 资源 ID
|
17967
|
+
:type ResourceId: str
|
17968
|
+
"""
|
17969
|
+
self._IsDefendFree = None
|
17970
|
+
self._Key = None
|
17971
|
+
self._ResourceId = None
|
17972
|
+
|
17973
|
+
@property
|
17974
|
+
def IsDefendFree(self):
|
17975
|
+
"""是否是免费赠送:yes-是;no-不是
|
17976
|
+
:rtype: str
|
17977
|
+
"""
|
17978
|
+
return self._IsDefendFree
|
17979
|
+
|
17980
|
+
@IsDefendFree.setter
|
17981
|
+
def IsDefendFree(self, IsDefendFree):
|
17982
|
+
self._IsDefendFree = IsDefendFree
|
17983
|
+
|
17984
|
+
@property
|
17985
|
+
def Key(self):
|
17986
|
+
"""防护类型
|
17987
|
+
:rtype: str
|
17988
|
+
"""
|
17989
|
+
return self._Key
|
17990
|
+
|
17991
|
+
@Key.setter
|
17992
|
+
def Key(self, Key):
|
17993
|
+
self._Key = Key
|
17994
|
+
|
17995
|
+
@property
|
17996
|
+
def ResourceId(self):
|
17997
|
+
"""资源 ID
|
17998
|
+
:rtype: str
|
17999
|
+
"""
|
18000
|
+
return self._ResourceId
|
18001
|
+
|
18002
|
+
@ResourceId.setter
|
18003
|
+
def ResourceId(self, ResourceId):
|
18004
|
+
self._ResourceId = ResourceId
|
18005
|
+
|
18006
|
+
|
18007
|
+
def _deserialize(self, params):
|
18008
|
+
self._IsDefendFree = params.get("IsDefendFree")
|
18009
|
+
self._Key = params.get("Key")
|
18010
|
+
self._ResourceId = params.get("ResourceId")
|
18011
|
+
memeber_set = set(params.keys())
|
18012
|
+
for name, value in vars(self).items():
|
18013
|
+
property_name = name[1:]
|
18014
|
+
if property_name in memeber_set:
|
18015
|
+
memeber_set.remove(property_name)
|
18016
|
+
if len(memeber_set) > 0:
|
18017
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
18018
|
+
|
18019
|
+
|
18020
|
+
|
17351
18021
|
class SnapshotConfig(AbstractModel):
|
17352
18022
|
"""域名解析快照配置
|
17353
18023
|
|
@@ -18417,6 +19087,192 @@ class VASStatisticItem(AbstractModel):
|
|
18417
19087
|
|
18418
19088
|
|
18419
19089
|
|
19090
|
+
class VasListItem(AbstractModel):
|
19091
|
+
"""增值服务信息
|
19092
|
+
|
19093
|
+
"""
|
19094
|
+
|
19095
|
+
def __init__(self):
|
19096
|
+
r"""
|
19097
|
+
:param _LimitNumber: 规格总数
|
19098
|
+
:type LimitNumber: int
|
19099
|
+
:param _StartedAt: 购买时间
|
19100
|
+
:type StartedAt: str
|
19101
|
+
:param _EndedAt: 到期时间
|
19102
|
+
:type EndedAt: str
|
19103
|
+
:param _ResourceId: 资源唯一 ID
|
19104
|
+
:type ResourceId: str
|
19105
|
+
:param _AutoRenew: 自动续费标识
|
19106
|
+
:type AutoRenew: str
|
19107
|
+
:param _Domain: 已绑定的域名
|
19108
|
+
:type Domain: str
|
19109
|
+
:param _BindType: 绑定类型
|
19110
|
+
:type BindType: str
|
19111
|
+
:param _Key: 增值服务类型
|
19112
|
+
:type Key: str
|
19113
|
+
:param _Name: 增值服务名
|
19114
|
+
:type Name: str
|
19115
|
+
:param _CanRenew: 是否可续费
|
19116
|
+
:type CanRenew: bool
|
19117
|
+
:param _VipDomain: 是否只允许付费套餐域名可购买
|
19118
|
+
:type VipDomain: bool
|
19119
|
+
"""
|
19120
|
+
self._LimitNumber = None
|
19121
|
+
self._StartedAt = None
|
19122
|
+
self._EndedAt = None
|
19123
|
+
self._ResourceId = None
|
19124
|
+
self._AutoRenew = None
|
19125
|
+
self._Domain = None
|
19126
|
+
self._BindType = None
|
19127
|
+
self._Key = None
|
19128
|
+
self._Name = None
|
19129
|
+
self._CanRenew = None
|
19130
|
+
self._VipDomain = None
|
19131
|
+
|
19132
|
+
@property
|
19133
|
+
def LimitNumber(self):
|
19134
|
+
"""规格总数
|
19135
|
+
:rtype: int
|
19136
|
+
"""
|
19137
|
+
return self._LimitNumber
|
19138
|
+
|
19139
|
+
@LimitNumber.setter
|
19140
|
+
def LimitNumber(self, LimitNumber):
|
19141
|
+
self._LimitNumber = LimitNumber
|
19142
|
+
|
19143
|
+
@property
|
19144
|
+
def StartedAt(self):
|
19145
|
+
"""购买时间
|
19146
|
+
:rtype: str
|
19147
|
+
"""
|
19148
|
+
return self._StartedAt
|
19149
|
+
|
19150
|
+
@StartedAt.setter
|
19151
|
+
def StartedAt(self, StartedAt):
|
19152
|
+
self._StartedAt = StartedAt
|
19153
|
+
|
19154
|
+
@property
|
19155
|
+
def EndedAt(self):
|
19156
|
+
"""到期时间
|
19157
|
+
:rtype: str
|
19158
|
+
"""
|
19159
|
+
return self._EndedAt
|
19160
|
+
|
19161
|
+
@EndedAt.setter
|
19162
|
+
def EndedAt(self, EndedAt):
|
19163
|
+
self._EndedAt = EndedAt
|
19164
|
+
|
19165
|
+
@property
|
19166
|
+
def ResourceId(self):
|
19167
|
+
"""资源唯一 ID
|
19168
|
+
:rtype: str
|
19169
|
+
"""
|
19170
|
+
return self._ResourceId
|
19171
|
+
|
19172
|
+
@ResourceId.setter
|
19173
|
+
def ResourceId(self, ResourceId):
|
19174
|
+
self._ResourceId = ResourceId
|
19175
|
+
|
19176
|
+
@property
|
19177
|
+
def AutoRenew(self):
|
19178
|
+
"""自动续费标识
|
19179
|
+
:rtype: str
|
19180
|
+
"""
|
19181
|
+
return self._AutoRenew
|
19182
|
+
|
19183
|
+
@AutoRenew.setter
|
19184
|
+
def AutoRenew(self, AutoRenew):
|
19185
|
+
self._AutoRenew = AutoRenew
|
19186
|
+
|
19187
|
+
@property
|
19188
|
+
def Domain(self):
|
19189
|
+
"""已绑定的域名
|
19190
|
+
:rtype: str
|
19191
|
+
"""
|
19192
|
+
return self._Domain
|
19193
|
+
|
19194
|
+
@Domain.setter
|
19195
|
+
def Domain(self, Domain):
|
19196
|
+
self._Domain = Domain
|
19197
|
+
|
19198
|
+
@property
|
19199
|
+
def BindType(self):
|
19200
|
+
"""绑定类型
|
19201
|
+
:rtype: str
|
19202
|
+
"""
|
19203
|
+
return self._BindType
|
19204
|
+
|
19205
|
+
@BindType.setter
|
19206
|
+
def BindType(self, BindType):
|
19207
|
+
self._BindType = BindType
|
19208
|
+
|
19209
|
+
@property
|
19210
|
+
def Key(self):
|
19211
|
+
"""增值服务类型
|
19212
|
+
:rtype: str
|
19213
|
+
"""
|
19214
|
+
return self._Key
|
19215
|
+
|
19216
|
+
@Key.setter
|
19217
|
+
def Key(self, Key):
|
19218
|
+
self._Key = Key
|
19219
|
+
|
19220
|
+
@property
|
19221
|
+
def Name(self):
|
19222
|
+
"""增值服务名
|
19223
|
+
:rtype: str
|
19224
|
+
"""
|
19225
|
+
return self._Name
|
19226
|
+
|
19227
|
+
@Name.setter
|
19228
|
+
def Name(self, Name):
|
19229
|
+
self._Name = Name
|
19230
|
+
|
19231
|
+
@property
|
19232
|
+
def CanRenew(self):
|
19233
|
+
"""是否可续费
|
19234
|
+
:rtype: bool
|
19235
|
+
"""
|
19236
|
+
return self._CanRenew
|
19237
|
+
|
19238
|
+
@CanRenew.setter
|
19239
|
+
def CanRenew(self, CanRenew):
|
19240
|
+
self._CanRenew = CanRenew
|
19241
|
+
|
19242
|
+
@property
|
19243
|
+
def VipDomain(self):
|
19244
|
+
"""是否只允许付费套餐域名可购买
|
19245
|
+
:rtype: bool
|
19246
|
+
"""
|
19247
|
+
return self._VipDomain
|
19248
|
+
|
19249
|
+
@VipDomain.setter
|
19250
|
+
def VipDomain(self, VipDomain):
|
19251
|
+
self._VipDomain = VipDomain
|
19252
|
+
|
19253
|
+
|
19254
|
+
def _deserialize(self, params):
|
19255
|
+
self._LimitNumber = params.get("LimitNumber")
|
19256
|
+
self._StartedAt = params.get("StartedAt")
|
19257
|
+
self._EndedAt = params.get("EndedAt")
|
19258
|
+
self._ResourceId = params.get("ResourceId")
|
19259
|
+
self._AutoRenew = params.get("AutoRenew")
|
19260
|
+
self._Domain = params.get("Domain")
|
19261
|
+
self._BindType = params.get("BindType")
|
19262
|
+
self._Key = params.get("Key")
|
19263
|
+
self._Name = params.get("Name")
|
19264
|
+
self._CanRenew = params.get("CanRenew")
|
19265
|
+
self._VipDomain = params.get("VipDomain")
|
19266
|
+
memeber_set = set(params.keys())
|
19267
|
+
for name, value in vars(self).items():
|
19268
|
+
property_name = name[1:]
|
19269
|
+
if property_name in memeber_set:
|
19270
|
+
memeber_set.remove(property_name)
|
19271
|
+
if len(memeber_set) > 0:
|
19272
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
19273
|
+
|
19274
|
+
|
19275
|
+
|
18420
19276
|
class WhoisContact(AbstractModel):
|
18421
19277
|
"""Whois联系信息
|
18422
19278
|
|