tencentcloud-sdk-python 3.0.1373__py2.py3-none-any.whl → 3.0.1375__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/aiart/v20221229/models.py +16 -0
- tencentcloud/apm/v20210622/models.py +60 -0
- tencentcloud/asr/v20190614/asr_client.py +1 -1
- tencentcloud/asr/v20190614/models.py +8 -0
- tencentcloud/bh/v20230418/models.py +4 -8
- tencentcloud/cbs/v20170312/models.py +27 -2
- tencentcloud/chc/v20230418/models.py +84 -2
- tencentcloud/ckafka/v20190819/models.py +0 -24
- tencentcloud/clb/v20180317/clb_client.py +31 -23
- tencentcloud/clb/v20180317/errorcodes.py +3 -0
- tencentcloud/clb/v20180317/models.py +521 -262
- tencentcloud/cloudaudit/v20190319/models.py +0 -64
- tencentcloud/config/v20220802/models.py +0 -150
- tencentcloud/cvm/v20170312/models.py +4 -4
- tencentcloud/cynosdb/v20190107/cynosdb_client.py +23 -0
- tencentcloud/cynosdb/v20190107/models.py +128 -15
- tencentcloud/dlc/v20210125/models.py +30 -0
- tencentcloud/domain/v20180808/domain_client.py +4 -0
- tencentcloud/domain/v20180808/errorcodes.py +3 -0
- tencentcloud/domain/v20180808/models.py +184 -78
- tencentcloud/dsgc/v20190723/dsgc_client.py +23 -0
- tencentcloud/dsgc/v20190723/models.py +384 -0
- tencentcloud/es/v20250101/es_client.py +4 -2
- tencentcloud/es/v20250101/models.py +70 -70
- tencentcloud/iss/v20230517/models.py +0 -40
- tencentcloud/lowcode/v20210108/models.py +17 -2
- tencentcloud/ocr/v20181119/models.py +20 -2
- tencentcloud/organization/v20210331/models.py +0 -12
- tencentcloud/tdmq/v20200217/models.py +185 -15
- tencentcloud/thpc/v20230321/errorcodes.py +3 -0
- tencentcloud/tke/v20180525/models.py +72 -72
- tencentcloud/trocket/v20230308/models.py +190 -12
- tencentcloud/trocket/v20230308/trocket_client.py +0 -1
- tencentcloud/tsf/v20180326/errorcodes.py +3 -0
- tencentcloud/tsf/v20180326/models.py +2 -2
- tencentcloud/vod/v20180717/models.py +15 -0
- tencentcloud/vpc/v20170312/errorcodes.py +12 -0
- tencentcloud/vpc/v20170312/models.py +262 -254
- tencentcloud/vpc/v20170312/vpc_client.py +13 -13
- tencentcloud/waf/v20180125/models.py +34 -0
- tencentcloud/waf/v20180125/waf_client.py +23 -0
- tencentcloud/wedata/v20210820/models.py +1704 -0
- tencentcloud/wedata/v20210820/wedata_client.py +125 -9
- {tencentcloud_sdk_python-3.0.1373.dist-info → tencentcloud_sdk_python-3.0.1375.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1373.dist-info → tencentcloud_sdk_python-3.0.1375.dist-info}/RECORD +49 -49
- {tencentcloud_sdk_python-3.0.1373.dist-info → tencentcloud_sdk_python-3.0.1375.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1373.dist-info → tencentcloud_sdk_python-3.0.1375.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1373.dist-info → tencentcloud_sdk_python-3.0.1375.dist-info}/top_level.txt +0 -0
@@ -308,7 +308,7 @@ class BidDetailPageRequest(AbstractModel):
|
|
308
308
|
def __init__(self):
|
309
309
|
r"""
|
310
310
|
:param _BusinessId: 预约ID
|
311
|
-
可通过DescribeBiddingList接口获取
|
311
|
+
可通过[DescribeBiddingList](https://cloud.tencent.com/document/api/242/106598)接口获取
|
312
312
|
:type BusinessId: str
|
313
313
|
"""
|
314
314
|
self._BusinessId = None
|
@@ -316,7 +316,7 @@ class BidDetailPageRequest(AbstractModel):
|
|
316
316
|
@property
|
317
317
|
def BusinessId(self):
|
318
318
|
"""预约ID
|
319
|
-
可通过DescribeBiddingList接口获取
|
319
|
+
可通过[DescribeBiddingList](https://cloud.tencent.com/document/api/242/106598)接口获取
|
320
320
|
:rtype: str
|
321
321
|
"""
|
322
322
|
return self._BusinessId
|
@@ -675,8 +675,8 @@ class BiddingPreReleaseRequest(AbstractModel):
|
|
675
675
|
|
676
676
|
def __init__(self):
|
677
677
|
r"""
|
678
|
-
:param _BusinessId: 业务ID
|
679
|
-
可通过DescribeBiddingList接口获取
|
678
|
+
:param _BusinessId: 业务ID(竞价域名的预约ID)
|
679
|
+
可通过[DescribeBiddingList](https://cloud.tencent.com/document/api/242/106598)接口获取
|
680
680
|
:type BusinessId: str
|
681
681
|
:param _Price: 价格 单位元
|
682
682
|
:type Price: float
|
@@ -686,8 +686,8 @@ class BiddingPreReleaseRequest(AbstractModel):
|
|
686
686
|
|
687
687
|
@property
|
688
688
|
def BusinessId(self):
|
689
|
-
"""业务ID
|
690
|
-
可通过DescribeBiddingList接口获取
|
689
|
+
"""业务ID(竞价域名的预约ID)
|
690
|
+
可通过[DescribeBiddingList](https://cloud.tencent.com/document/api/242/106598)接口获取
|
691
691
|
:rtype: str
|
692
692
|
"""
|
693
693
|
return self._BusinessId
|
@@ -958,6 +958,7 @@ class BiddingSuccessfulResult(AbstractModel):
|
|
958
958
|
def __init__(self):
|
959
959
|
r"""
|
960
960
|
:param _PayEndTime: 支付结束时间
|
961
|
+
格式:YYYY-MM-DD HH:mm:ss
|
961
962
|
:type PayEndTime: str
|
962
963
|
"""
|
963
964
|
self._PayEndTime = None
|
@@ -965,6 +966,7 @@ class BiddingSuccessfulResult(AbstractModel):
|
|
965
966
|
@property
|
966
967
|
def PayEndTime(self):
|
967
968
|
"""支付结束时间
|
969
|
+
格式:YYYY-MM-DD HH:mm:ss
|
968
970
|
:rtype: str
|
969
971
|
"""
|
970
972
|
return self._PayEndTime
|
@@ -1233,14 +1235,12 @@ class CheckBatchStatusRequest(AbstractModel):
|
|
1233
1235
|
r"""
|
1234
1236
|
:param _LogIds: 操作日志 ID数组,最多 200 个
|
1235
1237
|
可通过任意批量操作接口获取,例如:
|
1236
|
-
BatchModifyDomainInfo
|
1237
|
-
ModifyDomainDNSBatch
|
1238
|
-
ModifyDomainOwnerBatch
|
1239
|
-
UpdateProhibitionBatch
|
1240
|
-
TransferProhibitionBatch
|
1241
|
-
TransferInDomainBatch
|
1242
|
-
TransferInDomainBatchBuy
|
1243
|
-
CancelTransferOutInBatch
|
1238
|
+
[BatchModifyDomainInfo](https://cloud.tencent.com/document/product/242/49197)
|
1239
|
+
[ModifyDomainDNSBatch](https://cloud.tencent.com/document/product/242/49211)
|
1240
|
+
[ModifyDomainOwnerBatch](https://cloud.tencent.com/document/product/242/49196)
|
1241
|
+
[UpdateProhibitionBatch](https://cloud.tencent.com/document/api/242/49193)
|
1242
|
+
[TransferProhibitionBatch](https://cloud.tencent.com/document/api/242/49194)
|
1243
|
+
[TransferInDomainBatch](https://cloud.tencent.com/document/api/242/49195)
|
1244
1244
|
:type LogIds: list of int non-negative
|
1245
1245
|
"""
|
1246
1246
|
self._LogIds = None
|
@@ -1249,14 +1249,12 @@ CancelTransferOutInBatch
|
|
1249
1249
|
def LogIds(self):
|
1250
1250
|
"""操作日志 ID数组,最多 200 个
|
1251
1251
|
可通过任意批量操作接口获取,例如:
|
1252
|
-
BatchModifyDomainInfo
|
1253
|
-
ModifyDomainDNSBatch
|
1254
|
-
ModifyDomainOwnerBatch
|
1255
|
-
UpdateProhibitionBatch
|
1256
|
-
TransferProhibitionBatch
|
1257
|
-
TransferInDomainBatch
|
1258
|
-
TransferInDomainBatchBuy
|
1259
|
-
CancelTransferOutInBatch
|
1252
|
+
[BatchModifyDomainInfo](https://cloud.tencent.com/document/product/242/49197)
|
1253
|
+
[ModifyDomainDNSBatch](https://cloud.tencent.com/document/product/242/49211)
|
1254
|
+
[ModifyDomainOwnerBatch](https://cloud.tencent.com/document/product/242/49196)
|
1255
|
+
[UpdateProhibitionBatch](https://cloud.tencent.com/document/api/242/49193)
|
1256
|
+
[TransferProhibitionBatch](https://cloud.tencent.com/document/api/242/49194)
|
1257
|
+
[TransferInDomainBatch](https://cloud.tencent.com/document/api/242/49195)
|
1260
1258
|
:rtype: list of int non-negative
|
1261
1259
|
"""
|
1262
1260
|
return self._LogIds
|
@@ -1877,7 +1875,7 @@ class CreateCustomDnsHostRequest(AbstractModel):
|
|
1877
1875
|
def __init__(self):
|
1878
1876
|
r"""
|
1879
1877
|
:param _DomainId: 域名实例ID
|
1880
|
-
可通过
|
1878
|
+
可通过DescribeDomainNameList接口获取(https://cloud.tencent.com/document/api/242/48941)
|
1881
1879
|
:type DomainId: str
|
1882
1880
|
:param _DnsName: Dns名称
|
1883
1881
|
例如:<>.test.com;其中<>就是Dns名称,可以是任意域名允许的格式
|
@@ -1893,7 +1891,7 @@ class CreateCustomDnsHostRequest(AbstractModel):
|
|
1893
1891
|
@property
|
1894
1892
|
def DomainId(self):
|
1895
1893
|
"""域名实例ID
|
1896
|
-
可通过
|
1894
|
+
可通过DescribeDomainNameList接口获取(https://cloud.tencent.com/document/api/242/48941)
|
1897
1895
|
:rtype: str
|
1898
1896
|
"""
|
1899
1897
|
return self._DomainId
|
@@ -2538,7 +2536,7 @@ class DeleteBiddingRequest(AbstractModel):
|
|
2538
2536
|
def __init__(self):
|
2539
2537
|
r"""
|
2540
2538
|
:param _BusinessID: 预约ID
|
2541
|
-
可通过DescribeBiddingList接口获取
|
2539
|
+
可通过[DescribeBiddingList](https://cloud.tencent.com/document/api/242/106598)接口获取
|
2542
2540
|
:type BusinessID: str
|
2543
2541
|
"""
|
2544
2542
|
self._BusinessID = None
|
@@ -2546,7 +2544,7 @@ class DeleteBiddingRequest(AbstractModel):
|
|
2546
2544
|
@property
|
2547
2545
|
def BusinessID(self):
|
2548
2546
|
"""预约ID
|
2549
|
-
可通过DescribeBiddingList接口获取
|
2547
|
+
可通过[DescribeBiddingList](https://cloud.tencent.com/document/api/242/106598)接口获取
|
2550
2548
|
:rtype: str
|
2551
2549
|
"""
|
2552
2550
|
return self._BusinessID
|
@@ -2604,7 +2602,7 @@ class DeleteCustomDnsHostRequest(AbstractModel):
|
|
2604
2602
|
def __init__(self):
|
2605
2603
|
r"""
|
2606
2604
|
:param _DomainId: 域名实例ID
|
2607
|
-
可通过
|
2605
|
+
可通过DescribeDomainNameList接口获取(https://cloud.tencent.com/document/api/242/48941)
|
2608
2606
|
:type DomainId: str
|
2609
2607
|
:param _DnsName: DNS名称
|
2610
2608
|
例如:<>.test.com;其中<>就是Dns名称,可以是任意域名允许的格式
|
@@ -2616,7 +2614,7 @@ class DeleteCustomDnsHostRequest(AbstractModel):
|
|
2616
2614
|
@property
|
2617
2615
|
def DomainId(self):
|
2618
2616
|
"""域名实例ID
|
2619
|
-
可通过
|
2617
|
+
可通过DescribeDomainNameList接口获取(https://cloud.tencent.com/document/api/242/48941)
|
2620
2618
|
:rtype: str
|
2621
2619
|
"""
|
2622
2620
|
return self._DomainId
|
@@ -2910,7 +2908,8 @@ class DescribeAuctionListRequest(AbstractModel):
|
|
2910
2908
|
|
2911
2909
|
def __init__(self):
|
2912
2910
|
r"""
|
2913
|
-
:param _BusinessId: 业务ID
|
2911
|
+
:param _BusinessId: 业务ID
|
2912
|
+
通过接口[DescribeBiddingList](https://cloud.tencent.com/document/api/242/106598)返回结果中获取
|
2914
2913
|
:type BusinessId: str
|
2915
2914
|
:param _Limit: 条数,默认10,最大100
|
2916
2915
|
:type Limit: int
|
@@ -2923,7 +2922,8 @@ class DescribeAuctionListRequest(AbstractModel):
|
|
2923
2922
|
|
2924
2923
|
@property
|
2925
2924
|
def BusinessId(self):
|
2926
|
-
"""业务ID
|
2925
|
+
"""业务ID
|
2926
|
+
通过接口[DescribeBiddingList](https://cloud.tencent.com/document/api/242/106598)返回结果中获取
|
2927
2927
|
:rtype: str
|
2928
2928
|
"""
|
2929
2929
|
return self._BusinessId
|
@@ -3283,7 +3283,7 @@ class DescribeBiddingAppointDetailRequest(AbstractModel):
|
|
3283
3283
|
def __init__(self):
|
3284
3284
|
r"""
|
3285
3285
|
:param _BusinessID: 预约ID
|
3286
|
-
可通过
|
3286
|
+
可通过[DescribeBiddingAppointList](https://cloud.tencent.com/document/api/242/106600)接口获取
|
3287
3287
|
:type BusinessID: str
|
3288
3288
|
"""
|
3289
3289
|
self._BusinessID = None
|
@@ -3291,7 +3291,7 @@ class DescribeBiddingAppointDetailRequest(AbstractModel):
|
|
3291
3291
|
@property
|
3292
3292
|
def BusinessID(self):
|
3293
3293
|
"""预约ID
|
3294
|
-
可通过
|
3294
|
+
可通过[DescribeBiddingAppointList](https://cloud.tencent.com/document/api/242/106600)接口获取
|
3295
3295
|
:rtype: str
|
3296
3296
|
"""
|
3297
3297
|
return self._BusinessID
|
@@ -3325,14 +3325,19 @@ class DescribeBiddingAppointDetailResponse(AbstractModel):
|
|
3325
3325
|
:param _AppointNum: 预约人数
|
3326
3326
|
:type AppointNum: int
|
3327
3327
|
:param _AppointStartTime: 预约开始时间
|
3328
|
+
格式:YYYY-MM-DD HH:mm:ss
|
3328
3329
|
:type AppointStartTime: str
|
3329
3330
|
:param _AppointEndTime: 预约结束时间
|
3331
|
+
格式:YYYY-MM-DD HH:mm:ss
|
3330
3332
|
:type AppointEndTime: str
|
3331
3333
|
:param _RegTime: 注册时间
|
3334
|
+
格式:YYYY-MM-DD HH:mm:ss
|
3332
3335
|
:type RegTime: str
|
3333
3336
|
:param _ExpireTime: 过期时间
|
3337
|
+
格式:YYYY-MM-DD HH:mm:ss
|
3334
3338
|
:type ExpireTime: str
|
3335
3339
|
:param _DeleteTime: 删除时间
|
3340
|
+
格式:YYYY-MM-DD HH:mm:ss
|
3336
3341
|
:type DeleteTime: str
|
3337
3342
|
:param _AppointPrice: 当前价格 单位元
|
3338
3343
|
:type AppointPrice: int
|
@@ -3384,6 +3389,7 @@ yes:退回 no: 未退回
|
|
3384
3389
|
@property
|
3385
3390
|
def AppointStartTime(self):
|
3386
3391
|
"""预约开始时间
|
3392
|
+
格式:YYYY-MM-DD HH:mm:ss
|
3387
3393
|
:rtype: str
|
3388
3394
|
"""
|
3389
3395
|
return self._AppointStartTime
|
@@ -3395,6 +3401,7 @@ yes:退回 no: 未退回
|
|
3395
3401
|
@property
|
3396
3402
|
def AppointEndTime(self):
|
3397
3403
|
"""预约结束时间
|
3404
|
+
格式:YYYY-MM-DD HH:mm:ss
|
3398
3405
|
:rtype: str
|
3399
3406
|
"""
|
3400
3407
|
return self._AppointEndTime
|
@@ -3406,6 +3413,7 @@ yes:退回 no: 未退回
|
|
3406
3413
|
@property
|
3407
3414
|
def RegTime(self):
|
3408
3415
|
""" 注册时间
|
3416
|
+
格式:YYYY-MM-DD HH:mm:ss
|
3409
3417
|
:rtype: str
|
3410
3418
|
"""
|
3411
3419
|
return self._RegTime
|
@@ -3417,6 +3425,7 @@ yes:退回 no: 未退回
|
|
3417
3425
|
@property
|
3418
3426
|
def ExpireTime(self):
|
3419
3427
|
"""过期时间
|
3428
|
+
格式:YYYY-MM-DD HH:mm:ss
|
3420
3429
|
:rtype: str
|
3421
3430
|
"""
|
3422
3431
|
return self._ExpireTime
|
@@ -3428,6 +3437,7 @@ yes:退回 no: 未退回
|
|
3428
3437
|
@property
|
3429
3438
|
def DeleteTime(self):
|
3430
3439
|
"""删除时间
|
3440
|
+
格式:YYYY-MM-DD HH:mm:ss
|
3431
3441
|
:rtype: str
|
3432
3442
|
"""
|
3433
3443
|
return self._DeleteTime
|
@@ -3516,15 +3526,22 @@ class DescribeBiddingAppointListRequest(AbstractModel):
|
|
3516
3526
|
def __init__(self):
|
3517
3527
|
r"""
|
3518
3528
|
:param _PageNumber: 页码
|
3529
|
+
默认值1
|
3519
3530
|
:type PageNumber: int
|
3520
3531
|
:param _PageSize: 每页数量
|
3532
|
+
默认:20 取值范围【1,200】
|
3521
3533
|
:type PageSize: int
|
3522
3534
|
:param _Domain: 域名
|
3523
3535
|
:type Domain: str
|
3524
3536
|
:param _Status: 状态:
|
3525
3537
|
1 已预约,2 竞价中,3 等待出价 4 竞价失败 5 等待支付 6 等待转移,7 转移中 8 交易成功 9 预约持有者赎回 10 竞价持有者赎回 11 其他阶段持有者赎回 12 违约
|
3526
3538
|
:type Status: list of int non-negative
|
3527
|
-
:param _SortField: 排序字段:
|
3539
|
+
:param _SortField: 排序字段:
|
3540
|
+
默认<空>,不排序
|
3541
|
+
可选值:
|
3542
|
+
AppointEndTime 预约结束时间
|
3543
|
+
BiddingPrice 竞价保证金
|
3544
|
+
BiddingEndTime 竞价结束时间
|
3528
3545
|
:type SortField: str
|
3529
3546
|
:param _SortOrder: 排序规则:asc升序,desc降序
|
3530
3547
|
:type SortOrder: str
|
@@ -3539,6 +3556,7 @@ class DescribeBiddingAppointListRequest(AbstractModel):
|
|
3539
3556
|
@property
|
3540
3557
|
def PageNumber(self):
|
3541
3558
|
"""页码
|
3559
|
+
默认值1
|
3542
3560
|
:rtype: int
|
3543
3561
|
"""
|
3544
3562
|
return self._PageNumber
|
@@ -3550,6 +3568,7 @@ class DescribeBiddingAppointListRequest(AbstractModel):
|
|
3550
3568
|
@property
|
3551
3569
|
def PageSize(self):
|
3552
3570
|
"""每页数量
|
3571
|
+
默认:20 取值范围【1,200】
|
3553
3572
|
:rtype: int
|
3554
3573
|
"""
|
3555
3574
|
return self._PageSize
|
@@ -3583,7 +3602,12 @@ class DescribeBiddingAppointListRequest(AbstractModel):
|
|
3583
3602
|
|
3584
3603
|
@property
|
3585
3604
|
def SortField(self):
|
3586
|
-
"""排序字段:
|
3605
|
+
"""排序字段:
|
3606
|
+
默认<空>,不排序
|
3607
|
+
可选值:
|
3608
|
+
AppointEndTime 预约结束时间
|
3609
|
+
BiddingPrice 竞价保证金
|
3610
|
+
BiddingEndTime 竞价结束时间
|
3587
3611
|
:rtype: str
|
3588
3612
|
"""
|
3589
3613
|
return self._SortField
|
@@ -3692,7 +3716,7 @@ class DescribeBiddingDetailRequest(AbstractModel):
|
|
3692
3716
|
def __init__(self):
|
3693
3717
|
r"""
|
3694
3718
|
:param _BusinessID: 预约ID
|
3695
|
-
可通过DescribeBiddingList接口获取
|
3719
|
+
可通过[DescribeBiddingList](https://cloud.tencent.com/document/api/242/106598)接口获取
|
3696
3720
|
:type BusinessID: str
|
3697
3721
|
"""
|
3698
3722
|
self._BusinessID = None
|
@@ -3700,7 +3724,7 @@ class DescribeBiddingDetailRequest(AbstractModel):
|
|
3700
3724
|
@property
|
3701
3725
|
def BusinessID(self):
|
3702
3726
|
"""预约ID
|
3703
|
-
可通过DescribeBiddingList接口获取
|
3727
|
+
可通过[DescribeBiddingList](https://cloud.tencent.com/document/api/242/106598)接口获取
|
3704
3728
|
:rtype: str
|
3705
3729
|
"""
|
3706
3730
|
return self._BusinessID
|
@@ -3734,14 +3758,19 @@ class DescribeBiddingDetailResponse(AbstractModel):
|
|
3734
3758
|
:param _BiddingNum: 出价次数
|
3735
3759
|
:type BiddingNum: int
|
3736
3760
|
:param _BiddingStartTime: 竞价开始时间
|
3761
|
+
格式:YYYY-MM-DD HH:mm:ss
|
3737
3762
|
:type BiddingStartTime: str
|
3738
3763
|
:param _BiddingEndTime: 竞价结束时间
|
3764
|
+
格式:YYYY-MM-DD HH:mm:ss
|
3739
3765
|
:type BiddingEndTime: str
|
3740
3766
|
:param _RegTime: 注册时间
|
3767
|
+
格式:YYYY-MM-DD HH:mm:ss
|
3741
3768
|
:type RegTime: str
|
3742
3769
|
:param _ExpireTime: 过期时间
|
3770
|
+
格式:YYYY-MM-DD HH:mm:ss
|
3743
3771
|
:type ExpireTime: str
|
3744
3772
|
:param _DeleteTime: 删除时间
|
3773
|
+
格式:YYYY-MM-DD HH:mm:ss
|
3745
3774
|
:type DeleteTime: str
|
3746
3775
|
:param _CurrentPrice: 当前价格 单位元
|
3747
3776
|
:type CurrentPrice: int
|
@@ -3801,6 +3830,7 @@ class DescribeBiddingDetailResponse(AbstractModel):
|
|
3801
3830
|
@property
|
3802
3831
|
def BiddingStartTime(self):
|
3803
3832
|
"""竞价开始时间
|
3833
|
+
格式:YYYY-MM-DD HH:mm:ss
|
3804
3834
|
:rtype: str
|
3805
3835
|
"""
|
3806
3836
|
return self._BiddingStartTime
|
@@ -3812,6 +3842,7 @@ class DescribeBiddingDetailResponse(AbstractModel):
|
|
3812
3842
|
@property
|
3813
3843
|
def BiddingEndTime(self):
|
3814
3844
|
"""竞价结束时间
|
3845
|
+
格式:YYYY-MM-DD HH:mm:ss
|
3815
3846
|
:rtype: str
|
3816
3847
|
"""
|
3817
3848
|
return self._BiddingEndTime
|
@@ -3823,6 +3854,7 @@ class DescribeBiddingDetailResponse(AbstractModel):
|
|
3823
3854
|
@property
|
3824
3855
|
def RegTime(self):
|
3825
3856
|
""" 注册时间
|
3857
|
+
格式:YYYY-MM-DD HH:mm:ss
|
3826
3858
|
:rtype: str
|
3827
3859
|
"""
|
3828
3860
|
return self._RegTime
|
@@ -3834,6 +3866,7 @@ class DescribeBiddingDetailResponse(AbstractModel):
|
|
3834
3866
|
@property
|
3835
3867
|
def ExpireTime(self):
|
3836
3868
|
"""过期时间
|
3869
|
+
格式:YYYY-MM-DD HH:mm:ss
|
3837
3870
|
:rtype: str
|
3838
3871
|
"""
|
3839
3872
|
return self._ExpireTime
|
@@ -3845,6 +3878,7 @@ class DescribeBiddingDetailResponse(AbstractModel):
|
|
3845
3878
|
@property
|
3846
3879
|
def DeleteTime(self):
|
3847
3880
|
"""删除时间
|
3881
|
+
格式:YYYY-MM-DD HH:mm:ss
|
3848
3882
|
:rtype: str
|
3849
3883
|
"""
|
3850
3884
|
return self._DeleteTime
|
@@ -4143,16 +4177,16 @@ class DescribeBiddingSuccessfulDetailRequest(AbstractModel):
|
|
4143
4177
|
|
4144
4178
|
def __init__(self):
|
4145
4179
|
r"""
|
4146
|
-
:param _BusinessID: 预约ID
|
4147
|
-
可通过DescribeBiddingSuccessfulList接口获取
|
4180
|
+
:param _BusinessID: 预约ID
|
4181
|
+
可通过[DescribeBiddingSuccessfulList](https://cloud.tencent.com/document/api/242/106596)接口获取
|
4148
4182
|
:type BusinessID: str
|
4149
4183
|
"""
|
4150
4184
|
self._BusinessID = None
|
4151
4185
|
|
4152
4186
|
@property
|
4153
4187
|
def BusinessID(self):
|
4154
|
-
"""预约ID
|
4155
|
-
可通过DescribeBiddingSuccessfulList接口获取
|
4188
|
+
"""预约ID
|
4189
|
+
可通过[DescribeBiddingSuccessfulList](https://cloud.tencent.com/document/api/242/106596)接口获取
|
4156
4190
|
:rtype: str
|
4157
4191
|
"""
|
4158
4192
|
return self._BusinessID
|
@@ -4184,16 +4218,21 @@ class DescribeBiddingSuccessfulDetailResponse(AbstractModel):
|
|
4184
4218
|
:param _Domain: 域名
|
4185
4219
|
:type Domain: str
|
4186
4220
|
:param _SuccessfulTime: 得标时间
|
4221
|
+
格式:YYYY-MM-DD HH:mm:ss
|
4187
4222
|
:type SuccessfulTime: str
|
4188
4223
|
:param _SuccessfulPrice: 得标价格 单位元
|
4189
4224
|
:type SuccessfulPrice: float
|
4190
4225
|
:param _RegTime: 注册时间
|
4226
|
+
格式:YYYY-MM-DD HH:mm:ss
|
4191
4227
|
:type RegTime: str
|
4192
4228
|
:param _ExpireTime: 过期时间
|
4229
|
+
格式:YYYY-MM-DD HH:mm:ss
|
4193
4230
|
:type ExpireTime: str
|
4194
4231
|
:param _DeleteTime: 删除时间
|
4232
|
+
格式:YYYY-MM-DD HH:mm:ss
|
4195
4233
|
:type DeleteTime: str
|
4196
4234
|
:param _PayEndTime: 付款结束时间
|
4235
|
+
格式:YYYY-MM-DD HH:mm:ss
|
4197
4236
|
:type PayEndTime: str
|
4198
4237
|
:param _BiddingBondRefund: 保证金,是否退款,yes表示退款,no表示不退款
|
4199
4238
|
:type BiddingBondRefund: str
|
@@ -4230,6 +4269,7 @@ class DescribeBiddingSuccessfulDetailResponse(AbstractModel):
|
|
4230
4269
|
@property
|
4231
4270
|
def SuccessfulTime(self):
|
4232
4271
|
"""得标时间
|
4272
|
+
格式:YYYY-MM-DD HH:mm:ss
|
4233
4273
|
:rtype: str
|
4234
4274
|
"""
|
4235
4275
|
return self._SuccessfulTime
|
@@ -4252,6 +4292,7 @@ class DescribeBiddingSuccessfulDetailResponse(AbstractModel):
|
|
4252
4292
|
@property
|
4253
4293
|
def RegTime(self):
|
4254
4294
|
""" 注册时间
|
4295
|
+
格式:YYYY-MM-DD HH:mm:ss
|
4255
4296
|
:rtype: str
|
4256
4297
|
"""
|
4257
4298
|
return self._RegTime
|
@@ -4263,6 +4304,7 @@ class DescribeBiddingSuccessfulDetailResponse(AbstractModel):
|
|
4263
4304
|
@property
|
4264
4305
|
def ExpireTime(self):
|
4265
4306
|
"""过期时间
|
4307
|
+
格式:YYYY-MM-DD HH:mm:ss
|
4266
4308
|
:rtype: str
|
4267
4309
|
"""
|
4268
4310
|
return self._ExpireTime
|
@@ -4274,6 +4316,7 @@ class DescribeBiddingSuccessfulDetailResponse(AbstractModel):
|
|
4274
4316
|
@property
|
4275
4317
|
def DeleteTime(self):
|
4276
4318
|
"""删除时间
|
4319
|
+
格式:YYYY-MM-DD HH:mm:ss
|
4277
4320
|
:rtype: str
|
4278
4321
|
"""
|
4279
4322
|
return self._DeleteTime
|
@@ -4285,6 +4328,7 @@ class DescribeBiddingSuccessfulDetailResponse(AbstractModel):
|
|
4285
4328
|
@property
|
4286
4329
|
def PayEndTime(self):
|
4287
4330
|
"""付款结束时间
|
4331
|
+
格式:YYYY-MM-DD HH:mm:ss
|
4288
4332
|
:rtype: str
|
4289
4333
|
"""
|
4290
4334
|
return self._PayEndTime
|
@@ -4360,14 +4404,18 @@ class DescribeBiddingSuccessfulListRequest(AbstractModel):
|
|
4360
4404
|
def __init__(self):
|
4361
4405
|
r"""
|
4362
4406
|
:param _PageNumber: 页码
|
4407
|
+
默认:1
|
4363
4408
|
:type PageNumber: int
|
4364
4409
|
:param _PageSize: 每页数量
|
4410
|
+
默认:20 取值范围【1,200】
|
4365
4411
|
:type PageSize: int
|
4366
4412
|
:param _Domain: 域名
|
4367
4413
|
:type Domain: str
|
4368
4414
|
:param _Status: 状态:5 等待支付 6 等待转移, 7 转移中,8 交易成功,11 尾款阶段持有者索回,12 已违约
|
4369
4415
|
:type Status: list of int non-negative
|
4370
|
-
:param _SortField: 排序字段:
|
4416
|
+
:param _SortField: 排序字段:
|
4417
|
+
默认<空>,不排序
|
4418
|
+
SuccessfulTime 预约结束时间
|
4371
4419
|
:type SortField: str
|
4372
4420
|
:param _SortOrder: 排序规则:asc升序,desc降序
|
4373
4421
|
:type SortOrder: str
|
@@ -4382,6 +4430,7 @@ class DescribeBiddingSuccessfulListRequest(AbstractModel):
|
|
4382
4430
|
@property
|
4383
4431
|
def PageNumber(self):
|
4384
4432
|
"""页码
|
4433
|
+
默认:1
|
4385
4434
|
:rtype: int
|
4386
4435
|
"""
|
4387
4436
|
return self._PageNumber
|
@@ -4393,6 +4442,7 @@ class DescribeBiddingSuccessfulListRequest(AbstractModel):
|
|
4393
4442
|
@property
|
4394
4443
|
def PageSize(self):
|
4395
4444
|
"""每页数量
|
4445
|
+
默认:20 取值范围【1,200】
|
4396
4446
|
:rtype: int
|
4397
4447
|
"""
|
4398
4448
|
return self._PageSize
|
@@ -4425,7 +4475,9 @@ class DescribeBiddingSuccessfulListRequest(AbstractModel):
|
|
4425
4475
|
|
4426
4476
|
@property
|
4427
4477
|
def SortField(self):
|
4428
|
-
"""排序字段:
|
4478
|
+
"""排序字段:
|
4479
|
+
默认<空>,不排序
|
4480
|
+
SuccessfulTime 预约结束时间
|
4429
4481
|
:rtype: str
|
4430
4482
|
"""
|
4431
4483
|
return self._SortField
|
@@ -4534,7 +4586,7 @@ class DescribeCustomDnsHostSetRequest(AbstractModel):
|
|
4534
4586
|
def __init__(self):
|
4535
4587
|
r"""
|
4536
4588
|
:param _DomainId: 域名实例ID
|
4537
|
-
可通过
|
4589
|
+
可通过DescribeDomainNameList接口获取(https://cloud.tencent.com/document/api/242/48941)
|
4538
4590
|
:type DomainId: str
|
4539
4591
|
:param _Limit: 返回数量,默认为20,取值范围[1,100]
|
4540
4592
|
:type Limit: int
|
@@ -4548,7 +4600,7 @@ class DescribeCustomDnsHostSetRequest(AbstractModel):
|
|
4548
4600
|
@property
|
4549
4601
|
def DomainId(self):
|
4550
4602
|
"""域名实例ID
|
4551
|
-
可通过
|
4603
|
+
可通过DescribeDomainNameList接口获取(https://cloud.tencent.com/document/api/242/48941)
|
4552
4604
|
:rtype: str
|
4553
4605
|
"""
|
4554
4606
|
return self._DomainId
|
@@ -4665,6 +4717,7 @@ class DescribeDomainBaseInfoRequest(AbstractModel):
|
|
4665
4717
|
def __init__(self):
|
4666
4718
|
r"""
|
4667
4719
|
:param _Domain: 域名
|
4720
|
+
可通过DescribeDomainNameList接口获取(https://cloud.tencent.com/document/api/242/48941)
|
4668
4721
|
:type Domain: str
|
4669
4722
|
"""
|
4670
4723
|
self._Domain = None
|
@@ -4672,6 +4725,7 @@ class DescribeDomainBaseInfoRequest(AbstractModel):
|
|
4672
4725
|
@property
|
4673
4726
|
def Domain(self):
|
4674
4727
|
"""域名
|
4728
|
+
可通过DescribeDomainNameList接口获取(https://cloud.tencent.com/document/api/242/48941)
|
4675
4729
|
:rtype: str
|
4676
4730
|
"""
|
4677
4731
|
return self._Domain
|
@@ -5092,16 +5146,16 @@ class DescribePayWaitDetailRequest(AbstractModel):
|
|
5092
5146
|
|
5093
5147
|
def __init__(self):
|
5094
5148
|
r"""
|
5095
|
-
:param _BusinessId: 业务ID
|
5096
|
-
可通过DescribeBiddingList接口获取
|
5149
|
+
:param _BusinessId: 业务ID(竞价域名的预约ID)
|
5150
|
+
可通过[DescribeBiddingList](https://cloud.tencent.com/document/api/242/106598)接口获取
|
5097
5151
|
:type BusinessId: str
|
5098
5152
|
"""
|
5099
5153
|
self._BusinessId = None
|
5100
5154
|
|
5101
5155
|
@property
|
5102
5156
|
def BusinessId(self):
|
5103
|
-
"""业务ID
|
5104
|
-
可通过DescribeBiddingList接口获取
|
5157
|
+
"""业务ID(竞价域名的预约ID)
|
5158
|
+
可通过[DescribeBiddingList](https://cloud.tencent.com/document/api/242/106598)接口获取
|
5105
5159
|
:rtype: str
|
5106
5160
|
"""
|
5107
5161
|
return self._BusinessId
|
@@ -5138,9 +5192,11 @@ sub:已经预订
|
|
5138
5192
|
wait:等待出价
|
5139
5193
|
finish:完成出价
|
5140
5194
|
:type Status: str
|
5141
|
-
:param _EndTime: 支付结束时间
|
5195
|
+
:param _EndTime: 支付结束时间
|
5196
|
+
格式:YYYY-MM-DD HH:mm:ss
|
5142
5197
|
:type EndTime: str
|
5143
|
-
:param _RegTime: 域名注册时间
|
5198
|
+
:param _RegTime: 域名注册时间
|
5199
|
+
格式:YYYY-MM-DD HH:mm:ss
|
5144
5200
|
:type RegTime: str
|
5145
5201
|
:param _Price: 域名成交价格 单位元
|
5146
5202
|
:type Price: float
|
@@ -5185,7 +5241,8 @@ finish:完成出价
|
|
5185
5241
|
|
5186
5242
|
@property
|
5187
5243
|
def EndTime(self):
|
5188
|
-
"""支付结束时间
|
5244
|
+
"""支付结束时间
|
5245
|
+
格式:YYYY-MM-DD HH:mm:ss
|
5189
5246
|
:rtype: str
|
5190
5247
|
"""
|
5191
5248
|
return self._EndTime
|
@@ -5196,7 +5253,8 @@ finish:完成出价
|
|
5196
5253
|
|
5197
5254
|
@property
|
5198
5255
|
def RegTime(self):
|
5199
|
-
"""域名注册时间
|
5256
|
+
"""域名注册时间
|
5257
|
+
格式:YYYY-MM-DD HH:mm:ss
|
5200
5258
|
:rtype: str
|
5201
5259
|
"""
|
5202
5260
|
return self._RegTime
|
@@ -7035,11 +7093,14 @@ class DescribeUnPreDomainDetailResponse(AbstractModel):
|
|
7035
7093
|
:type Domain: str
|
7036
7094
|
:param _PreCount: 预约人数
|
7037
7095
|
:type PreCount: int
|
7038
|
-
:param _RegTime: 域名注册时间
|
7096
|
+
:param _RegTime: 域名注册时间
|
7097
|
+
格式:YYYY-MM-DD HH:mm:ss
|
7039
7098
|
:type RegTime: str
|
7040
|
-
:param _DeleteTime: 域名删除时间
|
7099
|
+
:param _DeleteTime: 域名删除时间
|
7100
|
+
格式:YYYY-MM-DD HH:mm:ss
|
7041
7101
|
:type DeleteTime: str
|
7042
|
-
:param _ExpireTime: 到期时间
|
7102
|
+
:param _ExpireTime: 到期时间
|
7103
|
+
格式:YYYY-MM-DD HH:mm:ss
|
7043
7104
|
:type ExpireTime: str
|
7044
7105
|
:param _Status: 域名状态
|
7045
7106
|
bid:出价
|
@@ -7095,7 +7156,8 @@ noAction:无法操作
|
|
7095
7156
|
|
7096
7157
|
@property
|
7097
7158
|
def RegTime(self):
|
7098
|
-
"""域名注册时间
|
7159
|
+
"""域名注册时间
|
7160
|
+
格式:YYYY-MM-DD HH:mm:ss
|
7099
7161
|
:rtype: str
|
7100
7162
|
"""
|
7101
7163
|
return self._RegTime
|
@@ -7106,7 +7168,8 @@ noAction:无法操作
|
|
7106
7168
|
|
7107
7169
|
@property
|
7108
7170
|
def DeleteTime(self):
|
7109
|
-
"""域名删除时间
|
7171
|
+
"""域名删除时间
|
7172
|
+
格式:YYYY-MM-DD HH:mm:ss
|
7110
7173
|
:rtype: str
|
7111
7174
|
"""
|
7112
7175
|
return self._DeleteTime
|
@@ -7117,7 +7180,8 @@ noAction:无法操作
|
|
7117
7180
|
|
7118
7181
|
@property
|
7119
7182
|
def ExpireTime(self):
|
7120
|
-
"""到期时间
|
7183
|
+
"""到期时间
|
7184
|
+
格式:YYYY-MM-DD HH:mm:ss
|
7121
7185
|
:rtype: str
|
7122
7186
|
"""
|
7123
7187
|
return self._ExpireTime
|
@@ -7239,7 +7303,7 @@ Approved:实名审核通过
|
|
7239
7303
|
Reject:实名审核失败
|
7240
7304
|
NoAudit: 无需实名认证
|
7241
7305
|
:type RealNameAuditStatus: str
|
7242
|
-
:param _RealNameAuditUnpassReason:
|
7306
|
+
:param _RealNameAuditUnpassReason: 域名实名认证不通过原因。<具体内容以实名审核机构返回为准>
|
7243
7307
|
:type RealNameAuditUnpassReason: str
|
7244
7308
|
:param _DomainNameAuditStatus: 域名命名审核状态。
|
7245
7309
|
NotAudit:命名审核未上传
|
@@ -7248,12 +7312,14 @@ Auditing:域名命名审核中
|
|
7248
7312
|
Approved:域名命名审核通过
|
7249
7313
|
Rejected:域名命名审核拒绝
|
7250
7314
|
:type DomainNameAuditStatus: str
|
7251
|
-
:param _DomainNameAuditUnpassReason:
|
7315
|
+
:param _DomainNameAuditUnpassReason: 域名命名审核不通过原因。<具体内容以实名审核机构返回为准>
|
7252
7316
|
注意:此字段可能返回 null,表示取不到有效值。
|
7253
7317
|
:type DomainNameAuditUnpassReason: str
|
7254
7318
|
:param _CreationDate: 注册时间。
|
7319
|
+
格式:YYYY-MM-DD
|
7255
7320
|
:type CreationDate: str
|
7256
7321
|
:param _ExpirationDate: 到期时间
|
7322
|
+
格式:YYYY-MM-DD
|
7257
7323
|
:type ExpirationDate: str
|
7258
7324
|
:param _DomainStatus: 域名状态。
|
7259
7325
|
ok:正常
|
@@ -7298,6 +7364,7 @@ xinnet: Xin Net Technology Corporation(北京新网数码信息技术有限公
|
|
7298
7364
|
false:关闭锁定
|
7299
7365
|
:type LockTransfer: bool
|
7300
7366
|
:param _LockEndTime: 锁定结束时间
|
7367
|
+
格式:YYYY-MM-DD HH:mm:ss
|
7301
7368
|
:type LockEndTime: str
|
7302
7369
|
"""
|
7303
7370
|
self._DomainId = None
|
@@ -7355,7 +7422,7 @@ NoAudit: 无需实名认证
|
|
7355
7422
|
|
7356
7423
|
@property
|
7357
7424
|
def RealNameAuditUnpassReason(self):
|
7358
|
-
"""
|
7425
|
+
"""域名实名认证不通过原因。<具体内容以实名审核机构返回为准>
|
7359
7426
|
:rtype: str
|
7360
7427
|
"""
|
7361
7428
|
return self._RealNameAuditUnpassReason
|
@@ -7382,7 +7449,7 @@ Rejected:域名命名审核拒绝
|
|
7382
7449
|
|
7383
7450
|
@property
|
7384
7451
|
def DomainNameAuditUnpassReason(self):
|
7385
|
-
"""
|
7452
|
+
"""域名命名审核不通过原因。<具体内容以实名审核机构返回为准>
|
7386
7453
|
注意:此字段可能返回 null,表示取不到有效值。
|
7387
7454
|
:rtype: str
|
7388
7455
|
"""
|
@@ -7395,6 +7462,7 @@ Rejected:域名命名审核拒绝
|
|
7395
7462
|
@property
|
7396
7463
|
def CreationDate(self):
|
7397
7464
|
"""注册时间。
|
7465
|
+
格式:YYYY-MM-DD
|
7398
7466
|
:rtype: str
|
7399
7467
|
"""
|
7400
7468
|
return self._CreationDate
|
@@ -7406,6 +7474,7 @@ Rejected:域名命名审核拒绝
|
|
7406
7474
|
@property
|
7407
7475
|
def ExpirationDate(self):
|
7408
7476
|
"""到期时间
|
7477
|
+
格式:YYYY-MM-DD
|
7409
7478
|
:rtype: str
|
7410
7479
|
"""
|
7411
7480
|
return self._ExpirationDate
|
@@ -7504,6 +7573,7 @@ false:关闭锁定
|
|
7504
7573
|
@property
|
7505
7574
|
def LockEndTime(self):
|
7506
7575
|
"""锁定结束时间
|
7576
|
+
格式:YYYY-MM-DD HH:mm:ss
|
7507
7577
|
:rtype: str
|
7508
7578
|
"""
|
7509
7579
|
return self._LockEndTime
|
@@ -7886,12 +7956,23 @@ false 不是
|
|
7886
7956
|
2:设置后,关闭
|
7887
7957
|
:type AutoRenew: int
|
7888
7958
|
:param _CreationDate: 注册时间。
|
7959
|
+
格式:YYYY-MM-DD HH:mm:ss
|
7889
7960
|
:type CreationDate: str
|
7890
7961
|
:param _ExpirationDate: 到期时间。
|
7962
|
+
格式:YYYY-MM-DD HH:mm:ss
|
7891
7963
|
:type ExpirationDate: str
|
7892
|
-
:param _Tld:
|
7964
|
+
:param _Tld: 域名后缀,根据具体域名确定
|
7965
|
+
例如:
|
7966
|
+
123.com 后缀则为.com
|
7967
|
+
123.com.cn 后缀则为.com.cn
|
7968
|
+
123.中国 后缀则为.中国
|
7969
|
+
|
7893
7970
|
:type Tld: str
|
7894
|
-
:param _CodeTld:
|
7971
|
+
:param _CodeTld: 编码后的后缀(中文会进行Punycode编码)根据具体域名确定
|
7972
|
+
例如:
|
7973
|
+
123.com 后缀则为.com
|
7974
|
+
123.com.cn 后缀则为.com.cn
|
7975
|
+
123.中国 后缀则为.xn--fiqs8s
|
7895
7976
|
:type CodeTld: str
|
7896
7977
|
:param _BuyStatus: 域名购买状态。
|
7897
7978
|
ok:正常
|
@@ -7970,6 +8051,7 @@ false 不是
|
|
7970
8051
|
@property
|
7971
8052
|
def CreationDate(self):
|
7972
8053
|
"""注册时间。
|
8054
|
+
格式:YYYY-MM-DD HH:mm:ss
|
7973
8055
|
:rtype: str
|
7974
8056
|
"""
|
7975
8057
|
return self._CreationDate
|
@@ -7981,6 +8063,7 @@ false 不是
|
|
7981
8063
|
@property
|
7982
8064
|
def ExpirationDate(self):
|
7983
8065
|
"""到期时间。
|
8066
|
+
格式:YYYY-MM-DD HH:mm:ss
|
7984
8067
|
:rtype: str
|
7985
8068
|
"""
|
7986
8069
|
return self._ExpirationDate
|
@@ -7991,7 +8074,12 @@ false 不是
|
|
7991
8074
|
|
7992
8075
|
@property
|
7993
8076
|
def Tld(self):
|
7994
|
-
"""
|
8077
|
+
"""域名后缀,根据具体域名确定
|
8078
|
+
例如:
|
8079
|
+
123.com 后缀则为.com
|
8080
|
+
123.com.cn 后缀则为.com.cn
|
8081
|
+
123.中国 后缀则为.中国
|
8082
|
+
|
7995
8083
|
:rtype: str
|
7996
8084
|
"""
|
7997
8085
|
return self._Tld
|
@@ -8002,7 +8090,11 @@ false 不是
|
|
8002
8090
|
|
8003
8091
|
@property
|
8004
8092
|
def CodeTld(self):
|
8005
|
-
"""
|
8093
|
+
"""编码后的后缀(中文会进行Punycode编码)根据具体域名确定
|
8094
|
+
例如:
|
8095
|
+
123.com 后缀则为.com
|
8096
|
+
123.com.cn 后缀则为.com.cn
|
8097
|
+
123.中国 后缀则为.xn--fiqs8s
|
8006
8098
|
:rtype: str
|
8007
8099
|
"""
|
8008
8100
|
return self._CodeTld
|
@@ -8504,10 +8596,11 @@ class ModifyCustomDnsHostRequest(AbstractModel):
|
|
8504
8596
|
def __init__(self):
|
8505
8597
|
r"""
|
8506
8598
|
:param _DomainId: 域名实例ID
|
8599
|
+
可通过DescribeDomainNameList接口获取(https://cloud.tencent.com/document/api/242/48941)
|
8507
8600
|
:type DomainId: str
|
8508
|
-
:param _DnsName:
|
8601
|
+
:param _DnsName: Dns名称 例如:<>.test.com;其中<>就是Dns名称,可以是任意域名允许的格式
|
8509
8602
|
:type DnsName: str
|
8510
|
-
:param _IpSet: IP地址列表
|
8603
|
+
:param _IpSet: IP地址列表 可选择:正常IP地址范围
|
8511
8604
|
:type IpSet: list of str
|
8512
8605
|
"""
|
8513
8606
|
self._DomainId = None
|
@@ -8517,6 +8610,7 @@ class ModifyCustomDnsHostRequest(AbstractModel):
|
|
8517
8610
|
@property
|
8518
8611
|
def DomainId(self):
|
8519
8612
|
"""域名实例ID
|
8613
|
+
可通过DescribeDomainNameList接口获取(https://cloud.tencent.com/document/api/242/48941)
|
8520
8614
|
:rtype: str
|
8521
8615
|
"""
|
8522
8616
|
return self._DomainId
|
@@ -8527,7 +8621,7 @@ class ModifyCustomDnsHostRequest(AbstractModel):
|
|
8527
8621
|
|
8528
8622
|
@property
|
8529
8623
|
def DnsName(self):
|
8530
|
-
"""
|
8624
|
+
"""Dns名称 例如:<>.test.com;其中<>就是Dns名称,可以是任意域名允许的格式
|
8531
8625
|
:rtype: str
|
8532
8626
|
"""
|
8533
8627
|
return self._DnsName
|
@@ -8538,7 +8632,7 @@ class ModifyCustomDnsHostRequest(AbstractModel):
|
|
8538
8632
|
|
8539
8633
|
@property
|
8540
8634
|
def IpSet(self):
|
8541
|
-
"""IP地址列表
|
8635
|
+
"""IP地址列表 可选择:正常IP地址范围
|
8542
8636
|
:rtype: list of str
|
8543
8637
|
"""
|
8544
8638
|
return self._IpSet
|
@@ -8613,8 +8707,10 @@ class ModifyDomainDNSBatchRequest(AbstractModel):
|
|
8613
8707
|
def __init__(self):
|
8614
8708
|
r"""
|
8615
8709
|
:param _Domains: 批量操作的域名。
|
8710
|
+
一次提交不超过4000个
|
8616
8711
|
:type Domains: list of str
|
8617
8712
|
:param _Dns: 域名DNS 数组。
|
8713
|
+
不少于2个,一般建议2-6个
|
8618
8714
|
:type Dns: list of str
|
8619
8715
|
"""
|
8620
8716
|
self._Domains = None
|
@@ -8623,6 +8719,7 @@ class ModifyDomainDNSBatchRequest(AbstractModel):
|
|
8623
8719
|
@property
|
8624
8720
|
def Domains(self):
|
8625
8721
|
"""批量操作的域名。
|
8722
|
+
一次提交不超过4000个
|
8626
8723
|
:rtype: list of str
|
8627
8724
|
"""
|
8628
8725
|
return self._Domains
|
@@ -8634,6 +8731,7 @@ class ModifyDomainDNSBatchRequest(AbstractModel):
|
|
8634
8731
|
@property
|
8635
8732
|
def Dns(self):
|
8636
8733
|
"""域名DNS 数组。
|
8734
|
+
不少于2个,一般建议2-6个
|
8637
8735
|
:rtype: list of str
|
8638
8736
|
"""
|
8639
8737
|
return self._Dns
|
@@ -9140,8 +9238,9 @@ class PreAuctionInfo(AbstractModel):
|
|
9140
9238
|
:param _Domain: 域名
|
9141
9239
|
:type Domain: str
|
9142
9240
|
:param _BiddingTime: 竞价倒计时
|
9241
|
+
格式:YYYY-MM-DD HH:mm:ss
|
9143
9242
|
:type BiddingTime: str
|
9144
|
-
:param _BidCount: 出价次数
|
9243
|
+
:param _BidCount: 出价次数
|
9145
9244
|
:type BidCount: int
|
9146
9245
|
:param _Price: 当前价格 单位元
|
9147
9246
|
:type Price: float
|
@@ -9173,6 +9272,7 @@ noAction:无法操作
|
|
9173
9272
|
@property
|
9174
9273
|
def BiddingTime(self):
|
9175
9274
|
"""竞价倒计时
|
9275
|
+
格式:YYYY-MM-DD HH:mm:ss
|
9176
9276
|
:rtype: str
|
9177
9277
|
"""
|
9178
9278
|
return self._BiddingTime
|
@@ -9183,7 +9283,7 @@ noAction:无法操作
|
|
9183
9283
|
|
9184
9284
|
@property
|
9185
9285
|
def BidCount(self):
|
9186
|
-
"""出价次数
|
9286
|
+
"""出价次数
|
9187
9287
|
:rtype: int
|
9188
9288
|
"""
|
9189
9289
|
return self._BidCount
|
@@ -10139,7 +10239,8 @@ class ReservedPreDomainsRequest(AbstractModel):
|
|
10139
10239
|
r"""
|
10140
10240
|
:param _DomainList: 预约预释放域名列表
|
10141
10241
|
:type DomainList: list of str
|
10142
|
-
:param _TemplateId: 模板ID
|
10242
|
+
:param _TemplateId: 模板ID
|
10243
|
+
可通过[DescribeTemplateList](https://cloud.tencent.com/document/api/242/48940)接口获取
|
10143
10244
|
:type TemplateId: str
|
10144
10245
|
:param _IsAutoPay: 结束后是否自动支付尾款,默认1 开启 传入0关闭
|
10145
10246
|
:type IsAutoPay: int
|
@@ -10164,7 +10265,8 @@ class ReservedPreDomainsRequest(AbstractModel):
|
|
10164
10265
|
|
10165
10266
|
@property
|
10166
10267
|
def TemplateId(self):
|
10167
|
-
"""模板ID
|
10268
|
+
"""模板ID
|
10269
|
+
可通过[DescribeTemplateList](https://cloud.tencent.com/document/api/242/48940)接口获取
|
10168
10270
|
:rtype: str
|
10169
10271
|
"""
|
10170
10272
|
return self._TemplateId
|
@@ -10380,7 +10482,8 @@ class SetDomainAutoRenewRequest(AbstractModel):
|
|
10380
10482
|
|
10381
10483
|
def __init__(self):
|
10382
10484
|
r"""
|
10383
|
-
:param _DomainId:
|
10485
|
+
:param _DomainId: 域名实例ID
|
10486
|
+
可通过DescribeDomainNameList接口获取(https://cloud.tencent.com/document/api/242/48941)
|
10384
10487
|
:type DomainId: str
|
10385
10488
|
:param _AutoRenew: AutoRenew 有三个可选值:
|
10386
10489
|
0:不设置自动续费
|
@@ -10393,7 +10496,8 @@ class SetDomainAutoRenewRequest(AbstractModel):
|
|
10393
10496
|
|
10394
10497
|
@property
|
10395
10498
|
def DomainId(self):
|
10396
|
-
"""
|
10499
|
+
"""域名实例ID
|
10500
|
+
可通过DescribeDomainNameList接口获取(https://cloud.tencent.com/document/api/242/48941)
|
10397
10501
|
:rtype: str
|
10398
10502
|
"""
|
10399
10503
|
return self._DomainId
|
@@ -10516,14 +10620,16 @@ class SyncCustomDnsHostRequest(AbstractModel):
|
|
10516
10620
|
|
10517
10621
|
def __init__(self):
|
10518
10622
|
r"""
|
10519
|
-
:param _DomainId: 域名实例ID
|
10623
|
+
:param _DomainId: 域名实例ID
|
10624
|
+
可通过DescribeDomainNameList接口获取(https://cloud.tencent.com/document/api/242/48941)
|
10520
10625
|
:type DomainId: str
|
10521
10626
|
"""
|
10522
10627
|
self._DomainId = None
|
10523
10628
|
|
10524
10629
|
@property
|
10525
10630
|
def DomainId(self):
|
10526
|
-
"""域名实例ID
|
10631
|
+
"""域名实例ID
|
10632
|
+
可通过DescribeDomainNameList接口获取(https://cloud.tencent.com/document/api/242/48941)
|
10527
10633
|
:rtype: str
|
10528
10634
|
"""
|
10529
10635
|
return self._DomainId
|