blob: 2ba1b4a9828c830d63ef3690c14c77a723a39e39 [file] [log] [blame]
Bu Sun Kim65020912020-05-20 12:08:20 -07001<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="accessapproval_v1.html">Access Approval API</a> . <a href="accessapproval_v1.projects.html">projects</a> . <a href="accessapproval_v1.projects.approvalRequests.html">approvalRequests</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="#approve">approve(name, body=None, x__xgafv=None)</a></code></p>
79<p class="firstline">Approves a request and returns the updated ApprovalRequest.</p>
80<p class="toc_element">
81 <code><a href="#dismiss">dismiss(name, body=None, x__xgafv=None)</a></code></p>
82<p class="firstline">Dismisses a request. Returns the updated ApprovalRequest.</p>
83<p class="toc_element">
84 <code><a href="#get">get(name, x__xgafv=None)</a></code></p>
85<p class="firstline">Gets an approval request. Returns NOT_FOUND if the request does not exist.</p>
86<p class="toc_element">
Bu Sun Kimd059ad82020-07-22 17:02:09 -070087 <code><a href="#list">list(parent, filter=None, pageToken=None, pageSize=None, x__xgafv=None)</a></code></p>
Bu Sun Kim65020912020-05-20 12:08:20 -070088<p class="firstline">Lists approval requests associated with a project, folder, or organization.</p>
89<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">
94 <code class="details" id="approve">approve(name, body=None, x__xgafv=None)</code>
95 <pre>Approves a request and returns the updated ApprovalRequest.
96
97Returns NOT_FOUND if the request does not exist. Returns
98FAILED_PRECONDITION if the request exists but is not in a pending state.
99
100Args:
101 name: string, Name of the approval request to approve. (required)
102 body: object, The request body.
103 The object takes the form of:
104
105{ # Request to approve an ApprovalRequest.
106 &quot;expireTime&quot;: &quot;A String&quot;, # The expiration time of this approval.
107 }
108
109 x__xgafv: string, V1 error format.
110 Allowed values
111 1 - v1 error format
112 2 - v2 error format
113
114Returns:
115 An object of the form:
116
117 { # A request for the customer to approve access to a resource.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700118 &quot;requestedResourceProperties&quot;: { # The properties associated with the resource of the request. # Properties related to the resource represented by requested_resource_name.
119 &quot;excludesDescendants&quot;: True or False, # Whether an approval will exclude the descendants of the resource being
120 # requested.
121 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700122 &quot;requestedResourceName&quot;: &quot;A String&quot;, # The resource for which approval is being requested. The format of the
123 # resource name is defined at
124 # https://cloud.google.com/apis/design/resource_names. The resource name here
125 # may either be a &quot;full&quot; resource name (e.g.
126 # &quot;//library.googleapis.com/shelves/shelf1/books/book2&quot;) or a &quot;relative&quot;
127 # resource name (e.g. &quot;shelves/shelf1/books/book2&quot;) as described in the
128 # resource name specification.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700129 &quot;approve&quot;: { # A decision that has been made to approve access to a resource. # Access was approved.
130 &quot;approveTime&quot;: &quot;A String&quot;, # The time at which approval was granted.
131 &quot;expireTime&quot;: &quot;A String&quot;, # The time at which the approval expires.
132 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700133 &quot;requestTime&quot;: &quot;A String&quot;, # The time at which approval was requested.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700134 &quot;name&quot;: &quot;A String&quot;, # The resource name of the request. Format is
135 # &quot;{projects|folders|organizations}/{id}/approvalRequests/{approval_request_id}&quot;.
136 &quot;requestedReason&quot;: { # The justification for which approval is being requested.
137 &quot;detail&quot;: &quot;A String&quot;, # More detail about certain reason types. See comments for each type above.
138 &quot;type&quot;: &quot;A String&quot;, # Type of access justification.
139 },
140 &quot;requestedExpiration&quot;: &quot;A String&quot;, # The requested expiration for the approval. If the request is approved,
141 # access will be granted from the time of approval until the expiration time.
142 &quot;dismiss&quot;: { # A decision that has been made to dismiss an approval request. # The request was dismissed.
143 &quot;dismissTime&quot;: &quot;A String&quot;, # The time at which the approval request was dismissed.
144 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700145 &quot;requestedLocations&quot;: { # Home office and physical location of the principal. # The locations for which approval is being requested.
Bu Sun Kim65020912020-05-20 12:08:20 -0700146 &quot;principalOfficeCountry&quot;: &quot;A String&quot;, # The &quot;home office&quot; location of the principal. A two-letter country code
147 # (ISO 3166-1 alpha-2), such as &quot;US&quot;, &quot;DE&quot; or &quot;GB&quot; or a region code. In some
148 # limited situations Google systems may refer refer to a region code instead
149 # of a country code.
150 # Possible Region Codes:
151 # &lt;ol&gt;
152 # &lt;li&gt;ASI: Asia&lt;/li&gt;
153 # &lt;li&gt;EUR: Europe&lt;/li&gt;
154 # &lt;li&gt;OCE: Oceania&lt;/li&gt;
155 # &lt;li&gt;AFR: Africa&lt;/li&gt;
156 # &lt;li&gt;NAM: North America&lt;/li&gt;
157 # &lt;li&gt;SAM: South America&lt;/li&gt;
158 # &lt;li&gt;ANT: Antarctica&lt;/li&gt;
159 # &lt;li&gt;ANY: Any location&lt;/li&gt;
160 # &lt;/ol&gt;
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700161 &quot;principalPhysicalLocationCountry&quot;: &quot;A String&quot;, # Physical location of the principal at the time of the access. A
162 # two-letter country code (ISO 3166-1 alpha-2), such as &quot;US&quot;, &quot;DE&quot; or &quot;GB&quot; or
163 # a region code. In some limited situations Google systems may refer refer to
164 # a region code instead of a country code.
165 # Possible Region Codes:
166 # &lt;ol&gt;
167 # &lt;li&gt;ASI: Asia&lt;/li&gt;
168 # &lt;li&gt;EUR: Europe&lt;/li&gt;
169 # &lt;li&gt;OCE: Oceania&lt;/li&gt;
170 # &lt;li&gt;AFR: Africa&lt;/li&gt;
171 # &lt;li&gt;NAM: North America&lt;/li&gt;
172 # &lt;li&gt;SAM: South America&lt;/li&gt;
173 # &lt;li&gt;ANT: Antarctica&lt;/li&gt;
174 # &lt;li&gt;ANY: Any location&lt;/li&gt;
175 # &lt;/ol&gt;
Bu Sun Kim65020912020-05-20 12:08:20 -0700176 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700177 }</pre>
178</div>
179
180<div class="method">
181 <code class="details" id="dismiss">dismiss(name, body=None, x__xgafv=None)</code>
182 <pre>Dismisses a request. Returns the updated ApprovalRequest.
183
184NOTE: This does not deny access to the resource if another request has been
185made and approved. It is equivalent in effect to ignoring the request
186altogether.
187
188Returns NOT_FOUND if the request does not exist.
189
190Returns FAILED_PRECONDITION if the request exists but is not in a pending
191state.
192
193Args:
194 name: string, Name of the ApprovalRequest to dismiss. (required)
195 body: object, The request body.
196 The object takes the form of:
197
198{ # Request to dismiss an approval request.
199 }
200
201 x__xgafv: string, V1 error format.
202 Allowed values
203 1 - v1 error format
204 2 - v2 error format
205
206Returns:
207 An object of the form:
208
209 { # A request for the customer to approve access to a resource.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700210 &quot;requestedResourceProperties&quot;: { # The properties associated with the resource of the request. # Properties related to the resource represented by requested_resource_name.
211 &quot;excludesDescendants&quot;: True or False, # Whether an approval will exclude the descendants of the resource being
212 # requested.
213 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700214 &quot;requestedResourceName&quot;: &quot;A String&quot;, # The resource for which approval is being requested. The format of the
215 # resource name is defined at
216 # https://cloud.google.com/apis/design/resource_names. The resource name here
217 # may either be a &quot;full&quot; resource name (e.g.
218 # &quot;//library.googleapis.com/shelves/shelf1/books/book2&quot;) or a &quot;relative&quot;
219 # resource name (e.g. &quot;shelves/shelf1/books/book2&quot;) as described in the
220 # resource name specification.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700221 &quot;approve&quot;: { # A decision that has been made to approve access to a resource. # Access was approved.
222 &quot;approveTime&quot;: &quot;A String&quot;, # The time at which approval was granted.
223 &quot;expireTime&quot;: &quot;A String&quot;, # The time at which the approval expires.
224 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700225 &quot;requestTime&quot;: &quot;A String&quot;, # The time at which approval was requested.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700226 &quot;name&quot;: &quot;A String&quot;, # The resource name of the request. Format is
227 # &quot;{projects|folders|organizations}/{id}/approvalRequests/{approval_request_id}&quot;.
228 &quot;requestedReason&quot;: { # The justification for which approval is being requested.
229 &quot;detail&quot;: &quot;A String&quot;, # More detail about certain reason types. See comments for each type above.
230 &quot;type&quot;: &quot;A String&quot;, # Type of access justification.
231 },
232 &quot;requestedExpiration&quot;: &quot;A String&quot;, # The requested expiration for the approval. If the request is approved,
233 # access will be granted from the time of approval until the expiration time.
234 &quot;dismiss&quot;: { # A decision that has been made to dismiss an approval request. # The request was dismissed.
235 &quot;dismissTime&quot;: &quot;A String&quot;, # The time at which the approval request was dismissed.
236 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700237 &quot;requestedLocations&quot;: { # Home office and physical location of the principal. # The locations for which approval is being requested.
Bu Sun Kim65020912020-05-20 12:08:20 -0700238 &quot;principalOfficeCountry&quot;: &quot;A String&quot;, # The &quot;home office&quot; location of the principal. A two-letter country code
239 # (ISO 3166-1 alpha-2), such as &quot;US&quot;, &quot;DE&quot; or &quot;GB&quot; or a region code. In some
240 # limited situations Google systems may refer refer to a region code instead
241 # of a country code.
242 # Possible Region Codes:
243 # &lt;ol&gt;
244 # &lt;li&gt;ASI: Asia&lt;/li&gt;
245 # &lt;li&gt;EUR: Europe&lt;/li&gt;
246 # &lt;li&gt;OCE: Oceania&lt;/li&gt;
247 # &lt;li&gt;AFR: Africa&lt;/li&gt;
248 # &lt;li&gt;NAM: North America&lt;/li&gt;
249 # &lt;li&gt;SAM: South America&lt;/li&gt;
250 # &lt;li&gt;ANT: Antarctica&lt;/li&gt;
251 # &lt;li&gt;ANY: Any location&lt;/li&gt;
252 # &lt;/ol&gt;
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700253 &quot;principalPhysicalLocationCountry&quot;: &quot;A String&quot;, # Physical location of the principal at the time of the access. A
254 # two-letter country code (ISO 3166-1 alpha-2), such as &quot;US&quot;, &quot;DE&quot; or &quot;GB&quot; or
255 # a region code. In some limited situations Google systems may refer refer to
256 # a region code instead of a country code.
257 # Possible Region Codes:
258 # &lt;ol&gt;
259 # &lt;li&gt;ASI: Asia&lt;/li&gt;
260 # &lt;li&gt;EUR: Europe&lt;/li&gt;
261 # &lt;li&gt;OCE: Oceania&lt;/li&gt;
262 # &lt;li&gt;AFR: Africa&lt;/li&gt;
263 # &lt;li&gt;NAM: North America&lt;/li&gt;
264 # &lt;li&gt;SAM: South America&lt;/li&gt;
265 # &lt;li&gt;ANT: Antarctica&lt;/li&gt;
266 # &lt;li&gt;ANY: Any location&lt;/li&gt;
267 # &lt;/ol&gt;
Bu Sun Kim65020912020-05-20 12:08:20 -0700268 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700269 }</pre>
270</div>
271
272<div class="method">
273 <code class="details" id="get">get(name, x__xgafv=None)</code>
274 <pre>Gets an approval request. Returns NOT_FOUND if the request does not exist.
275
276Args:
277 name: string, Name of the approval request to retrieve. (required)
278 x__xgafv: string, V1 error format.
279 Allowed values
280 1 - v1 error format
281 2 - v2 error format
282
283Returns:
284 An object of the form:
285
286 { # A request for the customer to approve access to a resource.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700287 &quot;requestedResourceProperties&quot;: { # The properties associated with the resource of the request. # Properties related to the resource represented by requested_resource_name.
288 &quot;excludesDescendants&quot;: True or False, # Whether an approval will exclude the descendants of the resource being
289 # requested.
290 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700291 &quot;requestedResourceName&quot;: &quot;A String&quot;, # The resource for which approval is being requested. The format of the
292 # resource name is defined at
293 # https://cloud.google.com/apis/design/resource_names. The resource name here
294 # may either be a &quot;full&quot; resource name (e.g.
295 # &quot;//library.googleapis.com/shelves/shelf1/books/book2&quot;) or a &quot;relative&quot;
296 # resource name (e.g. &quot;shelves/shelf1/books/book2&quot;) as described in the
297 # resource name specification.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700298 &quot;approve&quot;: { # A decision that has been made to approve access to a resource. # Access was approved.
299 &quot;approveTime&quot;: &quot;A String&quot;, # The time at which approval was granted.
300 &quot;expireTime&quot;: &quot;A String&quot;, # The time at which the approval expires.
301 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700302 &quot;requestTime&quot;: &quot;A String&quot;, # The time at which approval was requested.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700303 &quot;name&quot;: &quot;A String&quot;, # The resource name of the request. Format is
304 # &quot;{projects|folders|organizations}/{id}/approvalRequests/{approval_request_id}&quot;.
305 &quot;requestedReason&quot;: { # The justification for which approval is being requested.
306 &quot;detail&quot;: &quot;A String&quot;, # More detail about certain reason types. See comments for each type above.
307 &quot;type&quot;: &quot;A String&quot;, # Type of access justification.
308 },
309 &quot;requestedExpiration&quot;: &quot;A String&quot;, # The requested expiration for the approval. If the request is approved,
310 # access will be granted from the time of approval until the expiration time.
311 &quot;dismiss&quot;: { # A decision that has been made to dismiss an approval request. # The request was dismissed.
312 &quot;dismissTime&quot;: &quot;A String&quot;, # The time at which the approval request was dismissed.
313 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700314 &quot;requestedLocations&quot;: { # Home office and physical location of the principal. # The locations for which approval is being requested.
Bu Sun Kim65020912020-05-20 12:08:20 -0700315 &quot;principalOfficeCountry&quot;: &quot;A String&quot;, # The &quot;home office&quot; location of the principal. A two-letter country code
316 # (ISO 3166-1 alpha-2), such as &quot;US&quot;, &quot;DE&quot; or &quot;GB&quot; or a region code. In some
317 # limited situations Google systems may refer refer to a region code instead
318 # of a country code.
319 # Possible Region Codes:
320 # &lt;ol&gt;
321 # &lt;li&gt;ASI: Asia&lt;/li&gt;
322 # &lt;li&gt;EUR: Europe&lt;/li&gt;
323 # &lt;li&gt;OCE: Oceania&lt;/li&gt;
324 # &lt;li&gt;AFR: Africa&lt;/li&gt;
325 # &lt;li&gt;NAM: North America&lt;/li&gt;
326 # &lt;li&gt;SAM: South America&lt;/li&gt;
327 # &lt;li&gt;ANT: Antarctica&lt;/li&gt;
328 # &lt;li&gt;ANY: Any location&lt;/li&gt;
329 # &lt;/ol&gt;
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700330 &quot;principalPhysicalLocationCountry&quot;: &quot;A String&quot;, # Physical location of the principal at the time of the access. A
331 # two-letter country code (ISO 3166-1 alpha-2), such as &quot;US&quot;, &quot;DE&quot; or &quot;GB&quot; or
332 # a region code. In some limited situations Google systems may refer refer to
333 # a region code instead of a country code.
334 # Possible Region Codes:
335 # &lt;ol&gt;
336 # &lt;li&gt;ASI: Asia&lt;/li&gt;
337 # &lt;li&gt;EUR: Europe&lt;/li&gt;
338 # &lt;li&gt;OCE: Oceania&lt;/li&gt;
339 # &lt;li&gt;AFR: Africa&lt;/li&gt;
340 # &lt;li&gt;NAM: North America&lt;/li&gt;
341 # &lt;li&gt;SAM: South America&lt;/li&gt;
342 # &lt;li&gt;ANT: Antarctica&lt;/li&gt;
343 # &lt;li&gt;ANY: Any location&lt;/li&gt;
344 # &lt;/ol&gt;
Bu Sun Kim65020912020-05-20 12:08:20 -0700345 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700346 }</pre>
347</div>
348
349<div class="method">
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700350 <code class="details" id="list">list(parent, filter=None, pageToken=None, pageSize=None, x__xgafv=None)</code>
Bu Sun Kim65020912020-05-20 12:08:20 -0700351 <pre>Lists approval requests associated with a project, folder, or organization.
352Approval requests can be filtered by state (pending, active, dismissed).
353The order is reverse chronological.
354
355Args:
356 parent: string, The parent resource. This may be &quot;projects/{project_id}&quot;,
357&quot;folders/{folder_id}&quot;, or &quot;organizations/{organization_id}&quot;. (required)
358 filter: string, A filter on the type of approval requests to retrieve. Must be one of the
359following values:
360&lt;ol&gt;
361 &lt;li&gt;[not set]: Requests that are pending or have active approvals.&lt;/li&gt;
362 &lt;li&gt;ALL: All requests.&lt;/li&gt;
363 &lt;li&gt;PENDING: Only pending requests.&lt;/li&gt;
364 &lt;li&gt;ACTIVE: Only active (i.e. currently approved) requests.&lt;/li&gt;
365 &lt;li&gt;DISMISSED: Only dismissed (including expired) requests.&lt;/li&gt;
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700366 &lt;li&gt;HISTORY: Active and dismissed (including expired) requests.&lt;/li&gt;
Bu Sun Kim65020912020-05-20 12:08:20 -0700367&lt;/ol&gt;
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700368 pageToken: string, A token identifying the page of results to return.
369 pageSize: integer, Requested page size.
Bu Sun Kim65020912020-05-20 12:08:20 -0700370 x__xgafv: string, V1 error format.
371 Allowed values
372 1 - v1 error format
373 2 - v2 error format
374
375Returns:
376 An object of the form:
377
378 { # Response to listing of ApprovalRequest objects.
379 &quot;nextPageToken&quot;: &quot;A String&quot;, # Token to retrieve the next page of results, or empty if there are no more.
380 &quot;approvalRequests&quot;: [ # Approval request details.
381 { # A request for the customer to approve access to a resource.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700382 &quot;requestedResourceProperties&quot;: { # The properties associated with the resource of the request. # Properties related to the resource represented by requested_resource_name.
383 &quot;excludesDescendants&quot;: True or False, # Whether an approval will exclude the descendants of the resource being
384 # requested.
385 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700386 &quot;requestedResourceName&quot;: &quot;A String&quot;, # The resource for which approval is being requested. The format of the
387 # resource name is defined at
388 # https://cloud.google.com/apis/design/resource_names. The resource name here
389 # may either be a &quot;full&quot; resource name (e.g.
390 # &quot;//library.googleapis.com/shelves/shelf1/books/book2&quot;) or a &quot;relative&quot;
391 # resource name (e.g. &quot;shelves/shelf1/books/book2&quot;) as described in the
392 # resource name specification.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700393 &quot;approve&quot;: { # A decision that has been made to approve access to a resource. # Access was approved.
394 &quot;approveTime&quot;: &quot;A String&quot;, # The time at which approval was granted.
395 &quot;expireTime&quot;: &quot;A String&quot;, # The time at which the approval expires.
396 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700397 &quot;requestTime&quot;: &quot;A String&quot;, # The time at which approval was requested.
Bu Sun Kimd059ad82020-07-22 17:02:09 -0700398 &quot;name&quot;: &quot;A String&quot;, # The resource name of the request. Format is
399 # &quot;{projects|folders|organizations}/{id}/approvalRequests/{approval_request_id}&quot;.
400 &quot;requestedReason&quot;: { # The justification for which approval is being requested.
401 &quot;detail&quot;: &quot;A String&quot;, # More detail about certain reason types. See comments for each type above.
402 &quot;type&quot;: &quot;A String&quot;, # Type of access justification.
403 },
404 &quot;requestedExpiration&quot;: &quot;A String&quot;, # The requested expiration for the approval. If the request is approved,
405 # access will be granted from the time of approval until the expiration time.
406 &quot;dismiss&quot;: { # A decision that has been made to dismiss an approval request. # The request was dismissed.
407 &quot;dismissTime&quot;: &quot;A String&quot;, # The time at which the approval request was dismissed.
408 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700409 &quot;requestedLocations&quot;: { # Home office and physical location of the principal. # The locations for which approval is being requested.
Bu Sun Kim65020912020-05-20 12:08:20 -0700410 &quot;principalOfficeCountry&quot;: &quot;A String&quot;, # The &quot;home office&quot; location of the principal. A two-letter country code
411 # (ISO 3166-1 alpha-2), such as &quot;US&quot;, &quot;DE&quot; or &quot;GB&quot; or a region code. In some
412 # limited situations Google systems may refer refer to a region code instead
413 # of a country code.
414 # Possible Region Codes:
415 # &lt;ol&gt;
416 # &lt;li&gt;ASI: Asia&lt;/li&gt;
417 # &lt;li&gt;EUR: Europe&lt;/li&gt;
418 # &lt;li&gt;OCE: Oceania&lt;/li&gt;
419 # &lt;li&gt;AFR: Africa&lt;/li&gt;
420 # &lt;li&gt;NAM: North America&lt;/li&gt;
421 # &lt;li&gt;SAM: South America&lt;/li&gt;
422 # &lt;li&gt;ANT: Antarctica&lt;/li&gt;
423 # &lt;li&gt;ANY: Any location&lt;/li&gt;
424 # &lt;/ol&gt;
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700425 &quot;principalPhysicalLocationCountry&quot;: &quot;A String&quot;, # Physical location of the principal at the time of the access. A
426 # two-letter country code (ISO 3166-1 alpha-2), such as &quot;US&quot;, &quot;DE&quot; or &quot;GB&quot; or
427 # a region code. In some limited situations Google systems may refer refer to
428 # a region code instead of a country code.
429 # Possible Region Codes:
430 # &lt;ol&gt;
431 # &lt;li&gt;ASI: Asia&lt;/li&gt;
432 # &lt;li&gt;EUR: Europe&lt;/li&gt;
433 # &lt;li&gt;OCE: Oceania&lt;/li&gt;
434 # &lt;li&gt;AFR: Africa&lt;/li&gt;
435 # &lt;li&gt;NAM: North America&lt;/li&gt;
436 # &lt;li&gt;SAM: South America&lt;/li&gt;
437 # &lt;li&gt;ANT: Antarctica&lt;/li&gt;
438 # &lt;li&gt;ANY: Any location&lt;/li&gt;
439 # &lt;/ol&gt;
Bu Sun Kim65020912020-05-20 12:08:20 -0700440 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700441 },
442 ],
443 }</pre>
444</div>
445
446<div class="method">
447 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
448 <pre>Retrieves the next page of results.
449
450Args:
451 previous_request: The request for the previous page. (required)
452 previous_response: The response from the request for the previous page. (required)
453
454Returns:
455 A request object that you can call &#x27;execute()&#x27; on to request the next
456 page. Returns None if there are no more items in the collection.
457 </pre>
458</div>
459
460</body></html>