blob: 40de0a49e9eded21cfb87eddbc5297de9e9b040f [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.changes.html">changes</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, managedZone, body=None, clientOperationId=None, x__xgafv=None)</a></code></p>
82<p class="firstline">Atomically update the ResourceRecordSet collection.</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="#get">get(project, managedZone, changeId, clientOperationId=None, x__xgafv=None)</a></code></p>
85<p class="firstline">Fetch the representation of an existing Change.</p>
Nathaniel Manista4f877e52015-06-15 16:44:50 +000086<p class="toc_element">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070087 <code><a href="#list">list(project, managedZone, sortBy=None, pageToken=None, maxResults=None, sortOrder=None, x__xgafv=None)</a></code></p>
Bu Sun Kimd059ad82020-07-22 17:02:09 -070088<p class="firstline">Enumerate Changes to a ResourceRecordSet collection.</p>
Nathaniel Manista4f877e52015-06-15 16:44:50 +000089<p class="toc_element">
90 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
91<p class="firstline">Retrieves the next page of results.</p>
92<h3>Method Details</h3>
93<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070094 <code class="details" id="close">close()</code>
95 <pre>Close httplib2 connections.</pre>
96</div>
97
98<div class="method">
Bu Sun Kimd059ad82020-07-22 17:02:09 -070099 <code class="details" id="create">create(project, managedZone, body=None, clientOperationId=None, x__xgafv=None)</code>
100 <pre>Atomically update the ResourceRecordSet collection.
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000101
102Args:
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700103 project: string, Identifies the project addressed by this request. (required)
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700104 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 -0700105 body: object, The request body.
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000106 The object takes the form of:
107
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700108{ # A Change represents a set of ResourceRecordSet additions and deletions applied atomically to a ManagedZone. ResourceRecordSets within a ManagedZone are modified by creating a new Change element in the Changes collection. In turn the Changes collection also records the past modifications to the ResourceRecordSets in a ManagedZone. The current state of the ManagedZone is the sum effect of applying all Change elements in the Changes collection in sequence.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700109 &quot;additions&quot;: [ # Which ResourceRecordSets to add?
110 { # A unit of data that will be returned by the DNS servers.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700111 &quot;ttl&quot;: 42, # Number of seconds that this ResourceRecordSet can be cached by resolvers.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700112 &quot;kind&quot;: &quot;dns#resourceRecordSet&quot;,
113 &quot;signatureRrdatas&quot;: [ # As defined in RFC 4034 (section 3.2).
114 &quot;A String&quot;,
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000115 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700116 &quot;rrdatas&quot;: [ # As defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1) -- see examples.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700117 &quot;A String&quot;,
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000118 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700119 &quot;type&quot;: &quot;A String&quot;, # The identifier of a supported record type. See the list of Supported DNS record types.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700120 &quot;name&quot;: &quot;A String&quot;, # For example, www.example.com.
Bu Sun Kim65020912020-05-20 12:08:20 -0700121 },
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700122 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700123 &quot;isServing&quot;: True or False, # If the DNS queries for the zone will be served.
124 &quot;startTime&quot;: &quot;A String&quot;, # The time that this operation was started by the server (output only). This is in RFC3339 text format.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700125 &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only).
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700126 &quot;kind&quot;: &quot;dns#change&quot;,
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700127 &quot;deletions&quot;: [ # Which ResourceRecordSets to remove? Must match existing data exactly.
128 { # A unit of data that will be returned by the DNS servers.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700129 &quot;ttl&quot;: 42, # Number of seconds that this ResourceRecordSet can be cached by resolvers.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700130 &quot;kind&quot;: &quot;dns#resourceRecordSet&quot;,
131 &quot;signatureRrdatas&quot;: [ # As defined in RFC 4034 (section 3.2).
132 &quot;A String&quot;,
133 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700134 &quot;rrdatas&quot;: [ # As defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1) -- see examples.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700135 &quot;A String&quot;,
136 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700137 &quot;type&quot;: &quot;A String&quot;, # The identifier of a supported record type. See the list of Supported DNS record types.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700138 &quot;name&quot;: &quot;A String&quot;, # For example, www.example.com.
139 },
140 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700141 &quot;status&quot;: &quot;A String&quot;, # Status of the operation (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.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700142}
143
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700144 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 -0700145 x__xgafv: string, V1 error format.
146 Allowed values
147 1 - v1 error format
148 2 - v2 error format
149
150Returns:
151 An object of the form:
152
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700153 { # A Change represents a set of ResourceRecordSet additions and deletions applied atomically to a ManagedZone. ResourceRecordSets within a ManagedZone are modified by creating a new Change element in the Changes collection. In turn the Changes collection also records the past modifications to the ResourceRecordSets in a ManagedZone. The current state of the ManagedZone is the sum effect of applying all Change elements in the Changes collection in sequence.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700154 &quot;additions&quot;: [ # Which ResourceRecordSets to add?
155 { # A unit of data that will be returned by the DNS servers.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700156 &quot;ttl&quot;: 42, # Number of seconds that this ResourceRecordSet can be cached by resolvers.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700157 &quot;kind&quot;: &quot;dns#resourceRecordSet&quot;,
158 &quot;signatureRrdatas&quot;: [ # As defined in RFC 4034 (section 3.2).
159 &quot;A String&quot;,
160 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700161 &quot;rrdatas&quot;: [ # As defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1) -- see examples.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700162 &quot;A String&quot;,
163 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700164 &quot;type&quot;: &quot;A String&quot;, # The identifier of a supported record type. See the list of Supported DNS record types.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700165 &quot;name&quot;: &quot;A String&quot;, # For example, www.example.com.
166 },
167 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700168 &quot;isServing&quot;: True or False, # If the DNS queries for the zone will be served.
169 &quot;startTime&quot;: &quot;A String&quot;, # The time that this operation was started by the server (output only). This is in RFC3339 text format.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700170 &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only).
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700171 &quot;kind&quot;: &quot;dns#change&quot;,
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700172 &quot;deletions&quot;: [ # Which ResourceRecordSets to remove? Must match existing data exactly.
173 { # A unit of data that will be returned by the DNS servers.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700174 &quot;ttl&quot;: 42, # Number of seconds that this ResourceRecordSet can be cached by resolvers.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700175 &quot;kind&quot;: &quot;dns#resourceRecordSet&quot;,
176 &quot;signatureRrdatas&quot;: [ # As defined in RFC 4034 (section 3.2).
177 &quot;A String&quot;,
178 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700179 &quot;rrdatas&quot;: [ # As defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1) -- see examples.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700180 &quot;A String&quot;,
181 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700182 &quot;type&quot;: &quot;A String&quot;, # The identifier of a supported record type. See the list of Supported DNS record types.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700183 &quot;name&quot;: &quot;A String&quot;, # For example, www.example.com.
184 },
185 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700186 &quot;status&quot;: &quot;A String&quot;, # Status of the operation (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.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700187 }</pre>
188</div>
189
190<div class="method">
191 <code class="details" id="get">get(project, managedZone, changeId, clientOperationId=None, x__xgafv=None)</code>
192 <pre>Fetch the representation of an existing Change.
193
194Args:
195 project: string, Identifies the project addressed by this request. (required)
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700196 managedZone: string, Identifies the managed zone addressed by this request. Can be the managed zone name or id. (required)
197 changeId: string, The identifier of the requested change, from a previous ResourceRecordSetsChangeResponse. (required)
198 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 -0700199 x__xgafv: string, V1 error format.
200 Allowed values
201 1 - v1 error format
202 2 - v2 error format
203
204Returns:
205 An object of the form:
206
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700207 { # A Change represents a set of ResourceRecordSet additions and deletions applied atomically to a ManagedZone. ResourceRecordSets within a ManagedZone are modified by creating a new Change element in the Changes collection. In turn the Changes collection also records the past modifications to the ResourceRecordSets in a ManagedZone. The current state of the ManagedZone is the sum effect of applying all Change elements in the Changes collection in sequence.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700208 &quot;additions&quot;: [ # Which ResourceRecordSets to add?
209 { # A unit of data that will be returned by the DNS servers.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700210 &quot;ttl&quot;: 42, # Number of seconds that this ResourceRecordSet can be cached by resolvers.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700211 &quot;kind&quot;: &quot;dns#resourceRecordSet&quot;,
212 &quot;signatureRrdatas&quot;: [ # As defined in RFC 4034 (section 3.2).
213 &quot;A String&quot;,
214 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700215 &quot;rrdatas&quot;: [ # As defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1) -- see examples.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700216 &quot;A String&quot;,
217 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700218 &quot;type&quot;: &quot;A String&quot;, # The identifier of a supported record type. See the list of Supported DNS record types.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700219 &quot;name&quot;: &quot;A String&quot;, # For example, www.example.com.
220 },
221 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700222 &quot;isServing&quot;: True or False, # If the DNS queries for the zone will be served.
223 &quot;startTime&quot;: &quot;A String&quot;, # The time that this operation was started by the server (output only). This is in RFC3339 text format.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700224 &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only).
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700225 &quot;kind&quot;: &quot;dns#change&quot;,
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700226 &quot;deletions&quot;: [ # Which ResourceRecordSets to remove? Must match existing data exactly.
227 { # A unit of data that will be returned by the DNS servers.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700228 &quot;ttl&quot;: 42, # Number of seconds that this ResourceRecordSet can be cached by resolvers.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700229 &quot;kind&quot;: &quot;dns#resourceRecordSet&quot;,
230 &quot;signatureRrdatas&quot;: [ # As defined in RFC 4034 (section 3.2).
231 &quot;A String&quot;,
232 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700233 &quot;rrdatas&quot;: [ # As defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1) -- see examples.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700234 &quot;A String&quot;,
235 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700236 &quot;type&quot;: &quot;A String&quot;, # The identifier of a supported record type. See the list of Supported DNS record types.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700237 &quot;name&quot;: &quot;A String&quot;, # For example, www.example.com.
238 },
239 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700240 &quot;status&quot;: &quot;A String&quot;, # Status of the operation (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.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700241 }</pre>
242</div>
243
244<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700245 <code class="details" id="list">list(project, managedZone, sortBy=None, pageToken=None, maxResults=None, sortOrder=None, x__xgafv=None)</code>
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700246 <pre>Enumerate Changes to a ResourceRecordSet collection.
247
248Args:
249 project: string, Identifies the project addressed by this request. (required)
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700250 managedZone: string, Identifies the managed zone addressed by this request. Can be the managed zone name or id. (required)
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700251 sortBy: string, Sorting criterion. The only supported value is change sequence.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700252 Allowed values
253 changeSequence -
254 pageToken: string, Optional. A tag returned by a previous list request that was truncated. Use this parameter to continue a previous list request.
255 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 -0700256 sortOrder: string, Sorting order direction: &#x27;ascending&#x27; or &#x27;descending&#x27;.
257 x__xgafv: string, V1 error format.
258 Allowed values
259 1 - v1 error format
260 2 - v2 error format
261
262Returns:
263 An object of the form:
264
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700265 { # The response to a request to enumerate Changes to a ResourceRecordSets collection.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700266 &quot;changes&quot;: [ # The requested changes.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700267 { # A Change represents a set of ResourceRecordSet additions and deletions applied atomically to a ManagedZone. ResourceRecordSets within a ManagedZone are modified by creating a new Change element in the Changes collection. In turn the Changes collection also records the past modifications to the ResourceRecordSets in a ManagedZone. The current state of the ManagedZone is the sum effect of applying all Change elements in the Changes collection in sequence.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700268 &quot;additions&quot;: [ # Which ResourceRecordSets to add?
269 { # A unit of data that will be returned by the DNS servers.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700270 &quot;ttl&quot;: 42, # Number of seconds that this ResourceRecordSet can be cached by resolvers.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700271 &quot;kind&quot;: &quot;dns#resourceRecordSet&quot;,
272 &quot;signatureRrdatas&quot;: [ # As defined in RFC 4034 (section 3.2).
273 &quot;A String&quot;,
274 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700275 &quot;rrdatas&quot;: [ # As defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1) -- see examples.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700276 &quot;A String&quot;,
277 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700278 &quot;type&quot;: &quot;A String&quot;, # The identifier of a supported record type. See the list of Supported DNS record types.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700279 &quot;name&quot;: &quot;A String&quot;, # For example, www.example.com.
280 },
281 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700282 &quot;isServing&quot;: True or False, # If the DNS queries for the zone will be served.
283 &quot;startTime&quot;: &quot;A String&quot;, # The time that this operation was started by the server (output only). This is in RFC3339 text format.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700284 &quot;id&quot;: &quot;A String&quot;, # Unique identifier for the resource; defined by the server (output only).
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700285 &quot;kind&quot;: &quot;dns#change&quot;,
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700286 &quot;deletions&quot;: [ # Which ResourceRecordSets to remove? Must match existing data exactly.
287 { # A unit of data that will be returned by the DNS servers.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700288 &quot;ttl&quot;: 42, # Number of seconds that this ResourceRecordSet can be cached by resolvers.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700289 &quot;kind&quot;: &quot;dns#resourceRecordSet&quot;,
290 &quot;signatureRrdatas&quot;: [ # As defined in RFC 4034 (section 3.2).
291 &quot;A String&quot;,
292 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700293 &quot;rrdatas&quot;: [ # As defined in RFC 1035 (section 5) and RFC 1034 (section 3.6.1) -- see examples.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700294 &quot;A String&quot;,
295 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700296 &quot;type&quot;: &quot;A String&quot;, # The identifier of a supported record type. See the list of Supported DNS record types.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700297 &quot;name&quot;: &quot;A String&quot;, # For example, www.example.com.
298 },
299 ],
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700300 &quot;status&quot;: &quot;A String&quot;, # Status of the operation (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.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700301 },
302 ],
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700303 &quot;header&quot;: { # Elements common to every response.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700304 &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).
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700305 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700306 &quot;kind&quot;: &quot;dns#changesListResponse&quot;, # Type of resource.
307 &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 pagination 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 &quot;snapshot&quot; of collections larger than the maximum page size.
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000308 }</pre>
309</div>
310
311<div class="method">
312 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
313 <pre>Retrieves the next page of results.
314
315Args:
316 previous_request: The request for the previous page. (required)
317 previous_response: The response from the request for the previous page. (required)
318
319Returns:
Bu Sun Kim65020912020-05-20 12:08:20 -0700320 A request object that you can call &#x27;execute()&#x27; on to request the next
Nathaniel Manista4f877e52015-06-15 16:44:50 +0000321 page. Returns None if there are no more items in the collection.
322 </pre>
323</div>
324
325</body></html>