blob: 1e7ba878e09c513dbb192de34dc5d13a03901930 [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> . <a href="serviceusage_v1beta1.services.consumerQuotaMetrics.limits.html">limits</a> . <a href="serviceusage_v1beta1.services.consumerQuotaMetrics.limits.consumerOverrides.html">consumerOverrides</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="#create">create(parent, body=None, force=None, x__xgafv=None)</a></code></p>
79<p class="firstline">Creates a consumer override.</p>
80<p class="toc_element">
81 <code><a href="#delete">delete(name, force=None, x__xgafv=None)</a></code></p>
82<p class="firstline">Deletes a consumer override.</p>
83<p class="toc_element">
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -070084 <code><a href="#list">list(parent, pageToken=None, pageSize=None, x__xgafv=None)</a></code></p>
Bu Sun Kim65020912020-05-20 12:08:20 -070085<p class="firstline">Lists all consumer overrides on this limit.</p>
86<p class="toc_element">
87 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
88<p class="firstline">Retrieves the next page of results.</p>
89<p class="toc_element">
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -070090 <code><a href="#patch">patch(name, body=None, force=None, updateMask=None, x__xgafv=None)</a></code></p>
Bu Sun Kim65020912020-05-20 12:08:20 -070091<p class="firstline">Updates a consumer override.</p>
92<h3>Method Details</h3>
93<div class="method">
94 <code class="details" id="create">create(parent, body=None, force=None, x__xgafv=None)</code>
95 <pre>Creates a consumer override.
96A consumer override is applied to the consumer on its own authority to
97limit its own quota usage. Consumer overrides cannot be used to grant more
98quota than would be allowed by admin overrides, producer overrides, or the
99default limit of the service.
100
101Args:
102 parent: string, The resource name of the parent quota limit, returned by a
103ListConsumerQuotaMetrics or GetConsumerQuotaMetric call.
104
105An example name would be:
106`projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus/limits/%2Fproject%2Fregion` (required)
107 body: object, The request body.
108 The object takes the form of:
109
110{ # A quota override
111 &quot;unit&quot;: &quot;A String&quot;, # The limit unit of the limit to which this override applies.
112 #
113 # An example unit would be:
114 # `1/{project}/{region}`
115 # Note that `{project}` and `{region}` are not placeholders in this example;
116 # the literal characters `{` and `}` occur in the string.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700117 &quot;overrideValue&quot;: &quot;A String&quot;, # The overriding quota limit value.
118 # Can be any nonnegative integer, or -1 (unlimited quota).
119 &quot;name&quot;: &quot;A String&quot;, # The resource name of the override.
120 # This name is generated by the server when the override is created.
121 #
122 # Example names would be:
123 # `projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus/limits/%2Fproject%2Fregion/adminOverrides/4a3f2c1d`
124 # `projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus/limits/%2Fproject%2Fregion/consumerOverrides/4a3f2c1d`
125 #
126 # The resource name is intended to be opaque and should not be parsed for
127 # its component strings, since its representation could change in the future.
Bu Sun Kim65020912020-05-20 12:08:20 -0700128 &quot;metric&quot;: &quot;A String&quot;, # The name of the metric to which this override applies.
129 #
130 # An example name would be:
131 # `compute.googleapis.com/cpus`
132 &quot;dimensions&quot;: { # If this map is nonempty, then this override applies only to specific values
133 # for dimensions defined in the limit unit.
134 #
135 # For example, an override on a limit with the unit 1/{project}/{region}
136 # could contain an entry with the key &quot;region&quot; and the value &quot;us-east-1&quot;;
137 # the override is only applied to quota consumed in that region.
138 #
139 # This map has the following restrictions:
140 #
141 # * Keys that are not defined in the limit&#x27;s unit are not valid keys.
142 # Any string appearing in {brackets} in the unit (besides {project} or
143 # {user}) is a defined key.
144 # * &quot;project&quot; is not a valid key; the project is already specified in
145 # the parent resource name.
146 # * &quot;user&quot; is not a valid key; the API does not support quota overrides
147 # that apply only to a specific user.
148 # * If &quot;region&quot; appears as a key, its value must be a valid Cloud region.
149 # * If &quot;zone&quot; appears as a key, its value must be a valid Cloud zone.
150 # * If any valid key other than &quot;region&quot; or &quot;zone&quot; appears in the map, then
151 # all valid keys other than &quot;region&quot; or &quot;zone&quot; must also appear in the
152 # map.
153 &quot;a_key&quot;: &quot;A String&quot;,
154 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700155}
156
157 force: boolean, Whether to force the creation of the quota override.
158If creating an override would cause the effective quota for the consumer to
159decrease by more than 10 percent, the call is rejected, as a safety measure
160to avoid accidentally decreasing quota too quickly. Setting the force
161parameter to true ignores this restriction.
162 x__xgafv: string, V1 error format.
163 Allowed values
164 1 - v1 error format
165 2 - v2 error format
166
167Returns:
168 An object of the form:
169
170 { # This resource represents a long-running operation that is the result of a
171 # network API call.
172 &quot;done&quot;: True or False, # If the value is `false`, it means the operation is still in progress.
173 # If `true`, the operation is completed, and either `error` or `response` is
174 # available.
Bu Sun Kim65020912020-05-20 12:08:20 -0700175 &quot;name&quot;: &quot;A String&quot;, # The server-assigned name, which is only unique within the same service that
176 # originally returns it. If you use the default HTTP mapping, the
177 # `name` should be a resource name ending with `operations/{unique_id}`.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700178 &quot;metadata&quot;: { # Service-specific metadata associated with the operation. It typically
179 # contains progress information and common metadata such as create time.
180 # Some services might not provide such metadata. Any method that returns a
181 # long-running operation should document the metadata type, if any.
182 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
183 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700184 &quot;response&quot;: { # The normal response of the operation in case of success. If the original
185 # method returns no data on success, such as `Delete`, the response is
186 # `google.protobuf.Empty`. If the original method is standard
187 # `Get`/`Create`/`Update`, the response should be the resource. For other
188 # methods, the response should have the type `XxxResponse`, where `Xxx`
189 # is the original method name. For example, if the original method name
190 # is `TakeSnapshot()`, the inferred response type is
191 # `TakeSnapshotResponse`.
192 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
193 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700194 &quot;error&quot;: { # The `Status` type defines a logical error model that is suitable for # The error result of the operation in case of failure or cancellation.
195 # different programming environments, including REST APIs and RPC APIs. It is
196 # used by [gRPC](https://github.com/grpc). Each `Status` message contains
197 # three pieces of data: error code, error message, and error details.
198 #
199 # You can find out more about this error model and how to work with it in the
200 # [API Design Guide](https://cloud.google.com/apis/design/errors).
201 &quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any
202 # user-facing error message should be localized and sent in the
203 # google.rpc.Status.details field, or localized by the client.
204 &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
205 &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of
206 # message types for APIs to use.
207 {
208 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
209 },
210 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700211 },
212 }</pre>
213</div>
214
215<div class="method">
216 <code class="details" id="delete">delete(name, force=None, x__xgafv=None)</code>
217 <pre>Deletes a consumer override.
218
219Args:
220 name: string, The resource name of the override to delete.
221
222An example name would be:
223`projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus/limits/%2Fproject%2Fregion/consumerOverrides/4a3f2c1d` (required)
224 force: boolean, Whether to force the deletion of the quota override.
225If deleting an override would cause the effective quota for the consumer to
226decrease by more than 10 percent, the call is rejected, as a safety measure
227to avoid accidentally decreasing quota too quickly. Setting the force
228parameter to true ignores this restriction.
229 x__xgafv: string, V1 error format.
230 Allowed values
231 1 - v1 error format
232 2 - v2 error format
233
234Returns:
235 An object of the form:
236
237 { # This resource represents a long-running operation that is the result of a
238 # network API call.
239 &quot;done&quot;: True or False, # If the value is `false`, it means the operation is still in progress.
240 # If `true`, the operation is completed, and either `error` or `response` is
241 # available.
Bu Sun Kim65020912020-05-20 12:08:20 -0700242 &quot;name&quot;: &quot;A String&quot;, # The server-assigned name, which is only unique within the same service that
243 # originally returns it. If you use the default HTTP mapping, the
244 # `name` should be a resource name ending with `operations/{unique_id}`.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700245 &quot;metadata&quot;: { # Service-specific metadata associated with the operation. It typically
246 # contains progress information and common metadata such as create time.
247 # Some services might not provide such metadata. Any method that returns a
248 # long-running operation should document the metadata type, if any.
249 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
250 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700251 &quot;response&quot;: { # The normal response of the operation in case of success. If the original
252 # method returns no data on success, such as `Delete`, the response is
253 # `google.protobuf.Empty`. If the original method is standard
254 # `Get`/`Create`/`Update`, the response should be the resource. For other
255 # methods, the response should have the type `XxxResponse`, where `Xxx`
256 # is the original method name. For example, if the original method name
257 # is `TakeSnapshot()`, the inferred response type is
258 # `TakeSnapshotResponse`.
259 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
260 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700261 &quot;error&quot;: { # The `Status` type defines a logical error model that is suitable for # The error result of the operation in case of failure or cancellation.
262 # different programming environments, including REST APIs and RPC APIs. It is
263 # used by [gRPC](https://github.com/grpc). Each `Status` message contains
264 # three pieces of data: error code, error message, and error details.
265 #
266 # You can find out more about this error model and how to work with it in the
267 # [API Design Guide](https://cloud.google.com/apis/design/errors).
268 &quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any
269 # user-facing error message should be localized and sent in the
270 # google.rpc.Status.details field, or localized by the client.
271 &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
272 &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of
273 # message types for APIs to use.
274 {
275 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
276 },
277 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700278 },
279 }</pre>
280</div>
281
282<div class="method">
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700283 <code class="details" id="list">list(parent, pageToken=None, pageSize=None, x__xgafv=None)</code>
Bu Sun Kim65020912020-05-20 12:08:20 -0700284 <pre>Lists all consumer overrides on this limit.
285
286Args:
287 parent: string, The resource name of the parent quota limit, returned by a
288ListConsumerQuotaMetrics or GetConsumerQuotaMetric call.
289
290An example name would be:
291`projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus/limits/%2Fproject%2Fregion` (required)
Bu Sun Kim65020912020-05-20 12:08:20 -0700292 pageToken: string, Token identifying which result to start with; returned by a previous list
293call.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700294 pageSize: integer, Requested size of the next page of data.
Bu Sun Kim65020912020-05-20 12:08:20 -0700295 x__xgafv: string, V1 error format.
296 Allowed values
297 1 - v1 error format
298 2 - v2 error format
299
300Returns:
301 An object of the form:
302
303 { # Response message for ListConsumerOverrides.
Bu Sun Kim65020912020-05-20 12:08:20 -0700304 &quot;overrides&quot;: [ # Consumer overrides on this limit.
305 { # A quota override
306 &quot;unit&quot;: &quot;A String&quot;, # The limit unit of the limit to which this override applies.
307 #
308 # An example unit would be:
309 # `1/{project}/{region}`
310 # Note that `{project}` and `{region}` are not placeholders in this example;
311 # the literal characters `{` and `}` occur in the string.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700312 &quot;overrideValue&quot;: &quot;A String&quot;, # The overriding quota limit value.
313 # Can be any nonnegative integer, or -1 (unlimited quota).
314 &quot;name&quot;: &quot;A String&quot;, # The resource name of the override.
315 # This name is generated by the server when the override is created.
316 #
317 # Example names would be:
318 # `projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus/limits/%2Fproject%2Fregion/adminOverrides/4a3f2c1d`
319 # `projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus/limits/%2Fproject%2Fregion/consumerOverrides/4a3f2c1d`
320 #
321 # The resource name is intended to be opaque and should not be parsed for
322 # its component strings, since its representation could change in the future.
Bu Sun Kim65020912020-05-20 12:08:20 -0700323 &quot;metric&quot;: &quot;A String&quot;, # The name of the metric to which this override applies.
324 #
325 # An example name would be:
326 # `compute.googleapis.com/cpus`
327 &quot;dimensions&quot;: { # If this map is nonempty, then this override applies only to specific values
328 # for dimensions defined in the limit unit.
329 #
330 # For example, an override on a limit with the unit 1/{project}/{region}
331 # could contain an entry with the key &quot;region&quot; and the value &quot;us-east-1&quot;;
332 # the override is only applied to quota consumed in that region.
333 #
334 # This map has the following restrictions:
335 #
336 # * Keys that are not defined in the limit&#x27;s unit are not valid keys.
337 # Any string appearing in {brackets} in the unit (besides {project} or
338 # {user}) is a defined key.
339 # * &quot;project&quot; is not a valid key; the project is already specified in
340 # the parent resource name.
341 # * &quot;user&quot; is not a valid key; the API does not support quota overrides
342 # that apply only to a specific user.
343 # * If &quot;region&quot; appears as a key, its value must be a valid Cloud region.
344 # * If &quot;zone&quot; appears as a key, its value must be a valid Cloud zone.
345 # * If any valid key other than &quot;region&quot; or &quot;zone&quot; appears in the map, then
346 # all valid keys other than &quot;region&quot; or &quot;zone&quot; must also appear in the
347 # map.
348 &quot;a_key&quot;: &quot;A String&quot;,
349 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700350 },
351 ],
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700352 &quot;nextPageToken&quot;: &quot;A String&quot;, # Token identifying which result to start with; returned by a previous list
353 # call.
Bu Sun Kim65020912020-05-20 12:08:20 -0700354 }</pre>
355</div>
356
357<div class="method">
358 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
359 <pre>Retrieves the next page of results.
360
361Args:
362 previous_request: The request for the previous page. (required)
363 previous_response: The response from the request for the previous page. (required)
364
365Returns:
366 A request object that you can call &#x27;execute()&#x27; on to request the next
367 page. Returns None if there are no more items in the collection.
368 </pre>
369</div>
370
371<div class="method">
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700372 <code class="details" id="patch">patch(name, body=None, force=None, updateMask=None, x__xgafv=None)</code>
Bu Sun Kim65020912020-05-20 12:08:20 -0700373 <pre>Updates a consumer override.
374
375Args:
376 name: string, The resource name of the override to update.
377
378An example name would be:
379`projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus/limits/%2Fproject%2Fregion/consumerOverrides/4a3f2c1d` (required)
380 body: object, The request body.
381 The object takes the form of:
382
383{ # A quota override
384 &quot;unit&quot;: &quot;A String&quot;, # The limit unit of the limit to which this override applies.
385 #
386 # An example unit would be:
387 # `1/{project}/{region}`
388 # Note that `{project}` and `{region}` are not placeholders in this example;
389 # the literal characters `{` and `}` occur in the string.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700390 &quot;overrideValue&quot;: &quot;A String&quot;, # The overriding quota limit value.
391 # Can be any nonnegative integer, or -1 (unlimited quota).
392 &quot;name&quot;: &quot;A String&quot;, # The resource name of the override.
393 # This name is generated by the server when the override is created.
394 #
395 # Example names would be:
396 # `projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus/limits/%2Fproject%2Fregion/adminOverrides/4a3f2c1d`
397 # `projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus/limits/%2Fproject%2Fregion/consumerOverrides/4a3f2c1d`
398 #
399 # The resource name is intended to be opaque and should not be parsed for
400 # its component strings, since its representation could change in the future.
Bu Sun Kim65020912020-05-20 12:08:20 -0700401 &quot;metric&quot;: &quot;A String&quot;, # The name of the metric to which this override applies.
402 #
403 # An example name would be:
404 # `compute.googleapis.com/cpus`
405 &quot;dimensions&quot;: { # If this map is nonempty, then this override applies only to specific values
406 # for dimensions defined in the limit unit.
407 #
408 # For example, an override on a limit with the unit 1/{project}/{region}
409 # could contain an entry with the key &quot;region&quot; and the value &quot;us-east-1&quot;;
410 # the override is only applied to quota consumed in that region.
411 #
412 # This map has the following restrictions:
413 #
414 # * Keys that are not defined in the limit&#x27;s unit are not valid keys.
415 # Any string appearing in {brackets} in the unit (besides {project} or
416 # {user}) is a defined key.
417 # * &quot;project&quot; is not a valid key; the project is already specified in
418 # the parent resource name.
419 # * &quot;user&quot; is not a valid key; the API does not support quota overrides
420 # that apply only to a specific user.
421 # * If &quot;region&quot; appears as a key, its value must be a valid Cloud region.
422 # * If &quot;zone&quot; appears as a key, its value must be a valid Cloud zone.
423 # * If any valid key other than &quot;region&quot; or &quot;zone&quot; appears in the map, then
424 # all valid keys other than &quot;region&quot; or &quot;zone&quot; must also appear in the
425 # map.
426 &quot;a_key&quot;: &quot;A String&quot;,
427 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700428}
429
Bu Sun Kim65020912020-05-20 12:08:20 -0700430 force: boolean, Whether to force the update of the quota override.
431If updating an override would cause the effective quota for the consumer to
432decrease by more than 10 percent, the call is rejected, as a safety measure
433to avoid accidentally decreasing quota too quickly. Setting the force
434parameter to true ignores this restriction.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700435 updateMask: string, Update only the specified fields of the override.
436If unset, all fields will be updated.
Bu Sun Kim65020912020-05-20 12:08:20 -0700437 x__xgafv: string, V1 error format.
438 Allowed values
439 1 - v1 error format
440 2 - v2 error format
441
442Returns:
443 An object of the form:
444
445 { # This resource represents a long-running operation that is the result of a
446 # network API call.
447 &quot;done&quot;: True or False, # If the value is `false`, it means the operation is still in progress.
448 # If `true`, the operation is completed, and either `error` or `response` is
449 # available.
Bu Sun Kim65020912020-05-20 12:08:20 -0700450 &quot;name&quot;: &quot;A String&quot;, # The server-assigned name, which is only unique within the same service that
451 # originally returns it. If you use the default HTTP mapping, the
452 # `name` should be a resource name ending with `operations/{unique_id}`.
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700453 &quot;metadata&quot;: { # Service-specific metadata associated with the operation. It typically
454 # contains progress information and common metadata such as create time.
455 # Some services might not provide such metadata. Any method that returns a
456 # long-running operation should document the metadata type, if any.
457 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
458 },
Bu Sun Kim65020912020-05-20 12:08:20 -0700459 &quot;response&quot;: { # The normal response of the operation in case of success. If the original
460 # method returns no data on success, such as `Delete`, the response is
461 # `google.protobuf.Empty`. If the original method is standard
462 # `Get`/`Create`/`Update`, the response should be the resource. For other
463 # methods, the response should have the type `XxxResponse`, where `Xxx`
464 # is the original method name. For example, if the original method name
465 # is `TakeSnapshot()`, the inferred response type is
466 # `TakeSnapshotResponse`.
467 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
468 },
Bu Sun Kim4ed7d3f2020-05-27 12:20:54 -0700469 &quot;error&quot;: { # The `Status` type defines a logical error model that is suitable for # The error result of the operation in case of failure or cancellation.
470 # different programming environments, including REST APIs and RPC APIs. It is
471 # used by [gRPC](https://github.com/grpc). Each `Status` message contains
472 # three pieces of data: error code, error message, and error details.
473 #
474 # You can find out more about this error model and how to work with it in the
475 # [API Design Guide](https://cloud.google.com/apis/design/errors).
476 &quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any
477 # user-facing error message should be localized and sent in the
478 # google.rpc.Status.details field, or localized by the client.
479 &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
480 &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of
481 # message types for APIs to use.
482 {
483 &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
484 },
485 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700486 },
487 }</pre>
488</div>
489
490</body></html>