huaweicloudsdkdns 3.1.62__py2.py3-none-any.whl → 3.1.64__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.
- huaweicloudsdkdns/v2/model/show_private_zone_response.py +61 -3
- {huaweicloudsdkdns-3.1.62.dist-info → huaweicloudsdkdns-3.1.64.dist-info}/METADATA +2 -2
- {huaweicloudsdkdns-3.1.62.dist-info → huaweicloudsdkdns-3.1.64.dist-info}/RECORD +6 -6
- {huaweicloudsdkdns-3.1.62.dist-info → huaweicloudsdkdns-3.1.64.dist-info}/WHEEL +1 -1
- {huaweicloudsdkdns-3.1.62.dist-info → huaweicloudsdkdns-3.1.64.dist-info}/LICENSE +0 -0
- {huaweicloudsdkdns-3.1.62.dist-info → huaweicloudsdkdns-3.1.64.dist-info}/top_level.txt +0 -0
@@ -33,7 +33,9 @@ class ShowPrivateZoneResponse(SdkResponse):
|
|
33
33
|
'updated_at': 'str',
|
34
34
|
'links': 'PageLink',
|
35
35
|
'masters': 'list[str]',
|
36
|
-
'routers': 'list[Router]'
|
36
|
+
'routers': 'list[Router]',
|
37
|
+
'proxy_pattern': 'str',
|
38
|
+
'enterprise_project_id': 'str'
|
37
39
|
}
|
38
40
|
|
39
41
|
attribute_map = {
|
@@ -52,10 +54,12 @@ class ShowPrivateZoneResponse(SdkResponse):
|
|
52
54
|
'updated_at': 'updated_at',
|
53
55
|
'links': 'links',
|
54
56
|
'masters': 'masters',
|
55
|
-
'routers': 'routers'
|
57
|
+
'routers': 'routers',
|
58
|
+
'proxy_pattern': 'proxy_pattern',
|
59
|
+
'enterprise_project_id': 'enterprise_project_id'
|
56
60
|
}
|
57
61
|
|
58
|
-
def __init__(self, id=None, name=None, description=None, email=None, zone_type=None, ttl=None, serial=None, status=None, record_num=None, pool_id=None, project_id=None, created_at=None, updated_at=None, links=None, masters=None, routers=None):
|
62
|
+
def __init__(self, id=None, name=None, description=None, email=None, zone_type=None, ttl=None, serial=None, status=None, record_num=None, pool_id=None, project_id=None, created_at=None, updated_at=None, links=None, masters=None, routers=None, proxy_pattern=None, enterprise_project_id=None):
|
59
63
|
"""ShowPrivateZoneResponse
|
60
64
|
|
61
65
|
The model defined in huaweicloud sdk
|
@@ -92,6 +96,10 @@ class ShowPrivateZoneResponse(SdkResponse):
|
|
92
96
|
:type masters: list[str]
|
93
97
|
:param routers: 与该zone关联的Router(VPC)列表。
|
94
98
|
:type routers: list[:class:`huaweicloudsdkdns.v2.Router`]
|
99
|
+
:param proxy_pattern: 内网Zone的子域名递归解析代理模式。 取值范围: AUTHORITY:当前Zone不进行递归解析 RECURSIVE:开启递归解析代理
|
100
|
+
:type proxy_pattern: str
|
101
|
+
:param enterprise_project_id: 域名关联的企业项目ID,长度不超过36个字符。
|
102
|
+
:type enterprise_project_id: str
|
95
103
|
"""
|
96
104
|
|
97
105
|
super(ShowPrivateZoneResponse, self).__init__()
|
@@ -112,6 +120,8 @@ class ShowPrivateZoneResponse(SdkResponse):
|
|
112
120
|
self._links = None
|
113
121
|
self._masters = None
|
114
122
|
self._routers = None
|
123
|
+
self._proxy_pattern = None
|
124
|
+
self._enterprise_project_id = None
|
115
125
|
self.discriminator = None
|
116
126
|
|
117
127
|
if id is not None:
|
@@ -146,6 +156,10 @@ class ShowPrivateZoneResponse(SdkResponse):
|
|
146
156
|
self.masters = masters
|
147
157
|
if routers is not None:
|
148
158
|
self.routers = routers
|
159
|
+
if proxy_pattern is not None:
|
160
|
+
self.proxy_pattern = proxy_pattern
|
161
|
+
if enterprise_project_id is not None:
|
162
|
+
self.enterprise_project_id = enterprise_project_id
|
149
163
|
|
150
164
|
@property
|
151
165
|
def id(self):
|
@@ -495,6 +509,50 @@ class ShowPrivateZoneResponse(SdkResponse):
|
|
495
509
|
"""
|
496
510
|
self._routers = routers
|
497
511
|
|
512
|
+
@property
|
513
|
+
def proxy_pattern(self):
|
514
|
+
"""Gets the proxy_pattern of this ShowPrivateZoneResponse.
|
515
|
+
|
516
|
+
内网Zone的子域名递归解析代理模式。 取值范围: AUTHORITY:当前Zone不进行递归解析 RECURSIVE:开启递归解析代理
|
517
|
+
|
518
|
+
:return: The proxy_pattern of this ShowPrivateZoneResponse.
|
519
|
+
:rtype: str
|
520
|
+
"""
|
521
|
+
return self._proxy_pattern
|
522
|
+
|
523
|
+
@proxy_pattern.setter
|
524
|
+
def proxy_pattern(self, proxy_pattern):
|
525
|
+
"""Sets the proxy_pattern of this ShowPrivateZoneResponse.
|
526
|
+
|
527
|
+
内网Zone的子域名递归解析代理模式。 取值范围: AUTHORITY:当前Zone不进行递归解析 RECURSIVE:开启递归解析代理
|
528
|
+
|
529
|
+
:param proxy_pattern: The proxy_pattern of this ShowPrivateZoneResponse.
|
530
|
+
:type proxy_pattern: str
|
531
|
+
"""
|
532
|
+
self._proxy_pattern = proxy_pattern
|
533
|
+
|
534
|
+
@property
|
535
|
+
def enterprise_project_id(self):
|
536
|
+
"""Gets the enterprise_project_id of this ShowPrivateZoneResponse.
|
537
|
+
|
538
|
+
域名关联的企业项目ID,长度不超过36个字符。
|
539
|
+
|
540
|
+
:return: The enterprise_project_id of this ShowPrivateZoneResponse.
|
541
|
+
:rtype: str
|
542
|
+
"""
|
543
|
+
return self._enterprise_project_id
|
544
|
+
|
545
|
+
@enterprise_project_id.setter
|
546
|
+
def enterprise_project_id(self, enterprise_project_id):
|
547
|
+
"""Sets the enterprise_project_id of this ShowPrivateZoneResponse.
|
548
|
+
|
549
|
+
域名关联的企业项目ID,长度不超过36个字符。
|
550
|
+
|
551
|
+
:param enterprise_project_id: The enterprise_project_id of this ShowPrivateZoneResponse.
|
552
|
+
:type enterprise_project_id: str
|
553
|
+
"""
|
554
|
+
self._enterprise_project_id = enterprise_project_id
|
555
|
+
|
498
556
|
def to_dict(self):
|
499
557
|
"""Returns the model properties as a dict"""
|
500
558
|
result = {}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: huaweicloudsdkdns
|
3
|
-
Version: 3.1.
|
3
|
+
Version: 3.1.64
|
4
4
|
Summary: DNS
|
5
5
|
Home-page: https://github.com/huaweicloud/huaweicloud-sdk-python-v3
|
6
6
|
Author: HuaweiCloud SDK
|
@@ -22,6 +22,6 @@ Classifier: Topic :: Software Development
|
|
22
22
|
Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*
|
23
23
|
Description-Content-Type: text/markdown
|
24
24
|
License-File: LICENSE
|
25
|
-
Requires-Dist: huaweicloudsdkcore >=3.1.
|
25
|
+
Requires-Dist: huaweicloudsdkcore >=3.1.64
|
26
26
|
|
27
27
|
See detailed information in [huaweicloud-sdk-python-v3](https://github.com/huaweicloud/huaweicloud-sdk-python-v3).
|
@@ -129,7 +129,7 @@ huaweicloudsdkdns/v2/model/show_line_group_response.py,sha256=K_IXF8R_JOUwwToBmi
|
|
129
129
|
huaweicloudsdkdns/v2/model/show_private_zone_name_server_request.py,sha256=7mfeLOanp6eDlzc0d6sDOqIG997-3NZizCvyj36Schs,3151
|
130
130
|
huaweicloudsdkdns/v2/model/show_private_zone_name_server_response.py,sha256=lG4zfJ_9A17xleyXnrJIynLPrh-embDpaIIZiIpiWxE,3591
|
131
131
|
huaweicloudsdkdns/v2/model/show_private_zone_request.py,sha256=0HmUXHxXeWXs3nFaVHl6drR4LvQF-38iGfAo8c7Jaeg,3063
|
132
|
-
huaweicloudsdkdns/v2/model/show_private_zone_response.py,sha256=
|
132
|
+
huaweicloudsdkdns/v2/model/show_private_zone_response.py,sha256=0-hs9UgjKEsX7YTGv7frbI6gGMXSM_ClNZc_SNc2pgY,18200
|
133
133
|
huaweicloudsdkdns/v2/model/show_ptr_record_set_request.py,sha256=vzn906I6c_CrIvlCFrPnBBa-alTkM_VHk1awtdP7vDY,3920
|
134
134
|
huaweicloudsdkdns/v2/model/show_ptr_record_set_response.py,sha256=UMnEpPOGNBFodTndIjgmF_9bbItaKNYRHpSBuSpKqtM,10616
|
135
135
|
huaweicloudsdkdns/v2/model/show_public_zone_name_server_request.py,sha256=O85o4ZZmfwPelZiDdeJVab59uoZRBkia9TsiKeX_kZ8,3261
|
@@ -175,8 +175,8 @@ huaweicloudsdkdns/v2/model/values_item.py,sha256=0AXLTxTQgrI2oA5ROO_uWgzBU90u3y-
|
|
175
175
|
huaweicloudsdkdns/v2/model/version_item.py,sha256=Qe8ZF1oE8--TxtkJ9qScxZcSJBMQjNjBRxzVL-yQOSY,7653
|
176
176
|
huaweicloudsdkdns/v2/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
177
177
|
huaweicloudsdkdns/v2/region/dns_region.py,sha256=HGUePG6dcvKHzDbX74gTHuID8FqyGWHhjfzJSM2z3cQ,3382
|
178
|
-
huaweicloudsdkdns-3.1.
|
179
|
-
huaweicloudsdkdns-3.1.
|
180
|
-
huaweicloudsdkdns-3.1.
|
181
|
-
huaweicloudsdkdns-3.1.
|
182
|
-
huaweicloudsdkdns-3.1.
|
178
|
+
huaweicloudsdkdns-3.1.64.dist-info/LICENSE,sha256=4_VSTLuxcsybRG9N4Isktlj1rAIBBsfl0Tjc0gBTijo,604
|
179
|
+
huaweicloudsdkdns-3.1.64.dist-info/METADATA,sha256=fNSjkyp2wKbW20EPhNUEfcfv6s8VhbT7Q84nZ87vKBw,1134
|
180
|
+
huaweicloudsdkdns-3.1.64.dist-info/WHEEL,sha256=P2T-6epvtXQ2cBOE_U1K4_noqlJFN3tj15djMgEu4NM,110
|
181
|
+
huaweicloudsdkdns-3.1.64.dist-info/top_level.txt,sha256=L6Y0lsiaUnIBMbDONPwK10dyE0vMKUfYcxZcjjSmu2E,18
|
182
|
+
huaweicloudsdkdns-3.1.64.dist-info/RECORD,,
|
File without changes
|
File without changes
|