tencentcloud-sdk-python-dnspod 3.1.23__tar.gz → 3.1.63__tar.gz

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 (17) hide show
  1. {tencentcloud_sdk_python_dnspod-3.1.23 → tencentcloud_sdk_python_dnspod-3.1.63}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_dnspod-3.1.23 → tencentcloud_sdk_python_dnspod-3.1.63}/setup.py +1 -1
  3. {tencentcloud_sdk_python_dnspod-3.1.23 → tencentcloud_sdk_python_dnspod-3.1.63}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_dnspod-3.1.23 → tencentcloud_sdk_python_dnspod-3.1.63}/tencentcloud/dnspod/v20210323/dnspod_client.py +23 -0
  5. {tencentcloud_sdk_python_dnspod-3.1.23 → tencentcloud_sdk_python_dnspod-3.1.63}/tencentcloud/dnspod/v20210323/dnspod_client_async.py +18 -0
  6. {tencentcloud_sdk_python_dnspod-3.1.23 → tencentcloud_sdk_python_dnspod-3.1.63}/tencentcloud/dnspod/v20210323/errorcodes.py +5 -2
  7. {tencentcloud_sdk_python_dnspod-3.1.23 → tencentcloud_sdk_python_dnspod-3.1.63}/tencentcloud/dnspod/v20210323/models.py +317 -94
  8. {tencentcloud_sdk_python_dnspod-3.1.23 → tencentcloud_sdk_python_dnspod-3.1.63}/tencentcloud_sdk_python_dnspod.egg-info/PKG-INFO +2 -2
  9. tencentcloud_sdk_python_dnspod-3.1.63/tencentcloud_sdk_python_dnspod.egg-info/requires.txt +1 -0
  10. tencentcloud_sdk_python_dnspod-3.1.23/tencentcloud_sdk_python_dnspod.egg-info/requires.txt +0 -1
  11. {tencentcloud_sdk_python_dnspod-3.1.23 → tencentcloud_sdk_python_dnspod-3.1.63}/README.rst +0 -0
  12. {tencentcloud_sdk_python_dnspod-3.1.23 → tencentcloud_sdk_python_dnspod-3.1.63}/setup.cfg +0 -0
  13. {tencentcloud_sdk_python_dnspod-3.1.23 → tencentcloud_sdk_python_dnspod-3.1.63}/tencentcloud/dnspod/__init__.py +0 -0
  14. {tencentcloud_sdk_python_dnspod-3.1.23 → tencentcloud_sdk_python_dnspod-3.1.63}/tencentcloud/dnspod/v20210323/__init__.py +0 -0
  15. {tencentcloud_sdk_python_dnspod-3.1.23 → tencentcloud_sdk_python_dnspod-3.1.63}/tencentcloud_sdk_python_dnspod.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_dnspod-3.1.23 → tencentcloud_sdk_python_dnspod-3.1.63}/tencentcloud_sdk_python_dnspod.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_dnspod-3.1.23 → tencentcloud_sdk_python_dnspod-3.1.63}/tencentcloud_sdk_python_dnspod.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-dnspod
3
- Version: 3.1.23
3
+ Version: 3.1.63
4
4
  Summary: Tencent Cloud Dnspod SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.23
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.63
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-dnspod',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.23,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.63,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Dnspod SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.23'
17
+ __version__ = '3.1.63'
@@ -72,6 +72,29 @@ class DnspodClient(AbstractClient):
72
72
  raise TencentCloudSDKException(type(e).__name__, str(e))
73
73
 
74
74
 
75
+ def CreateAndPayDeal(self, request):
76
+ r"""DNSPod商品下单并支付
77
+
78
+ :param request: Request instance for CreateAndPayDeal.
79
+ :type request: :class:`tencentcloud.dnspod.v20210323.models.CreateAndPayDealRequest`
80
+ :rtype: :class:`tencentcloud.dnspod.v20210323.models.CreateAndPayDealResponse`
81
+
82
+ """
83
+ try:
84
+ params = request._serialize()
85
+ headers = request.headers
86
+ body = self.call("CreateAndPayDeal", params, headers=headers)
87
+ response = json.loads(body)
88
+ model = models.CreateAndPayDealResponse()
89
+ model._deserialize(response["Response"])
90
+ return model
91
+ except Exception as e:
92
+ if isinstance(e, TencentCloudSDKException):
93
+ raise
94
+ else:
95
+ raise TencentCloudSDKException(type(e).__name__, str(e))
96
+
97
+
75
98
  def CreateDeal(self, request):
76
99
  r"""DNSPod商品下单
77
100
 
@@ -61,6 +61,24 @@ class DnspodClient(AbstractClient):
61
61
 
62
62
  return await self.call_and_deserialize(**kwargs)
63
63
 
64
+ async def CreateAndPayDeal(
65
+ self,
66
+ request: models.CreateAndPayDealRequest,
67
+ opts: Dict = None,
68
+ ) -> models.CreateAndPayDealResponse:
69
+ """
70
+ DNSPod商品下单并支付
71
+ """
72
+
73
+ kwargs = {}
74
+ kwargs["action"] = "CreateAndPayDeal"
75
+ kwargs["params"] = request._serialize()
76
+ kwargs["resp_cls"] = models.CreateAndPayDealResponse
77
+ kwargs["headers"] = request.headers
78
+ kwargs["opts"] = opts or {}
79
+
80
+ return await self.call_and_deserialize(**kwargs)
81
+
64
82
  async def CreateDeal(
65
83
  self,
66
84
  request: models.CreateDealRequest,
@@ -221,6 +221,9 @@ INVALIDPARAMETER_BILLNUMBERINVALID = 'InvalidParameter.BillNumberInvalid'
221
221
  # 浏览器字段为空。
222
222
  INVALIDPARAMETER_BROWSERNULL = 'InvalidParameter.BrowserNull'
223
223
 
224
+ # Client token 参数过长
225
+ INVALIDPARAMETER_CLIENTTOKENTOOLONG = 'InvalidParameter.ClientTokenTooLong'
226
+
224
227
  # 您操作过于频繁,请稍后重试。
225
228
  INVALIDPARAMETER_COMMON = 'InvalidParameter.Common'
226
229
 
@@ -230,7 +233,7 @@ INVALIDPARAMETER_COPIEDLINEGROUPDUPLICATED = 'InvalidParameter.CopiedLineGroupDu
230
233
  # 自定义错误信息。
231
234
  INVALIDPARAMETER_CUSTOMMESSAGE = 'InvalidParameter.CustomMessage'
232
235
 
233
- # 您的帐户下没有 企业II 或 企业III 的VIP套餐,不能开启D令牌。
236
+ # 您的账户下没有 企业II 或 企业III 的VIP套餐,不能开启D令牌。
234
237
  INVALIDPARAMETER_DTOKENNOTSUPPORT = 'InvalidParameter.DTokenNotSupport'
235
238
 
236
239
  # 数据过期,请重新提交。
@@ -524,7 +527,7 @@ INVALIDPARAMETER_PERMISSIONDENIED = 'InvalidParameter.PermissionDenied'
524
527
  # 无效的 IP 地址。
525
528
  INVALIDPARAMETER_PTRINVALIDPUBLICIP = 'InvalidParameter.PtrInvalidPublicIp'
526
529
 
527
- # 你不是该 IP 的所有者,无法进行此操作。
530
+ # 您不是该 IP 的所有者,无法进行此操作。
528
531
  INVALIDPARAMETER_PTRIPNOTOWNER = 'InvalidParameter.PtrIpNotOwner'
529
532
 
530
533
  # 用户UIN无效。
@@ -1009,6 +1009,225 @@ class CheckSnapshotRollbackResponse(AbstractModel):
1009
1009
  self._RequestId = params.get("RequestId")
1010
1010
 
1011
1011
 
1012
+ class CreateAndPayDealRequest(AbstractModel):
1013
+ r"""CreateAndPayDeal请求参数结构体
1014
+
1015
+ """
1016
+
1017
+ def __init__(self):
1018
+ r"""
1019
+ :param _DealType: <p>询价类型,1 新购,2 续费,3 套餐升级(增值服务暂时只支持新购)</p>
1020
+ :type DealType: int
1021
+ :param _GoodsType: <p>商品类型,1 域名套餐 2 增值服务</p>
1022
+ :type GoodsType: int
1023
+ :param _GoodsChildType: <p>套餐类型:<br>DP_PLUS:专业版<br>DP_EXPERT:企业版<br>DP_ULTRA:尊享版</p><p>增值服务类型<br>LB:负载均衡<br>URL:URL转发<br>DMONITOR_TASKS:D监控任务数<br>DMONITOR_IP:D监控备用 IP 数<br>CUSTOMLINE:自定义线路数</p>
1024
+ :type GoodsChildType: str
1025
+ :param _GoodsNum: <p>增值服务购买数量,如果是域名套餐固定为1,如果是增值服务则按以下规则:<br>负载均衡、D监控任务数、D监控备用 IP 数、自定义线路数、URL 转发(必须是5的正整数倍,如 5、10、15 等)</p>
1026
+ :type GoodsNum: int
1027
+ :param _AutoRenew: <p>是否开启自动续费,1 开启,2 不开启(增值服务暂不支持自动续费),默认值为 2 不开启</p>
1028
+ :type AutoRenew: int
1029
+ :param _Domain: <p>需要绑定套餐的域名,如 dnspod.cn,如果是续费或升级,domain 参数必须要传,新购可不传。</p>
1030
+ :type Domain: str
1031
+ :param _TimeSpan: <p>套餐时长:</p><ol><li>套餐以月为单位(按月只能是 3、6 还有 12 的倍数),套餐例如购买一年则传12,最大120 。(续费最低一年)</li><li>升级套餐时不需要传。</li><li>增值服务的时长单位为年,买一年传1(增值服务新购按年只能是 1,增值服务续费最大为 10)</li></ol>
1032
+ :type TimeSpan: int
1033
+ :param _NewPackageType: <p>套餐类型,需要升级到的套餐类型,只有升级时需要。</p>
1034
+ :type NewPackageType: str
1035
+ :param _ClientToken: <p>可重入ID,避免接口重试场景生成额外订单和实例</p><p>入参限制:长度不超过70个字符</p>
1036
+ :type ClientToken: str
1037
+ """
1038
+ self._DealType = None
1039
+ self._GoodsType = None
1040
+ self._GoodsChildType = None
1041
+ self._GoodsNum = None
1042
+ self._AutoRenew = None
1043
+ self._Domain = None
1044
+ self._TimeSpan = None
1045
+ self._NewPackageType = None
1046
+ self._ClientToken = None
1047
+
1048
+ @property
1049
+ def DealType(self):
1050
+ r"""<p>询价类型,1 新购,2 续费,3 套餐升级(增值服务暂时只支持新购)</p>
1051
+ :rtype: int
1052
+ """
1053
+ return self._DealType
1054
+
1055
+ @DealType.setter
1056
+ def DealType(self, DealType):
1057
+ self._DealType = DealType
1058
+
1059
+ @property
1060
+ def GoodsType(self):
1061
+ r"""<p>商品类型,1 域名套餐 2 增值服务</p>
1062
+ :rtype: int
1063
+ """
1064
+ return self._GoodsType
1065
+
1066
+ @GoodsType.setter
1067
+ def GoodsType(self, GoodsType):
1068
+ self._GoodsType = GoodsType
1069
+
1070
+ @property
1071
+ def GoodsChildType(self):
1072
+ r"""<p>套餐类型:<br>DP_PLUS:专业版<br>DP_EXPERT:企业版<br>DP_ULTRA:尊享版</p><p>增值服务类型<br>LB:负载均衡<br>URL:URL转发<br>DMONITOR_TASKS:D监控任务数<br>DMONITOR_IP:D监控备用 IP 数<br>CUSTOMLINE:自定义线路数</p>
1073
+ :rtype: str
1074
+ """
1075
+ return self._GoodsChildType
1076
+
1077
+ @GoodsChildType.setter
1078
+ def GoodsChildType(self, GoodsChildType):
1079
+ self._GoodsChildType = GoodsChildType
1080
+
1081
+ @property
1082
+ def GoodsNum(self):
1083
+ r"""<p>增值服务购买数量,如果是域名套餐固定为1,如果是增值服务则按以下规则:<br>负载均衡、D监控任务数、D监控备用 IP 数、自定义线路数、URL 转发(必须是5的正整数倍,如 5、10、15 等)</p>
1084
+ :rtype: int
1085
+ """
1086
+ return self._GoodsNum
1087
+
1088
+ @GoodsNum.setter
1089
+ def GoodsNum(self, GoodsNum):
1090
+ self._GoodsNum = GoodsNum
1091
+
1092
+ @property
1093
+ def AutoRenew(self):
1094
+ r"""<p>是否开启自动续费,1 开启,2 不开启(增值服务暂不支持自动续费),默认值为 2 不开启</p>
1095
+ :rtype: int
1096
+ """
1097
+ return self._AutoRenew
1098
+
1099
+ @AutoRenew.setter
1100
+ def AutoRenew(self, AutoRenew):
1101
+ self._AutoRenew = AutoRenew
1102
+
1103
+ @property
1104
+ def Domain(self):
1105
+ r"""<p>需要绑定套餐的域名,如 dnspod.cn,如果是续费或升级,domain 参数必须要传,新购可不传。</p>
1106
+ :rtype: str
1107
+ """
1108
+ return self._Domain
1109
+
1110
+ @Domain.setter
1111
+ def Domain(self, Domain):
1112
+ self._Domain = Domain
1113
+
1114
+ @property
1115
+ def TimeSpan(self):
1116
+ r"""<p>套餐时长:</p><ol><li>套餐以月为单位(按月只能是 3、6 还有 12 的倍数),套餐例如购买一年则传12,最大120 。(续费最低一年)</li><li>升级套餐时不需要传。</li><li>增值服务的时长单位为年,买一年传1(增值服务新购按年只能是 1,增值服务续费最大为 10)</li></ol>
1117
+ :rtype: int
1118
+ """
1119
+ return self._TimeSpan
1120
+
1121
+ @TimeSpan.setter
1122
+ def TimeSpan(self, TimeSpan):
1123
+ self._TimeSpan = TimeSpan
1124
+
1125
+ @property
1126
+ def NewPackageType(self):
1127
+ r"""<p>套餐类型,需要升级到的套餐类型,只有升级时需要。</p>
1128
+ :rtype: str
1129
+ """
1130
+ return self._NewPackageType
1131
+
1132
+ @NewPackageType.setter
1133
+ def NewPackageType(self, NewPackageType):
1134
+ self._NewPackageType = NewPackageType
1135
+
1136
+ @property
1137
+ def ClientToken(self):
1138
+ r"""<p>可重入ID,避免接口重试场景生成额外订单和实例</p><p>入参限制:长度不超过70个字符</p>
1139
+ :rtype: str
1140
+ """
1141
+ return self._ClientToken
1142
+
1143
+ @ClientToken.setter
1144
+ def ClientToken(self, ClientToken):
1145
+ self._ClientToken = ClientToken
1146
+
1147
+
1148
+ def _deserialize(self, params):
1149
+ self._DealType = params.get("DealType")
1150
+ self._GoodsType = params.get("GoodsType")
1151
+ self._GoodsChildType = params.get("GoodsChildType")
1152
+ self._GoodsNum = params.get("GoodsNum")
1153
+ self._AutoRenew = params.get("AutoRenew")
1154
+ self._Domain = params.get("Domain")
1155
+ self._TimeSpan = params.get("TimeSpan")
1156
+ self._NewPackageType = params.get("NewPackageType")
1157
+ self._ClientToken = params.get("ClientToken")
1158
+ memeber_set = set(params.keys())
1159
+ for name, value in vars(self).items():
1160
+ property_name = name[1:]
1161
+ if property_name in memeber_set:
1162
+ memeber_set.remove(property_name)
1163
+ if len(memeber_set) > 0:
1164
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
1165
+
1166
+
1167
+
1168
+ class CreateAndPayDealResponse(AbstractModel):
1169
+ r"""CreateAndPayDeal返回参数结构体
1170
+
1171
+ """
1172
+
1173
+ def __init__(self):
1174
+ r"""
1175
+ :param _BigDealId: <p>大订单号,一个大订单号下可以有多个子订单,说明是同一次下单</p>
1176
+ :type BigDealId: str
1177
+ :param _DealList: <p>子订单列表</p>
1178
+ :type DealList: list of Deals
1179
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1180
+ :type RequestId: str
1181
+ """
1182
+ self._BigDealId = None
1183
+ self._DealList = None
1184
+ self._RequestId = None
1185
+
1186
+ @property
1187
+ def BigDealId(self):
1188
+ r"""<p>大订单号,一个大订单号下可以有多个子订单,说明是同一次下单</p>
1189
+ :rtype: str
1190
+ """
1191
+ return self._BigDealId
1192
+
1193
+ @BigDealId.setter
1194
+ def BigDealId(self, BigDealId):
1195
+ self._BigDealId = BigDealId
1196
+
1197
+ @property
1198
+ def DealList(self):
1199
+ r"""<p>子订单列表</p>
1200
+ :rtype: list of Deals
1201
+ """
1202
+ return self._DealList
1203
+
1204
+ @DealList.setter
1205
+ def DealList(self, DealList):
1206
+ self._DealList = DealList
1207
+
1208
+ @property
1209
+ def RequestId(self):
1210
+ r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1211
+ :rtype: str
1212
+ """
1213
+ return self._RequestId
1214
+
1215
+ @RequestId.setter
1216
+ def RequestId(self, RequestId):
1217
+ self._RequestId = RequestId
1218
+
1219
+
1220
+ def _deserialize(self, params):
1221
+ self._BigDealId = params.get("BigDealId")
1222
+ if params.get("DealList") is not None:
1223
+ self._DealList = []
1224
+ for item in params.get("DealList"):
1225
+ obj = Deals()
1226
+ obj._deserialize(item)
1227
+ self._DealList.append(obj)
1228
+ self._RequestId = params.get("RequestId")
1229
+
1230
+
1012
1231
  class CreateDealRequest(AbstractModel):
1013
1232
  r"""CreateDeal请求参数结构体
1014
1233
 
@@ -3966,17 +4185,20 @@ class Deals(AbstractModel):
3966
4185
 
3967
4186
  def __init__(self):
3968
4187
  r"""
3969
- :param _DealId: 子订单ID
4188
+ :param _DealId: <p>子订单ID</p>
3970
4189
  :type DealId: str
3971
- :param _DealName: 子订单号
4190
+ :param _DealName: <p>子订单号</p>
3972
4191
  :type DealName: str
4192
+ :param _ResourceId: <p>资源ID</p>
4193
+ :type ResourceId: str
3973
4194
  """
3974
4195
  self._DealId = None
3975
4196
  self._DealName = None
4197
+ self._ResourceId = None
3976
4198
 
3977
4199
  @property
3978
4200
  def DealId(self):
3979
- r"""子订单ID
4201
+ r"""<p>子订单ID</p>
3980
4202
  :rtype: str
3981
4203
  """
3982
4204
  return self._DealId
@@ -3987,7 +4209,7 @@ class Deals(AbstractModel):
3987
4209
 
3988
4210
  @property
3989
4211
  def DealName(self):
3990
- r"""子订单号
4212
+ r"""<p>子订单号</p>
3991
4213
  :rtype: str
3992
4214
  """
3993
4215
  return self._DealName
@@ -3996,10 +4218,22 @@ class Deals(AbstractModel):
3996
4218
  def DealName(self, DealName):
3997
4219
  self._DealName = DealName
3998
4220
 
4221
+ @property
4222
+ def ResourceId(self):
4223
+ r"""<p>资源ID</p>
4224
+ :rtype: str
4225
+ """
4226
+ return self._ResourceId
4227
+
4228
+ @ResourceId.setter
4229
+ def ResourceId(self, ResourceId):
4230
+ self._ResourceId = ResourceId
4231
+
3999
4232
 
4000
4233
  def _deserialize(self, params):
4001
4234
  self._DealId = params.get("DealId")
4002
4235
  self._DealName = params.get("DealName")
4236
+ self._ResourceId = params.get("ResourceId")
4003
4237
  memeber_set = set(params.keys())
4004
4238
  for name, value in vars(self).items():
4005
4239
  property_name = name[1:]
@@ -6095,50 +6329,37 @@ class DescribeDomainFilterListRequest(AbstractModel):
6095
6329
 
6096
6330
  def __init__(self):
6097
6331
  r"""
6098
- :param _Type: 根据域名分组类型获取域名。可取值为 ALL,MINE,SHARE,RECENT
6099
- ALL:全部
6100
- MINE:我的域名
6101
- SHARE:共享给我的域名
6102
- RECENT:最近操作过的域名
6332
+ :param _Type: <p>根据域名分组类型获取域名。可取值为 ALL,MINE,SHARE,RECENT。<br>ALL:全部<br>MINE:我的域名<br>SHARE:共享给我的域名<br>RECENT:最近操作过的域名</p>
6103
6333
  :type Type: str
6104
- :param _Offset: 记录开始的偏移, 第一条记录为 0, 依次类推。默认值为 0
6334
+ :param _Offset: <p>记录开始的偏移, 第一条记录为 0, 依次类推。默认值为 0。</p>
6105
6335
  :type Offset: int
6106
- :param _Limit: 要获取的域名数量, 比如获取 20 个, 则为 20。默认值为 5000。如果账户中的域名数量超过了 5000, 将会强制分页并且只返回前 5000 条, 这时需要通过 Offset 和 Limit 参数去获取其它域名。
6336
+ :param _Limit: <p>要获取的域名数量, 比如获取 20 个, 则为 20。默认值为 5000。如果账户中的域名数量超过了 5000, 将会强制分页并且只返回前 5000 条, 这时需要通过 Offset 和 Limit 参数去获取其它域名。</p>
6107
6337
  :type Limit: int
6108
- :param _GroupId: 根据域名分组 id 获取域名
6338
+ :param _GroupId: <p>根据域名分组 id 获取域名</p><p>取值参考:<a href="https://cloud.tencent.com/document/api/1427/56172">DescribeDomainList</a></p>
6109
6339
  :type GroupId: list of int
6110
- :param _Keyword: 根据关键字获取域名。
6340
+ :param _Keyword: <p>根据关键字获取域名。</p>
6111
6341
  :type Keyword: str
6112
- :param _SortField: 排序字段。可取值为 NAME,STATUS,RECORDS,GRADE,UPDATED_ON
6113
- NAME:域名名称
6114
- STATUS:域名状态
6115
- RECORDS:记录数量
6116
- GRADE:套餐等级
6117
- UPDATED_ON:更新时间
6342
+ :param _SortField: <p>排序字段。可取值为 NAME,STATUS,RECORDS,GRADE,UPDATED_ON。<br>NAME:域名名称<br>STATUS:域名状态<br>RECORDS:记录数量<br>GRADE:套餐等级<br>UPDATED_ON:更新时间</p>
6118
6343
  :type SortField: str
6119
- :param _SortType: 排序类型,升序:ASC,降序:DESC
6344
+ :param _SortType: <p>排序类型,升序:ASC,降序:DESC。</p>
6120
6345
  :type SortType: str
6121
- :param _Status: 根据域名状态获取域名。可取值为 ENABLE,LOCK,PAUSE,SPAM
6122
- ENABLE:正常
6123
- LOCK:锁定
6124
- PAUSE:暂停
6125
- SPAM:封禁
6346
+ :param _Status: <p>根据域名状态获取域名。可取值为 ENABLE,LOCK,PAUSE,SPAM。<br>ENABLE:正常<br>LOCK:锁定<br>PAUSE:暂停<br>SPAM:封禁</p>
6126
6347
  :type Status: list of str
6127
- :param _Package: 根据套餐获取域名,可通过 DescribeDomain 或 DescribeDomainList 接口 Grade 字段获取。
6348
+ :param _Package: <p>根据套餐获取域名,可通过 DescribeDomain 或 DescribeDomainList 接口 Grade 字段获取。</p>
6128
6349
  :type Package: list of str
6129
- :param _Remark: 根据备注信息获取域名。
6350
+ :param _Remark: <p>根据备注信息获取域名。</p>
6130
6351
  :type Remark: str
6131
- :param _UpdatedAtBegin: 要获取域名的更新时间起始时间点,如 '2021-05-01 03:00:00'。
6352
+ :param _UpdatedAtBegin: <p>要获取域名的更新时间起始时间点,如 &#39;2021-05-01 03:00:00&#39;。</p>
6132
6353
  :type UpdatedAtBegin: str
6133
- :param _UpdatedAtEnd: 要获取域名的更新时间终止时间点,如 '2021-05-10 20:00:00'。
6354
+ :param _UpdatedAtEnd: <p>要获取域名的更新时间终止时间点,如 &#39;2021-05-10 20:00:00&#39;。</p>
6134
6355
  :type UpdatedAtEnd: str
6135
- :param _RecordCountBegin: 要获取域名的记录数查询区间起点。
6356
+ :param _RecordCountBegin: <p>要获取域名的记录数查询区间起点。</p>
6136
6357
  :type RecordCountBegin: int
6137
- :param _RecordCountEnd: 要获取域名的记录数查询区间终点。
6358
+ :param _RecordCountEnd: <p>要获取域名的记录数查询区间终点。</p>
6138
6359
  :type RecordCountEnd: int
6139
- :param _ProjectId: 项目ID,"帐号中心-项目管理"拿到项目ID
6360
+ :param _ProjectId: <p>项目ID,&quot;账号中心-项目管理&quot;拿到项目ID</p>
6140
6361
  :type ProjectId: int
6141
- :param _Tags: 标签过滤
6362
+ :param _Tags: <p>标签过滤</p>
6142
6363
  :type Tags: list of TagItemFilter
6143
6364
  """
6144
6365
  self._Type = None
@@ -6160,11 +6381,7 @@ SPAM:封禁
6160
6381
 
6161
6382
  @property
6162
6383
  def Type(self):
6163
- r"""根据域名分组类型获取域名。可取值为 ALL,MINE,SHARE,RECENT
6164
- ALL:全部
6165
- MINE:我的域名
6166
- SHARE:共享给我的域名
6167
- RECENT:最近操作过的域名
6384
+ r"""<p>根据域名分组类型获取域名。可取值为 ALL,MINE,SHARE,RECENT。<br>ALL:全部<br>MINE:我的域名<br>SHARE:共享给我的域名<br>RECENT:最近操作过的域名</p>
6168
6385
  :rtype: str
6169
6386
  """
6170
6387
  return self._Type
@@ -6175,7 +6392,7 @@ RECENT:最近操作过的域名
6175
6392
 
6176
6393
  @property
6177
6394
  def Offset(self):
6178
- r"""记录开始的偏移, 第一条记录为 0, 依次类推。默认值为 0
6395
+ r"""<p>记录开始的偏移, 第一条记录为 0, 依次类推。默认值为 0。</p>
6179
6396
  :rtype: int
6180
6397
  """
6181
6398
  return self._Offset
@@ -6186,7 +6403,7 @@ RECENT:最近操作过的域名
6186
6403
 
6187
6404
  @property
6188
6405
  def Limit(self):
6189
- r"""要获取的域名数量, 比如获取 20 个, 则为 20。默认值为 5000。如果账户中的域名数量超过了 5000, 将会强制分页并且只返回前 5000 条, 这时需要通过 Offset 和 Limit 参数去获取其它域名。
6406
+ r"""<p>要获取的域名数量, 比如获取 20 个, 则为 20。默认值为 5000。如果账户中的域名数量超过了 5000, 将会强制分页并且只返回前 5000 条, 这时需要通过 Offset 和 Limit 参数去获取其它域名。</p>
6190
6407
  :rtype: int
6191
6408
  """
6192
6409
  return self._Limit
@@ -6197,7 +6414,7 @@ RECENT:最近操作过的域名
6197
6414
 
6198
6415
  @property
6199
6416
  def GroupId(self):
6200
- r"""根据域名分组 id 获取域名
6417
+ r"""<p>根据域名分组 id 获取域名</p><p>取值参考:<a href="https://cloud.tencent.com/document/api/1427/56172">DescribeDomainList</a></p>
6201
6418
  :rtype: list of int
6202
6419
  """
6203
6420
  return self._GroupId
@@ -6208,7 +6425,7 @@ RECENT:最近操作过的域名
6208
6425
 
6209
6426
  @property
6210
6427
  def Keyword(self):
6211
- r"""根据关键字获取域名。
6428
+ r"""<p>根据关键字获取域名。</p>
6212
6429
  :rtype: str
6213
6430
  """
6214
6431
  return self._Keyword
@@ -6219,12 +6436,7 @@ RECENT:最近操作过的域名
6219
6436
 
6220
6437
  @property
6221
6438
  def SortField(self):
6222
- r"""排序字段。可取值为 NAME,STATUS,RECORDS,GRADE,UPDATED_ON
6223
- NAME:域名名称
6224
- STATUS:域名状态
6225
- RECORDS:记录数量
6226
- GRADE:套餐等级
6227
- UPDATED_ON:更新时间
6439
+ r"""<p>排序字段。可取值为 NAME,STATUS,RECORDS,GRADE,UPDATED_ON。<br>NAME:域名名称<br>STATUS:域名状态<br>RECORDS:记录数量<br>GRADE:套餐等级<br>UPDATED_ON:更新时间</p>
6228
6440
  :rtype: str
6229
6441
  """
6230
6442
  return self._SortField
@@ -6235,7 +6447,7 @@ UPDATED_ON:更新时间
6235
6447
 
6236
6448
  @property
6237
6449
  def SortType(self):
6238
- r"""排序类型,升序:ASC,降序:DESC
6450
+ r"""<p>排序类型,升序:ASC,降序:DESC。</p>
6239
6451
  :rtype: str
6240
6452
  """
6241
6453
  return self._SortType
@@ -6246,11 +6458,7 @@ UPDATED_ON:更新时间
6246
6458
 
6247
6459
  @property
6248
6460
  def Status(self):
6249
- r"""根据域名状态获取域名。可取值为 ENABLE,LOCK,PAUSE,SPAM
6250
- ENABLE:正常
6251
- LOCK:锁定
6252
- PAUSE:暂停
6253
- SPAM:封禁
6461
+ r"""<p>根据域名状态获取域名。可取值为 ENABLE,LOCK,PAUSE,SPAM。<br>ENABLE:正常<br>LOCK:锁定<br>PAUSE:暂停<br>SPAM:封禁</p>
6254
6462
  :rtype: list of str
6255
6463
  """
6256
6464
  return self._Status
@@ -6261,7 +6469,7 @@ SPAM:封禁
6261
6469
 
6262
6470
  @property
6263
6471
  def Package(self):
6264
- r"""根据套餐获取域名,可通过 DescribeDomain 或 DescribeDomainList 接口 Grade 字段获取。
6472
+ r"""<p>根据套餐获取域名,可通过 DescribeDomain 或 DescribeDomainList 接口 Grade 字段获取。</p>
6265
6473
  :rtype: list of str
6266
6474
  """
6267
6475
  return self._Package
@@ -6272,7 +6480,7 @@ SPAM:封禁
6272
6480
 
6273
6481
  @property
6274
6482
  def Remark(self):
6275
- r"""根据备注信息获取域名。
6483
+ r"""<p>根据备注信息获取域名。</p>
6276
6484
  :rtype: str
6277
6485
  """
6278
6486
  return self._Remark
@@ -6283,7 +6491,7 @@ SPAM:封禁
6283
6491
 
6284
6492
  @property
6285
6493
  def UpdatedAtBegin(self):
6286
- r"""要获取域名的更新时间起始时间点,如 '2021-05-01 03:00:00'。
6494
+ r"""<p>要获取域名的更新时间起始时间点,如 &#39;2021-05-01 03:00:00&#39;。</p>
6287
6495
  :rtype: str
6288
6496
  """
6289
6497
  return self._UpdatedAtBegin
@@ -6294,7 +6502,7 @@ SPAM:封禁
6294
6502
 
6295
6503
  @property
6296
6504
  def UpdatedAtEnd(self):
6297
- r"""要获取域名的更新时间终止时间点,如 '2021-05-10 20:00:00'。
6505
+ r"""<p>要获取域名的更新时间终止时间点,如 &#39;2021-05-10 20:00:00&#39;。</p>
6298
6506
  :rtype: str
6299
6507
  """
6300
6508
  return self._UpdatedAtEnd
@@ -6305,7 +6513,7 @@ SPAM:封禁
6305
6513
 
6306
6514
  @property
6307
6515
  def RecordCountBegin(self):
6308
- r"""要获取域名的记录数查询区间起点。
6516
+ r"""<p>要获取域名的记录数查询区间起点。</p>
6309
6517
  :rtype: int
6310
6518
  """
6311
6519
  return self._RecordCountBegin
@@ -6316,7 +6524,7 @@ SPAM:封禁
6316
6524
 
6317
6525
  @property
6318
6526
  def RecordCountEnd(self):
6319
- r"""要获取域名的记录数查询区间终点。
6527
+ r"""<p>要获取域名的记录数查询区间终点。</p>
6320
6528
  :rtype: int
6321
6529
  """
6322
6530
  return self._RecordCountEnd
@@ -6327,7 +6535,7 @@ SPAM:封禁
6327
6535
 
6328
6536
  @property
6329
6537
  def ProjectId(self):
6330
- r"""项目ID,"帐号中心-项目管理"拿到项目ID
6538
+ r"""<p>项目ID,&quot;账号中心-项目管理&quot;拿到项目ID</p>
6331
6539
  :rtype: int
6332
6540
  """
6333
6541
  return self._ProjectId
@@ -6338,7 +6546,7 @@ SPAM:封禁
6338
6546
 
6339
6547
  @property
6340
6548
  def Tags(self):
6341
- r"""标签过滤
6549
+ r"""<p>标签过滤</p>
6342
6550
  :rtype: list of TagItemFilter
6343
6551
  """
6344
6552
  return self._Tags
@@ -6387,9 +6595,9 @@ class DescribeDomainFilterListResponse(AbstractModel):
6387
6595
 
6388
6596
  def __init__(self):
6389
6597
  r"""
6390
- :param _DomainCountInfo: 列表页统计信息
6598
+ :param _DomainCountInfo: <p>列表页统计信息</p>
6391
6599
  :type DomainCountInfo: :class:`tencentcloud.dnspod.v20210323.models.DomainCountInfo`
6392
- :param _DomainList: 域名列表
6600
+ :param _DomainList: <p>域名列表</p>
6393
6601
  :type DomainList: list of DomainListItem
6394
6602
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6395
6603
  :type RequestId: str
@@ -6400,7 +6608,7 @@ class DescribeDomainFilterListResponse(AbstractModel):
6400
6608
 
6401
6609
  @property
6402
6610
  def DomainCountInfo(self):
6403
- r"""列表页统计信息
6611
+ r"""<p>列表页统计信息</p>
6404
6612
  :rtype: :class:`tencentcloud.dnspod.v20210323.models.DomainCountInfo`
6405
6613
  """
6406
6614
  return self._DomainCountInfo
@@ -6411,7 +6619,7 @@ class DescribeDomainFilterListResponse(AbstractModel):
6411
6619
 
6412
6620
  @property
6413
6621
  def DomainList(self):
6414
- r"""域名列表
6622
+ r"""<p>域名列表</p>
6415
6623
  :rtype: list of DomainListItem
6416
6624
  """
6417
6625
  return self._DomainList
@@ -8835,30 +9043,32 @@ class DescribeRecordListRequest(AbstractModel):
8835
9043
 
8836
9044
  def __init__(self):
8837
9045
  r"""
8838
- :param _Domain: 域名
9046
+ :param _Domain: <p>域名</p>
8839
9047
  :type Domain: str
8840
- :param _DomainId: 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId
9048
+ :param _DomainId: <p>域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId</p>
8841
9049
  :type DomainId: int
8842
- :param _Subdomain: 解析记录的主机头,如果传了此参数,则只会返回此主机头对应的解析记录
9050
+ :param _Subdomain: <p>解析记录的主机头,如果传了此参数,则只会返回此主机头对应的解析记录</p>
8843
9051
  :type Subdomain: str
8844
- :param _RecordType: 获取某种类型的解析记录,如 A,CNAME,NS,AAAA,显性URL,隐性URL,CAA,SPF
9052
+ :param _RecordType: <p>获取某种类型的解析记录,如 A,CNAME,NS,AAAA,显性URL,隐性URL,CAA,SPF等</p>
8845
9053
  :type RecordType: str
8846
- :param _RecordLine: 获取某条线路名称的解析记录。可以通过接口DescribeRecordLineList查看当前域名允许的线路信息
9054
+ :param _RecordLine: <p>获取某条线路名称的解析记录。可以通过接口DescribeRecordLineList查看当前域名允许的线路信息</p>
8847
9055
  :type RecordLine: str
8848
- :param _RecordLineId: 获取某个线路Id对应的解析记录,如果传RecordLineId,系统会忽略RecordLine参数。可以通过接口DescribeRecordLineList查看当前域名允许的线路信息
9056
+ :param _RecordLineId: <p>获取某个线路Id对应的解析记录,如果传RecordLineId,系统会忽略RecordLine参数。可以通过接口DescribeRecordLineList查看当前域名允许的线路信息</p>
8849
9057
  :type RecordLineId: str
8850
- :param _GroupId: 获取某个分组下的解析记录时,传这个分组Id。可通过DescribeRecordGroupList接口获取所有分组
9058
+ :param _GroupId: <p>获取某个分组下的解析记录时,传这个分组Id。可通过DescribeRecordGroupList接口获取所有分组</p>
8851
9059
  :type GroupId: int
8852
- :param _Keyword: 通过关键字搜索解析记录,当前支持搜索主机头和记录值
9060
+ :param _Keyword: <p>通过关键字搜索解析记录,当前支持搜索主机头和记录值</p>
8853
9061
  :type Keyword: str
8854
- :param _SortField: 排序字段,支持 name,line,type,value,weight,mx,ttl,updated_on 几个字段。
9062
+ :param _SortField: <p>排序字段,支持 name,line,type,value,weight,mx,ttl,updated_on 几个字段。</p>
8855
9063
  :type SortField: str
8856
- :param _SortType: 排序方式,正序:ASC,逆序:DESC。默认值为ASC
9064
+ :param _SortType: <p>排序方式,正序:ASC,逆序:DESC。默认值为ASC。</p>
8857
9065
  :type SortType: str
8858
- :param _Offset: 偏移量,默认值为0
9066
+ :param _Offset: <p>偏移量,默认值为0。</p>
8859
9067
  :type Offset: int
8860
- :param _Limit: 限制数量,当前Limit最大支持3000。默认值为100
9068
+ :param _Limit: <p>限制数量,当前Limit最大支持3000。默认值为100。</p>
8861
9069
  :type Limit: int
9070
+ :param _ErrorOnEmpty: <p>查询不到数据时是否报错</p>枚举值:<ul><li> yes: 报错</li><li> no: 不报错,返回空列表</li></ul>默认值:yes
9071
+ :type ErrorOnEmpty: str
8862
9072
  """
8863
9073
  self._Domain = None
8864
9074
  self._DomainId = None
@@ -8872,10 +9082,11 @@ class DescribeRecordListRequest(AbstractModel):
8872
9082
  self._SortType = None
8873
9083
  self._Offset = None
8874
9084
  self._Limit = None
9085
+ self._ErrorOnEmpty = None
8875
9086
 
8876
9087
  @property
8877
9088
  def Domain(self):
8878
- r"""域名
9089
+ r"""<p>域名</p>
8879
9090
  :rtype: str
8880
9091
  """
8881
9092
  return self._Domain
@@ -8886,7 +9097,7 @@ class DescribeRecordListRequest(AbstractModel):
8886
9097
 
8887
9098
  @property
8888
9099
  def DomainId(self):
8889
- r"""域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId
9100
+ r"""<p>域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId</p>
8890
9101
  :rtype: int
8891
9102
  """
8892
9103
  return self._DomainId
@@ -8897,7 +9108,7 @@ class DescribeRecordListRequest(AbstractModel):
8897
9108
 
8898
9109
  @property
8899
9110
  def Subdomain(self):
8900
- r"""解析记录的主机头,如果传了此参数,则只会返回此主机头对应的解析记录
9111
+ r"""<p>解析记录的主机头,如果传了此参数,则只会返回此主机头对应的解析记录</p>
8901
9112
  :rtype: str
8902
9113
  """
8903
9114
  return self._Subdomain
@@ -8908,7 +9119,7 @@ class DescribeRecordListRequest(AbstractModel):
8908
9119
 
8909
9120
  @property
8910
9121
  def RecordType(self):
8911
- r"""获取某种类型的解析记录,如 A,CNAME,NS,AAAA,显性URL,隐性URL,CAA,SPF
9122
+ r"""<p>获取某种类型的解析记录,如 A,CNAME,NS,AAAA,显性URL,隐性URL,CAA,SPF等</p>
8912
9123
  :rtype: str
8913
9124
  """
8914
9125
  return self._RecordType
@@ -8919,7 +9130,7 @@ class DescribeRecordListRequest(AbstractModel):
8919
9130
 
8920
9131
  @property
8921
9132
  def RecordLine(self):
8922
- r"""获取某条线路名称的解析记录。可以通过接口DescribeRecordLineList查看当前域名允许的线路信息
9133
+ r"""<p>获取某条线路名称的解析记录。可以通过接口DescribeRecordLineList查看当前域名允许的线路信息</p>
8923
9134
  :rtype: str
8924
9135
  """
8925
9136
  return self._RecordLine
@@ -8930,7 +9141,7 @@ class DescribeRecordListRequest(AbstractModel):
8930
9141
 
8931
9142
  @property
8932
9143
  def RecordLineId(self):
8933
- r"""获取某个线路Id对应的解析记录,如果传RecordLineId,系统会忽略RecordLine参数。可以通过接口DescribeRecordLineList查看当前域名允许的线路信息
9144
+ r"""<p>获取某个线路Id对应的解析记录,如果传RecordLineId,系统会忽略RecordLine参数。可以通过接口DescribeRecordLineList查看当前域名允许的线路信息</p>
8934
9145
  :rtype: str
8935
9146
  """
8936
9147
  return self._RecordLineId
@@ -8941,7 +9152,7 @@ class DescribeRecordListRequest(AbstractModel):
8941
9152
 
8942
9153
  @property
8943
9154
  def GroupId(self):
8944
- r"""获取某个分组下的解析记录时,传这个分组Id。可通过DescribeRecordGroupList接口获取所有分组
9155
+ r"""<p>获取某个分组下的解析记录时,传这个分组Id。可通过DescribeRecordGroupList接口获取所有分组</p>
8945
9156
  :rtype: int
8946
9157
  """
8947
9158
  return self._GroupId
@@ -8952,7 +9163,7 @@ class DescribeRecordListRequest(AbstractModel):
8952
9163
 
8953
9164
  @property
8954
9165
  def Keyword(self):
8955
- r"""通过关键字搜索解析记录,当前支持搜索主机头和记录值
9166
+ r"""<p>通过关键字搜索解析记录,当前支持搜索主机头和记录值</p>
8956
9167
  :rtype: str
8957
9168
  """
8958
9169
  return self._Keyword
@@ -8963,7 +9174,7 @@ class DescribeRecordListRequest(AbstractModel):
8963
9174
 
8964
9175
  @property
8965
9176
  def SortField(self):
8966
- r"""排序字段,支持 name,line,type,value,weight,mx,ttl,updated_on 几个字段。
9177
+ r"""<p>排序字段,支持 name,line,type,value,weight,mx,ttl,updated_on 几个字段。</p>
8967
9178
  :rtype: str
8968
9179
  """
8969
9180
  return self._SortField
@@ -8974,7 +9185,7 @@ class DescribeRecordListRequest(AbstractModel):
8974
9185
 
8975
9186
  @property
8976
9187
  def SortType(self):
8977
- r"""排序方式,正序:ASC,逆序:DESC。默认值为ASC
9188
+ r"""<p>排序方式,正序:ASC,逆序:DESC。默认值为ASC。</p>
8978
9189
  :rtype: str
8979
9190
  """
8980
9191
  return self._SortType
@@ -8985,7 +9196,7 @@ class DescribeRecordListRequest(AbstractModel):
8985
9196
 
8986
9197
  @property
8987
9198
  def Offset(self):
8988
- r"""偏移量,默认值为0
9199
+ r"""<p>偏移量,默认值为0。</p>
8989
9200
  :rtype: int
8990
9201
  """
8991
9202
  return self._Offset
@@ -8996,7 +9207,7 @@ class DescribeRecordListRequest(AbstractModel):
8996
9207
 
8997
9208
  @property
8998
9209
  def Limit(self):
8999
- r"""限制数量,当前Limit最大支持3000。默认值为100
9210
+ r"""<p>限制数量,当前Limit最大支持3000。默认值为100。</p>
9000
9211
  :rtype: int
9001
9212
  """
9002
9213
  return self._Limit
@@ -9005,6 +9216,17 @@ class DescribeRecordListRequest(AbstractModel):
9005
9216
  def Limit(self, Limit):
9006
9217
  self._Limit = Limit
9007
9218
 
9219
+ @property
9220
+ def ErrorOnEmpty(self):
9221
+ r"""<p>查询不到数据时是否报错</p>枚举值:<ul><li> yes: 报错</li><li> no: 不报错,返回空列表</li></ul>默认值:yes
9222
+ :rtype: str
9223
+ """
9224
+ return self._ErrorOnEmpty
9225
+
9226
+ @ErrorOnEmpty.setter
9227
+ def ErrorOnEmpty(self, ErrorOnEmpty):
9228
+ self._ErrorOnEmpty = ErrorOnEmpty
9229
+
9008
9230
 
9009
9231
  def _deserialize(self, params):
9010
9232
  self._Domain = params.get("Domain")
@@ -9019,6 +9241,7 @@ class DescribeRecordListRequest(AbstractModel):
9019
9241
  self._SortType = params.get("SortType")
9020
9242
  self._Offset = params.get("Offset")
9021
9243
  self._Limit = params.get("Limit")
9244
+ self._ErrorOnEmpty = params.get("ErrorOnEmpty")
9022
9245
  memeber_set = set(params.keys())
9023
9246
  for name, value in vars(self).items():
9024
9247
  property_name = name[1:]
@@ -9036,9 +9259,9 @@ class DescribeRecordListResponse(AbstractModel):
9036
9259
 
9037
9260
  def __init__(self):
9038
9261
  r"""
9039
- :param _RecordCountInfo: 记录的数量统计信息
9262
+ :param _RecordCountInfo: <p>记录的数量统计信息</p>
9040
9263
  :type RecordCountInfo: :class:`tencentcloud.dnspod.v20210323.models.RecordCountInfo`
9041
- :param _RecordList: 获取的记录列表
9264
+ :param _RecordList: <p>获取的记录列表</p>
9042
9265
  :type RecordList: list of RecordListItem
9043
9266
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9044
9267
  :type RequestId: str
@@ -9049,7 +9272,7 @@ class DescribeRecordListResponse(AbstractModel):
9049
9272
 
9050
9273
  @property
9051
9274
  def RecordCountInfo(self):
9052
- r"""记录的数量统计信息
9275
+ r"""<p>记录的数量统计信息</p>
9053
9276
  :rtype: :class:`tencentcloud.dnspod.v20210323.models.RecordCountInfo`
9054
9277
  """
9055
9278
  return self._RecordCountInfo
@@ -9060,7 +9283,7 @@ class DescribeRecordListResponse(AbstractModel):
9060
9283
 
9061
9284
  @property
9062
9285
  def RecordList(self):
9063
- r"""获取的记录列表
9286
+ r"""<p>获取的记录列表</p>
9064
9287
  :rtype: list of RecordListItem
9065
9288
  """
9066
9289
  return self._RecordList
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-dnspod
3
- Version: 3.1.23
3
+ Version: 3.1.63
4
4
  Summary: Tencent Cloud Dnspod SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
15
15
  Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.6
17
17
  Classifier: Programming Language :: Python :: 3.7
18
- Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.23
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.63
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.63
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.23