1<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_v1beta2.html">Cloud DNS API</a> . <a href="dns_v1beta2.managedZones.html">managedZones</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78  <code><a href="#close">close()</a></code></p>
79<p class="firstline">Close httplib2 connections.</p>
80<p class="toc_element">
81  <code><a href="#create">create(project, body=None, clientOperationId=None, x__xgafv=None)</a></code></p>
82<p class="firstline">Creates a new ManagedZone.</p>
83<p class="toc_element">
84  <code><a href="#delete">delete(project, managedZone, clientOperationId=None, x__xgafv=None)</a></code></p>
85<p class="firstline">Deletes a previously created ManagedZone.</p>
86<p class="toc_element">
87  <code><a href="#get">get(project, managedZone, clientOperationId=None, x__xgafv=None)</a></code></p>
88<p class="firstline">Fetches the representation of an existing ManagedZone.</p>
89<p class="toc_element">
90  <code><a href="#list">list(project, dnsName=None, maxResults=None, pageToken=None, x__xgafv=None)</a></code></p>
91<p class="firstline">Enumerates ManagedZones that have been created but not yet deleted.</p>
92<p class="toc_element">
93  <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
94<p class="firstline">Retrieves the next page of results.</p>
95<p class="toc_element">
96  <code><a href="#patch">patch(project, managedZone, body=None, clientOperationId=None, x__xgafv=None)</a></code></p>
97<p class="firstline">Applies a partial update to an existing ManagedZone.</p>
98<p class="toc_element">
99  <code><a href="#update">update(project, managedZone, body=None, clientOperationId=None, x__xgafv=None)</a></code></p>
100<p class="firstline">Updates an existing ManagedZone.</p>
101<h3>Method Details</h3>
102<div class="method">
103    <code class="details" id="close">close()</code>
104  <pre>Close httplib2 connections.</pre>
105</div>
106
107<div class="method">
108    <code class="details" id="create">create(project, body=None, clientOperationId=None, x__xgafv=None)</code>
109  <pre>Creates a new ManagedZone.
110
111Args:
112  project: string, Identifies the project addressed by this request. (required)
113  body: object, The request body.
114    The object takes the form of:
115
116{ # A zone is a subtree of the DNS namespace under one administrative responsibility. A ManagedZone is a resource that represents a DNS zone hosted by the Cloud DNS service.
117  &quot;cloudLoggingConfig&quot;: { # Cloud Logging configurations for publicly visible zones.
118    &quot;enableLogging&quot;: True or False, # If set, enable query logging for this ManagedZone. False by default, making logging opt-in.
119    &quot;kind&quot;: &quot;dns#managedZoneCloudLoggingConfig&quot;,
120  },
121  &quot;creationTime&quot;: &quot;A String&quot;, # The time that this resource was created on the server. This is in RFC3339 text format. Output only.
122  &quot;description&quot;: &quot;A String&quot;, # A mutable string of at most 1024 characters associated with this resource for the user&#x27;s convenience. Has no effect on the managed zone&#x27;s function.
123  &quot;dnsName&quot;: &quot;A String&quot;, # The DNS name of this managed zone, for instance &quot;example.com.&quot;.
124  &quot;dnssecConfig&quot;: { # DNSSEC configuration.
125    &quot;defaultKeySpecs&quot;: [ # Specifies parameters for generating initial DnsKeys for this ManagedZone. Can only be changed while the state is OFF.
126      { # Parameters for DnsKey key generation. Used for generating initial keys for a new ManagedZone and as default when adding a new DnsKey.
127        &quot;algorithm&quot;: &quot;A String&quot;, # String mnemonic specifying the DNSSEC algorithm of this key.
128        &quot;keyLength&quot;: 42, # Length of the keys in bits.
129        &quot;keyType&quot;: &quot;A String&quot;, # Specifies whether this is a key signing key (KSK) or a zone signing key (ZSK). Key signing keys have the Secure Entry Point flag set and, when active, are only used to sign resource record sets of type DNSKEY. Zone signing keys do not have the Secure Entry Point flag set and are used to sign all other types of resource record sets.
130        &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;,
131      },
132    ],
133    &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;,
134    &quot;nonExistence&quot;: &quot;A String&quot;, # Specifies the mechanism for authenticated denial-of-existence responses. Can only be changed while the state is OFF.
135    &quot;state&quot;: &quot;A String&quot;, # Specifies whether DNSSEC is enabled, and what mode it is in.
136  },
137  &quot;forwardingConfig&quot;: { # The presence for this field indicates that outbound forwarding is enabled for this zone. The value of this field contains the set of destinations to forward to.
138    &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;,
139    &quot;targetNameServers&quot;: [ # List of target name servers to forward to. Cloud DNS selects the best available name server if more than one target is given.
140      {
141        &quot;forwardingPath&quot;: &quot;A String&quot;, # Forwarding path for this NameServerTarget. If unset or set to DEFAULT, Cloud DNS makes forwarding decisions based on IP address ranges; that is, RFC1918 addresses go to the VPC network, non-RFC1918 addresses go to the internet. When set to PRIVATE, Cloud DNS always sends queries through the VPC network for this target.
142        &quot;ipv4Address&quot;: &quot;A String&quot;, # IPv4 address of a target name server.
143        &quot;ipv6Address&quot;: &quot;A String&quot;, # IPv6 address of a target name server. Does not accept both fields (ipv4 &amp; ipv6) being populated.
144        &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;,
145      },
146    ],
147  },
148  &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only)
149  &quot;kind&quot;: &quot;dns#managedZone&quot;,
150  &quot;labels&quot;: { # User labels.
151    &quot;a_key&quot;: &quot;A String&quot;,
152  },
153  &quot;name&quot;: &quot;A String&quot;, # User assigned name for this resource. Must be unique within the project. The name must be 1-63 characters long, must begin with a letter, end with a letter or digit, and only contain lowercase letters, digits or dashes.
154  &quot;nameServerSet&quot;: &quot;A String&quot;, # Optionally specifies the NameServerSet for this ManagedZone. A NameServerSet is a set of DNS name servers that all host the same ManagedZones. Most users leave this field unset. If you need to use this field, contact your account team.
155  &quot;nameServers&quot;: [ # Delegate your managed_zone to these virtual name servers; defined by the server (output only)
156    &quot;A String&quot;,
157  ],
158  &quot;peeringConfig&quot;: { # The presence of this field indicates that DNS Peering is enabled for this zone. The value of this field contains the network to peer with.
159    &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;,
160    &quot;targetNetwork&quot;: { # The network with which to peer.
161      &quot;deactivateTime&quot;: &quot;A String&quot;, # The time at which the zone was deactivated, in RFC 3339 date-time format. An empty string indicates that the peering connection is active. The producer network can deactivate a zone. The zone is automatically deactivated if the producer network that the zone targeted is deleted. Output only.
162      &quot;kind&quot;: &quot;dns#managedZonePeeringConfigTargetNetwork&quot;,
163      &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to forward queries to. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
164    },
165  },
166  &quot;privateVisibilityConfig&quot;: { # For privately visible zones, the set of Virtual Private Cloud resources that the zone is visible from.
167    &quot;gkeClusters&quot;: [ # The list of Google Kubernetes Engine clusters that can see this zone.
168      {
169        &quot;gkeClusterName&quot;: &quot;A String&quot;, # The resource name of the cluster to bind this ManagedZone to. This should be specified in the format like: projects/*/locations/*/clusters/*. This is referenced from GKE projects.locations.clusters.get API: https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.locations.clusters/get
170        &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigGKECluster&quot;,
171      },
172    ],
173    &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;,
174    &quot;networks&quot;: [ # The list of VPC networks that can see this zone.
175      {
176        &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;,
177        &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to bind to. Format this URL like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
178      },
179    ],
180  },
181  &quot;reverseLookupConfig&quot;: { # The presence of this field indicates that this is a managed reverse lookup zone and Cloud DNS resolves reverse lookup queries using automatically configured records for VPC resources. This only applies to networks listed under private_visibility_config.
182    &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;,
183  },
184  &quot;serviceDirectoryConfig&quot;: { # Contains information about Service Directory-backed zones. # This field links to the associated service directory namespace. Do not set this field for public zones or forwarding zones.
185    &quot;kind&quot;: &quot;dns#managedZoneServiceDirectoryConfig&quot;,
186    &quot;namespace&quot;: { # Contains information about the namespace associated with the zone.
187      &quot;deletionTime&quot;: &quot;A String&quot;, # The time that the namespace backing this zone was deleted; an empty string if it still exists. This is in RFC3339 text format. Output only.
188      &quot;kind&quot;: &quot;dns#managedZoneServiceDirectoryConfigNamespace&quot;,
189      &quot;namespaceUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the namespace associated with the zone. Format must be https://servicedirectory.googleapis.com/v1/projects/{project}/locations/{location}/namespaces/{namespace}
190    },
191  },
192  &quot;visibility&quot;: &quot;A String&quot;, # The zone&#x27;s visibility: public zones are exposed to the Internet, while private zones are visible only to Virtual Private Cloud resources.
193}
194
195  clientOperationId: string, For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection.
196  x__xgafv: string, V1 error format.
197    Allowed values
198      1 - v1 error format
199      2 - v2 error format
200
201Returns:
202  An object of the form:
203
204    { # A zone is a subtree of the DNS namespace under one administrative responsibility. A ManagedZone is a resource that represents a DNS zone hosted by the Cloud DNS service.
205  &quot;cloudLoggingConfig&quot;: { # Cloud Logging configurations for publicly visible zones.
206    &quot;enableLogging&quot;: True or False, # If set, enable query logging for this ManagedZone. False by default, making logging opt-in.
207    &quot;kind&quot;: &quot;dns#managedZoneCloudLoggingConfig&quot;,
208  },
209  &quot;creationTime&quot;: &quot;A String&quot;, # The time that this resource was created on the server. This is in RFC3339 text format. Output only.
210  &quot;description&quot;: &quot;A String&quot;, # A mutable string of at most 1024 characters associated with this resource for the user&#x27;s convenience. Has no effect on the managed zone&#x27;s function.
211  &quot;dnsName&quot;: &quot;A String&quot;, # The DNS name of this managed zone, for instance &quot;example.com.&quot;.
212  &quot;dnssecConfig&quot;: { # DNSSEC configuration.
213    &quot;defaultKeySpecs&quot;: [ # Specifies parameters for generating initial DnsKeys for this ManagedZone. Can only be changed while the state is OFF.
214      { # Parameters for DnsKey key generation. Used for generating initial keys for a new ManagedZone and as default when adding a new DnsKey.
215        &quot;algorithm&quot;: &quot;A String&quot;, # String mnemonic specifying the DNSSEC algorithm of this key.
216        &quot;keyLength&quot;: 42, # Length of the keys in bits.
217        &quot;keyType&quot;: &quot;A String&quot;, # Specifies whether this is a key signing key (KSK) or a zone signing key (ZSK). Key signing keys have the Secure Entry Point flag set and, when active, are only used to sign resource record sets of type DNSKEY. Zone signing keys do not have the Secure Entry Point flag set and are used to sign all other types of resource record sets.
218        &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;,
219      },
220    ],
221    &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;,
222    &quot;nonExistence&quot;: &quot;A String&quot;, # Specifies the mechanism for authenticated denial-of-existence responses. Can only be changed while the state is OFF.
223    &quot;state&quot;: &quot;A String&quot;, # Specifies whether DNSSEC is enabled, and what mode it is in.
224  },
225  &quot;forwardingConfig&quot;: { # The presence for this field indicates that outbound forwarding is enabled for this zone. The value of this field contains the set of destinations to forward to.
226    &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;,
227    &quot;targetNameServers&quot;: [ # List of target name servers to forward to. Cloud DNS selects the best available name server if more than one target is given.
228      {
229        &quot;forwardingPath&quot;: &quot;A String&quot;, # Forwarding path for this NameServerTarget. If unset or set to DEFAULT, Cloud DNS makes forwarding decisions based on IP address ranges; that is, RFC1918 addresses go to the VPC network, non-RFC1918 addresses go to the internet. When set to PRIVATE, Cloud DNS always sends queries through the VPC network for this target.
230        &quot;ipv4Address&quot;: &quot;A String&quot;, # IPv4 address of a target name server.
231        &quot;ipv6Address&quot;: &quot;A String&quot;, # IPv6 address of a target name server. Does not accept both fields (ipv4 &amp; ipv6) being populated.
232        &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;,
233      },
234    ],
235  },
236  &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only)
237  &quot;kind&quot;: &quot;dns#managedZone&quot;,
238  &quot;labels&quot;: { # User labels.
239    &quot;a_key&quot;: &quot;A String&quot;,
240  },
241  &quot;name&quot;: &quot;A String&quot;, # User assigned name for this resource. Must be unique within the project. The name must be 1-63 characters long, must begin with a letter, end with a letter or digit, and only contain lowercase letters, digits or dashes.
242  &quot;nameServerSet&quot;: &quot;A String&quot;, # Optionally specifies the NameServerSet for this ManagedZone. A NameServerSet is a set of DNS name servers that all host the same ManagedZones. Most users leave this field unset. If you need to use this field, contact your account team.
243  &quot;nameServers&quot;: [ # Delegate your managed_zone to these virtual name servers; defined by the server (output only)
244    &quot;A String&quot;,
245  ],
246  &quot;peeringConfig&quot;: { # The presence of this field indicates that DNS Peering is enabled for this zone. The value of this field contains the network to peer with.
247    &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;,
248    &quot;targetNetwork&quot;: { # The network with which to peer.
249      &quot;deactivateTime&quot;: &quot;A String&quot;, # The time at which the zone was deactivated, in RFC 3339 date-time format. An empty string indicates that the peering connection is active. The producer network can deactivate a zone. The zone is automatically deactivated if the producer network that the zone targeted is deleted. Output only.
250      &quot;kind&quot;: &quot;dns#managedZonePeeringConfigTargetNetwork&quot;,
251      &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to forward queries to. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
252    },
253  },
254  &quot;privateVisibilityConfig&quot;: { # For privately visible zones, the set of Virtual Private Cloud resources that the zone is visible from.
255    &quot;gkeClusters&quot;: [ # The list of Google Kubernetes Engine clusters that can see this zone.
256      {
257        &quot;gkeClusterName&quot;: &quot;A String&quot;, # The resource name of the cluster to bind this ManagedZone to. This should be specified in the format like: projects/*/locations/*/clusters/*. This is referenced from GKE projects.locations.clusters.get API: https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.locations.clusters/get
258        &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigGKECluster&quot;,
259      },
260    ],
261    &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;,
262    &quot;networks&quot;: [ # The list of VPC networks that can see this zone.
263      {
264        &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;,
265        &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to bind to. Format this URL like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
266      },
267    ],
268  },
269  &quot;reverseLookupConfig&quot;: { # The presence of this field indicates that this is a managed reverse lookup zone and Cloud DNS resolves reverse lookup queries using automatically configured records for VPC resources. This only applies to networks listed under private_visibility_config.
270    &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;,
271  },
272  &quot;serviceDirectoryConfig&quot;: { # Contains information about Service Directory-backed zones. # This field links to the associated service directory namespace. Do not set this field for public zones or forwarding zones.
273    &quot;kind&quot;: &quot;dns#managedZoneServiceDirectoryConfig&quot;,
274    &quot;namespace&quot;: { # Contains information about the namespace associated with the zone.
275      &quot;deletionTime&quot;: &quot;A String&quot;, # The time that the namespace backing this zone was deleted; an empty string if it still exists. This is in RFC3339 text format. Output only.
276      &quot;kind&quot;: &quot;dns#managedZoneServiceDirectoryConfigNamespace&quot;,
277      &quot;namespaceUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the namespace associated with the zone. Format must be https://servicedirectory.googleapis.com/v1/projects/{project}/locations/{location}/namespaces/{namespace}
278    },
279  },
280  &quot;visibility&quot;: &quot;A String&quot;, # The zone&#x27;s visibility: public zones are exposed to the Internet, while private zones are visible only to Virtual Private Cloud resources.
281}</pre>
282</div>
283
284<div class="method">
285    <code class="details" id="delete">delete(project, managedZone, clientOperationId=None, x__xgafv=None)</code>
286  <pre>Deletes a previously created ManagedZone.
287
288Args:
289  project: string, Identifies the project addressed by this request. (required)
290  managedZone: string, Identifies the managed zone addressed by this request. Can be the managed zone name or ID. (required)
291  clientOperationId: string, For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection.
292  x__xgafv: string, V1 error format.
293    Allowed values
294      1 - v1 error format
295      2 - v2 error format
296</pre>
297</div>
298
299<div class="method">
300    <code class="details" id="get">get(project, managedZone, clientOperationId=None, x__xgafv=None)</code>
301  <pre>Fetches the representation of an existing ManagedZone.
302
303Args:
304  project: string, Identifies the project addressed by this request. (required)
305  managedZone: string, Identifies the managed zone addressed by this request. Can be the managed zone name or ID. (required)
306  clientOperationId: string, For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection.
307  x__xgafv: string, V1 error format.
308    Allowed values
309      1 - v1 error format
310      2 - v2 error format
311
312Returns:
313  An object of the form:
314
315    { # A zone is a subtree of the DNS namespace under one administrative responsibility. A ManagedZone is a resource that represents a DNS zone hosted by the Cloud DNS service.
316  &quot;cloudLoggingConfig&quot;: { # Cloud Logging configurations for publicly visible zones.
317    &quot;enableLogging&quot;: True or False, # If set, enable query logging for this ManagedZone. False by default, making logging opt-in.
318    &quot;kind&quot;: &quot;dns#managedZoneCloudLoggingConfig&quot;,
319  },
320  &quot;creationTime&quot;: &quot;A String&quot;, # The time that this resource was created on the server. This is in RFC3339 text format. Output only.
321  &quot;description&quot;: &quot;A String&quot;, # A mutable string of at most 1024 characters associated with this resource for the user&#x27;s convenience. Has no effect on the managed zone&#x27;s function.
322  &quot;dnsName&quot;: &quot;A String&quot;, # The DNS name of this managed zone, for instance &quot;example.com.&quot;.
323  &quot;dnssecConfig&quot;: { # DNSSEC configuration.
324    &quot;defaultKeySpecs&quot;: [ # Specifies parameters for generating initial DnsKeys for this ManagedZone. Can only be changed while the state is OFF.
325      { # Parameters for DnsKey key generation. Used for generating initial keys for a new ManagedZone and as default when adding a new DnsKey.
326        &quot;algorithm&quot;: &quot;A String&quot;, # String mnemonic specifying the DNSSEC algorithm of this key.
327        &quot;keyLength&quot;: 42, # Length of the keys in bits.
328        &quot;keyType&quot;: &quot;A String&quot;, # Specifies whether this is a key signing key (KSK) or a zone signing key (ZSK). Key signing keys have the Secure Entry Point flag set and, when active, are only used to sign resource record sets of type DNSKEY. Zone signing keys do not have the Secure Entry Point flag set and are used to sign all other types of resource record sets.
329        &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;,
330      },
331    ],
332    &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;,
333    &quot;nonExistence&quot;: &quot;A String&quot;, # Specifies the mechanism for authenticated denial-of-existence responses. Can only be changed while the state is OFF.
334    &quot;state&quot;: &quot;A String&quot;, # Specifies whether DNSSEC is enabled, and what mode it is in.
335  },
336  &quot;forwardingConfig&quot;: { # The presence for this field indicates that outbound forwarding is enabled for this zone. The value of this field contains the set of destinations to forward to.
337    &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;,
338    &quot;targetNameServers&quot;: [ # List of target name servers to forward to. Cloud DNS selects the best available name server if more than one target is given.
339      {
340        &quot;forwardingPath&quot;: &quot;A String&quot;, # Forwarding path for this NameServerTarget. If unset or set to DEFAULT, Cloud DNS makes forwarding decisions based on IP address ranges; that is, RFC1918 addresses go to the VPC network, non-RFC1918 addresses go to the internet. When set to PRIVATE, Cloud DNS always sends queries through the VPC network for this target.
341        &quot;ipv4Address&quot;: &quot;A String&quot;, # IPv4 address of a target name server.
342        &quot;ipv6Address&quot;: &quot;A String&quot;, # IPv6 address of a target name server. Does not accept both fields (ipv4 &amp; ipv6) being populated.
343        &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;,
344      },
345    ],
346  },
347  &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only)
348  &quot;kind&quot;: &quot;dns#managedZone&quot;,
349  &quot;labels&quot;: { # User labels.
350    &quot;a_key&quot;: &quot;A String&quot;,
351  },
352  &quot;name&quot;: &quot;A String&quot;, # User assigned name for this resource. Must be unique within the project. The name must be 1-63 characters long, must begin with a letter, end with a letter or digit, and only contain lowercase letters, digits or dashes.
353  &quot;nameServerSet&quot;: &quot;A String&quot;, # Optionally specifies the NameServerSet for this ManagedZone. A NameServerSet is a set of DNS name servers that all host the same ManagedZones. Most users leave this field unset. If you need to use this field, contact your account team.
354  &quot;nameServers&quot;: [ # Delegate your managed_zone to these virtual name servers; defined by the server (output only)
355    &quot;A String&quot;,
356  ],
357  &quot;peeringConfig&quot;: { # The presence of this field indicates that DNS Peering is enabled for this zone. The value of this field contains the network to peer with.
358    &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;,
359    &quot;targetNetwork&quot;: { # The network with which to peer.
360      &quot;deactivateTime&quot;: &quot;A String&quot;, # The time at which the zone was deactivated, in RFC 3339 date-time format. An empty string indicates that the peering connection is active. The producer network can deactivate a zone. The zone is automatically deactivated if the producer network that the zone targeted is deleted. Output only.
361      &quot;kind&quot;: &quot;dns#managedZonePeeringConfigTargetNetwork&quot;,
362      &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to forward queries to. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
363    },
364  },
365  &quot;privateVisibilityConfig&quot;: { # For privately visible zones, the set of Virtual Private Cloud resources that the zone is visible from.
366    &quot;gkeClusters&quot;: [ # The list of Google Kubernetes Engine clusters that can see this zone.
367      {
368        &quot;gkeClusterName&quot;: &quot;A String&quot;, # The resource name of the cluster to bind this ManagedZone to. This should be specified in the format like: projects/*/locations/*/clusters/*. This is referenced from GKE projects.locations.clusters.get API: https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.locations.clusters/get
369        &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigGKECluster&quot;,
370      },
371    ],
372    &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;,
373    &quot;networks&quot;: [ # The list of VPC networks that can see this zone.
374      {
375        &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;,
376        &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to bind to. Format this URL like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
377      },
378    ],
379  },
380  &quot;reverseLookupConfig&quot;: { # The presence of this field indicates that this is a managed reverse lookup zone and Cloud DNS resolves reverse lookup queries using automatically configured records for VPC resources. This only applies to networks listed under private_visibility_config.
381    &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;,
382  },
383  &quot;serviceDirectoryConfig&quot;: { # Contains information about Service Directory-backed zones. # This field links to the associated service directory namespace. Do not set this field for public zones or forwarding zones.
384    &quot;kind&quot;: &quot;dns#managedZoneServiceDirectoryConfig&quot;,
385    &quot;namespace&quot;: { # Contains information about the namespace associated with the zone.
386      &quot;deletionTime&quot;: &quot;A String&quot;, # The time that the namespace backing this zone was deleted; an empty string if it still exists. This is in RFC3339 text format. Output only.
387      &quot;kind&quot;: &quot;dns#managedZoneServiceDirectoryConfigNamespace&quot;,
388      &quot;namespaceUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the namespace associated with the zone. Format must be https://servicedirectory.googleapis.com/v1/projects/{project}/locations/{location}/namespaces/{namespace}
389    },
390  },
391  &quot;visibility&quot;: &quot;A String&quot;, # The zone&#x27;s visibility: public zones are exposed to the Internet, while private zones are visible only to Virtual Private Cloud resources.
392}</pre>
393</div>
394
395<div class="method">
396    <code class="details" id="list">list(project, dnsName=None, maxResults=None, pageToken=None, x__xgafv=None)</code>
397  <pre>Enumerates ManagedZones that have been created but not yet deleted.
398
399Args:
400  project: string, Identifies the project addressed by this request. (required)
401  dnsName: string, Restricts the list to return only zones with this domain name.
402  maxResults: integer, Optional. Maximum number of results to be returned. If unspecified, the server decides how many results to return.
403  pageToken: string, Optional. A tag returned by a previous list request that was truncated. Use this parameter to continue a previous list request.
404  x__xgafv: string, V1 error format.
405    Allowed values
406      1 - v1 error format
407      2 - v2 error format
408
409Returns:
410  An object of the form:
411
412    {
413  &quot;header&quot;: { # Elements common to every response.
414    &quot;operationId&quot;: &quot;A String&quot;, # For mutating operation requests that completed successfully. This is the client_operation_id if the client specified it, otherwise it is generated by the server (output only).
415  },
416  &quot;kind&quot;: &quot;dns#managedZonesListResponse&quot;, # Type of resource.
417  &quot;managedZones&quot;: [ # The managed zone resources.
418    { # A zone is a subtree of the DNS namespace under one administrative responsibility. A ManagedZone is a resource that represents a DNS zone hosted by the Cloud DNS service.
419      &quot;cloudLoggingConfig&quot;: { # Cloud Logging configurations for publicly visible zones.
420        &quot;enableLogging&quot;: True or False, # If set, enable query logging for this ManagedZone. False by default, making logging opt-in.
421        &quot;kind&quot;: &quot;dns#managedZoneCloudLoggingConfig&quot;,
422      },
423      &quot;creationTime&quot;: &quot;A String&quot;, # The time that this resource was created on the server. This is in RFC3339 text format. Output only.
424      &quot;description&quot;: &quot;A String&quot;, # A mutable string of at most 1024 characters associated with this resource for the user&#x27;s convenience. Has no effect on the managed zone&#x27;s function.
425      &quot;dnsName&quot;: &quot;A String&quot;, # The DNS name of this managed zone, for instance &quot;example.com.&quot;.
426      &quot;dnssecConfig&quot;: { # DNSSEC configuration.
427        &quot;defaultKeySpecs&quot;: [ # Specifies parameters for generating initial DnsKeys for this ManagedZone. Can only be changed while the state is OFF.
428          { # Parameters for DnsKey key generation. Used for generating initial keys for a new ManagedZone and as default when adding a new DnsKey.
429            &quot;algorithm&quot;: &quot;A String&quot;, # String mnemonic specifying the DNSSEC algorithm of this key.
430            &quot;keyLength&quot;: 42, # Length of the keys in bits.
431            &quot;keyType&quot;: &quot;A String&quot;, # Specifies whether this is a key signing key (KSK) or a zone signing key (ZSK). Key signing keys have the Secure Entry Point flag set and, when active, are only used to sign resource record sets of type DNSKEY. Zone signing keys do not have the Secure Entry Point flag set and are used to sign all other types of resource record sets.
432            &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;,
433          },
434        ],
435        &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;,
436        &quot;nonExistence&quot;: &quot;A String&quot;, # Specifies the mechanism for authenticated denial-of-existence responses. Can only be changed while the state is OFF.
437        &quot;state&quot;: &quot;A String&quot;, # Specifies whether DNSSEC is enabled, and what mode it is in.
438      },
439      &quot;forwardingConfig&quot;: { # The presence for this field indicates that outbound forwarding is enabled for this zone. The value of this field contains the set of destinations to forward to.
440        &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;,
441        &quot;targetNameServers&quot;: [ # List of target name servers to forward to. Cloud DNS selects the best available name server if more than one target is given.
442          {
443            &quot;forwardingPath&quot;: &quot;A String&quot;, # Forwarding path for this NameServerTarget. If unset or set to DEFAULT, Cloud DNS makes forwarding decisions based on IP address ranges; that is, RFC1918 addresses go to the VPC network, non-RFC1918 addresses go to the internet. When set to PRIVATE, Cloud DNS always sends queries through the VPC network for this target.
444            &quot;ipv4Address&quot;: &quot;A String&quot;, # IPv4 address of a target name server.
445            &quot;ipv6Address&quot;: &quot;A String&quot;, # IPv6 address of a target name server. Does not accept both fields (ipv4 &amp; ipv6) being populated.
446            &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;,
447          },
448        ],
449      },
450      &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only)
451      &quot;kind&quot;: &quot;dns#managedZone&quot;,
452      &quot;labels&quot;: { # User labels.
453        &quot;a_key&quot;: &quot;A String&quot;,
454      },
455      &quot;name&quot;: &quot;A String&quot;, # User assigned name for this resource. Must be unique within the project. The name must be 1-63 characters long, must begin with a letter, end with a letter or digit, and only contain lowercase letters, digits or dashes.
456      &quot;nameServerSet&quot;: &quot;A String&quot;, # Optionally specifies the NameServerSet for this ManagedZone. A NameServerSet is a set of DNS name servers that all host the same ManagedZones. Most users leave this field unset. If you need to use this field, contact your account team.
457      &quot;nameServers&quot;: [ # Delegate your managed_zone to these virtual name servers; defined by the server (output only)
458        &quot;A String&quot;,
459      ],
460      &quot;peeringConfig&quot;: { # The presence of this field indicates that DNS Peering is enabled for this zone. The value of this field contains the network to peer with.
461        &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;,
462        &quot;targetNetwork&quot;: { # The network with which to peer.
463          &quot;deactivateTime&quot;: &quot;A String&quot;, # The time at which the zone was deactivated, in RFC 3339 date-time format. An empty string indicates that the peering connection is active. The producer network can deactivate a zone. The zone is automatically deactivated if the producer network that the zone targeted is deleted. Output only.
464          &quot;kind&quot;: &quot;dns#managedZonePeeringConfigTargetNetwork&quot;,
465          &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to forward queries to. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
466        },
467      },
468      &quot;privateVisibilityConfig&quot;: { # For privately visible zones, the set of Virtual Private Cloud resources that the zone is visible from.
469        &quot;gkeClusters&quot;: [ # The list of Google Kubernetes Engine clusters that can see this zone.
470          {
471            &quot;gkeClusterName&quot;: &quot;A String&quot;, # The resource name of the cluster to bind this ManagedZone to. This should be specified in the format like: projects/*/locations/*/clusters/*. This is referenced from GKE projects.locations.clusters.get API: https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.locations.clusters/get
472            &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigGKECluster&quot;,
473          },
474        ],
475        &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;,
476        &quot;networks&quot;: [ # The list of VPC networks that can see this zone.
477          {
478            &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;,
479            &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to bind to. Format this URL like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
480          },
481        ],
482      },
483      &quot;reverseLookupConfig&quot;: { # The presence of this field indicates that this is a managed reverse lookup zone and Cloud DNS resolves reverse lookup queries using automatically configured records for VPC resources. This only applies to networks listed under private_visibility_config.
484        &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;,
485      },
486      &quot;serviceDirectoryConfig&quot;: { # Contains information about Service Directory-backed zones. # This field links to the associated service directory namespace. Do not set this field for public zones or forwarding zones.
487        &quot;kind&quot;: &quot;dns#managedZoneServiceDirectoryConfig&quot;,
488        &quot;namespace&quot;: { # Contains information about the namespace associated with the zone.
489          &quot;deletionTime&quot;: &quot;A String&quot;, # The time that the namespace backing this zone was deleted; an empty string if it still exists. This is in RFC3339 text format. Output only.
490          &quot;kind&quot;: &quot;dns#managedZoneServiceDirectoryConfigNamespace&quot;,
491          &quot;namespaceUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the namespace associated with the zone. Format must be https://servicedirectory.googleapis.com/v1/projects/{project}/locations/{location}/namespaces/{namespace}
492        },
493      },
494      &quot;visibility&quot;: &quot;A String&quot;, # The zone&#x27;s visibility: public zones are exposed to the Internet, while private zones are visible only to Virtual Private Cloud resources.
495    },
496  ],
497  &quot;nextPageToken&quot;: &quot;A String&quot;, # The presence of this field indicates that there exist more results following your last page of results in pagination order. To fetch them, make another list request using this value as your page token. This lets you the complete contents of even very large collections one page at a time. However, if the contents of the collection change between the first and last paginated list request, the set of all elements returned are an inconsistent view of the collection. You cannot retrieve a consistent snapshot of a collection larger than the maximum page size.
498}</pre>
499</div>
500
501<div class="method">
502    <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
503  <pre>Retrieves the next page of results.
504
505Args:
506  previous_request: The request for the previous page. (required)
507  previous_response: The response from the request for the previous page. (required)
508
509Returns:
510  A request object that you can call &#x27;execute()&#x27; on to request the next
511  page. Returns None if there are no more items in the collection.
512    </pre>
513</div>
514
515<div class="method">
516    <code class="details" id="patch">patch(project, managedZone, body=None, clientOperationId=None, x__xgafv=None)</code>
517  <pre>Applies a partial update to an existing ManagedZone.
518
519Args:
520  project: string, Identifies the project addressed by this request. (required)
521  managedZone: string, Identifies the managed zone addressed by this request. Can be the managed zone name or ID. (required)
522  body: object, The request body.
523    The object takes the form of:
524
525{ # A zone is a subtree of the DNS namespace under one administrative responsibility. A ManagedZone is a resource that represents a DNS zone hosted by the Cloud DNS service.
526  &quot;cloudLoggingConfig&quot;: { # Cloud Logging configurations for publicly visible zones.
527    &quot;enableLogging&quot;: True or False, # If set, enable query logging for this ManagedZone. False by default, making logging opt-in.
528    &quot;kind&quot;: &quot;dns#managedZoneCloudLoggingConfig&quot;,
529  },
530  &quot;creationTime&quot;: &quot;A String&quot;, # The time that this resource was created on the server. This is in RFC3339 text format. Output only.
531  &quot;description&quot;: &quot;A String&quot;, # A mutable string of at most 1024 characters associated with this resource for the user&#x27;s convenience. Has no effect on the managed zone&#x27;s function.
532  &quot;dnsName&quot;: &quot;A String&quot;, # The DNS name of this managed zone, for instance &quot;example.com.&quot;.
533  &quot;dnssecConfig&quot;: { # DNSSEC configuration.
534    &quot;defaultKeySpecs&quot;: [ # Specifies parameters for generating initial DnsKeys for this ManagedZone. Can only be changed while the state is OFF.
535      { # Parameters for DnsKey key generation. Used for generating initial keys for a new ManagedZone and as default when adding a new DnsKey.
536        &quot;algorithm&quot;: &quot;A String&quot;, # String mnemonic specifying the DNSSEC algorithm of this key.
537        &quot;keyLength&quot;: 42, # Length of the keys in bits.
538        &quot;keyType&quot;: &quot;A String&quot;, # Specifies whether this is a key signing key (KSK) or a zone signing key (ZSK). Key signing keys have the Secure Entry Point flag set and, when active, are only used to sign resource record sets of type DNSKEY. Zone signing keys do not have the Secure Entry Point flag set and are used to sign all other types of resource record sets.
539        &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;,
540      },
541    ],
542    &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;,
543    &quot;nonExistence&quot;: &quot;A String&quot;, # Specifies the mechanism for authenticated denial-of-existence responses. Can only be changed while the state is OFF.
544    &quot;state&quot;: &quot;A String&quot;, # Specifies whether DNSSEC is enabled, and what mode it is in.
545  },
546  &quot;forwardingConfig&quot;: { # The presence for this field indicates that outbound forwarding is enabled for this zone. The value of this field contains the set of destinations to forward to.
547    &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;,
548    &quot;targetNameServers&quot;: [ # List of target name servers to forward to. Cloud DNS selects the best available name server if more than one target is given.
549      {
550        &quot;forwardingPath&quot;: &quot;A String&quot;, # Forwarding path for this NameServerTarget. If unset or set to DEFAULT, Cloud DNS makes forwarding decisions based on IP address ranges; that is, RFC1918 addresses go to the VPC network, non-RFC1918 addresses go to the internet. When set to PRIVATE, Cloud DNS always sends queries through the VPC network for this target.
551        &quot;ipv4Address&quot;: &quot;A String&quot;, # IPv4 address of a target name server.
552        &quot;ipv6Address&quot;: &quot;A String&quot;, # IPv6 address of a target name server. Does not accept both fields (ipv4 &amp; ipv6) being populated.
553        &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;,
554      },
555    ],
556  },
557  &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only)
558  &quot;kind&quot;: &quot;dns#managedZone&quot;,
559  &quot;labels&quot;: { # User labels.
560    &quot;a_key&quot;: &quot;A String&quot;,
561  },
562  &quot;name&quot;: &quot;A String&quot;, # User assigned name for this resource. Must be unique within the project. The name must be 1-63 characters long, must begin with a letter, end with a letter or digit, and only contain lowercase letters, digits or dashes.
563  &quot;nameServerSet&quot;: &quot;A String&quot;, # Optionally specifies the NameServerSet for this ManagedZone. A NameServerSet is a set of DNS name servers that all host the same ManagedZones. Most users leave this field unset. If you need to use this field, contact your account team.
564  &quot;nameServers&quot;: [ # Delegate your managed_zone to these virtual name servers; defined by the server (output only)
565    &quot;A String&quot;,
566  ],
567  &quot;peeringConfig&quot;: { # The presence of this field indicates that DNS Peering is enabled for this zone. The value of this field contains the network to peer with.
568    &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;,
569    &quot;targetNetwork&quot;: { # The network with which to peer.
570      &quot;deactivateTime&quot;: &quot;A String&quot;, # The time at which the zone was deactivated, in RFC 3339 date-time format. An empty string indicates that the peering connection is active. The producer network can deactivate a zone. The zone is automatically deactivated if the producer network that the zone targeted is deleted. Output only.
571      &quot;kind&quot;: &quot;dns#managedZonePeeringConfigTargetNetwork&quot;,
572      &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to forward queries to. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
573    },
574  },
575  &quot;privateVisibilityConfig&quot;: { # For privately visible zones, the set of Virtual Private Cloud resources that the zone is visible from.
576    &quot;gkeClusters&quot;: [ # The list of Google Kubernetes Engine clusters that can see this zone.
577      {
578        &quot;gkeClusterName&quot;: &quot;A String&quot;, # The resource name of the cluster to bind this ManagedZone to. This should be specified in the format like: projects/*/locations/*/clusters/*. This is referenced from GKE projects.locations.clusters.get API: https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.locations.clusters/get
579        &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigGKECluster&quot;,
580      },
581    ],
582    &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;,
583    &quot;networks&quot;: [ # The list of VPC networks that can see this zone.
584      {
585        &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;,
586        &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to bind to. Format this URL like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
587      },
588    ],
589  },
590  &quot;reverseLookupConfig&quot;: { # The presence of this field indicates that this is a managed reverse lookup zone and Cloud DNS resolves reverse lookup queries using automatically configured records for VPC resources. This only applies to networks listed under private_visibility_config.
591    &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;,
592  },
593  &quot;serviceDirectoryConfig&quot;: { # Contains information about Service Directory-backed zones. # This field links to the associated service directory namespace. Do not set this field for public zones or forwarding zones.
594    &quot;kind&quot;: &quot;dns#managedZoneServiceDirectoryConfig&quot;,
595    &quot;namespace&quot;: { # Contains information about the namespace associated with the zone.
596      &quot;deletionTime&quot;: &quot;A String&quot;, # The time that the namespace backing this zone was deleted; an empty string if it still exists. This is in RFC3339 text format. Output only.
597      &quot;kind&quot;: &quot;dns#managedZoneServiceDirectoryConfigNamespace&quot;,
598      &quot;namespaceUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the namespace associated with the zone. Format must be https://servicedirectory.googleapis.com/v1/projects/{project}/locations/{location}/namespaces/{namespace}
599    },
600  },
601  &quot;visibility&quot;: &quot;A String&quot;, # The zone&#x27;s visibility: public zones are exposed to the Internet, while private zones are visible only to Virtual Private Cloud resources.
602}
603
604  clientOperationId: string, For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection.
605  x__xgafv: string, V1 error format.
606    Allowed values
607      1 - v1 error format
608      2 - v2 error format
609
610Returns:
611  An object of the form:
612
613    { # An operation represents a successful mutation performed on a Cloud DNS resource. Operations provide: - An audit log of server resource mutations. - A way to recover/retry API calls in the case where the response is never received by the caller. Use the caller specified client_operation_id.
614  &quot;dnsKeyContext&quot;: { # Only populated if the operation targeted a DnsKey (output only).
615    &quot;newValue&quot;: { # A DNSSEC key pair. # The post-operation DnsKey resource.
616      &quot;algorithm&quot;: &quot;A String&quot;, # String mnemonic specifying the DNSSEC algorithm of this key. Immutable after creation time.
617      &quot;creationTime&quot;: &quot;A String&quot;, # The time that this resource was created in the control plane. This is in RFC3339 text format. Output only.
618      &quot;description&quot;: &quot;A String&quot;, # A mutable string of at most 1024 characters associated with this resource for the user&#x27;s convenience. Has no effect on the resource&#x27;s function.
619      &quot;digests&quot;: [ # Cryptographic hashes of the DNSKEY resource record associated with this DnsKey. These digests are needed to construct a DS record that points at this DNS key. Output only.
620        {
621          &quot;digest&quot;: &quot;A String&quot;, # The base-16 encoded bytes of this digest. Suitable for use in a DS resource record.
622          &quot;type&quot;: &quot;A String&quot;, # Specifies the algorithm used to calculate this digest.
623        },
624      ],
625      &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only).
626      &quot;isActive&quot;: True or False, # Active keys are used to sign subsequent changes to the ManagedZone. Inactive keys are still present as DNSKEY Resource Records for the use of resolvers validating existing signatures.
627      &quot;keyLength&quot;: 42, # Length of the key in bits. Specified at creation time, and then immutable.
628      &quot;keyTag&quot;: 42, # The key tag is a non-cryptographic hash of the a DNSKEY resource record associated with this DnsKey. The key tag can be used to identify a DNSKEY more quickly (but it is not a unique identifier). In particular, the key tag is used in a parent zone&#x27;s DS record to point at the DNSKEY in this child ManagedZone. The key tag is a number in the range [0, 65535] and the algorithm to calculate it is specified in RFC4034 Appendix B. Output only.
629      &quot;kind&quot;: &quot;dns#dnsKey&quot;,
630      &quot;publicKey&quot;: &quot;A String&quot;, # Base64 encoded public half of this key. Output only.
631      &quot;type&quot;: &quot;A String&quot;, # One of &quot;KEY_SIGNING&quot; or &quot;ZONE_SIGNING&quot;. Keys of type KEY_SIGNING have the Secure Entry Point flag set and, when active, are used to sign only resource record sets of type DNSKEY. Otherwise, the Secure Entry Point flag is cleared, and this key is used to sign only resource record sets of other types. Immutable after creation time.
632    },
633    &quot;oldValue&quot;: { # A DNSSEC key pair. # The pre-operation DnsKey resource.
634      &quot;algorithm&quot;: &quot;A String&quot;, # String mnemonic specifying the DNSSEC algorithm of this key. Immutable after creation time.
635      &quot;creationTime&quot;: &quot;A String&quot;, # The time that this resource was created in the control plane. This is in RFC3339 text format. Output only.
636      &quot;description&quot;: &quot;A String&quot;, # A mutable string of at most 1024 characters associated with this resource for the user&#x27;s convenience. Has no effect on the resource&#x27;s function.
637      &quot;digests&quot;: [ # Cryptographic hashes of the DNSKEY resource record associated with this DnsKey. These digests are needed to construct a DS record that points at this DNS key. Output only.
638        {
639          &quot;digest&quot;: &quot;A String&quot;, # The base-16 encoded bytes of this digest. Suitable for use in a DS resource record.
640          &quot;type&quot;: &quot;A String&quot;, # Specifies the algorithm used to calculate this digest.
641        },
642      ],
643      &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only).
644      &quot;isActive&quot;: True or False, # Active keys are used to sign subsequent changes to the ManagedZone. Inactive keys are still present as DNSKEY Resource Records for the use of resolvers validating existing signatures.
645      &quot;keyLength&quot;: 42, # Length of the key in bits. Specified at creation time, and then immutable.
646      &quot;keyTag&quot;: 42, # The key tag is a non-cryptographic hash of the a DNSKEY resource record associated with this DnsKey. The key tag can be used to identify a DNSKEY more quickly (but it is not a unique identifier). In particular, the key tag is used in a parent zone&#x27;s DS record to point at the DNSKEY in this child ManagedZone. The key tag is a number in the range [0, 65535] and the algorithm to calculate it is specified in RFC4034 Appendix B. Output only.
647      &quot;kind&quot;: &quot;dns#dnsKey&quot;,
648      &quot;publicKey&quot;: &quot;A String&quot;, # Base64 encoded public half of this key. Output only.
649      &quot;type&quot;: &quot;A String&quot;, # One of &quot;KEY_SIGNING&quot; or &quot;ZONE_SIGNING&quot;. Keys of type KEY_SIGNING have the Secure Entry Point flag set and, when active, are used to sign only resource record sets of type DNSKEY. Otherwise, the Secure Entry Point flag is cleared, and this key is used to sign only resource record sets of other types. Immutable after creation time.
650    },
651  },
652  &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource. This is the client_operation_id if the client specified it when the mutation was initiated, otherwise, it is generated by the server. The name must be 1-63 characters long and match the regular expression [-a-z0-9]? (output only)
653  &quot;kind&quot;: &quot;dns#operation&quot;,
654  &quot;startTime&quot;: &quot;A String&quot;, # The time that this operation was started by the server. This is in RFC3339 text format (output only).
655  &quot;status&quot;: &quot;A String&quot;, # Status of the operation. Can be one of the following: &quot;PENDING&quot; or &quot;DONE&quot; (output only). A status of &quot;DONE&quot; means that the request to update the authoritative servers has been sent, but the servers might not be updated yet.
656  &quot;type&quot;: &quot;A String&quot;, # Type of the operation. Operations include insert, update, and delete (output only).
657  &quot;user&quot;: &quot;A String&quot;, # User who requested the operation, for example: [email protected]. cloud-dns-system for operations automatically done by the system. (output only)
658  &quot;zoneContext&quot;: { # Only populated if the operation targeted a ManagedZone (output only).
659    &quot;newValue&quot;: { # A zone is a subtree of the DNS namespace under one administrative responsibility. A ManagedZone is a resource that represents a DNS zone hosted by the Cloud DNS service. # The post-operation ManagedZone resource.
660      &quot;cloudLoggingConfig&quot;: { # Cloud Logging configurations for publicly visible zones.
661        &quot;enableLogging&quot;: True or False, # If set, enable query logging for this ManagedZone. False by default, making logging opt-in.
662        &quot;kind&quot;: &quot;dns#managedZoneCloudLoggingConfig&quot;,
663      },
664      &quot;creationTime&quot;: &quot;A String&quot;, # The time that this resource was created on the server. This is in RFC3339 text format. Output only.
665      &quot;description&quot;: &quot;A String&quot;, # A mutable string of at most 1024 characters associated with this resource for the user&#x27;s convenience. Has no effect on the managed zone&#x27;s function.
666      &quot;dnsName&quot;: &quot;A String&quot;, # The DNS name of this managed zone, for instance &quot;example.com.&quot;.
667      &quot;dnssecConfig&quot;: { # DNSSEC configuration.
668        &quot;defaultKeySpecs&quot;: [ # Specifies parameters for generating initial DnsKeys for this ManagedZone. Can only be changed while the state is OFF.
669          { # Parameters for DnsKey key generation. Used for generating initial keys for a new ManagedZone and as default when adding a new DnsKey.
670            &quot;algorithm&quot;: &quot;A String&quot;, # String mnemonic specifying the DNSSEC algorithm of this key.
671            &quot;keyLength&quot;: 42, # Length of the keys in bits.
672            &quot;keyType&quot;: &quot;A String&quot;, # Specifies whether this is a key signing key (KSK) or a zone signing key (ZSK). Key signing keys have the Secure Entry Point flag set and, when active, are only used to sign resource record sets of type DNSKEY. Zone signing keys do not have the Secure Entry Point flag set and are used to sign all other types of resource record sets.
673            &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;,
674          },
675        ],
676        &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;,
677        &quot;nonExistence&quot;: &quot;A String&quot;, # Specifies the mechanism for authenticated denial-of-existence responses. Can only be changed while the state is OFF.
678        &quot;state&quot;: &quot;A String&quot;, # Specifies whether DNSSEC is enabled, and what mode it is in.
679      },
680      &quot;forwardingConfig&quot;: { # The presence for this field indicates that outbound forwarding is enabled for this zone. The value of this field contains the set of destinations to forward to.
681        &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;,
682        &quot;targetNameServers&quot;: [ # List of target name servers to forward to. Cloud DNS selects the best available name server if more than one target is given.
683          {
684            &quot;forwardingPath&quot;: &quot;A String&quot;, # Forwarding path for this NameServerTarget. If unset or set to DEFAULT, Cloud DNS makes forwarding decisions based on IP address ranges; that is, RFC1918 addresses go to the VPC network, non-RFC1918 addresses go to the internet. When set to PRIVATE, Cloud DNS always sends queries through the VPC network for this target.
685            &quot;ipv4Address&quot;: &quot;A String&quot;, # IPv4 address of a target name server.
686            &quot;ipv6Address&quot;: &quot;A String&quot;, # IPv6 address of a target name server. Does not accept both fields (ipv4 &amp; ipv6) being populated.
687            &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;,
688          },
689        ],
690      },
691      &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only)
692      &quot;kind&quot;: &quot;dns#managedZone&quot;,
693      &quot;labels&quot;: { # User labels.
694        &quot;a_key&quot;: &quot;A String&quot;,
695      },
696      &quot;name&quot;: &quot;A String&quot;, # User assigned name for this resource. Must be unique within the project. The name must be 1-63 characters long, must begin with a letter, end with a letter or digit, and only contain lowercase letters, digits or dashes.
697      &quot;nameServerSet&quot;: &quot;A String&quot;, # Optionally specifies the NameServerSet for this ManagedZone. A NameServerSet is a set of DNS name servers that all host the same ManagedZones. Most users leave this field unset. If you need to use this field, contact your account team.
698      &quot;nameServers&quot;: [ # Delegate your managed_zone to these virtual name servers; defined by the server (output only)
699        &quot;A String&quot;,
700      ],
701      &quot;peeringConfig&quot;: { # The presence of this field indicates that DNS Peering is enabled for this zone. The value of this field contains the network to peer with.
702        &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;,
703        &quot;targetNetwork&quot;: { # The network with which to peer.
704          &quot;deactivateTime&quot;: &quot;A String&quot;, # The time at which the zone was deactivated, in RFC 3339 date-time format. An empty string indicates that the peering connection is active. The producer network can deactivate a zone. The zone is automatically deactivated if the producer network that the zone targeted is deleted. Output only.
705          &quot;kind&quot;: &quot;dns#managedZonePeeringConfigTargetNetwork&quot;,
706          &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to forward queries to. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
707        },
708      },
709      &quot;privateVisibilityConfig&quot;: { # For privately visible zones, the set of Virtual Private Cloud resources that the zone is visible from.
710        &quot;gkeClusters&quot;: [ # The list of Google Kubernetes Engine clusters that can see this zone.
711          {
712            &quot;gkeClusterName&quot;: &quot;A String&quot;, # The resource name of the cluster to bind this ManagedZone to. This should be specified in the format like: projects/*/locations/*/clusters/*. This is referenced from GKE projects.locations.clusters.get API: https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.locations.clusters/get
713            &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigGKECluster&quot;,
714          },
715        ],
716        &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;,
717        &quot;networks&quot;: [ # The list of VPC networks that can see this zone.
718          {
719            &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;,
720            &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to bind to. Format this URL like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
721          },
722        ],
723      },
724      &quot;reverseLookupConfig&quot;: { # The presence of this field indicates that this is a managed reverse lookup zone and Cloud DNS resolves reverse lookup queries using automatically configured records for VPC resources. This only applies to networks listed under private_visibility_config.
725        &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;,
726      },
727      &quot;serviceDirectoryConfig&quot;: { # Contains information about Service Directory-backed zones. # This field links to the associated service directory namespace. Do not set this field for public zones or forwarding zones.
728        &quot;kind&quot;: &quot;dns#managedZoneServiceDirectoryConfig&quot;,
729        &quot;namespace&quot;: { # Contains information about the namespace associated with the zone.
730          &quot;deletionTime&quot;: &quot;A String&quot;, # The time that the namespace backing this zone was deleted; an empty string if it still exists. This is in RFC3339 text format. Output only.
731          &quot;kind&quot;: &quot;dns#managedZoneServiceDirectoryConfigNamespace&quot;,
732          &quot;namespaceUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the namespace associated with the zone. Format must be https://servicedirectory.googleapis.com/v1/projects/{project}/locations/{location}/namespaces/{namespace}
733        },
734      },
735      &quot;visibility&quot;: &quot;A String&quot;, # The zone&#x27;s visibility: public zones are exposed to the Internet, while private zones are visible only to Virtual Private Cloud resources.
736    },
737    &quot;oldValue&quot;: { # A zone is a subtree of the DNS namespace under one administrative responsibility. A ManagedZone is a resource that represents a DNS zone hosted by the Cloud DNS service. # The pre-operation ManagedZone resource.
738      &quot;cloudLoggingConfig&quot;: { # Cloud Logging configurations for publicly visible zones.
739        &quot;enableLogging&quot;: True or False, # If set, enable query logging for this ManagedZone. False by default, making logging opt-in.
740        &quot;kind&quot;: &quot;dns#managedZoneCloudLoggingConfig&quot;,
741      },
742      &quot;creationTime&quot;: &quot;A String&quot;, # The time that this resource was created on the server. This is in RFC3339 text format. Output only.
743      &quot;description&quot;: &quot;A String&quot;, # A mutable string of at most 1024 characters associated with this resource for the user&#x27;s convenience. Has no effect on the managed zone&#x27;s function.
744      &quot;dnsName&quot;: &quot;A String&quot;, # The DNS name of this managed zone, for instance &quot;example.com.&quot;.
745      &quot;dnssecConfig&quot;: { # DNSSEC configuration.
746        &quot;defaultKeySpecs&quot;: [ # Specifies parameters for generating initial DnsKeys for this ManagedZone. Can only be changed while the state is OFF.
747          { # Parameters for DnsKey key generation. Used for generating initial keys for a new ManagedZone and as default when adding a new DnsKey.
748            &quot;algorithm&quot;: &quot;A String&quot;, # String mnemonic specifying the DNSSEC algorithm of this key.
749            &quot;keyLength&quot;: 42, # Length of the keys in bits.
750            &quot;keyType&quot;: &quot;A String&quot;, # Specifies whether this is a key signing key (KSK) or a zone signing key (ZSK). Key signing keys have the Secure Entry Point flag set and, when active, are only used to sign resource record sets of type DNSKEY. Zone signing keys do not have the Secure Entry Point flag set and are used to sign all other types of resource record sets.
751            &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;,
752          },
753        ],
754        &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;,
755        &quot;nonExistence&quot;: &quot;A String&quot;, # Specifies the mechanism for authenticated denial-of-existence responses. Can only be changed while the state is OFF.
756        &quot;state&quot;: &quot;A String&quot;, # Specifies whether DNSSEC is enabled, and what mode it is in.
757      },
758      &quot;forwardingConfig&quot;: { # The presence for this field indicates that outbound forwarding is enabled for this zone. The value of this field contains the set of destinations to forward to.
759        &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;,
760        &quot;targetNameServers&quot;: [ # List of target name servers to forward to. Cloud DNS selects the best available name server if more than one target is given.
761          {
762            &quot;forwardingPath&quot;: &quot;A String&quot;, # Forwarding path for this NameServerTarget. If unset or set to DEFAULT, Cloud DNS makes forwarding decisions based on IP address ranges; that is, RFC1918 addresses go to the VPC network, non-RFC1918 addresses go to the internet. When set to PRIVATE, Cloud DNS always sends queries through the VPC network for this target.
763            &quot;ipv4Address&quot;: &quot;A String&quot;, # IPv4 address of a target name server.
764            &quot;ipv6Address&quot;: &quot;A String&quot;, # IPv6 address of a target name server. Does not accept both fields (ipv4 &amp; ipv6) being populated.
765            &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;,
766          },
767        ],
768      },
769      &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only)
770      &quot;kind&quot;: &quot;dns#managedZone&quot;,
771      &quot;labels&quot;: { # User labels.
772        &quot;a_key&quot;: &quot;A String&quot;,
773      },
774      &quot;name&quot;: &quot;A String&quot;, # User assigned name for this resource. Must be unique within the project. The name must be 1-63 characters long, must begin with a letter, end with a letter or digit, and only contain lowercase letters, digits or dashes.
775      &quot;nameServerSet&quot;: &quot;A String&quot;, # Optionally specifies the NameServerSet for this ManagedZone. A NameServerSet is a set of DNS name servers that all host the same ManagedZones. Most users leave this field unset. If you need to use this field, contact your account team.
776      &quot;nameServers&quot;: [ # Delegate your managed_zone to these virtual name servers; defined by the server (output only)
777        &quot;A String&quot;,
778      ],
779      &quot;peeringConfig&quot;: { # The presence of this field indicates that DNS Peering is enabled for this zone. The value of this field contains the network to peer with.
780        &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;,
781        &quot;targetNetwork&quot;: { # The network with which to peer.
782          &quot;deactivateTime&quot;: &quot;A String&quot;, # The time at which the zone was deactivated, in RFC 3339 date-time format. An empty string indicates that the peering connection is active. The producer network can deactivate a zone. The zone is automatically deactivated if the producer network that the zone targeted is deleted. Output only.
783          &quot;kind&quot;: &quot;dns#managedZonePeeringConfigTargetNetwork&quot;,
784          &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to forward queries to. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
785        },
786      },
787      &quot;privateVisibilityConfig&quot;: { # For privately visible zones, the set of Virtual Private Cloud resources that the zone is visible from.
788        &quot;gkeClusters&quot;: [ # The list of Google Kubernetes Engine clusters that can see this zone.
789          {
790            &quot;gkeClusterName&quot;: &quot;A String&quot;, # The resource name of the cluster to bind this ManagedZone to. This should be specified in the format like: projects/*/locations/*/clusters/*. This is referenced from GKE projects.locations.clusters.get API: https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.locations.clusters/get
791            &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigGKECluster&quot;,
792          },
793        ],
794        &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;,
795        &quot;networks&quot;: [ # The list of VPC networks that can see this zone.
796          {
797            &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;,
798            &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to bind to. Format this URL like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
799          },
800        ],
801      },
802      &quot;reverseLookupConfig&quot;: { # The presence of this field indicates that this is a managed reverse lookup zone and Cloud DNS resolves reverse lookup queries using automatically configured records for VPC resources. This only applies to networks listed under private_visibility_config.
803        &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;,
804      },
805      &quot;serviceDirectoryConfig&quot;: { # Contains information about Service Directory-backed zones. # This field links to the associated service directory namespace. Do not set this field for public zones or forwarding zones.
806        &quot;kind&quot;: &quot;dns#managedZoneServiceDirectoryConfig&quot;,
807        &quot;namespace&quot;: { # Contains information about the namespace associated with the zone.
808          &quot;deletionTime&quot;: &quot;A String&quot;, # The time that the namespace backing this zone was deleted; an empty string if it still exists. This is in RFC3339 text format. Output only.
809          &quot;kind&quot;: &quot;dns#managedZoneServiceDirectoryConfigNamespace&quot;,
810          &quot;namespaceUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the namespace associated with the zone. Format must be https://servicedirectory.googleapis.com/v1/projects/{project}/locations/{location}/namespaces/{namespace}
811        },
812      },
813      &quot;visibility&quot;: &quot;A String&quot;, # The zone&#x27;s visibility: public zones are exposed to the Internet, while private zones are visible only to Virtual Private Cloud resources.
814    },
815  },
816}</pre>
817</div>
818
819<div class="method">
820    <code class="details" id="update">update(project, managedZone, body=None, clientOperationId=None, x__xgafv=None)</code>
821  <pre>Updates an existing ManagedZone.
822
823Args:
824  project: string, Identifies the project addressed by this request. (required)
825  managedZone: string, Identifies the managed zone addressed by this request. Can be the managed zone name or ID. (required)
826  body: object, The request body.
827    The object takes the form of:
828
829{ # A zone is a subtree of the DNS namespace under one administrative responsibility. A ManagedZone is a resource that represents a DNS zone hosted by the Cloud DNS service.
830  &quot;cloudLoggingConfig&quot;: { # Cloud Logging configurations for publicly visible zones.
831    &quot;enableLogging&quot;: True or False, # If set, enable query logging for this ManagedZone. False by default, making logging opt-in.
832    &quot;kind&quot;: &quot;dns#managedZoneCloudLoggingConfig&quot;,
833  },
834  &quot;creationTime&quot;: &quot;A String&quot;, # The time that this resource was created on the server. This is in RFC3339 text format. Output only.
835  &quot;description&quot;: &quot;A String&quot;, # A mutable string of at most 1024 characters associated with this resource for the user&#x27;s convenience. Has no effect on the managed zone&#x27;s function.
836  &quot;dnsName&quot;: &quot;A String&quot;, # The DNS name of this managed zone, for instance &quot;example.com.&quot;.
837  &quot;dnssecConfig&quot;: { # DNSSEC configuration.
838    &quot;defaultKeySpecs&quot;: [ # Specifies parameters for generating initial DnsKeys for this ManagedZone. Can only be changed while the state is OFF.
839      { # Parameters for DnsKey key generation. Used for generating initial keys for a new ManagedZone and as default when adding a new DnsKey.
840        &quot;algorithm&quot;: &quot;A String&quot;, # String mnemonic specifying the DNSSEC algorithm of this key.
841        &quot;keyLength&quot;: 42, # Length of the keys in bits.
842        &quot;keyType&quot;: &quot;A String&quot;, # Specifies whether this is a key signing key (KSK) or a zone signing key (ZSK). Key signing keys have the Secure Entry Point flag set and, when active, are only used to sign resource record sets of type DNSKEY. Zone signing keys do not have the Secure Entry Point flag set and are used to sign all other types of resource record sets.
843        &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;,
844      },
845    ],
846    &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;,
847    &quot;nonExistence&quot;: &quot;A String&quot;, # Specifies the mechanism for authenticated denial-of-existence responses. Can only be changed while the state is OFF.
848    &quot;state&quot;: &quot;A String&quot;, # Specifies whether DNSSEC is enabled, and what mode it is in.
849  },
850  &quot;forwardingConfig&quot;: { # The presence for this field indicates that outbound forwarding is enabled for this zone. The value of this field contains the set of destinations to forward to.
851    &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;,
852    &quot;targetNameServers&quot;: [ # List of target name servers to forward to. Cloud DNS selects the best available name server if more than one target is given.
853      {
854        &quot;forwardingPath&quot;: &quot;A String&quot;, # Forwarding path for this NameServerTarget. If unset or set to DEFAULT, Cloud DNS makes forwarding decisions based on IP address ranges; that is, RFC1918 addresses go to the VPC network, non-RFC1918 addresses go to the internet. When set to PRIVATE, Cloud DNS always sends queries through the VPC network for this target.
855        &quot;ipv4Address&quot;: &quot;A String&quot;, # IPv4 address of a target name server.
856        &quot;ipv6Address&quot;: &quot;A String&quot;, # IPv6 address of a target name server. Does not accept both fields (ipv4 &amp; ipv6) being populated.
857        &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;,
858      },
859    ],
860  },
861  &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only)
862  &quot;kind&quot;: &quot;dns#managedZone&quot;,
863  &quot;labels&quot;: { # User labels.
864    &quot;a_key&quot;: &quot;A String&quot;,
865  },
866  &quot;name&quot;: &quot;A String&quot;, # User assigned name for this resource. Must be unique within the project. The name must be 1-63 characters long, must begin with a letter, end with a letter or digit, and only contain lowercase letters, digits or dashes.
867  &quot;nameServerSet&quot;: &quot;A String&quot;, # Optionally specifies the NameServerSet for this ManagedZone. A NameServerSet is a set of DNS name servers that all host the same ManagedZones. Most users leave this field unset. If you need to use this field, contact your account team.
868  &quot;nameServers&quot;: [ # Delegate your managed_zone to these virtual name servers; defined by the server (output only)
869    &quot;A String&quot;,
870  ],
871  &quot;peeringConfig&quot;: { # The presence of this field indicates that DNS Peering is enabled for this zone. The value of this field contains the network to peer with.
872    &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;,
873    &quot;targetNetwork&quot;: { # The network with which to peer.
874      &quot;deactivateTime&quot;: &quot;A String&quot;, # The time at which the zone was deactivated, in RFC 3339 date-time format. An empty string indicates that the peering connection is active. The producer network can deactivate a zone. The zone is automatically deactivated if the producer network that the zone targeted is deleted. Output only.
875      &quot;kind&quot;: &quot;dns#managedZonePeeringConfigTargetNetwork&quot;,
876      &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to forward queries to. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
877    },
878  },
879  &quot;privateVisibilityConfig&quot;: { # For privately visible zones, the set of Virtual Private Cloud resources that the zone is visible from.
880    &quot;gkeClusters&quot;: [ # The list of Google Kubernetes Engine clusters that can see this zone.
881      {
882        &quot;gkeClusterName&quot;: &quot;A String&quot;, # The resource name of the cluster to bind this ManagedZone to. This should be specified in the format like: projects/*/locations/*/clusters/*. This is referenced from GKE projects.locations.clusters.get API: https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.locations.clusters/get
883        &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigGKECluster&quot;,
884      },
885    ],
886    &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;,
887    &quot;networks&quot;: [ # The list of VPC networks that can see this zone.
888      {
889        &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;,
890        &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to bind to. Format this URL like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
891      },
892    ],
893  },
894  &quot;reverseLookupConfig&quot;: { # The presence of this field indicates that this is a managed reverse lookup zone and Cloud DNS resolves reverse lookup queries using automatically configured records for VPC resources. This only applies to networks listed under private_visibility_config.
895    &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;,
896  },
897  &quot;serviceDirectoryConfig&quot;: { # Contains information about Service Directory-backed zones. # This field links to the associated service directory namespace. Do not set this field for public zones or forwarding zones.
898    &quot;kind&quot;: &quot;dns#managedZoneServiceDirectoryConfig&quot;,
899    &quot;namespace&quot;: { # Contains information about the namespace associated with the zone.
900      &quot;deletionTime&quot;: &quot;A String&quot;, # The time that the namespace backing this zone was deleted; an empty string if it still exists. This is in RFC3339 text format. Output only.
901      &quot;kind&quot;: &quot;dns#managedZoneServiceDirectoryConfigNamespace&quot;,
902      &quot;namespaceUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the namespace associated with the zone. Format must be https://servicedirectory.googleapis.com/v1/projects/{project}/locations/{location}/namespaces/{namespace}
903    },
904  },
905  &quot;visibility&quot;: &quot;A String&quot;, # The zone&#x27;s visibility: public zones are exposed to the Internet, while private zones are visible only to Virtual Private Cloud resources.
906}
907
908  clientOperationId: string, For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection.
909  x__xgafv: string, V1 error format.
910    Allowed values
911      1 - v1 error format
912      2 - v2 error format
913
914Returns:
915  An object of the form:
916
917    { # An operation represents a successful mutation performed on a Cloud DNS resource. Operations provide: - An audit log of server resource mutations. - A way to recover/retry API calls in the case where the response is never received by the caller. Use the caller specified client_operation_id.
918  &quot;dnsKeyContext&quot;: { # Only populated if the operation targeted a DnsKey (output only).
919    &quot;newValue&quot;: { # A DNSSEC key pair. # The post-operation DnsKey resource.
920      &quot;algorithm&quot;: &quot;A String&quot;, # String mnemonic specifying the DNSSEC algorithm of this key. Immutable after creation time.
921      &quot;creationTime&quot;: &quot;A String&quot;, # The time that this resource was created in the control plane. This is in RFC3339 text format. Output only.
922      &quot;description&quot;: &quot;A String&quot;, # A mutable string of at most 1024 characters associated with this resource for the user&#x27;s convenience. Has no effect on the resource&#x27;s function.
923      &quot;digests&quot;: [ # Cryptographic hashes of the DNSKEY resource record associated with this DnsKey. These digests are needed to construct a DS record that points at this DNS key. Output only.
924        {
925          &quot;digest&quot;: &quot;A String&quot;, # The base-16 encoded bytes of this digest. Suitable for use in a DS resource record.
926          &quot;type&quot;: &quot;A String&quot;, # Specifies the algorithm used to calculate this digest.
927        },
928      ],
929      &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only).
930      &quot;isActive&quot;: True or False, # Active keys are used to sign subsequent changes to the ManagedZone. Inactive keys are still present as DNSKEY Resource Records for the use of resolvers validating existing signatures.
931      &quot;keyLength&quot;: 42, # Length of the key in bits. Specified at creation time, and then immutable.
932      &quot;keyTag&quot;: 42, # The key tag is a non-cryptographic hash of the a DNSKEY resource record associated with this DnsKey. The key tag can be used to identify a DNSKEY more quickly (but it is not a unique identifier). In particular, the key tag is used in a parent zone&#x27;s DS record to point at the DNSKEY in this child ManagedZone. The key tag is a number in the range [0, 65535] and the algorithm to calculate it is specified in RFC4034 Appendix B. Output only.
933      &quot;kind&quot;: &quot;dns#dnsKey&quot;,
934      &quot;publicKey&quot;: &quot;A String&quot;, # Base64 encoded public half of this key. Output only.
935      &quot;type&quot;: &quot;A String&quot;, # One of &quot;KEY_SIGNING&quot; or &quot;ZONE_SIGNING&quot;. Keys of type KEY_SIGNING have the Secure Entry Point flag set and, when active, are used to sign only resource record sets of type DNSKEY. Otherwise, the Secure Entry Point flag is cleared, and this key is used to sign only resource record sets of other types. Immutable after creation time.
936    },
937    &quot;oldValue&quot;: { # A DNSSEC key pair. # The pre-operation DnsKey resource.
938      &quot;algorithm&quot;: &quot;A String&quot;, # String mnemonic specifying the DNSSEC algorithm of this key. Immutable after creation time.
939      &quot;creationTime&quot;: &quot;A String&quot;, # The time that this resource was created in the control plane. This is in RFC3339 text format. Output only.
940      &quot;description&quot;: &quot;A String&quot;, # A mutable string of at most 1024 characters associated with this resource for the user&#x27;s convenience. Has no effect on the resource&#x27;s function.
941      &quot;digests&quot;: [ # Cryptographic hashes of the DNSKEY resource record associated with this DnsKey. These digests are needed to construct a DS record that points at this DNS key. Output only.
942        {
943          &quot;digest&quot;: &quot;A String&quot;, # The base-16 encoded bytes of this digest. Suitable for use in a DS resource record.
944          &quot;type&quot;: &quot;A String&quot;, # Specifies the algorithm used to calculate this digest.
945        },
946      ],
947      &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only).
948      &quot;isActive&quot;: True or False, # Active keys are used to sign subsequent changes to the ManagedZone. Inactive keys are still present as DNSKEY Resource Records for the use of resolvers validating existing signatures.
949      &quot;keyLength&quot;: 42, # Length of the key in bits. Specified at creation time, and then immutable.
950      &quot;keyTag&quot;: 42, # The key tag is a non-cryptographic hash of the a DNSKEY resource record associated with this DnsKey. The key tag can be used to identify a DNSKEY more quickly (but it is not a unique identifier). In particular, the key tag is used in a parent zone&#x27;s DS record to point at the DNSKEY in this child ManagedZone. The key tag is a number in the range [0, 65535] and the algorithm to calculate it is specified in RFC4034 Appendix B. Output only.
951      &quot;kind&quot;: &quot;dns#dnsKey&quot;,
952      &quot;publicKey&quot;: &quot;A String&quot;, # Base64 encoded public half of this key. Output only.
953      &quot;type&quot;: &quot;A String&quot;, # One of &quot;KEY_SIGNING&quot; or &quot;ZONE_SIGNING&quot;. Keys of type KEY_SIGNING have the Secure Entry Point flag set and, when active, are used to sign only resource record sets of type DNSKEY. Otherwise, the Secure Entry Point flag is cleared, and this key is used to sign only resource record sets of other types. Immutable after creation time.
954    },
955  },
956  &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource. This is the client_operation_id if the client specified it when the mutation was initiated, otherwise, it is generated by the server. The name must be 1-63 characters long and match the regular expression [-a-z0-9]? (output only)
957  &quot;kind&quot;: &quot;dns#operation&quot;,
958  &quot;startTime&quot;: &quot;A String&quot;, # The time that this operation was started by the server. This is in RFC3339 text format (output only).
959  &quot;status&quot;: &quot;A String&quot;, # Status of the operation. Can be one of the following: &quot;PENDING&quot; or &quot;DONE&quot; (output only). A status of &quot;DONE&quot; means that the request to update the authoritative servers has been sent, but the servers might not be updated yet.
960  &quot;type&quot;: &quot;A String&quot;, # Type of the operation. Operations include insert, update, and delete (output only).
961  &quot;user&quot;: &quot;A String&quot;, # User who requested the operation, for example: [email protected]. cloud-dns-system for operations automatically done by the system. (output only)
962  &quot;zoneContext&quot;: { # Only populated if the operation targeted a ManagedZone (output only).
963    &quot;newValue&quot;: { # A zone is a subtree of the DNS namespace under one administrative responsibility. A ManagedZone is a resource that represents a DNS zone hosted by the Cloud DNS service. # The post-operation ManagedZone resource.
964      &quot;cloudLoggingConfig&quot;: { # Cloud Logging configurations for publicly visible zones.
965        &quot;enableLogging&quot;: True or False, # If set, enable query logging for this ManagedZone. False by default, making logging opt-in.
966        &quot;kind&quot;: &quot;dns#managedZoneCloudLoggingConfig&quot;,
967      },
968      &quot;creationTime&quot;: &quot;A String&quot;, # The time that this resource was created on the server. This is in RFC3339 text format. Output only.
969      &quot;description&quot;: &quot;A String&quot;, # A mutable string of at most 1024 characters associated with this resource for the user&#x27;s convenience. Has no effect on the managed zone&#x27;s function.
970      &quot;dnsName&quot;: &quot;A String&quot;, # The DNS name of this managed zone, for instance &quot;example.com.&quot;.
971      &quot;dnssecConfig&quot;: { # DNSSEC configuration.
972        &quot;defaultKeySpecs&quot;: [ # Specifies parameters for generating initial DnsKeys for this ManagedZone. Can only be changed while the state is OFF.
973          { # Parameters for DnsKey key generation. Used for generating initial keys for a new ManagedZone and as default when adding a new DnsKey.
974            &quot;algorithm&quot;: &quot;A String&quot;, # String mnemonic specifying the DNSSEC algorithm of this key.
975            &quot;keyLength&quot;: 42, # Length of the keys in bits.
976            &quot;keyType&quot;: &quot;A String&quot;, # Specifies whether this is a key signing key (KSK) or a zone signing key (ZSK). Key signing keys have the Secure Entry Point flag set and, when active, are only used to sign resource record sets of type DNSKEY. Zone signing keys do not have the Secure Entry Point flag set and are used to sign all other types of resource record sets.
977            &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;,
978          },
979        ],
980        &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;,
981        &quot;nonExistence&quot;: &quot;A String&quot;, # Specifies the mechanism for authenticated denial-of-existence responses. Can only be changed while the state is OFF.
982        &quot;state&quot;: &quot;A String&quot;, # Specifies whether DNSSEC is enabled, and what mode it is in.
983      },
984      &quot;forwardingConfig&quot;: { # The presence for this field indicates that outbound forwarding is enabled for this zone. The value of this field contains the set of destinations to forward to.
985        &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;,
986        &quot;targetNameServers&quot;: [ # List of target name servers to forward to. Cloud DNS selects the best available name server if more than one target is given.
987          {
988            &quot;forwardingPath&quot;: &quot;A String&quot;, # Forwarding path for this NameServerTarget. If unset or set to DEFAULT, Cloud DNS makes forwarding decisions based on IP address ranges; that is, RFC1918 addresses go to the VPC network, non-RFC1918 addresses go to the internet. When set to PRIVATE, Cloud DNS always sends queries through the VPC network for this target.
989            &quot;ipv4Address&quot;: &quot;A String&quot;, # IPv4 address of a target name server.
990            &quot;ipv6Address&quot;: &quot;A String&quot;, # IPv6 address of a target name server. Does not accept both fields (ipv4 &amp; ipv6) being populated.
991            &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;,
992          },
993        ],
994      },
995      &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only)
996      &quot;kind&quot;: &quot;dns#managedZone&quot;,
997      &quot;labels&quot;: { # User labels.
998        &quot;a_key&quot;: &quot;A String&quot;,
999      },
1000      &quot;name&quot;: &quot;A String&quot;, # User assigned name for this resource. Must be unique within the project. The name must be 1-63 characters long, must begin with a letter, end with a letter or digit, and only contain lowercase letters, digits or dashes.
1001      &quot;nameServerSet&quot;: &quot;A String&quot;, # Optionally specifies the NameServerSet for this ManagedZone. A NameServerSet is a set of DNS name servers that all host the same ManagedZones. Most users leave this field unset. If you need to use this field, contact your account team.
1002      &quot;nameServers&quot;: [ # Delegate your managed_zone to these virtual name servers; defined by the server (output only)
1003        &quot;A String&quot;,
1004      ],
1005      &quot;peeringConfig&quot;: { # The presence of this field indicates that DNS Peering is enabled for this zone. The value of this field contains the network to peer with.
1006        &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;,
1007        &quot;targetNetwork&quot;: { # The network with which to peer.
1008          &quot;deactivateTime&quot;: &quot;A String&quot;, # The time at which the zone was deactivated, in RFC 3339 date-time format. An empty string indicates that the peering connection is active. The producer network can deactivate a zone. The zone is automatically deactivated if the producer network that the zone targeted is deleted. Output only.
1009          &quot;kind&quot;: &quot;dns#managedZonePeeringConfigTargetNetwork&quot;,
1010          &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to forward queries to. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
1011        },
1012      },
1013      &quot;privateVisibilityConfig&quot;: { # For privately visible zones, the set of Virtual Private Cloud resources that the zone is visible from.
1014        &quot;gkeClusters&quot;: [ # The list of Google Kubernetes Engine clusters that can see this zone.
1015          {
1016            &quot;gkeClusterName&quot;: &quot;A String&quot;, # The resource name of the cluster to bind this ManagedZone to. This should be specified in the format like: projects/*/locations/*/clusters/*. This is referenced from GKE projects.locations.clusters.get API: https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.locations.clusters/get
1017            &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigGKECluster&quot;,
1018          },
1019        ],
1020        &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;,
1021        &quot;networks&quot;: [ # The list of VPC networks that can see this zone.
1022          {
1023            &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;,
1024            &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to bind to. Format this URL like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
1025          },
1026        ],
1027      },
1028      &quot;reverseLookupConfig&quot;: { # The presence of this field indicates that this is a managed reverse lookup zone and Cloud DNS resolves reverse lookup queries using automatically configured records for VPC resources. This only applies to networks listed under private_visibility_config.
1029        &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;,
1030      },
1031      &quot;serviceDirectoryConfig&quot;: { # Contains information about Service Directory-backed zones. # This field links to the associated service directory namespace. Do not set this field for public zones or forwarding zones.
1032        &quot;kind&quot;: &quot;dns#managedZoneServiceDirectoryConfig&quot;,
1033        &quot;namespace&quot;: { # Contains information about the namespace associated with the zone.
1034          &quot;deletionTime&quot;: &quot;A String&quot;, # The time that the namespace backing this zone was deleted; an empty string if it still exists. This is in RFC3339 text format. Output only.
1035          &quot;kind&quot;: &quot;dns#managedZoneServiceDirectoryConfigNamespace&quot;,
1036          &quot;namespaceUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the namespace associated with the zone. Format must be https://servicedirectory.googleapis.com/v1/projects/{project}/locations/{location}/namespaces/{namespace}
1037        },
1038      },
1039      &quot;visibility&quot;: &quot;A String&quot;, # The zone&#x27;s visibility: public zones are exposed to the Internet, while private zones are visible only to Virtual Private Cloud resources.
1040    },
1041    &quot;oldValue&quot;: { # A zone is a subtree of the DNS namespace under one administrative responsibility. A ManagedZone is a resource that represents a DNS zone hosted by the Cloud DNS service. # The pre-operation ManagedZone resource.
1042      &quot;cloudLoggingConfig&quot;: { # Cloud Logging configurations for publicly visible zones.
1043        &quot;enableLogging&quot;: True or False, # If set, enable query logging for this ManagedZone. False by default, making logging opt-in.
1044        &quot;kind&quot;: &quot;dns#managedZoneCloudLoggingConfig&quot;,
1045      },
1046      &quot;creationTime&quot;: &quot;A String&quot;, # The time that this resource was created on the server. This is in RFC3339 text format. Output only.
1047      &quot;description&quot;: &quot;A String&quot;, # A mutable string of at most 1024 characters associated with this resource for the user&#x27;s convenience. Has no effect on the managed zone&#x27;s function.
1048      &quot;dnsName&quot;: &quot;A String&quot;, # The DNS name of this managed zone, for instance &quot;example.com.&quot;.
1049      &quot;dnssecConfig&quot;: { # DNSSEC configuration.
1050        &quot;defaultKeySpecs&quot;: [ # Specifies parameters for generating initial DnsKeys for this ManagedZone. Can only be changed while the state is OFF.
1051          { # Parameters for DnsKey key generation. Used for generating initial keys for a new ManagedZone and as default when adding a new DnsKey.
1052            &quot;algorithm&quot;: &quot;A String&quot;, # String mnemonic specifying the DNSSEC algorithm of this key.
1053            &quot;keyLength&quot;: 42, # Length of the keys in bits.
1054            &quot;keyType&quot;: &quot;A String&quot;, # Specifies whether this is a key signing key (KSK) or a zone signing key (ZSK). Key signing keys have the Secure Entry Point flag set and, when active, are only used to sign resource record sets of type DNSKEY. Zone signing keys do not have the Secure Entry Point flag set and are used to sign all other types of resource record sets.
1055            &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;,
1056          },
1057        ],
1058        &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;,
1059        &quot;nonExistence&quot;: &quot;A String&quot;, # Specifies the mechanism for authenticated denial-of-existence responses. Can only be changed while the state is OFF.
1060        &quot;state&quot;: &quot;A String&quot;, # Specifies whether DNSSEC is enabled, and what mode it is in.
1061      },
1062      &quot;forwardingConfig&quot;: { # The presence for this field indicates that outbound forwarding is enabled for this zone. The value of this field contains the set of destinations to forward to.
1063        &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;,
1064        &quot;targetNameServers&quot;: [ # List of target name servers to forward to. Cloud DNS selects the best available name server if more than one target is given.
1065          {
1066            &quot;forwardingPath&quot;: &quot;A String&quot;, # Forwarding path for this NameServerTarget. If unset or set to DEFAULT, Cloud DNS makes forwarding decisions based on IP address ranges; that is, RFC1918 addresses go to the VPC network, non-RFC1918 addresses go to the internet. When set to PRIVATE, Cloud DNS always sends queries through the VPC network for this target.
1067            &quot;ipv4Address&quot;: &quot;A String&quot;, # IPv4 address of a target name server.
1068            &quot;ipv6Address&quot;: &quot;A String&quot;, # IPv6 address of a target name server. Does not accept both fields (ipv4 &amp; ipv6) being populated.
1069            &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;,
1070          },
1071        ],
1072      },
1073      &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only)
1074      &quot;kind&quot;: &quot;dns#managedZone&quot;,
1075      &quot;labels&quot;: { # User labels.
1076        &quot;a_key&quot;: &quot;A String&quot;,
1077      },
1078      &quot;name&quot;: &quot;A String&quot;, # User assigned name for this resource. Must be unique within the project. The name must be 1-63 characters long, must begin with a letter, end with a letter or digit, and only contain lowercase letters, digits or dashes.
1079      &quot;nameServerSet&quot;: &quot;A String&quot;, # Optionally specifies the NameServerSet for this ManagedZone. A NameServerSet is a set of DNS name servers that all host the same ManagedZones. Most users leave this field unset. If you need to use this field, contact your account team.
1080      &quot;nameServers&quot;: [ # Delegate your managed_zone to these virtual name servers; defined by the server (output only)
1081        &quot;A String&quot;,
1082      ],
1083      &quot;peeringConfig&quot;: { # The presence of this field indicates that DNS Peering is enabled for this zone. The value of this field contains the network to peer with.
1084        &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;,
1085        &quot;targetNetwork&quot;: { # The network with which to peer.
1086          &quot;deactivateTime&quot;: &quot;A String&quot;, # The time at which the zone was deactivated, in RFC 3339 date-time format. An empty string indicates that the peering connection is active. The producer network can deactivate a zone. The zone is automatically deactivated if the producer network that the zone targeted is deleted. Output only.
1087          &quot;kind&quot;: &quot;dns#managedZonePeeringConfigTargetNetwork&quot;,
1088          &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to forward queries to. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
1089        },
1090      },
1091      &quot;privateVisibilityConfig&quot;: { # For privately visible zones, the set of Virtual Private Cloud resources that the zone is visible from.
1092        &quot;gkeClusters&quot;: [ # The list of Google Kubernetes Engine clusters that can see this zone.
1093          {
1094            &quot;gkeClusterName&quot;: &quot;A String&quot;, # The resource name of the cluster to bind this ManagedZone to. This should be specified in the format like: projects/*/locations/*/clusters/*. This is referenced from GKE projects.locations.clusters.get API: https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.locations.clusters/get
1095            &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigGKECluster&quot;,
1096          },
1097        ],
1098        &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;,
1099        &quot;networks&quot;: [ # The list of VPC networks that can see this zone.
1100          {
1101            &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;,
1102            &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to bind to. Format this URL like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
1103          },
1104        ],
1105      },
1106      &quot;reverseLookupConfig&quot;: { # The presence of this field indicates that this is a managed reverse lookup zone and Cloud DNS resolves reverse lookup queries using automatically configured records for VPC resources. This only applies to networks listed under private_visibility_config.
1107        &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;,
1108      },
1109      &quot;serviceDirectoryConfig&quot;: { # Contains information about Service Directory-backed zones. # This field links to the associated service directory namespace. Do not set this field for public zones or forwarding zones.
1110        &quot;kind&quot;: &quot;dns#managedZoneServiceDirectoryConfig&quot;,
1111        &quot;namespace&quot;: { # Contains information about the namespace associated with the zone.
1112          &quot;deletionTime&quot;: &quot;A String&quot;, # The time that the namespace backing this zone was deleted; an empty string if it still exists. This is in RFC3339 text format. Output only.
1113          &quot;kind&quot;: &quot;dns#managedZoneServiceDirectoryConfigNamespace&quot;,
1114          &quot;namespaceUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the namespace associated with the zone. Format must be https://servicedirectory.googleapis.com/v1/projects/{project}/locations/{location}/namespaces/{namespace}
1115        },
1116      },
1117      &quot;visibility&quot;: &quot;A String&quot;, # The zone&#x27;s visibility: public zones are exposed to the Internet, while private zones are visible only to Virtual Private Cloud resources.
1118    },
1119  },
1120}</pre>
1121</div>
1122
1123</body></html>