blob: 725c6eb36c1bedb07c0b5d110774114a4334e49a [file] [log] [blame]
Nathaniel Manista4f877e52015-06-15 16:44:50 +00001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
Bu Sun Kimd059ad82020-07-22 17:02:09 -070075<h1><a href="dns_v1.html">Cloud DNS API</a> . <a href="dns_v1.managedZones.html">managedZones</a></h1>
Nathaniel Manista4f877e52015-06-15 16:44:50 +000076<h2>Instance Methods</h2>
77<p class="toc_element">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070078 <code><a href="#close">close()</a></code></p>
79<p class="firstline">Close httplib2 connections.</p>
80<p class="toc_element">
Bu Sun Kimd059ad82020-07-22 17:02:09 -070081 <code><a href="#create">create(project, body=None, clientOperationId=None, x__xgafv=None)</a></code></p>
82<p class="firstline">Create a new ManagedZone.</p>
Nathaniel Manista4f877e52015-06-15 16:44:50 +000083<p class="toc_element">
Bu Sun Kimd059ad82020-07-22 17:02:09 -070084 <code><a href="#delete">delete(project, managedZone, clientOperationId=None, x__xgafv=None)</a></code></p>
85<p class="firstline">Delete a previously created ManagedZone.</p>
Nathaniel Manista4f877e52015-06-15 16:44:50 +000086<p class="toc_element">
Bu Sun Kimd059ad82020-07-22 17:02:09 -070087 <code><a href="#get">get(project, managedZone, clientOperationId=None, x__xgafv=None)</a></code></p>
88<p class="firstline">Fetch the representation of an existing ManagedZone.</p>
Nathaniel Manista4f877e52015-06-15 16:44:50 +000089<p class="toc_element">
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -080090 <code><a href="#list">list(project, pageToken=None, dnsName=None, maxResults=None, x__xgafv=None)</a></code></p>
Bu Sun Kimd059ad82020-07-22 17:02:09 -070091<p class="firstline">Enumerate ManagedZones that have been created but not yet deleted.</p>
Nathaniel Manista4f877e52015-06-15 16:44:50 +000092<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>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070095<p class="toc_element">
Bu Sun Kimd059ad82020-07-22 17:02:09 -070096 <code><a href="#patch">patch(project, managedZone, body=None, clientOperationId=None, x__xgafv=None)</a></code></p>
97<p class="firstline">Apply a partial update to an existing ManagedZone.</p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070098<p class="toc_element">
Bu Sun Kimd059ad82020-07-22 17:02:09 -070099 <code><a href="#update">update(project, managedZone, body=None, clientOperationId=None, x__xgafv=None)</a></code></p>
100<p class="firstline">Update an existing ManagedZone.</p>
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000101<h3>Method Details</h3>
102<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700103 <code class="details" id="close">close()</code>
104 <pre>Close httplib2 connections.</pre>
105</div>
106
107<div class="method">
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700108 <code class="details" id="create">create(project, body=None, clientOperationId=None, x__xgafv=None)</code>
109 <pre>Create a new ManagedZone.
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000110
111Args:
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700112 project: string, Identifies the project addressed by this request. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700113 body: object, The request body.
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000114 The object takes the form of:
115
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700116{ # 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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700117 &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.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800118 &quot;dnsName&quot;: &quot;A String&quot;, # The DNS name of this managed zone, for instance &quot;example.com.&quot;.
119 &quot;reverseLookupConfig&quot;: { # The presence of this field indicates that this is a managed reverse lookup zone and Cloud DNS will resolve reverse lookup queries using automatically configured records for VPC resources. This only applies to networks listed under private_visibility_config.
120 &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;,
121 },
122 &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.
123 &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;,
124 &quot;targetNetwork&quot;: { # The network with which to peer.
125 &quot;kind&quot;: &quot;dns#managedZonePeeringConfigTargetNetwork&quot;,
126 &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}
127 &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.
128 },
129 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800130 &quot;labels&quot;: { # User labels.
131 &quot;a_key&quot;: &quot;A String&quot;,
132 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800133 &quot;kind&quot;: &quot;dns#managedZone&quot;,
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800134 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700135 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;,
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800136 &quot;targetNameServers&quot;: [ # List of target name servers to forward to. Cloud DNS will select the best available name server if more than one target is given.
137 {
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800138 &quot;ipv4Address&quot;: &quot;A String&quot;, # IPv4 address of a target name server.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800139 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;,
140 &quot;forwardingPath&quot;: &quot;A String&quot;, # Forwarding path for this NameServerTarget. If unset or set to DEFAULT, Cloud DNS will make forwarding decision based on address ranges, i.e. RFC1918 addresses go to the VPC, non-RFC1918 addresses go to the Internet. When set to PRIVATE, Cloud DNS will always send queries through VPC for this target.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800141 },
142 ],
143 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800144 &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.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800145 &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 will leave this field unset.
146 &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only)
147 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700148 &quot;dnssecConfig&quot;: { # DNSSEC configuration.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800149 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700150 &quot;state&quot;: &quot;A String&quot;, # Specifies whether DNSSEC is enabled, and what mode it is in.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800151 &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;,
152 &quot;defaultKeySpecs&quot;: [ # Specifies parameters for generating initial DnsKeys for this ManagedZone. Can only be changed while the state is OFF.
153 { # Parameters for DnsKey key generation. Used for generating initial keys for a new ManagedZone and as default when adding a new DnsKey.
154 &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;,
155 &quot;keyLength&quot;: 42, # Length of the keys in bits.
156 &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, will only be used to sign resource record sets of type DNSKEY. Zone signing keys do not have the Secure Entry Point flag set and will be used to sign all other types of resource record sets.
157 &quot;algorithm&quot;: &quot;A String&quot;, # String mnemonic specifying the DNSSEC algorithm of this key.
158 },
159 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700160 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700161 &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.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800162 &quot;nameServers&quot;: [ # Delegate your managed_zone to these virtual name servers; defined by the server (output only)
163 &quot;A String&quot;,
164 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800165 &quot;privateVisibilityConfig&quot;: { # For privately visible zones, the set of Virtual Private Cloud resources that the zone is visible from.
166 &quot;networks&quot;: [ # The list of VPC networks that can see this zone.
167 {
168 &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to bind to. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
169 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;,
170 },
171 ],
172 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;,
173 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700174}
175
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700176 clientOperationId: string, For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700177 x__xgafv: string, V1 error format.
178 Allowed values
179 1 - v1 error format
180 2 - v2 error format
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000181
182Returns:
183 An object of the form:
184
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700185 { # 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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700186 &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.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800187 &quot;dnsName&quot;: &quot;A String&quot;, # The DNS name of this managed zone, for instance &quot;example.com.&quot;.
188 &quot;reverseLookupConfig&quot;: { # The presence of this field indicates that this is a managed reverse lookup zone and Cloud DNS will resolve reverse lookup queries using automatically configured records for VPC resources. This only applies to networks listed under private_visibility_config.
189 &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;,
190 },
191 &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.
192 &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;,
193 &quot;targetNetwork&quot;: { # The network with which to peer.
194 &quot;kind&quot;: &quot;dns#managedZonePeeringConfigTargetNetwork&quot;,
195 &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}
196 &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.
197 },
198 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800199 &quot;labels&quot;: { # User labels.
200 &quot;a_key&quot;: &quot;A String&quot;,
201 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800202 &quot;kind&quot;: &quot;dns#managedZone&quot;,
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800203 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700204 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;,
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800205 &quot;targetNameServers&quot;: [ # List of target name servers to forward to. Cloud DNS will select the best available name server if more than one target is given.
206 {
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800207 &quot;ipv4Address&quot;: &quot;A String&quot;, # IPv4 address of a target name server.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800208 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;,
209 &quot;forwardingPath&quot;: &quot;A String&quot;, # Forwarding path for this NameServerTarget. If unset or set to DEFAULT, Cloud DNS will make forwarding decision based on address ranges, i.e. RFC1918 addresses go to the VPC, non-RFC1918 addresses go to the Internet. When set to PRIVATE, Cloud DNS will always send queries through VPC for this target.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800210 },
211 ],
212 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800213 &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.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800214 &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 will leave this field unset.
215 &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only)
216 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700217 &quot;dnssecConfig&quot;: { # DNSSEC configuration.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800218 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700219 &quot;state&quot;: &quot;A String&quot;, # Specifies whether DNSSEC is enabled, and what mode it is in.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800220 &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;,
221 &quot;defaultKeySpecs&quot;: [ # Specifies parameters for generating initial DnsKeys for this ManagedZone. Can only be changed while the state is OFF.
222 { # Parameters for DnsKey key generation. Used for generating initial keys for a new ManagedZone and as default when adding a new DnsKey.
223 &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;,
224 &quot;keyLength&quot;: 42, # Length of the keys in bits.
225 &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, will only be used to sign resource record sets of type DNSKEY. Zone signing keys do not have the Secure Entry Point flag set and will be used to sign all other types of resource record sets.
226 &quot;algorithm&quot;: &quot;A String&quot;, # String mnemonic specifying the DNSSEC algorithm of this key.
227 },
228 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700229 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700230 &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.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800231 &quot;nameServers&quot;: [ # Delegate your managed_zone to these virtual name servers; defined by the server (output only)
232 &quot;A String&quot;,
233 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800234 &quot;privateVisibilityConfig&quot;: { # For privately visible zones, the set of Virtual Private Cloud resources that the zone is visible from.
235 &quot;networks&quot;: [ # The list of VPC networks that can see this zone.
236 {
237 &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to bind to. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
238 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;,
239 },
240 ],
241 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;,
242 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700243 }</pre>
244</div>
245
246<div class="method">
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700247 <code class="details" id="delete">delete(project, managedZone, clientOperationId=None, x__xgafv=None)</code>
248 <pre>Delete a previously created ManagedZone.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700249
250Args:
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700251 project: string, Identifies the project addressed by this request. (required)
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700252 managedZone: string, Identifies the managed zone addressed by this request. Can be the managed zone name or ID. (required)
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700253 clientOperationId: string, For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700254 x__xgafv: string, V1 error format.
255 Allowed values
256 1 - v1 error format
257 2 - v2 error format
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700258</pre>
259</div>
260
261<div class="method">
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700262 <code class="details" id="get">get(project, managedZone, clientOperationId=None, x__xgafv=None)</code>
263 <pre>Fetch the representation of an existing ManagedZone.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700264
265Args:
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700266 project: string, Identifies the project addressed by this request. (required)
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700267 managedZone: string, Identifies the managed zone addressed by this request. Can be the managed zone name or ID. (required)
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700268 clientOperationId: string, For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700269 x__xgafv: string, V1 error format.
270 Allowed values
271 1 - v1 error format
272 2 - v2 error format
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700273
274Returns:
275 An object of the form:
276
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700277 { # 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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700278 &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.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800279 &quot;dnsName&quot;: &quot;A String&quot;, # The DNS name of this managed zone, for instance &quot;example.com.&quot;.
280 &quot;reverseLookupConfig&quot;: { # The presence of this field indicates that this is a managed reverse lookup zone and Cloud DNS will resolve reverse lookup queries using automatically configured records for VPC resources. This only applies to networks listed under private_visibility_config.
281 &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;,
282 },
283 &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.
284 &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;,
285 &quot;targetNetwork&quot;: { # The network with which to peer.
286 &quot;kind&quot;: &quot;dns#managedZonePeeringConfigTargetNetwork&quot;,
287 &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}
288 &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.
289 },
290 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800291 &quot;labels&quot;: { # User labels.
292 &quot;a_key&quot;: &quot;A String&quot;,
293 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800294 &quot;kind&quot;: &quot;dns#managedZone&quot;,
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800295 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700296 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;,
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800297 &quot;targetNameServers&quot;: [ # List of target name servers to forward to. Cloud DNS will select the best available name server if more than one target is given.
298 {
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800299 &quot;ipv4Address&quot;: &quot;A String&quot;, # IPv4 address of a target name server.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800300 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;,
301 &quot;forwardingPath&quot;: &quot;A String&quot;, # Forwarding path for this NameServerTarget. If unset or set to DEFAULT, Cloud DNS will make forwarding decision based on address ranges, i.e. RFC1918 addresses go to the VPC, non-RFC1918 addresses go to the Internet. When set to PRIVATE, Cloud DNS will always send queries through VPC for this target.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800302 },
303 ],
304 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800305 &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.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800306 &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 will leave this field unset.
307 &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only)
308 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700309 &quot;dnssecConfig&quot;: { # DNSSEC configuration.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800310 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700311 &quot;state&quot;: &quot;A String&quot;, # Specifies whether DNSSEC is enabled, and what mode it is in.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800312 &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;,
313 &quot;defaultKeySpecs&quot;: [ # Specifies parameters for generating initial DnsKeys for this ManagedZone. Can only be changed while the state is OFF.
314 { # Parameters for DnsKey key generation. Used for generating initial keys for a new ManagedZone and as default when adding a new DnsKey.
315 &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;,
316 &quot;keyLength&quot;: 42, # Length of the keys in bits.
317 &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, will only be used to sign resource record sets of type DNSKEY. Zone signing keys do not have the Secure Entry Point flag set and will be used to sign all other types of resource record sets.
318 &quot;algorithm&quot;: &quot;A String&quot;, # String mnemonic specifying the DNSSEC algorithm of this key.
319 },
320 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700321 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700322 &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.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800323 &quot;nameServers&quot;: [ # Delegate your managed_zone to these virtual name servers; defined by the server (output only)
324 &quot;A String&quot;,
325 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800326 &quot;privateVisibilityConfig&quot;: { # For privately visible zones, the set of Virtual Private Cloud resources that the zone is visible from.
327 &quot;networks&quot;: [ # The list of VPC networks that can see this zone.
328 {
329 &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to bind to. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
330 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;,
331 },
332 ],
333 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;,
334 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700335 }</pre>
336</div>
337
338<div class="method">
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800339 <code class="details" id="list">list(project, pageToken=None, dnsName=None, maxResults=None, x__xgafv=None)</code>
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700340 <pre>Enumerate ManagedZones that have been created but not yet deleted.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700341
342Args:
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700343 project: string, Identifies the project addressed by this request. (required)
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700344 pageToken: string, Optional. A tag returned by a previous list request that was truncated. Use this parameter to continue a previous list request.
345 dnsName: string, Restricts the list to return only zones with this domain name.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800346 maxResults: integer, Optional. Maximum number of results to be returned. If unspecified, the server will decide how many results to return.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700347 x__xgafv: string, V1 error format.
348 Allowed values
349 1 - v1 error format
350 2 - v2 error format
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700351
352Returns:
353 An object of the form:
354
355 {
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700356 &quot;kind&quot;: &quot;dns#managedZonesListResponse&quot;, # Type of resource.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800357 &quot;header&quot;: { # Elements common to every response.
358 &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).
359 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700360 &quot;managedZones&quot;: [ # The managed zone resources.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700361 { # 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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700362 &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.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800363 &quot;dnsName&quot;: &quot;A String&quot;, # The DNS name of this managed zone, for instance &quot;example.com.&quot;.
364 &quot;reverseLookupConfig&quot;: { # The presence of this field indicates that this is a managed reverse lookup zone and Cloud DNS will resolve reverse lookup queries using automatically configured records for VPC resources. This only applies to networks listed under private_visibility_config.
365 &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;,
366 },
367 &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.
368 &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;,
369 &quot;targetNetwork&quot;: { # The network with which to peer.
370 &quot;kind&quot;: &quot;dns#managedZonePeeringConfigTargetNetwork&quot;,
371 &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}
372 &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.
373 },
374 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800375 &quot;labels&quot;: { # User labels.
376 &quot;a_key&quot;: &quot;A String&quot;,
377 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800378 &quot;kind&quot;: &quot;dns#managedZone&quot;,
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800379 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700380 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;,
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800381 &quot;targetNameServers&quot;: [ # List of target name servers to forward to. Cloud DNS will select the best available name server if more than one target is given.
382 {
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800383 &quot;ipv4Address&quot;: &quot;A String&quot;, # IPv4 address of a target name server.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800384 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;,
385 &quot;forwardingPath&quot;: &quot;A String&quot;, # Forwarding path for this NameServerTarget. If unset or set to DEFAULT, Cloud DNS will make forwarding decision based on address ranges, i.e. RFC1918 addresses go to the VPC, non-RFC1918 addresses go to the Internet. When set to PRIVATE, Cloud DNS will always send queries through VPC for this target.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800386 },
387 ],
388 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800389 &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.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800390 &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 will leave this field unset.
391 &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only)
392 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700393 &quot;dnssecConfig&quot;: { # DNSSEC configuration.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800394 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700395 &quot;state&quot;: &quot;A String&quot;, # Specifies whether DNSSEC is enabled, and what mode it is in.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800396 &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;,
397 &quot;defaultKeySpecs&quot;: [ # Specifies parameters for generating initial DnsKeys for this ManagedZone. Can only be changed while the state is OFF.
398 { # Parameters for DnsKey key generation. Used for generating initial keys for a new ManagedZone and as default when adding a new DnsKey.
399 &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;,
400 &quot;keyLength&quot;: 42, # Length of the keys in bits.
401 &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, will only be used to sign resource record sets of type DNSKEY. Zone signing keys do not have the Secure Entry Point flag set and will be used to sign all other types of resource record sets.
402 &quot;algorithm&quot;: &quot;A String&quot;, # String mnemonic specifying the DNSSEC algorithm of this key.
403 },
404 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700405 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700406 &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.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800407 &quot;nameServers&quot;: [ # Delegate your managed_zone to these virtual name servers; defined by the server (output only)
408 &quot;A String&quot;,
409 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800410 &quot;privateVisibilityConfig&quot;: { # For privately visible zones, the set of Virtual Private Cloud resources that the zone is visible from.
411 &quot;networks&quot;: [ # The list of VPC networks that can see this zone.
412 {
413 &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to bind to. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
414 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;,
415 },
416 ],
417 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;,
418 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700419 },
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000420 ],
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800421 &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. In this way you can retrieve 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 will be an inconsistent view of the collection. There is no way to retrieve a consistent snapshot of a collection larger than the maximum page size.
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000422 }</pre>
423</div>
424
425<div class="method">
426 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
427 <pre>Retrieves the next page of results.
428
429Args:
430 previous_request: The request for the previous page. (required)
431 previous_response: The response from the request for the previous page. (required)
432
433Returns:
Bu Sun Kim65020912020-05-20 12:08:20 -0700434 A request object that you can call &#x27;execute()&#x27; on to request the next
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000435 page. Returns None if there are no more items in the collection.
436 </pre>
437</div>
438
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700439<div class="method">
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700440 <code class="details" id="patch">patch(project, managedZone, body=None, clientOperationId=None, x__xgafv=None)</code>
441 <pre>Apply a partial update to an existing ManagedZone.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700442
443Args:
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700444 project: string, Identifies the project addressed by this request. (required)
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700445 managedZone: string, Identifies the managed zone addressed by this request. Can be the managed zone name or ID. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700446 body: object, The request body.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700447 The object takes the form of:
448
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700449{ # 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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700450 &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.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800451 &quot;dnsName&quot;: &quot;A String&quot;, # The DNS name of this managed zone, for instance &quot;example.com.&quot;.
452 &quot;reverseLookupConfig&quot;: { # The presence of this field indicates that this is a managed reverse lookup zone and Cloud DNS will resolve reverse lookup queries using automatically configured records for VPC resources. This only applies to networks listed under private_visibility_config.
453 &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;,
454 },
455 &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.
456 &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;,
457 &quot;targetNetwork&quot;: { # The network with which to peer.
458 &quot;kind&quot;: &quot;dns#managedZonePeeringConfigTargetNetwork&quot;,
459 &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}
460 &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.
461 },
462 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800463 &quot;labels&quot;: { # User labels.
464 &quot;a_key&quot;: &quot;A String&quot;,
465 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800466 &quot;kind&quot;: &quot;dns#managedZone&quot;,
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800467 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700468 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;,
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800469 &quot;targetNameServers&quot;: [ # List of target name servers to forward to. Cloud DNS will select the best available name server if more than one target is given.
470 {
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800471 &quot;ipv4Address&quot;: &quot;A String&quot;, # IPv4 address of a target name server.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800472 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;,
473 &quot;forwardingPath&quot;: &quot;A String&quot;, # Forwarding path for this NameServerTarget. If unset or set to DEFAULT, Cloud DNS will make forwarding decision based on address ranges, i.e. RFC1918 addresses go to the VPC, non-RFC1918 addresses go to the Internet. When set to PRIVATE, Cloud DNS will always send queries through VPC for this target.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800474 },
475 ],
476 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800477 &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.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800478 &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 will leave this field unset.
479 &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only)
480 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700481 &quot;dnssecConfig&quot;: { # DNSSEC configuration.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800482 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700483 &quot;state&quot;: &quot;A String&quot;, # Specifies whether DNSSEC is enabled, and what mode it is in.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800484 &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;,
485 &quot;defaultKeySpecs&quot;: [ # Specifies parameters for generating initial DnsKeys for this ManagedZone. Can only be changed while the state is OFF.
486 { # Parameters for DnsKey key generation. Used for generating initial keys for a new ManagedZone and as default when adding a new DnsKey.
487 &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;,
488 &quot;keyLength&quot;: 42, # Length of the keys in bits.
489 &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, will only be used to sign resource record sets of type DNSKEY. Zone signing keys do not have the Secure Entry Point flag set and will be used to sign all other types of resource record sets.
490 &quot;algorithm&quot;: &quot;A String&quot;, # String mnemonic specifying the DNSSEC algorithm of this key.
491 },
492 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700493 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700494 &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.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800495 &quot;nameServers&quot;: [ # Delegate your managed_zone to these virtual name servers; defined by the server (output only)
496 &quot;A String&quot;,
497 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800498 &quot;privateVisibilityConfig&quot;: { # For privately visible zones, the set of Virtual Private Cloud resources that the zone is visible from.
499 &quot;networks&quot;: [ # The list of VPC networks that can see this zone.
500 {
501 &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to bind to. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
502 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;,
503 },
504 ],
505 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;,
506 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700507}
508
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700509 clientOperationId: string, For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700510 x__xgafv: string, V1 error format.
511 Allowed values
512 1 - v1 error format
513 2 - v2 error format
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700514
515Returns:
516 An object of the form:
517
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700518 { # 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.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800519 &quot;type&quot;: &quot;A String&quot;, # Type of the operation. Operations include insert, update, and delete (output only).
520 &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)
521 &quot;zoneContext&quot;: { # Only populated if the operation targeted a ManagedZone (output only).
522 &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.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800523 &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.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800524 &quot;dnsName&quot;: &quot;A String&quot;, # The DNS name of this managed zone, for instance &quot;example.com.&quot;.
525 &quot;reverseLookupConfig&quot;: { # The presence of this field indicates that this is a managed reverse lookup zone and Cloud DNS will resolve reverse lookup queries using automatically configured records for VPC resources. This only applies to networks listed under private_visibility_config.
526 &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;,
527 },
528 &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.
529 &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;,
530 &quot;targetNetwork&quot;: { # The network with which to peer.
531 &quot;kind&quot;: &quot;dns#managedZonePeeringConfigTargetNetwork&quot;,
532 &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}
533 &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.
534 },
535 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800536 &quot;labels&quot;: { # User labels.
537 &quot;a_key&quot;: &quot;A String&quot;,
538 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800539 &quot;kind&quot;: &quot;dns#managedZone&quot;,
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800540 &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.
541 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;,
542 &quot;targetNameServers&quot;: [ # List of target name servers to forward to. Cloud DNS will select the best available name server if more than one target is given.
543 {
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800544 &quot;ipv4Address&quot;: &quot;A String&quot;, # IPv4 address of a target name server.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800545 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;,
546 &quot;forwardingPath&quot;: &quot;A String&quot;, # Forwarding path for this NameServerTarget. If unset or set to DEFAULT, Cloud DNS will make forwarding decision based on address ranges, i.e. RFC1918 addresses go to the VPC, non-RFC1918 addresses go to the Internet. When set to PRIVATE, Cloud DNS will always send queries through VPC for this target.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800547 },
548 ],
549 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800550 &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.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800551 &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 will leave this field unset.
552 &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only)
553 &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.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800554 &quot;dnssecConfig&quot;: { # DNSSEC configuration.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800555 &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.
556 &quot;state&quot;: &quot;A String&quot;, # Specifies whether DNSSEC is enabled, and what mode it is in.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800557 &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;,
558 &quot;defaultKeySpecs&quot;: [ # Specifies parameters for generating initial DnsKeys for this ManagedZone. Can only be changed while the state is OFF.
559 { # Parameters for DnsKey key generation. Used for generating initial keys for a new ManagedZone and as default when adding a new DnsKey.
560 &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;,
561 &quot;keyLength&quot;: 42, # Length of the keys in bits.
562 &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, will only be used to sign resource record sets of type DNSKEY. Zone signing keys do not have the Secure Entry Point flag set and will be used to sign all other types of resource record sets.
563 &quot;algorithm&quot;: &quot;A String&quot;, # String mnemonic specifying the DNSSEC algorithm of this key.
564 },
565 ],
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800566 },
567 &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.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800568 &quot;nameServers&quot;: [ # Delegate your managed_zone to these virtual name servers; defined by the server (output only)
569 &quot;A String&quot;,
570 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800571 &quot;privateVisibilityConfig&quot;: { # For privately visible zones, the set of Virtual Private Cloud resources that the zone is visible from.
572 &quot;networks&quot;: [ # The list of VPC networks that can see this zone.
573 {
574 &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to bind to. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
575 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;,
576 },
577 ],
578 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;,
579 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800580 },
581 &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.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800582 &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.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800583 &quot;dnsName&quot;: &quot;A String&quot;, # The DNS name of this managed zone, for instance &quot;example.com.&quot;.
584 &quot;reverseLookupConfig&quot;: { # The presence of this field indicates that this is a managed reverse lookup zone and Cloud DNS will resolve reverse lookup queries using automatically configured records for VPC resources. This only applies to networks listed under private_visibility_config.
585 &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;,
586 },
587 &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.
588 &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;,
589 &quot;targetNetwork&quot;: { # The network with which to peer.
590 &quot;kind&quot;: &quot;dns#managedZonePeeringConfigTargetNetwork&quot;,
591 &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}
592 &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.
593 },
594 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800595 &quot;labels&quot;: { # User labels.
596 &quot;a_key&quot;: &quot;A String&quot;,
597 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800598 &quot;kind&quot;: &quot;dns#managedZone&quot;,
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800599 &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.
600 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;,
601 &quot;targetNameServers&quot;: [ # List of target name servers to forward to. Cloud DNS will select the best available name server if more than one target is given.
602 {
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800603 &quot;ipv4Address&quot;: &quot;A String&quot;, # IPv4 address of a target name server.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800604 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;,
605 &quot;forwardingPath&quot;: &quot;A String&quot;, # Forwarding path for this NameServerTarget. If unset or set to DEFAULT, Cloud DNS will make forwarding decision based on address ranges, i.e. RFC1918 addresses go to the VPC, non-RFC1918 addresses go to the Internet. When set to PRIVATE, Cloud DNS will always send queries through VPC for this target.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800606 },
607 ],
608 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800609 &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.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800610 &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 will leave this field unset.
611 &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only)
612 &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.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800613 &quot;dnssecConfig&quot;: { # DNSSEC configuration.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800614 &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.
615 &quot;state&quot;: &quot;A String&quot;, # Specifies whether DNSSEC is enabled, and what mode it is in.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800616 &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;,
617 &quot;defaultKeySpecs&quot;: [ # Specifies parameters for generating initial DnsKeys for this ManagedZone. Can only be changed while the state is OFF.
618 { # Parameters for DnsKey key generation. Used for generating initial keys for a new ManagedZone and as default when adding a new DnsKey.
619 &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;,
620 &quot;keyLength&quot;: 42, # Length of the keys in bits.
621 &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, will only be used to sign resource record sets of type DNSKEY. Zone signing keys do not have the Secure Entry Point flag set and will be used to sign all other types of resource record sets.
622 &quot;algorithm&quot;: &quot;A String&quot;, # String mnemonic specifying the DNSSEC algorithm of this key.
623 },
624 ],
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800625 },
626 &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.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800627 &quot;nameServers&quot;: [ # Delegate your managed_zone to these virtual name servers; defined by the server (output only)
628 &quot;A String&quot;,
629 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800630 &quot;privateVisibilityConfig&quot;: { # For privately visible zones, the set of Virtual Private Cloud resources that the zone is visible from.
631 &quot;networks&quot;: [ # The list of VPC networks that can see this zone.
632 {
633 &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to bind to. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
634 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;,
635 },
636 ],
637 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;,
638 },
639 },
640 },
641 &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).
642 &quot;kind&quot;: &quot;dns#operation&quot;,
643 &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.
644 &quot;dnsKeyContext&quot;: { # Only populated if the operation targeted a DnsKey (output only).
645 &quot;newValue&quot;: { # A DNSSEC key pair. # The post-operation DnsKey resource.
646 &quot;kind&quot;: &quot;dns#dnsKey&quot;,
647 &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.
648 &quot;isActive&quot;: True or False, # Active keys will be used to sign subsequent changes to the ManagedZone. Inactive keys will still be present as DNSKEY Resource Records for the use of resolvers validating existing signatures.
649 &quot;keyLength&quot;: 42, # Length of the key in bits. Specified at creation time then immutable.
650 &quot;algorithm&quot;: &quot;A String&quot;, # String mnemonic specifying the DNSSEC algorithm of this key. Immutable after creation time.
651 &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.
652 &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.
653 {
654 &quot;digest&quot;: &quot;A String&quot;, # The base-16 encoded bytes of this digest. Suitable for use in a DS resource record.
655 &quot;type&quot;: &quot;A String&quot;, # Specifies the algorithm used to calculate this digest.
656 },
657 ],
658 &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.
659 &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only).
660 &quot;publicKey&quot;: &quot;A String&quot;, # Base64 encoded public half of this key. Output only.
661 &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, will be used to sign only resource record sets of type DNSKEY. Otherwise, the Secure Entry Point flag will be cleared and this key will be used to sign only resource record sets of other types. Immutable after creation time.
662 },
663 &quot;oldValue&quot;: { # A DNSSEC key pair. # The pre-operation DnsKey resource.
664 &quot;kind&quot;: &quot;dns#dnsKey&quot;,
665 &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.
666 &quot;isActive&quot;: True or False, # Active keys will be used to sign subsequent changes to the ManagedZone. Inactive keys will still be present as DNSKEY Resource Records for the use of resolvers validating existing signatures.
667 &quot;keyLength&quot;: 42, # Length of the key in bits. Specified at creation time then immutable.
668 &quot;algorithm&quot;: &quot;A String&quot;, # String mnemonic specifying the DNSSEC algorithm of this key. Immutable after creation time.
669 &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.
670 &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.
671 {
672 &quot;digest&quot;: &quot;A String&quot;, # The base-16 encoded bytes of this digest. Suitable for use in a DS resource record.
673 &quot;type&quot;: &quot;A String&quot;, # Specifies the algorithm used to calculate this digest.
674 },
675 ],
676 &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.
677 &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only).
678 &quot;publicKey&quot;: &quot;A String&quot;, # Base64 encoded public half of this key. Output only.
679 &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, will be used to sign only resource record sets of type DNSKEY. Otherwise, the Secure Entry Point flag will be cleared and this key will be used to sign only resource record sets of other types. Immutable after creation time.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800680 },
681 },
682 &quot;user&quot;: &quot;A String&quot;, # User who requested the operation, for example: user@example.com. cloud-dns-system for operations automatically done by the system. (output only)
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700683 }</pre>
684</div>
685
686<div class="method">
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700687 <code class="details" id="update">update(project, managedZone, body=None, clientOperationId=None, x__xgafv=None)</code>
688 <pre>Update an existing ManagedZone.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700689
690Args:
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700691 project: string, Identifies the project addressed by this request. (required)
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700692 managedZone: string, Identifies the managed zone addressed by this request. Can be the managed zone name or ID. (required)
Dan O'Mearadd494642020-05-01 07:42:23 -0700693 body: object, The request body.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700694 The object takes the form of:
695
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700696{ # 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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700697 &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.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800698 &quot;dnsName&quot;: &quot;A String&quot;, # The DNS name of this managed zone, for instance &quot;example.com.&quot;.
699 &quot;reverseLookupConfig&quot;: { # The presence of this field indicates that this is a managed reverse lookup zone and Cloud DNS will resolve reverse lookup queries using automatically configured records for VPC resources. This only applies to networks listed under private_visibility_config.
700 &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;,
701 },
702 &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.
703 &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;,
704 &quot;targetNetwork&quot;: { # The network with which to peer.
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 &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.
708 },
709 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800710 &quot;labels&quot;: { # User labels.
711 &quot;a_key&quot;: &quot;A String&quot;,
712 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800713 &quot;kind&quot;: &quot;dns#managedZone&quot;,
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800714 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700715 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;,
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800716 &quot;targetNameServers&quot;: [ # List of target name servers to forward to. Cloud DNS will select the best available name server if more than one target is given.
717 {
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800718 &quot;ipv4Address&quot;: &quot;A String&quot;, # IPv4 address of a target name server.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800719 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;,
720 &quot;forwardingPath&quot;: &quot;A String&quot;, # Forwarding path for this NameServerTarget. If unset or set to DEFAULT, Cloud DNS will make forwarding decision based on address ranges, i.e. RFC1918 addresses go to the VPC, non-RFC1918 addresses go to the Internet. When set to PRIVATE, Cloud DNS will always send queries through VPC for this target.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800721 },
722 ],
723 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800724 &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.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800725 &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 will leave this field unset.
726 &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only)
727 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700728 &quot;dnssecConfig&quot;: { # DNSSEC configuration.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800729 &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.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700730 &quot;state&quot;: &quot;A String&quot;, # Specifies whether DNSSEC is enabled, and what mode it is in.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800731 &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;,
732 &quot;defaultKeySpecs&quot;: [ # Specifies parameters for generating initial DnsKeys for this ManagedZone. Can only be changed while the state is OFF.
733 { # Parameters for DnsKey key generation. Used for generating initial keys for a new ManagedZone and as default when adding a new DnsKey.
734 &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;,
735 &quot;keyLength&quot;: 42, # Length of the keys in bits.
736 &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, will only be used to sign resource record sets of type DNSKEY. Zone signing keys do not have the Secure Entry Point flag set and will be used to sign all other types of resource record sets.
737 &quot;algorithm&quot;: &quot;A String&quot;, # String mnemonic specifying the DNSSEC algorithm of this key.
738 },
739 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700740 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700741 &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.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800742 &quot;nameServers&quot;: [ # Delegate your managed_zone to these virtual name servers; defined by the server (output only)
743 &quot;A String&quot;,
744 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800745 &quot;privateVisibilityConfig&quot;: { # For privately visible zones, the set of Virtual Private Cloud resources that the zone is visible from.
746 &quot;networks&quot;: [ # The list of VPC networks that can see this zone.
747 {
748 &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to bind to. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
749 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;,
750 },
751 ],
752 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;,
753 },
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700754}
755
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700756 clientOperationId: string, For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700757 x__xgafv: string, V1 error format.
758 Allowed values
759 1 - v1 error format
760 2 - v2 error format
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700761
762Returns:
763 An object of the form:
764
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700765 { # 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.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800766 &quot;type&quot;: &quot;A String&quot;, # Type of the operation. Operations include insert, update, and delete (output only).
767 &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)
768 &quot;zoneContext&quot;: { # Only populated if the operation targeted a ManagedZone (output only).
769 &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.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800770 &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.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800771 &quot;dnsName&quot;: &quot;A String&quot;, # The DNS name of this managed zone, for instance &quot;example.com.&quot;.
772 &quot;reverseLookupConfig&quot;: { # The presence of this field indicates that this is a managed reverse lookup zone and Cloud DNS will resolve reverse lookup queries using automatically configured records for VPC resources. This only applies to networks listed under private_visibility_config.
773 &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;,
774 },
775 &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.
776 &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;,
777 &quot;targetNetwork&quot;: { # The network with which to peer.
778 &quot;kind&quot;: &quot;dns#managedZonePeeringConfigTargetNetwork&quot;,
779 &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}
780 &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.
781 },
782 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800783 &quot;labels&quot;: { # User labels.
784 &quot;a_key&quot;: &quot;A String&quot;,
785 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800786 &quot;kind&quot;: &quot;dns#managedZone&quot;,
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800787 &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.
788 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;,
789 &quot;targetNameServers&quot;: [ # List of target name servers to forward to. Cloud DNS will select the best available name server if more than one target is given.
790 {
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800791 &quot;ipv4Address&quot;: &quot;A String&quot;, # IPv4 address of a target name server.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800792 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;,
793 &quot;forwardingPath&quot;: &quot;A String&quot;, # Forwarding path for this NameServerTarget. If unset or set to DEFAULT, Cloud DNS will make forwarding decision based on address ranges, i.e. RFC1918 addresses go to the VPC, non-RFC1918 addresses go to the Internet. When set to PRIVATE, Cloud DNS will always send queries through VPC for this target.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800794 },
795 ],
796 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800797 &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.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800798 &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 will leave this field unset.
799 &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only)
800 &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.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800801 &quot;dnssecConfig&quot;: { # DNSSEC configuration.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800802 &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.
803 &quot;state&quot;: &quot;A String&quot;, # Specifies whether DNSSEC is enabled, and what mode it is in.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800804 &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;,
805 &quot;defaultKeySpecs&quot;: [ # Specifies parameters for generating initial DnsKeys for this ManagedZone. Can only be changed while the state is OFF.
806 { # Parameters for DnsKey key generation. Used for generating initial keys for a new ManagedZone and as default when adding a new DnsKey.
807 &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;,
808 &quot;keyLength&quot;: 42, # Length of the keys in bits.
809 &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, will only be used to sign resource record sets of type DNSKEY. Zone signing keys do not have the Secure Entry Point flag set and will be used to sign all other types of resource record sets.
810 &quot;algorithm&quot;: &quot;A String&quot;, # String mnemonic specifying the DNSSEC algorithm of this key.
811 },
812 ],
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800813 },
814 &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.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800815 &quot;nameServers&quot;: [ # Delegate your managed_zone to these virtual name servers; defined by the server (output only)
816 &quot;A String&quot;,
817 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800818 &quot;privateVisibilityConfig&quot;: { # For privately visible zones, the set of Virtual Private Cloud resources that the zone is visible from.
819 &quot;networks&quot;: [ # The list of VPC networks that can see this zone.
820 {
821 &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to bind to. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
822 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;,
823 },
824 ],
825 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;,
826 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800827 },
828 &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.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800829 &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.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800830 &quot;dnsName&quot;: &quot;A String&quot;, # The DNS name of this managed zone, for instance &quot;example.com.&quot;.
831 &quot;reverseLookupConfig&quot;: { # The presence of this field indicates that this is a managed reverse lookup zone and Cloud DNS will resolve reverse lookup queries using automatically configured records for VPC resources. This only applies to networks listed under private_visibility_config.
832 &quot;kind&quot;: &quot;dns#managedZoneReverseLookupConfig&quot;,
833 },
834 &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.
835 &quot;kind&quot;: &quot;dns#managedZonePeeringConfig&quot;,
836 &quot;targetNetwork&quot;: { # The network with which to peer.
837 &quot;kind&quot;: &quot;dns#managedZonePeeringConfigTargetNetwork&quot;,
838 &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}
839 &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.
840 },
841 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800842 &quot;labels&quot;: { # User labels.
843 &quot;a_key&quot;: &quot;A String&quot;,
844 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800845 &quot;kind&quot;: &quot;dns#managedZone&quot;,
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800846 &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.
847 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfig&quot;,
848 &quot;targetNameServers&quot;: [ # List of target name servers to forward to. Cloud DNS will select the best available name server if more than one target is given.
849 {
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800850 &quot;ipv4Address&quot;: &quot;A String&quot;, # IPv4 address of a target name server.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800851 &quot;kind&quot;: &quot;dns#managedZoneForwardingConfigNameServerTarget&quot;,
852 &quot;forwardingPath&quot;: &quot;A String&quot;, # Forwarding path for this NameServerTarget. If unset or set to DEFAULT, Cloud DNS will make forwarding decision based on address ranges, i.e. RFC1918 addresses go to the VPC, non-RFC1918 addresses go to the Internet. When set to PRIVATE, Cloud DNS will always send queries through VPC for this target.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800853 },
854 ],
855 },
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800856 &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.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800857 &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 will leave this field unset.
858 &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only)
859 &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.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800860 &quot;dnssecConfig&quot;: { # DNSSEC configuration.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800861 &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.
862 &quot;state&quot;: &quot;A String&quot;, # Specifies whether DNSSEC is enabled, and what mode it is in.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800863 &quot;kind&quot;: &quot;dns#managedZoneDnsSecConfig&quot;,
864 &quot;defaultKeySpecs&quot;: [ # Specifies parameters for generating initial DnsKeys for this ManagedZone. Can only be changed while the state is OFF.
865 { # Parameters for DnsKey key generation. Used for generating initial keys for a new ManagedZone and as default when adding a new DnsKey.
866 &quot;kind&quot;: &quot;dns#dnsKeySpec&quot;,
867 &quot;keyLength&quot;: 42, # Length of the keys in bits.
868 &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, will only be used to sign resource record sets of type DNSKEY. Zone signing keys do not have the Secure Entry Point flag set and will be used to sign all other types of resource record sets.
869 &quot;algorithm&quot;: &quot;A String&quot;, # String mnemonic specifying the DNSSEC algorithm of this key.
870 },
871 ],
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800872 },
873 &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.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800874 &quot;nameServers&quot;: [ # Delegate your managed_zone to these virtual name servers; defined by the server (output only)
875 &quot;A String&quot;,
876 ],
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800877 &quot;privateVisibilityConfig&quot;: { # For privately visible zones, the set of Virtual Private Cloud resources that the zone is visible from.
878 &quot;networks&quot;: [ # The list of VPC networks that can see this zone.
879 {
880 &quot;networkUrl&quot;: &quot;A String&quot;, # The fully qualified URL of the VPC network to bind to. This should be formatted like https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}
881 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfigNetwork&quot;,
882 },
883 ],
884 &quot;kind&quot;: &quot;dns#managedZonePrivateVisibilityConfig&quot;,
885 },
886 },
887 },
888 &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).
889 &quot;kind&quot;: &quot;dns#operation&quot;,
890 &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.
891 &quot;dnsKeyContext&quot;: { # Only populated if the operation targeted a DnsKey (output only).
892 &quot;newValue&quot;: { # A DNSSEC key pair. # The post-operation DnsKey resource.
893 &quot;kind&quot;: &quot;dns#dnsKey&quot;,
894 &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.
895 &quot;isActive&quot;: True or False, # Active keys will be used to sign subsequent changes to the ManagedZone. Inactive keys will still be present as DNSKEY Resource Records for the use of resolvers validating existing signatures.
896 &quot;keyLength&quot;: 42, # Length of the key in bits. Specified at creation time then immutable.
897 &quot;algorithm&quot;: &quot;A String&quot;, # String mnemonic specifying the DNSSEC algorithm of this key. Immutable after creation time.
898 &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.
899 &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.
900 {
901 &quot;digest&quot;: &quot;A String&quot;, # The base-16 encoded bytes of this digest. Suitable for use in a DS resource record.
902 &quot;type&quot;: &quot;A String&quot;, # Specifies the algorithm used to calculate this digest.
903 },
904 ],
905 &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.
906 &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only).
907 &quot;publicKey&quot;: &quot;A String&quot;, # Base64 encoded public half of this key. Output only.
908 &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, will be used to sign only resource record sets of type DNSKEY. Otherwise, the Secure Entry Point flag will be cleared and this key will be used to sign only resource record sets of other types. Immutable after creation time.
909 },
910 &quot;oldValue&quot;: { # A DNSSEC key pair. # The pre-operation DnsKey resource.
911 &quot;kind&quot;: &quot;dns#dnsKey&quot;,
912 &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.
913 &quot;isActive&quot;: True or False, # Active keys will be used to sign subsequent changes to the ManagedZone. Inactive keys will still be present as DNSKEY Resource Records for the use of resolvers validating existing signatures.
914 &quot;keyLength&quot;: 42, # Length of the key in bits. Specified at creation time then immutable.
915 &quot;algorithm&quot;: &quot;A String&quot;, # String mnemonic specifying the DNSSEC algorithm of this key. Immutable after creation time.
916 &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.
917 &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.
918 {
919 &quot;digest&quot;: &quot;A String&quot;, # The base-16 encoded bytes of this digest. Suitable for use in a DS resource record.
920 &quot;type&quot;: &quot;A String&quot;, # Specifies the algorithm used to calculate this digest.
921 },
922 ],
923 &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.
924 &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only).
925 &quot;publicKey&quot;: &quot;A String&quot;, # Base64 encoded public half of this key. Output only.
926 &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, will be used to sign only resource record sets of type DNSKEY. Otherwise, the Secure Entry Point flag will be cleared and this key will be used to sign only resource record sets of other types. Immutable after creation time.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800927 },
928 },
929 &quot;user&quot;: &quot;A String&quot;, # User who requested the operation, for example: user@example.com. cloud-dns-system for operations automatically done by the system. (output only)
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700930 }</pre>
931</div>
932
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000933</body></html>