blob: 46e2ca723eaf0fa8bf48123006999c71919c8986 [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="serviceusage_v1beta1.html">Service Usage API</a> . <a href="serviceusage_v1beta1.services.html">services</a> . <a href="serviceusage_v1beta1.services.consumerQuotaMetrics.html">consumerQuotaMetrics</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="serviceusage_v1beta1.services.consumerQuotaMetrics.limits.html">limits()</a></code>
79</p>
80<p class="firstline">Returns the limits Resource.</p>
81
82<p class="toc_element">
83 <code><a href="#get">get(name, view=None, x__xgafv=None)</a></code></p>
84<p class="firstline">Retrieves a summary of quota information for a specific quota metric</p>
85<p class="toc_element">
86 <code><a href="#list">list(parent, pageSize=None, pageToken=None, view=None, x__xgafv=None)</a></code></p>
87<p class="firstline">Retrieves a summary of all quota information visible to the service</p>
88<p class="toc_element">
89 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
90<p class="firstline">Retrieves the next page of results.</p>
91<h3>Method Details</h3>
92<div class="method">
93 <code class="details" id="get">get(name, view=None, x__xgafv=None)</code>
94 <pre>Retrieves a summary of quota information for a specific quota metric
95
96Args:
97 name: string, The resource name of the quota limit.
98
99An example name would be:
100projects/123/services/serviceusage.googleapis.com/quotas/metrics/serviceusage.googleapis.com%2Fmutate_requests (required)
101 view: string, Specifies the level of detail for quota information in the response.
102 x__xgafv: string, V1 error format.
103 Allowed values
104 1 - v1 error format
105 2 - v2 error format
106
107Returns:
108 An object of the form:
109
110 { # Consumer quota settings for a quota metric.
111 &quot;consumerQuotaLimits&quot;: [ # The consumer quota for each quota limit defined on the metric.
112 { # Consumer quota settings for a quota limit.
113 &quot;allowsAdminOverrides&quot;: True or False, # Whether admin overrides are allowed on this limit
114 &quot;quotaBuckets&quot;: [ # Summary of the enforced quota buckets, organized by quota dimension,
115 # ordered from least specific to most specific (for example, the global
116 # default bucket, with no quota dimensions, will always appear first).
117 { # A quota bucket is a quota provisioning unit for a specific set of dimensions.
118 &quot;consumerOverride&quot;: { # A quota override # Consumer override on this quota bucket.
119 &quot;unit&quot;: &quot;A String&quot;, # The limit unit of the limit to which this override applies.
120 #
121 # An example unit would be:
122 # `1/{project}/{region}`
123 # Note that `{project}` and `{region}` are not placeholders in this example;
124 # the literal characters `{` and `}` occur in the string.
125 &quot;metric&quot;: &quot;A String&quot;, # The name of the metric to which this override applies.
126 #
127 # An example name would be:
128 # `compute.googleapis.com/cpus`
129 &quot;dimensions&quot;: { # If this map is nonempty, then this override applies only to specific values
130 # for dimensions defined in the limit unit.
131 #
132 # For example, an override on a limit with the unit 1/{project}/{region}
133 # could contain an entry with the key &quot;region&quot; and the value &quot;us-east-1&quot;;
134 # the override is only applied to quota consumed in that region.
135 #
136 # This map has the following restrictions:
137 #
138 # * Keys that are not defined in the limit&#x27;s unit are not valid keys.
139 # Any string appearing in {brackets} in the unit (besides {project} or
140 # {user}) is a defined key.
141 # * &quot;project&quot; is not a valid key; the project is already specified in
142 # the parent resource name.
143 # * &quot;user&quot; is not a valid key; the API does not support quota overrides
144 # that apply only to a specific user.
145 # * If &quot;region&quot; appears as a key, its value must be a valid Cloud region.
146 # * If &quot;zone&quot; appears as a key, its value must be a valid Cloud zone.
147 # * If any valid key other than &quot;region&quot; or &quot;zone&quot; appears in the map, then
148 # all valid keys other than &quot;region&quot; or &quot;zone&quot; must also appear in the
149 # map.
150 &quot;a_key&quot;: &quot;A String&quot;,
151 },
152 &quot;name&quot;: &quot;A String&quot;, # The resource name of the override.
153 # This name is generated by the server when the override is created.
154 #
155 # Example names would be:
156 # `projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus/limits/%2Fproject%2Fregion/adminOverrides/4a3f2c1d`
157 # `projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus/limits/%2Fproject%2Fregion/consumerOverrides/4a3f2c1d`
158 #
159 # The resource name is intended to be opaque and should not be parsed for
160 # its component strings, since its representation could change in the future.
161 &quot;overrideValue&quot;: &quot;A String&quot;, # The overriding quota limit value.
162 # Can be any nonnegative integer, or -1 (unlimited quota).
163 },
164 &quot;defaultLimit&quot;: &quot;A String&quot;, # The default limit of this quota bucket, as specified by the service
165 # configuration.
166 &quot;effectiveLimit&quot;: &quot;A String&quot;, # The effective limit of this quota bucket. Equal to default_limit if there
167 # are no overrides.
168 &quot;producerOverride&quot;: { # A quota override # Producer override on this quota bucket.
169 &quot;unit&quot;: &quot;A String&quot;, # The limit unit of the limit to which this override applies.
170 #
171 # An example unit would be:
172 # `1/{project}/{region}`
173 # Note that `{project}` and `{region}` are not placeholders in this example;
174 # the literal characters `{` and `}` occur in the string.
175 &quot;metric&quot;: &quot;A String&quot;, # The name of the metric to which this override applies.
176 #
177 # An example name would be:
178 # `compute.googleapis.com/cpus`
179 &quot;dimensions&quot;: { # If this map is nonempty, then this override applies only to specific values
180 # for dimensions defined in the limit unit.
181 #
182 # For example, an override on a limit with the unit 1/{project}/{region}
183 # could contain an entry with the key &quot;region&quot; and the value &quot;us-east-1&quot;;
184 # the override is only applied to quota consumed in that region.
185 #
186 # This map has the following restrictions:
187 #
188 # * Keys that are not defined in the limit&#x27;s unit are not valid keys.
189 # Any string appearing in {brackets} in the unit (besides {project} or
190 # {user}) is a defined key.
191 # * &quot;project&quot; is not a valid key; the project is already specified in
192 # the parent resource name.
193 # * &quot;user&quot; is not a valid key; the API does not support quota overrides
194 # that apply only to a specific user.
195 # * If &quot;region&quot; appears as a key, its value must be a valid Cloud region.
196 # * If &quot;zone&quot; appears as a key, its value must be a valid Cloud zone.
197 # * If any valid key other than &quot;region&quot; or &quot;zone&quot; appears in the map, then
198 # all valid keys other than &quot;region&quot; or &quot;zone&quot; must also appear in the
199 # map.
200 &quot;a_key&quot;: &quot;A String&quot;,
201 },
202 &quot;name&quot;: &quot;A String&quot;, # The resource name of the override.
203 # This name is generated by the server when the override is created.
204 #
205 # Example names would be:
206 # `projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus/limits/%2Fproject%2Fregion/adminOverrides/4a3f2c1d`
207 # `projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus/limits/%2Fproject%2Fregion/consumerOverrides/4a3f2c1d`
208 #
209 # The resource name is intended to be opaque and should not be parsed for
210 # its component strings, since its representation could change in the future.
211 &quot;overrideValue&quot;: &quot;A String&quot;, # The overriding quota limit value.
212 # Can be any nonnegative integer, or -1 (unlimited quota).
213 },
214 &quot;dimensions&quot;: { # The dimensions of this quota bucket.
215 #
216 # If this map is empty, this is the global bucket, which is the default quota
217 # value applied to all requests that do not have a more specific override.
218 #
219 # If this map is nonempty, the default limit, effective limit, and quota
220 # overrides apply only to requests that have the dimensions given in the map.
221 #
222 # For example, if the map has key &quot;region&quot; and value &quot;us-east-1&quot;, then the
223 # specified effective limit is only effective in that region, and the
224 # specified overrides apply only in that region.
225 &quot;a_key&quot;: &quot;A String&quot;,
226 },
227 &quot;adminOverride&quot;: { # A quota override # Admin override on this quota bucket.
228 &quot;unit&quot;: &quot;A String&quot;, # The limit unit of the limit to which this override applies.
229 #
230 # An example unit would be:
231 # `1/{project}/{region}`
232 # Note that `{project}` and `{region}` are not placeholders in this example;
233 # the literal characters `{` and `}` occur in the string.
234 &quot;metric&quot;: &quot;A String&quot;, # The name of the metric to which this override applies.
235 #
236 # An example name would be:
237 # `compute.googleapis.com/cpus`
238 &quot;dimensions&quot;: { # If this map is nonempty, then this override applies only to specific values
239 # for dimensions defined in the limit unit.
240 #
241 # For example, an override on a limit with the unit 1/{project}/{region}
242 # could contain an entry with the key &quot;region&quot; and the value &quot;us-east-1&quot;;
243 # the override is only applied to quota consumed in that region.
244 #
245 # This map has the following restrictions:
246 #
247 # * Keys that are not defined in the limit&#x27;s unit are not valid keys.
248 # Any string appearing in {brackets} in the unit (besides {project} or
249 # {user}) is a defined key.
250 # * &quot;project&quot; is not a valid key; the project is already specified in
251 # the parent resource name.
252 # * &quot;user&quot; is not a valid key; the API does not support quota overrides
253 # that apply only to a specific user.
254 # * If &quot;region&quot; appears as a key, its value must be a valid Cloud region.
255 # * If &quot;zone&quot; appears as a key, its value must be a valid Cloud zone.
256 # * If any valid key other than &quot;region&quot; or &quot;zone&quot; appears in the map, then
257 # all valid keys other than &quot;region&quot; or &quot;zone&quot; must also appear in the
258 # map.
259 &quot;a_key&quot;: &quot;A String&quot;,
260 },
261 &quot;name&quot;: &quot;A String&quot;, # The resource name of the override.
262 # This name is generated by the server when the override is created.
263 #
264 # Example names would be:
265 # `projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus/limits/%2Fproject%2Fregion/adminOverrides/4a3f2c1d`
266 # `projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus/limits/%2Fproject%2Fregion/consumerOverrides/4a3f2c1d`
267 #
268 # The resource name is intended to be opaque and should not be parsed for
269 # its component strings, since its representation could change in the future.
270 &quot;overrideValue&quot;: &quot;A String&quot;, # The overriding quota limit value.
271 # Can be any nonnegative integer, or -1 (unlimited quota).
272 },
273 },
274 ],
275 &quot;name&quot;: &quot;A String&quot;, # The resource name of the quota limit.
276 #
277 # An example name would be:
278 # `projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus/limits/%2Fproject%2Fregion`
279 #
280 # The resource name is intended to be opaque and should not be parsed for
281 # its component strings, since its representation could change in the future.
282 &quot;unit&quot;: &quot;A String&quot;, # The limit unit.
283 #
284 # An example unit would be
285 # `1/{project}/{region}`
286 # Note that `{project}` and `{region}` are not placeholders in this example;
287 # the literal characters `{` and `}` occur in the string.
288 &quot;metric&quot;: &quot;A String&quot;, # The name of the parent metric of this limit.
289 #
290 # An example name would be:
291 # `compute.googleapis.com/cpus`
292 &quot;isPrecise&quot;: True or False, # Whether this limit is precise or imprecise.
293 },
294 ],
295 &quot;displayName&quot;: &quot;A String&quot;, # The display name of the metric.
296 #
297 # An example name would be:
298 # &quot;CPUs&quot;
299 &quot;name&quot;: &quot;A String&quot;, # The resource name of the quota settings on this metric for this consumer.
300 #
301 # An example name would be:
302 # `projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus
303 #
304 # The resource name is intended to be opaque and should not be parsed for
305 # its component strings, since its representation could change in the future.
306 &quot;metric&quot;: &quot;A String&quot;, # The name of the metric.
307 #
308 # An example name would be:
309 # `compute.googleapis.com/cpus`
310 }</pre>
311</div>
312
313<div class="method">
314 <code class="details" id="list">list(parent, pageSize=None, pageToken=None, view=None, x__xgafv=None)</code>
315 <pre>Retrieves a summary of all quota information visible to the service
316consumer, organized by service metric. Each metric includes information
317about all of its defined limits. Each limit includes the limit
318configuration (quota unit, preciseness, default value), the current
319effective limit value, and all of the overrides applied to the limit.
320
321Args:
322 parent: string, Parent of the quotas resource.
323
324Some example names would be:
325projects/123/services/serviceconsumermanagement.googleapis.com
326folders/345/services/serviceconsumermanagement.googleapis.com
327organizations/456/services/serviceconsumermanagement.googleapis.com (required)
328 pageSize: integer, Requested size of the next page of data.
329 pageToken: string, Token identifying which result to start with; returned by a previous list
330call.
331 view: string, Specifies the level of detail for quota information in the response.
332 x__xgafv: string, V1 error format.
333 Allowed values
334 1 - v1 error format
335 2 - v2 error format
336
337Returns:
338 An object of the form:
339
340 { # Response message for ListConsumerQuotaMetrics
341 &quot;metrics&quot;: [ # Quota settings for the consumer, organized by quota metric.
342 { # Consumer quota settings for a quota metric.
343 &quot;consumerQuotaLimits&quot;: [ # The consumer quota for each quota limit defined on the metric.
344 { # Consumer quota settings for a quota limit.
345 &quot;allowsAdminOverrides&quot;: True or False, # Whether admin overrides are allowed on this limit
346 &quot;quotaBuckets&quot;: [ # Summary of the enforced quota buckets, organized by quota dimension,
347 # ordered from least specific to most specific (for example, the global
348 # default bucket, with no quota dimensions, will always appear first).
349 { # A quota bucket is a quota provisioning unit for a specific set of dimensions.
350 &quot;consumerOverride&quot;: { # A quota override # Consumer override on this quota bucket.
351 &quot;unit&quot;: &quot;A String&quot;, # The limit unit of the limit to which this override applies.
352 #
353 # An example unit would be:
354 # `1/{project}/{region}`
355 # Note that `{project}` and `{region}` are not placeholders in this example;
356 # the literal characters `{` and `}` occur in the string.
357 &quot;metric&quot;: &quot;A String&quot;, # The name of the metric to which this override applies.
358 #
359 # An example name would be:
360 # `compute.googleapis.com/cpus`
361 &quot;dimensions&quot;: { # If this map is nonempty, then this override applies only to specific values
362 # for dimensions defined in the limit unit.
363 #
364 # For example, an override on a limit with the unit 1/{project}/{region}
365 # could contain an entry with the key &quot;region&quot; and the value &quot;us-east-1&quot;;
366 # the override is only applied to quota consumed in that region.
367 #
368 # This map has the following restrictions:
369 #
370 # * Keys that are not defined in the limit&#x27;s unit are not valid keys.
371 # Any string appearing in {brackets} in the unit (besides {project} or
372 # {user}) is a defined key.
373 # * &quot;project&quot; is not a valid key; the project is already specified in
374 # the parent resource name.
375 # * &quot;user&quot; is not a valid key; the API does not support quota overrides
376 # that apply only to a specific user.
377 # * If &quot;region&quot; appears as a key, its value must be a valid Cloud region.
378 # * If &quot;zone&quot; appears as a key, its value must be a valid Cloud zone.
379 # * If any valid key other than &quot;region&quot; or &quot;zone&quot; appears in the map, then
380 # all valid keys other than &quot;region&quot; or &quot;zone&quot; must also appear in the
381 # map.
382 &quot;a_key&quot;: &quot;A String&quot;,
383 },
384 &quot;name&quot;: &quot;A String&quot;, # The resource name of the override.
385 # This name is generated by the server when the override is created.
386 #
387 # Example names would be:
388 # `projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus/limits/%2Fproject%2Fregion/adminOverrides/4a3f2c1d`
389 # `projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus/limits/%2Fproject%2Fregion/consumerOverrides/4a3f2c1d`
390 #
391 # The resource name is intended to be opaque and should not be parsed for
392 # its component strings, since its representation could change in the future.
393 &quot;overrideValue&quot;: &quot;A String&quot;, # The overriding quota limit value.
394 # Can be any nonnegative integer, or -1 (unlimited quota).
395 },
396 &quot;defaultLimit&quot;: &quot;A String&quot;, # The default limit of this quota bucket, as specified by the service
397 # configuration.
398 &quot;effectiveLimit&quot;: &quot;A String&quot;, # The effective limit of this quota bucket. Equal to default_limit if there
399 # are no overrides.
400 &quot;producerOverride&quot;: { # A quota override # Producer override on this quota bucket.
401 &quot;unit&quot;: &quot;A String&quot;, # The limit unit of the limit to which this override applies.
402 #
403 # An example unit would be:
404 # `1/{project}/{region}`
405 # Note that `{project}` and `{region}` are not placeholders in this example;
406 # the literal characters `{` and `}` occur in the string.
407 &quot;metric&quot;: &quot;A String&quot;, # The name of the metric to which this override applies.
408 #
409 # An example name would be:
410 # `compute.googleapis.com/cpus`
411 &quot;dimensions&quot;: { # If this map is nonempty, then this override applies only to specific values
412 # for dimensions defined in the limit unit.
413 #
414 # For example, an override on a limit with the unit 1/{project}/{region}
415 # could contain an entry with the key &quot;region&quot; and the value &quot;us-east-1&quot;;
416 # the override is only applied to quota consumed in that region.
417 #
418 # This map has the following restrictions:
419 #
420 # * Keys that are not defined in the limit&#x27;s unit are not valid keys.
421 # Any string appearing in {brackets} in the unit (besides {project} or
422 # {user}) is a defined key.
423 # * &quot;project&quot; is not a valid key; the project is already specified in
424 # the parent resource name.
425 # * &quot;user&quot; is not a valid key; the API does not support quota overrides
426 # that apply only to a specific user.
427 # * If &quot;region&quot; appears as a key, its value must be a valid Cloud region.
428 # * If &quot;zone&quot; appears as a key, its value must be a valid Cloud zone.
429 # * If any valid key other than &quot;region&quot; or &quot;zone&quot; appears in the map, then
430 # all valid keys other than &quot;region&quot; or &quot;zone&quot; must also appear in the
431 # map.
432 &quot;a_key&quot;: &quot;A String&quot;,
433 },
434 &quot;name&quot;: &quot;A String&quot;, # The resource name of the override.
435 # This name is generated by the server when the override is created.
436 #
437 # Example names would be:
438 # `projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus/limits/%2Fproject%2Fregion/adminOverrides/4a3f2c1d`
439 # `projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus/limits/%2Fproject%2Fregion/consumerOverrides/4a3f2c1d`
440 #
441 # The resource name is intended to be opaque and should not be parsed for
442 # its component strings, since its representation could change in the future.
443 &quot;overrideValue&quot;: &quot;A String&quot;, # The overriding quota limit value.
444 # Can be any nonnegative integer, or -1 (unlimited quota).
445 },
446 &quot;dimensions&quot;: { # The dimensions of this quota bucket.
447 #
448 # If this map is empty, this is the global bucket, which is the default quota
449 # value applied to all requests that do not have a more specific override.
450 #
451 # If this map is nonempty, the default limit, effective limit, and quota
452 # overrides apply only to requests that have the dimensions given in the map.
453 #
454 # For example, if the map has key &quot;region&quot; and value &quot;us-east-1&quot;, then the
455 # specified effective limit is only effective in that region, and the
456 # specified overrides apply only in that region.
457 &quot;a_key&quot;: &quot;A String&quot;,
458 },
459 &quot;adminOverride&quot;: { # A quota override # Admin override on this quota bucket.
460 &quot;unit&quot;: &quot;A String&quot;, # The limit unit of the limit to which this override applies.
461 #
462 # An example unit would be:
463 # `1/{project}/{region}`
464 # Note that `{project}` and `{region}` are not placeholders in this example;
465 # the literal characters `{` and `}` occur in the string.
466 &quot;metric&quot;: &quot;A String&quot;, # The name of the metric to which this override applies.
467 #
468 # An example name would be:
469 # `compute.googleapis.com/cpus`
470 &quot;dimensions&quot;: { # If this map is nonempty, then this override applies only to specific values
471 # for dimensions defined in the limit unit.
472 #
473 # For example, an override on a limit with the unit 1/{project}/{region}
474 # could contain an entry with the key &quot;region&quot; and the value &quot;us-east-1&quot;;
475 # the override is only applied to quota consumed in that region.
476 #
477 # This map has the following restrictions:
478 #
479 # * Keys that are not defined in the limit&#x27;s unit are not valid keys.
480 # Any string appearing in {brackets} in the unit (besides {project} or
481 # {user}) is a defined key.
482 # * &quot;project&quot; is not a valid key; the project is already specified in
483 # the parent resource name.
484 # * &quot;user&quot; is not a valid key; the API does not support quota overrides
485 # that apply only to a specific user.
486 # * If &quot;region&quot; appears as a key, its value must be a valid Cloud region.
487 # * If &quot;zone&quot; appears as a key, its value must be a valid Cloud zone.
488 # * If any valid key other than &quot;region&quot; or &quot;zone&quot; appears in the map, then
489 # all valid keys other than &quot;region&quot; or &quot;zone&quot; must also appear in the
490 # map.
491 &quot;a_key&quot;: &quot;A String&quot;,
492 },
493 &quot;name&quot;: &quot;A String&quot;, # The resource name of the override.
494 # This name is generated by the server when the override is created.
495 #
496 # Example names would be:
497 # `projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus/limits/%2Fproject%2Fregion/adminOverrides/4a3f2c1d`
498 # `projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus/limits/%2Fproject%2Fregion/consumerOverrides/4a3f2c1d`
499 #
500 # The resource name is intended to be opaque and should not be parsed for
501 # its component strings, since its representation could change in the future.
502 &quot;overrideValue&quot;: &quot;A String&quot;, # The overriding quota limit value.
503 # Can be any nonnegative integer, or -1 (unlimited quota).
504 },
505 },
506 ],
507 &quot;name&quot;: &quot;A String&quot;, # The resource name of the quota limit.
508 #
509 # An example name would be:
510 # `projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus/limits/%2Fproject%2Fregion`
511 #
512 # The resource name is intended to be opaque and should not be parsed for
513 # its component strings, since its representation could change in the future.
514 &quot;unit&quot;: &quot;A String&quot;, # The limit unit.
515 #
516 # An example unit would be
517 # `1/{project}/{region}`
518 # Note that `{project}` and `{region}` are not placeholders in this example;
519 # the literal characters `{` and `}` occur in the string.
520 &quot;metric&quot;: &quot;A String&quot;, # The name of the parent metric of this limit.
521 #
522 # An example name would be:
523 # `compute.googleapis.com/cpus`
524 &quot;isPrecise&quot;: True or False, # Whether this limit is precise or imprecise.
525 },
526 ],
527 &quot;displayName&quot;: &quot;A String&quot;, # The display name of the metric.
528 #
529 # An example name would be:
530 # &quot;CPUs&quot;
531 &quot;name&quot;: &quot;A String&quot;, # The resource name of the quota settings on this metric for this consumer.
532 #
533 # An example name would be:
534 # `projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus
535 #
536 # The resource name is intended to be opaque and should not be parsed for
537 # its component strings, since its representation could change in the future.
538 &quot;metric&quot;: &quot;A String&quot;, # The name of the metric.
539 #
540 # An example name would be:
541 # `compute.googleapis.com/cpus`
542 },
543 ],
544 &quot;nextPageToken&quot;: &quot;A String&quot;, # Token identifying which result to start with; returned by a previous list
545 # call.
546 }</pre>
547</div>
548
549<div class="method">
550 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
551 <pre>Retrieves the next page of results.
552
553Args:
554 previous_request: The request for the previous page. (required)
555 previous_response: The response from the request for the previous page. (required)
556
557Returns:
558 A request object that you can call &#x27;execute()&#x27; on to request the next
559 page. Returns None if there are no more items in the collection.
560 </pre>
561</div>
562
563</body></html>