tencentcloud-sdk-python 3.0.1367__py2.py3-none-any.whl → 3.0.1369__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.
Files changed (36) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/autoscaling/v20180419/autoscaling_client.py +2 -1
  3. tencentcloud/autoscaling/v20180419/models.py +198 -102
  4. tencentcloud/cbs/v20170312/cbs_client.py +1 -1
  5. tencentcloud/cbs/v20170312/models.py +41 -44
  6. tencentcloud/ccc/v20200210/models.py +15 -0
  7. tencentcloud/cdn/v20180606/cdn_client.py +45 -15
  8. tencentcloud/cfs/v20190719/models.py +15 -0
  9. tencentcloud/cvm/v20170312/cvm_client.py +1 -1
  10. tencentcloud/cvm/v20170312/errorcodes.py +1 -1
  11. tencentcloud/cvm/v20170312/models.py +83 -40
  12. tencentcloud/domain/v20180808/domain_client.py +4 -2
  13. tencentcloud/domain/v20180808/errorcodes.py +3 -0
  14. tencentcloud/domain/v20180808/models.py +254 -124
  15. tencentcloud/ioa/v20220601/models.py +19 -4
  16. tencentcloud/iotexplorer/v20190423/models.py +94 -4
  17. tencentcloud/iotvideoindustry/v20201201/models.py +15 -0
  18. tencentcloud/lcic/v20220817/errorcodes.py +1 -1
  19. tencentcloud/lke/v20231130/models.py +10 -2
  20. tencentcloud/mps/v20190612/models.py +2 -2
  21. tencentcloud/ocr/v20181119/models.py +23 -2
  22. tencentcloud/redis/v20180412/models.py +159 -6
  23. tencentcloud/tat/v20201028/errorcodes.py +6 -0
  24. tencentcloud/tat/v20201028/models.py +78 -32
  25. tencentcloud/tcss/v20201101/models.py +45 -0
  26. tencentcloud/teo/v20220901/models.py +35 -10
  27. tencentcloud/trtc/v20190722/models.py +2 -2
  28. tencentcloud/vod/v20180717/models.py +6 -6
  29. tencentcloud/vpc/v20170312/models.py +30 -74
  30. tencentcloud/wedata/v20210820/models.py +322 -0
  31. tencentcloud/wedata/v20210820/wedata_client.py +23 -0
  32. {tencentcloud_sdk_python-3.0.1367.dist-info → tencentcloud_sdk_python-3.0.1369.dist-info}/METADATA +1 -1
  33. {tencentcloud_sdk_python-3.0.1367.dist-info → tencentcloud_sdk_python-3.0.1369.dist-info}/RECORD +36 -36
  34. {tencentcloud_sdk_python-3.0.1367.dist-info → tencentcloud_sdk_python-3.0.1369.dist-info}/LICENSE +0 -0
  35. {tencentcloud_sdk_python-3.0.1367.dist-info → tencentcloud_sdk_python-3.0.1369.dist-info}/WHEEL +0 -0
  36. {tencentcloud_sdk_python-3.0.1367.dist-info → tencentcloud_sdk_python-3.0.1369.dist-info}/top_level.txt +0 -0
@@ -29,7 +29,7 @@ class AuctionInfo(AbstractModel):
29
29
  :type Bidder: str
30
30
  :param _AuctionTime: 竞拍时间
31
31
  :type AuctionTime: str
32
- :param _AuctionPrice: 竞拍价格
32
+ :param _AuctionPrice: 竞拍价格 单位元
33
33
  :type AuctionPrice: float
34
34
  :param _Status: 状态 up: 领先 down: 落后
35
35
  :type Status: str
@@ -63,7 +63,7 @@ class AuctionInfo(AbstractModel):
63
63
 
64
64
  @property
65
65
  def AuctionPrice(self):
66
- """竞拍价格
66
+ """竞拍价格 单位元
67
67
  :rtype: float
68
68
  """
69
69
  return self._AuctionPrice
@@ -108,7 +108,8 @@ class BatchModifyDomainInfoRequest(AbstractModel):
108
108
  r"""
109
109
  :param _Domains: 批量修改的域名。
110
110
  :type Domains: list of str
111
- :param _TemplateId: 模板ID(可从模板列表接口获取)
111
+ :param _TemplateId: 模板ID
112
+ 可从DescribeTemplates接口获取
112
113
  :type TemplateId: str
113
114
  :param _LockTransfer: true: 开启60天内禁止转移注册商锁定
114
115
  false:关闭60天内禁止转移注册商锁定
@@ -132,7 +133,8 @@ false:关闭60天内禁止转移注册商锁定
132
133
 
133
134
  @property
134
135
  def TemplateId(self):
135
- """模板ID(可从模板列表接口获取)
136
+ """模板ID
137
+ 可从DescribeTemplates接口获取
136
138
  :rtype: str
137
139
  """
138
140
  return self._TemplateId
@@ -224,6 +226,16 @@ class BatchStatus(AbstractModel):
224
226
  :param _Status: 批量任务状态 doing:进行中 success:成功 failed:失败 partial_success:部分成功
225
227
  :type Status: str
226
228
  :param _BatchAction: 批量任务类型
229
+ new:注册域名
230
+ renew:续费域名
231
+ batch_transfer_prohibition_on:开启禁止转移锁
232
+ batch_transfer_prohibition_off:关闭禁止转移锁
233
+ batch_update_prohibition_on:开启禁止更新锁
234
+ batch_update_prohibition_off:关闭禁止更新锁
235
+ batch_modify_owner:域名转移
236
+ batch_modify_domain_info:域名信息修改
237
+ batch_transfer_in:域名转入
238
+ batch_cancel_transfer_out:域名取消转出
227
239
  :type BatchAction: str
228
240
  """
229
241
  self._LogId = None
@@ -255,6 +267,16 @@ class BatchStatus(AbstractModel):
255
267
  @property
256
268
  def BatchAction(self):
257
269
  """批量任务类型
270
+ new:注册域名
271
+ renew:续费域名
272
+ batch_transfer_prohibition_on:开启禁止转移锁
273
+ batch_transfer_prohibition_off:关闭禁止转移锁
274
+ batch_update_prohibition_on:开启禁止更新锁
275
+ batch_update_prohibition_off:关闭禁止更新锁
276
+ batch_modify_owner:域名转移
277
+ batch_modify_domain_info:域名信息修改
278
+ batch_transfer_in:域名转入
279
+ batch_cancel_transfer_out:域名取消转出
258
280
  :rtype: str
259
281
  """
260
282
  return self._BatchAction
@@ -285,14 +307,16 @@ class BidDetailPageRequest(AbstractModel):
285
307
 
286
308
  def __init__(self):
287
309
  r"""
288
- :param _BusinessId: 业务ID
310
+ :param _BusinessId: 预约ID
311
+ 可通过DescribeBiddingList接口获取
289
312
  :type BusinessId: str
290
313
  """
291
314
  self._BusinessId = None
292
315
 
293
316
  @property
294
317
  def BusinessId(self):
295
- """业务ID
318
+ """预约ID
319
+ 可通过DescribeBiddingList接口获取
296
320
  :rtype: str
297
321
  """
298
322
  return self._BusinessId
@@ -323,16 +347,16 @@ class BidDetailPageResponse(AbstractModel):
323
347
  r"""
324
348
  :param _Domain: 域名
325
349
  :type Domain: str
326
- :param _CurrentPrice: 当前域名价格
350
+ :param _CurrentPrice: 当前域名价格 单位元
327
351
  :type CurrentPrice: float
328
- :param _BidPrice: 用户上次出价
352
+ :param _BidPrice: 用户上次出价 单位元
329
353
  :type BidPrice: float
330
- :param _CurrentPriceScope: 当前加价幅度
354
+ :param _CurrentPriceScope: 当前加价幅度 单位元
331
355
  :type CurrentPriceScope: float
332
356
  :param _PriceScope: 加价幅度区间配置
333
357
  注意:此字段可能返回 null,表示取不到有效值。
334
358
  :type PriceScope: list of PriceScopeConf
335
- :param _DepositPrice: 用户当前已经支付了的保证金
359
+ :param _DepositPrice: 用户当前已经支付了的保证金 单位元
336
360
  :type DepositPrice: float
337
361
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
338
362
  :type RequestId: str
@@ -358,7 +382,7 @@ class BidDetailPageResponse(AbstractModel):
358
382
 
359
383
  @property
360
384
  def CurrentPrice(self):
361
- """当前域名价格
385
+ """当前域名价格 单位元
362
386
  :rtype: float
363
387
  """
364
388
  return self._CurrentPrice
@@ -369,7 +393,7 @@ class BidDetailPageResponse(AbstractModel):
369
393
 
370
394
  @property
371
395
  def BidPrice(self):
372
- """用户上次出价
396
+ """用户上次出价 单位元
373
397
  :rtype: float
374
398
  """
375
399
  return self._BidPrice
@@ -380,7 +404,7 @@ class BidDetailPageResponse(AbstractModel):
380
404
 
381
405
  @property
382
406
  def CurrentPriceScope(self):
383
- """当前加价幅度
407
+ """当前加价幅度 单位元
384
408
  :rtype: float
385
409
  """
386
410
  return self._CurrentPriceScope
@@ -403,7 +427,7 @@ class BidDetailPageResponse(AbstractModel):
403
427
 
404
428
  @property
405
429
  def DepositPrice(self):
406
- """用户当前已经支付了的保证金
430
+ """用户当前已经支付了的保证金 单位元
407
431
  :rtype: float
408
432
  """
409
433
  return self._DepositPrice
@@ -525,13 +549,13 @@ class BiddingAppointResult(AbstractModel):
525
549
 
526
550
  def __init__(self):
527
551
  r"""
528
- :param _BusinessID: business_id
552
+ :param _BusinessID: 预约ID
529
553
  :type BusinessID: str
530
554
  :param _Domain: 域名
531
555
  :type Domain: str
532
- :param _AppointPrice: 预定价格
556
+ :param _AppointPrice: 预定价格 单位元
533
557
  :type AppointPrice: int
534
- :param _AppointBondPrice: 预约保证金
558
+ :param _AppointBondPrice: 预约保证金 单位元
535
559
  :type AppointBondPrice: int
536
560
  :param _AppointEndTime: 预约结束时间
537
561
  :type AppointEndTime: str
@@ -550,7 +574,7 @@ class BiddingAppointResult(AbstractModel):
550
574
 
551
575
  @property
552
576
  def BusinessID(self):
553
- """business_id
577
+ """预约ID
554
578
  :rtype: str
555
579
  """
556
580
  return self._BusinessID
@@ -572,7 +596,7 @@ class BiddingAppointResult(AbstractModel):
572
596
 
573
597
  @property
574
598
  def AppointPrice(self):
575
- """预定价格
599
+ """预定价格 单位元
576
600
  :rtype: int
577
601
  """
578
602
  return self._AppointPrice
@@ -583,7 +607,7 @@ class BiddingAppointResult(AbstractModel):
583
607
 
584
608
  @property
585
609
  def AppointBondPrice(self):
586
- """预约保证金
610
+ """预约保证金 单位元
587
611
  :rtype: int
588
612
  """
589
613
  return self._AppointBondPrice
@@ -652,8 +676,9 @@ class BiddingPreReleaseRequest(AbstractModel):
652
676
  def __init__(self):
653
677
  r"""
654
678
  :param _BusinessId: 业务ID
679
+ 可通过DescribeBiddingList接口获取
655
680
  :type BusinessId: str
656
- :param _Price: 价格
681
+ :param _Price: 价格 单位元
657
682
  :type Price: float
658
683
  """
659
684
  self._BusinessId = None
@@ -662,6 +687,7 @@ class BiddingPreReleaseRequest(AbstractModel):
662
687
  @property
663
688
  def BusinessId(self):
664
689
  """业务ID
690
+ 可通过DescribeBiddingList接口获取
665
691
  :rtype: str
666
692
  """
667
693
  return self._BusinessId
@@ -672,7 +698,7 @@ class BiddingPreReleaseRequest(AbstractModel):
672
698
 
673
699
  @property
674
700
  def Price(self):
675
- """价格
701
+ """价格 单位元
676
702
  :rtype: float
677
703
  """
678
704
  return self._Price
@@ -704,7 +730,7 @@ class BiddingPreReleaseResponse(AbstractModel):
704
730
  r"""
705
731
  :param _IsNeedPay: 是否需要额外支付
706
732
  :type IsNeedPay: bool
707
- :param _BillingParam: 计费请求参数,以Json字符串的形式进行返回。
733
+ :param _BillingParam: 计费请求参数,以类Json字符串的形式进行返回。用于计费下单
708
734
  :type BillingParam: str
709
735
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
710
736
  :type RequestId: str
@@ -726,7 +752,7 @@ class BiddingPreReleaseResponse(AbstractModel):
726
752
 
727
753
  @property
728
754
  def BillingParam(self):
729
- """计费请求参数,以Json字符串的形式进行返回。
755
+ """计费请求参数,以类Json字符串的形式进行返回。用于计费下单
730
756
  :rtype: str
731
757
  """
732
758
  return self._BillingParam
@@ -760,17 +786,17 @@ class BiddingResult(AbstractModel):
760
786
 
761
787
  def __init__(self):
762
788
  r"""
763
- :param _BusinessID: business_id
789
+ :param _BusinessID: 预约ID
764
790
  :type BusinessID: str
765
791
  :param _Domain: 域名
766
792
  :type Domain: str
767
- :param _CurrentPrice: 当前价格
793
+ :param _CurrentPrice: 当前价格 单位元
768
794
  :type CurrentPrice: int
769
795
  :param _CurrentNickname: 当前用户昵称
770
796
  :type CurrentNickname: str
771
- :param _BiddingPrice: 我的出价
797
+ :param _BiddingPrice: 我的出价 单位元
772
798
  :type BiddingPrice: int
773
- :param _BiddingBondPrice: 竞价保证金
799
+ :param _BiddingBondPrice: 竞价保证金 单位元
774
800
  :type BiddingBondPrice: int
775
801
  :param _BiddingEndTime: 竞价结束时间
776
802
  :type BiddingEndTime: str
@@ -794,7 +820,7 @@ class BiddingResult(AbstractModel):
794
820
 
795
821
  @property
796
822
  def BusinessID(self):
797
- """business_id
823
+ """预约ID
798
824
  :rtype: str
799
825
  """
800
826
  return self._BusinessID
@@ -816,7 +842,7 @@ class BiddingResult(AbstractModel):
816
842
 
817
843
  @property
818
844
  def CurrentPrice(self):
819
- """当前价格
845
+ """当前价格 单位元
820
846
  :rtype: int
821
847
  """
822
848
  return self._CurrentPrice
@@ -838,7 +864,7 @@ class BiddingResult(AbstractModel):
838
864
 
839
865
  @property
840
866
  def BiddingPrice(self):
841
- """我的出价
867
+ """我的出价 单位元
842
868
  :rtype: int
843
869
  """
844
870
  return self._BiddingPrice
@@ -849,7 +875,7 @@ class BiddingResult(AbstractModel):
849
875
 
850
876
  @property
851
877
  def BiddingBondPrice(self):
852
- """竞价保证金
878
+ """竞价保证金 单位元
853
879
  :rtype: int
854
880
  """
855
881
  return self._BiddingBondPrice
@@ -1206,6 +1232,15 @@ class CheckBatchStatusRequest(AbstractModel):
1206
1232
  def __init__(self):
1207
1233
  r"""
1208
1234
  :param _LogIds: 操作日志 ID数组,最多 200 个
1235
+ 可通过任意批量操作接口获取,例如:
1236
+ BatchModifyDomainInfo
1237
+ ModifyDomainDNSBatch
1238
+ ModifyDomainOwnerBatch
1239
+ UpdateProhibitionBatch
1240
+ TransferProhibitionBatch
1241
+ TransferInDomainBatch
1242
+ TransferInDomainBatchBuy
1243
+ CancelTransferOutInBatch
1209
1244
  :type LogIds: list of int non-negative
1210
1245
  """
1211
1246
  self._LogIds = None
@@ -1213,6 +1248,15 @@ class CheckBatchStatusRequest(AbstractModel):
1213
1248
  @property
1214
1249
  def LogIds(self):
1215
1250
  """操作日志 ID数组,最多 200 个
1251
+ 可通过任意批量操作接口获取,例如:
1252
+ BatchModifyDomainInfo
1253
+ ModifyDomainDNSBatch
1254
+ ModifyDomainOwnerBatch
1255
+ UpdateProhibitionBatch
1256
+ TransferProhibitionBatch
1257
+ TransferInDomainBatch
1258
+ TransferInDomainBatchBuy
1259
+ CancelTransferOutInBatch
1216
1260
  :rtype: list of int non-negative
1217
1261
  """
1218
1262
  return self._LogIds
@@ -1833,10 +1877,13 @@ class CreateCustomDnsHostRequest(AbstractModel):
1833
1877
  def __init__(self):
1834
1878
  r"""
1835
1879
  :param _DomainId: 域名实例ID
1880
+ 可通过DescribeDomainLIst接口获取
1836
1881
  :type DomainId: str
1837
1882
  :param _DnsName: Dns名称
1883
+ 例如:<>.test.com;其中<>就是Dns名称,可以是任意域名允许的格式
1838
1884
  :type DnsName: str
1839
1885
  :param _IpSet: IP地址列表
1886
+ 可选择:正常IP地址范围
1840
1887
  :type IpSet: list of str
1841
1888
  """
1842
1889
  self._DomainId = None
@@ -1846,6 +1893,7 @@ class CreateCustomDnsHostRequest(AbstractModel):
1846
1893
  @property
1847
1894
  def DomainId(self):
1848
1895
  """域名实例ID
1896
+ 可通过DescribeDomainLIst接口获取
1849
1897
  :rtype: str
1850
1898
  """
1851
1899
  return self._DomainId
@@ -1857,6 +1905,7 @@ class CreateCustomDnsHostRequest(AbstractModel):
1857
1905
  @property
1858
1906
  def DnsName(self):
1859
1907
  """Dns名称
1908
+ 例如:<>.test.com;其中<>就是Dns名称,可以是任意域名允许的格式
1860
1909
  :rtype: str
1861
1910
  """
1862
1911
  return self._DnsName
@@ -1868,6 +1917,7 @@ class CreateCustomDnsHostRequest(AbstractModel):
1868
1917
  @property
1869
1918
  def IpSet(self):
1870
1919
  """IP地址列表
1920
+ 可选择:正常IP地址范围
1871
1921
  :rtype: list of str
1872
1922
  """
1873
1923
  return self._IpSet
@@ -2174,14 +2224,16 @@ class CreateDomainRedemptionRequest(AbstractModel):
2174
2224
 
2175
2225
  def __init__(self):
2176
2226
  r"""
2177
- :param _DomainId: 域名 ID
2227
+ :param _DomainId: 域名ID
2228
+ 可通过DescribeDomainList接口获取
2178
2229
  :type DomainId: str
2179
2230
  """
2180
2231
  self._DomainId = None
2181
2232
 
2182
2233
  @property
2183
2234
  def DomainId(self):
2184
- """域名 ID
2235
+ """域名ID
2236
+ 可通过DescribeDomainList接口获取
2185
2237
  :rtype: str
2186
2238
  """
2187
2239
  return self._DomainId
@@ -2242,7 +2294,8 @@ class CreatePhoneEmailRequest(AbstractModel):
2242
2294
  :type Code: str
2243
2295
  :param _Type: 1:手机 2:邮箱
2244
2296
  :type Type: int
2245
- :param _VerifyCode: 验证码(通过SendPhoneEmailCode发送到手机或邮箱的验证码)
2297
+ :param _VerifyCode: 验证码
2298
+ 通过调用SendPhoneEmailCode接口发送到手机或邮箱的验证码:https://cloud.tencent.com/document/api/242/62666
2246
2299
  :type VerifyCode: str
2247
2300
  """
2248
2301
  self._Code = None
@@ -2273,7 +2326,8 @@ class CreatePhoneEmailRequest(AbstractModel):
2273
2326
 
2274
2327
  @property
2275
2328
  def VerifyCode(self):
2276
- """验证码(通过SendPhoneEmailCode发送到手机或邮箱的验证码)
2329
+ """验证码
2330
+ 通过调用SendPhoneEmailCode接口发送到手机或邮箱的验证码:https://cloud.tencent.com/document/api/242/62666
2277
2331
  :rtype: str
2278
2332
  """
2279
2333
  return self._VerifyCode
@@ -2483,14 +2537,16 @@ class DeleteBiddingRequest(AbstractModel):
2483
2537
 
2484
2538
  def __init__(self):
2485
2539
  r"""
2486
- :param _BusinessID: business_id
2540
+ :param _BusinessID: 预约ID
2541
+ 可通过DescribeBiddingList接口获取
2487
2542
  :type BusinessID: str
2488
2543
  """
2489
2544
  self._BusinessID = None
2490
2545
 
2491
2546
  @property
2492
2547
  def BusinessID(self):
2493
- """business_id
2548
+ """预约ID
2549
+ 可通过DescribeBiddingList接口获取
2494
2550
  :rtype: str
2495
2551
  """
2496
2552
  return self._BusinessID
@@ -2548,8 +2604,10 @@ class DeleteCustomDnsHostRequest(AbstractModel):
2548
2604
  def __init__(self):
2549
2605
  r"""
2550
2606
  :param _DomainId: 域名实例ID
2607
+ 可通过DescribeDomainList接口获取
2551
2608
  :type DomainId: str
2552
2609
  :param _DnsName: DNS名称
2610
+ 例如:<>.test.com;其中<>就是Dns名称,可以是任意域名允许的格式
2553
2611
  :type DnsName: str
2554
2612
  """
2555
2613
  self._DomainId = None
@@ -2558,6 +2616,7 @@ class DeleteCustomDnsHostRequest(AbstractModel):
2558
2616
  @property
2559
2617
  def DomainId(self):
2560
2618
  """域名实例ID
2619
+ 可通过DescribeDomainList接口获取
2561
2620
  :rtype: str
2562
2621
  """
2563
2622
  return self._DomainId
@@ -2569,6 +2628,7 @@ class DeleteCustomDnsHostRequest(AbstractModel):
2569
2628
  @property
2570
2629
  def DnsName(self):
2571
2630
  """DNS名称
2631
+ 例如:<>.test.com;其中<>就是Dns名称,可以是任意域名允许的格式
2572
2632
  :rtype: str
2573
2633
  """
2574
2634
  return self._DnsName
@@ -2784,14 +2844,16 @@ class DeleteTemplateRequest(AbstractModel):
2784
2844
 
2785
2845
  def __init__(self):
2786
2846
  r"""
2787
- :param _TemplateId: 模板ID(可通过模板信息列表获取)
2847
+ :param _TemplateId: 模板ID
2848
+ 可通过DescribeTemplates接口获取
2788
2849
  :type TemplateId: str
2789
2850
  """
2790
2851
  self._TemplateId = None
2791
2852
 
2792
2853
  @property
2793
2854
  def TemplateId(self):
2794
- """模板ID(可通过模板信息列表获取)
2855
+ """模板ID
2856
+ 可通过DescribeTemplates接口获取
2795
2857
  :rtype: str
2796
2858
  """
2797
2859
  return self._TemplateId
@@ -2850,9 +2912,9 @@ class DescribeAuctionListRequest(AbstractModel):
2850
2912
  r"""
2851
2913
  :param _BusinessId: 业务ID,通过接口DescribeBiddingList返回结果中获取
2852
2914
  :type BusinessId: str
2853
- :param _Limit: 条数,默认10
2915
+ :param _Limit: 条数,默认10,最大100
2854
2916
  :type Limit: int
2855
- :param _OffSet: 偏移量
2917
+ :param _OffSet: 偏移量 默认0
2856
2918
  :type OffSet: int
2857
2919
  """
2858
2920
  self._BusinessId = None
@@ -2872,7 +2934,7 @@ class DescribeAuctionListRequest(AbstractModel):
2872
2934
 
2873
2935
  @property
2874
2936
  def Limit(self):
2875
- """条数,默认10
2937
+ """条数,默认10,最大100
2876
2938
  :rtype: int
2877
2939
  """
2878
2940
  return self._Limit
@@ -2883,7 +2945,7 @@ class DescribeAuctionListRequest(AbstractModel):
2883
2945
 
2884
2946
  @property
2885
2947
  def OffSet(self):
2886
- """偏移量
2948
+ """偏移量 默认0
2887
2949
  :rtype: int
2888
2950
  """
2889
2951
  return self._OffSet
@@ -3220,14 +3282,16 @@ class DescribeBiddingAppointDetailRequest(AbstractModel):
3220
3282
 
3221
3283
  def __init__(self):
3222
3284
  r"""
3223
- :param _BusinessID: business_id
3285
+ :param _BusinessID: 预约ID
3286
+ 可通过DescribeBiddingList接口获取
3224
3287
  :type BusinessID: str
3225
3288
  """
3226
3289
  self._BusinessID = None
3227
3290
 
3228
3291
  @property
3229
3292
  def BusinessID(self):
3230
- """business_id
3293
+ """预约ID
3294
+ 可通过DescribeBiddingList接口获取
3231
3295
  :rtype: str
3232
3296
  """
3233
3297
  return self._BusinessID
@@ -3270,9 +3334,9 @@ class DescribeBiddingAppointDetailResponse(AbstractModel):
3270
3334
  :type ExpireTime: str
3271
3335
  :param _DeleteTime: 删除时间
3272
3336
  :type DeleteTime: str
3273
- :param _AppointPrice: 当前价格
3337
+ :param _AppointPrice: 当前价格 单位元
3274
3338
  :type AppointPrice: int
3275
- :param _AppointBondPrice: 预约保证金
3339
+ :param _AppointBondPrice: 预约保证金 单位元
3276
3340
  :type AppointBondPrice: int
3277
3341
  :param _Status: 1 已预约,2 竞价中,3 等待出价 4 竞价失败 5 等待支付 6 等待转移,7 转移中 8 交易成功 9 预约持有者赎回 10 竞价持有者赎回 11 其他阶段持有者赎回 12 违约
3278
3342
  :type Status: int
@@ -3374,7 +3438,7 @@ yes:退回 no: 未退回
3374
3438
 
3375
3439
  @property
3376
3440
  def AppointPrice(self):
3377
- """当前价格
3441
+ """当前价格 单位元
3378
3442
  :rtype: int
3379
3443
  """
3380
3444
  return self._AppointPrice
@@ -3385,7 +3449,7 @@ yes:退回 no: 未退回
3385
3449
 
3386
3450
  @property
3387
3451
  def AppointBondPrice(self):
3388
- """预约保证金
3452
+ """预约保证金 单位元
3389
3453
  :rtype: int
3390
3454
  """
3391
3455
  return self._AppointBondPrice
@@ -3457,7 +3521,8 @@ class DescribeBiddingAppointListRequest(AbstractModel):
3457
3521
  :type PageSize: int
3458
3522
  :param _Domain: 域名
3459
3523
  :type Domain: str
3460
- :param _Status: 状态: 1 已预约 9 预约持有者索回
3524
+ :param _Status: 状态:
3525
+ 1 已预约,2 竞价中,3 等待出价 4 竞价失败 5 等待支付 6 等待转移,7 转移中 8 交易成功 9 预约持有者赎回 10 竞价持有者赎回 11 其他阶段持有者赎回 12 违约
3461
3526
  :type Status: list of int non-negative
3462
3527
  :param _SortField: 排序字段:AppointEndTime 预约结束时间
3463
3528
  :type SortField: str
@@ -3506,7 +3571,8 @@ class DescribeBiddingAppointListRequest(AbstractModel):
3506
3571
 
3507
3572
  @property
3508
3573
  def Status(self):
3509
- """状态: 1 已预约 9 预约持有者索回
3574
+ """状态:
3575
+ 1 已预约,2 竞价中,3 等待出价 4 竞价失败 5 等待支付 6 等待转移,7 转移中 8 交易成功 9 预约持有者赎回 10 竞价持有者赎回 11 其他阶段持有者赎回 12 违约
3510
3576
  :rtype: list of int non-negative
3511
3577
  """
3512
3578
  return self._Status
@@ -3625,14 +3691,16 @@ class DescribeBiddingDetailRequest(AbstractModel):
3625
3691
 
3626
3692
  def __init__(self):
3627
3693
  r"""
3628
- :param _BusinessID: business_id
3694
+ :param _BusinessID: 预约ID
3695
+ 可通过DescribeBiddingList接口获取
3629
3696
  :type BusinessID: str
3630
3697
  """
3631
3698
  self._BusinessID = None
3632
3699
 
3633
3700
  @property
3634
3701
  def BusinessID(self):
3635
- """business_id
3702
+ """预约ID
3703
+ 可通过DescribeBiddingList接口获取
3636
3704
  :rtype: str
3637
3705
  """
3638
3706
  return self._BusinessID
@@ -3675,11 +3743,11 @@ class DescribeBiddingDetailResponse(AbstractModel):
3675
3743
  :type ExpireTime: str
3676
3744
  :param _DeleteTime: 删除时间
3677
3745
  :type DeleteTime: str
3678
- :param _CurrentPrice: 当前价格
3746
+ :param _CurrentPrice: 当前价格 单位元
3679
3747
  :type CurrentPrice: int
3680
3748
  :param _CurrentNickname: 当前用户昵称
3681
3749
  :type CurrentNickname: str
3682
- :param _BiddingBondPrice: 竞价保证金
3750
+ :param _BiddingBondPrice: 竞价保证金 单位元
3683
3751
  :type BiddingBondPrice: int
3684
3752
  :param _Status: 2 竞价中 3 等待出价 4 竞价失败 10 竞价持有者赎回
3685
3753
  :type Status: int
@@ -3687,7 +3755,7 @@ class DescribeBiddingDetailResponse(AbstractModel):
3687
3755
  :type BiddingFlag: int
3688
3756
  :param _BiddingBondRefund: 是否退款,yes表示退款,no表示不退款
3689
3757
  :type BiddingBondRefund: str
3690
- :param _BiddingPrice: 我的出价
3758
+ :param _BiddingPrice: 我的出价 单位元
3691
3759
  :type BiddingPrice: int
3692
3760
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3693
3761
  :type RequestId: str
@@ -3787,7 +3855,7 @@ class DescribeBiddingDetailResponse(AbstractModel):
3787
3855
 
3788
3856
  @property
3789
3857
  def CurrentPrice(self):
3790
- """当前价格
3858
+ """当前价格 单位元
3791
3859
  :rtype: int
3792
3860
  """
3793
3861
  return self._CurrentPrice
@@ -3809,7 +3877,7 @@ class DescribeBiddingDetailResponse(AbstractModel):
3809
3877
 
3810
3878
  @property
3811
3879
  def BiddingBondPrice(self):
3812
- """竞价保证金
3880
+ """竞价保证金 单位元
3813
3881
  :rtype: int
3814
3882
  """
3815
3883
  return self._BiddingBondPrice
@@ -3853,7 +3921,7 @@ class DescribeBiddingDetailResponse(AbstractModel):
3853
3921
 
3854
3922
  @property
3855
3923
  def BiddingPrice(self):
3856
- """我的出价
3924
+ """我的出价 单位元
3857
3925
  :rtype: int
3858
3926
  """
3859
3927
  return self._BiddingPrice
@@ -4075,14 +4143,16 @@ class DescribeBiddingSuccessfulDetailRequest(AbstractModel):
4075
4143
 
4076
4144
  def __init__(self):
4077
4145
  r"""
4078
- :param _BusinessID: business_id
4146
+ :param _BusinessID: 预约ID
4147
+ 可通过DescribeBiddingSuccessfulList接口获取
4079
4148
  :type BusinessID: str
4080
4149
  """
4081
4150
  self._BusinessID = None
4082
4151
 
4083
4152
  @property
4084
4153
  def BusinessID(self):
4085
- """business_id
4154
+ """预约ID
4155
+ 可通过DescribeBiddingSuccessfulList接口获取
4086
4156
  :rtype: str
4087
4157
  """
4088
4158
  return self._BusinessID
@@ -4115,7 +4185,7 @@ class DescribeBiddingSuccessfulDetailResponse(AbstractModel):
4115
4185
  :type Domain: str
4116
4186
  :param _SuccessfulTime: 得标时间
4117
4187
  :type SuccessfulTime: str
4118
- :param _SuccessfulPrice: 得标价格
4188
+ :param _SuccessfulPrice: 得标价格 单位元
4119
4189
  :type SuccessfulPrice: float
4120
4190
  :param _RegTime: 注册时间
4121
4191
  :type RegTime: str
@@ -4127,7 +4197,7 @@ class DescribeBiddingSuccessfulDetailResponse(AbstractModel):
4127
4197
  :type PayEndTime: str
4128
4198
  :param _BiddingBondRefund: 保证金,是否退款,yes表示退款,no表示不退款
4129
4199
  :type BiddingBondRefund: str
4130
- :param _BiddingBondPrice: 保证金
4200
+ :param _BiddingBondPrice: 保证金 单位元
4131
4201
  :type BiddingBondPrice: float
4132
4202
  :param _Status: 状态:5 等待支付 6 等待转移, 7 转移中,8 交易成功,11 尾款阶段持有者索回,12 已违约
4133
4203
  :type Status: int
@@ -4170,7 +4240,7 @@ class DescribeBiddingSuccessfulDetailResponse(AbstractModel):
4170
4240
 
4171
4241
  @property
4172
4242
  def SuccessfulPrice(self):
4173
- """得标价格
4243
+ """得标价格 单位元
4174
4244
  :rtype: float
4175
4245
  """
4176
4246
  return self._SuccessfulPrice
@@ -4236,7 +4306,7 @@ class DescribeBiddingSuccessfulDetailResponse(AbstractModel):
4236
4306
 
4237
4307
  @property
4238
4308
  def BiddingBondPrice(self):
4239
- """保证金
4309
+ """保证金 单位元
4240
4310
  :rtype: float
4241
4311
  """
4242
4312
  return self._BiddingBondPrice
@@ -4463,7 +4533,8 @@ class DescribeCustomDnsHostSetRequest(AbstractModel):
4463
4533
 
4464
4534
  def __init__(self):
4465
4535
  r"""
4466
- :param _DomainId: 域名实例ID(域名基本信息或我的域名列表接口可获取)
4536
+ :param _DomainId: 域名实例ID
4537
+ 可通过DescribeDomainList接口获取
4467
4538
  :type DomainId: str
4468
4539
  :param _Limit: 返回数量,默认为20,取值范围[1,100]
4469
4540
  :type Limit: int
@@ -4476,7 +4547,8 @@ class DescribeCustomDnsHostSetRequest(AbstractModel):
4476
4547
 
4477
4548
  @property
4478
4549
  def DomainId(self):
4479
- """域名实例ID(域名基本信息或我的域名列表接口可获取)
4550
+ """域名实例ID
4551
+ 可通过DescribeDomainList接口获取
4480
4552
  :rtype: str
4481
4553
  """
4482
4554
  return self._DomainId
@@ -5021,6 +5093,7 @@ class DescribePayWaitDetailRequest(AbstractModel):
5021
5093
  def __init__(self):
5022
5094
  r"""
5023
5095
  :param _BusinessId: 业务ID
5096
+ 可通过DescribeBiddingList接口获取
5024
5097
  :type BusinessId: str
5025
5098
  """
5026
5099
  self._BusinessId = None
@@ -5028,6 +5101,7 @@ class DescribePayWaitDetailRequest(AbstractModel):
5028
5101
  @property
5029
5102
  def BusinessId(self):
5030
5103
  """业务ID
5104
+ 可通过DescribeBiddingList接口获取
5031
5105
  :rtype: str
5032
5106
  """
5033
5107
  return self._BusinessId
@@ -5059,14 +5133,18 @@ class DescribePayWaitDetailResponse(AbstractModel):
5059
5133
  :param _Domain: 域名
5060
5134
  :type Domain: str
5061
5135
  :param _Status: 域名类型
5136
+ pay:等待支持
5137
+ sub:已经预订
5138
+ wait:等待出价
5139
+ finish:完成出价
5062
5140
  :type Status: str
5063
5141
  :param _EndTime: 支付结束时间
5064
5142
  :type EndTime: str
5065
5143
  :param _RegTime: 域名注册时间
5066
5144
  :type RegTime: str
5067
- :param _Price: 域名成交价格
5145
+ :param _Price: 域名成交价格 单位元
5068
5146
  :type Price: float
5069
- :param _RetDeposit: 待退还保证金
5147
+ :param _RetDeposit: 待退还保证金 单位元
5070
5148
  :type RetDeposit: float
5071
5149
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5072
5150
  :type RequestId: str
@@ -5093,6 +5171,10 @@ class DescribePayWaitDetailResponse(AbstractModel):
5093
5171
  @property
5094
5172
  def Status(self):
5095
5173
  """域名类型
5174
+ pay:等待支持
5175
+ sub:已经预订
5176
+ wait:等待出价
5177
+ finish:完成出价
5096
5178
  :rtype: str
5097
5179
  """
5098
5180
  return self._Status
@@ -5125,7 +5207,7 @@ class DescribePayWaitDetailResponse(AbstractModel):
5125
5207
 
5126
5208
  @property
5127
5209
  def Price(self):
5128
- """域名成交价格
5210
+ """域名成交价格 单位元
5129
5211
  :rtype: float
5130
5212
  """
5131
5213
  return self._Price
@@ -5136,7 +5218,7 @@ class DescribePayWaitDetailResponse(AbstractModel):
5136
5218
 
5137
5219
  @property
5138
5220
  def RetDeposit(self):
5139
- """待退还保证金
5221
+ """待退还保证金 单位元
5140
5222
  :rtype: float
5141
5223
  """
5142
5224
  return self._RetDeposit
@@ -5318,9 +5400,9 @@ class DescribePreAuctionListRequest(AbstractModel):
5318
5400
 
5319
5401
  def __init__(self):
5320
5402
  r"""
5321
- :param _PageNumber: 页码
5403
+ :param _PageNumber: 页码 默认1
5322
5404
  :type PageNumber: int
5323
- :param _PageSize: 条数
5405
+ :param _PageSize: 条数 默认20 最大100
5324
5406
  :type PageSize: int
5325
5407
  """
5326
5408
  self._PageNumber = None
@@ -5328,7 +5410,7 @@ class DescribePreAuctionListRequest(AbstractModel):
5328
5410
 
5329
5411
  @property
5330
5412
  def PageNumber(self):
5331
- """页码
5413
+ """页码 默认1
5332
5414
  :rtype: int
5333
5415
  """
5334
5416
  return self._PageNumber
@@ -5339,7 +5421,7 @@ class DescribePreAuctionListRequest(AbstractModel):
5339
5421
 
5340
5422
  @property
5341
5423
  def PageSize(self):
5342
- """条数
5424
+ """条数 默认20 最大100
5343
5425
  :rtype: int
5344
5426
  """
5345
5427
  return self._PageSize
@@ -5372,7 +5454,6 @@ class DescribePreAuctionListResponse(AbstractModel):
5372
5454
  :param _TotalCount: 总数
5373
5455
  :type TotalCount: int
5374
5456
  :param _PreAuctionList: 预释放竞价列表
5375
- 注意:此字段可能返回 null,表示取不到有效值。
5376
5457
  :type PreAuctionList: list of PreAuctionInfo
5377
5458
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5378
5459
  :type RequestId: str
@@ -5395,7 +5476,6 @@ class DescribePreAuctionListResponse(AbstractModel):
5395
5476
  @property
5396
5477
  def PreAuctionList(self):
5397
5478
  """预释放竞价列表
5398
- 注意:此字段可能返回 null,表示取不到有效值。
5399
5479
  :rtype: list of PreAuctionInfo
5400
5480
  """
5401
5481
  return self._PreAuctionList
@@ -6678,10 +6758,12 @@ class DescribeUnPreDomainDetailResponse(AbstractModel):
6678
6758
  :param _ExpireTime: 到期时间
6679
6759
  :type ExpireTime: str
6680
6760
  :param _Status: 域名状态
6761
+ bid:出价
6762
+ noAction:无法操作
6681
6763
  :type Status: str
6682
- :param _CurrentPrice: 域名价格
6764
+ :param _CurrentPrice: 域名价格 单位元
6683
6765
  :type CurrentPrice: float
6684
- :param _AppointBondPrice: 域名保证金
6766
+ :param _AppointBondPrice: 域名保证金 单位元
6685
6767
  :type AppointBondPrice: float
6686
6768
  :param _IsAppoint: 是否已经预约
6687
6769
  :type IsAppoint: bool
@@ -6763,6 +6845,8 @@ class DescribeUnPreDomainDetailResponse(AbstractModel):
6763
6845
  @property
6764
6846
  def Status(self):
6765
6847
  """域名状态
6848
+ bid:出价
6849
+ noAction:无法操作
6766
6850
  :rtype: str
6767
6851
  """
6768
6852
  return self._Status
@@ -6773,7 +6857,7 @@ class DescribeUnPreDomainDetailResponse(AbstractModel):
6773
6857
 
6774
6858
  @property
6775
6859
  def CurrentPrice(self):
6776
- """域名价格
6860
+ """域名价格 单位元
6777
6861
  :rtype: float
6778
6862
  """
6779
6863
  return self._CurrentPrice
@@ -6784,7 +6868,7 @@ class DescribeUnPreDomainDetailResponse(AbstractModel):
6784
6868
 
6785
6869
  @property
6786
6870
  def AppointBondPrice(self):
6787
- """域名保证金
6871
+ """域名保证金 单位元
6788
6872
  :rtype: float
6789
6873
  """
6790
6874
  return self._AppointBondPrice
@@ -7179,7 +7263,17 @@ class DomainBatchDetailSet(AbstractModel):
7179
7263
  r"""
7180
7264
  :param _Id: 详情ID
7181
7265
  :type Id: int
7182
- :param _Action: 类型 new: 注册域名 batch_transfer_prohibition_on:开启禁止转移 batch_transfer_prohibition_off:关闭禁止转移 batch_update_prohibition_on:开启禁止更新 batch_update_prohibition_off:关闭禁止更新
7266
+ :param _Action: 类型
7267
+ new:注册域名
7268
+ renew:续费域名
7269
+ batch_transfer_prohibition_on:开启禁止转移锁
7270
+ batch_transfer_prohibition_off:关闭禁止转移锁
7271
+ batch_update_prohibition_on:开启禁止更新锁
7272
+ batch_update_prohibition_off:关闭禁止更新锁
7273
+ batch_modify_owner:域名转移
7274
+ batch_modify_domain_info:域名信息修改
7275
+ batch_transfer_in:域名转入
7276
+ batch_cancel_transfer_out:域名取消转出
7183
7277
  :type Action: str
7184
7278
  :param _Domain: 域名
7185
7279
  :type Domain: str
@@ -7188,7 +7282,7 @@ doing 执行中。
7188
7282
  failed 操作失败。
7189
7283
  success 操作成功。
7190
7284
  :type Status: str
7191
- :param _Reason: 失败原因
7285
+ :param _Reason: 失败原因,如果状态成功(Status:success),则该字段为空
7192
7286
  :type Reason: str
7193
7287
  :param _CreatedOn: 创建时间
7194
7288
  :type CreatedOn: str
@@ -7219,7 +7313,17 @@ success 操作成功。
7219
7313
 
7220
7314
  @property
7221
7315
  def Action(self):
7222
- """类型 new: 注册域名 batch_transfer_prohibition_on:开启禁止转移 batch_transfer_prohibition_off:关闭禁止转移 batch_update_prohibition_on:开启禁止更新 batch_update_prohibition_off:关闭禁止更新
7316
+ """类型
7317
+ new:注册域名
7318
+ renew:续费域名
7319
+ batch_transfer_prohibition_on:开启禁止转移锁
7320
+ batch_transfer_prohibition_off:关闭禁止转移锁
7321
+ batch_update_prohibition_on:开启禁止更新锁
7322
+ batch_update_prohibition_off:关闭禁止更新锁
7323
+ batch_modify_owner:域名转移
7324
+ batch_modify_domain_info:域名信息修改
7325
+ batch_transfer_in:域名转入
7326
+ batch_cancel_transfer_out:域名取消转出
7223
7327
  :rtype: str
7224
7328
  """
7225
7329
  return self._Action
@@ -7255,7 +7359,7 @@ success 操作成功。
7255
7359
 
7256
7360
  @property
7257
7361
  def Reason(self):
7258
- """失败原因
7362
+ """失败原因,如果状态成功(Status:success),则该字段为空
7259
7363
  :rtype: str
7260
7364
  """
7261
7365
  return self._Reason
@@ -8319,8 +8423,9 @@ class ModifyDomainOwnerBatchRequest(AbstractModel):
8319
8423
  def __init__(self):
8320
8424
  r"""
8321
8425
  :param _Domains: 要过户的域名。
8426
+ 一次提交不大于4000个
8322
8427
  :type Domains: list of str
8323
- :param _NewOwnerUin: 转入账户的uin。
8428
+ :param _NewOwnerUin: 转入账户的主uin。
8324
8429
  :type NewOwnerUin: str
8325
8430
  :param _TransferDns: 是否同时转移对应的 DNS 解析域名,默认false
8326
8431
  :type TransferDns: bool
@@ -8335,6 +8440,7 @@ class ModifyDomainOwnerBatchRequest(AbstractModel):
8335
8440
  @property
8336
8441
  def Domains(self):
8337
8442
  """要过户的域名。
8443
+ 一次提交不大于4000个
8338
8444
  :rtype: list of str
8339
8445
  """
8340
8446
  return self._Domains
@@ -8345,7 +8451,7 @@ class ModifyDomainOwnerBatchRequest(AbstractModel):
8345
8451
 
8346
8452
  @property
8347
8453
  def NewOwnerUin(self):
8348
- """转入账户的uin。
8454
+ """转入账户的主uin。
8349
8455
  :rtype: str
8350
8456
  """
8351
8457
  return self._NewOwnerUin
@@ -8751,11 +8857,13 @@ class PreAuctionInfo(AbstractModel):
8751
8857
  :type Domain: str
8752
8858
  :param _BiddingTime: 竞价倒计时
8753
8859
  :type BiddingTime: str
8754
- :param _BidCount: 出价次数
8860
+ :param _BidCount: 出价次数 单位元
8755
8861
  :type BidCount: int
8756
- :param _Price: 当前价格
8862
+ :param _Price: 当前价格 单位元
8757
8863
  :type Price: float
8758
- :param _Op: 用户操作 bid:出价 "noAction":无法操作
8864
+ :param _Op: 用户操作
8865
+ bid:出价
8866
+ noAction:无法操作
8759
8867
  :type Op: str
8760
8868
  :param _BusinessId: 业务ID
8761
8869
  :type BusinessId: str
@@ -8791,7 +8899,7 @@ class PreAuctionInfo(AbstractModel):
8791
8899
 
8792
8900
  @property
8793
8901
  def BidCount(self):
8794
- """出价次数
8902
+ """出价次数 单位元
8795
8903
  :rtype: int
8796
8904
  """
8797
8905
  return self._BidCount
@@ -8802,7 +8910,7 @@ class PreAuctionInfo(AbstractModel):
8802
8910
 
8803
8911
  @property
8804
8912
  def Price(self):
8805
- """当前价格
8913
+ """当前价格 单位元
8806
8914
  :rtype: float
8807
8915
  """
8808
8916
  return self._Price
@@ -8813,7 +8921,9 @@ class PreAuctionInfo(AbstractModel):
8813
8921
 
8814
8922
  @property
8815
8923
  def Op(self):
8816
- """用户操作 bid:出价 "noAction":无法操作
8924
+ """用户操作
8925
+ bid:出价
8926
+ noAction:无法操作
8817
8927
  :rtype: str
8818
8928
  """
8819
8929
  return self._Op
@@ -9125,13 +9235,13 @@ class PriceScopeConf(AbstractModel):
9125
9235
 
9126
9236
  def __init__(self):
9127
9237
  r"""
9128
- :param _MaxPrice: 最高价格
9238
+ :param _MaxPrice: 最高价格 单位元
9129
9239
  :type MaxPrice: float
9130
- :param _MinPrice: 最低价格
9240
+ :param _MinPrice: 最低价格 单位元
9131
9241
  :type MinPrice: float
9132
- :param _Price: 价格幅度
9242
+ :param _Price: 价格幅度 单位元
9133
9243
  :type Price: float
9134
- :param _DepositPrice: 保证金
9244
+ :param _DepositPrice: 保证金 单位元
9135
9245
  :type DepositPrice: float
9136
9246
  """
9137
9247
  self._MaxPrice = None
@@ -9141,7 +9251,7 @@ class PriceScopeConf(AbstractModel):
9141
9251
 
9142
9252
  @property
9143
9253
  def MaxPrice(self):
9144
- """最高价格
9254
+ """最高价格 单位元
9145
9255
  :rtype: float
9146
9256
  """
9147
9257
  return self._MaxPrice
@@ -9152,7 +9262,7 @@ class PriceScopeConf(AbstractModel):
9152
9262
 
9153
9263
  @property
9154
9264
  def MinPrice(self):
9155
- """最低价格
9265
+ """最低价格 单位元
9156
9266
  :rtype: float
9157
9267
  """
9158
9268
  return self._MinPrice
@@ -9163,7 +9273,7 @@ class PriceScopeConf(AbstractModel):
9163
9273
 
9164
9274
  @property
9165
9275
  def Price(self):
9166
- """价格幅度
9276
+ """价格幅度 单位元
9167
9277
  :rtype: float
9168
9278
  """
9169
9279
  return self._Price
@@ -9174,7 +9284,7 @@ class PriceScopeConf(AbstractModel):
9174
9284
 
9175
9285
  @property
9176
9286
  def DepositPrice(self):
9177
- """保证金
9287
+ """保证金 单位元
9178
9288
  :rtype: float
9179
9289
  """
9180
9290
  return self._DepositPrice
@@ -9206,9 +9316,10 @@ class RenewDomainBatchRequest(AbstractModel):
9206
9316
 
9207
9317
  def __init__(self):
9208
9318
  r"""
9209
- :param _Period: 域名续费的年限。
9319
+ :param _Period: 域名续费的年限。取值范围[1,9]
9210
9320
  :type Period: int
9211
9321
  :param _Domains: 批量续费的域名。
9322
+ 一次提交不大于4000个
9212
9323
  :type Domains: list of str
9213
9324
  :param _PayMode: 付费模式 0手动在线付费,1使用余额付费,2使用特惠包。
9214
9325
  :type PayMode: int
@@ -9237,7 +9348,7 @@ class RenewDomainBatchRequest(AbstractModel):
9237
9348
 
9238
9349
  @property
9239
9350
  def Period(self):
9240
- """域名续费的年限。
9351
+ """域名续费的年限。取值范围[1,9]
9241
9352
  :rtype: int
9242
9353
  """
9243
9354
  return self._Period
@@ -9249,6 +9360,7 @@ class RenewDomainBatchRequest(AbstractModel):
9249
9360
  @property
9250
9361
  def Domains(self):
9251
9362
  """批量续费的域名。
9363
+ 一次提交不大于4000个
9252
9364
  :rtype: list of str
9253
9365
  """
9254
9366
  return self._Domains
@@ -9731,11 +9843,11 @@ class ReservedPreDomainsRequest(AbstractModel):
9731
9843
  r"""
9732
9844
  :param _DomainList: 预约预释放域名列表
9733
9845
  :type DomainList: list of str
9734
- :param _TemplateId: 模板ID
9846
+ :param _TemplateId: 模板ID 可通过DescribeTemplates接口获取
9735
9847
  :type TemplateId: str
9736
- :param _IsAutoPay: 结束后是否自动支付尾款,默认开启 传入1关闭
9848
+ :param _IsAutoPay: 结束后是否自动支付尾款,默认1 开启 传入0关闭
9737
9849
  :type IsAutoPay: int
9738
- :param _IsBidAutoPay: 结束后是否自动进行梯度保证金扣除,默认开启 传入1关闭
9850
+ :param _IsBidAutoPay: 结束后是否自动进行梯度保证金扣除,默认1开启 传入0关闭
9739
9851
  :type IsBidAutoPay: int
9740
9852
  """
9741
9853
  self._DomainList = None
@@ -9756,7 +9868,7 @@ class ReservedPreDomainsRequest(AbstractModel):
9756
9868
 
9757
9869
  @property
9758
9870
  def TemplateId(self):
9759
- """模板ID
9871
+ """模板ID 可通过DescribeTemplates接口获取
9760
9872
  :rtype: str
9761
9873
  """
9762
9874
  return self._TemplateId
@@ -9767,7 +9879,7 @@ class ReservedPreDomainsRequest(AbstractModel):
9767
9879
 
9768
9880
  @property
9769
9881
  def IsAutoPay(self):
9770
- """结束后是否自动支付尾款,默认开启 传入1关闭
9882
+ """结束后是否自动支付尾款,默认1 开启 传入0关闭
9771
9883
  :rtype: int
9772
9884
  """
9773
9885
  return self._IsAutoPay
@@ -9778,7 +9890,7 @@ class ReservedPreDomainsRequest(AbstractModel):
9778
9890
 
9779
9891
  @property
9780
9892
  def IsBidAutoPay(self):
9781
- """结束后是否自动进行梯度保证金扣除,默认开启 传入1关闭
9893
+ """结束后是否自动进行梯度保证金扣除,默认1开启 传入0关闭
9782
9894
  :rtype: int
9783
9895
  """
9784
9896
  return self._IsBidAutoPay
@@ -9972,7 +10084,7 @@ class SetDomainAutoRenewRequest(AbstractModel):
9972
10084
 
9973
10085
  def __init__(self):
9974
10086
  r"""
9975
- :param _DomainId: 域名ID 例如:domain-123abc
10087
+ :param _DomainId: 域名ID 例如:domain-dwerewwq可通过DescribreDomainList接口获取
9976
10088
  :type DomainId: str
9977
10089
  :param _AutoRenew: AutoRenew 有三个可选值:
9978
10090
  0:不设置自动续费
@@ -9985,7 +10097,7 @@ class SetDomainAutoRenewRequest(AbstractModel):
9985
10097
 
9986
10098
  @property
9987
10099
  def DomainId(self):
9988
- """域名ID 例如:domain-123abc
10100
+ """域名ID 例如:domain-dwerewwq可通过DescribreDomainList接口获取
9989
10101
  :rtype: str
9990
10102
  """
9991
10103
  return self._DomainId
@@ -10108,14 +10220,14 @@ class SyncCustomDnsHostRequest(AbstractModel):
10108
10220
 
10109
10221
  def __init__(self):
10110
10222
  r"""
10111
- :param _DomainId: 域名实例ID
10223
+ :param _DomainId: 域名实例ID,可以通过DescribeDomainList接口获取
10112
10224
  :type DomainId: str
10113
10225
  """
10114
10226
  self._DomainId = None
10115
10227
 
10116
10228
  @property
10117
10229
  def DomainId(self):
10118
- """域名实例ID
10230
+ """域名实例ID,可以通过DescribeDomainList接口获取
10119
10231
  :rtype: str
10120
10232
  """
10121
10233
  return self._DomainId
@@ -10189,7 +10301,12 @@ class TemplateInfo(AbstractModel):
10189
10301
  r"""
10190
10302
  :param _TemplateId: 模板ID
10191
10303
  :type TemplateId: str
10192
- :param _AuditStatus: 认证状态:未实名认证:NotUpload, 实名审核中:InAudit,已实名认证:Approved,实名审核失败:Reject
10304
+ :param _AuditStatus: 认证状态:
10305
+ NotUpload: 未实名认证
10306
+ InAudit: 实名审核中
10307
+ Approved: 已实名认证
10308
+ Reject: 实名审核失败
10309
+ NotVerified: 实名信息待修改
10193
10310
  :type AuditStatus: str
10194
10311
  :param _CreatedOn: 创建时间
10195
10312
  :type CreatedOn: str
@@ -10238,7 +10355,12 @@ class TemplateInfo(AbstractModel):
10238
10355
 
10239
10356
  @property
10240
10357
  def AuditStatus(self):
10241
- """认证状态:未实名认证:NotUpload, 实名审核中:InAudit,已实名认证:Approved,实名审核失败:Reject
10358
+ """认证状态:
10359
+ NotUpload: 未实名认证
10360
+ InAudit: 实名审核中
10361
+ Approved: 已实名认证
10362
+ Reject: 实名审核失败
10363
+ NotVerified: 实名信息待修改
10242
10364
  :rtype: str
10243
10365
  """
10244
10366
  return self._AuditStatus
@@ -10393,10 +10515,12 @@ class TransferInDomainBatchRequest(AbstractModel):
10393
10515
  def __init__(self):
10394
10516
  r"""
10395
10517
  :param _Domains: 转入的域名名称数组。
10518
+ 一次提交不大于4000个
10396
10519
  :type Domains: list of str
10397
10520
  :param _PassWords: 域名转移码数组。
10398
10521
  :type PassWords: list of str
10399
10522
  :param _TemplateId: 模板ID。
10523
+ 可通过DescribeTemplates接口获取
10400
10524
  :type TemplateId: str
10401
10525
  :param _PayMode: 付费模式 0手动在线付费,1使用余额付费。
10402
10526
  :type PayMode: int
@@ -10434,6 +10558,7 @@ false:关闭60天内禁止转移注册商锁定
10434
10558
  @property
10435
10559
  def Domains(self):
10436
10560
  """转入的域名名称数组。
10561
+ 一次提交不大于4000个
10437
10562
  :rtype: list of str
10438
10563
  """
10439
10564
  return self._Domains
@@ -10456,6 +10581,7 @@ false:关闭60天内禁止转移注册商锁定
10456
10581
  @property
10457
10582
  def TemplateId(self):
10458
10583
  """模板ID。
10584
+ 可通过DescribeTemplates接口获取
10459
10585
  :rtype: str
10460
10586
  """
10461
10587
  return self._TemplateId
@@ -10630,10 +10756,11 @@ class TransferProhibitionBatchRequest(AbstractModel):
10630
10756
  def __init__(self):
10631
10757
  r"""
10632
10758
  :param _Domains: 批量操作的域名。
10759
+ 一次提交不大于4000个
10633
10760
  :type Domains: list of str
10634
10761
  :param _Status: 是否开启禁止域名转移。
10635
- True: 开启禁止域名转移状态。
10636
- False:关闭禁止域名转移状态。
10762
+ true: 开启禁止域名转移状态。
10763
+ false:关闭禁止域名转移状态。
10637
10764
  :type Status: bool
10638
10765
  """
10639
10766
  self._Domains = None
@@ -10642,6 +10769,7 @@ False:关闭禁止域名转移状态。
10642
10769
  @property
10643
10770
  def Domains(self):
10644
10771
  """批量操作的域名。
10772
+ 一次提交不大于4000个
10645
10773
  :rtype: list of str
10646
10774
  """
10647
10775
  return self._Domains
@@ -10653,8 +10781,8 @@ False:关闭禁止域名转移状态。
10653
10781
  @property
10654
10782
  def Status(self):
10655
10783
  """是否开启禁止域名转移。
10656
- True: 开启禁止域名转移状态。
10657
- False:关闭禁止域名转移状态。
10784
+ true: 开启禁止域名转移状态。
10785
+ false:关闭禁止域名转移状态。
10658
10786
  :rtype: bool
10659
10787
  """
10660
10788
  return self._Status
@@ -10728,10 +10856,11 @@ class UpdateProhibitionBatchRequest(AbstractModel):
10728
10856
  def __init__(self):
10729
10857
  r"""
10730
10858
  :param _Domains: 批量操作的域名。
10859
+ 一次提交不大于4000个
10731
10860
  :type Domains: list of str
10732
10861
  :param _Status: 是否开启禁止域名更新。
10733
- True:开启禁止域名更新状态。
10734
- False:关闭禁止域名更新状态。
10862
+ true:开启禁止域名更新状态。
10863
+ false:关闭禁止域名更新状态。
10735
10864
  :type Status: bool
10736
10865
  """
10737
10866
  self._Domains = None
@@ -10740,6 +10869,7 @@ False:关闭禁止域名更新状态。
10740
10869
  @property
10741
10870
  def Domains(self):
10742
10871
  """批量操作的域名。
10872
+ 一次提交不大于4000个
10743
10873
  :rtype: list of str
10744
10874
  """
10745
10875
  return self._Domains
@@ -10751,8 +10881,8 @@ False:关闭禁止域名更新状态。
10751
10881
  @property
10752
10882
  def Status(self):
10753
10883
  """是否开启禁止域名更新。
10754
- True:开启禁止域名更新状态。
10755
- False:关闭禁止域名更新状态。
10884
+ true:开启禁止域名更新状态。
10885
+ false:关闭禁止域名更新状态。
10756
10886
  :rtype: bool
10757
10887
  """
10758
10888
  return self._Status