blob: 0f6ee9ca0b2433a3bcd2c3576c812a96c2f2af3a [file] [log] [blame]
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -04001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
75<h1><a href="deploymentmanager_alpha.html">Google Cloud Deployment Manager Alpha API</a> . <a href="deploymentmanager_alpha.resources.html">resources</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="#get">get(project, deployment, resource)</a></code></p>
79<p class="firstline">Gets information about a single resource.</p>
80<p class="toc_element">
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -070081 <code><a href="#list">list(project, deployment, filter=None, maxResults=None, orderBy=None, pageToken=None, returnPartialSuccess=None)</a></code></p>
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -040082<p class="firstline">Lists all resources in a given deployment.</p>
83<p class="toc_element">
84 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
85<p class="firstline">Retrieves the next page of results.</p>
86<h3>Method Details</h3>
87<div class="method">
88 <code class="details" id="get">get(project, deployment, resource)</code>
89 <pre>Gets information about a single resource.
90
91Args:
92 project: string, The project ID for this request. (required)
93 deployment: string, The name of the deployment for this request. (required)
94 resource: string, The name of the resource for this request. (required)
95
96Returns:
97 An object of the form:
98
99 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700100 &quot;accessControl&quot;: { # The access controls set on the resource. # The Access Control Policy set on this resource.
101 &quot;gcpIamPolicy&quot;: &quot;A String&quot;, # The GCP IAM Policy to set on the resource.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400102 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700103 &quot;finalProperties&quot;: &quot;A String&quot;, # Output only. The evaluated properties of the resource with references expanded. Returned as serialized YAML.
104 &quot;id&quot;: &quot;A String&quot;,
105 &quot;insertTime&quot;: &quot;A String&quot;, # Output only. Creation timestamp in RFC3339 text format.
106 &quot;lastUsedCredential&quot;: { # The credential used by Deployment Manager and TypeProvider. Only one of the options is permitted. # Output only. The last used credential that successfully created/updated the resource.
107 &quot;basicAuth&quot;: { # Basic Auth used as a credential. # Basic Auth Credential, only used by TypeProvider.
108 &quot;password&quot;: &quot;A String&quot;,
109 &quot;user&quot;: &quot;A String&quot;,
110 },
111 &quot;serviceAccount&quot;: { # Service Account used as a credential. # Service Account Credential, only used by Deployment.
112 &quot;email&quot;: &quot;A String&quot;, # The IAM service account email address like test@myproject.iam.gserviceaccount.com
113 },
114 &quot;useProjectDefault&quot;: True or False, # Specify to use the project default credential, only supported by Deployment.
115 },
116 &quot;manifest&quot;: &quot;A String&quot;, # Output only. URL of the manifest representing the current configuration of this resource.
117 &quot;name&quot;: &quot;A String&quot;, # Output only. The name of the resource as it appears in the YAML config.
118 &quot;properties&quot;: &quot;A String&quot;, # Output only. The current properties of the resource before any references have been filled in. Returned as serialized YAML.
119 &quot;runtimePolicies&quot;: [ # Output only. In case this is an action, it will show the runtimePolicies on which this action will run in the deployment
120 &quot;A String&quot;,
121 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700122 &quot;type&quot;: &quot;A String&quot;, # Output only. The type of the resource, for example `compute.v1.instance`, or `cloudfunctions.v1beta1.function`.
Bu Sun Kim65020912020-05-20 12:08:20 -0700123 &quot;update&quot;: { # Output only. If Deployment Manager is currently updating or previewing an update to this resource, the updated configuration appears here.
124 &quot;accessControl&quot;: { # The access controls set on the resource. # The Access Control Policy to set on this resource after updating the resource itself.
125 &quot;gcpIamPolicy&quot;: &quot;A String&quot;, # The GCP IAM Policy to set on the resource.
126 },
127 &quot;credential&quot;: { # The credential used by Deployment Manager and TypeProvider. Only one of the options is permitted. # Output only. The credential that will be used creating/updating this resource.
128 &quot;basicAuth&quot;: { # Basic Auth used as a credential. # Basic Auth Credential, only used by TypeProvider.
129 &quot;password&quot;: &quot;A String&quot;,
130 &quot;user&quot;: &quot;A String&quot;,
131 },
132 &quot;serviceAccount&quot;: { # Service Account used as a credential. # Service Account Credential, only used by Deployment.
133 &quot;email&quot;: &quot;A String&quot;, # The IAM service account email address like test@myproject.iam.gserviceaccount.com
134 },
135 &quot;useProjectDefault&quot;: True or False, # Specify to use the project default credential, only supported by Deployment.
136 },
137 &quot;error&quot;: { # Output only. If errors are generated during update of the resource, this field will be populated.
138 &quot;errors&quot;: [ # [Output Only] The array of errors encountered while processing this operation.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400139 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700140 &quot;code&quot;: &quot;A String&quot;, # [Output Only] The error type identifier for this error.
141 &quot;location&quot;: &quot;A String&quot;, # [Output Only] Indicates the field in the request that caused the error. This property is optional.
142 &quot;message&quot;: &quot;A String&quot;, # [Output Only] An optional, human-readable error message.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400143 },
144 ],
145 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700146 &quot;finalProperties&quot;: &quot;A String&quot;, # Output only. The expanded properties of the resource with reference values expanded. Returned as serialized YAML.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700147 &quot;intent&quot;: &quot;A String&quot;, # Output only. The intent of the resource: `PREVIEW`, `UPDATE`, or `CANCEL`.
Bu Sun Kim65020912020-05-20 12:08:20 -0700148 &quot;manifest&quot;: &quot;A String&quot;, # Output only. URL of the manifest representing the update configuration of this resource.
149 &quot;properties&quot;: &quot;A String&quot;, # Output only. The set of updated properties for this resource, before references are expanded. Returned as serialized YAML.
150 &quot;runtimePolicies&quot;: [ # Output only. In case this is an action, it will show the runtimePolicies that this action will have after updating the deployment.
151 &quot;A String&quot;,
152 ],
153 &quot;state&quot;: &quot;A String&quot;, # Output only. The state of the resource.
154 &quot;warnings&quot;: [ # Output only. If warning messages are generated during processing of this resource, this field will be populated.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400155 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700156 &quot;code&quot;: &quot;A String&quot;, # [Output Only] A warning code, if applicable. For example, Compute Engine returns NO_RESULTS_ON_PAGE if there are no results in the response.
157 &quot;data&quot;: [ # [Output Only] Metadata about this warning in key: value format. For example:
158 # &quot;data&quot;: [ { &quot;key&quot;: &quot;scope&quot;, &quot;value&quot;: &quot;zones/us-east1-d&quot; }
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400159 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700160 &quot;key&quot;: &quot;A String&quot;, # [Output Only] A key that provides more detail on the warning being returned. For example, for warnings where there are no results in a list request for a particular zone, this key might be scope and the key value might be the zone name. Other examples might be a key indicating a deprecated resource and a suggested replacement, or a warning about invalid network settings (for example, if an instance attempts to perform IP forwarding but is not enabled for IP forwarding).
161 &quot;value&quot;: &quot;A String&quot;, # [Output Only] A warning data value corresponding to the key.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400162 },
163 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700164 &quot;message&quot;: &quot;A String&quot;, # [Output Only] A human-readable description of the warning code.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400165 },
166 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700167 },
168 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. Update timestamp in RFC3339 text format.
169 &quot;url&quot;: &quot;A String&quot;, # Output only. The URL of the actual resource.
170 &quot;warnings&quot;: [ # Output only. If warning messages are generated during processing of this resource, this field will be populated.
171 {
172 &quot;code&quot;: &quot;A String&quot;, # [Output Only] A warning code, if applicable. For example, Compute Engine returns NO_RESULTS_ON_PAGE if there are no results in the response.
173 &quot;data&quot;: [ # [Output Only] Metadata about this warning in key: value format. For example:
174 # &quot;data&quot;: [ { &quot;key&quot;: &quot;scope&quot;, &quot;value&quot;: &quot;zones/us-east1-d&quot; }
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400175 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700176 &quot;key&quot;: &quot;A String&quot;, # [Output Only] A key that provides more detail on the warning being returned. For example, for warnings where there are no results in a list request for a particular zone, this key might be scope and the key value might be the zone name. Other examples might be a key indicating a deprecated resource and a suggested replacement, or a warning about invalid network settings (for example, if an instance attempts to perform IP forwarding but is not enabled for IP forwarding).
177 &quot;value&quot;: &quot;A String&quot;, # [Output Only] A warning data value corresponding to the key.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400178 },
179 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700180 &quot;message&quot;: &quot;A String&quot;, # [Output Only] A human-readable description of the warning code.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400181 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700182 ],
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400183 }</pre>
184</div>
185
186<div class="method">
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700187 <code class="details" id="list">list(project, deployment, filter=None, maxResults=None, orderBy=None, pageToken=None, returnPartialSuccess=None)</code>
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400188 <pre>Lists all resources in a given deployment.
189
190Args:
191 project: string, The project ID for this request. (required)
192 deployment: string, The name of the deployment for this request. (required)
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700193 filter: string, A filter expression that filters resources listed in the response. The expression must specify the field name, a comparison operator, and the value that you want to use for filtering. The value must be a string, a number, or a boolean. The comparison operator must be either `=`, `!=`, `&gt;`, or `&lt;`.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400194
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700195For example, if you are filtering Compute Engine instances, you can exclude instances named `example-instance` by specifying `name != example-instance`.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400196
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700197You can also filter nested fields. For example, you could specify `scheduling.automaticRestart = false` to include instances only if they are not scheduled for automatic restarts. You can use filtering on nested fields to filter based on resource labels.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400198
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700199To filter on multiple expressions, provide each separate expression within parentheses. For example: ``` (scheduling.automaticRestart = true) (cpuPlatform = &quot;Intel Skylake&quot;) ``` By default, each expression is an `AND` expression. However, you can include `AND` and `OR` expressions explicitly. For example: ``` (cpuPlatform = &quot;Intel Skylake&quot;) OR (cpuPlatform = &quot;Intel Broadwell&quot;) AND (scheduling.automaticRestart = true) ```
200 maxResults: integer, The maximum number of results per page that should be returned. If the number of available results is larger than `maxResults`, Compute Engine returns a `nextPageToken` that can be used to get the next page of results in subsequent list requests. Acceptable values are `0` to `500`, inclusive. (Default: `500`)
Bu Sun Kim65020912020-05-20 12:08:20 -0700201 orderBy: string, Sorts list results by a certain order. By default, results are returned in alphanumerical order based on the resource name.
202
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700203You can also sort results in descending order based on the creation timestamp using `orderBy=&quot;creationTimestamp desc&quot;`. This sorts results based on the `creationTimestamp` field in reverse chronological order (newest result first). Use this to sort resources like operations so that the newest operation is returned first.
Bu Sun Kim65020912020-05-20 12:08:20 -0700204
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700205Currently, only sorting by `name` or `creationTimestamp desc` is supported.
206 pageToken: string, Specifies a page token to use. Set `pageToken` to the `nextPageToken` returned by a previous list request to get the next page of results.
207 returnPartialSuccess: boolean, Opt-in for partial success behavior which provides partial results in case of failure. The default value is false and the logic is the same as today.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400208
209Returns:
210 An object of the form:
211
212 { # A response containing a partial list of resources and a page token used to build the next request if the request has been truncated.
Bu Sun Kim65020912020-05-20 12:08:20 -0700213 &quot;nextPageToken&quot;: &quot;A String&quot;, # A token used to continue a truncated list request.
214 &quot;resources&quot;: [ # Resources contained in this list response.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400215 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700216 &quot;accessControl&quot;: { # The access controls set on the resource. # The Access Control Policy set on this resource.
217 &quot;gcpIamPolicy&quot;: &quot;A String&quot;, # The GCP IAM Policy to set on the resource.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400218 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700219 &quot;finalProperties&quot;: &quot;A String&quot;, # Output only. The evaluated properties of the resource with references expanded. Returned as serialized YAML.
220 &quot;id&quot;: &quot;A String&quot;,
221 &quot;insertTime&quot;: &quot;A String&quot;, # Output only. Creation timestamp in RFC3339 text format.
222 &quot;lastUsedCredential&quot;: { # The credential used by Deployment Manager and TypeProvider. Only one of the options is permitted. # Output only. The last used credential that successfully created/updated the resource.
223 &quot;basicAuth&quot;: { # Basic Auth used as a credential. # Basic Auth Credential, only used by TypeProvider.
224 &quot;password&quot;: &quot;A String&quot;,
225 &quot;user&quot;: &quot;A String&quot;,
226 },
227 &quot;serviceAccount&quot;: { # Service Account used as a credential. # Service Account Credential, only used by Deployment.
228 &quot;email&quot;: &quot;A String&quot;, # The IAM service account email address like test@myproject.iam.gserviceaccount.com
229 },
230 &quot;useProjectDefault&quot;: True or False, # Specify to use the project default credential, only supported by Deployment.
231 },
232 &quot;manifest&quot;: &quot;A String&quot;, # Output only. URL of the manifest representing the current configuration of this resource.
233 &quot;name&quot;: &quot;A String&quot;, # Output only. The name of the resource as it appears in the YAML config.
234 &quot;properties&quot;: &quot;A String&quot;, # Output only. The current properties of the resource before any references have been filled in. Returned as serialized YAML.
235 &quot;runtimePolicies&quot;: [ # Output only. In case this is an action, it will show the runtimePolicies on which this action will run in the deployment
236 &quot;A String&quot;,
237 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700238 &quot;type&quot;: &quot;A String&quot;, # Output only. The type of the resource, for example `compute.v1.instance`, or `cloudfunctions.v1beta1.function`.
Bu Sun Kim65020912020-05-20 12:08:20 -0700239 &quot;update&quot;: { # Output only. If Deployment Manager is currently updating or previewing an update to this resource, the updated configuration appears here.
240 &quot;accessControl&quot;: { # The access controls set on the resource. # The Access Control Policy to set on this resource after updating the resource itself.
241 &quot;gcpIamPolicy&quot;: &quot;A String&quot;, # The GCP IAM Policy to set on the resource.
242 },
243 &quot;credential&quot;: { # The credential used by Deployment Manager and TypeProvider. Only one of the options is permitted. # Output only. The credential that will be used creating/updating this resource.
244 &quot;basicAuth&quot;: { # Basic Auth used as a credential. # Basic Auth Credential, only used by TypeProvider.
245 &quot;password&quot;: &quot;A String&quot;,
246 &quot;user&quot;: &quot;A String&quot;,
247 },
248 &quot;serviceAccount&quot;: { # Service Account used as a credential. # Service Account Credential, only used by Deployment.
249 &quot;email&quot;: &quot;A String&quot;, # The IAM service account email address like test@myproject.iam.gserviceaccount.com
250 },
251 &quot;useProjectDefault&quot;: True or False, # Specify to use the project default credential, only supported by Deployment.
252 },
253 &quot;error&quot;: { # Output only. If errors are generated during update of the resource, this field will be populated.
254 &quot;errors&quot;: [ # [Output Only] The array of errors encountered while processing this operation.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400255 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700256 &quot;code&quot;: &quot;A String&quot;, # [Output Only] The error type identifier for this error.
257 &quot;location&quot;: &quot;A String&quot;, # [Output Only] Indicates the field in the request that caused the error. This property is optional.
258 &quot;message&quot;: &quot;A String&quot;, # [Output Only] An optional, human-readable error message.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400259 },
260 ],
261 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700262 &quot;finalProperties&quot;: &quot;A String&quot;, # Output only. The expanded properties of the resource with reference values expanded. Returned as serialized YAML.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700263 &quot;intent&quot;: &quot;A String&quot;, # Output only. The intent of the resource: `PREVIEW`, `UPDATE`, or `CANCEL`.
Bu Sun Kim65020912020-05-20 12:08:20 -0700264 &quot;manifest&quot;: &quot;A String&quot;, # Output only. URL of the manifest representing the update configuration of this resource.
265 &quot;properties&quot;: &quot;A String&quot;, # Output only. The set of updated properties for this resource, before references are expanded. Returned as serialized YAML.
266 &quot;runtimePolicies&quot;: [ # Output only. In case this is an action, it will show the runtimePolicies that this action will have after updating the deployment.
267 &quot;A String&quot;,
268 ],
269 &quot;state&quot;: &quot;A String&quot;, # Output only. The state of the resource.
270 &quot;warnings&quot;: [ # Output only. If warning messages are generated during processing of this resource, this field will be populated.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400271 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700272 &quot;code&quot;: &quot;A String&quot;, # [Output Only] A warning code, if applicable. For example, Compute Engine returns NO_RESULTS_ON_PAGE if there are no results in the response.
273 &quot;data&quot;: [ # [Output Only] Metadata about this warning in key: value format. For example:
274 # &quot;data&quot;: [ { &quot;key&quot;: &quot;scope&quot;, &quot;value&quot;: &quot;zones/us-east1-d&quot; }
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400275 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700276 &quot;key&quot;: &quot;A String&quot;, # [Output Only] A key that provides more detail on the warning being returned. For example, for warnings where there are no results in a list request for a particular zone, this key might be scope and the key value might be the zone name. Other examples might be a key indicating a deprecated resource and a suggested replacement, or a warning about invalid network settings (for example, if an instance attempts to perform IP forwarding but is not enabled for IP forwarding).
277 &quot;value&quot;: &quot;A String&quot;, # [Output Only] A warning data value corresponding to the key.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400278 },
279 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700280 &quot;message&quot;: &quot;A String&quot;, # [Output Only] A human-readable description of the warning code.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400281 },
282 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700283 },
284 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. Update timestamp in RFC3339 text format.
285 &quot;url&quot;: &quot;A String&quot;, # Output only. The URL of the actual resource.
286 &quot;warnings&quot;: [ # Output only. If warning messages are generated during processing of this resource, this field will be populated.
287 {
288 &quot;code&quot;: &quot;A String&quot;, # [Output Only] A warning code, if applicable. For example, Compute Engine returns NO_RESULTS_ON_PAGE if there are no results in the response.
289 &quot;data&quot;: [ # [Output Only] Metadata about this warning in key: value format. For example:
290 # &quot;data&quot;: [ { &quot;key&quot;: &quot;scope&quot;, &quot;value&quot;: &quot;zones/us-east1-d&quot; }
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400291 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700292 &quot;key&quot;: &quot;A String&quot;, # [Output Only] A key that provides more detail on the warning being returned. For example, for warnings where there are no results in a list request for a particular zone, this key might be scope and the key value might be the zone name. Other examples might be a key indicating a deprecated resource and a suggested replacement, or a warning about invalid network settings (for example, if an instance attempts to perform IP forwarding but is not enabled for IP forwarding).
293 &quot;value&quot;: &quot;A String&quot;, # [Output Only] A warning data value corresponding to the key.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400294 },
295 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700296 &quot;message&quot;: &quot;A String&quot;, # [Output Only] A human-readable description of the warning code.
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400297 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700298 ],
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400299 },
300 ],
301 }</pre>
302</div>
303
304<div class="method">
305 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
306 <pre>Retrieves the next page of results.
307
308Args:
309 previous_request: The request for the previous page. (required)
310 previous_response: The response from the request for the previous page. (required)
311
312Returns:
Bu Sun Kim65020912020-05-20 12:08:20 -0700313 A request object that you can call &#x27;execute()&#x27; on to request the next
Sai Cheemalapatic30d2b52017-03-13 12:12:03 -0400314 page. Returns None if there are no more items in the collection.
315 </pre>
316</div>
317
318</body></html>