blob: 81735a4557d57067c014d2935feac34d18a82798 [file] [log] [blame]
Nathaniel Manista4f877e52015-06-15 16:44:50 +00001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
75<h1><a href="dns_v1.html">Google Cloud DNS API</a> . <a href="dns_v1.managedZones.html">managedZones</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070078 <code><a href="#create">create(project, body=None, clientOperationId=None)</a></code></p>
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -070079<p class="firstline"></p>
Nathaniel Manista4f877e52015-06-15 16:44:50 +000080<p class="toc_element">
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070081 <code><a href="#delete">delete(project, managedZone, clientOperationId=None)</a></code></p>
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -070082<p class="firstline"></p>
Nathaniel Manista4f877e52015-06-15 16:44:50 +000083<p class="toc_element">
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070084 <code><a href="#get">get(project, managedZone, clientOperationId=None)</a></code></p>
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -070085<p class="firstline"></p>
Nathaniel Manista4f877e52015-06-15 16:44:50 +000086<p class="toc_element">
Bu Sun Kim65020912020-05-20 12:08:20 -070087 <code><a href="#list">list(project, dnsName=None, maxResults=None, pageToken=None)</a></code></p>
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -070088<p class="firstline"></p>
Nathaniel Manista4f877e52015-06-15 16:44:50 +000089<p class="toc_element">
90 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
91<p class="firstline">Retrieves the next page of results.</p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070092<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070093 <code><a href="#patch">patch(project, managedZone, body=None, clientOperationId=None)</a></code></p>
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -070094<p class="firstline"></p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070095<p class="toc_element">
Dan O'Mearadd494642020-05-01 07:42:23 -070096 <code><a href="#update">update(project, managedZone, body=None, clientOperationId=None)</a></code></p>
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -070097<p class="firstline"></p>
Nathaniel Manista4f877e52015-06-15 16:44:50 +000098<h3>Method Details</h3>
99<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700100 <code class="details" id="create">create(project, body=None, clientOperationId=None)</code>
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700101 <pre>
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000102
103Args:
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700104 project: string, A parameter (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700105 body: object, The request body.
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000106 The object takes the form of:
107
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700108{
109 &quot;creationTime&quot;: &quot;A String&quot;,
110 &quot;description&quot;: &quot;A String&quot;,
111 &quot;dnsName&quot;: &quot;A String&quot;,
112 &quot;dnssecConfig&quot;: {
113 &quot;defaultKeySpecs&quot;: [
114 {
115 &quot;algorithm&quot;: &quot;A String&quot;,
116 &quot;keyLength&quot;: 42,
117 &quot;keyType&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700118 &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#dnsKeySpec&quot;.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700119 },
120 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700121 &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneDnsSecConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700122 &quot;nonExistence&quot;: &quot;A String&quot;,
123 &quot;state&quot;: &quot;A String&quot;,
Dan O'Mearadd494642020-05-01 07:42:23 -0700124 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700125 &quot;forwardingConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700126 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneForwardingConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700127 &quot;targetNameServers&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700128 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700129 &quot;forwardingPath&quot;: &quot;A String&quot;,
130 &quot;ipv4Address&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700131 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;.
132 },
133 ],
134 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700135 &quot;id&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700136 &quot;kind&quot;: &quot;dns#managedZone&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZone&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700137 &quot;labels&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700138 &quot;a_key&quot;: &quot;A String&quot;,
139 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700140 &quot;name&quot;: &quot;A String&quot;,
141 &quot;nameServerSet&quot;: &quot;A String&quot;,
142 &quot;nameServers&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700143 &quot;A String&quot;,
144 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700145 &quot;peeringConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700146 &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePeeringConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700147 &quot;targetNetwork&quot;: {
148 &quot;deactivateTime&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700149 &quot;kind&quot;: &quot;dns#managedZonePeeringConfigTargetNetwork&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePeeringConfigTargetNetwork&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700150 &quot;networkUrl&quot;: &quot;A String&quot;,
Dan O'Mearadd494642020-05-01 07:42:23 -0700151 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700152 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700153 &quot;privateVisibilityConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700154 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePrivateVisibilityConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700155 &quot;networks&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700156 {
157 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700158 &quot;networkUrl&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700159 },
160 ],
161 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700162 &quot;reverseLookupConfig&quot;: {
163 &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneReverseLookupConfig&quot;.
164 },
165 &quot;visibility&quot;: &quot;A String&quot;,
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700166}
167
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700168 clientOperationId: string, A parameter
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000169
170Returns:
171 An object of the form:
172
173 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700174 &quot;creationTime&quot;: &quot;A String&quot;,
175 &quot;description&quot;: &quot;A String&quot;,
176 &quot;dnsName&quot;: &quot;A String&quot;,
177 &quot;dnssecConfig&quot;: {
178 &quot;defaultKeySpecs&quot;: [
179 {
180 &quot;algorithm&quot;: &quot;A String&quot;,
181 &quot;keyLength&quot;: 42,
182 &quot;keyType&quot;: &quot;A String&quot;,
183 &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#dnsKeySpec&quot;.
184 },
185 ],
186 &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneDnsSecConfig&quot;.
187 &quot;nonExistence&quot;: &quot;A String&quot;,
188 &quot;state&quot;: &quot;A String&quot;,
189 },
190 &quot;forwardingConfig&quot;: {
191 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneForwardingConfig&quot;.
192 &quot;targetNameServers&quot;: [
193 {
194 &quot;forwardingPath&quot;: &quot;A String&quot;,
195 &quot;ipv4Address&quot;: &quot;A String&quot;,
196 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;.
197 },
198 ],
199 },
200 &quot;id&quot;: &quot;A String&quot;,
201 &quot;kind&quot;: &quot;dns#managedZone&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZone&quot;.
202 &quot;labels&quot;: {
203 &quot;a_key&quot;: &quot;A String&quot;,
204 },
205 &quot;name&quot;: &quot;A String&quot;,
206 &quot;nameServerSet&quot;: &quot;A String&quot;,
207 &quot;nameServers&quot;: [
208 &quot;A String&quot;,
209 ],
210 &quot;peeringConfig&quot;: {
211 &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePeeringConfig&quot;.
212 &quot;targetNetwork&quot;: {
213 &quot;deactivateTime&quot;: &quot;A String&quot;,
214 &quot;kind&quot;: &quot;dns#managedZonePeeringConfigTargetNetwork&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePeeringConfigTargetNetwork&quot;.
215 &quot;networkUrl&quot;: &quot;A String&quot;,
216 },
217 },
218 &quot;privateVisibilityConfig&quot;: {
219 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePrivateVisibilityConfig&quot;.
220 &quot;networks&quot;: [
221 {
222 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;.
223 &quot;networkUrl&quot;: &quot;A String&quot;,
224 },
225 ],
226 },
227 &quot;reverseLookupConfig&quot;: {
228 &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneReverseLookupConfig&quot;.
229 },
230 &quot;visibility&quot;: &quot;A String&quot;,
231 }</pre>
232</div>
233
234<div class="method">
235 <code class="details" id="delete">delete(project, managedZone, clientOperationId=None)</code>
236 <pre>
237
238Args:
239 project: string, A parameter (required)
240 managedZone: string, A parameter (required)
241 clientOperationId: string, A parameter
242</pre>
243</div>
244
245<div class="method">
246 <code class="details" id="get">get(project, managedZone, clientOperationId=None)</code>
247 <pre>
248
249Args:
250 project: string, A parameter (required)
251 managedZone: string, A parameter (required)
252 clientOperationId: string, A parameter
253
254Returns:
255 An object of the form:
256
257 {
258 &quot;creationTime&quot;: &quot;A String&quot;,
259 &quot;description&quot;: &quot;A String&quot;,
260 &quot;dnsName&quot;: &quot;A String&quot;,
261 &quot;dnssecConfig&quot;: {
262 &quot;defaultKeySpecs&quot;: [
263 {
264 &quot;algorithm&quot;: &quot;A String&quot;,
265 &quot;keyLength&quot;: 42,
266 &quot;keyType&quot;: &quot;A String&quot;,
267 &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#dnsKeySpec&quot;.
268 },
269 ],
270 &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneDnsSecConfig&quot;.
271 &quot;nonExistence&quot;: &quot;A String&quot;,
272 &quot;state&quot;: &quot;A String&quot;,
273 },
274 &quot;forwardingConfig&quot;: {
275 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneForwardingConfig&quot;.
276 &quot;targetNameServers&quot;: [
277 {
278 &quot;forwardingPath&quot;: &quot;A String&quot;,
279 &quot;ipv4Address&quot;: &quot;A String&quot;,
280 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;.
281 },
282 ],
283 },
284 &quot;id&quot;: &quot;A String&quot;,
285 &quot;kind&quot;: &quot;dns#managedZone&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZone&quot;.
286 &quot;labels&quot;: {
287 &quot;a_key&quot;: &quot;A String&quot;,
288 },
289 &quot;name&quot;: &quot;A String&quot;,
290 &quot;nameServerSet&quot;: &quot;A String&quot;,
291 &quot;nameServers&quot;: [
292 &quot;A String&quot;,
293 ],
294 &quot;peeringConfig&quot;: {
295 &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePeeringConfig&quot;.
296 &quot;targetNetwork&quot;: {
297 &quot;deactivateTime&quot;: &quot;A String&quot;,
298 &quot;kind&quot;: &quot;dns#managedZonePeeringConfigTargetNetwork&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePeeringConfigTargetNetwork&quot;.
299 &quot;networkUrl&quot;: &quot;A String&quot;,
300 },
301 },
302 &quot;privateVisibilityConfig&quot;: {
303 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePrivateVisibilityConfig&quot;.
304 &quot;networks&quot;: [
305 {
306 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;.
307 &quot;networkUrl&quot;: &quot;A String&quot;,
308 },
309 ],
310 },
311 &quot;reverseLookupConfig&quot;: {
312 &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneReverseLookupConfig&quot;.
313 },
314 &quot;visibility&quot;: &quot;A String&quot;,
315 }</pre>
316</div>
317
318<div class="method">
319 <code class="details" id="list">list(project, dnsName=None, maxResults=None, pageToken=None)</code>
320 <pre>
321
322Args:
323 project: string, A parameter (required)
324 dnsName: string, A parameter
325 maxResults: integer, A parameter
326 pageToken: string, A parameter
327
328Returns:
329 An object of the form:
330
331 {
332 &quot;header&quot;: {
333 &quot;operationId&quot;: &quot;A String&quot;,
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700334 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700335 &quot;kind&quot;: &quot;dns#managedZonesListResponse&quot;, # Type of resource.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700336 &quot;managedZones&quot;: [
337 {
338 &quot;creationTime&quot;: &quot;A String&quot;,
339 &quot;description&quot;: &quot;A String&quot;,
340 &quot;dnsName&quot;: &quot;A String&quot;,
341 &quot;dnssecConfig&quot;: {
342 &quot;defaultKeySpecs&quot;: [
343 {
344 &quot;algorithm&quot;: &quot;A String&quot;,
345 &quot;keyLength&quot;: 42,
346 &quot;keyType&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700347 &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#dnsKeySpec&quot;.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700348 },
349 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700350 &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneDnsSecConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700351 &quot;nonExistence&quot;: &quot;A String&quot;,
352 &quot;state&quot;: &quot;A String&quot;,
Dan O'Mearadd494642020-05-01 07:42:23 -0700353 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700354 &quot;forwardingConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700355 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneForwardingConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700356 &quot;targetNameServers&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700357 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700358 &quot;forwardingPath&quot;: &quot;A String&quot;,
359 &quot;ipv4Address&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700360 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;.
361 },
362 ],
363 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700364 &quot;id&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700365 &quot;kind&quot;: &quot;dns#managedZone&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZone&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700366 &quot;labels&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700367 &quot;a_key&quot;: &quot;A String&quot;,
368 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700369 &quot;name&quot;: &quot;A String&quot;,
370 &quot;nameServerSet&quot;: &quot;A String&quot;,
371 &quot;nameServers&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700372 &quot;A String&quot;,
373 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700374 &quot;peeringConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700375 &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePeeringConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700376 &quot;targetNetwork&quot;: {
377 &quot;deactivateTime&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700378 &quot;kind&quot;: &quot;dns#managedZonePeeringConfigTargetNetwork&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePeeringConfigTargetNetwork&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700379 &quot;networkUrl&quot;: &quot;A String&quot;,
Dan O'Mearadd494642020-05-01 07:42:23 -0700380 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700381 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700382 &quot;privateVisibilityConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700383 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePrivateVisibilityConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700384 &quot;networks&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700385 {
386 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700387 &quot;networkUrl&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700388 },
389 ],
390 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700391 &quot;reverseLookupConfig&quot;: {
392 &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneReverseLookupConfig&quot;.
393 },
394 &quot;visibility&quot;: &quot;A String&quot;,
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700395 },
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000396 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700397 &quot;nextPageToken&quot;: &quot;A String&quot;,
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000398 }</pre>
399</div>
400
401<div class="method">
402 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
403 <pre>Retrieves the next page of results.
404
405Args:
406 previous_request: The request for the previous page. (required)
407 previous_response: The response from the request for the previous page. (required)
408
409Returns:
Bu Sun Kim65020912020-05-20 12:08:20 -0700410 A request object that you can call &#x27;execute()&#x27; on to request the next
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000411 page. Returns None if there are no more items in the collection.
412 </pre>
413</div>
414
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700415<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700416 <code class="details" id="patch">patch(project, managedZone, body=None, clientOperationId=None)</code>
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700417 <pre>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700418
419Args:
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700420 project: string, A parameter (required)
421 managedZone: string, A parameter (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700422 body: object, The request body.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700423 The object takes the form of:
424
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700425{
426 &quot;creationTime&quot;: &quot;A String&quot;,
427 &quot;description&quot;: &quot;A String&quot;,
428 &quot;dnsName&quot;: &quot;A String&quot;,
429 &quot;dnssecConfig&quot;: {
430 &quot;defaultKeySpecs&quot;: [
431 {
432 &quot;algorithm&quot;: &quot;A String&quot;,
433 &quot;keyLength&quot;: 42,
434 &quot;keyType&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700435 &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#dnsKeySpec&quot;.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700436 },
437 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700438 &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneDnsSecConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700439 &quot;nonExistence&quot;: &quot;A String&quot;,
440 &quot;state&quot;: &quot;A String&quot;,
Dan O'Mearadd494642020-05-01 07:42:23 -0700441 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700442 &quot;forwardingConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700443 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneForwardingConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700444 &quot;targetNameServers&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700445 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700446 &quot;forwardingPath&quot;: &quot;A String&quot;,
447 &quot;ipv4Address&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700448 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;.
449 },
450 ],
451 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700452 &quot;id&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700453 &quot;kind&quot;: &quot;dns#managedZone&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZone&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700454 &quot;labels&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700455 &quot;a_key&quot;: &quot;A String&quot;,
456 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700457 &quot;name&quot;: &quot;A String&quot;,
458 &quot;nameServerSet&quot;: &quot;A String&quot;,
459 &quot;nameServers&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700460 &quot;A String&quot;,
461 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700462 &quot;peeringConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700463 &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePeeringConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700464 &quot;targetNetwork&quot;: {
465 &quot;deactivateTime&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700466 &quot;kind&quot;: &quot;dns#managedZonePeeringConfigTargetNetwork&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePeeringConfigTargetNetwork&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700467 &quot;networkUrl&quot;: &quot;A String&quot;,
Dan O'Mearadd494642020-05-01 07:42:23 -0700468 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700469 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700470 &quot;privateVisibilityConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700471 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePrivateVisibilityConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700472 &quot;networks&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700473 {
474 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700475 &quot;networkUrl&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700476 },
477 ],
478 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700479 &quot;reverseLookupConfig&quot;: {
480 &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneReverseLookupConfig&quot;.
481 },
482 &quot;visibility&quot;: &quot;A String&quot;,
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700483}
484
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700485 clientOperationId: string, A parameter
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700486
487Returns:
488 An object of the form:
489
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700490 {
491 &quot;dnsKeyContext&quot;: {
492 &quot;newValue&quot;: {
493 &quot;algorithm&quot;: &quot;A String&quot;,
494 &quot;creationTime&quot;: &quot;A String&quot;,
495 &quot;description&quot;: &quot;A String&quot;,
496 &quot;digests&quot;: [
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700497 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700498 &quot;digest&quot;: &quot;A String&quot;,
499 &quot;type&quot;: &quot;A String&quot;,
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700500 },
501 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700502 &quot;id&quot;: &quot;A String&quot;,
503 &quot;isActive&quot;: True or False,
504 &quot;keyLength&quot;: 42,
505 &quot;keyTag&quot;: 42,
Bu Sun Kim65020912020-05-20 12:08:20 -0700506 &quot;kind&quot;: &quot;dns#dnsKey&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#dnsKey&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700507 &quot;publicKey&quot;: &quot;A String&quot;,
508 &quot;type&quot;: &quot;A String&quot;,
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700509 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700510 &quot;oldValue&quot;: {
511 &quot;algorithm&quot;: &quot;A String&quot;,
512 &quot;creationTime&quot;: &quot;A String&quot;,
513 &quot;description&quot;: &quot;A String&quot;,
514 &quot;digests&quot;: [
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700515 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700516 &quot;digest&quot;: &quot;A String&quot;,
517 &quot;type&quot;: &quot;A String&quot;,
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700518 },
519 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700520 &quot;id&quot;: &quot;A String&quot;,
521 &quot;isActive&quot;: True or False,
522 &quot;keyLength&quot;: 42,
523 &quot;keyTag&quot;: 42,
Bu Sun Kim65020912020-05-20 12:08:20 -0700524 &quot;kind&quot;: &quot;dns#dnsKey&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#dnsKey&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700525 &quot;publicKey&quot;: &quot;A String&quot;,
526 &quot;type&quot;: &quot;A String&quot;,
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700527 },
528 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700529 &quot;id&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700530 &quot;kind&quot;: &quot;dns#operation&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#operation&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700531 &quot;startTime&quot;: &quot;A String&quot;,
532 &quot;status&quot;: &quot;A String&quot;,
533 &quot;type&quot;: &quot;A String&quot;,
534 &quot;user&quot;: &quot;A String&quot;,
535 &quot;zoneContext&quot;: {
536 &quot;newValue&quot;: {
537 &quot;creationTime&quot;: &quot;A String&quot;,
538 &quot;description&quot;: &quot;A String&quot;,
539 &quot;dnsName&quot;: &quot;A String&quot;,
540 &quot;dnssecConfig&quot;: {
541 &quot;defaultKeySpecs&quot;: [
542 {
543 &quot;algorithm&quot;: &quot;A String&quot;,
544 &quot;keyLength&quot;: 42,
545 &quot;keyType&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700546 &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#dnsKeySpec&quot;.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700547 },
548 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700549 &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneDnsSecConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700550 &quot;nonExistence&quot;: &quot;A String&quot;,
551 &quot;state&quot;: &quot;A String&quot;,
Dan O'Mearadd494642020-05-01 07:42:23 -0700552 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700553 &quot;forwardingConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700554 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneForwardingConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700555 &quot;targetNameServers&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700556 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700557 &quot;forwardingPath&quot;: &quot;A String&quot;,
558 &quot;ipv4Address&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700559 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;.
560 },
561 ],
562 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700563 &quot;id&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700564 &quot;kind&quot;: &quot;dns#managedZone&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZone&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700565 &quot;labels&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700566 &quot;a_key&quot;: &quot;A String&quot;,
567 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700568 &quot;name&quot;: &quot;A String&quot;,
569 &quot;nameServerSet&quot;: &quot;A String&quot;,
570 &quot;nameServers&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700571 &quot;A String&quot;,
572 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700573 &quot;peeringConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700574 &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePeeringConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700575 &quot;targetNetwork&quot;: {
576 &quot;deactivateTime&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700577 &quot;kind&quot;: &quot;dns#managedZonePeeringConfigTargetNetwork&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePeeringConfigTargetNetwork&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700578 &quot;networkUrl&quot;: &quot;A String&quot;,
Dan O'Mearadd494642020-05-01 07:42:23 -0700579 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700580 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700581 &quot;privateVisibilityConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700582 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePrivateVisibilityConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700583 &quot;networks&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700584 {
585 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700586 &quot;networkUrl&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700587 },
588 ],
589 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700590 &quot;reverseLookupConfig&quot;: {
591 &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneReverseLookupConfig&quot;.
592 },
593 &quot;visibility&quot;: &quot;A String&quot;,
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700594 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700595 &quot;oldValue&quot;: {
596 &quot;creationTime&quot;: &quot;A String&quot;,
597 &quot;description&quot;: &quot;A String&quot;,
598 &quot;dnsName&quot;: &quot;A String&quot;,
599 &quot;dnssecConfig&quot;: {
600 &quot;defaultKeySpecs&quot;: [
601 {
602 &quot;algorithm&quot;: &quot;A String&quot;,
603 &quot;keyLength&quot;: 42,
604 &quot;keyType&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700605 &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#dnsKeySpec&quot;.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700606 },
607 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700608 &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneDnsSecConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700609 &quot;nonExistence&quot;: &quot;A String&quot;,
610 &quot;state&quot;: &quot;A String&quot;,
Dan O'Mearadd494642020-05-01 07:42:23 -0700611 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700612 &quot;forwardingConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700613 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneForwardingConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700614 &quot;targetNameServers&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700615 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700616 &quot;forwardingPath&quot;: &quot;A String&quot;,
617 &quot;ipv4Address&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700618 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;.
619 },
620 ],
621 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700622 &quot;id&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700623 &quot;kind&quot;: &quot;dns#managedZone&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZone&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700624 &quot;labels&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700625 &quot;a_key&quot;: &quot;A String&quot;,
626 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700627 &quot;name&quot;: &quot;A String&quot;,
628 &quot;nameServerSet&quot;: &quot;A String&quot;,
629 &quot;nameServers&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700630 &quot;A String&quot;,
631 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700632 &quot;peeringConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700633 &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePeeringConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700634 &quot;targetNetwork&quot;: {
635 &quot;deactivateTime&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700636 &quot;kind&quot;: &quot;dns#managedZonePeeringConfigTargetNetwork&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePeeringConfigTargetNetwork&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700637 &quot;networkUrl&quot;: &quot;A String&quot;,
Dan O'Mearadd494642020-05-01 07:42:23 -0700638 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700639 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700640 &quot;privateVisibilityConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700641 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePrivateVisibilityConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700642 &quot;networks&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700643 {
644 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700645 &quot;networkUrl&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700646 },
647 ],
648 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700649 &quot;reverseLookupConfig&quot;: {
650 &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneReverseLookupConfig&quot;.
651 },
652 &quot;visibility&quot;: &quot;A String&quot;,
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700653 },
654 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700655 }</pre>
656</div>
657
658<div class="method">
Dan O'Mearadd494642020-05-01 07:42:23 -0700659 <code class="details" id="update">update(project, managedZone, body=None, clientOperationId=None)</code>
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700660 <pre>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700661
662Args:
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700663 project: string, A parameter (required)
664 managedZone: string, A parameter (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700665 body: object, The request body.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700666 The object takes the form of:
667
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700668{
669 &quot;creationTime&quot;: &quot;A String&quot;,
670 &quot;description&quot;: &quot;A String&quot;,
671 &quot;dnsName&quot;: &quot;A String&quot;,
672 &quot;dnssecConfig&quot;: {
673 &quot;defaultKeySpecs&quot;: [
674 {
675 &quot;algorithm&quot;: &quot;A String&quot;,
676 &quot;keyLength&quot;: 42,
677 &quot;keyType&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700678 &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#dnsKeySpec&quot;.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700679 },
680 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700681 &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneDnsSecConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700682 &quot;nonExistence&quot;: &quot;A String&quot;,
683 &quot;state&quot;: &quot;A String&quot;,
Dan O'Mearadd494642020-05-01 07:42:23 -0700684 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700685 &quot;forwardingConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700686 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneForwardingConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700687 &quot;targetNameServers&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700688 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700689 &quot;forwardingPath&quot;: &quot;A String&quot;,
690 &quot;ipv4Address&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700691 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;.
692 },
693 ],
694 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700695 &quot;id&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700696 &quot;kind&quot;: &quot;dns#managedZone&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZone&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700697 &quot;labels&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700698 &quot;a_key&quot;: &quot;A String&quot;,
699 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700700 &quot;name&quot;: &quot;A String&quot;,
701 &quot;nameServerSet&quot;: &quot;A String&quot;,
702 &quot;nameServers&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700703 &quot;A String&quot;,
704 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700705 &quot;peeringConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700706 &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePeeringConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700707 &quot;targetNetwork&quot;: {
708 &quot;deactivateTime&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700709 &quot;kind&quot;: &quot;dns#managedZonePeeringConfigTargetNetwork&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePeeringConfigTargetNetwork&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700710 &quot;networkUrl&quot;: &quot;A String&quot;,
Dan O'Mearadd494642020-05-01 07:42:23 -0700711 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700712 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700713 &quot;privateVisibilityConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700714 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePrivateVisibilityConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700715 &quot;networks&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700716 {
717 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700718 &quot;networkUrl&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700719 },
720 ],
721 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700722 &quot;reverseLookupConfig&quot;: {
723 &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneReverseLookupConfig&quot;.
724 },
725 &quot;visibility&quot;: &quot;A String&quot;,
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700726}
727
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700728 clientOperationId: string, A parameter
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700729
730Returns:
731 An object of the form:
732
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700733 {
734 &quot;dnsKeyContext&quot;: {
735 &quot;newValue&quot;: {
736 &quot;algorithm&quot;: &quot;A String&quot;,
737 &quot;creationTime&quot;: &quot;A String&quot;,
738 &quot;description&quot;: &quot;A String&quot;,
739 &quot;digests&quot;: [
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700740 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700741 &quot;digest&quot;: &quot;A String&quot;,
742 &quot;type&quot;: &quot;A String&quot;,
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700743 },
744 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700745 &quot;id&quot;: &quot;A String&quot;,
746 &quot;isActive&quot;: True or False,
747 &quot;keyLength&quot;: 42,
748 &quot;keyTag&quot;: 42,
Bu Sun Kim65020912020-05-20 12:08:20 -0700749 &quot;kind&quot;: &quot;dns#dnsKey&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#dnsKey&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700750 &quot;publicKey&quot;: &quot;A String&quot;,
751 &quot;type&quot;: &quot;A String&quot;,
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700752 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700753 &quot;oldValue&quot;: {
754 &quot;algorithm&quot;: &quot;A String&quot;,
755 &quot;creationTime&quot;: &quot;A String&quot;,
756 &quot;description&quot;: &quot;A String&quot;,
757 &quot;digests&quot;: [
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700758 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700759 &quot;digest&quot;: &quot;A String&quot;,
760 &quot;type&quot;: &quot;A String&quot;,
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700761 },
762 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700763 &quot;id&quot;: &quot;A String&quot;,
764 &quot;isActive&quot;: True or False,
765 &quot;keyLength&quot;: 42,
766 &quot;keyTag&quot;: 42,
Bu Sun Kim65020912020-05-20 12:08:20 -0700767 &quot;kind&quot;: &quot;dns#dnsKey&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#dnsKey&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700768 &quot;publicKey&quot;: &quot;A String&quot;,
769 &quot;type&quot;: &quot;A String&quot;,
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700770 },
771 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700772 &quot;id&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700773 &quot;kind&quot;: &quot;dns#operation&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#operation&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700774 &quot;startTime&quot;: &quot;A String&quot;,
775 &quot;status&quot;: &quot;A String&quot;,
776 &quot;type&quot;: &quot;A String&quot;,
777 &quot;user&quot;: &quot;A String&quot;,
778 &quot;zoneContext&quot;: {
779 &quot;newValue&quot;: {
780 &quot;creationTime&quot;: &quot;A String&quot;,
781 &quot;description&quot;: &quot;A String&quot;,
782 &quot;dnsName&quot;: &quot;A String&quot;,
783 &quot;dnssecConfig&quot;: {
784 &quot;defaultKeySpecs&quot;: [
785 {
786 &quot;algorithm&quot;: &quot;A String&quot;,
787 &quot;keyLength&quot;: 42,
788 &quot;keyType&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700789 &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#dnsKeySpec&quot;.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700790 },
791 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700792 &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneDnsSecConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700793 &quot;nonExistence&quot;: &quot;A String&quot;,
794 &quot;state&quot;: &quot;A String&quot;,
Dan O'Mearadd494642020-05-01 07:42:23 -0700795 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700796 &quot;forwardingConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700797 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneForwardingConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700798 &quot;targetNameServers&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700799 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700800 &quot;forwardingPath&quot;: &quot;A String&quot;,
801 &quot;ipv4Address&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700802 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;.
803 },
804 ],
805 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700806 &quot;id&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700807 &quot;kind&quot;: &quot;dns#managedZone&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZone&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700808 &quot;labels&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700809 &quot;a_key&quot;: &quot;A String&quot;,
810 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700811 &quot;name&quot;: &quot;A String&quot;,
812 &quot;nameServerSet&quot;: &quot;A String&quot;,
813 &quot;nameServers&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700814 &quot;A String&quot;,
815 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700816 &quot;peeringConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700817 &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePeeringConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700818 &quot;targetNetwork&quot;: {
819 &quot;deactivateTime&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700820 &quot;kind&quot;: &quot;dns#managedZonePeeringConfigTargetNetwork&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePeeringConfigTargetNetwork&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700821 &quot;networkUrl&quot;: &quot;A String&quot;,
Dan O'Mearadd494642020-05-01 07:42:23 -0700822 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700823 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700824 &quot;privateVisibilityConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700825 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePrivateVisibilityConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700826 &quot;networks&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700827 {
828 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700829 &quot;networkUrl&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700830 },
831 ],
832 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700833 &quot;reverseLookupConfig&quot;: {
834 &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneReverseLookupConfig&quot;.
835 },
836 &quot;visibility&quot;: &quot;A String&quot;,
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700837 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700838 &quot;oldValue&quot;: {
839 &quot;creationTime&quot;: &quot;A String&quot;,
840 &quot;description&quot;: &quot;A String&quot;,
841 &quot;dnsName&quot;: &quot;A String&quot;,
842 &quot;dnssecConfig&quot;: {
843 &quot;defaultKeySpecs&quot;: [
844 {
845 &quot;algorithm&quot;: &quot;A String&quot;,
846 &quot;keyLength&quot;: 42,
847 &quot;keyType&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700848 &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#dnsKeySpec&quot;.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700849 },
850 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700851 &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneDnsSecConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700852 &quot;nonExistence&quot;: &quot;A String&quot;,
853 &quot;state&quot;: &quot;A String&quot;,
Dan O'Mearadd494642020-05-01 07:42:23 -0700854 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700855 &quot;forwardingConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700856 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneForwardingConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700857 &quot;targetNameServers&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700858 {
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700859 &quot;forwardingPath&quot;: &quot;A String&quot;,
860 &quot;ipv4Address&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700861 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;.
862 },
863 ],
864 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700865 &quot;id&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700866 &quot;kind&quot;: &quot;dns#managedZone&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZone&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700867 &quot;labels&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700868 &quot;a_key&quot;: &quot;A String&quot;,
869 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700870 &quot;name&quot;: &quot;A String&quot;,
871 &quot;nameServerSet&quot;: &quot;A String&quot;,
872 &quot;nameServers&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700873 &quot;A String&quot;,
874 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700875 &quot;peeringConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700876 &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePeeringConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700877 &quot;targetNetwork&quot;: {
878 &quot;deactivateTime&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700879 &quot;kind&quot;: &quot;dns#managedZonePeeringConfigTargetNetwork&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePeeringConfigTargetNetwork&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700880 &quot;networkUrl&quot;: &quot;A String&quot;,
Dan O'Mearadd494642020-05-01 07:42:23 -0700881 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700882 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700883 &quot;privateVisibilityConfig&quot;: {
Bu Sun Kim65020912020-05-20 12:08:20 -0700884 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePrivateVisibilityConfig&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700885 &quot;networks&quot;: [
Bu Sun Kim65020912020-05-20 12:08:20 -0700886 {
887 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700888 &quot;networkUrl&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700889 },
890 ],
891 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700892 &quot;reverseLookupConfig&quot;: {
893 &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;dns#managedZoneReverseLookupConfig&quot;.
894 },
895 &quot;visibility&quot;: &quot;A String&quot;,
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700896 },
897 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700898 }</pre>
899</div>
900
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000901</body></html>