huaweicloudsdkdns 3.1.131__py2.py3-none-any.whl → 3.1.133__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 (69) hide show
  1. huaweicloudsdkdns/v2/__init__.py +20 -5
  2. huaweicloudsdkdns/v2/dns_async_client.py +298 -10
  3. huaweicloudsdkdns/v2/dns_client.py +298 -10
  4. huaweicloudsdkdns/v2/model/__init__.py +20 -5
  5. huaweicloudsdkdns/v2/model/batch_delete_record_sets_request.py +111 -0
  6. huaweicloudsdkdns/v2/model/batch_delete_record_sets_request_body.py +142 -0
  7. huaweicloudsdkdns/v2/model/batch_delete_record_sets_response.py +141 -0
  8. huaweicloudsdkdns/v2/model/batch_delete_zones_request.py +111 -0
  9. huaweicloudsdkdns/v2/model/batch_delete_zones_request_body.py +142 -0
  10. huaweicloudsdkdns/v2/model/batch_delete_zones_response.py +141 -0
  11. huaweicloudsdkdns/v2/model/batch_set_record_sets_status_request.py +111 -0
  12. huaweicloudsdkdns/v2/model/batch_set_record_sets_status_request_body.py +142 -0
  13. huaweicloudsdkdns/v2/model/batch_set_record_sets_status_response.py +166 -0
  14. huaweicloudsdkdns/v2/model/batch_set_zones_status_request.py +111 -0
  15. huaweicloudsdkdns/v2/model/batch_set_zones_status_request_body.py +142 -0
  16. huaweicloudsdkdns/v2/model/batch_set_zones_status_response.py +166 -0
  17. huaweicloudsdkdns/v2/model/batch_update_record_set_with_line_request.py +4 -4
  18. huaweicloudsdkdns/v2/model/{batch_update_record_set_with_line_req.py → batch_update_record_set_with_line_request_body.py} +7 -7
  19. huaweicloudsdkdns/v2/model/create_custom_line_request.py +4 -4
  20. huaweicloudsdkdns/v2/model/{create_custom_lines.py → create_custom_line_request_body.py} +15 -15
  21. huaweicloudsdkdns/v2/model/create_eip_record_set_response.py +3 -3
  22. huaweicloudsdkdns/v2/model/create_private_zone_req.py +3 -3
  23. huaweicloudsdkdns/v2/model/create_private_zone_response.py +3 -3
  24. huaweicloudsdkdns/v2/model/create_public_zone_req.py +6 -6
  25. huaweicloudsdkdns/v2/model/create_public_zone_response.py +3 -3
  26. huaweicloudsdkdns/v2/model/create_record_set_request_body.py +3 -3
  27. huaweicloudsdkdns/v2/model/create_record_set_with_line_request_body.py +3 -3
  28. huaweicloudsdkdns/v2/model/delete_custom_line_request.py +3 -3
  29. huaweicloudsdkdns/v2/model/delete_line_group_request.py +3 -3
  30. huaweicloudsdkdns/v2/model/delete_private_zone_response.py +3 -3
  31. huaweicloudsdkdns/v2/model/delete_public_zone_response.py +3 -3
  32. huaweicloudsdkdns/v2/model/link.py +115 -0
  33. huaweicloudsdkdns/v2/model/list_custom_line_request.py +64 -6
  34. huaweicloudsdkdns/v2/model/list_line_groups_request.py +3 -3
  35. huaweicloudsdkdns/v2/model/list_private_zones_request.py +125 -9
  36. huaweicloudsdkdns/v2/model/list_ptr_records_floating_resp.py +3 -3
  37. huaweicloudsdkdns/v2/model/list_ptr_records_request.py +3 -3
  38. huaweicloudsdkdns/v2/model/list_ptr_records_response.py +3 -3
  39. huaweicloudsdkdns/v2/model/list_public_zones_request.py +97 -10
  40. huaweicloudsdkdns/v2/model/list_record_sets_by_zone_request.py +6 -6
  41. huaweicloudsdkdns/v2/model/list_record_sets_request.py +6 -6
  42. huaweicloudsdkdns/v2/model/list_record_sets_with_line_request.py +36 -7
  43. huaweicloudsdkdns/v2/model/private_zone_resp.py +3 -3
  44. huaweicloudsdkdns/v2/model/public_zone_resp.py +3 -3
  45. huaweicloudsdkdns/v2/model/recordset_data.py +600 -0
  46. huaweicloudsdkdns/v2/model/set_record_sets_status_request.py +4 -4
  47. huaweicloudsdkdns/v2/model/{set_record_sets_status_req.py → set_record_sets_status_request_body.py} +7 -7
  48. huaweicloudsdkdns/v2/model/show_line_group_request.py +3 -3
  49. huaweicloudsdkdns/v2/model/show_private_zone_response.py +3 -3
  50. huaweicloudsdkdns/v2/model/show_ptr_record_set_response.py +3 -3
  51. huaweicloudsdkdns/v2/model/show_public_zone_response.py +3 -3
  52. huaweicloudsdkdns/v2/model/show_record_set_by_zone_request.py +6 -6
  53. huaweicloudsdkdns/v2/model/show_record_set_by_zone_resp.py +35 -35
  54. huaweicloudsdkdns/v2/model/update_custom_line_request.py +7 -7
  55. huaweicloudsdkdns/v2/model/{update_customs_line_req.py → update_custom_line_request_body.py} +15 -15
  56. huaweicloudsdkdns/v2/model/update_line_groups_request.py +7 -7
  57. huaweicloudsdkdns/v2/model/{update_line_groups_body.py → update_line_groups_request_body.py} +15 -15
  58. huaweicloudsdkdns/v2/model/update_private_zone_info_req.py +3 -3
  59. huaweicloudsdkdns/v2/model/update_private_zone_response.py +3 -3
  60. huaweicloudsdkdns/v2/model/update_ptr_record_response.py +3 -3
  61. huaweicloudsdkdns/v2/model/update_public_zone_info.py +3 -3
  62. huaweicloudsdkdns/v2/model/update_public_zone_response.py +3 -3
  63. huaweicloudsdkdns/v2/model/update_public_zone_status_response.py +3 -3
  64. huaweicloudsdkdns/v2/model/zone_data.py +517 -0
  65. {huaweicloudsdkdns-3.1.131.dist-info → huaweicloudsdkdns-3.1.133.dist-info}/METADATA +2 -2
  66. {huaweicloudsdkdns-3.1.131.dist-info → huaweicloudsdkdns-3.1.133.dist-info}/RECORD +69 -54
  67. {huaweicloudsdkdns-3.1.131.dist-info → huaweicloudsdkdns-3.1.133.dist-info}/LICENSE +0 -0
  68. {huaweicloudsdkdns-3.1.131.dist-info → huaweicloudsdkdns-3.1.133.dist-info}/WHEEL +0 -0
  69. {huaweicloudsdkdns-3.1.131.dist-info → huaweicloudsdkdns-3.1.133.dist-info}/top_level.txt +0 -0
@@ -23,8 +23,11 @@ class ListPublicZonesRequest:
23
23
  'offset': 'int',
24
24
  'tags': 'str',
25
25
  'name': 'str',
26
+ 'id': 'str',
26
27
  'status': 'str',
27
28
  'search_mode': 'str',
29
+ 'sort_key': 'str',
30
+ 'sort_dir': 'str',
28
31
  'enterprise_project_id': 'str'
29
32
  }
30
33
 
@@ -35,17 +38,20 @@ class ListPublicZonesRequest:
35
38
  'offset': 'offset',
36
39
  'tags': 'tags',
37
40
  'name': 'name',
41
+ 'id': 'id',
38
42
  'status': 'status',
39
43
  'search_mode': 'search_mode',
44
+ 'sort_key': 'sort_key',
45
+ 'sort_dir': 'sort_dir',
40
46
  'enterprise_project_id': 'enterprise_project_id'
41
47
  }
42
48
 
43
- def __init__(self, type=None, limit=None, marker=None, offset=None, tags=None, name=None, status=None, search_mode=None, enterprise_project_id=None):
49
+ def __init__(self, type=None, limit=None, marker=None, offset=None, tags=None, name=None, id=None, status=None, search_mode=None, sort_key=None, sort_dir=None, enterprise_project_id=None):
44
50
  """ListPublicZonesRequest
45
51
 
46
52
  The model defined in huaweicloud sdk
47
53
 
48
- :param type: 待查询的zone的类型。 取值范围:public 搜索模式默认为模糊搜索。 默认值为空。
54
+ :param type: 待查询的zone的类型。 取值范围:public 默认值为空。
49
55
  :type type: str
50
56
  :param limit: 每页返回的资源个数。 取值范围:0~500 取值一般为10,20,50。默认值为500。
51
57
  :type limit: int
@@ -55,13 +61,19 @@ class ListPublicZonesRequest:
55
61
  :type offset: int
56
62
  :param tags: 资源标签。 取值格式:key1,value1|key2,value2 多个标签之间用\"|\"分开,每个标签的键值用英文逗号\",\"相隔。 多个标签之间为“与”的关系。 关于资源标签,请参见添加资源标签。 搜索模式为精确搜索。如果资源标签值value是以*开头时,则按照*后面的值全模糊匹配。 默认值为空。
57
63
  :type tags: str
58
- :param name: zone名称。 搜索模式默认为模糊搜索。
64
+ :param name: Zone名称。 搜索模式默认为模糊搜索。
59
65
  :type name: str
66
+ :param id: Zone ID。
67
+ :type id: str
60
68
  :param status: 资源状态。
61
69
  :type status: str
62
70
  :param search_mode: 查询条件搜索模式。 取值范围: like:模糊搜索 equal:精确搜索
63
71
  :type search_mode: str
64
- :param enterprise_project_id: 域名关联的企业项目ID,长度不超过36个字符。 默认值为0。
72
+ :param sort_key: 查询结果中zone列表的排序字段。 取值范围为: name:域名 created_at:创建时间 updated_at:更新时间 默认值为空,表示不排序。
73
+ :type sort_key: str
74
+ :param sort_dir: 查询结果中zone列表的排序方式。 取值范围: desc:降序排序 asc:升序排序 默认值为空,表示不排序。
75
+ :type sort_dir: str
76
+ :param enterprise_project_id: 域名关联的企业项目ID,长度不超过36个字符。
65
77
  :type enterprise_project_id: str
66
78
  """
67
79
 
@@ -73,8 +85,11 @@ class ListPublicZonesRequest:
73
85
  self._offset = None
74
86
  self._tags = None
75
87
  self._name = None
88
+ self._id = None
76
89
  self._status = None
77
90
  self._search_mode = None
91
+ self._sort_key = None
92
+ self._sort_dir = None
78
93
  self._enterprise_project_id = None
79
94
  self.discriminator = None
80
95
 
@@ -90,10 +105,16 @@ class ListPublicZonesRequest:
90
105
  self.tags = tags
91
106
  if name is not None:
92
107
  self.name = name
108
+ if id is not None:
109
+ self.id = id
93
110
  if status is not None:
94
111
  self.status = status
95
112
  if search_mode is not None:
96
113
  self.search_mode = search_mode
114
+ if sort_key is not None:
115
+ self.sort_key = sort_key
116
+ if sort_dir is not None:
117
+ self.sort_dir = sort_dir
97
118
  if enterprise_project_id is not None:
98
119
  self.enterprise_project_id = enterprise_project_id
99
120
 
@@ -101,7 +122,7 @@ class ListPublicZonesRequest:
101
122
  def type(self):
102
123
  """Gets the type of this ListPublicZonesRequest.
103
124
 
104
- 待查询的zone的类型。 取值范围:public 搜索模式默认为模糊搜索。 默认值为空。
125
+ 待查询的zone的类型。 取值范围:public 默认值为空。
105
126
 
106
127
  :return: The type of this ListPublicZonesRequest.
107
128
  :rtype: str
@@ -112,7 +133,7 @@ class ListPublicZonesRequest:
112
133
  def type(self, type):
113
134
  """Sets the type of this ListPublicZonesRequest.
114
135
 
115
- 待查询的zone的类型。 取值范围:public 搜索模式默认为模糊搜索。 默认值为空。
136
+ 待查询的zone的类型。 取值范围:public 默认值为空。
116
137
 
117
138
  :param type: The type of this ListPublicZonesRequest.
118
139
  :type type: str
@@ -211,7 +232,7 @@ class ListPublicZonesRequest:
211
232
  def name(self):
212
233
  """Gets the name of this ListPublicZonesRequest.
213
234
 
214
- zone名称。 搜索模式默认为模糊搜索。
235
+ Zone名称。 搜索模式默认为模糊搜索。
215
236
 
216
237
  :return: The name of this ListPublicZonesRequest.
217
238
  :rtype: str
@@ -222,13 +243,35 @@ class ListPublicZonesRequest:
222
243
  def name(self, name):
223
244
  """Sets the name of this ListPublicZonesRequest.
224
245
 
225
- zone名称。 搜索模式默认为模糊搜索。
246
+ Zone名称。 搜索模式默认为模糊搜索。
226
247
 
227
248
  :param name: The name of this ListPublicZonesRequest.
228
249
  :type name: str
229
250
  """
230
251
  self._name = name
231
252
 
253
+ @property
254
+ def id(self):
255
+ """Gets the id of this ListPublicZonesRequest.
256
+
257
+ Zone ID。
258
+
259
+ :return: The id of this ListPublicZonesRequest.
260
+ :rtype: str
261
+ """
262
+ return self._id
263
+
264
+ @id.setter
265
+ def id(self, id):
266
+ """Sets the id of this ListPublicZonesRequest.
267
+
268
+ Zone ID。
269
+
270
+ :param id: The id of this ListPublicZonesRequest.
271
+ :type id: str
272
+ """
273
+ self._id = id
274
+
232
275
  @property
233
276
  def status(self):
234
277
  """Gets the status of this ListPublicZonesRequest.
@@ -273,11 +316,55 @@ class ListPublicZonesRequest:
273
316
  """
274
317
  self._search_mode = search_mode
275
318
 
319
+ @property
320
+ def sort_key(self):
321
+ """Gets the sort_key of this ListPublicZonesRequest.
322
+
323
+ 查询结果中zone列表的排序字段。 取值范围为: name:域名 created_at:创建时间 updated_at:更新时间 默认值为空,表示不排序。
324
+
325
+ :return: The sort_key of this ListPublicZonesRequest.
326
+ :rtype: str
327
+ """
328
+ return self._sort_key
329
+
330
+ @sort_key.setter
331
+ def sort_key(self, sort_key):
332
+ """Sets the sort_key of this ListPublicZonesRequest.
333
+
334
+ 查询结果中zone列表的排序字段。 取值范围为: name:域名 created_at:创建时间 updated_at:更新时间 默认值为空,表示不排序。
335
+
336
+ :param sort_key: The sort_key of this ListPublicZonesRequest.
337
+ :type sort_key: str
338
+ """
339
+ self._sort_key = sort_key
340
+
341
+ @property
342
+ def sort_dir(self):
343
+ """Gets the sort_dir of this ListPublicZonesRequest.
344
+
345
+ 查询结果中zone列表的排序方式。 取值范围: desc:降序排序 asc:升序排序 默认值为空,表示不排序。
346
+
347
+ :return: The sort_dir of this ListPublicZonesRequest.
348
+ :rtype: str
349
+ """
350
+ return self._sort_dir
351
+
352
+ @sort_dir.setter
353
+ def sort_dir(self, sort_dir):
354
+ """Sets the sort_dir of this ListPublicZonesRequest.
355
+
356
+ 查询结果中zone列表的排序方式。 取值范围: desc:降序排序 asc:升序排序 默认值为空,表示不排序。
357
+
358
+ :param sort_dir: The sort_dir of this ListPublicZonesRequest.
359
+ :type sort_dir: str
360
+ """
361
+ self._sort_dir = sort_dir
362
+
276
363
  @property
277
364
  def enterprise_project_id(self):
278
365
  """Gets the enterprise_project_id of this ListPublicZonesRequest.
279
366
 
280
- 域名关联的企业项目ID,长度不超过36个字符。 默认值为0。
367
+ 域名关联的企业项目ID,长度不超过36个字符。
281
368
 
282
369
  :return: The enterprise_project_id of this ListPublicZonesRequest.
283
370
  :rtype: str
@@ -288,7 +375,7 @@ class ListPublicZonesRequest:
288
375
  def enterprise_project_id(self, enterprise_project_id):
289
376
  """Sets the enterprise_project_id of this ListPublicZonesRequest.
290
377
 
291
- 域名关联的企业项目ID,长度不超过36个字符。 默认值为0。
378
+ 域名关联的企业项目ID,长度不超过36个字符。
292
379
 
293
380
  :param enterprise_project_id: The enterprise_project_id of this ListPublicZonesRequest.
294
381
  :type enterprise_project_id: str
@@ -69,9 +69,9 @@ class ListRecordSetsByZoneRequest:
69
69
  :type type: str
70
70
  :param name: 待查询的Record Set的域名中包含此name。 搜索模式默认为模糊搜索。 默认值为空。
71
71
  :type name: str
72
- :param id: 待查询的Record Set的id包含此id。 搜索模式默认为模糊搜索。 默认值为空。
72
+ :param id: 待查询的Record Set的id包含此id。
73
73
  :type id: str
74
- :param sort_key: 查询结果中Record Set列表的排序字段。 取值范围为: name:域名 type:记录集类型 默认值为空,表示不排序。
74
+ :param sort_key: 查询结果中Record Set列表的排序字段。 取值范围为: name:记录集名称 type:记录集类型 默认值为空,表示不排序。
75
75
  :type sort_key: str
76
76
  :param sort_dir: 查询结果中Record Set列表的排序方式。 取值范围: desc:降序排序 asc:升序排序 默认值为空,表示不排序。
77
77
  :type sort_dir: str
@@ -319,7 +319,7 @@ class ListRecordSetsByZoneRequest:
319
319
  def id(self):
320
320
  """Gets the id of this ListRecordSetsByZoneRequest.
321
321
 
322
- 待查询的Record Set的id包含此id。 搜索模式默认为模糊搜索。 默认值为空。
322
+ 待查询的Record Set的id包含此id。
323
323
 
324
324
  :return: The id of this ListRecordSetsByZoneRequest.
325
325
  :rtype: str
@@ -330,7 +330,7 @@ class ListRecordSetsByZoneRequest:
330
330
  def id(self, id):
331
331
  """Sets the id of this ListRecordSetsByZoneRequest.
332
332
 
333
- 待查询的Record Set的id包含此id。 搜索模式默认为模糊搜索。 默认值为空。
333
+ 待查询的Record Set的id包含此id。
334
334
 
335
335
  :param id: The id of this ListRecordSetsByZoneRequest.
336
336
  :type id: str
@@ -341,7 +341,7 @@ class ListRecordSetsByZoneRequest:
341
341
  def sort_key(self):
342
342
  """Gets the sort_key of this ListRecordSetsByZoneRequest.
343
343
 
344
- 查询结果中Record Set列表的排序字段。 取值范围为: name:域名 type:记录集类型 默认值为空,表示不排序。
344
+ 查询结果中Record Set列表的排序字段。 取值范围为: name:记录集名称 type:记录集类型 默认值为空,表示不排序。
345
345
 
346
346
  :return: The sort_key of this ListRecordSetsByZoneRequest.
347
347
  :rtype: str
@@ -352,7 +352,7 @@ class ListRecordSetsByZoneRequest:
352
352
  def sort_key(self, sort_key):
353
353
  """Sets the sort_key of this ListRecordSetsByZoneRequest.
354
354
 
355
- 查询结果中Record Set列表的排序字段。 取值范围为: name:域名 type:记录集类型 默认值为空,表示不排序。
355
+ 查询结果中Record Set列表的排序字段。 取值范围为: name:记录集名称 type:记录集类型 默认值为空,表示不排序。
356
356
 
357
357
  :param sort_key: The sort_key of this ListRecordSetsByZoneRequest.
358
358
  :type sort_key: str
@@ -71,11 +71,11 @@ class ListRecordSetsRequest:
71
71
  :type type: str
72
72
  :param name: 待查询的Record Set的域名中包含此name。 搜索模式默认为模糊搜索。 默认值为空。
73
73
  :type name: str
74
- :param id: 待查询的Record Set的id包含此id。 搜索模式默认为模糊搜索。 默认值为空。
74
+ :param id: 待查询的Record Set的id包含此id。
75
75
  :type id: str
76
76
  :param records: 待查询的Record Set的值中包含此records。 搜索模式默认为模糊搜索。 默认值为空。
77
77
  :type records: str
78
- :param sort_key: 查询结果中Record Set列表的排序字段。 取值范围: name:域名 type:记录集类型 默认值为空,表示不排序。
78
+ :param sort_key: 查询结果中Record Set列表的排序字段。 取值范围: name:记录集名称 type:记录集类型 默认值为空,表示不排序。
79
79
  :type sort_key: str
80
80
  :param sort_dir: 查询结果中Record Set列表的排序方式。 取值范围: desc:降序排序 asc:升序排序 默认值为空,表示不排序。
81
81
  :type sort_dir: str
@@ -327,7 +327,7 @@ class ListRecordSetsRequest:
327
327
  def id(self):
328
328
  """Gets the id of this ListRecordSetsRequest.
329
329
 
330
- 待查询的Record Set的id包含此id。 搜索模式默认为模糊搜索。 默认值为空。
330
+ 待查询的Record Set的id包含此id。
331
331
 
332
332
  :return: The id of this ListRecordSetsRequest.
333
333
  :rtype: str
@@ -338,7 +338,7 @@ class ListRecordSetsRequest:
338
338
  def id(self, id):
339
339
  """Sets the id of this ListRecordSetsRequest.
340
340
 
341
- 待查询的Record Set的id包含此id。 搜索模式默认为模糊搜索。 默认值为空。
341
+ 待查询的Record Set的id包含此id。
342
342
 
343
343
  :param id: The id of this ListRecordSetsRequest.
344
344
  :type id: str
@@ -371,7 +371,7 @@ class ListRecordSetsRequest:
371
371
  def sort_key(self):
372
372
  """Gets the sort_key of this ListRecordSetsRequest.
373
373
 
374
- 查询结果中Record Set列表的排序字段。 取值范围: name:域名 type:记录集类型 默认值为空,表示不排序。
374
+ 查询结果中Record Set列表的排序字段。 取值范围: name:记录集名称 type:记录集类型 默认值为空,表示不排序。
375
375
 
376
376
  :return: The sort_key of this ListRecordSetsRequest.
377
377
  :rtype: str
@@ -382,7 +382,7 @@ class ListRecordSetsRequest:
382
382
  def sort_key(self, sort_key):
383
383
  """Sets the sort_key of this ListRecordSetsRequest.
384
384
 
385
- 查询结果中Record Set列表的排序字段。 取值范围: name:域名 type:记录集类型 默认值为空,表示不排序。
385
+ 查询结果中Record Set列表的排序字段。 取值范围: name:记录集名称 type:记录集类型 默认值为空,表示不排序。
386
386
 
387
387
  :param sort_key: The sort_key of this ListRecordSetsRequest.
388
388
  :type sort_key: str
@@ -21,6 +21,7 @@ class ListRecordSetsWithLineRequest:
21
21
  'marker': 'str',
22
22
  'limit': 'int',
23
23
  'offset': 'int',
24
+ 'zone_id': 'str',
24
25
  'line_id': 'str',
25
26
  'tags': 'str',
26
27
  'status': 'str',
@@ -39,6 +40,7 @@ class ListRecordSetsWithLineRequest:
39
40
  'marker': 'marker',
40
41
  'limit': 'limit',
41
42
  'offset': 'offset',
43
+ 'zone_id': 'zone_id',
42
44
  'line_id': 'line_id',
43
45
  'tags': 'tags',
44
46
  'status': 'status',
@@ -52,7 +54,7 @@ class ListRecordSetsWithLineRequest:
52
54
  'search_mode': 'search_mode'
53
55
  }
54
56
 
55
- def __init__(self, zone_type=None, marker=None, limit=None, offset=None, line_id=None, tags=None, status=None, type=None, name=None, id=None, records=None, sort_key=None, sort_dir=None, health_check_id=None, search_mode=None):
57
+ def __init__(self, zone_type=None, marker=None, limit=None, offset=None, zone_id=None, line_id=None, tags=None, status=None, type=None, name=None, id=None, records=None, sort_key=None, sort_dir=None, health_check_id=None, search_mode=None):
56
58
  """ListRecordSetsWithLineRequest
57
59
 
58
60
  The model defined in huaweicloud sdk
@@ -65,6 +67,8 @@ class ListRecordSetsWithLineRequest:
65
67
  :type limit: int
66
68
  :param offset: 分页查询起始偏移量,表示从偏移量的下一个资源开始查询。 取值范围:0~2147483647 默认值为0。 当前设置marker不为空时,以marker为分页起始标识。
67
69
  :type offset: int
70
+ :param zone_id: zone的ID。
71
+ :type zone_id: str
68
72
  :param line_id: 解析线路ID。
69
73
  :type line_id: str
70
74
  :param tags: 资源标签。 取值格式:key1,value1|key2,value2 多个标签之间用\"|\"分开,每个标签的键值用英文逗号\",\"相隔。
@@ -75,11 +79,11 @@ class ListRecordSetsWithLineRequest:
75
79
  :type type: str
76
80
  :param name: 待查询的Record Set的域名中包含此name。 搜索模式默认为模糊搜索。 默认值为空。
77
81
  :type name: str
78
- :param id: 待查询的Record Set的id包含此id。 搜索模式默认为模糊搜索。 默认值为空。
82
+ :param id: 待查询的Record Set的id包含此id。
79
83
  :type id: str
80
84
  :param records: 待查询的Record Set的值中包含此records。 搜索模式默认为模糊搜索。 默认值为空。
81
85
  :type records: str
82
- :param sort_key: 查询结果中Record Set列表的排序字段。 取值范围: name:域名 type:记录集类型 默认值为空,表示不排序。
86
+ :param sort_key: 查询结果中Record Set列表的排序字段。 取值范围: name:记录集名称 type:记录集类型 默认值为空,表示不排序。
83
87
  :type sort_key: str
84
88
  :param sort_dir: 查询结果中Record Set列表的排序方式。 取值范围: desc:降序排序 asc:升序排序 默认值为空,表示不排序。
85
89
  :type sort_dir: str
@@ -95,6 +99,7 @@ class ListRecordSetsWithLineRequest:
95
99
  self._marker = None
96
100
  self._limit = None
97
101
  self._offset = None
102
+ self._zone_id = None
98
103
  self._line_id = None
99
104
  self._tags = None
100
105
  self._status = None
@@ -116,6 +121,8 @@ class ListRecordSetsWithLineRequest:
116
121
  self.limit = limit
117
122
  if offset is not None:
118
123
  self.offset = offset
124
+ if zone_id is not None:
125
+ self.zone_id = zone_id
119
126
  if line_id is not None:
120
127
  self.line_id = line_id
121
128
  if tags is not None:
@@ -227,6 +234,28 @@ class ListRecordSetsWithLineRequest:
227
234
  """
228
235
  self._offset = offset
229
236
 
237
+ @property
238
+ def zone_id(self):
239
+ """Gets the zone_id of this ListRecordSetsWithLineRequest.
240
+
241
+ zone的ID。
242
+
243
+ :return: The zone_id of this ListRecordSetsWithLineRequest.
244
+ :rtype: str
245
+ """
246
+ return self._zone_id
247
+
248
+ @zone_id.setter
249
+ def zone_id(self, zone_id):
250
+ """Sets the zone_id of this ListRecordSetsWithLineRequest.
251
+
252
+ zone的ID。
253
+
254
+ :param zone_id: The zone_id of this ListRecordSetsWithLineRequest.
255
+ :type zone_id: str
256
+ """
257
+ self._zone_id = zone_id
258
+
230
259
  @property
231
260
  def line_id(self):
232
261
  """Gets the line_id of this ListRecordSetsWithLineRequest.
@@ -341,7 +370,7 @@ class ListRecordSetsWithLineRequest:
341
370
  def id(self):
342
371
  """Gets the id of this ListRecordSetsWithLineRequest.
343
372
 
344
- 待查询的Record Set的id包含此id。 搜索模式默认为模糊搜索。 默认值为空。
373
+ 待查询的Record Set的id包含此id。
345
374
 
346
375
  :return: The id of this ListRecordSetsWithLineRequest.
347
376
  :rtype: str
@@ -352,7 +381,7 @@ class ListRecordSetsWithLineRequest:
352
381
  def id(self, id):
353
382
  """Sets the id of this ListRecordSetsWithLineRequest.
354
383
 
355
- 待查询的Record Set的id包含此id。 搜索模式默认为模糊搜索。 默认值为空。
384
+ 待查询的Record Set的id包含此id。
356
385
 
357
386
  :param id: The id of this ListRecordSetsWithLineRequest.
358
387
  :type id: str
@@ -385,7 +414,7 @@ class ListRecordSetsWithLineRequest:
385
414
  def sort_key(self):
386
415
  """Gets the sort_key of this ListRecordSetsWithLineRequest.
387
416
 
388
- 查询结果中Record Set列表的排序字段。 取值范围: name:域名 type:记录集类型 默认值为空,表示不排序。
417
+ 查询结果中Record Set列表的排序字段。 取值范围: name:记录集名称 type:记录集类型 默认值为空,表示不排序。
389
418
 
390
419
  :return: The sort_key of this ListRecordSetsWithLineRequest.
391
420
  :rtype: str
@@ -396,7 +425,7 @@ class ListRecordSetsWithLineRequest:
396
425
  def sort_key(self, sort_key):
397
426
  """Sets the sort_key of this ListRecordSetsWithLineRequest.
398
427
 
399
- 查询结果中Record Set列表的排序字段。 取值范围: name:域名 type:记录集类型 默认值为空,表示不排序。
428
+ 查询结果中Record Set列表的排序字段。 取值范围: name:记录集名称 type:记录集类型 默认值为空,表示不排序。
400
429
 
401
430
  :param sort_key: The sort_key of this ListRecordSetsWithLineRequest.
402
431
  :type sort_key: str
@@ -71,7 +71,7 @@ class PrivateZoneResp:
71
71
  :type name: str
72
72
  :param description: 对zone的描述信息。
73
73
  :type description: str
74
- :param email: 管理该zone的管理员邮箱。
74
+ :param email: 管理该zone的管理员邮箱,用于生成该Zone的SOA记录。
75
75
  :type email: str
76
76
  :param zone_type: zone类型,内网(private)。
77
77
  :type zone_type: str
@@ -237,7 +237,7 @@ class PrivateZoneResp:
237
237
  def email(self):
238
238
  """Gets the email of this PrivateZoneResp.
239
239
 
240
- 管理该zone的管理员邮箱。
240
+ 管理该zone的管理员邮箱,用于生成该Zone的SOA记录。
241
241
 
242
242
  :return: The email of this PrivateZoneResp.
243
243
  :rtype: str
@@ -248,7 +248,7 @@ class PrivateZoneResp:
248
248
  def email(self, email):
249
249
  """Sets the email of this PrivateZoneResp.
250
250
 
251
- 管理该zone的管理员邮箱。
251
+ 管理该zone的管理员邮箱,用于生成该Zone的SOA记录。
252
252
 
253
253
  :param email: The email of this PrivateZoneResp.
254
254
  :type email: str
@@ -67,7 +67,7 @@ class PublicZoneResp:
67
67
  :type name: str
68
68
  :param description: 对zone的描述信息。
69
69
  :type description: str
70
- :param email: 管理该zone的管理员邮箱。
70
+ :param email: 管理该zone的管理员邮箱,用于生成该Zone的SOA记录。
71
71
  :type email: str
72
72
  :param zone_type: zone类型,公网(public)。
73
73
  :type zone_type: str
@@ -223,7 +223,7 @@ class PublicZoneResp:
223
223
  def email(self):
224
224
  """Gets the email of this PublicZoneResp.
225
225
 
226
- 管理该zone的管理员邮箱。
226
+ 管理该zone的管理员邮箱,用于生成该Zone的SOA记录。
227
227
 
228
228
  :return: The email of this PublicZoneResp.
229
229
  :rtype: str
@@ -234,7 +234,7 @@ class PublicZoneResp:
234
234
  def email(self, email):
235
235
  """Sets the email of this PublicZoneResp.
236
236
 
237
- 管理该zone的管理员邮箱。
237
+ 管理该zone的管理员邮箱,用于生成该Zone的SOA记录。
238
238
 
239
239
  :param email: The email of this PublicZoneResp.
240
240
  :type email: str