tencentcloud-sdk-python 3.0.1338__py2.py3-none-any.whl → 3.0.1339__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/models.py +64 -112
- tencentcloud/bh/v20230418/bh_client.py +23 -0
- tencentcloud/bh/v20230418/models.py +342 -0
- tencentcloud/cdwch/v20200915/models.py +15 -0
- tencentcloud/cfg/v20210820/models.py +30 -6
- tencentcloud/cmq/v20190304/models.py +0 -90
- tencentcloud/cvm/v20170312/errorcodes.py +3 -0
- tencentcloud/cynosdb/v20190107/models.py +2 -358
- tencentcloud/domain/v20180808/models.py +0 -124
- tencentcloud/dsgc/v20190723/models.py +8 -0
- tencentcloud/dts/v20180330/models.py +0 -2
- tencentcloud/dts/v20211206/models.py +0 -328
- tencentcloud/emr/v20190103/emr_client.py +23 -0
- tencentcloud/emr/v20190103/models.py +431 -0
- tencentcloud/es/v20180416/models.py +17 -0
- tencentcloud/fmu/v20191213/errorcodes.py +0 -21
- tencentcloud/fmu/v20191213/fmu_client.py +0 -75
- tencentcloud/fmu/v20191213/models.py +0 -527
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +0 -50
- tencentcloud/iotexplorer/v20190423/models.py +0 -491
- tencentcloud/iss/v20230517/models.py +15 -534
- tencentcloud/kms/v20190118/models.py +30 -0
- tencentcloud/lcic/v20220817/lcic_client.py +46 -0
- tencentcloud/lcic/v20220817/models.py +188 -0
- tencentcloud/mongodb/v20190725/models.py +109 -0
- tencentcloud/mongodb/v20190725/mongodb_client.py +23 -0
- tencentcloud/rum/v20210622/models.py +0 -2
- tencentcloud/svp/v20240125/errorcodes.py +3 -0
- tencentcloud/svp/v20240125/models.py +506 -0
- tencentcloud/svp/v20240125/svp_client.py +23 -0
- tencentcloud/trtc/v20190722/models.py +39 -8
- tencentcloud/tsf/v20180326/errorcodes.py +6 -0
- tencentcloud/tsf/v20180326/models.py +85 -14
- tencentcloud/tsf/v20180326/tsf_client.py +23 -0
- tencentcloud/vpc/v20170312/models.py +100 -0
- tencentcloud/vpc/v20170312/vpc_client.py +23 -0
- tencentcloud/wedata/v20210820/models.py +654 -0
- tencentcloud/wedata/v20210820/wedata_client.py +23 -0
- {tencentcloud_sdk_python-3.0.1338.dist-info → tencentcloud_sdk_python-3.0.1339.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1338.dist-info → tencentcloud_sdk_python-3.0.1339.dist-info}/RECORD +44 -44
- {tencentcloud_sdk_python-3.0.1338.dist-info → tencentcloud_sdk_python-3.0.1339.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1338.dist-info → tencentcloud_sdk_python-3.0.1339.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1338.dist-info → tencentcloud_sdk_python-3.0.1339.dist-info}/top_level.txt +0 -0
@@ -26,16 +26,12 @@ class AuctionInfo(AbstractModel):
|
|
26
26
|
def __init__(self):
|
27
27
|
r"""
|
28
28
|
:param _Bidder: 竞拍人
|
29
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
30
29
|
:type Bidder: str
|
31
30
|
:param _AuctionTime: 竞拍时间
|
32
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
33
31
|
:type AuctionTime: str
|
34
32
|
:param _AuctionPrice: 竞拍价格
|
35
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36
33
|
:type AuctionPrice: float
|
37
34
|
:param _Status: 状态 up: 领先 down: 落后
|
38
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
39
35
|
:type Status: str
|
40
36
|
"""
|
41
37
|
self._Bidder = None
|
@@ -46,7 +42,6 @@ class AuctionInfo(AbstractModel):
|
|
46
42
|
@property
|
47
43
|
def Bidder(self):
|
48
44
|
"""竞拍人
|
49
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
50
45
|
:rtype: str
|
51
46
|
"""
|
52
47
|
return self._Bidder
|
@@ -58,7 +53,6 @@ class AuctionInfo(AbstractModel):
|
|
58
53
|
@property
|
59
54
|
def AuctionTime(self):
|
60
55
|
"""竞拍时间
|
61
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62
56
|
:rtype: str
|
63
57
|
"""
|
64
58
|
return self._AuctionTime
|
@@ -70,7 +64,6 @@ class AuctionInfo(AbstractModel):
|
|
70
64
|
@property
|
71
65
|
def AuctionPrice(self):
|
72
66
|
"""竞拍价格
|
73
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
74
67
|
:rtype: float
|
75
68
|
"""
|
76
69
|
return self._AuctionPrice
|
@@ -82,7 +75,6 @@ class AuctionInfo(AbstractModel):
|
|
82
75
|
@property
|
83
76
|
def Status(self):
|
84
77
|
"""状态 up: 领先 down: 落后
|
85
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
86
78
|
:rtype: str
|
87
79
|
"""
|
88
80
|
return self._Status
|
@@ -544,25 +536,18 @@ class BiddingAppointResult(AbstractModel):
|
|
544
536
|
def __init__(self):
|
545
537
|
r"""
|
546
538
|
:param _BusinessID: business_id
|
547
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
548
539
|
:type BusinessID: str
|
549
540
|
:param _Domain: 域名
|
550
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
551
541
|
:type Domain: str
|
552
542
|
:param _AppointPrice: 预定价格
|
553
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
554
543
|
:type AppointPrice: int
|
555
544
|
:param _AppointBondPrice: 预约保证金
|
556
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
557
545
|
:type AppointBondPrice: int
|
558
546
|
:param _AppointEndTime: 预约结束时间
|
559
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
560
547
|
:type AppointEndTime: str
|
561
548
|
:param _AppointNum: 预约人数
|
562
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
563
549
|
:type AppointNum: int
|
564
550
|
:param _Status: 1 已预约,2 竞价中,3 等待出价 4 竞价失败 5 等待支付 6 等待转移,7 转移中 8 交易成功 9 预约持有者赎回 10 竞价持有者赎回 11 其他阶段持有者赎回 12 违约
|
565
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
566
551
|
:type Status: int
|
567
552
|
"""
|
568
553
|
self._BusinessID = None
|
@@ -576,7 +561,6 @@ class BiddingAppointResult(AbstractModel):
|
|
576
561
|
@property
|
577
562
|
def BusinessID(self):
|
578
563
|
"""business_id
|
579
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
580
564
|
:rtype: str
|
581
565
|
"""
|
582
566
|
return self._BusinessID
|
@@ -588,7 +572,6 @@ class BiddingAppointResult(AbstractModel):
|
|
588
572
|
@property
|
589
573
|
def Domain(self):
|
590
574
|
"""域名
|
591
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
592
575
|
:rtype: str
|
593
576
|
"""
|
594
577
|
return self._Domain
|
@@ -600,7 +583,6 @@ class BiddingAppointResult(AbstractModel):
|
|
600
583
|
@property
|
601
584
|
def AppointPrice(self):
|
602
585
|
"""预定价格
|
603
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
604
586
|
:rtype: int
|
605
587
|
"""
|
606
588
|
return self._AppointPrice
|
@@ -612,7 +594,6 @@ class BiddingAppointResult(AbstractModel):
|
|
612
594
|
@property
|
613
595
|
def AppointBondPrice(self):
|
614
596
|
"""预约保证金
|
615
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
616
597
|
:rtype: int
|
617
598
|
"""
|
618
599
|
return self._AppointBondPrice
|
@@ -624,7 +605,6 @@ class BiddingAppointResult(AbstractModel):
|
|
624
605
|
@property
|
625
606
|
def AppointEndTime(self):
|
626
607
|
"""预约结束时间
|
627
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
628
608
|
:rtype: str
|
629
609
|
"""
|
630
610
|
return self._AppointEndTime
|
@@ -636,7 +616,6 @@ class BiddingAppointResult(AbstractModel):
|
|
636
616
|
@property
|
637
617
|
def AppointNum(self):
|
638
618
|
"""预约人数
|
639
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
640
619
|
:rtype: int
|
641
620
|
"""
|
642
621
|
return self._AppointNum
|
@@ -648,7 +627,6 @@ class BiddingAppointResult(AbstractModel):
|
|
648
627
|
@property
|
649
628
|
def Status(self):
|
650
629
|
"""1 已预约,2 竞价中,3 等待出价 4 竞价失败 5 等待支付 6 等待转移,7 转移中 8 交易成功 9 预约持有者赎回 10 竞价持有者赎回 11 其他阶段持有者赎回 12 违约
|
651
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
652
630
|
:rtype: int
|
653
631
|
"""
|
654
632
|
return self._Status
|
@@ -793,34 +771,24 @@ class BiddingResult(AbstractModel):
|
|
793
771
|
def __init__(self):
|
794
772
|
r"""
|
795
773
|
:param _BusinessID: business_id
|
796
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
797
774
|
:type BusinessID: str
|
798
775
|
:param _Domain: 域名
|
799
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
800
776
|
:type Domain: str
|
801
777
|
:param _CurrentPrice: 当前价格
|
802
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
803
778
|
:type CurrentPrice: int
|
804
779
|
:param _CurrentNickname: 当前用户昵称
|
805
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
806
780
|
:type CurrentNickname: str
|
807
781
|
:param _BiddingPrice: 我的出价
|
808
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
809
782
|
:type BiddingPrice: int
|
810
783
|
:param _BiddingBondPrice: 竞价保证金
|
811
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
812
784
|
:type BiddingBondPrice: int
|
813
785
|
:param _BiddingEndTime: 竞价结束时间
|
814
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
815
786
|
:type BiddingEndTime: str
|
816
787
|
:param _BiddingFlag: 竞价标识,1 领先,2 落后
|
817
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
818
788
|
:type BiddingFlag: int
|
819
789
|
:param _BiddingNum: 出价次数
|
820
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
821
790
|
:type BiddingNum: int
|
822
791
|
:param _Status: 2 竞价中 3 等待出价 4 竞价失败 10 竞价持有者赎回
|
823
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
824
792
|
:type Status: int
|
825
793
|
"""
|
826
794
|
self._BusinessID = None
|
@@ -837,7 +805,6 @@ class BiddingResult(AbstractModel):
|
|
837
805
|
@property
|
838
806
|
def BusinessID(self):
|
839
807
|
"""business_id
|
840
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
841
808
|
:rtype: str
|
842
809
|
"""
|
843
810
|
return self._BusinessID
|
@@ -849,7 +816,6 @@ class BiddingResult(AbstractModel):
|
|
849
816
|
@property
|
850
817
|
def Domain(self):
|
851
818
|
"""域名
|
852
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
853
819
|
:rtype: str
|
854
820
|
"""
|
855
821
|
return self._Domain
|
@@ -861,7 +827,6 @@ class BiddingResult(AbstractModel):
|
|
861
827
|
@property
|
862
828
|
def CurrentPrice(self):
|
863
829
|
"""当前价格
|
864
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
865
830
|
:rtype: int
|
866
831
|
"""
|
867
832
|
return self._CurrentPrice
|
@@ -873,7 +838,6 @@ class BiddingResult(AbstractModel):
|
|
873
838
|
@property
|
874
839
|
def CurrentNickname(self):
|
875
840
|
"""当前用户昵称
|
876
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
877
841
|
:rtype: str
|
878
842
|
"""
|
879
843
|
return self._CurrentNickname
|
@@ -885,7 +849,6 @@ class BiddingResult(AbstractModel):
|
|
885
849
|
@property
|
886
850
|
def BiddingPrice(self):
|
887
851
|
"""我的出价
|
888
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
889
852
|
:rtype: int
|
890
853
|
"""
|
891
854
|
return self._BiddingPrice
|
@@ -897,7 +860,6 @@ class BiddingResult(AbstractModel):
|
|
897
860
|
@property
|
898
861
|
def BiddingBondPrice(self):
|
899
862
|
"""竞价保证金
|
900
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
901
863
|
:rtype: int
|
902
864
|
"""
|
903
865
|
return self._BiddingBondPrice
|
@@ -909,7 +871,6 @@ class BiddingResult(AbstractModel):
|
|
909
871
|
@property
|
910
872
|
def BiddingEndTime(self):
|
911
873
|
"""竞价结束时间
|
912
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
913
874
|
:rtype: str
|
914
875
|
"""
|
915
876
|
return self._BiddingEndTime
|
@@ -921,7 +882,6 @@ class BiddingResult(AbstractModel):
|
|
921
882
|
@property
|
922
883
|
def BiddingFlag(self):
|
923
884
|
"""竞价标识,1 领先,2 落后
|
924
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
925
885
|
:rtype: int
|
926
886
|
"""
|
927
887
|
return self._BiddingFlag
|
@@ -933,7 +893,6 @@ class BiddingResult(AbstractModel):
|
|
933
893
|
@property
|
934
894
|
def BiddingNum(self):
|
935
895
|
"""出价次数
|
936
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
937
896
|
:rtype: int
|
938
897
|
"""
|
939
898
|
return self._BiddingNum
|
@@ -945,7 +904,6 @@ class BiddingResult(AbstractModel):
|
|
945
904
|
@property
|
946
905
|
def Status(self):
|
947
906
|
"""2 竞价中 3 等待出价 4 竞价失败 10 竞价持有者赎回
|
948
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
949
907
|
:rtype: int
|
950
908
|
"""
|
951
909
|
return self._Status
|
@@ -984,7 +942,6 @@ class BiddingSuccessfulResult(AbstractModel):
|
|
984
942
|
def __init__(self):
|
985
943
|
r"""
|
986
944
|
:param _PayEndTime: 支付结束时间
|
987
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
988
945
|
:type PayEndTime: str
|
989
946
|
"""
|
990
947
|
self._PayEndTime = None
|
@@ -992,7 +949,6 @@ class BiddingSuccessfulResult(AbstractModel):
|
|
992
949
|
@property
|
993
950
|
def PayEndTime(self):
|
994
951
|
"""支付结束时间
|
995
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
996
952
|
:rtype: str
|
997
953
|
"""
|
998
954
|
return self._PayEndTime
|
@@ -5438,7 +5394,6 @@ class DescribePreAuctionListResponse(AbstractModel):
|
|
5438
5394
|
def __init__(self):
|
5439
5395
|
r"""
|
5440
5396
|
:param _TotalCount: 总数
|
5441
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5442
5397
|
:type TotalCount: int
|
5443
5398
|
:param _PreAuctionList: 预释放竞价列表
|
5444
5399
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -5453,7 +5408,6 @@ class DescribePreAuctionListResponse(AbstractModel):
|
|
5453
5408
|
@property
|
5454
5409
|
def TotalCount(self):
|
5455
5410
|
"""总数
|
5456
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5457
5411
|
:rtype: int
|
5458
5412
|
"""
|
5459
5413
|
return self._TotalCount
|
@@ -6000,7 +5954,6 @@ class DescribePreReleaseListResponse(AbstractModel):
|
|
6000
5954
|
def __init__(self):
|
6001
5955
|
r"""
|
6002
5956
|
:param _TotalCount: 数量
|
6003
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6004
5957
|
:type TotalCount: int
|
6005
5958
|
:param _PreReleaseList: 预释放列表
|
6006
5959
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -6015,7 +5968,6 @@ class DescribePreReleaseListResponse(AbstractModel):
|
|
6015
5968
|
@property
|
6016
5969
|
def TotalCount(self):
|
6017
5970
|
"""数量
|
6018
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6019
5971
|
:rtype: int
|
6020
5972
|
"""
|
6021
5973
|
return self._TotalCount
|
@@ -7265,14 +7217,12 @@ failed 操作失败。
|
|
7265
7217
|
success 操作成功。
|
7266
7218
|
:type Status: str
|
7267
7219
|
:param _Reason: 失败原因
|
7268
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7269
7220
|
:type Reason: str
|
7270
7221
|
:param _CreatedOn: 创建时间
|
7271
7222
|
:type CreatedOn: str
|
7272
7223
|
:param _UpdatedOn: 更新时间
|
7273
7224
|
:type UpdatedOn: str
|
7274
7225
|
:param _BigDealId: 订单号
|
7275
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7276
7226
|
:type BigDealId: str
|
7277
7227
|
"""
|
7278
7228
|
self._Id = None
|
@@ -7334,7 +7284,6 @@ success 操作成功。
|
|
7334
7284
|
@property
|
7335
7285
|
def Reason(self):
|
7336
7286
|
"""失败原因
|
7337
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7338
7287
|
:rtype: str
|
7339
7288
|
"""
|
7340
7289
|
return self._Reason
|
@@ -7368,7 +7317,6 @@ success 操作成功。
|
|
7368
7317
|
@property
|
7369
7318
|
def BigDealId(self):
|
7370
7319
|
"""订单号
|
7371
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7372
7320
|
:rtype: str
|
7373
7321
|
"""
|
7374
7322
|
return self._BigDealId
|
@@ -7736,7 +7684,6 @@ Reject:实名审核失败
|
|
7736
7684
|
NoAudit: 无需实名认证
|
7737
7685
|
:type RealNameAuditStatus: str
|
7738
7686
|
:param _RealNameAuditUnpassReason: 域名实名认证不通过原因。
|
7739
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7740
7687
|
:type RealNameAuditUnpassReason: str
|
7741
7688
|
:param _DomainNameAuditStatus: 域名命名审核状态。
|
7742
7689
|
NotAudit:命名审核未上传
|
@@ -7746,7 +7693,6 @@ Approved:域名命名审核通过
|
|
7746
7693
|
Rejected:域名命名审核拒绝
|
7747
7694
|
:type DomainNameAuditStatus: str
|
7748
7695
|
:param _DomainNameAuditUnpassReason: 域名命名审核不通过原因。
|
7749
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7750
7696
|
:type DomainNameAuditUnpassReason: str
|
7751
7697
|
:param _CreationDate: 注册时间。
|
7752
7698
|
:type CreationDate: str
|
@@ -7868,7 +7814,6 @@ NoAudit: 无需实名认证
|
|
7868
7814
|
@property
|
7869
7815
|
def RealNameAuditUnpassReason(self):
|
7870
7816
|
"""域名实名认证不通过原因。
|
7871
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7872
7817
|
:rtype: str
|
7873
7818
|
"""
|
7874
7819
|
return self._RealNameAuditUnpassReason
|
@@ -7896,7 +7841,6 @@ Rejected:域名命名审核拒绝
|
|
7896
7841
|
@property
|
7897
7842
|
def DomainNameAuditUnpassReason(self):
|
7898
7843
|
"""域名命名审核不通过原因。
|
7899
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7900
7844
|
:rtype: str
|
7901
7845
|
"""
|
7902
7846
|
return self._DomainNameAuditUnpassReason
|
@@ -8119,10 +8063,8 @@ class FailReservedDomainInfo(AbstractModel):
|
|
8119
8063
|
def __init__(self):
|
8120
8064
|
r"""
|
8121
8065
|
:param _Domain: 域名
|
8122
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8123
8066
|
:type Domain: str
|
8124
8067
|
:param _FailReason: 预约失败原因
|
8125
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8126
8068
|
:type FailReason: str
|
8127
8069
|
"""
|
8128
8070
|
self._Domain = None
|
@@ -8131,7 +8073,6 @@ class FailReservedDomainInfo(AbstractModel):
|
|
8131
8073
|
@property
|
8132
8074
|
def Domain(self):
|
8133
8075
|
"""域名
|
8134
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8135
8076
|
:rtype: str
|
8136
8077
|
"""
|
8137
8078
|
return self._Domain
|
@@ -8143,7 +8084,6 @@ class FailReservedDomainInfo(AbstractModel):
|
|
8143
8084
|
@property
|
8144
8085
|
def FailReason(self):
|
8145
8086
|
"""预约失败原因
|
8146
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8147
8087
|
:rtype: str
|
8148
8088
|
"""
|
8149
8089
|
return self._FailReason
|
@@ -8806,22 +8746,16 @@ class PreAuctionInfo(AbstractModel):
|
|
8806
8746
|
def __init__(self):
|
8807
8747
|
r"""
|
8808
8748
|
:param _Domain: 域名
|
8809
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8810
8749
|
:type Domain: str
|
8811
8750
|
:param _BiddingTime: 竞价倒计时
|
8812
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8813
8751
|
:type BiddingTime: str
|
8814
8752
|
:param _BidCount: 出价次数
|
8815
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8816
8753
|
:type BidCount: int
|
8817
8754
|
:param _Price: 当前价格
|
8818
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8819
8755
|
:type Price: float
|
8820
8756
|
:param _Op: 用户操作 bid:出价 "noAction":无法操作
|
8821
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8822
8757
|
:type Op: str
|
8823
8758
|
:param _BusinessId: 业务ID
|
8824
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8825
8759
|
:type BusinessId: str
|
8826
8760
|
"""
|
8827
8761
|
self._Domain = None
|
@@ -8834,7 +8768,6 @@ class PreAuctionInfo(AbstractModel):
|
|
8834
8768
|
@property
|
8835
8769
|
def Domain(self):
|
8836
8770
|
"""域名
|
8837
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8838
8771
|
:rtype: str
|
8839
8772
|
"""
|
8840
8773
|
return self._Domain
|
@@ -8846,7 +8779,6 @@ class PreAuctionInfo(AbstractModel):
|
|
8846
8779
|
@property
|
8847
8780
|
def BiddingTime(self):
|
8848
8781
|
"""竞价倒计时
|
8849
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8850
8782
|
:rtype: str
|
8851
8783
|
"""
|
8852
8784
|
return self._BiddingTime
|
@@ -8858,7 +8790,6 @@ class PreAuctionInfo(AbstractModel):
|
|
8858
8790
|
@property
|
8859
8791
|
def BidCount(self):
|
8860
8792
|
"""出价次数
|
8861
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8862
8793
|
:rtype: int
|
8863
8794
|
"""
|
8864
8795
|
return self._BidCount
|
@@ -8870,7 +8801,6 @@ class PreAuctionInfo(AbstractModel):
|
|
8870
8801
|
@property
|
8871
8802
|
def Price(self):
|
8872
8803
|
"""当前价格
|
8873
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8874
8804
|
:rtype: float
|
8875
8805
|
"""
|
8876
8806
|
return self._Price
|
@@ -8882,7 +8812,6 @@ class PreAuctionInfo(AbstractModel):
|
|
8882
8812
|
@property
|
8883
8813
|
def Op(self):
|
8884
8814
|
"""用户操作 bid:出价 "noAction":无法操作
|
8885
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8886
8815
|
:rtype: str
|
8887
8816
|
"""
|
8888
8817
|
return self._Op
|
@@ -8894,7 +8823,6 @@ class PreAuctionInfo(AbstractModel):
|
|
8894
8823
|
@property
|
8895
8824
|
def BusinessId(self):
|
8896
8825
|
"""业务ID
|
8897
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8898
8826
|
:rtype: str
|
8899
8827
|
"""
|
8900
8828
|
return self._BusinessId
|
@@ -8929,34 +8857,24 @@ class PreReleaseInfo(AbstractModel):
|
|
8929
8857
|
def __init__(self):
|
8930
8858
|
r"""
|
8931
8859
|
:param _Domain: 域名
|
8932
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8933
8860
|
:type Domain: str
|
8934
8861
|
:param _ReservationTime: 预订倒计时
|
8935
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8936
8862
|
:type ReservationTime: str
|
8937
8863
|
:param _RegTime: 域名注册时间
|
8938
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8939
8864
|
:type RegTime: str
|
8940
8865
|
:param _DelTime: 域名删除时间
|
8941
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8942
8866
|
:type DelTime: str
|
8943
8867
|
:param _CurrentPeople: 当前人数
|
8944
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8945
8868
|
:type CurrentPeople: int
|
8946
8869
|
:param _Price: 当前价格
|
8947
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8948
8870
|
:type Price: float
|
8949
8871
|
:param _IsFollow: 是否收藏
|
8950
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8951
8872
|
:type IsFollow: bool
|
8952
8873
|
:param _IsAppoint: 是否已经预约
|
8953
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8954
8874
|
:type IsAppoint: bool
|
8955
8875
|
:param _BusinessId: 业务ID
|
8956
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8957
8876
|
:type BusinessId: str
|
8958
8877
|
:param _IsDomainUser: 是否为原持有者
|
8959
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8960
8878
|
:type IsDomainUser: bool
|
8961
8879
|
"""
|
8962
8880
|
self._Domain = None
|
@@ -8973,7 +8891,6 @@ class PreReleaseInfo(AbstractModel):
|
|
8973
8891
|
@property
|
8974
8892
|
def Domain(self):
|
8975
8893
|
"""域名
|
8976
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8977
8894
|
:rtype: str
|
8978
8895
|
"""
|
8979
8896
|
return self._Domain
|
@@ -8985,7 +8902,6 @@ class PreReleaseInfo(AbstractModel):
|
|
8985
8902
|
@property
|
8986
8903
|
def ReservationTime(self):
|
8987
8904
|
"""预订倒计时
|
8988
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8989
8905
|
:rtype: str
|
8990
8906
|
"""
|
8991
8907
|
return self._ReservationTime
|
@@ -8997,7 +8913,6 @@ class PreReleaseInfo(AbstractModel):
|
|
8997
8913
|
@property
|
8998
8914
|
def RegTime(self):
|
8999
8915
|
"""域名注册时间
|
9000
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9001
8916
|
:rtype: str
|
9002
8917
|
"""
|
9003
8918
|
return self._RegTime
|
@@ -9009,7 +8924,6 @@ class PreReleaseInfo(AbstractModel):
|
|
9009
8924
|
@property
|
9010
8925
|
def DelTime(self):
|
9011
8926
|
"""域名删除时间
|
9012
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9013
8927
|
:rtype: str
|
9014
8928
|
"""
|
9015
8929
|
return self._DelTime
|
@@ -9021,7 +8935,6 @@ class PreReleaseInfo(AbstractModel):
|
|
9021
8935
|
@property
|
9022
8936
|
def CurrentPeople(self):
|
9023
8937
|
"""当前人数
|
9024
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9025
8938
|
:rtype: int
|
9026
8939
|
"""
|
9027
8940
|
return self._CurrentPeople
|
@@ -9033,7 +8946,6 @@ class PreReleaseInfo(AbstractModel):
|
|
9033
8946
|
@property
|
9034
8947
|
def Price(self):
|
9035
8948
|
"""当前价格
|
9036
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9037
8949
|
:rtype: float
|
9038
8950
|
"""
|
9039
8951
|
return self._Price
|
@@ -9045,7 +8957,6 @@ class PreReleaseInfo(AbstractModel):
|
|
9045
8957
|
@property
|
9046
8958
|
def IsFollow(self):
|
9047
8959
|
"""是否收藏
|
9048
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9049
8960
|
:rtype: bool
|
9050
8961
|
"""
|
9051
8962
|
return self._IsFollow
|
@@ -9057,7 +8968,6 @@ class PreReleaseInfo(AbstractModel):
|
|
9057
8968
|
@property
|
9058
8969
|
def IsAppoint(self):
|
9059
8970
|
"""是否已经预约
|
9060
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9061
8971
|
:rtype: bool
|
9062
8972
|
"""
|
9063
8973
|
return self._IsAppoint
|
@@ -9069,7 +8979,6 @@ class PreReleaseInfo(AbstractModel):
|
|
9069
8979
|
@property
|
9070
8980
|
def BusinessId(self):
|
9071
8981
|
"""业务ID
|
9072
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9073
8982
|
:rtype: str
|
9074
8983
|
"""
|
9075
8984
|
return self._BusinessId
|
@@ -9081,7 +8990,6 @@ class PreReleaseInfo(AbstractModel):
|
|
9081
8990
|
@property
|
9082
8991
|
def IsDomainUser(self):
|
9083
8992
|
"""是否为原持有者
|
9084
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9085
8993
|
:rtype: bool
|
9086
8994
|
"""
|
9087
8995
|
return self._IsDomainUser
|
@@ -9216,16 +9124,12 @@ class PriceScopeConf(AbstractModel):
|
|
9216
9124
|
def __init__(self):
|
9217
9125
|
r"""
|
9218
9126
|
:param _MaxPrice: 最高价格
|
9219
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9220
9127
|
:type MaxPrice: float
|
9221
9128
|
:param _MinPrice: 最低价格
|
9222
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9223
9129
|
:type MinPrice: float
|
9224
9130
|
:param _Price: 价格幅度
|
9225
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9226
9131
|
:type Price: float
|
9227
9132
|
:param _DepositPrice: 保证金
|
9228
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9229
9133
|
:type DepositPrice: float
|
9230
9134
|
"""
|
9231
9135
|
self._MaxPrice = None
|
@@ -9236,7 +9140,6 @@ class PriceScopeConf(AbstractModel):
|
|
9236
9140
|
@property
|
9237
9141
|
def MaxPrice(self):
|
9238
9142
|
"""最高价格
|
9239
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9240
9143
|
:rtype: float
|
9241
9144
|
"""
|
9242
9145
|
return self._MaxPrice
|
@@ -9248,7 +9151,6 @@ class PriceScopeConf(AbstractModel):
|
|
9248
9151
|
@property
|
9249
9152
|
def MinPrice(self):
|
9250
9153
|
"""最低价格
|
9251
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9252
9154
|
:rtype: float
|
9253
9155
|
"""
|
9254
9156
|
return self._MinPrice
|
@@ -9260,7 +9162,6 @@ class PriceScopeConf(AbstractModel):
|
|
9260
9162
|
@property
|
9261
9163
|
def Price(self):
|
9262
9164
|
"""价格幅度
|
9263
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9264
9165
|
:rtype: float
|
9265
9166
|
"""
|
9266
9167
|
return self._Price
|
@@ -9272,7 +9173,6 @@ class PriceScopeConf(AbstractModel):
|
|
9272
9173
|
@property
|
9273
9174
|
def DepositPrice(self):
|
9274
9175
|
"""保证金
|
9275
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9276
9176
|
:rtype: float
|
9277
9177
|
"""
|
9278
9178
|
return self._DepositPrice
|
@@ -9495,16 +9395,12 @@ class ReserveBidInfo(AbstractModel):
|
|
9495
9395
|
def __init__(self):
|
9496
9396
|
r"""
|
9497
9397
|
:param _User: 用户
|
9498
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9499
9398
|
:type User: str
|
9500
9399
|
:param _Price: 出价
|
9501
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9502
9400
|
:type Price: int
|
9503
9401
|
:param _BidTime: 出价时间
|
9504
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9505
9402
|
:type BidTime: str
|
9506
9403
|
:param _BidStatus: 当前状态
|
9507
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9508
9404
|
:type BidStatus: str
|
9509
9405
|
"""
|
9510
9406
|
self._User = None
|
@@ -9515,7 +9411,6 @@ class ReserveBidInfo(AbstractModel):
|
|
9515
9411
|
@property
|
9516
9412
|
def User(self):
|
9517
9413
|
"""用户
|
9518
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9519
9414
|
:rtype: str
|
9520
9415
|
"""
|
9521
9416
|
return self._User
|
@@ -9527,7 +9422,6 @@ class ReserveBidInfo(AbstractModel):
|
|
9527
9422
|
@property
|
9528
9423
|
def Price(self):
|
9529
9424
|
"""出价
|
9530
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9531
9425
|
:rtype: int
|
9532
9426
|
"""
|
9533
9427
|
return self._Price
|
@@ -9539,7 +9433,6 @@ class ReserveBidInfo(AbstractModel):
|
|
9539
9433
|
@property
|
9540
9434
|
def BidTime(self):
|
9541
9435
|
"""出价时间
|
9542
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9543
9436
|
:rtype: str
|
9544
9437
|
"""
|
9545
9438
|
return self._BidTime
|
@@ -9551,7 +9444,6 @@ class ReserveBidInfo(AbstractModel):
|
|
9551
9444
|
@property
|
9552
9445
|
def BidStatus(self):
|
9553
9446
|
"""当前状态
|
9554
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9555
9447
|
:rtype: str
|
9556
9448
|
"""
|
9557
9449
|
return self._BidStatus
|
@@ -9699,22 +9591,16 @@ class ReservedPreDomainInfo(AbstractModel):
|
|
9699
9591
|
:param _ReservedStatus: 1. 预定成功 2. 预定失败(预定失败Reason字段将会被赋值)3. 域名交割中 4. 域名交割完成
|
9700
9592
|
:type ReservedStatus: int
|
9701
9593
|
:param _FailReason: 域名预定失败原因
|
9702
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9703
9594
|
:type FailReason: str
|
9704
9595
|
:param _ChangeOwnerTime: 预计变更所有权时间(仅用于参考,实际时间会存在误差)
|
9705
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9706
9596
|
:type ChangeOwnerTime: str
|
9707
9597
|
:param _RegTime: 注册时间
|
9708
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9709
9598
|
:type RegTime: str
|
9710
9599
|
:param _ExpireTime: 到期时间
|
9711
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9712
9600
|
:type ExpireTime: str
|
9713
9601
|
:param _ResourceId: 资源ID,用于删除资源信息
|
9714
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9715
9602
|
:type ResourceId: str
|
9716
9603
|
:param _BusinessId: 业务ID
|
9717
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9718
9604
|
:type BusinessId: str
|
9719
9605
|
"""
|
9720
9606
|
self._Domain = None
|
@@ -9751,7 +9637,6 @@ class ReservedPreDomainInfo(AbstractModel):
|
|
9751
9637
|
@property
|
9752
9638
|
def FailReason(self):
|
9753
9639
|
"""域名预定失败原因
|
9754
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9755
9640
|
:rtype: str
|
9756
9641
|
"""
|
9757
9642
|
return self._FailReason
|
@@ -9763,7 +9648,6 @@ class ReservedPreDomainInfo(AbstractModel):
|
|
9763
9648
|
@property
|
9764
9649
|
def ChangeOwnerTime(self):
|
9765
9650
|
"""预计变更所有权时间(仅用于参考,实际时间会存在误差)
|
9766
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9767
9651
|
:rtype: str
|
9768
9652
|
"""
|
9769
9653
|
return self._ChangeOwnerTime
|
@@ -9775,7 +9659,6 @@ class ReservedPreDomainInfo(AbstractModel):
|
|
9775
9659
|
@property
|
9776
9660
|
def RegTime(self):
|
9777
9661
|
"""注册时间
|
9778
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9779
9662
|
:rtype: str
|
9780
9663
|
"""
|
9781
9664
|
return self._RegTime
|
@@ -9787,7 +9670,6 @@ class ReservedPreDomainInfo(AbstractModel):
|
|
9787
9670
|
@property
|
9788
9671
|
def ExpireTime(self):
|
9789
9672
|
"""到期时间
|
9790
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9791
9673
|
:rtype: str
|
9792
9674
|
"""
|
9793
9675
|
return self._ExpireTime
|
@@ -9799,7 +9681,6 @@ class ReservedPreDomainInfo(AbstractModel):
|
|
9799
9681
|
@property
|
9800
9682
|
def ResourceId(self):
|
9801
9683
|
"""资源ID,用于删除资源信息
|
9802
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9803
9684
|
:rtype: str
|
9804
9685
|
"""
|
9805
9686
|
return self._ResourceId
|
@@ -9811,7 +9692,6 @@ class ReservedPreDomainInfo(AbstractModel):
|
|
9811
9692
|
@property
|
9812
9693
|
def BusinessId(self):
|
9813
9694
|
"""业务ID
|
9814
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9815
9695
|
:rtype: str
|
9816
9696
|
"""
|
9817
9697
|
return self._BusinessId
|
@@ -10176,10 +10056,8 @@ class SucDomainInfo(AbstractModel):
|
|
10176
10056
|
def __init__(self):
|
10177
10057
|
r"""
|
10178
10058
|
:param _Domain: 域名
|
10179
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10180
10059
|
:type Domain: str
|
10181
10060
|
:param _BusinessId: 业务ID
|
10182
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10183
10061
|
:type BusinessId: str
|
10184
10062
|
"""
|
10185
10063
|
self._Domain = None
|
@@ -10188,7 +10066,6 @@ class SucDomainInfo(AbstractModel):
|
|
10188
10066
|
@property
|
10189
10067
|
def Domain(self):
|
10190
10068
|
"""域名
|
10191
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10192
10069
|
:rtype: str
|
10193
10070
|
"""
|
10194
10071
|
return self._Domain
|
@@ -10200,7 +10077,6 @@ class SucDomainInfo(AbstractModel):
|
|
10200
10077
|
@property
|
10201
10078
|
def BusinessId(self):
|
10202
10079
|
"""业务ID
|
10203
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10204
10080
|
:rtype: str
|
10205
10081
|
"""
|
10206
10082
|
return self._BusinessId
|