blob: a12c693653b6802d37205f05799c840b84dccf92 [file] [log] [blame]
Martin Kustermann12cdd522018-08-27 10:46:50 +02001// This is a generated file (see the discoveryapis_generator project).
2
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02003// ignore_for_file: unused_import, unnecessary_cast
Martin Kustermann12cdd522018-08-27 10:46:50 +02004
5library googleapis.serviceusage.v1;
6
7import 'dart:core' as core;
8import 'dart:async' as async;
9import 'dart:convert' as convert;
10
11import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons;
12import 'package:http/http.dart' as http_1;
13
14export 'package:_discoveryapis_commons/_discoveryapis_commons.dart'
15 show ApiRequestError, DetailedApiRequestError;
16
17const core.String USER_AGENT = 'dart-api-client serviceusage/v1';
18
19/// Enables services that service consumers want to use on Google Cloud
20/// Platform, lists the available or enabled services, or disables services that
21/// service consumers no longer use.
22class ServiceusageApi {
23 /// View and manage your data across Google Cloud Platform services
24 static const CloudPlatformScope =
25 "https://www.googleapis.com/auth/cloud-platform";
26
27 /// View your data across Google Cloud Platform services
28 static const CloudPlatformReadOnlyScope =
29 "https://www.googleapis.com/auth/cloud-platform.read-only";
30
31 /// Manage your Google API service configuration
32 static const ServiceManagementScope =
33 "https://www.googleapis.com/auth/service.management";
34
35 final commons.ApiRequester _requester;
36
37 OperationsResourceApi get operations => new OperationsResourceApi(_requester);
38 ServicesResourceApi get services => new ServicesResourceApi(_requester);
39
40 ServiceusageApi(http_1.Client client,
Jonas Finnemann Jensend22e4042019-02-09 14:14:19 +010041 {core.String rootUrl = "https://serviceusage.googleapis.com/",
42 core.String servicePath = ""})
Martin Kustermann12cdd522018-08-27 10:46:50 +020043 : _requester =
44 new commons.ApiRequester(client, rootUrl, servicePath, USER_AGENT);
45}
46
47class OperationsResourceApi {
48 final commons.ApiRequester _requester;
49
50 OperationsResourceApi(commons.ApiRequester client) : _requester = client;
51
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +020052 /// Starts asynchronous cancellation on a long-running operation. The server
Martin Kustermann12cdd522018-08-27 10:46:50 +020053 /// makes a best effort to cancel the operation, but success is not
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +020054 /// guaranteed. If the server doesn't support this method, it returns
55 /// `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation
56 /// or other methods to check whether the cancellation succeeded or whether
57 /// the operation completed despite cancellation. On successful cancellation,
58 /// the operation is not deleted; instead, it becomes an operation with an
59 /// Operation.error value with a google.rpc.Status.code of 1, corresponding to
60 /// `Code.CANCELLED`.
Martin Kustermann12cdd522018-08-27 10:46:50 +020061 ///
62 /// [request] - The metadata request object.
63 ///
64 /// Request parameters:
65 ///
66 /// [name] - The name of the operation resource to be cancelled.
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +020067 /// Value must have pattern "^operations/.*$".
Martin Kustermann12cdd522018-08-27 10:46:50 +020068 ///
69 /// [$fields] - Selector specifying which fields to include in a partial
70 /// response.
71 ///
72 /// Completes with a [Empty].
73 ///
74 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
75 /// error.
76 ///
77 /// If the used [http_1.Client] completes with an error when making a REST
78 /// call, this method will complete with the same error.
79 async.Future<Empty> cancel(CancelOperationRequest request, core.String name,
80 {core.String $fields}) {
Jonas Finnemann Jensend22e4042019-02-09 14:14:19 +010081 var _url;
Martin Kustermann12cdd522018-08-27 10:46:50 +020082 var _queryParams = new core.Map<core.String, core.List<core.String>>();
Jonas Finnemann Jensend22e4042019-02-09 14:14:19 +010083 var _uploadMedia;
84 var _uploadOptions;
Martin Kustermann12cdd522018-08-27 10:46:50 +020085 var _downloadOptions = commons.DownloadOptions.Metadata;
Jonas Finnemann Jensend22e4042019-02-09 14:14:19 +010086 var _body;
Martin Kustermann12cdd522018-08-27 10:46:50 +020087
88 if (request != null) {
89 _body = convert.json.encode((request).toJson());
90 }
91 if (name == null) {
92 throw new core.ArgumentError("Parameter name is required.");
93 }
94 if ($fields != null) {
95 _queryParams["fields"] = [$fields];
96 }
97
98 _url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name') + ':cancel';
99
100 var _response = _requester.request(_url, "POST",
101 body: _body,
102 queryParams: _queryParams,
103 uploadOptions: _uploadOptions,
104 uploadMedia: _uploadMedia,
105 downloadOptions: _downloadOptions);
106 return _response.then((data) => new Empty.fromJson(data));
107 }
108
109 /// Deletes a long-running operation. This method indicates that the client is
110 /// no longer interested in the operation result. It does not cancel the
111 /// operation. If the server doesn't support this method, it returns
112 /// `google.rpc.Code.UNIMPLEMENTED`.
113 ///
114 /// Request parameters:
115 ///
116 /// [name] - The name of the operation resource to be deleted.
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +0200117 /// Value must have pattern "^operations/.*$".
Martin Kustermann12cdd522018-08-27 10:46:50 +0200118 ///
119 /// [$fields] - Selector specifying which fields to include in a partial
120 /// response.
121 ///
122 /// Completes with a [Empty].
123 ///
124 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
125 /// error.
126 ///
127 /// If the used [http_1.Client] completes with an error when making a REST
128 /// call, this method will complete with the same error.
129 async.Future<Empty> delete(core.String name, {core.String $fields}) {
Jonas Finnemann Jensend22e4042019-02-09 14:14:19 +0100130 var _url;
Martin Kustermann12cdd522018-08-27 10:46:50 +0200131 var _queryParams = new core.Map<core.String, core.List<core.String>>();
Jonas Finnemann Jensend22e4042019-02-09 14:14:19 +0100132 var _uploadMedia;
133 var _uploadOptions;
Martin Kustermann12cdd522018-08-27 10:46:50 +0200134 var _downloadOptions = commons.DownloadOptions.Metadata;
Jonas Finnemann Jensend22e4042019-02-09 14:14:19 +0100135 var _body;
Martin Kustermann12cdd522018-08-27 10:46:50 +0200136
137 if (name == null) {
138 throw new core.ArgumentError("Parameter name is required.");
139 }
140 if ($fields != null) {
141 _queryParams["fields"] = [$fields];
142 }
143
144 _url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
145
146 var _response = _requester.request(_url, "DELETE",
147 body: _body,
148 queryParams: _queryParams,
149 uploadOptions: _uploadOptions,
150 uploadMedia: _uploadMedia,
151 downloadOptions: _downloadOptions);
152 return _response.then((data) => new Empty.fromJson(data));
153 }
154
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200155 /// Gets the latest state of a long-running operation. Clients can use this
Martin Kustermann12cdd522018-08-27 10:46:50 +0200156 /// method to poll the operation result at intervals as recommended by the API
157 /// service.
158 ///
159 /// Request parameters:
160 ///
161 /// [name] - The name of the operation resource.
162 /// Value must have pattern "^operations/[^/]+$".
163 ///
164 /// [$fields] - Selector specifying which fields to include in a partial
165 /// response.
166 ///
167 /// Completes with a [Operation].
168 ///
169 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
170 /// error.
171 ///
172 /// If the used [http_1.Client] completes with an error when making a REST
173 /// call, this method will complete with the same error.
174 async.Future<Operation> get(core.String name, {core.String $fields}) {
Jonas Finnemann Jensend22e4042019-02-09 14:14:19 +0100175 var _url;
Martin Kustermann12cdd522018-08-27 10:46:50 +0200176 var _queryParams = new core.Map<core.String, core.List<core.String>>();
Jonas Finnemann Jensend22e4042019-02-09 14:14:19 +0100177 var _uploadMedia;
178 var _uploadOptions;
Martin Kustermann12cdd522018-08-27 10:46:50 +0200179 var _downloadOptions = commons.DownloadOptions.Metadata;
Jonas Finnemann Jensend22e4042019-02-09 14:14:19 +0100180 var _body;
Martin Kustermann12cdd522018-08-27 10:46:50 +0200181
182 if (name == null) {
183 throw new core.ArgumentError("Parameter name is required.");
184 }
185 if ($fields != null) {
186 _queryParams["fields"] = [$fields];
187 }
188
189 _url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
190
191 var _response = _requester.request(_url, "GET",
192 body: _body,
193 queryParams: _queryParams,
194 uploadOptions: _uploadOptions,
195 uploadMedia: _uploadMedia,
196 downloadOptions: _downloadOptions);
197 return _response.then((data) => new Operation.fromJson(data));
198 }
199
200 /// Lists operations that match the specified filter in the request. If the
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200201 /// server doesn't support this method, it returns `UNIMPLEMENTED`. NOTE: the
202 /// `name` binding allows API services to override the binding to use
203 /// different resource name schemes, such as `users / * /operations`. To
Martin Kustermann12cdd522018-08-27 10:46:50 +0200204 /// override the binding, API services can add a binding such as
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200205 /// `"/v1/{name=users / * }/operations"` to their service configuration. For
206 /// backwards compatibility, the default name includes the operations
207 /// collection id, however overriding users must ensure the name binding is
208 /// the parent resource, without the operations collection id.
Martin Kustermann12cdd522018-08-27 10:46:50 +0200209 ///
210 /// Request parameters:
211 ///
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200212 /// [pageSize] - The standard list page size.
213 ///
Jonas Finnemann Jensenb223bd52020-10-09 13:02:08 +0200214 /// [name] - The name of the operation's parent resource.
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200215 ///
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +0200216 /// [filter] - The standard list filter.
217 ///
Jonas Finnemann Jensenb223bd52020-10-09 13:02:08 +0200218 /// [pageToken] - The standard list page token.
Martin Kustermann12cdd522018-08-27 10:46:50 +0200219 ///
Martin Kustermann12cdd522018-08-27 10:46:50 +0200220 /// [$fields] - Selector specifying which fields to include in a partial
221 /// response.
222 ///
223 /// Completes with a [ListOperationsResponse].
224 ///
225 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
226 /// error.
227 ///
228 /// If the used [http_1.Client] completes with an error when making a REST
229 /// call, this method will complete with the same error.
230 async.Future<ListOperationsResponse> list(
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200231 {core.int pageSize,
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200232 core.String name,
Jonas Finnemann Jensenb223bd52020-10-09 13:02:08 +0200233 core.String filter,
234 core.String pageToken,
Martin Kustermann12cdd522018-08-27 10:46:50 +0200235 core.String $fields}) {
Jonas Finnemann Jensend22e4042019-02-09 14:14:19 +0100236 var _url;
Martin Kustermann12cdd522018-08-27 10:46:50 +0200237 var _queryParams = new core.Map<core.String, core.List<core.String>>();
Jonas Finnemann Jensend22e4042019-02-09 14:14:19 +0100238 var _uploadMedia;
239 var _uploadOptions;
Martin Kustermann12cdd522018-08-27 10:46:50 +0200240 var _downloadOptions = commons.DownloadOptions.Metadata;
Jonas Finnemann Jensend22e4042019-02-09 14:14:19 +0100241 var _body;
Martin Kustermann12cdd522018-08-27 10:46:50 +0200242
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200243 if (pageSize != null) {
244 _queryParams["pageSize"] = ["${pageSize}"];
245 }
Jonas Finnemann Jensenb223bd52020-10-09 13:02:08 +0200246 if (name != null) {
247 _queryParams["name"] = [name];
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200248 }
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +0200249 if (filter != null) {
250 _queryParams["filter"] = [filter];
251 }
Jonas Finnemann Jensenb223bd52020-10-09 13:02:08 +0200252 if (pageToken != null) {
253 _queryParams["pageToken"] = [pageToken];
Martin Kustermann12cdd522018-08-27 10:46:50 +0200254 }
Martin Kustermann12cdd522018-08-27 10:46:50 +0200255 if ($fields != null) {
256 _queryParams["fields"] = [$fields];
257 }
258
259 _url = 'v1/operations';
260
261 var _response = _requester.request(_url, "GET",
262 body: _body,
263 queryParams: _queryParams,
264 uploadOptions: _uploadOptions,
265 uploadMedia: _uploadMedia,
266 downloadOptions: _downloadOptions);
267 return _response.then((data) => new ListOperationsResponse.fromJson(data));
268 }
269}
270
271class ServicesResourceApi {
272 final commons.ApiRequester _requester;
273
274 ServicesResourceApi(commons.ApiRequester client) : _requester = client;
275
276 /// Enable multiple services on a project. The operation is atomic: if
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200277 /// enabling any service fails, then the entire batch fails, and no state
278 /// changes occur. To enable a single service, use the `EnableService` method
279 /// instead.
Martin Kustermann12cdd522018-08-27 10:46:50 +0200280 ///
Martin Kustermann12cdd522018-08-27 10:46:50 +0200281 /// [request] - The metadata request object.
282 ///
283 /// Request parameters:
284 ///
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200285 /// [parent] - Parent to enable services on. An example name would be:
286 /// `projects/123` where `123` is the project number. The
287 /// `BatchEnableServices` method currently only supports projects.
Martin Kustermann12cdd522018-08-27 10:46:50 +0200288 /// Value must have pattern "^[^/]+/[^/]+$".
289 ///
290 /// [$fields] - Selector specifying which fields to include in a partial
291 /// response.
292 ///
293 /// Completes with a [Operation].
294 ///
295 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
296 /// error.
297 ///
298 /// If the used [http_1.Client] completes with an error when making a REST
299 /// call, this method will complete with the same error.
300 async.Future<Operation> batchEnable(
301 BatchEnableServicesRequest request, core.String parent,
302 {core.String $fields}) {
Jonas Finnemann Jensend22e4042019-02-09 14:14:19 +0100303 var _url;
Martin Kustermann12cdd522018-08-27 10:46:50 +0200304 var _queryParams = new core.Map<core.String, core.List<core.String>>();
Jonas Finnemann Jensend22e4042019-02-09 14:14:19 +0100305 var _uploadMedia;
306 var _uploadOptions;
Martin Kustermann12cdd522018-08-27 10:46:50 +0200307 var _downloadOptions = commons.DownloadOptions.Metadata;
Jonas Finnemann Jensend22e4042019-02-09 14:14:19 +0100308 var _body;
Martin Kustermann12cdd522018-08-27 10:46:50 +0200309
310 if (request != null) {
311 _body = convert.json.encode((request).toJson());
312 }
313 if (parent == null) {
314 throw new core.ArgumentError("Parameter parent is required.");
315 }
316 if ($fields != null) {
317 _queryParams["fields"] = [$fields];
318 }
319
320 _url = 'v1/' +
321 commons.Escaper.ecapeVariableReserved('$parent') +
322 '/services:batchEnable';
323
324 var _response = _requester.request(_url, "POST",
325 body: _body,
326 queryParams: _queryParams,
327 uploadOptions: _uploadOptions,
328 uploadMedia: _uploadMedia,
329 downloadOptions: _downloadOptions);
330 return _response.then((data) => new Operation.fromJson(data));
331 }
332
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +0200333 /// Returns the service configurations and enabled states for a given list of
334 /// services.
335 ///
336 /// Request parameters:
337 ///
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200338 /// [parent] - Parent to retrieve services from. If this is set, the parent of
339 /// all of the services specified in `names` must match this field. An example
340 /// name would be: `projects/123` where `123` is the project number. The
341 /// `BatchGetServices` method currently only supports projects.
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +0200342 /// Value must have pattern "^[^/]+/[^/]+$".
343 ///
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200344 /// [names] - Names of the services to retrieve. An example name would be:
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +0200345 /// `projects/123/services/serviceusage.googleapis.com` where `123` is the
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200346 /// project number. A single request can get a maximum of 30 services at a
347 /// time.
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +0200348 ///
349 /// [$fields] - Selector specifying which fields to include in a partial
350 /// response.
351 ///
352 /// Completes with a [BatchGetServicesResponse].
353 ///
354 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
355 /// error.
356 ///
357 /// If the used [http_1.Client] completes with an error when making a REST
358 /// call, this method will complete with the same error.
359 async.Future<BatchGetServicesResponse> batchGet(core.String parent,
360 {core.List<core.String> names, core.String $fields}) {
361 var _url;
362 var _queryParams = new core.Map<core.String, core.List<core.String>>();
363 var _uploadMedia;
364 var _uploadOptions;
365 var _downloadOptions = commons.DownloadOptions.Metadata;
366 var _body;
367
368 if (parent == null) {
369 throw new core.ArgumentError("Parameter parent is required.");
370 }
371 if (names != null) {
372 _queryParams["names"] = names;
373 }
374 if ($fields != null) {
375 _queryParams["fields"] = [$fields];
376 }
377
378 _url = 'v1/' +
379 commons.Escaper.ecapeVariableReserved('$parent') +
380 '/services:batchGet';
381
382 var _response = _requester.request(_url, "GET",
383 body: _body,
384 queryParams: _queryParams,
385 uploadOptions: _uploadOptions,
386 uploadMedia: _uploadMedia,
387 downloadOptions: _downloadOptions);
388 return _response
389 .then((data) => new BatchGetServicesResponse.fromJson(data));
390 }
391
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200392 /// Disable a service so that it can no longer be used with a project. This
393 /// prevents unintended usage that may cause unexpected billing charges or
394 /// security leaks. It is not valid to call the disable method on a service
395 /// that is not currently enabled. Callers will receive a
396 /// `FAILED_PRECONDITION` status if the target service is not currently
397 /// enabled.
Martin Kustermann12cdd522018-08-27 10:46:50 +0200398 ///
Martin Kustermann12cdd522018-08-27 10:46:50 +0200399 /// [request] - The metadata request object.
400 ///
401 /// Request parameters:
402 ///
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200403 /// [name] - Name of the consumer and service to disable the service on. The
404 /// enable and disable methods currently only support projects. An example
405 /// name would be: `projects/123/services/serviceusage.googleapis.com` where
406 /// `123` is the project number.
Martin Kustermann12cdd522018-08-27 10:46:50 +0200407 /// Value must have pattern "^[^/]+/[^/]+/services/[^/]+$".
408 ///
409 /// [$fields] - Selector specifying which fields to include in a partial
410 /// response.
411 ///
412 /// Completes with a [Operation].
413 ///
414 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
415 /// error.
416 ///
417 /// If the used [http_1.Client] completes with an error when making a REST
418 /// call, this method will complete with the same error.
419 async.Future<Operation> disable(
420 DisableServiceRequest request, core.String name,
421 {core.String $fields}) {
Jonas Finnemann Jensend22e4042019-02-09 14:14:19 +0100422 var _url;
Martin Kustermann12cdd522018-08-27 10:46:50 +0200423 var _queryParams = new core.Map<core.String, core.List<core.String>>();
Jonas Finnemann Jensend22e4042019-02-09 14:14:19 +0100424 var _uploadMedia;
425 var _uploadOptions;
Martin Kustermann12cdd522018-08-27 10:46:50 +0200426 var _downloadOptions = commons.DownloadOptions.Metadata;
Jonas Finnemann Jensend22e4042019-02-09 14:14:19 +0100427 var _body;
Martin Kustermann12cdd522018-08-27 10:46:50 +0200428
429 if (request != null) {
430 _body = convert.json.encode((request).toJson());
431 }
432 if (name == null) {
433 throw new core.ArgumentError("Parameter name is required.");
434 }
435 if ($fields != null) {
436 _queryParams["fields"] = [$fields];
437 }
438
439 _url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name') + ':disable';
440
441 var _response = _requester.request(_url, "POST",
442 body: _body,
443 queryParams: _queryParams,
444 uploadOptions: _uploadOptions,
445 uploadMedia: _uploadMedia,
446 downloadOptions: _downloadOptions);
447 return _response.then((data) => new Operation.fromJson(data));
448 }
449
450 /// Enable a service so that it can be used with a project.
451 ///
Martin Kustermann12cdd522018-08-27 10:46:50 +0200452 /// [request] - The metadata request object.
453 ///
454 /// Request parameters:
455 ///
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200456 /// [name] - Name of the consumer and service to enable the service on. The
457 /// `EnableService` and `DisableService` methods currently only support
458 /// projects. Enabling a service requires that the service is public or is
459 /// shared with the user enabling the service. An example name would be:
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +0200460 /// `projects/123/services/serviceusage.googleapis.com` where `123` is the
461 /// project number.
Martin Kustermann12cdd522018-08-27 10:46:50 +0200462 /// Value must have pattern "^[^/]+/[^/]+/services/[^/]+$".
463 ///
464 /// [$fields] - Selector specifying which fields to include in a partial
465 /// response.
466 ///
467 /// Completes with a [Operation].
468 ///
469 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
470 /// error.
471 ///
472 /// If the used [http_1.Client] completes with an error when making a REST
473 /// call, this method will complete with the same error.
474 async.Future<Operation> enable(EnableServiceRequest request, core.String name,
475 {core.String $fields}) {
Jonas Finnemann Jensend22e4042019-02-09 14:14:19 +0100476 var _url;
Martin Kustermann12cdd522018-08-27 10:46:50 +0200477 var _queryParams = new core.Map<core.String, core.List<core.String>>();
Jonas Finnemann Jensend22e4042019-02-09 14:14:19 +0100478 var _uploadMedia;
479 var _uploadOptions;
Martin Kustermann12cdd522018-08-27 10:46:50 +0200480 var _downloadOptions = commons.DownloadOptions.Metadata;
Jonas Finnemann Jensend22e4042019-02-09 14:14:19 +0100481 var _body;
Martin Kustermann12cdd522018-08-27 10:46:50 +0200482
483 if (request != null) {
484 _body = convert.json.encode((request).toJson());
485 }
486 if (name == null) {
487 throw new core.ArgumentError("Parameter name is required.");
488 }
489 if ($fields != null) {
490 _queryParams["fields"] = [$fields];
491 }
492
493 _url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name') + ':enable';
494
495 var _response = _requester.request(_url, "POST",
496 body: _body,
497 queryParams: _queryParams,
498 uploadOptions: _uploadOptions,
499 uploadMedia: _uploadMedia,
500 downloadOptions: _downloadOptions);
501 return _response.then((data) => new Operation.fromJson(data));
502 }
503
504 /// Returns the service configuration and enabled state for a given service.
505 ///
506 /// Request parameters:
507 ///
508 /// [name] - Name of the consumer and service to get the `ConsumerState` for.
Martin Kustermann12cdd522018-08-27 10:46:50 +0200509 /// An example name would be:
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +0200510 /// `projects/123/services/serviceusage.googleapis.com` where `123` is the
511 /// project number.
Martin Kustermann12cdd522018-08-27 10:46:50 +0200512 /// Value must have pattern "^[^/]+/[^/]+/services/[^/]+$".
513 ///
514 /// [$fields] - Selector specifying which fields to include in a partial
515 /// response.
516 ///
517 /// Completes with a [GoogleApiServiceusageV1Service].
518 ///
519 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
520 /// error.
521 ///
522 /// If the used [http_1.Client] completes with an error when making a REST
523 /// call, this method will complete with the same error.
524 async.Future<GoogleApiServiceusageV1Service> get(core.String name,
525 {core.String $fields}) {
Jonas Finnemann Jensend22e4042019-02-09 14:14:19 +0100526 var _url;
Martin Kustermann12cdd522018-08-27 10:46:50 +0200527 var _queryParams = new core.Map<core.String, core.List<core.String>>();
Jonas Finnemann Jensend22e4042019-02-09 14:14:19 +0100528 var _uploadMedia;
529 var _uploadOptions;
Martin Kustermann12cdd522018-08-27 10:46:50 +0200530 var _downloadOptions = commons.DownloadOptions.Metadata;
Jonas Finnemann Jensend22e4042019-02-09 14:14:19 +0100531 var _body;
Martin Kustermann12cdd522018-08-27 10:46:50 +0200532
533 if (name == null) {
534 throw new core.ArgumentError("Parameter name is required.");
535 }
536 if ($fields != null) {
537 _queryParams["fields"] = [$fields];
538 }
539
540 _url = 'v1/' + commons.Escaper.ecapeVariableReserved('$name');
541
542 var _response = _requester.request(_url, "GET",
543 body: _body,
544 queryParams: _queryParams,
545 uploadOptions: _uploadOptions,
546 uploadMedia: _uploadMedia,
547 downloadOptions: _downloadOptions);
548 return _response
549 .then((data) => new GoogleApiServiceusageV1Service.fromJson(data));
550 }
551
552 /// List all services available to the specified project, and the current
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200553 /// state of those services with respect to the project. The list includes all
554 /// public services, all services for which the calling user has the
Martin Kustermann12cdd522018-08-27 10:46:50 +0200555 /// `servicemanagement.services.bind` permission, and all services that have
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200556 /// already been enabled on the project. The list can be filtered to only
557 /// include services in a specific state, for example to only include services
558 /// enabled on the project. WARNING: If you need to query enabled services
559 /// frequently or across an organization, you should use [Cloud Asset
560 /// Inventory API](https://cloud.google.com/asset-inventory/docs/apis), which
561 /// provides higher throughput and richer filtering capability.
Martin Kustermann12cdd522018-08-27 10:46:50 +0200562 ///
563 /// Request parameters:
564 ///
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200565 /// [parent] - Parent to search for services on. An example name would be:
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +0200566 /// `projects/123` where `123` is the project number.
Martin Kustermann12cdd522018-08-27 10:46:50 +0200567 /// Value must have pattern "^[^/]+/[^/]+$".
568 ///
Jonas Finnemann Jensenb223bd52020-10-09 13:02:08 +0200569 /// [pageSize] - Requested size of the next page of data. Requested page size
570 /// cannot exceed 200. If not set, the default page size is 50.
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200571 ///
Martin Kustermann12cdd522018-08-27 10:46:50 +0200572 /// [pageToken] - Token identifying which result to start with, which is
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200573 /// returned by a previous list call.
Martin Kustermann12cdd522018-08-27 10:46:50 +0200574 ///
Jonas Finnemann Jensenb223bd52020-10-09 13:02:08 +0200575 /// [filter] - Only list services that conform to the given filter. The
576 /// allowed filter strings are `state:ENABLED` and `state:DISABLED`.
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +0200577 ///
Martin Kustermann12cdd522018-08-27 10:46:50 +0200578 /// [$fields] - Selector specifying which fields to include in a partial
579 /// response.
580 ///
581 /// Completes with a [ListServicesResponse].
582 ///
583 /// Completes with a [commons.ApiRequestError] if the API endpoint returned an
584 /// error.
585 ///
586 /// If the used [http_1.Client] completes with an error when making a REST
587 /// call, this method will complete with the same error.
588 async.Future<ListServicesResponse> list(core.String parent,
Jonas Finnemann Jensenb223bd52020-10-09 13:02:08 +0200589 {core.int pageSize,
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200590 core.String pageToken,
Jonas Finnemann Jensenb223bd52020-10-09 13:02:08 +0200591 core.String filter,
Martin Kustermann12cdd522018-08-27 10:46:50 +0200592 core.String $fields}) {
Jonas Finnemann Jensend22e4042019-02-09 14:14:19 +0100593 var _url;
Martin Kustermann12cdd522018-08-27 10:46:50 +0200594 var _queryParams = new core.Map<core.String, core.List<core.String>>();
Jonas Finnemann Jensend22e4042019-02-09 14:14:19 +0100595 var _uploadMedia;
596 var _uploadOptions;
Martin Kustermann12cdd522018-08-27 10:46:50 +0200597 var _downloadOptions = commons.DownloadOptions.Metadata;
Jonas Finnemann Jensend22e4042019-02-09 14:14:19 +0100598 var _body;
Martin Kustermann12cdd522018-08-27 10:46:50 +0200599
600 if (parent == null) {
601 throw new core.ArgumentError("Parameter parent is required.");
602 }
Jonas Finnemann Jensenb223bd52020-10-09 13:02:08 +0200603 if (pageSize != null) {
604 _queryParams["pageSize"] = ["${pageSize}"];
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200605 }
Martin Kustermann12cdd522018-08-27 10:46:50 +0200606 if (pageToken != null) {
607 _queryParams["pageToken"] = [pageToken];
608 }
Jonas Finnemann Jensenb223bd52020-10-09 13:02:08 +0200609 if (filter != null) {
610 _queryParams["filter"] = [filter];
Martin Kustermann12cdd522018-08-27 10:46:50 +0200611 }
Martin Kustermann12cdd522018-08-27 10:46:50 +0200612 if ($fields != null) {
613 _queryParams["fields"] = [$fields];
614 }
615
616 _url =
617 'v1/' + commons.Escaper.ecapeVariableReserved('$parent') + '/services';
618
619 var _response = _requester.request(_url, "GET",
620 body: _body,
621 queryParams: _queryParams,
622 uploadOptions: _uploadOptions,
623 uploadMedia: _uploadMedia,
624 downloadOptions: _downloadOptions);
625 return _response.then((data) => new ListServicesResponse.fromJson(data));
626 }
627}
628
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200629/// Quota policy created by quota administrator.
630class AdminQuotaPolicy {
631 /// The cloud resource container at which the quota policy is created. The
632 /// format is {container_type}/{container_number}
633 core.String container;
634
635 /// If this map is nonempty, then this policy applies only to specific values
636 /// for dimensions defined in the limit unit. For example, an policy on a
637 /// limit with the unit 1/{project}/{region} could contain an entry with the
638 /// key "region" and the value "us-east-1"; the policy is only applied to
639 /// quota consumed in that region. This map has the following restrictions: *
640 /// If "region" appears as a key, its value must be a valid Cloud region. * If
641 /// "zone" appears as a key, its value must be a valid Cloud zone. * Keys
642 /// other than "region" or "zone" are not valid.
643 core.Map<core.String, core.String> dimensions;
644
645 /// The name of the metric to which this policy applies. An example name would
646 /// be: `compute.googleapis.com/cpus`
647 core.String metric;
648
649 /// The resource name of the policy. This name is generated by the server when
650 /// the policy is created. Example names would be:
651 /// `organizations/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus/limits/%2Fproject%2Fregion/adminQuotaPolicies/4a3f2c1d`
652 core.String name;
653
654 /// The quota policy value. Can be any nonnegative integer, or -1 (unlimited
655 /// quota).
656 core.String policyValue;
657
658 /// The limit unit of the limit to which this policy applies. An example unit
659 /// would be: `1/{project}/{region}` Note that `{project}` and `{region}` are
660 /// not placeholders in this example; the literal characters `{` and `}` occur
661 /// in the string.
662 core.String unit;
663
664 AdminQuotaPolicy();
665
666 AdminQuotaPolicy.fromJson(core.Map _json) {
667 if (_json.containsKey("container")) {
668 container = _json["container"];
669 }
670 if (_json.containsKey("dimensions")) {
671 dimensions =
672 (_json["dimensions"] as core.Map).cast<core.String, core.String>();
673 }
674 if (_json.containsKey("metric")) {
675 metric = _json["metric"];
676 }
677 if (_json.containsKey("name")) {
678 name = _json["name"];
679 }
680 if (_json.containsKey("policyValue")) {
681 policyValue = _json["policyValue"];
682 }
683 if (_json.containsKey("unit")) {
684 unit = _json["unit"];
685 }
686 }
687
688 core.Map<core.String, core.Object> toJson() {
689 final core.Map<core.String, core.Object> _json =
690 new core.Map<core.String, core.Object>();
691 if (container != null) {
692 _json["container"] = container;
693 }
694 if (dimensions != null) {
695 _json["dimensions"] = dimensions;
696 }
697 if (metric != null) {
698 _json["metric"] = metric;
699 }
700 if (name != null) {
701 _json["name"] = name;
702 }
703 if (policyValue != null) {
704 _json["policyValue"] = policyValue;
705 }
706 if (unit != null) {
707 _json["unit"] = unit;
708 }
709 return _json;
710 }
711}
712
713/// Api is a light-weight descriptor for an API Interface. Interfaces are also
714/// described as "protocol buffer services" in some contexts, such as by the
715/// "service" keyword in a .proto file, but they are different from API
716/// Services, which represent a concrete implementation of an interface as
717/// opposed to simply a description of methods and bindings. They are also
Martin Kustermann12cdd522018-08-27 10:46:50 +0200718/// sometimes simply referred to as "APIs" in other contexts, such as the name
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200719/// of this message itself. See https://cloud.google.com/apis/design/glossary
720/// for detailed terminology.
Martin Kustermann12cdd522018-08-27 10:46:50 +0200721class Api {
722 /// The methods of this interface, in unspecified order.
723 core.List<Method> methods;
724
725 /// Included interfaces. See Mixin.
726 core.List<Mixin> mixins;
727
728 /// The fully qualified name of this interface, including package name
729 /// followed by the interface's simple name.
730 core.String name;
731
732 /// Any metadata attached to the interface.
733 core.List<Option> options;
734
735 /// Source context for the protocol buffer service represented by this
736 /// message.
737 SourceContext sourceContext;
738
739 /// The source syntax of the service.
740 /// Possible string values are:
741 /// - "SYNTAX_PROTO2" : Syntax `proto2`.
742 /// - "SYNTAX_PROTO3" : Syntax `proto3`.
743 core.String syntax;
744
745 /// A version string for this interface. If specified, must have the form
746 /// `major-version.minor-version`, as in `1.10`. If the minor version is
747 /// omitted, it defaults to zero. If the entire version field is empty, the
748 /// major version is derived from the package name, as outlined below. If the
749 /// field is not empty, the version in the package name will be verified to be
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200750 /// consistent with what is provided here. The versioning schema uses
751 /// [semantic versioning](http://semver.org) where the major version number
Martin Kustermann12cdd522018-08-27 10:46:50 +0200752 /// indicates a breaking change and the minor version an additive,
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200753 /// non-breaking change. Both version numbers are signals to users what to
754 /// expect from different versions, and should be carefully chosen based on
755 /// the product plan. The major version is also reflected in the package name
756 /// of the interface, which must end in `v`, as in `google.feature.v1`. For
757 /// major versions 0 and 1, the suffix can be omitted. Zero major versions
758 /// must only be used for experimental, non-GA interfaces.
Martin Kustermann12cdd522018-08-27 10:46:50 +0200759 core.String version;
760
761 Api();
762
763 Api.fromJson(core.Map _json) {
764 if (_json.containsKey("methods")) {
765 methods = (_json["methods"] as core.List)
766 .map<Method>((value) => new Method.fromJson(value))
767 .toList();
768 }
769 if (_json.containsKey("mixins")) {
770 mixins = (_json["mixins"] as core.List)
771 .map<Mixin>((value) => new Mixin.fromJson(value))
772 .toList();
773 }
774 if (_json.containsKey("name")) {
775 name = _json["name"];
776 }
777 if (_json.containsKey("options")) {
778 options = (_json["options"] as core.List)
779 .map<Option>((value) => new Option.fromJson(value))
780 .toList();
781 }
782 if (_json.containsKey("sourceContext")) {
783 sourceContext = new SourceContext.fromJson(_json["sourceContext"]);
784 }
785 if (_json.containsKey("syntax")) {
786 syntax = _json["syntax"];
787 }
788 if (_json.containsKey("version")) {
789 version = _json["version"];
790 }
791 }
792
793 core.Map<core.String, core.Object> toJson() {
794 final core.Map<core.String, core.Object> _json =
795 new core.Map<core.String, core.Object>();
796 if (methods != null) {
797 _json["methods"] = methods.map((value) => (value).toJson()).toList();
798 }
799 if (mixins != null) {
800 _json["mixins"] = mixins.map((value) => (value).toJson()).toList();
801 }
802 if (name != null) {
803 _json["name"] = name;
804 }
805 if (options != null) {
806 _json["options"] = options.map((value) => (value).toJson()).toList();
807 }
808 if (sourceContext != null) {
809 _json["sourceContext"] = (sourceContext).toJson();
810 }
811 if (syntax != null) {
812 _json["syntax"] = syntax;
813 }
814 if (version != null) {
815 _json["version"] = version;
816 }
817 return _json;
818 }
819}
820
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200821/// Configuration for an authentication provider, including support for [JSON
822/// Web Token
Martin Kustermann12cdd522018-08-27 10:46:50 +0200823/// (JWT)](https://tools.ietf.org/html/draft-ietf-oauth-json-web-token-32).
824class AuthProvider {
825 /// The list of JWT
826 /// [audiences](https://tools.ietf.org/html/draft-ietf-oauth-json-web-token-32#section-4.1.3).
827 /// that are allowed to access. A JWT containing any of these audiences will
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200828 /// be accepted. When this setting is absent, JWTs with audiences: -
829 /// "https://[service.name]/[google.protobuf.Api.name]" -
830 /// "https://[service.name]/" will be accepted. For example, if no audiences
831 /// are in the setting, LibraryService API will accept JWTs with the following
832 /// audiences: -
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +0200833 /// https://library-example.googleapis.com/google.example.library.v1.LibraryService
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200834 /// - https://library-example.googleapis.com/ Example: audiences:
835 /// bookstore_android.apps.googleusercontent.com,
836 /// bookstore_web.apps.googleusercontent.com
Martin Kustermann12cdd522018-08-27 10:46:50 +0200837 core.String audiences;
838
Jonas Finnemann Jensendda12e42019-02-09 12:37:20 +0100839 /// Redirect URL if JWT token is required but not present or is expired.
Martin Kustermann12cdd522018-08-27 10:46:50 +0200840 /// Implement authorizationUrl of securityDefinitions in OpenAPI spec.
841 core.String authorizationUrl;
842
843 /// The unique identifier of the auth provider. It will be referred to by
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200844 /// `AuthRequirement.provider_id`. Example: "bookstore_auth".
Martin Kustermann12cdd522018-08-27 10:46:50 +0200845 core.String id;
846
847 /// Identifies the principal that issued the JWT. See
848 /// https://tools.ietf.org/html/draft-ietf-oauth-json-web-token-32#section-4.1.1
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200849 /// Usually a URL or an email address. Example: https://securetoken.google.com
Martin Kustermann12cdd522018-08-27 10:46:50 +0200850 /// Example: 1234567-compute@developer.gserviceaccount.com
851 core.String issuer;
852
853 /// URL of the provider's public key set to validate signature of the JWT. See
854 /// [OpenID
855 /// Discovery](https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderMetadata).
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200856 /// Optional if the key set document: - can be retrieved from [OpenID
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +0200857 /// Discovery](https://openid.net/specs/openid-connect-discovery-1_0.html of
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200858 /// the issuer. - can be inferred from the email domain of the issuer (e.g. a
859 /// Google service account). Example:
860 /// https://www.googleapis.com/oauth2/v1/certs
Martin Kustermann12cdd522018-08-27 10:46:50 +0200861 core.String jwksUri;
862
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200863 /// Defines the locations to extract the JWT. JWT locations can be either from
864 /// HTTP headers or URL query parameters. The rule is that the first match
865 /// wins. The checking order is: checking all headers first, then URL query
866 /// parameters. If not specified, default to use following 3 locations: 1)
867 /// Authorization: Bearer 2) x-goog-iap-jwt-assertion 3) access_token query
868 /// parameter Default locations can be specified as followings: jwt_locations:
869 /// - header: Authorization value_prefix: "Bearer " - header:
870 /// x-goog-iap-jwt-assertion - query: access_token
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +0200871 core.List<JwtLocation> jwtLocations;
872
Martin Kustermann12cdd522018-08-27 10:46:50 +0200873 AuthProvider();
874
875 AuthProvider.fromJson(core.Map _json) {
876 if (_json.containsKey("audiences")) {
877 audiences = _json["audiences"];
878 }
879 if (_json.containsKey("authorizationUrl")) {
880 authorizationUrl = _json["authorizationUrl"];
881 }
882 if (_json.containsKey("id")) {
883 id = _json["id"];
884 }
885 if (_json.containsKey("issuer")) {
886 issuer = _json["issuer"];
887 }
888 if (_json.containsKey("jwksUri")) {
889 jwksUri = _json["jwksUri"];
890 }
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +0200891 if (_json.containsKey("jwtLocations")) {
892 jwtLocations = (_json["jwtLocations"] as core.List)
893 .map<JwtLocation>((value) => new JwtLocation.fromJson(value))
894 .toList();
895 }
Martin Kustermann12cdd522018-08-27 10:46:50 +0200896 }
897
898 core.Map<core.String, core.Object> toJson() {
899 final core.Map<core.String, core.Object> _json =
900 new core.Map<core.String, core.Object>();
901 if (audiences != null) {
902 _json["audiences"] = audiences;
903 }
904 if (authorizationUrl != null) {
905 _json["authorizationUrl"] = authorizationUrl;
906 }
907 if (id != null) {
908 _json["id"] = id;
909 }
910 if (issuer != null) {
911 _json["issuer"] = issuer;
912 }
913 if (jwksUri != null) {
914 _json["jwksUri"] = jwksUri;
915 }
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +0200916 if (jwtLocations != null) {
917 _json["jwtLocations"] =
918 jwtLocations.map((value) => (value).toJson()).toList();
919 }
Martin Kustermann12cdd522018-08-27 10:46:50 +0200920 return _json;
921 }
922}
923
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200924/// User-defined authentication requirements, including support for [JSON Web
925/// Token
Martin Kustermann12cdd522018-08-27 10:46:50 +0200926/// (JWT)](https://tools.ietf.org/html/draft-ietf-oauth-json-web-token-32).
927class AuthRequirement {
928 /// NOTE: This will be deprecated soon, once AuthProvider.audiences is
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200929 /// implemented and accepted in all the runtime components. The list of JWT
Martin Kustermann12cdd522018-08-27 10:46:50 +0200930 /// [audiences](https://tools.ietf.org/html/draft-ietf-oauth-json-web-token-32#section-4.1.3).
931 /// that are allowed to access. A JWT containing any of these audiences will
932 /// be accepted. When this setting is absent, only JWTs with audience
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200933 /// "https://Service_name/API_name" will be accepted. For example, if no
934 /// audiences are in the setting, LibraryService API will only accept JWTs
935 /// with the following audience
Martin Kustermann12cdd522018-08-27 10:46:50 +0200936 /// "https://library-example.googleapis.com/google.example.library.v1.LibraryService".
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200937 /// Example: audiences: bookstore_android.apps.googleusercontent.com,
938 /// bookstore_web.apps.googleusercontent.com
Martin Kustermann12cdd522018-08-27 10:46:50 +0200939 core.String audiences;
940
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200941 /// id from authentication provider. Example: provider_id: bookstore_auth
Martin Kustermann12cdd522018-08-27 10:46:50 +0200942 core.String providerId;
943
944 AuthRequirement();
945
946 AuthRequirement.fromJson(core.Map _json) {
947 if (_json.containsKey("audiences")) {
948 audiences = _json["audiences"];
949 }
950 if (_json.containsKey("providerId")) {
951 providerId = _json["providerId"];
952 }
953 }
954
955 core.Map<core.String, core.Object> toJson() {
956 final core.Map<core.String, core.Object> _json =
957 new core.Map<core.String, core.Object>();
958 if (audiences != null) {
959 _json["audiences"] = audiences;
960 }
961 if (providerId != null) {
962 _json["providerId"] = providerId;
963 }
964 return _json;
965 }
966}
967
968/// `Authentication` defines the authentication configuration for an API.
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +0200969/// Example for an API targeted for external use: name: calendar.googleapis.com
970/// authentication: providers: - id: google_calendar_auth jwks_uri:
971/// https://www.googleapis.com/oauth2/v1/certs issuer:
972/// https://securetoken.google.com rules: - selector: "*" requirements:
973/// provider_id: google_calendar_auth
Martin Kustermann12cdd522018-08-27 10:46:50 +0200974class Authentication {
975 /// Defines a set of authentication providers that a service supports.
976 core.List<AuthProvider> providers;
977
978 /// A list of authentication rules that apply to individual API methods.
Martin Kustermann12cdd522018-08-27 10:46:50 +0200979 /// **NOTE:** All service configuration rules follow "last one wins" order.
980 core.List<AuthenticationRule> rules;
981
982 Authentication();
983
984 Authentication.fromJson(core.Map _json) {
985 if (_json.containsKey("providers")) {
986 providers = (_json["providers"] as core.List)
987 .map<AuthProvider>((value) => new AuthProvider.fromJson(value))
988 .toList();
989 }
990 if (_json.containsKey("rules")) {
991 rules = (_json["rules"] as core.List)
992 .map<AuthenticationRule>(
993 (value) => new AuthenticationRule.fromJson(value))
994 .toList();
995 }
996 }
997
998 core.Map<core.String, core.Object> toJson() {
999 final core.Map<core.String, core.Object> _json =
1000 new core.Map<core.String, core.Object>();
1001 if (providers != null) {
1002 _json["providers"] = providers.map((value) => (value).toJson()).toList();
1003 }
1004 if (rules != null) {
1005 _json["rules"] = rules.map((value) => (value).toJson()).toList();
1006 }
1007 return _json;
1008 }
1009}
1010
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001011/// Authentication rules for the service. By default, if a method has any
1012/// authentication requirements, every request must include a valid credential
1013/// matching one of the requirements. It's an error to include more than one
1014/// kind of credential in a single request. If a method doesn't have any auth
1015/// requirements, request credentials will be ignored.
Martin Kustermann12cdd522018-08-27 10:46:50 +02001016class AuthenticationRule {
1017 /// If true, the service accepts API keys without any other credential.
1018 core.bool allowWithoutCredential;
1019
1020 /// The requirements for OAuth credentials.
1021 OAuthRequirements oauth;
1022
1023 /// Requirements for additional authentication providers.
1024 core.List<AuthRequirement> requirements;
1025
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001026 /// Selects the methods to which this rule applies. Refer to selector for
1027 /// syntax details.
Martin Kustermann12cdd522018-08-27 10:46:50 +02001028 core.String selector;
1029
1030 AuthenticationRule();
1031
1032 AuthenticationRule.fromJson(core.Map _json) {
1033 if (_json.containsKey("allowWithoutCredential")) {
1034 allowWithoutCredential = _json["allowWithoutCredential"];
1035 }
1036 if (_json.containsKey("oauth")) {
1037 oauth = new OAuthRequirements.fromJson(_json["oauth"]);
1038 }
1039 if (_json.containsKey("requirements")) {
1040 requirements = (_json["requirements"] as core.List)
1041 .map<AuthRequirement>((value) => new AuthRequirement.fromJson(value))
1042 .toList();
1043 }
1044 if (_json.containsKey("selector")) {
1045 selector = _json["selector"];
1046 }
1047 }
1048
1049 core.Map<core.String, core.Object> toJson() {
1050 final core.Map<core.String, core.Object> _json =
1051 new core.Map<core.String, core.Object>();
1052 if (allowWithoutCredential != null) {
1053 _json["allowWithoutCredential"] = allowWithoutCredential;
1054 }
1055 if (oauth != null) {
1056 _json["oauth"] = (oauth).toJson();
1057 }
1058 if (requirements != null) {
1059 _json["requirements"] =
1060 requirements.map((value) => (value).toJson()).toList();
1061 }
1062 if (selector != null) {
1063 _json["selector"] = selector;
1064 }
1065 return _json;
1066 }
1067}
1068
Martin Kustermann12cdd522018-08-27 10:46:50 +02001069/// `Backend` defines the backend configuration for a service.
1070class Backend {
1071 /// A list of API backend rules that apply to individual API methods.
Martin Kustermann12cdd522018-08-27 10:46:50 +02001072 /// **NOTE:** All service configuration rules follow "last one wins" order.
1073 core.List<BackendRule> rules;
1074
1075 Backend();
1076
1077 Backend.fromJson(core.Map _json) {
1078 if (_json.containsKey("rules")) {
1079 rules = (_json["rules"] as core.List)
1080 .map<BackendRule>((value) => new BackendRule.fromJson(value))
1081 .toList();
1082 }
1083 }
1084
1085 core.Map<core.String, core.Object> toJson() {
1086 final core.Map<core.String, core.Object> _json =
1087 new core.Map<core.String, core.Object>();
1088 if (rules != null) {
1089 _json["rules"] = rules.map((value) => (value).toJson()).toList();
1090 }
1091 return _json;
1092 }
1093}
1094
1095/// A backend rule provides configuration for an individual API element.
1096class BackendRule {
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001097 /// The address of the API backend. The scheme is used to determine the
1098 /// backend protocol and security. The following schemes are accepted: SCHEME
1099 /// PROTOCOL SECURITY http:// HTTP None https:// HTTP TLS grpc:// gRPC None
1100 /// grpcs:// gRPC TLS It is recommended to explicitly include a scheme.
1101 /// Leaving out the scheme may cause constrasting behaviors across platforms.
1102 /// If the port is unspecified, the default is: - 80 for schemes without TLS -
1103 /// 443 for schemes with TLS For HTTP backends, use protocol to specify the
1104 /// protocol version.
Martin Kustermann12cdd522018-08-27 10:46:50 +02001105 core.String address;
1106
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02001107 /// The number of seconds to wait for a response from a request. The default
1108 /// varies based on the request protocol and deployment environment.
Martin Kustermann12cdd522018-08-27 10:46:50 +02001109 core.double deadline;
1110
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02001111 /// When disable_auth is true, a JWT ID token won't be generated and the
1112 /// original "Authorization" HTTP header will be preserved. If the header is
1113 /// used to carry the original token and is expected by the backend, this
1114 /// field must be set to true to preserve the header.
1115 core.bool disableAuth;
1116
1117 /// The JWT audience is used when generating a JWT ID token for the backend.
1118 /// This ID token will be added in the HTTP "authorization" header, and sent
1119 /// to the backend.
Jonas Finnemann Jensendda12e42019-02-09 12:37:20 +01001120 core.String jwtAudience;
1121
Martin Kustermann12cdd522018-08-27 10:46:50 +02001122 /// Minimum deadline in seconds needed for this method. Calls having deadline
1123 /// value lower than this will be rejected.
1124 core.double minDeadline;
1125
Jonas Finnemann Jensendda12e42019-02-09 12:37:20 +01001126 /// The number of seconds to wait for the completion of a long running
1127 /// operation. The default is no deadline.
1128 core.double operationDeadline;
1129
1130 ///
1131 /// Possible string values are:
1132 /// - "PATH_TRANSLATION_UNSPECIFIED"
1133 /// - "CONSTANT_ADDRESS" : Use the backend address as-is, with no modification
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001134 /// to the path. If the URL pattern contains variables, the variable names and
1135 /// values will be appended to the query string. If a query string parameter
1136 /// and a URL pattern variable have the same name, this may result in
1137 /// duplicate keys in the query string. # Examples Given the following
1138 /// operation config: Method path: /api/company/{cid}/user/{uid} Backend
1139 /// address: https://example.cloudfunctions.net/getUser Requests to the
1140 /// following request paths will call the backend at the translated path:
1141 /// Request path: /api/company/widgetworks/user/johndoe Translated:
Jonas Finnemann Jensendda12e42019-02-09 12:37:20 +01001142 /// https://example.cloudfunctions.net/getUser?cid=widgetworks&uid=johndoe
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001143 /// Request path: /api/company/widgetworks/user/johndoe?timezone=EST
1144 /// Translated:
Jonas Finnemann Jensendda12e42019-02-09 12:37:20 +01001145 /// https://example.cloudfunctions.net/getUser?timezone=EST&cid=widgetworks&uid=johndoe
1146 /// - "APPEND_PATH_TO_ADDRESS" : The request path will be appended to the
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001147 /// backend address. # Examples Given the following operation config: Method
1148 /// path: /api/company/{cid}/user/{uid} Backend address:
1149 /// https://example.appspot.com Requests to the following request paths will
1150 /// call the backend at the translated path: Request path:
1151 /// /api/company/widgetworks/user/johndoe Translated:
1152 /// https://example.appspot.com/api/company/widgetworks/user/johndoe Request
1153 /// path: /api/company/widgetworks/user/johndoe?timezone=EST Translated:
Jonas Finnemann Jensendda12e42019-02-09 12:37:20 +01001154 /// https://example.appspot.com/api/company/widgetworks/user/johndoe?timezone=EST
1155 core.String pathTranslation;
1156
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001157 /// The protocol used for sending a request to the backend. The supported
1158 /// values are "http/1.1" and "h2". The default value is inferred from the
1159 /// scheme in the address field: SCHEME PROTOCOL http:// http/1.1 https://
1160 /// http/1.1 grpc:// h2 grpcs:// h2 For secure HTTP backends (https://) that
1161 /// support HTTP/2, set this field to "h2" for improved performance.
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02001162 /// Configuring this field to non-default values is only supported for secure
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001163 /// HTTP backends. This field will be ignored for all other backends. See
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02001164 /// https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml#alpn-protocol-ids
1165 /// for more details on the supported values.
1166 core.String protocol;
1167
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001168 /// Selects the methods to which this rule applies. Refer to selector for
1169 /// syntax details.
Martin Kustermann12cdd522018-08-27 10:46:50 +02001170 core.String selector;
1171
1172 BackendRule();
1173
1174 BackendRule.fromJson(core.Map _json) {
1175 if (_json.containsKey("address")) {
1176 address = _json["address"];
1177 }
1178 if (_json.containsKey("deadline")) {
1179 deadline = _json["deadline"].toDouble();
1180 }
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02001181 if (_json.containsKey("disableAuth")) {
1182 disableAuth = _json["disableAuth"];
1183 }
Jonas Finnemann Jensendda12e42019-02-09 12:37:20 +01001184 if (_json.containsKey("jwtAudience")) {
1185 jwtAudience = _json["jwtAudience"];
1186 }
Martin Kustermann12cdd522018-08-27 10:46:50 +02001187 if (_json.containsKey("minDeadline")) {
1188 minDeadline = _json["minDeadline"].toDouble();
1189 }
Jonas Finnemann Jensendda12e42019-02-09 12:37:20 +01001190 if (_json.containsKey("operationDeadline")) {
1191 operationDeadline = _json["operationDeadline"].toDouble();
1192 }
1193 if (_json.containsKey("pathTranslation")) {
1194 pathTranslation = _json["pathTranslation"];
1195 }
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02001196 if (_json.containsKey("protocol")) {
1197 protocol = _json["protocol"];
1198 }
Martin Kustermann12cdd522018-08-27 10:46:50 +02001199 if (_json.containsKey("selector")) {
1200 selector = _json["selector"];
1201 }
1202 }
1203
1204 core.Map<core.String, core.Object> toJson() {
1205 final core.Map<core.String, core.Object> _json =
1206 new core.Map<core.String, core.Object>();
1207 if (address != null) {
1208 _json["address"] = address;
1209 }
1210 if (deadline != null) {
1211 _json["deadline"] = deadline;
1212 }
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02001213 if (disableAuth != null) {
1214 _json["disableAuth"] = disableAuth;
1215 }
Jonas Finnemann Jensendda12e42019-02-09 12:37:20 +01001216 if (jwtAudience != null) {
1217 _json["jwtAudience"] = jwtAudience;
1218 }
Martin Kustermann12cdd522018-08-27 10:46:50 +02001219 if (minDeadline != null) {
1220 _json["minDeadline"] = minDeadline;
1221 }
Jonas Finnemann Jensendda12e42019-02-09 12:37:20 +01001222 if (operationDeadline != null) {
1223 _json["operationDeadline"] = operationDeadline;
1224 }
1225 if (pathTranslation != null) {
1226 _json["pathTranslation"] = pathTranslation;
1227 }
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02001228 if (protocol != null) {
1229 _json["protocol"] = protocol;
1230 }
Martin Kustermann12cdd522018-08-27 10:46:50 +02001231 if (selector != null) {
1232 _json["selector"] = selector;
1233 }
1234 return _json;
1235 }
1236}
1237
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02001238/// Response message for BatchCreateAdminOverrides
1239class BatchCreateAdminOverridesResponse {
1240 /// The overrides that were created.
1241 core.List<QuotaOverride> overrides;
1242
1243 BatchCreateAdminOverridesResponse();
1244
1245 BatchCreateAdminOverridesResponse.fromJson(core.Map _json) {
1246 if (_json.containsKey("overrides")) {
1247 overrides = (_json["overrides"] as core.List)
1248 .map<QuotaOverride>((value) => new QuotaOverride.fromJson(value))
1249 .toList();
1250 }
1251 }
1252
1253 core.Map<core.String, core.Object> toJson() {
1254 final core.Map<core.String, core.Object> _json =
1255 new core.Map<core.String, core.Object>();
1256 if (overrides != null) {
1257 _json["overrides"] = overrides.map((value) => (value).toJson()).toList();
1258 }
1259 return _json;
1260 }
1261}
1262
1263/// Response message for BatchCreateConsumerOverrides
1264class BatchCreateConsumerOverridesResponse {
1265 /// The overrides that were created.
1266 core.List<QuotaOverride> overrides;
1267
1268 BatchCreateConsumerOverridesResponse();
1269
1270 BatchCreateConsumerOverridesResponse.fromJson(core.Map _json) {
1271 if (_json.containsKey("overrides")) {
1272 overrides = (_json["overrides"] as core.List)
1273 .map<QuotaOverride>((value) => new QuotaOverride.fromJson(value))
1274 .toList();
1275 }
1276 }
1277
1278 core.Map<core.String, core.Object> toJson() {
1279 final core.Map<core.String, core.Object> _json =
1280 new core.Map<core.String, core.Object>();
1281 if (overrides != null) {
1282 _json["overrides"] = overrides.map((value) => (value).toJson()).toList();
1283 }
1284 return _json;
1285 }
1286}
1287
Martin Kustermann12cdd522018-08-27 10:46:50 +02001288/// Request message for the `BatchEnableServices` method.
1289class BatchEnableServicesRequest {
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001290 /// The identifiers of the services to enable on the project. A valid
1291 /// identifier would be: serviceusage.googleapis.com Enabling services
1292 /// requires that each service is public or is shared with the user enabling
1293 /// the service. A single request can enable a maximum of 20 services at a
1294 /// time. If more than 20 services are specified, the request will fail, and
1295 /// no state changes will occur.
Martin Kustermann12cdd522018-08-27 10:46:50 +02001296 core.List<core.String> serviceIds;
1297
1298 BatchEnableServicesRequest();
1299
1300 BatchEnableServicesRequest.fromJson(core.Map _json) {
1301 if (_json.containsKey("serviceIds")) {
1302 serviceIds = (_json["serviceIds"] as core.List).cast<core.String>();
1303 }
1304 }
1305
1306 core.Map<core.String, core.Object> toJson() {
1307 final core.Map<core.String, core.Object> _json =
1308 new core.Map<core.String, core.Object>();
1309 if (serviceIds != null) {
1310 _json["serviceIds"] = serviceIds;
1311 }
1312 return _json;
1313 }
1314}
1315
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001316/// Response message for the `BatchEnableServices` method. This response message
1317/// is assigned to the `response` field of the returned Operation when that
1318/// operation is done.
Martin Kustermann12cdd522018-08-27 10:46:50 +02001319class BatchEnableServicesResponse {
1320 /// If allow_partial_success is true, and one or more services could not be
1321 /// enabled, this field contains the details about each failure.
1322 core.List<EnableFailure> failures;
1323
1324 /// The new state of the services after enabling.
1325 core.List<GoogleApiServiceusageV1Service> services;
1326
1327 BatchEnableServicesResponse();
1328
1329 BatchEnableServicesResponse.fromJson(core.Map _json) {
1330 if (_json.containsKey("failures")) {
1331 failures = (_json["failures"] as core.List)
1332 .map<EnableFailure>((value) => new EnableFailure.fromJson(value))
1333 .toList();
1334 }
1335 if (_json.containsKey("services")) {
1336 services = (_json["services"] as core.List)
1337 .map<GoogleApiServiceusageV1Service>(
1338 (value) => new GoogleApiServiceusageV1Service.fromJson(value))
1339 .toList();
1340 }
1341 }
1342
1343 core.Map<core.String, core.Object> toJson() {
1344 final core.Map<core.String, core.Object> _json =
1345 new core.Map<core.String, core.Object>();
1346 if (failures != null) {
1347 _json["failures"] = failures.map((value) => (value).toJson()).toList();
1348 }
1349 if (services != null) {
1350 _json["services"] = services.map((value) => (value).toJson()).toList();
1351 }
1352 return _json;
1353 }
1354}
1355
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02001356/// Response message for the `BatchGetServices` method.
1357class BatchGetServicesResponse {
1358 /// The requested Service states.
1359 core.List<GoogleApiServiceusageV1Service> services;
1360
1361 BatchGetServicesResponse();
1362
1363 BatchGetServicesResponse.fromJson(core.Map _json) {
1364 if (_json.containsKey("services")) {
1365 services = (_json["services"] as core.List)
1366 .map<GoogleApiServiceusageV1Service>(
1367 (value) => new GoogleApiServiceusageV1Service.fromJson(value))
1368 .toList();
1369 }
1370 }
1371
1372 core.Map<core.String, core.Object> toJson() {
1373 final core.Map<core.String, core.Object> _json =
1374 new core.Map<core.String, core.Object>();
1375 if (services != null) {
1376 _json["services"] = services.map((value) => (value).toJson()).toList();
1377 }
1378 return _json;
1379 }
1380}
1381
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001382/// Billing related configuration of the service. The following example shows
1383/// how to configure monitored resources and metrics for billing,
1384/// `consumer_destinations` is the only supported destination and the monitored
1385/// resources need at least one label key `cloud.googleapis.com/location` to
1386/// indicate the location of the billing usage, using different monitored
1387/// resources between monitoring and billing is recommended so they can be
1388/// evolved independently: monitored_resources: - type:
1389/// library.googleapis.com/billing_branch labels: - key:
1390/// cloud.googleapis.com/location description: | Predefined label to support
1391/// billing location restriction. - key: city description: | Custom label to
1392/// define the city where the library branch is located in. - key: name
1393/// description: Custom label to define the name of the library branch. metrics:
1394/// - name: library.googleapis.com/book/borrowed_count metric_kind: DELTA
1395/// value_type: INT64 unit: "1" billing: consumer_destinations: -
1396/// monitored_resource: library.googleapis.com/billing_branch metrics: -
1397/// library.googleapis.com/book/borrowed_count
Martin Kustermann12cdd522018-08-27 10:46:50 +02001398class Billing {
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001399 /// Billing configurations for sending metrics to the consumer project. There
1400 /// can be multiple consumer destinations per service, each one must have a
1401 /// different monitored resource type. A metric can be used in at most one
1402 /// consumer destination.
Martin Kustermann12cdd522018-08-27 10:46:50 +02001403 core.List<BillingDestination> consumerDestinations;
1404
1405 Billing();
1406
1407 Billing.fromJson(core.Map _json) {
1408 if (_json.containsKey("consumerDestinations")) {
1409 consumerDestinations = (_json["consumerDestinations"] as core.List)
1410 .map<BillingDestination>(
1411 (value) => new BillingDestination.fromJson(value))
1412 .toList();
1413 }
1414 }
1415
1416 core.Map<core.String, core.Object> toJson() {
1417 final core.Map<core.String, core.Object> _json =
1418 new core.Map<core.String, core.Object>();
1419 if (consumerDestinations != null) {
1420 _json["consumerDestinations"] =
1421 consumerDestinations.map((value) => (value).toJson()).toList();
1422 }
1423 return _json;
1424 }
1425}
1426
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001427/// Configuration of a specific billing destination (Currently only support bill
1428/// against consumer project).
Martin Kustermann12cdd522018-08-27 10:46:50 +02001429class BillingDestination {
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001430 /// Names of the metrics to report to this billing destination. Each name must
1431 /// be defined in Service.metrics section.
Martin Kustermann12cdd522018-08-27 10:46:50 +02001432 core.List<core.String> metrics;
1433
1434 /// The monitored resource type. The type must be defined in
1435 /// Service.monitored_resources section.
1436 core.String monitoredResource;
1437
1438 BillingDestination();
1439
1440 BillingDestination.fromJson(core.Map _json) {
1441 if (_json.containsKey("metrics")) {
1442 metrics = (_json["metrics"] as core.List).cast<core.String>();
1443 }
1444 if (_json.containsKey("monitoredResource")) {
1445 monitoredResource = _json["monitoredResource"];
1446 }
1447 }
1448
1449 core.Map<core.String, core.Object> toJson() {
1450 final core.Map<core.String, core.Object> _json =
1451 new core.Map<core.String, core.Object>();
1452 if (metrics != null) {
1453 _json["metrics"] = metrics;
1454 }
1455 if (monitoredResource != null) {
1456 _json["monitoredResource"] = monitoredResource;
1457 }
1458 return _json;
1459 }
1460}
1461
1462/// The request message for Operations.CancelOperation.
1463class CancelOperationRequest {
1464 CancelOperationRequest();
1465
1466 CancelOperationRequest.fromJson(core.Map _json) {}
1467
1468 core.Map<core.String, core.Object> toJson() {
1469 final core.Map<core.String, core.Object> _json =
1470 new core.Map<core.String, core.Object>();
1471 return _json;
1472 }
1473}
1474
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001475/// `Context` defines which contexts an API requests. Example: context: rules: -
1476/// selector: "*" requested: - google.rpc.context.ProjectContext -
1477/// google.rpc.context.OriginContext The above specifies that all methods in the
1478/// API request `google.rpc.context.ProjectContext` and
1479/// `google.rpc.context.OriginContext`. Available context types are defined in
1480/// package `google.rpc.context`. This also provides mechanism to whitelist any
1481/// protobuf message extension that can be sent in grpc metadata using
1482/// “x-goog-ext--bin” and “x-goog-ext--jspb” format. For example, list any
1483/// service specific protobuf types that can appear in grpc metadata as follows
1484/// in your yaml file: Example: context: rules: - selector:
1485/// "google.example.library.v1.LibraryService.CreateBook"
1486/// allowed_request_extensions: - google.foo.v1.NewExtension
1487/// allowed_response_extensions: - google.foo.v1.NewExtension You can also
1488/// specify extension ID instead of fully qualified extension name here.
Martin Kustermann12cdd522018-08-27 10:46:50 +02001489class Context {
1490 /// A list of RPC context rules that apply to individual API methods.
Martin Kustermann12cdd522018-08-27 10:46:50 +02001491 /// **NOTE:** All service configuration rules follow "last one wins" order.
1492 core.List<ContextRule> rules;
1493
1494 Context();
1495
1496 Context.fromJson(core.Map _json) {
1497 if (_json.containsKey("rules")) {
1498 rules = (_json["rules"] as core.List)
1499 .map<ContextRule>((value) => new ContextRule.fromJson(value))
1500 .toList();
1501 }
1502 }
1503
1504 core.Map<core.String, core.Object> toJson() {
1505 final core.Map<core.String, core.Object> _json =
1506 new core.Map<core.String, core.Object>();
1507 if (rules != null) {
1508 _json["rules"] = rules.map((value) => (value).toJson()).toList();
1509 }
1510 return _json;
1511 }
1512}
1513
1514/// A context rule provides information about the context for an individual API
1515/// element.
1516class ContextRule {
1517 /// A list of full type names or extension IDs of extensions allowed in grpc
1518 /// side channel from client to backend.
1519 core.List<core.String> allowedRequestExtensions;
1520
1521 /// A list of full type names or extension IDs of extensions allowed in grpc
1522 /// side channel from backend to client.
1523 core.List<core.String> allowedResponseExtensions;
1524
1525 /// A list of full type names of provided contexts.
1526 core.List<core.String> provided;
1527
1528 /// A list of full type names of requested contexts.
1529 core.List<core.String> requested;
1530
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001531 /// Selects the methods to which this rule applies. Refer to selector for
1532 /// syntax details.
Martin Kustermann12cdd522018-08-27 10:46:50 +02001533 core.String selector;
1534
1535 ContextRule();
1536
1537 ContextRule.fromJson(core.Map _json) {
1538 if (_json.containsKey("allowedRequestExtensions")) {
1539 allowedRequestExtensions =
1540 (_json["allowedRequestExtensions"] as core.List).cast<core.String>();
1541 }
1542 if (_json.containsKey("allowedResponseExtensions")) {
1543 allowedResponseExtensions =
1544 (_json["allowedResponseExtensions"] as core.List).cast<core.String>();
1545 }
1546 if (_json.containsKey("provided")) {
1547 provided = (_json["provided"] as core.List).cast<core.String>();
1548 }
1549 if (_json.containsKey("requested")) {
1550 requested = (_json["requested"] as core.List).cast<core.String>();
1551 }
1552 if (_json.containsKey("selector")) {
1553 selector = _json["selector"];
1554 }
1555 }
1556
1557 core.Map<core.String, core.Object> toJson() {
1558 final core.Map<core.String, core.Object> _json =
1559 new core.Map<core.String, core.Object>();
1560 if (allowedRequestExtensions != null) {
1561 _json["allowedRequestExtensions"] = allowedRequestExtensions;
1562 }
1563 if (allowedResponseExtensions != null) {
1564 _json["allowedResponseExtensions"] = allowedResponseExtensions;
1565 }
1566 if (provided != null) {
1567 _json["provided"] = provided;
1568 }
1569 if (requested != null) {
1570 _json["requested"] = requested;
1571 }
1572 if (selector != null) {
1573 _json["selector"] = selector;
1574 }
1575 return _json;
1576 }
1577}
1578
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001579/// Selects and configures the service controller used by the service. The
Martin Kustermann12cdd522018-08-27 10:46:50 +02001580/// service controller handles features like abuse, quota, billing, logging,
1581/// monitoring, etc.
1582class Control {
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001583 /// The service control environment to use. If empty, no control plane feature
1584 /// (like quota and billing) will be enabled.
Martin Kustermann12cdd522018-08-27 10:46:50 +02001585 core.String environment;
1586
1587 Control();
1588
1589 Control.fromJson(core.Map _json) {
1590 if (_json.containsKey("environment")) {
1591 environment = _json["environment"];
1592 }
1593 }
1594
1595 core.Map<core.String, core.Object> toJson() {
1596 final core.Map<core.String, core.Object> _json =
1597 new core.Map<core.String, core.Object>();
1598 if (environment != null) {
1599 _json["environment"] = environment;
1600 }
1601 return _json;
1602 }
1603}
1604
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001605/// Customize service error responses. For example, list any service specific
1606/// protobuf types that can appear in error detail lists of error responses.
1607/// Example: custom_error: types: - google.foo.v1.CustomError -
1608/// google.foo.v1.AnotherError
Martin Kustermann12cdd522018-08-27 10:46:50 +02001609class CustomError {
1610 /// The list of custom error rules that apply to individual API messages.
Martin Kustermann12cdd522018-08-27 10:46:50 +02001611 /// **NOTE:** All service configuration rules follow "last one wins" order.
1612 core.List<CustomErrorRule> rules;
1613
1614 /// The list of custom error detail types, e.g. 'google.foo.v1.CustomError'.
1615 core.List<core.String> types;
1616
1617 CustomError();
1618
1619 CustomError.fromJson(core.Map _json) {
1620 if (_json.containsKey("rules")) {
1621 rules = (_json["rules"] as core.List)
1622 .map<CustomErrorRule>((value) => new CustomErrorRule.fromJson(value))
1623 .toList();
1624 }
1625 if (_json.containsKey("types")) {
1626 types = (_json["types"] as core.List).cast<core.String>();
1627 }
1628 }
1629
1630 core.Map<core.String, core.Object> toJson() {
1631 final core.Map<core.String, core.Object> _json =
1632 new core.Map<core.String, core.Object>();
1633 if (rules != null) {
1634 _json["rules"] = rules.map((value) => (value).toJson()).toList();
1635 }
1636 if (types != null) {
1637 _json["types"] = types;
1638 }
1639 return _json;
1640 }
1641}
1642
1643/// A custom error rule.
1644class CustomErrorRule {
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001645 /// Mark this message as possible payload in error response. Otherwise,
Martin Kustermann12cdd522018-08-27 10:46:50 +02001646 /// objects of this type will be filtered when they appear in error payload.
1647 core.bool isErrorType;
1648
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001649 /// Selects messages to which this rule applies. Refer to selector for syntax
1650 /// details.
Martin Kustermann12cdd522018-08-27 10:46:50 +02001651 core.String selector;
1652
1653 CustomErrorRule();
1654
1655 CustomErrorRule.fromJson(core.Map _json) {
1656 if (_json.containsKey("isErrorType")) {
1657 isErrorType = _json["isErrorType"];
1658 }
1659 if (_json.containsKey("selector")) {
1660 selector = _json["selector"];
1661 }
1662 }
1663
1664 core.Map<core.String, core.Object> toJson() {
1665 final core.Map<core.String, core.Object> _json =
1666 new core.Map<core.String, core.Object>();
1667 if (isErrorType != null) {
1668 _json["isErrorType"] = isErrorType;
1669 }
1670 if (selector != null) {
1671 _json["selector"] = selector;
1672 }
1673 return _json;
1674 }
1675}
1676
1677/// A custom pattern is used for defining custom HTTP verb.
1678class CustomHttpPattern {
1679 /// The name of this custom HTTP verb.
1680 core.String kind;
1681
1682 /// The path matched by this custom verb.
1683 core.String path;
1684
1685 CustomHttpPattern();
1686
1687 CustomHttpPattern.fromJson(core.Map _json) {
1688 if (_json.containsKey("kind")) {
1689 kind = _json["kind"];
1690 }
1691 if (_json.containsKey("path")) {
1692 path = _json["path"];
1693 }
1694 }
1695
1696 core.Map<core.String, core.Object> toJson() {
1697 final core.Map<core.String, core.Object> _json =
1698 new core.Map<core.String, core.Object>();
1699 if (kind != null) {
1700 _json["kind"] = kind;
1701 }
1702 if (path != null) {
1703 _json["path"] = path;
1704 }
1705 return _json;
1706 }
1707}
1708
1709/// Request message for the `DisableService` method.
1710class DisableServiceRequest {
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001711 /// Defines the behavior for checking service usage when disabling a service.
1712 /// Possible string values are:
1713 /// - "CHECK_IF_SERVICE_HAS_USAGE_UNSPECIFIED" : When unset, the default
1714 /// behavior is used, which is SKIP.
1715 /// - "SKIP" : If set, skip checking service usage when disabling a service.
1716 /// - "CHECK" : If set, service usage is checked when disabling the service.
1717 /// If a service, or its dependents, has usage in the last 30 days, the
1718 /// request returns a FAILED_PRECONDITION error.
1719 core.String checkIfServiceHasUsage;
1720
Martin Kustermann12cdd522018-08-27 10:46:50 +02001721 /// Indicates if services that are enabled and which depend on this service
1722 /// should also be disabled. If not set, an error will be generated if any
1723 /// enabled services depend on the service to be disabled. When set, the
1724 /// service, and any enabled services that depend on it, will be disabled
1725 /// together.
1726 core.bool disableDependentServices;
1727
1728 DisableServiceRequest();
1729
1730 DisableServiceRequest.fromJson(core.Map _json) {
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001731 if (_json.containsKey("checkIfServiceHasUsage")) {
1732 checkIfServiceHasUsage = _json["checkIfServiceHasUsage"];
1733 }
Martin Kustermann12cdd522018-08-27 10:46:50 +02001734 if (_json.containsKey("disableDependentServices")) {
1735 disableDependentServices = _json["disableDependentServices"];
1736 }
1737 }
1738
1739 core.Map<core.String, core.Object> toJson() {
1740 final core.Map<core.String, core.Object> _json =
1741 new core.Map<core.String, core.Object>();
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001742 if (checkIfServiceHasUsage != null) {
1743 _json["checkIfServiceHasUsage"] = checkIfServiceHasUsage;
1744 }
Martin Kustermann12cdd522018-08-27 10:46:50 +02001745 if (disableDependentServices != null) {
1746 _json["disableDependentServices"] = disableDependentServices;
1747 }
1748 return _json;
1749 }
1750}
1751
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001752/// Response message for the `DisableService` method. This response message is
1753/// assigned to the `response` field of the returned Operation when that
1754/// operation is done.
Martin Kustermann12cdd522018-08-27 10:46:50 +02001755class DisableServiceResponse {
1756 /// The new state of the service after disabling.
1757 GoogleApiServiceusageV1Service service;
1758
1759 DisableServiceResponse();
1760
1761 DisableServiceResponse.fromJson(core.Map _json) {
1762 if (_json.containsKey("service")) {
1763 service = new GoogleApiServiceusageV1Service.fromJson(_json["service"]);
1764 }
1765 }
1766
1767 core.Map<core.String, core.Object> toJson() {
1768 final core.Map<core.String, core.Object> _json =
1769 new core.Map<core.String, core.Object>();
1770 if (service != null) {
1771 _json["service"] = (service).toJson();
1772 }
1773 return _json;
1774 }
1775}
1776
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001777/// `Documentation` provides the information for describing a service. Example:
1778/// documentation: summary: > The Google Calendar API gives access to most
1779/// calendar features. pages: - name: Overview content: (== include
1780/// google/foo/overview.md ==) - name: Tutorial content: (== include
1781/// google/foo/tutorial.md ==) subpages; - name: Java content: (== include
1782/// google/foo/tutorial_java.md ==) rules: - selector:
1783/// google.calendar.Calendar.Get description: > ... - selector:
1784/// google.calendar.Calendar.Put description: > ... Documentation is provided in
1785/// markdown syntax. In addition to standard markdown features, definition
1786/// lists, tables and fenced code blocks are supported. Section headers can be
1787/// provided and are interpreted relative to the section nesting of the context
1788/// where a documentation fragment is embedded. Documentation from the IDL is
1789/// merged with documentation defined via the config at normalization time,
1790/// where documentation provided by config rules overrides IDL provided. A
1791/// number of constructs specific to the API platform are supported in
1792/// documentation text. In order to reference a proto element, the following
1793/// notation can be used: [fully.qualified.proto.name][] To override the display
1794/// text used for the link, this can be used: [display
1795/// text][fully.qualified.proto.name] Text can be excluded from doc using the
1796/// following notation: (-- internal comment --) A few directives are available
1797/// in documentation. Note that directives must appear on a single line to be
1798/// properly identified. The `include` directive includes a markdown file from
1799/// an external source: (== include path/to/file ==) The `resource_for`
1800/// directive marks a message to be the resource of a collection in REST view.
1801/// If it is not specified, tools attempt to infer the resource from the
1802/// operations in a collection: (== resource_for v1.shelves.books ==) The
1803/// directive `suppress_warning` does not directly affect documentation and is
1804/// documented together with service config validation.
Martin Kustermann12cdd522018-08-27 10:46:50 +02001805class Documentation {
1806 /// The URL to the root of documentation.
1807 core.String documentationRootUrl;
1808
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001809 /// Declares a single overview page. For example: documentation: summary: ...
1810 /// overview: (== include overview.md ==) This is a shortcut for the following
1811 /// declaration (using pages style): documentation: summary: ... pages: -
1812 /// name: Overview content: (== include overview.md ==) Note: you cannot
1813 /// specify both `overview` field and `pages` field.
Martin Kustermann12cdd522018-08-27 10:46:50 +02001814 core.String overview;
1815
1816 /// The top level pages for the documentation set.
1817 core.List<Page> pages;
1818
1819 /// A list of documentation rules that apply to individual API elements.
Martin Kustermann12cdd522018-08-27 10:46:50 +02001820 /// **NOTE:** All service configuration rules follow "last one wins" order.
1821 core.List<DocumentationRule> rules;
1822
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001823 /// Specifies the service root url if the default one (the service name from
1824 /// the yaml file) is not suitable. This can be seen in any fully specified
1825 /// service urls as well as sections that show a base that other urls are
1826 /// relative to.
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02001827 core.String serviceRootUrl;
1828
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001829 /// A short summary of what the service does. Can only be provided by plain
1830 /// text.
Martin Kustermann12cdd522018-08-27 10:46:50 +02001831 core.String summary;
1832
1833 Documentation();
1834
1835 Documentation.fromJson(core.Map _json) {
1836 if (_json.containsKey("documentationRootUrl")) {
1837 documentationRootUrl = _json["documentationRootUrl"];
1838 }
1839 if (_json.containsKey("overview")) {
1840 overview = _json["overview"];
1841 }
1842 if (_json.containsKey("pages")) {
1843 pages = (_json["pages"] as core.List)
1844 .map<Page>((value) => new Page.fromJson(value))
1845 .toList();
1846 }
1847 if (_json.containsKey("rules")) {
1848 rules = (_json["rules"] as core.List)
1849 .map<DocumentationRule>(
1850 (value) => new DocumentationRule.fromJson(value))
1851 .toList();
1852 }
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02001853 if (_json.containsKey("serviceRootUrl")) {
1854 serviceRootUrl = _json["serviceRootUrl"];
1855 }
Martin Kustermann12cdd522018-08-27 10:46:50 +02001856 if (_json.containsKey("summary")) {
1857 summary = _json["summary"];
1858 }
1859 }
1860
1861 core.Map<core.String, core.Object> toJson() {
1862 final core.Map<core.String, core.Object> _json =
1863 new core.Map<core.String, core.Object>();
1864 if (documentationRootUrl != null) {
1865 _json["documentationRootUrl"] = documentationRootUrl;
1866 }
1867 if (overview != null) {
1868 _json["overview"] = overview;
1869 }
1870 if (pages != null) {
1871 _json["pages"] = pages.map((value) => (value).toJson()).toList();
1872 }
1873 if (rules != null) {
1874 _json["rules"] = rules.map((value) => (value).toJson()).toList();
1875 }
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02001876 if (serviceRootUrl != null) {
1877 _json["serviceRootUrl"] = serviceRootUrl;
1878 }
Martin Kustermann12cdd522018-08-27 10:46:50 +02001879 if (summary != null) {
1880 _json["summary"] = summary;
1881 }
1882 return _json;
1883 }
1884}
1885
1886/// A documentation rule provides information about individual API elements.
1887class DocumentationRule {
1888 /// Deprecation description of the selected element(s). It can be provided if
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02001889 /// an element is marked as `deprecated`.
Martin Kustermann12cdd522018-08-27 10:46:50 +02001890 core.String deprecationDescription;
1891
1892 /// Description of the selected API(s).
1893 core.String description;
1894
1895 /// The selector is a comma-separated list of patterns. Each pattern is a
1896 /// qualified name of the element which may end in "*", indicating a wildcard.
1897 /// Wildcards are only allowed at the end and for a whole component of the
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02001898 /// qualified name, i.e. "foo.*" is ok, but not "foo.b*" or "foo.*.bar". A
1899 /// wildcard will match one or more components. To specify a default for all
1900 /// applicable elements, the whole pattern "*" is used.
Martin Kustermann12cdd522018-08-27 10:46:50 +02001901 core.String selector;
1902
1903 DocumentationRule();
1904
1905 DocumentationRule.fromJson(core.Map _json) {
1906 if (_json.containsKey("deprecationDescription")) {
1907 deprecationDescription = _json["deprecationDescription"];
1908 }
1909 if (_json.containsKey("description")) {
1910 description = _json["description"];
1911 }
1912 if (_json.containsKey("selector")) {
1913 selector = _json["selector"];
1914 }
1915 }
1916
1917 core.Map<core.String, core.Object> toJson() {
1918 final core.Map<core.String, core.Object> _json =
1919 new core.Map<core.String, core.Object>();
1920 if (deprecationDescription != null) {
1921 _json["deprecationDescription"] = deprecationDescription;
1922 }
1923 if (description != null) {
1924 _json["description"] = description;
1925 }
1926 if (selector != null) {
1927 _json["selector"] = selector;
1928 }
1929 return _json;
1930 }
1931}
1932
1933/// A generic empty message that you can re-use to avoid defining duplicated
1934/// empty messages in your APIs. A typical example is to use it as the request
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001935/// or the response type of an API method. For instance: service Foo { rpc
1936/// Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON
1937/// representation for `Empty` is empty JSON object `{}`.
Martin Kustermann12cdd522018-08-27 10:46:50 +02001938class Empty {
1939 Empty();
1940
1941 Empty.fromJson(core.Map _json) {}
1942
1943 core.Map<core.String, core.Object> toJson() {
1944 final core.Map<core.String, core.Object> _json =
1945 new core.Map<core.String, core.Object>();
1946 return _json;
1947 }
1948}
1949
1950/// Provides error messages for the failing services.
1951class EnableFailure {
1952 /// An error message describing why the service could not be enabled.
1953 core.String errorMessage;
1954
1955 /// The service id of a service that could not be enabled.
1956 core.String serviceId;
1957
1958 EnableFailure();
1959
1960 EnableFailure.fromJson(core.Map _json) {
1961 if (_json.containsKey("errorMessage")) {
1962 errorMessage = _json["errorMessage"];
1963 }
1964 if (_json.containsKey("serviceId")) {
1965 serviceId = _json["serviceId"];
1966 }
1967 }
1968
1969 core.Map<core.String, core.Object> toJson() {
1970 final core.Map<core.String, core.Object> _json =
1971 new core.Map<core.String, core.Object>();
1972 if (errorMessage != null) {
1973 _json["errorMessage"] = errorMessage;
1974 }
1975 if (serviceId != null) {
1976 _json["serviceId"] = serviceId;
1977 }
1978 return _json;
1979 }
1980}
1981
1982/// Request message for the `EnableService` method.
1983class EnableServiceRequest {
1984 EnableServiceRequest();
1985
1986 EnableServiceRequest.fromJson(core.Map _json) {}
1987
1988 core.Map<core.String, core.Object> toJson() {
1989 final core.Map<core.String, core.Object> _json =
1990 new core.Map<core.String, core.Object>();
1991 return _json;
1992 }
1993}
1994
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02001995/// Response message for the `EnableService` method. This response message is
1996/// assigned to the `response` field of the returned Operation when that
1997/// operation is done.
Martin Kustermann12cdd522018-08-27 10:46:50 +02001998class EnableServiceResponse {
1999 /// The new state of the service after enabling.
2000 GoogleApiServiceusageV1Service service;
2001
2002 EnableServiceResponse();
2003
2004 EnableServiceResponse.fromJson(core.Map _json) {
2005 if (_json.containsKey("service")) {
2006 service = new GoogleApiServiceusageV1Service.fromJson(_json["service"]);
2007 }
2008 }
2009
2010 core.Map<core.String, core.Object> toJson() {
2011 final core.Map<core.String, core.Object> _json =
2012 new core.Map<core.String, core.Object>();
2013 if (service != null) {
2014 _json["service"] = (service).toJson();
2015 }
2016 return _json;
2017 }
2018}
2019
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002020/// `Endpoint` describes a network endpoint that serves a set of APIs. A service
2021/// may expose any number of endpoints, and all endpoints share the same service
2022/// configuration, such as quota configuration and monitoring configuration.
2023/// Example service configuration: name: library-example.googleapis.com
2024/// endpoints: # Below entry makes 'google.example.library.v1.Library' # API be
2025/// served from endpoint address library-example.googleapis.com. # It also
2026/// allows HTTP OPTIONS calls to be passed to the backend, for # it to decide
2027/// whether the subsequent cross-origin request is # allowed to proceed. - name:
2028/// library-example.googleapis.com allow_cors: true
Martin Kustermann12cdd522018-08-27 10:46:50 +02002029class Endpoint {
2030 /// DEPRECATED: This field is no longer supported. Instead of using aliases,
2031 /// please specify multiple google.api.Endpoint for each of the intended
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002032 /// aliases. Additional names that this endpoint will be hosted on.
Martin Kustermann12cdd522018-08-27 10:46:50 +02002033 core.List<core.String> aliases;
2034
2035 /// Allowing
2036 /// [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing), aka
2037 /// cross-domain traffic, would allow the backends served from this endpoint
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002038 /// to receive and respond to HTTP OPTIONS requests. The response will be used
2039 /// by the browser to determine whether the subsequent cross-origin request is
Martin Kustermann12cdd522018-08-27 10:46:50 +02002040 /// allowed to proceed.
2041 core.bool allowCors;
2042
Martin Kustermann12cdd522018-08-27 10:46:50 +02002043 /// The canonical name of this endpoint.
2044 core.String name;
2045
2046 /// The specification of an Internet routable address of API frontend that
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002047 /// will handle requests to this [API
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02002048 /// Endpoint](https://cloud.google.com/apis/design/glossary). It should be
2049 /// either a valid IPv4 address or a fully-qualified domain name. For example,
2050 /// "8.8.8.8" or "myservice.appspot.com".
Martin Kustermann12cdd522018-08-27 10:46:50 +02002051 core.String target;
2052
2053 Endpoint();
2054
2055 Endpoint.fromJson(core.Map _json) {
2056 if (_json.containsKey("aliases")) {
2057 aliases = (_json["aliases"] as core.List).cast<core.String>();
2058 }
2059 if (_json.containsKey("allowCors")) {
2060 allowCors = _json["allowCors"];
2061 }
Martin Kustermann12cdd522018-08-27 10:46:50 +02002062 if (_json.containsKey("name")) {
2063 name = _json["name"];
2064 }
2065 if (_json.containsKey("target")) {
2066 target = _json["target"];
2067 }
2068 }
2069
2070 core.Map<core.String, core.Object> toJson() {
2071 final core.Map<core.String, core.Object> _json =
2072 new core.Map<core.String, core.Object>();
2073 if (aliases != null) {
2074 _json["aliases"] = aliases;
2075 }
2076 if (allowCors != null) {
2077 _json["allowCors"] = allowCors;
2078 }
Martin Kustermann12cdd522018-08-27 10:46:50 +02002079 if (name != null) {
2080 _json["name"] = name;
2081 }
2082 if (target != null) {
2083 _json["target"] = target;
2084 }
2085 return _json;
2086 }
2087}
2088
2089/// Enum type definition.
2090class Enum {
2091 /// Enum value definitions.
2092 core.List<EnumValue> enumvalue;
2093
2094 /// Enum type name.
2095 core.String name;
2096
2097 /// Protocol buffer options.
2098 core.List<Option> options;
2099
2100 /// The source context.
2101 SourceContext sourceContext;
2102
2103 /// The source syntax.
2104 /// Possible string values are:
2105 /// - "SYNTAX_PROTO2" : Syntax `proto2`.
2106 /// - "SYNTAX_PROTO3" : Syntax `proto3`.
2107 core.String syntax;
2108
2109 Enum();
2110
2111 Enum.fromJson(core.Map _json) {
2112 if (_json.containsKey("enumvalue")) {
2113 enumvalue = (_json["enumvalue"] as core.List)
2114 .map<EnumValue>((value) => new EnumValue.fromJson(value))
2115 .toList();
2116 }
2117 if (_json.containsKey("name")) {
2118 name = _json["name"];
2119 }
2120 if (_json.containsKey("options")) {
2121 options = (_json["options"] as core.List)
2122 .map<Option>((value) => new Option.fromJson(value))
2123 .toList();
2124 }
2125 if (_json.containsKey("sourceContext")) {
2126 sourceContext = new SourceContext.fromJson(_json["sourceContext"]);
2127 }
2128 if (_json.containsKey("syntax")) {
2129 syntax = _json["syntax"];
2130 }
2131 }
2132
2133 core.Map<core.String, core.Object> toJson() {
2134 final core.Map<core.String, core.Object> _json =
2135 new core.Map<core.String, core.Object>();
2136 if (enumvalue != null) {
2137 _json["enumvalue"] = enumvalue.map((value) => (value).toJson()).toList();
2138 }
2139 if (name != null) {
2140 _json["name"] = name;
2141 }
2142 if (options != null) {
2143 _json["options"] = options.map((value) => (value).toJson()).toList();
2144 }
2145 if (sourceContext != null) {
2146 _json["sourceContext"] = (sourceContext).toJson();
2147 }
2148 if (syntax != null) {
2149 _json["syntax"] = syntax;
2150 }
2151 return _json;
2152 }
2153}
2154
2155/// Enum value definition.
2156class EnumValue {
2157 /// Enum value name.
2158 core.String name;
2159
2160 /// Enum value number.
2161 core.int number;
2162
2163 /// Protocol buffer options.
2164 core.List<Option> options;
2165
2166 EnumValue();
2167
2168 EnumValue.fromJson(core.Map _json) {
2169 if (_json.containsKey("name")) {
2170 name = _json["name"];
2171 }
2172 if (_json.containsKey("number")) {
2173 number = _json["number"];
2174 }
2175 if (_json.containsKey("options")) {
2176 options = (_json["options"] as core.List)
2177 .map<Option>((value) => new Option.fromJson(value))
2178 .toList();
2179 }
2180 }
2181
2182 core.Map<core.String, core.Object> toJson() {
2183 final core.Map<core.String, core.Object> _json =
2184 new core.Map<core.String, core.Object>();
2185 if (name != null) {
2186 _json["name"] = name;
2187 }
2188 if (number != null) {
2189 _json["number"] = number;
2190 }
2191 if (options != null) {
2192 _json["options"] = options.map((value) => (value).toJson()).toList();
2193 }
2194 return _json;
2195 }
2196}
2197
Martin Kustermann12cdd522018-08-27 10:46:50 +02002198/// A single field of a message type.
2199class Field {
2200 /// The field cardinality.
2201 /// Possible string values are:
2202 /// - "CARDINALITY_UNKNOWN" : For fields with unknown cardinality.
2203 /// - "CARDINALITY_OPTIONAL" : For optional fields.
2204 /// - "CARDINALITY_REQUIRED" : For required fields. Proto2 syntax only.
2205 /// - "CARDINALITY_REPEATED" : For repeated fields.
2206 core.String cardinality;
2207
2208 /// The string value of the default value of this field. Proto2 syntax only.
2209 core.String defaultValue;
2210
2211 /// The field JSON name.
2212 core.String jsonName;
2213
2214 /// The field type.
2215 /// Possible string values are:
2216 /// - "TYPE_UNKNOWN" : Field type unknown.
2217 /// - "TYPE_DOUBLE" : Field type double.
2218 /// - "TYPE_FLOAT" : Field type float.
2219 /// - "TYPE_INT64" : Field type int64.
2220 /// - "TYPE_UINT64" : Field type uint64.
2221 /// - "TYPE_INT32" : Field type int32.
2222 /// - "TYPE_FIXED64" : Field type fixed64.
2223 /// - "TYPE_FIXED32" : Field type fixed32.
2224 /// - "TYPE_BOOL" : Field type bool.
2225 /// - "TYPE_STRING" : Field type string.
2226 /// - "TYPE_GROUP" : Field type group. Proto2 syntax only, and deprecated.
2227 /// - "TYPE_MESSAGE" : Field type message.
2228 /// - "TYPE_BYTES" : Field type bytes.
2229 /// - "TYPE_UINT32" : Field type uint32.
2230 /// - "TYPE_ENUM" : Field type enum.
2231 /// - "TYPE_SFIXED32" : Field type sfixed32.
2232 /// - "TYPE_SFIXED64" : Field type sfixed64.
2233 /// - "TYPE_SINT32" : Field type sint32.
2234 /// - "TYPE_SINT64" : Field type sint64.
2235 core.String kind;
2236
2237 /// The field name.
2238 core.String name;
2239
2240 /// The field number.
2241 core.int number;
2242
2243 /// The index of the field type in `Type.oneofs`, for message or enumeration
2244 /// types. The first type has index 1; zero means the type is not in the list.
2245 core.int oneofIndex;
2246
2247 /// The protocol buffer options.
2248 core.List<Option> options;
2249
2250 /// Whether to use alternative packed wire representation.
2251 core.bool packed;
2252
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002253 /// The field type URL, without the scheme, for message or enumeration types.
2254 /// Example: `"type.googleapis.com/google.protobuf.Timestamp"`.
Martin Kustermann12cdd522018-08-27 10:46:50 +02002255 core.String typeUrl;
2256
2257 Field();
2258
2259 Field.fromJson(core.Map _json) {
2260 if (_json.containsKey("cardinality")) {
2261 cardinality = _json["cardinality"];
2262 }
2263 if (_json.containsKey("defaultValue")) {
2264 defaultValue = _json["defaultValue"];
2265 }
2266 if (_json.containsKey("jsonName")) {
2267 jsonName = _json["jsonName"];
2268 }
2269 if (_json.containsKey("kind")) {
2270 kind = _json["kind"];
2271 }
2272 if (_json.containsKey("name")) {
2273 name = _json["name"];
2274 }
2275 if (_json.containsKey("number")) {
2276 number = _json["number"];
2277 }
2278 if (_json.containsKey("oneofIndex")) {
2279 oneofIndex = _json["oneofIndex"];
2280 }
2281 if (_json.containsKey("options")) {
2282 options = (_json["options"] as core.List)
2283 .map<Option>((value) => new Option.fromJson(value))
2284 .toList();
2285 }
2286 if (_json.containsKey("packed")) {
2287 packed = _json["packed"];
2288 }
2289 if (_json.containsKey("typeUrl")) {
2290 typeUrl = _json["typeUrl"];
2291 }
2292 }
2293
2294 core.Map<core.String, core.Object> toJson() {
2295 final core.Map<core.String, core.Object> _json =
2296 new core.Map<core.String, core.Object>();
2297 if (cardinality != null) {
2298 _json["cardinality"] = cardinality;
2299 }
2300 if (defaultValue != null) {
2301 _json["defaultValue"] = defaultValue;
2302 }
2303 if (jsonName != null) {
2304 _json["jsonName"] = jsonName;
2305 }
2306 if (kind != null) {
2307 _json["kind"] = kind;
2308 }
2309 if (name != null) {
2310 _json["name"] = name;
2311 }
2312 if (number != null) {
2313 _json["number"] = number;
2314 }
2315 if (oneofIndex != null) {
2316 _json["oneofIndex"] = oneofIndex;
2317 }
2318 if (options != null) {
2319 _json["options"] = options.map((value) => (value).toJson()).toList();
2320 }
2321 if (packed != null) {
2322 _json["packed"] = packed;
2323 }
2324 if (typeUrl != null) {
2325 _json["typeUrl"] = typeUrl;
2326 }
2327 return _json;
2328 }
2329}
2330
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02002331/// Response message for getting service identity.
2332class GetServiceIdentityResponse {
2333 /// Service identity that service producer can use to access consumer
2334 /// resources. If exists is true, it contains email and unique_id. If exists
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002335 /// is false, it contains pre-constructed email and empty unique_id.
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02002336 ServiceIdentity identity;
2337
2338 /// Service identity state.
2339 /// Possible string values are:
2340 /// - "IDENTITY_STATE_UNSPECIFIED" : Default service identity state. This
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002341 /// value is used if the state is omitted.
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02002342 /// - "ACTIVE" : Service identity has been created and can be used.
2343 core.String state;
2344
2345 GetServiceIdentityResponse();
2346
2347 GetServiceIdentityResponse.fromJson(core.Map _json) {
2348 if (_json.containsKey("identity")) {
2349 identity = new ServiceIdentity.fromJson(_json["identity"]);
2350 }
2351 if (_json.containsKey("state")) {
2352 state = _json["state"];
2353 }
2354 }
2355
2356 core.Map<core.String, core.Object> toJson() {
2357 final core.Map<core.String, core.Object> _json =
2358 new core.Map<core.String, core.Object>();
2359 if (identity != null) {
2360 _json["identity"] = (identity).toJson();
2361 }
2362 if (state != null) {
2363 _json["state"] = state;
2364 }
2365 return _json;
2366 }
2367}
2368
Martin Kustermann12cdd522018-08-27 10:46:50 +02002369/// `Service` is the root object of Google service configuration schema. It
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002370/// describes basic information about a service, such as the name and the title,
2371/// and delegates other aspects to sub-sections. Each sub-section is either a
2372/// proto message or a repeated proto message that configures a specific aspect,
2373/// such as auth. See each proto message definition for details. Example: type:
2374/// google.api.Service config_version: 3 name: calendar.googleapis.com title:
2375/// Google Calendar API apis: - name: google.calendar.v3.Calendar
2376/// authentication: providers: - id: google_calendar_auth jwks_uri:
2377/// https://www.googleapis.com/oauth2/v1/certs issuer:
2378/// https://securetoken.google.com rules: - selector: "*" requirements:
2379/// provider_id: google_calendar_auth
Martin Kustermann12cdd522018-08-27 10:46:50 +02002380class GoogleApiService {
2381 /// A list of API interfaces exported by this service. Only the `name` field
2382 /// of the google.protobuf.Api needs to be provided by the configuration
2383 /// author, as the remaining fields will be derived from the IDL during the
2384 /// normalization process. It is an error to specify an API interface here
2385 /// which cannot be resolved against the associated IDL files.
2386 core.List<Api> apis;
2387
2388 /// Auth configuration.
2389 Authentication authentication;
2390
2391 /// API backend configuration.
2392 Backend backend;
2393
2394 /// Billing configuration.
2395 Billing billing;
2396
2397 /// The semantic version of the service configuration. The config version
2398 /// affects the interpretation of the service configuration. For example,
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002399 /// certain features are enabled by default for certain config versions. The
2400 /// latest config version is `3`.
Martin Kustermann12cdd522018-08-27 10:46:50 +02002401 core.int configVersion;
2402
2403 /// Context configuration.
2404 Context context;
2405
2406 /// Configuration for the service control plane.
2407 Control control;
2408
2409 /// Custom error configuration.
2410 CustomError customError;
2411
2412 /// Additional API documentation.
2413 Documentation documentation;
2414
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002415 /// Configuration for network endpoints. If this is empty, then an endpoint
Martin Kustermann12cdd522018-08-27 10:46:50 +02002416 /// with the same name as the service is automatically generated to service
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002417 /// all defined APIs.
Martin Kustermann12cdd522018-08-27 10:46:50 +02002418 core.List<Endpoint> endpoints;
2419
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002420 /// A list of all enum types included in this API service. Enums referenced
2421 /// directly or indirectly by the `apis` are automatically included. Enums
2422 /// which are not referenced but shall be included should be listed here by
2423 /// name. Example: enums: - name: google.someapi.v1.SomeEnum
Martin Kustermann12cdd522018-08-27 10:46:50 +02002424 core.List<Enum> enums;
2425
Martin Kustermann12cdd522018-08-27 10:46:50 +02002426 /// HTTP configuration.
2427 Http http;
2428
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002429 /// A unique ID for a specific instance of this message, typically assigned by
2430 /// the client for tracking purpose. Must be no longer than 63 characters and
2431 /// only lower case letters, digits, '.', '_' and '-' are allowed. If empty,
2432 /// the server may choose to generate one instead.
Martin Kustermann12cdd522018-08-27 10:46:50 +02002433 core.String id;
2434
2435 /// Logging configuration.
2436 Logging logging;
2437
2438 /// Defines the logs used by this service.
2439 core.List<LogDescriptor> logs;
2440
2441 /// Defines the metrics used by this service.
2442 core.List<MetricDescriptor> metrics;
2443
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002444 /// Defines the monitored resources used by this service. This is required by
2445 /// the Service.monitoring and Service.logging configurations.
Martin Kustermann12cdd522018-08-27 10:46:50 +02002446 core.List<MonitoredResourceDescriptor> monitoredResources;
2447
2448 /// Monitoring configuration.
2449 Monitoring monitoring;
2450
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002451 /// The service name, which is a DNS-like logical identifier for the service,
2452 /// such as `calendar.googleapis.com`. The service name typically goes through
2453 /// DNS verification to make sure the owner of the service also owns the DNS
2454 /// name.
Martin Kustermann12cdd522018-08-27 10:46:50 +02002455 core.String name;
2456
2457 /// The Google project that owns this service.
2458 core.String producerProjectId;
2459
2460 /// Quota configuration.
2461 Quota quota;
2462
2463 /// Output only. The source information for this configuration if available.
2464 SourceInfo sourceInfo;
2465
2466 /// System parameter configuration.
2467 SystemParameters systemParameters;
2468
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002469 /// A list of all proto message types included in this API service. It serves
2470 /// similar purpose as [google.api.Service.types], except that these types are
2471 /// not needed by user-defined APIs. Therefore, they will not show up in the
2472 /// generated discovery doc. This field should only be used to define system
2473 /// APIs in ESF.
Martin Kustermann12cdd522018-08-27 10:46:50 +02002474 core.List<Type> systemTypes;
2475
2476 /// The product title for this service.
2477 core.String title;
2478
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002479 /// A list of all proto message types included in this API service. Types
2480 /// referenced directly or indirectly by the `apis` are automatically
2481 /// included. Messages which are not referenced but shall be included, such as
2482 /// types used by the `google.protobuf.Any` type, should be listed here by
2483 /// name. Example: types: - name: google.protobuf.Int32
Martin Kustermann12cdd522018-08-27 10:46:50 +02002484 core.List<Type> types;
2485
2486 /// Configuration controlling usage of this service.
2487 Usage usage;
2488
2489 GoogleApiService();
2490
2491 GoogleApiService.fromJson(core.Map _json) {
2492 if (_json.containsKey("apis")) {
2493 apis = (_json["apis"] as core.List)
2494 .map<Api>((value) => new Api.fromJson(value))
2495 .toList();
2496 }
2497 if (_json.containsKey("authentication")) {
2498 authentication = new Authentication.fromJson(_json["authentication"]);
2499 }
2500 if (_json.containsKey("backend")) {
2501 backend = new Backend.fromJson(_json["backend"]);
2502 }
2503 if (_json.containsKey("billing")) {
2504 billing = new Billing.fromJson(_json["billing"]);
2505 }
2506 if (_json.containsKey("configVersion")) {
2507 configVersion = _json["configVersion"];
2508 }
2509 if (_json.containsKey("context")) {
2510 context = new Context.fromJson(_json["context"]);
2511 }
2512 if (_json.containsKey("control")) {
2513 control = new Control.fromJson(_json["control"]);
2514 }
2515 if (_json.containsKey("customError")) {
2516 customError = new CustomError.fromJson(_json["customError"]);
2517 }
2518 if (_json.containsKey("documentation")) {
2519 documentation = new Documentation.fromJson(_json["documentation"]);
2520 }
2521 if (_json.containsKey("endpoints")) {
2522 endpoints = (_json["endpoints"] as core.List)
2523 .map<Endpoint>((value) => new Endpoint.fromJson(value))
2524 .toList();
2525 }
2526 if (_json.containsKey("enums")) {
2527 enums = (_json["enums"] as core.List)
2528 .map<Enum>((value) => new Enum.fromJson(value))
2529 .toList();
2530 }
Martin Kustermann12cdd522018-08-27 10:46:50 +02002531 if (_json.containsKey("http")) {
2532 http = new Http.fromJson(_json["http"]);
2533 }
2534 if (_json.containsKey("id")) {
2535 id = _json["id"];
2536 }
2537 if (_json.containsKey("logging")) {
2538 logging = new Logging.fromJson(_json["logging"]);
2539 }
2540 if (_json.containsKey("logs")) {
2541 logs = (_json["logs"] as core.List)
2542 .map<LogDescriptor>((value) => new LogDescriptor.fromJson(value))
2543 .toList();
2544 }
2545 if (_json.containsKey("metrics")) {
2546 metrics = (_json["metrics"] as core.List)
2547 .map<MetricDescriptor>(
2548 (value) => new MetricDescriptor.fromJson(value))
2549 .toList();
2550 }
2551 if (_json.containsKey("monitoredResources")) {
2552 monitoredResources = (_json["monitoredResources"] as core.List)
2553 .map<MonitoredResourceDescriptor>(
2554 (value) => new MonitoredResourceDescriptor.fromJson(value))
2555 .toList();
2556 }
2557 if (_json.containsKey("monitoring")) {
2558 monitoring = new Monitoring.fromJson(_json["monitoring"]);
2559 }
2560 if (_json.containsKey("name")) {
2561 name = _json["name"];
2562 }
2563 if (_json.containsKey("producerProjectId")) {
2564 producerProjectId = _json["producerProjectId"];
2565 }
2566 if (_json.containsKey("quota")) {
2567 quota = new Quota.fromJson(_json["quota"]);
2568 }
2569 if (_json.containsKey("sourceInfo")) {
2570 sourceInfo = new SourceInfo.fromJson(_json["sourceInfo"]);
2571 }
2572 if (_json.containsKey("systemParameters")) {
2573 systemParameters =
2574 new SystemParameters.fromJson(_json["systemParameters"]);
2575 }
2576 if (_json.containsKey("systemTypes")) {
2577 systemTypes = (_json["systemTypes"] as core.List)
2578 .map<Type>((value) => new Type.fromJson(value))
2579 .toList();
2580 }
2581 if (_json.containsKey("title")) {
2582 title = _json["title"];
2583 }
2584 if (_json.containsKey("types")) {
2585 types = (_json["types"] as core.List)
2586 .map<Type>((value) => new Type.fromJson(value))
2587 .toList();
2588 }
2589 if (_json.containsKey("usage")) {
2590 usage = new Usage.fromJson(_json["usage"]);
2591 }
2592 }
2593
2594 core.Map<core.String, core.Object> toJson() {
2595 final core.Map<core.String, core.Object> _json =
2596 new core.Map<core.String, core.Object>();
2597 if (apis != null) {
2598 _json["apis"] = apis.map((value) => (value).toJson()).toList();
2599 }
2600 if (authentication != null) {
2601 _json["authentication"] = (authentication).toJson();
2602 }
2603 if (backend != null) {
2604 _json["backend"] = (backend).toJson();
2605 }
2606 if (billing != null) {
2607 _json["billing"] = (billing).toJson();
2608 }
2609 if (configVersion != null) {
2610 _json["configVersion"] = configVersion;
2611 }
2612 if (context != null) {
2613 _json["context"] = (context).toJson();
2614 }
2615 if (control != null) {
2616 _json["control"] = (control).toJson();
2617 }
2618 if (customError != null) {
2619 _json["customError"] = (customError).toJson();
2620 }
2621 if (documentation != null) {
2622 _json["documentation"] = (documentation).toJson();
2623 }
2624 if (endpoints != null) {
2625 _json["endpoints"] = endpoints.map((value) => (value).toJson()).toList();
2626 }
2627 if (enums != null) {
2628 _json["enums"] = enums.map((value) => (value).toJson()).toList();
2629 }
Martin Kustermann12cdd522018-08-27 10:46:50 +02002630 if (http != null) {
2631 _json["http"] = (http).toJson();
2632 }
2633 if (id != null) {
2634 _json["id"] = id;
2635 }
2636 if (logging != null) {
2637 _json["logging"] = (logging).toJson();
2638 }
2639 if (logs != null) {
2640 _json["logs"] = logs.map((value) => (value).toJson()).toList();
2641 }
2642 if (metrics != null) {
2643 _json["metrics"] = metrics.map((value) => (value).toJson()).toList();
2644 }
2645 if (monitoredResources != null) {
2646 _json["monitoredResources"] =
2647 monitoredResources.map((value) => (value).toJson()).toList();
2648 }
2649 if (monitoring != null) {
2650 _json["monitoring"] = (monitoring).toJson();
2651 }
2652 if (name != null) {
2653 _json["name"] = name;
2654 }
2655 if (producerProjectId != null) {
2656 _json["producerProjectId"] = producerProjectId;
2657 }
2658 if (quota != null) {
2659 _json["quota"] = (quota).toJson();
2660 }
2661 if (sourceInfo != null) {
2662 _json["sourceInfo"] = (sourceInfo).toJson();
2663 }
2664 if (systemParameters != null) {
2665 _json["systemParameters"] = (systemParameters).toJson();
2666 }
2667 if (systemTypes != null) {
2668 _json["systemTypes"] =
2669 systemTypes.map((value) => (value).toJson()).toList();
2670 }
2671 if (title != null) {
2672 _json["title"] = title;
2673 }
2674 if (types != null) {
2675 _json["types"] = types.map((value) => (value).toJson()).toList();
2676 }
2677 if (usage != null) {
2678 _json["usage"] = (usage).toJson();
2679 }
2680 return _json;
2681 }
2682}
2683
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002684/// The per-product per-project service identity for a service. Use this field
2685/// to configure per-product per-project service identity. Example of a service
2686/// identity configuration. usage: service_identity: - service_account_parent:
2687/// "projects/123456789" display_name: "Cloud XXX Service Agent" description:
2688/// "Used as the identity of Cloud XXX to access resources"
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02002689class GoogleApiServiceIdentity {
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002690 /// Optional. A user-specified opaque description of the service account. Must
2691 /// be less than or equal to 256 UTF-8 bytes.
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02002692 core.String description;
2693
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002694 /// Optional. A user-specified name for the service account. Must be less than
2695 /// or equal to 100 UTF-8 bytes.
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02002696 core.String displayName;
2697
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002698 /// A service account project that hosts the service accounts. An example name
2699 /// would be: `projects/123456789`
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02002700 core.String serviceAccountParent;
2701
2702 GoogleApiServiceIdentity();
2703
2704 GoogleApiServiceIdentity.fromJson(core.Map _json) {
2705 if (_json.containsKey("description")) {
2706 description = _json["description"];
2707 }
2708 if (_json.containsKey("displayName")) {
2709 displayName = _json["displayName"];
2710 }
2711 if (_json.containsKey("serviceAccountParent")) {
2712 serviceAccountParent = _json["serviceAccountParent"];
2713 }
2714 }
2715
2716 core.Map<core.String, core.Object> toJson() {
2717 final core.Map<core.String, core.Object> _json =
2718 new core.Map<core.String, core.Object>();
2719 if (description != null) {
2720 _json["description"] = description;
2721 }
2722 if (displayName != null) {
2723 _json["displayName"] = displayName;
2724 }
2725 if (serviceAccountParent != null) {
2726 _json["serviceAccountParent"] = serviceAccountParent;
2727 }
2728 return _json;
2729 }
2730}
2731
Martin Kustermann12cdd522018-08-27 10:46:50 +02002732/// The operation metadata returned for the batchend services operation.
2733class GoogleApiServiceusageV1OperationMetadata {
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002734 /// The full name of the resources that this operation is directly associated
2735 /// with.
Martin Kustermann12cdd522018-08-27 10:46:50 +02002736 core.List<core.String> resourceNames;
2737
2738 GoogleApiServiceusageV1OperationMetadata();
2739
2740 GoogleApiServiceusageV1OperationMetadata.fromJson(core.Map _json) {
2741 if (_json.containsKey("resourceNames")) {
2742 resourceNames = (_json["resourceNames"] as core.List).cast<core.String>();
2743 }
2744 }
2745
2746 core.Map<core.String, core.Object> toJson() {
2747 final core.Map<core.String, core.Object> _json =
2748 new core.Map<core.String, core.Object>();
2749 if (resourceNames != null) {
2750 _json["resourceNames"] = resourceNames;
2751 }
2752 return _json;
2753 }
2754}
2755
2756/// A service that is available for use by the consumer.
2757class GoogleApiServiceusageV1Service {
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002758 /// The service configuration of the available service. Some fields may be
2759 /// filtered out of the configuration in responses to the `ListServices`
2760 /// method. These fields are present only in responses to the `GetService`
2761 /// method.
Martin Kustermann12cdd522018-08-27 10:46:50 +02002762 GoogleApiServiceusageV1ServiceConfig config;
2763
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002764 /// The resource name of the consumer and service. A valid name would be: -
2765 /// projects/123/services/serviceusage.googleapis.com
Martin Kustermann12cdd522018-08-27 10:46:50 +02002766 core.String name;
2767
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002768 /// The resource name of the consumer. A valid name would be: - projects/123
Martin Kustermann12cdd522018-08-27 10:46:50 +02002769 core.String parent;
2770
2771 /// Whether or not the service has been enabled for use by the consumer.
2772 /// Possible string values are:
2773 /// - "STATE_UNSPECIFIED" : The default value, which indicates that the
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002774 /// enabled state of the service is unspecified or not meaningful. Currently,
2775 /// all consumers other than projects (such as folders and organizations) are
2776 /// always in this state.
Martin Kustermann12cdd522018-08-27 10:46:50 +02002777 /// - "DISABLED" : The service cannot be used by this consumer. It has either
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002778 /// been explicitly disabled, or has never been enabled.
Martin Kustermann12cdd522018-08-27 10:46:50 +02002779 /// - "ENABLED" : The service has been explicitly enabled for use by this
2780 /// consumer.
2781 core.String state;
2782
2783 GoogleApiServiceusageV1Service();
2784
2785 GoogleApiServiceusageV1Service.fromJson(core.Map _json) {
2786 if (_json.containsKey("config")) {
2787 config =
2788 new GoogleApiServiceusageV1ServiceConfig.fromJson(_json["config"]);
2789 }
2790 if (_json.containsKey("name")) {
2791 name = _json["name"];
2792 }
2793 if (_json.containsKey("parent")) {
2794 parent = _json["parent"];
2795 }
2796 if (_json.containsKey("state")) {
2797 state = _json["state"];
2798 }
2799 }
2800
2801 core.Map<core.String, core.Object> toJson() {
2802 final core.Map<core.String, core.Object> _json =
2803 new core.Map<core.String, core.Object>();
2804 if (config != null) {
2805 _json["config"] = (config).toJson();
2806 }
2807 if (name != null) {
2808 _json["name"] = name;
2809 }
2810 if (parent != null) {
2811 _json["parent"] = parent;
2812 }
2813 if (state != null) {
2814 _json["state"] = state;
2815 }
2816 return _json;
2817 }
2818}
2819
2820/// The configuration of the service.
2821class GoogleApiServiceusageV1ServiceConfig {
2822 /// A list of API interfaces exported by this service. Contains only the
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002823 /// names, versions, and method names of the interfaces.
Martin Kustermann12cdd522018-08-27 10:46:50 +02002824 core.List<Api> apis;
2825
2826 /// Auth configuration. Contains only the OAuth rules.
2827 Authentication authentication;
2828
2829 /// Additional API documentation. Contains only the summary and the
2830 /// documentation URL.
2831 Documentation documentation;
2832
2833 /// Configuration for network endpoints. Contains only the names and aliases
2834 /// of the endpoints.
2835 core.List<Endpoint> endpoints;
2836
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002837 /// Defines the monitored resources used by this service. This is required by
2838 /// the Service.monitoring and Service.logging configurations.
2839 core.List<MonitoredResourceDescriptor> monitoredResources;
2840
2841 /// Monitoring configuration. This should not include the
2842 /// 'producer_destinations' field.
2843 Monitoring monitoring;
2844
2845 /// The DNS address at which this service is available. An example DNS address
2846 /// would be: `calendar.googleapis.com`.
Martin Kustermann12cdd522018-08-27 10:46:50 +02002847 core.String name;
2848
2849 /// Quota configuration.
2850 Quota quota;
2851
2852 /// The product title for this service.
2853 core.String title;
2854
2855 /// Configuration controlling usage of this service.
2856 Usage usage;
2857
2858 GoogleApiServiceusageV1ServiceConfig();
2859
2860 GoogleApiServiceusageV1ServiceConfig.fromJson(core.Map _json) {
2861 if (_json.containsKey("apis")) {
2862 apis = (_json["apis"] as core.List)
2863 .map<Api>((value) => new Api.fromJson(value))
2864 .toList();
2865 }
2866 if (_json.containsKey("authentication")) {
2867 authentication = new Authentication.fromJson(_json["authentication"]);
2868 }
2869 if (_json.containsKey("documentation")) {
2870 documentation = new Documentation.fromJson(_json["documentation"]);
2871 }
2872 if (_json.containsKey("endpoints")) {
2873 endpoints = (_json["endpoints"] as core.List)
2874 .map<Endpoint>((value) => new Endpoint.fromJson(value))
2875 .toList();
2876 }
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002877 if (_json.containsKey("monitoredResources")) {
2878 monitoredResources = (_json["monitoredResources"] as core.List)
2879 .map<MonitoredResourceDescriptor>(
2880 (value) => new MonitoredResourceDescriptor.fromJson(value))
2881 .toList();
2882 }
2883 if (_json.containsKey("monitoring")) {
2884 monitoring = new Monitoring.fromJson(_json["monitoring"]);
2885 }
Martin Kustermann12cdd522018-08-27 10:46:50 +02002886 if (_json.containsKey("name")) {
2887 name = _json["name"];
2888 }
2889 if (_json.containsKey("quota")) {
2890 quota = new Quota.fromJson(_json["quota"]);
2891 }
2892 if (_json.containsKey("title")) {
2893 title = _json["title"];
2894 }
2895 if (_json.containsKey("usage")) {
2896 usage = new Usage.fromJson(_json["usage"]);
2897 }
2898 }
2899
2900 core.Map<core.String, core.Object> toJson() {
2901 final core.Map<core.String, core.Object> _json =
2902 new core.Map<core.String, core.Object>();
2903 if (apis != null) {
2904 _json["apis"] = apis.map((value) => (value).toJson()).toList();
2905 }
2906 if (authentication != null) {
2907 _json["authentication"] = (authentication).toJson();
2908 }
2909 if (documentation != null) {
2910 _json["documentation"] = (documentation).toJson();
2911 }
2912 if (endpoints != null) {
2913 _json["endpoints"] = endpoints.map((value) => (value).toJson()).toList();
2914 }
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002915 if (monitoredResources != null) {
2916 _json["monitoredResources"] =
2917 monitoredResources.map((value) => (value).toJson()).toList();
2918 }
2919 if (monitoring != null) {
2920 _json["monitoring"] = (monitoring).toJson();
2921 }
Martin Kustermann12cdd522018-08-27 10:46:50 +02002922 if (name != null) {
2923 _json["name"] = name;
2924 }
2925 if (quota != null) {
2926 _json["quota"] = (quota).toJson();
2927 }
2928 if (title != null) {
2929 _json["title"] = title;
2930 }
2931 if (usage != null) {
2932 _json["usage"] = (usage).toJson();
2933 }
2934 return _json;
2935 }
2936}
2937
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02002938/// Response message for getting service identity.
2939class GoogleApiServiceusageV1beta1GetServiceIdentityResponse {
2940 /// Service identity that service producer can use to access consumer
2941 /// resources. If exists is true, it contains email and unique_id. If exists
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002942 /// is false, it contains pre-constructed email and empty unique_id.
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02002943 GoogleApiServiceusageV1beta1ServiceIdentity identity;
2944
2945 /// Service identity state.
2946 /// Possible string values are:
2947 /// - "IDENTITY_STATE_UNSPECIFIED" : Default service identity state. This
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02002948 /// value is used if the state is omitted.
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02002949 /// - "ACTIVE" : Service identity has been created and can be used.
2950 core.String state;
2951
2952 GoogleApiServiceusageV1beta1GetServiceIdentityResponse();
2953
2954 GoogleApiServiceusageV1beta1GetServiceIdentityResponse.fromJson(
2955 core.Map _json) {
2956 if (_json.containsKey("identity")) {
2957 identity = new GoogleApiServiceusageV1beta1ServiceIdentity.fromJson(
2958 _json["identity"]);
2959 }
2960 if (_json.containsKey("state")) {
2961 state = _json["state"];
2962 }
2963 }
2964
2965 core.Map<core.String, core.Object> toJson() {
2966 final core.Map<core.String, core.Object> _json =
2967 new core.Map<core.String, core.Object>();
2968 if (identity != null) {
2969 _json["identity"] = (identity).toJson();
2970 }
2971 if (state != null) {
2972 _json["state"] = state;
2973 }
2974 return _json;
2975 }
2976}
2977
2978/// Service identity for a service. This is the identity that service producer
2979/// should use to access consumer resources.
2980class GoogleApiServiceusageV1beta1ServiceIdentity {
2981 /// The email address of the service account that a service producer would use
2982 /// to access consumer resources.
2983 core.String email;
2984
2985 /// The unique and stable id of the service account.
2986 /// https://cloud.google.com/iam/reference/rest/v1/projects.serviceAccounts#ServiceAccount
2987 core.String uniqueId;
2988
2989 GoogleApiServiceusageV1beta1ServiceIdentity();
2990
2991 GoogleApiServiceusageV1beta1ServiceIdentity.fromJson(core.Map _json) {
2992 if (_json.containsKey("email")) {
2993 email = _json["email"];
2994 }
2995 if (_json.containsKey("uniqueId")) {
2996 uniqueId = _json["uniqueId"];
2997 }
2998 }
2999
3000 core.Map<core.String, core.Object> toJson() {
3001 final core.Map<core.String, core.Object> _json =
3002 new core.Map<core.String, core.Object>();
3003 if (email != null) {
3004 _json["email"] = email;
3005 }
3006 if (uniqueId != null) {
3007 _json["uniqueId"] = uniqueId;
3008 }
3009 return _json;
3010 }
3011}
3012
Martin Kustermann12cdd522018-08-27 10:46:50 +02003013/// Defines the HTTP configuration for an API service. It contains a list of
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003014/// HttpRule, each specifying the mapping of an RPC method to one or more HTTP
3015/// REST API methods.
Martin Kustermann12cdd522018-08-27 10:46:50 +02003016class Http {
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02003017 /// When set to true, URL path parameters will be fully URI-decoded except in
Martin Kustermann12cdd522018-08-27 10:46:50 +02003018 /// cases of single segment matches in reserved expansion, where "%2F" will be
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003019 /// left encoded. The default behavior is to not decode RFC 6570 reserved
3020 /// characters in multi segment matches.
Martin Kustermann12cdd522018-08-27 10:46:50 +02003021 core.bool fullyDecodeReservedExpansion;
3022
3023 /// A list of HTTP configuration rules that apply to individual API methods.
Martin Kustermann12cdd522018-08-27 10:46:50 +02003024 /// **NOTE:** All service configuration rules follow "last one wins" order.
3025 core.List<HttpRule> rules;
3026
3027 Http();
3028
3029 Http.fromJson(core.Map _json) {
3030 if (_json.containsKey("fullyDecodeReservedExpansion")) {
3031 fullyDecodeReservedExpansion = _json["fullyDecodeReservedExpansion"];
3032 }
3033 if (_json.containsKey("rules")) {
3034 rules = (_json["rules"] as core.List)
3035 .map<HttpRule>((value) => new HttpRule.fromJson(value))
3036 .toList();
3037 }
3038 }
3039
3040 core.Map<core.String, core.Object> toJson() {
3041 final core.Map<core.String, core.Object> _json =
3042 new core.Map<core.String, core.Object>();
3043 if (fullyDecodeReservedExpansion != null) {
3044 _json["fullyDecodeReservedExpansion"] = fullyDecodeReservedExpansion;
3045 }
3046 if (rules != null) {
3047 _json["rules"] = rules.map((value) => (value).toJson()).toList();
3048 }
3049 return _json;
3050 }
3051}
3052
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003053/// # gRPC Transcoding gRPC Transcoding is a feature for mapping between a gRPC
3054/// method and one or more HTTP REST endpoints. It allows developers to build a
3055/// single API service that supports both gRPC APIs and REST APIs. Many systems,
3056/// including [Google APIs](https://github.com/googleapis/googleapis), [Cloud
3057/// Endpoints](https://cloud.google.com/endpoints), [gRPC
3058/// Gateway](https://github.com/grpc-ecosystem/grpc-gateway), and
3059/// [Envoy](https://github.com/envoyproxy/envoy) proxy support this feature and
3060/// use it for large scale production services. `HttpRule` defines the schema of
3061/// the gRPC/REST mapping. The mapping specifies how different portions of the
3062/// gRPC request message are mapped to the URL path, URL query parameters, and
3063/// HTTP request body. It also controls how the gRPC response message is mapped
3064/// to the HTTP response body. `HttpRule` is typically specified as an
3065/// `google.api.http` annotation on the gRPC method. Each mapping specifies a
3066/// URL path template and an HTTP method. The path template may refer to one or
3067/// more fields in the gRPC request message, as long as each field is a
3068/// non-repeated field with a primitive (non-message) type. The path template
3069/// controls how fields of the request message are mapped to the URL path.
3070/// Example: service Messaging { rpc GetMessage(GetMessageRequest) returns
3071/// (Message) { option (google.api.http) = { get: "/v1/{name=messages / * }" };
3072/// } } message GetMessageRequest { string name = 1; // Mapped to URL path. }
3073/// message Message { string text = 1; // The resource content. } This enables
3074/// an HTTP REST to gRPC mapping as below: HTTP | gRPC -----|----- `GET
3075/// /v1/messages/123456` | `GetMessage(name: "messages/123456")` Any fields in
3076/// the request message which are not bound by the path template automatically
3077/// become HTTP query parameters if there is no HTTP request body. For example:
3078/// service Messaging { rpc GetMessage(GetMessageRequest) returns (Message) {
3079/// option (google.api.http) = { get:"/v1/messages/{message_id}" }; } } message
3080/// GetMessageRequest { message SubMessage { string subfield = 1; } string
3081/// message_id = 1; // Mapped to URL path. int64 revision = 2; // Mapped to URL
3082/// query parameter `revision`. SubMessage sub = 3; // Mapped to URL query
3083/// parameter `sub.subfield`. } This enables a HTTP JSON to RPC mapping as
3084/// below: HTTP | gRPC -----|----- `GET
3085/// /v1/messages/123456?revision=2&sub.subfield=foo` | `GetMessage(message_id:
3086/// "123456" revision: 2 sub: SubMessage(subfield: "foo"))` Note that fields
3087/// which are mapped to URL query parameters must have a primitive type or a
3088/// repeated primitive type or a non-repeated message type. In the case of a
3089/// repeated type, the parameter can be repeated in the URL as
3090/// `...?param=A&param=B`. In the case of a message type, each field of the
Jonas Finnemann Jensendda12e42019-02-09 12:37:20 +01003091/// message is mapped to a separate parameter, such as
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003092/// `...?foo.a=A&foo.b=B&foo.c=C`. For HTTP methods that allow a request body,
3093/// the `body` field specifies the mapping. Consider a REST update method on the
3094/// message resource collection: service Messaging { rpc
3095/// UpdateMessage(UpdateMessageRequest) returns (Message) { option
3096/// (google.api.http) = { patch: "/v1/messages/{message_id}" body: "message" };
3097/// } } message UpdateMessageRequest { string message_id = 1; // mapped to the
3098/// URL Message message = 2; // mapped to the body } The following HTTP JSON to
3099/// RPC mapping is enabled, where the representation of the JSON in the request
3100/// body is determined by protos JSON encoding: HTTP | gRPC -----|----- `PATCH
3101/// /v1/messages/123456 { "text": "Hi!" }` | `UpdateMessage(message_id: "123456"
3102/// message { text: "Hi!" })` The special name `*` can be used in the body
3103/// mapping to define that every field not bound by the path template should be
3104/// mapped to the request body. This enables the following alternative
3105/// definition of the update method: service Messaging { rpc
3106/// UpdateMessage(Message) returns (Message) { option (google.api.http) = {
3107/// patch: "/v1/messages/{message_id}" body: "*" }; } } message Message { string
3108/// message_id = 1; string text = 2; } The following HTTP JSON to RPC mapping is
3109/// enabled: HTTP | gRPC -----|----- `PATCH /v1/messages/123456 { "text": "Hi!"
3110/// }` | `UpdateMessage(message_id: "123456" text: "Hi!")` Note that when using
3111/// `*` in the body mapping, it is not possible to have HTTP parameters, as all
3112/// fields not bound by the path end in the body. This makes this option more
3113/// rarely used in practice when defining REST APIs. The common usage of `*` is
3114/// in custom methods which don't use the URL at all for transferring data. It
3115/// is possible to define multiple HTTP methods for one RPC by using the
3116/// `additional_bindings` option. Example: service Messaging { rpc
3117/// GetMessage(GetMessageRequest) returns (Message) { option (google.api.http) =
3118/// { get: "/v1/messages/{message_id}" additional_bindings { get:
3119/// "/v1/users/{user_id}/messages/{message_id}" } }; } } message
3120/// GetMessageRequest { string message_id = 1; string user_id = 2; } This
3121/// enables the following two alternative HTTP JSON to RPC mappings: HTTP | gRPC
3122/// -----|----- `GET /v1/messages/123456` | `GetMessage(message_id: "123456")`
Martin Kustermann12cdd522018-08-27 10:46:50 +02003123/// `GET /v1/users/me/messages/123456` | `GetMessage(user_id: "me" message_id:
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003124/// "123456")` ## Rules for HTTP mapping 1. Leaf request fields (recursive
3125/// expansion nested messages in the request message) are classified into three
3126/// categories: - Fields referred by the path template. They are passed via the
3127/// URL path. - Fields referred by the HttpRule.body. They are passed via the
3128/// HTTP request body. - All other fields are passed via the URL query
3129/// parameters, and the parameter name is the field path in the request message.
3130/// A repeated field can be represented as multiple query parameters under the
3131/// same name. 2. If HttpRule.body is "*", there is no URL query parameter, all
3132/// fields are passed via URL path and HTTP request body. 3. If HttpRule.body is
3133/// omitted, there is no HTTP request body, all fields are passed via URL path
3134/// and URL query parameters. ### Path template syntax Template = "/" Segments [
3135/// Verb ] ; Segments = Segment { "/" Segment } ; Segment = "*" | "**" | LITERAL
3136/// | Variable ; Variable = "{" FieldPath [ "=" Segments ] "}" ; FieldPath =
3137/// IDENT { "." IDENT } ; Verb = ":" LITERAL ; The syntax `*` matches a single
3138/// URL path segment. The syntax `**` matches zero or more URL path segments,
3139/// which must be the last part of the URL path except the `Verb`. The syntax
3140/// `Variable` matches part of the URL path as specified by its template. A
3141/// variable template must not contain other variables. If a variable matches a
3142/// single path segment, its template may be omitted, e.g. `{var}` is equivalent
3143/// to `{var=*}`. The syntax `LITERAL` matches literal text in the URL path. If
3144/// the `LITERAL` contains any reserved character, such characters should be
3145/// percent-encoded before the matching. If a variable contains exactly one path
3146/// segment, such as `"{var}"` or `"{var=*}"`, when such a variable is expanded
3147/// into a URL path on the client side, all characters except `[-_.~0-9a-zA-Z]`
3148/// are percent-encoded. The server side does the reverse decoding. Such
3149/// variables show up in the [Discovery
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02003150/// Document](https://developers.google.com/discovery/v1/reference/apis) as
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003151/// `{var}`. If a variable contains multiple path segments, such as `"{var=foo /
3152/// * }"` or `"{var=**}"`, when such a variable is expanded into a URL path on
3153/// the client side, all characters except `[-_.~/0-9a-zA-Z]` are
3154/// percent-encoded. The server side does the reverse decoding, except "%2F" and
3155/// "%2f" are left unchanged. Such variables show up in the [Discovery
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02003156/// Document](https://developers.google.com/discovery/v1/reference/apis) as
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003157/// `{+var}`. ## Using gRPC API Service Configuration gRPC API Service
3158/// Configuration (service config) is a configuration language for configuring a
3159/// gRPC service to become a user-facing product. The service config is simply
3160/// the YAML representation of the `google.api.Service` proto message. As an
3161/// alternative to annotating your proto file, you can configure gRPC
Jonas Finnemann Jensendda12e42019-02-09 12:37:20 +01003162/// transcoding in your service config YAML files. You do this by specifying a
3163/// `HttpRule` that maps the gRPC method to a REST endpoint, achieving the same
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003164/// effect as the proto annotation. This can be particularly useful if you have
3165/// a proto that is reused in multiple services. Note that any transcoding
Jonas Finnemann Jensendda12e42019-02-09 12:37:20 +01003166/// specified in the service config will override any matching transcoding
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003167/// configuration in the proto. Example: http: rules: # Selects a gRPC method
3168/// and applies HttpRule to it. - selector: example.v1.Messaging.GetMessage get:
3169/// /v1/messages/{message_id}/{sub.subfield} ## Special notes When gRPC
3170/// Transcoding is used to map a gRPC to JSON REST endpoints, the proto to JSON
3171/// conversion must follow the [proto3
Jonas Finnemann Jensendda12e42019-02-09 12:37:20 +01003172/// specification](https://developers.google.com/protocol-buffers/docs/proto3#json).
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003173/// While the single segment variable follows the semantics of [RFC
3174/// 6570](https://tools.ietf.org/html/rfc6570) Section 3.2.2 Simple String
Jonas Finnemann Jensendda12e42019-02-09 12:37:20 +01003175/// Expansion, the multi segment variable **does not** follow RFC 6570 Section
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003176/// 3.2.3 Reserved Expansion. The reason is that the Reserved Expansion does not
3177/// expand special characters like `?` and `#`, which would lead to invalid
3178/// URLs. As the result, gRPC Transcoding uses a custom encoding for multi
3179/// segment variables. The path variables **must not** refer to any repeated or
3180/// mapped field, because client libraries are not capable of handling such
3181/// variable expansion. The path variables **must not** capture the leading "/"
3182/// character. The reason is that the most common use case "{var}" does not
3183/// capture the leading "/" character. For consistency, all path variables must
3184/// share the same behavior. Repeated message fields must not be mapped to URL
3185/// query parameters, because no client library can support such complicated
3186/// mapping. If an API needs to use a JSON array for request or response body,
3187/// it can map the request or response body to a repeated field. However, some
3188/// gRPC Transcoding implementations may not support this feature.
Martin Kustermann12cdd522018-08-27 10:46:50 +02003189class HttpRule {
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003190 /// Additional HTTP bindings for the selector. Nested bindings must not
3191 /// contain an `additional_bindings` field themselves (that is, the nesting
3192 /// may only be one level deep).
Martin Kustermann12cdd522018-08-27 10:46:50 +02003193 core.List<HttpRule> additionalBindings;
3194
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02003195 /// When this flag is set to true, HTTP requests will be allowed to invoke a
3196 /// half-duplex streaming method.
3197 core.bool allowHalfDuplex;
3198
Jonas Finnemann Jensendda12e42019-02-09 12:37:20 +01003199 /// The name of the request field whose value is mapped to the HTTP request
3200 /// body, or `*` for mapping all request fields not captured by the path
3201 /// pattern to the HTTP body, or omitted for not having any HTTP request body.
Jonas Finnemann Jensendda12e42019-02-09 12:37:20 +01003202 /// NOTE: the referred field must be present at the top-level of the request
3203 /// message type.
Martin Kustermann12cdd522018-08-27 10:46:50 +02003204 core.String body;
3205
3206 /// The custom pattern is used for specifying an HTTP method that is not
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003207 /// included in the `pattern` field, such as HEAD, or "*" to leave the HTTP
3208 /// method unspecified for this rule. The wild-card rule is useful for
3209 /// services that provide content to Web (HTML) clients.
Martin Kustermann12cdd522018-08-27 10:46:50 +02003210 CustomHttpPattern custom;
3211
Jonas Finnemann Jensendda12e42019-02-09 12:37:20 +01003212 /// Maps to HTTP DELETE. Used for deleting a resource.
Martin Kustermann12cdd522018-08-27 10:46:50 +02003213 core.String delete;
3214
Jonas Finnemann Jensendda12e42019-02-09 12:37:20 +01003215 /// Maps to HTTP GET. Used for listing and getting information about
3216 /// resources.
Martin Kustermann12cdd522018-08-27 10:46:50 +02003217 core.String get;
3218
Jonas Finnemann Jensendda12e42019-02-09 12:37:20 +01003219 /// Maps to HTTP PATCH. Used for updating a resource.
Martin Kustermann12cdd522018-08-27 10:46:50 +02003220 core.String patch;
3221
Jonas Finnemann Jensendda12e42019-02-09 12:37:20 +01003222 /// Maps to HTTP POST. Used for creating a resource or performing an action.
Martin Kustermann12cdd522018-08-27 10:46:50 +02003223 core.String post;
3224
Jonas Finnemann Jensendda12e42019-02-09 12:37:20 +01003225 /// Maps to HTTP PUT. Used for replacing a resource.
Martin Kustermann12cdd522018-08-27 10:46:50 +02003226 core.String put;
3227
3228 /// Optional. The name of the response field whose value is mapped to the HTTP
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003229 /// response body. When omitted, the entire response message will be used as
3230 /// the HTTP response body. NOTE: The referred field must be present at the
3231 /// top-level of the response message type.
Martin Kustermann12cdd522018-08-27 10:46:50 +02003232 core.String responseBody;
3233
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003234 /// Selects a method to which this rule applies. Refer to selector for syntax
3235 /// details.
Martin Kustermann12cdd522018-08-27 10:46:50 +02003236 core.String selector;
3237
3238 HttpRule();
3239
3240 HttpRule.fromJson(core.Map _json) {
3241 if (_json.containsKey("additionalBindings")) {
3242 additionalBindings = (_json["additionalBindings"] as core.List)
3243 .map<HttpRule>((value) => new HttpRule.fromJson(value))
3244 .toList();
3245 }
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02003246 if (_json.containsKey("allowHalfDuplex")) {
3247 allowHalfDuplex = _json["allowHalfDuplex"];
3248 }
Martin Kustermann12cdd522018-08-27 10:46:50 +02003249 if (_json.containsKey("body")) {
3250 body = _json["body"];
3251 }
3252 if (_json.containsKey("custom")) {
3253 custom = new CustomHttpPattern.fromJson(_json["custom"]);
3254 }
3255 if (_json.containsKey("delete")) {
3256 delete = _json["delete"];
3257 }
3258 if (_json.containsKey("get")) {
3259 get = _json["get"];
3260 }
Martin Kustermann12cdd522018-08-27 10:46:50 +02003261 if (_json.containsKey("patch")) {
3262 patch = _json["patch"];
3263 }
3264 if (_json.containsKey("post")) {
3265 post = _json["post"];
3266 }
3267 if (_json.containsKey("put")) {
3268 put = _json["put"];
3269 }
3270 if (_json.containsKey("responseBody")) {
3271 responseBody = _json["responseBody"];
3272 }
Martin Kustermann12cdd522018-08-27 10:46:50 +02003273 if (_json.containsKey("selector")) {
3274 selector = _json["selector"];
3275 }
3276 }
3277
3278 core.Map<core.String, core.Object> toJson() {
3279 final core.Map<core.String, core.Object> _json =
3280 new core.Map<core.String, core.Object>();
3281 if (additionalBindings != null) {
3282 _json["additionalBindings"] =
3283 additionalBindings.map((value) => (value).toJson()).toList();
3284 }
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02003285 if (allowHalfDuplex != null) {
3286 _json["allowHalfDuplex"] = allowHalfDuplex;
3287 }
Martin Kustermann12cdd522018-08-27 10:46:50 +02003288 if (body != null) {
3289 _json["body"] = body;
3290 }
3291 if (custom != null) {
3292 _json["custom"] = (custom).toJson();
3293 }
3294 if (delete != null) {
3295 _json["delete"] = delete;
3296 }
3297 if (get != null) {
3298 _json["get"] = get;
3299 }
Martin Kustermann12cdd522018-08-27 10:46:50 +02003300 if (patch != null) {
3301 _json["patch"] = patch;
3302 }
3303 if (post != null) {
3304 _json["post"] = post;
3305 }
3306 if (put != null) {
3307 _json["put"] = put;
3308 }
3309 if (responseBody != null) {
3310 _json["responseBody"] = responseBody;
3311 }
Martin Kustermann12cdd522018-08-27 10:46:50 +02003312 if (selector != null) {
3313 _json["selector"] = selector;
3314 }
3315 return _json;
3316 }
3317}
3318
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02003319/// Response message for ImportAdminOverrides
3320class ImportAdminOverridesResponse {
3321 /// The overrides that were created from the imported data.
3322 core.List<QuotaOverride> overrides;
3323
3324 ImportAdminOverridesResponse();
3325
3326 ImportAdminOverridesResponse.fromJson(core.Map _json) {
3327 if (_json.containsKey("overrides")) {
3328 overrides = (_json["overrides"] as core.List)
3329 .map<QuotaOverride>((value) => new QuotaOverride.fromJson(value))
3330 .toList();
3331 }
3332 }
3333
3334 core.Map<core.String, core.Object> toJson() {
3335 final core.Map<core.String, core.Object> _json =
3336 new core.Map<core.String, core.Object>();
3337 if (overrides != null) {
3338 _json["overrides"] = overrides.map((value) => (value).toJson()).toList();
3339 }
3340 return _json;
3341 }
3342}
3343
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003344/// Response message for ImportAdminQuotaPolicies
3345class ImportAdminQuotaPoliciesResponse {
3346 /// The policies that were created from the imported data.
3347 core.List<AdminQuotaPolicy> policies;
3348
3349 ImportAdminQuotaPoliciesResponse();
3350
3351 ImportAdminQuotaPoliciesResponse.fromJson(core.Map _json) {
3352 if (_json.containsKey("policies")) {
3353 policies = (_json["policies"] as core.List)
3354 .map<AdminQuotaPolicy>(
3355 (value) => new AdminQuotaPolicy.fromJson(value))
3356 .toList();
3357 }
3358 }
3359
3360 core.Map<core.String, core.Object> toJson() {
3361 final core.Map<core.String, core.Object> _json =
3362 new core.Map<core.String, core.Object>();
3363 if (policies != null) {
3364 _json["policies"] = policies.map((value) => (value).toJson()).toList();
3365 }
3366 return _json;
3367 }
3368}
3369
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02003370/// Response message for ImportConsumerOverrides
3371class ImportConsumerOverridesResponse {
3372 /// The overrides that were created from the imported data.
3373 core.List<QuotaOverride> overrides;
3374
3375 ImportConsumerOverridesResponse();
3376
3377 ImportConsumerOverridesResponse.fromJson(core.Map _json) {
3378 if (_json.containsKey("overrides")) {
3379 overrides = (_json["overrides"] as core.List)
3380 .map<QuotaOverride>((value) => new QuotaOverride.fromJson(value))
3381 .toList();
3382 }
3383 }
3384
3385 core.Map<core.String, core.Object> toJson() {
3386 final core.Map<core.String, core.Object> _json =
3387 new core.Map<core.String, core.Object>();
3388 if (overrides != null) {
3389 _json["overrides"] = overrides.map((value) => (value).toJson()).toList();
3390 }
3391 return _json;
3392 }
3393}
3394
3395/// Specifies a location to extract JWT from an API request.
3396class JwtLocation {
3397 /// Specifies HTTP header name to extract JWT token.
3398 core.String header;
3399
3400 /// Specifies URL query parameter name to extract JWT token.
3401 core.String query;
3402
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003403 /// The value prefix. The value format is "value_prefix{token}" Only applies
3404 /// to "in" header type. Must be empty for "in" query type. If not empty, the
3405 /// header value has to match (case sensitive) this prefix. If not matched,
3406 /// JWT will not be extracted. If matched, JWT will be extracted after the
3407 /// prefix is removed. For example, for "Authorization: Bearer {JWT}",
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02003408 /// value_prefix="Bearer " with a space at the end.
3409 core.String valuePrefix;
3410
3411 JwtLocation();
3412
3413 JwtLocation.fromJson(core.Map _json) {
3414 if (_json.containsKey("header")) {
3415 header = _json["header"];
3416 }
3417 if (_json.containsKey("query")) {
3418 query = _json["query"];
3419 }
3420 if (_json.containsKey("valuePrefix")) {
3421 valuePrefix = _json["valuePrefix"];
3422 }
3423 }
3424
3425 core.Map<core.String, core.Object> toJson() {
3426 final core.Map<core.String, core.Object> _json =
3427 new core.Map<core.String, core.Object>();
3428 if (header != null) {
3429 _json["header"] = header;
3430 }
3431 if (query != null) {
3432 _json["query"] = query;
3433 }
3434 if (valuePrefix != null) {
3435 _json["valuePrefix"] = valuePrefix;
3436 }
3437 return _json;
3438 }
3439}
3440
Martin Kustermann12cdd522018-08-27 10:46:50 +02003441/// A description of a label.
3442class LabelDescriptor {
3443 /// A human-readable description for the label.
3444 core.String description;
3445
3446 /// The label key.
3447 core.String key;
3448
3449 /// The type of data that can be assigned to the label.
3450 /// Possible string values are:
3451 /// - "STRING" : A variable-length string. This is the default.
3452 /// - "BOOL" : Boolean; true or false.
3453 /// - "INT64" : A 64-bit signed integer.
3454 core.String valueType;
3455
3456 LabelDescriptor();
3457
3458 LabelDescriptor.fromJson(core.Map _json) {
3459 if (_json.containsKey("description")) {
3460 description = _json["description"];
3461 }
3462 if (_json.containsKey("key")) {
3463 key = _json["key"];
3464 }
3465 if (_json.containsKey("valueType")) {
3466 valueType = _json["valueType"];
3467 }
3468 }
3469
3470 core.Map<core.String, core.Object> toJson() {
3471 final core.Map<core.String, core.Object> _json =
3472 new core.Map<core.String, core.Object>();
3473 if (description != null) {
3474 _json["description"] = description;
3475 }
3476 if (key != null) {
3477 _json["key"] = key;
3478 }
3479 if (valueType != null) {
3480 _json["valueType"] = valueType;
3481 }
3482 return _json;
3483 }
3484}
3485
3486/// The response message for Operations.ListOperations.
3487class ListOperationsResponse {
3488 /// The standard List next-page token.
3489 core.String nextPageToken;
3490
3491 /// A list of operations that matches the specified filter in the request.
3492 core.List<Operation> operations;
3493
3494 ListOperationsResponse();
3495
3496 ListOperationsResponse.fromJson(core.Map _json) {
3497 if (_json.containsKey("nextPageToken")) {
3498 nextPageToken = _json["nextPageToken"];
3499 }
3500 if (_json.containsKey("operations")) {
3501 operations = (_json["operations"] as core.List)
3502 .map<Operation>((value) => new Operation.fromJson(value))
3503 .toList();
3504 }
3505 }
3506
3507 core.Map<core.String, core.Object> toJson() {
3508 final core.Map<core.String, core.Object> _json =
3509 new core.Map<core.String, core.Object>();
3510 if (nextPageToken != null) {
3511 _json["nextPageToken"] = nextPageToken;
3512 }
3513 if (operations != null) {
3514 _json["operations"] =
3515 operations.map((value) => (value).toJson()).toList();
3516 }
3517 return _json;
3518 }
3519}
3520
3521/// Response message for the `ListServices` method.
3522class ListServicesResponse {
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003523 /// Token that can be passed to `ListServices` to resume a paginated query.
Martin Kustermann12cdd522018-08-27 10:46:50 +02003524 core.String nextPageToken;
3525
3526 /// The available services for the requested project.
3527 core.List<GoogleApiServiceusageV1Service> services;
3528
3529 ListServicesResponse();
3530
3531 ListServicesResponse.fromJson(core.Map _json) {
3532 if (_json.containsKey("nextPageToken")) {
3533 nextPageToken = _json["nextPageToken"];
3534 }
3535 if (_json.containsKey("services")) {
3536 services = (_json["services"] as core.List)
3537 .map<GoogleApiServiceusageV1Service>(
3538 (value) => new GoogleApiServiceusageV1Service.fromJson(value))
3539 .toList();
3540 }
3541 }
3542
3543 core.Map<core.String, core.Object> toJson() {
3544 final core.Map<core.String, core.Object> _json =
3545 new core.Map<core.String, core.Object>();
3546 if (nextPageToken != null) {
3547 _json["nextPageToken"] = nextPageToken;
3548 }
3549 if (services != null) {
3550 _json["services"] = services.map((value) => (value).toJson()).toList();
3551 }
3552 return _json;
3553 }
3554}
3555
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003556/// A description of a log type. Example in YAML format: - name:
3557/// library.googleapis.com/activity_history description: The history of
3558/// borrowing and returning library items. display_name: Activity labels: - key:
3559/// /customer_id description: Identifier of a library customer
Martin Kustermann12cdd522018-08-27 10:46:50 +02003560class LogDescriptor {
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003561 /// A human-readable description of this log. This information appears in the
3562 /// documentation and can contain details.
Martin Kustermann12cdd522018-08-27 10:46:50 +02003563 core.String description;
3564
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003565 /// The human-readable name for this log. This information appears on the user
3566 /// interface and should be concise.
Martin Kustermann12cdd522018-08-27 10:46:50 +02003567 core.String displayName;
3568
3569 /// The set of labels that are available to describe a specific log entry.
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003570 /// Runtime requests that contain labels not specified here are considered
3571 /// invalid.
Martin Kustermann12cdd522018-08-27 10:46:50 +02003572 core.List<LabelDescriptor> labels;
3573
3574 /// The name of the log. It must be less than 512 characters long and can
3575 /// include the following characters: upper- and lower-case alphanumeric
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003576 /// characters [A-Za-z0-9], and punctuation characters including slash,
3577 /// underscore, hyphen, period [/_-.].
Martin Kustermann12cdd522018-08-27 10:46:50 +02003578 core.String name;
3579
3580 LogDescriptor();
3581
3582 LogDescriptor.fromJson(core.Map _json) {
3583 if (_json.containsKey("description")) {
3584 description = _json["description"];
3585 }
3586 if (_json.containsKey("displayName")) {
3587 displayName = _json["displayName"];
3588 }
3589 if (_json.containsKey("labels")) {
3590 labels = (_json["labels"] as core.List)
3591 .map<LabelDescriptor>((value) => new LabelDescriptor.fromJson(value))
3592 .toList();
3593 }
3594 if (_json.containsKey("name")) {
3595 name = _json["name"];
3596 }
3597 }
3598
3599 core.Map<core.String, core.Object> toJson() {
3600 final core.Map<core.String, core.Object> _json =
3601 new core.Map<core.String, core.Object>();
3602 if (description != null) {
3603 _json["description"] = description;
3604 }
3605 if (displayName != null) {
3606 _json["displayName"] = displayName;
3607 }
3608 if (labels != null) {
3609 _json["labels"] = labels.map((value) => (value).toJson()).toList();
3610 }
3611 if (name != null) {
3612 _json["name"] = name;
3613 }
3614 return _json;
3615 }
3616}
3617
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003618/// Logging configuration of the service. The following example shows how to
3619/// configure logs to be sent to the producer and consumer projects. In the
3620/// example, the `activity_history` log is sent to both the producer and
3621/// consumer projects, whereas the `purchase_history` log is only sent to the
3622/// producer project. monitored_resources: - type: library.googleapis.com/branch
3623/// labels: - key: /city description: The city where the library branch is
3624/// located in. - key: /name description: The name of the branch. logs: - name:
3625/// activity_history labels: - key: /customer_id - name: purchase_history
3626/// logging: producer_destinations: - monitored_resource:
3627/// library.googleapis.com/branch logs: - activity_history - purchase_history
3628/// consumer_destinations: - monitored_resource: library.googleapis.com/branch
3629/// logs: - activity_history
Martin Kustermann12cdd522018-08-27 10:46:50 +02003630class Logging {
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003631 /// Logging configurations for sending logs to the consumer project. There can
3632 /// be multiple consumer destinations, each one must have a different
3633 /// monitored resource type. A log can be used in at most one consumer
3634 /// destination.
Martin Kustermann12cdd522018-08-27 10:46:50 +02003635 core.List<LoggingDestination> consumerDestinations;
3636
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003637 /// Logging configurations for sending logs to the producer project. There can
3638 /// be multiple producer destinations, each one must have a different
3639 /// monitored resource type. A log can be used in at most one producer
3640 /// destination.
Martin Kustermann12cdd522018-08-27 10:46:50 +02003641 core.List<LoggingDestination> producerDestinations;
3642
3643 Logging();
3644
3645 Logging.fromJson(core.Map _json) {
3646 if (_json.containsKey("consumerDestinations")) {
3647 consumerDestinations = (_json["consumerDestinations"] as core.List)
3648 .map<LoggingDestination>(
3649 (value) => new LoggingDestination.fromJson(value))
3650 .toList();
3651 }
3652 if (_json.containsKey("producerDestinations")) {
3653 producerDestinations = (_json["producerDestinations"] as core.List)
3654 .map<LoggingDestination>(
3655 (value) => new LoggingDestination.fromJson(value))
3656 .toList();
3657 }
3658 }
3659
3660 core.Map<core.String, core.Object> toJson() {
3661 final core.Map<core.String, core.Object> _json =
3662 new core.Map<core.String, core.Object>();
3663 if (consumerDestinations != null) {
3664 _json["consumerDestinations"] =
3665 consumerDestinations.map((value) => (value).toJson()).toList();
3666 }
3667 if (producerDestinations != null) {
3668 _json["producerDestinations"] =
3669 producerDestinations.map((value) => (value).toJson()).toList();
3670 }
3671 return _json;
3672 }
3673}
3674
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003675/// Configuration of a specific logging destination (the producer project or the
3676/// consumer project).
Martin Kustermann12cdd522018-08-27 10:46:50 +02003677class LoggingDestination {
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003678 /// Names of the logs to be sent to this destination. Each name must be
3679 /// defined in the Service.logs section. If the log name is not a domain
3680 /// scoped name, it will be automatically prefixed with the service name
3681 /// followed by "/".
Martin Kustermann12cdd522018-08-27 10:46:50 +02003682 core.List<core.String> logs;
3683
3684 /// The monitored resource type. The type must be defined in the
3685 /// Service.monitored_resources section.
3686 core.String monitoredResource;
3687
3688 LoggingDestination();
3689
3690 LoggingDestination.fromJson(core.Map _json) {
3691 if (_json.containsKey("logs")) {
3692 logs = (_json["logs"] as core.List).cast<core.String>();
3693 }
3694 if (_json.containsKey("monitoredResource")) {
3695 monitoredResource = _json["monitoredResource"];
3696 }
3697 }
3698
3699 core.Map<core.String, core.Object> toJson() {
3700 final core.Map<core.String, core.Object> _json =
3701 new core.Map<core.String, core.Object>();
3702 if (logs != null) {
3703 _json["logs"] = logs;
3704 }
3705 if (monitoredResource != null) {
3706 _json["monitoredResource"] = monitoredResource;
3707 }
3708 return _json;
3709 }
3710}
3711
Martin Kustermann12cdd522018-08-27 10:46:50 +02003712/// Method represents a method of an API interface.
3713class Method {
3714 /// The simple name of this method.
3715 core.String name;
3716
3717 /// Any metadata attached to the method.
3718 core.List<Option> options;
3719
3720 /// If true, the request is streamed.
3721 core.bool requestStreaming;
3722
3723 /// A URL of the input message type.
3724 core.String requestTypeUrl;
3725
3726 /// If true, the response is streamed.
3727 core.bool responseStreaming;
3728
3729 /// The URL of the output message type.
3730 core.String responseTypeUrl;
3731
3732 /// The source syntax of this method.
3733 /// Possible string values are:
3734 /// - "SYNTAX_PROTO2" : Syntax `proto2`.
3735 /// - "SYNTAX_PROTO3" : Syntax `proto3`.
3736 core.String syntax;
3737
3738 Method();
3739
3740 Method.fromJson(core.Map _json) {
3741 if (_json.containsKey("name")) {
3742 name = _json["name"];
3743 }
3744 if (_json.containsKey("options")) {
3745 options = (_json["options"] as core.List)
3746 .map<Option>((value) => new Option.fromJson(value))
3747 .toList();
3748 }
3749 if (_json.containsKey("requestStreaming")) {
3750 requestStreaming = _json["requestStreaming"];
3751 }
3752 if (_json.containsKey("requestTypeUrl")) {
3753 requestTypeUrl = _json["requestTypeUrl"];
3754 }
3755 if (_json.containsKey("responseStreaming")) {
3756 responseStreaming = _json["responseStreaming"];
3757 }
3758 if (_json.containsKey("responseTypeUrl")) {
3759 responseTypeUrl = _json["responseTypeUrl"];
3760 }
3761 if (_json.containsKey("syntax")) {
3762 syntax = _json["syntax"];
3763 }
3764 }
3765
3766 core.Map<core.String, core.Object> toJson() {
3767 final core.Map<core.String, core.Object> _json =
3768 new core.Map<core.String, core.Object>();
3769 if (name != null) {
3770 _json["name"] = name;
3771 }
3772 if (options != null) {
3773 _json["options"] = options.map((value) => (value).toJson()).toList();
3774 }
3775 if (requestStreaming != null) {
3776 _json["requestStreaming"] = requestStreaming;
3777 }
3778 if (requestTypeUrl != null) {
3779 _json["requestTypeUrl"] = requestTypeUrl;
3780 }
3781 if (responseStreaming != null) {
3782 _json["responseStreaming"] = responseStreaming;
3783 }
3784 if (responseTypeUrl != null) {
3785 _json["responseTypeUrl"] = responseTypeUrl;
3786 }
3787 if (syntax != null) {
3788 _json["syntax"] = syntax;
3789 }
3790 return _json;
3791 }
3792}
3793
3794/// Defines a metric type and its schema. Once a metric descriptor is created,
3795/// deleting or altering it stops data collection and makes the metric type's
3796/// existing data unusable.
3797class MetricDescriptor {
3798 /// A detailed description of the metric, which can be used in documentation.
3799 core.String description;
3800
3801 /// A concise name for the metric, which can be displayed in user interfaces.
3802 /// Use sentence case without an ending period, for example "Request count".
3803 /// This field is optional but it is recommended to be set for any metrics
3804 /// associated with user-visible concepts, such as Quota.
3805 core.String displayName;
3806
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003807 /// The set of labels that can be used to describe a specific instance of this
3808 /// metric type. For example, the
3809 /// `appengine.googleapis.com/http/server/response_latencies` metric type has
3810 /// a label for the HTTP response code, `response_code`, so you can look at
3811 /// latencies for successful responses or just for responses that failed.
Martin Kustermann12cdd522018-08-27 10:46:50 +02003812 core.List<LabelDescriptor> labels;
3813
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02003814 /// Optional. The launch stage of the metric definition.
3815 /// Possible string values are:
3816 /// - "LAUNCH_STAGE_UNSPECIFIED" : Do not use this default value.
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02003817 /// - "UNIMPLEMENTED" : The feature is not yet implemented. Users can not use
3818 /// it.
3819 /// - "PRELAUNCH" : Prelaunch features are hidden from users and are only
3820 /// visible internally.
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02003821 /// - "EARLY_ACCESS" : Early Access features are limited to a closed group of
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003822 /// testers. To use these features, you must sign up in advance and sign a
3823 /// Trusted Tester agreement (which includes confidentiality provisions).
3824 /// These features may be unstable, changed in backward-incompatible ways, and
3825 /// are not guaranteed to be released.
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02003826 /// - "ALPHA" : Alpha is a limited availability test for releases before they
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003827 /// are cleared for widespread use. By Alpha, all significant design issues
3828 /// are resolved and we are in the process of verifying functionality. Alpha
3829 /// customers need to apply for access, agree to applicable terms, and have
3830 /// their projects whitelisted. Alpha releases don’t have to be feature
3831 /// complete, no SLAs are provided, and there are no technical support
3832 /// obligations, but they will be far enough along that customers can actually
3833 /// use them in test environments or for limited-use tests -- just like they
3834 /// would in normal production cases.
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02003835 /// - "BETA" : Beta is the point at which we are ready to open a release for
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003836 /// any customer to use. There are no SLA or technical support obligations in
3837 /// a Beta release. Products will be complete from a feature perspective, but
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02003838 /// may have some open outstanding issues. Beta releases are suitable for
3839 /// limited production use cases.
3840 /// - "GA" : GA features are open to all developers and are considered stable
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003841 /// and fully qualified for production use.
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02003842 /// - "DEPRECATED" : Deprecated features are scheduled to be shut down and
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003843 /// removed. For more information, see the “Deprecation Policy” section of our
3844 /// [Terms of Service](https://cloud.google.com/terms/) and the [Google Cloud
3845 /// Platform Subject to the Deprecation
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02003846 /// Policy](https://cloud.google.com/terms/deprecation) documentation.
3847 core.String launchStage;
3848
Martin Kustermann12cdd522018-08-27 10:46:50 +02003849 /// Optional. Metadata which can be used to guide usage of the metric.
3850 MetricDescriptorMetadata metadata;
3851
3852 /// Whether the metric records instantaneous values, changes to a value, etc.
3853 /// Some combinations of `metric_kind` and `value_type` might not be
3854 /// supported.
3855 /// Possible string values are:
3856 /// - "METRIC_KIND_UNSPECIFIED" : Do not use this default value.
3857 /// - "GAUGE" : An instantaneous measurement of a value.
3858 /// - "DELTA" : The change in a value during a time interval.
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003859 /// - "CUMULATIVE" : A value accumulated over a time interval. Cumulative
3860 /// measurements in a time series should have the same start time and
3861 /// increasing end times, until an event resets the cumulative value to zero
3862 /// and sets a new start time for the following points.
Martin Kustermann12cdd522018-08-27 10:46:50 +02003863 core.String metricKind;
3864
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003865 /// Read-only. If present, then a time series, which is identified partially
3866 /// by a metric type and a MonitoredResourceDescriptor, that is associated
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02003867 /// with this metric type can only be associated with one of the monitored
3868 /// resource types listed here.
3869 core.List<core.String> monitoredResourceTypes;
3870
Martin Kustermann12cdd522018-08-27 10:46:50 +02003871 /// The resource name of the metric descriptor.
3872 core.String name;
3873
3874 /// The metric type, including its DNS name prefix. The type is not
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003875 /// URL-encoded. All user-defined metric types have the DNS name
3876 /// `custom.googleapis.com` or `external.googleapis.com`. Metric types should
Martin Kustermann12cdd522018-08-27 10:46:50 +02003877 /// use a natural hierarchical grouping. For example:
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003878 /// "custom.googleapis.com/invoice/paid/amount"
3879 /// "external.googleapis.com/prometheus/up"
3880 /// "appengine.googleapis.com/http/server/response_latencies"
Martin Kustermann12cdd522018-08-27 10:46:50 +02003881 core.String type;
3882
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003883 /// The units in which the metric value is reported. It is only applicable if
3884 /// the `value_type` is `INT64`, `DOUBLE`, or `DISTRIBUTION`. The `unit`
3885 /// defines the representation of the stored metric values. Different systems
3886 /// may scale the values to be more easily displayed (so a value of `0.02KBy`
3887 /// _might_ be displayed as `20By`, and a value of `3523KBy` _might_ be
3888 /// displayed as `3.5MBy`). However, if the `unit` is `KBy`, then the value of
3889 /// the metric is always in thousands of bytes, no matter how it may be
3890 /// displayed.. If you want a custom metric to record the exact number of
3891 /// CPU-seconds used by a job, you can create an `INT64 CUMULATIVE` metric
3892 /// whose `unit` is `s{CPU}` (or equivalently `1s{CPU}` or just `s`). If the
3893 /// job uses 12,005 CPU-seconds, then the value is written as `12005`.
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02003894 /// Alternatively, if you want a custom metric to record data in a more
3895 /// granular way, you can create a `DOUBLE CUMULATIVE` metric whose `unit` is
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003896 /// `ks{CPU}`, and then write the value `12.005` (which is `12005/1000`), or
3897 /// use `Kis{CPU}` and write `11.723` (which is `12005/1024`). The supported
3898 /// units are a subset of [The Unified Code for Units of
3899 /// Measure](http://unitsofmeasure.org/ucum.html) standard: **Basic units
3900 /// (UNIT)** * `bit` bit * `By` byte * `s` second * `min` minute * `h` hour *
3901 /// `d` day * `1` dimensionless **Prefixes (PREFIX)** * `k` kilo (10^3) * `M`
3902 /// mega (10^6) * `G` giga (10^9) * `T` tera (10^12) * `P` peta (10^15) * `E`
3903 /// exa (10^18) * `Z` zetta (10^21) * `Y` yotta (10^24) * `m` milli (10^-3) *
3904 /// `u` micro (10^-6) * `n` nano (10^-9) * `p` pico (10^-12) * `f` femto
3905 /// (10^-15) * `a` atto (10^-18) * `z` zepto (10^-21) * `y` yocto (10^-24) *
3906 /// `Ki` kibi (2^10) * `Mi` mebi (2^20) * `Gi` gibi (2^30) * `Ti` tebi (2^40)
3907 /// * `Pi` pebi (2^50) **Grammar** The grammar also includes these connectors:
3908 /// * `/` division or ratio (as an infix operator). For examples,
3909 /// `kBy/{email}` or `MiBy/10ms` (although you should almost never have `/s`
3910 /// in a metric `unit`; rates should always be computed at query time from the
3911 /// underlying cumulative or delta value). * `.` multiplication or composition
3912 /// (as an infix operator). For examples, `GBy.d` or `k{watt}.h`. The grammar
3913 /// for a unit is as follows: Expression = Component { "." Component } { "/"
3914 /// Component } ; Component = ( [ PREFIX ] UNIT | "%" ) [ Annotation ] |
3915 /// Annotation | "1" ; Annotation = "{" NAME "}" ; Notes: * `Annotation` is
3916 /// just a comment if it follows a `UNIT`. If the annotation is used alone,
3917 /// then the unit is equivalent to `1`. For examples, `{request}/s == 1/s`,
3918 /// `By{transmitted}/s == By/s`. * `NAME` is a sequence of non-blank printable
3919 /// ASCII characters not containing `{` or `}`. * `1` represents a unitary
3920 /// [dimensionless unit](https://en.wikipedia.org/wiki/Dimensionless_quantity)
3921 /// of 1, such as in `1/s`. It is typically used when none of the basic units
3922 /// are appropriate. For example, "new users per day" can be represented as
3923 /// `1/d` or `{new-users}/d` (and a metric value `5` would mean "5 new users).
3924 /// Alternatively, "thousands of page views per day" would be represented as
3925 /// `1000/d` or `k1/d` or `k{page_views}/d` (and a metric value of `5.3` would
3926 /// mean "5300 page views per day"). * `%` represents dimensionless value of
3927 /// 1/100, and annotates values giving a percentage (so the metric values are
3928 /// typically in the range of 0..100, and a metric value `3` means "3
3929 /// percent"). * `10^2.%` indicates a metric contains a ratio, typically in
3930 /// the range 0..1, that will be multiplied by 100 and displayed as a
3931 /// percentage (so a metric value `0.03` means "3 percent").
Martin Kustermann12cdd522018-08-27 10:46:50 +02003932 core.String unit;
3933
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003934 /// Whether the measurement is an integer, a floating-point number, etc. Some
3935 /// combinations of `metric_kind` and `value_type` might not be supported.
Martin Kustermann12cdd522018-08-27 10:46:50 +02003936 /// Possible string values are:
3937 /// - "VALUE_TYPE_UNSPECIFIED" : Do not use this default value.
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003938 /// - "BOOL" : The value is a boolean. This value type can be used only if the
3939 /// metric kind is `GAUGE`.
Martin Kustermann12cdd522018-08-27 10:46:50 +02003940 /// - "INT64" : The value is a signed 64-bit integer.
3941 /// - "DOUBLE" : The value is a double precision floating point number.
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02003942 /// - "STRING" : The value is a text string. This value type can be used only
3943 /// if the metric kind is `GAUGE`.
Martin Kustermann12cdd522018-08-27 10:46:50 +02003944 /// - "DISTRIBUTION" : The value is a `Distribution`.
3945 /// - "MONEY" : The value is money.
3946 core.String valueType;
3947
3948 MetricDescriptor();
3949
3950 MetricDescriptor.fromJson(core.Map _json) {
3951 if (_json.containsKey("description")) {
3952 description = _json["description"];
3953 }
3954 if (_json.containsKey("displayName")) {
3955 displayName = _json["displayName"];
3956 }
3957 if (_json.containsKey("labels")) {
3958 labels = (_json["labels"] as core.List)
3959 .map<LabelDescriptor>((value) => new LabelDescriptor.fromJson(value))
3960 .toList();
3961 }
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02003962 if (_json.containsKey("launchStage")) {
3963 launchStage = _json["launchStage"];
3964 }
Martin Kustermann12cdd522018-08-27 10:46:50 +02003965 if (_json.containsKey("metadata")) {
3966 metadata = new MetricDescriptorMetadata.fromJson(_json["metadata"]);
3967 }
3968 if (_json.containsKey("metricKind")) {
3969 metricKind = _json["metricKind"];
3970 }
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02003971 if (_json.containsKey("monitoredResourceTypes")) {
3972 monitoredResourceTypes =
3973 (_json["monitoredResourceTypes"] as core.List).cast<core.String>();
3974 }
Martin Kustermann12cdd522018-08-27 10:46:50 +02003975 if (_json.containsKey("name")) {
3976 name = _json["name"];
3977 }
3978 if (_json.containsKey("type")) {
3979 type = _json["type"];
3980 }
3981 if (_json.containsKey("unit")) {
3982 unit = _json["unit"];
3983 }
3984 if (_json.containsKey("valueType")) {
3985 valueType = _json["valueType"];
3986 }
3987 }
3988
3989 core.Map<core.String, core.Object> toJson() {
3990 final core.Map<core.String, core.Object> _json =
3991 new core.Map<core.String, core.Object>();
3992 if (description != null) {
3993 _json["description"] = description;
3994 }
3995 if (displayName != null) {
3996 _json["displayName"] = displayName;
3997 }
3998 if (labels != null) {
3999 _json["labels"] = labels.map((value) => (value).toJson()).toList();
4000 }
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02004001 if (launchStage != null) {
4002 _json["launchStage"] = launchStage;
4003 }
Martin Kustermann12cdd522018-08-27 10:46:50 +02004004 if (metadata != null) {
4005 _json["metadata"] = (metadata).toJson();
4006 }
4007 if (metricKind != null) {
4008 _json["metricKind"] = metricKind;
4009 }
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02004010 if (monitoredResourceTypes != null) {
4011 _json["monitoredResourceTypes"] = monitoredResourceTypes;
4012 }
Martin Kustermann12cdd522018-08-27 10:46:50 +02004013 if (name != null) {
4014 _json["name"] = name;
4015 }
4016 if (type != null) {
4017 _json["type"] = type;
4018 }
4019 if (unit != null) {
4020 _json["unit"] = unit;
4021 }
4022 if (valueType != null) {
4023 _json["valueType"] = valueType;
4024 }
4025 return _json;
4026 }
4027}
4028
4029/// Additional annotations that can be used to guide the usage of a metric.
4030class MetricDescriptorMetadata {
4031 /// The delay of data points caused by ingestion. Data points older than this
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004032 /// age are guaranteed to be ingested and available to be read, excluding data
4033 /// loss due to errors.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004034 core.String ingestDelay;
4035
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02004036 /// Deprecated. Must use the MetricDescriptor.launch_stage instead.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004037 /// Possible string values are:
4038 /// - "LAUNCH_STAGE_UNSPECIFIED" : Do not use this default value.
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02004039 /// - "UNIMPLEMENTED" : The feature is not yet implemented. Users can not use
4040 /// it.
4041 /// - "PRELAUNCH" : Prelaunch features are hidden from users and are only
4042 /// visible internally.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004043 /// - "EARLY_ACCESS" : Early Access features are limited to a closed group of
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004044 /// testers. To use these features, you must sign up in advance and sign a
4045 /// Trusted Tester agreement (which includes confidentiality provisions).
4046 /// These features may be unstable, changed in backward-incompatible ways, and
4047 /// are not guaranteed to be released.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004048 /// - "ALPHA" : Alpha is a limited availability test for releases before they
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004049 /// are cleared for widespread use. By Alpha, all significant design issues
4050 /// are resolved and we are in the process of verifying functionality. Alpha
4051 /// customers need to apply for access, agree to applicable terms, and have
4052 /// their projects whitelisted. Alpha releases don’t have to be feature
4053 /// complete, no SLAs are provided, and there are no technical support
4054 /// obligations, but they will be far enough along that customers can actually
4055 /// use them in test environments or for limited-use tests -- just like they
4056 /// would in normal production cases.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004057 /// - "BETA" : Beta is the point at which we are ready to open a release for
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004058 /// any customer to use. There are no SLA or technical support obligations in
4059 /// a Beta release. Products will be complete from a feature perspective, but
Martin Kustermann12cdd522018-08-27 10:46:50 +02004060 /// may have some open outstanding issues. Beta releases are suitable for
4061 /// limited production use cases.
4062 /// - "GA" : GA features are open to all developers and are considered stable
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004063 /// and fully qualified for production use.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004064 /// - "DEPRECATED" : Deprecated features are scheduled to be shut down and
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004065 /// removed. For more information, see the “Deprecation Policy” section of our
4066 /// [Terms of Service](https://cloud.google.com/terms/) and the [Google Cloud
4067 /// Platform Subject to the Deprecation
Martin Kustermann12cdd522018-08-27 10:46:50 +02004068 /// Policy](https://cloud.google.com/terms/deprecation) documentation.
4069 core.String launchStage;
4070
4071 /// The sampling period of metric data points. For metrics which are written
4072 /// periodically, consecutive data points are stored at this time interval,
4073 /// excluding data loss due to errors. Metrics with a higher granularity have
4074 /// a smaller sampling period.
4075 core.String samplePeriod;
4076
4077 MetricDescriptorMetadata();
4078
4079 MetricDescriptorMetadata.fromJson(core.Map _json) {
4080 if (_json.containsKey("ingestDelay")) {
4081 ingestDelay = _json["ingestDelay"];
4082 }
4083 if (_json.containsKey("launchStage")) {
4084 launchStage = _json["launchStage"];
4085 }
4086 if (_json.containsKey("samplePeriod")) {
4087 samplePeriod = _json["samplePeriod"];
4088 }
4089 }
4090
4091 core.Map<core.String, core.Object> toJson() {
4092 final core.Map<core.String, core.Object> _json =
4093 new core.Map<core.String, core.Object>();
4094 if (ingestDelay != null) {
4095 _json["ingestDelay"] = ingestDelay;
4096 }
4097 if (launchStage != null) {
4098 _json["launchStage"] = launchStage;
4099 }
4100 if (samplePeriod != null) {
4101 _json["samplePeriod"] = samplePeriod;
4102 }
4103 return _json;
4104 }
4105}
4106
4107/// Bind API methods to metrics. Binding a method to a metric causes that
4108/// metric's configured quota behaviors to apply to the method call.
4109class MetricRule {
4110 /// Metrics to update when the selected methods are called, and the associated
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004111 /// cost applied to each metric. The key of the map is the metric name, and
4112 /// the values are the amount increased for the metric against which the quota
4113 /// limits are defined. The value must not be negative.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004114 core.Map<core.String, core.String> metricCosts;
4115
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004116 /// Selects the methods to which this rule applies. Refer to selector for
4117 /// syntax details.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004118 core.String selector;
4119
4120 MetricRule();
4121
4122 MetricRule.fromJson(core.Map _json) {
4123 if (_json.containsKey("metricCosts")) {
4124 metricCosts =
4125 (_json["metricCosts"] as core.Map).cast<core.String, core.String>();
4126 }
4127 if (_json.containsKey("selector")) {
4128 selector = _json["selector"];
4129 }
4130 }
4131
4132 core.Map<core.String, core.Object> toJson() {
4133 final core.Map<core.String, core.Object> _json =
4134 new core.Map<core.String, core.Object>();
4135 if (metricCosts != null) {
4136 _json["metricCosts"] = metricCosts;
4137 }
4138 if (selector != null) {
4139 _json["selector"] = selector;
4140 }
4141 return _json;
4142 }
4143}
4144
4145/// Declares an API Interface to be included in this interface. The including
4146/// interface must redeclare all the methods from the included interface, but
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004147/// documentation and options are inherited as follows: - If after comment and
4148/// whitespace stripping, the documentation string of the redeclared method is
4149/// empty, it will be inherited from the original method. - Each annotation
4150/// belonging to the service config (http, visibility) which is not set in the
4151/// redeclared method will be inherited. - If an http annotation is inherited,
4152/// the path pattern will be modified as follows. Any version prefix will be
4153/// replaced by the version of the including interface plus the root path if
4154/// specified. Example of a simple mixin: package google.acl.v1; service
4155/// AccessControl { // Get the underlying ACL object. rpc GetAcl(GetAclRequest)
4156/// returns (Acl) { option (google.api.http).get = "/v1/{resource=**}:getAcl"; }
4157/// } package google.storage.v2; service Storage { // rpc GetAcl(GetAclRequest)
4158/// returns (Acl); // Get a data record. rpc GetData(GetDataRequest) returns
4159/// (Data) { option (google.api.http).get = "/v2/{resource=**}"; } } Example of
4160/// a mixin configuration: apis: - name: google.storage.v2.Storage mixins: -
4161/// name: google.acl.v1.AccessControl The mixin construct implies that all
4162/// methods in `AccessControl` are also declared with same name and
4163/// request/response types in `Storage`. A documentation generator or annotation
4164/// processor will see the effective `Storage.GetAcl` method after inheriting
4165/// documentation and annotations as follows: service Storage { // Get the
4166/// underlying ACL object. rpc GetAcl(GetAclRequest) returns (Acl) { option
4167/// (google.api.http).get = "/v2/{resource=**}:getAcl"; } ... } Note how the
4168/// version in the path pattern changed from `v1` to `v2`. If the `root` field
4169/// in the mixin is specified, it should be a relative path under which
4170/// inherited HTTP paths are placed. Example: apis: - name:
4171/// google.storage.v2.Storage mixins: - name: google.acl.v1.AccessControl root:
4172/// acls This implies the following inherited HTTP annotation: service Storage {
4173/// // Get the underlying ACL object. rpc GetAcl(GetAclRequest) returns (Acl) {
4174/// option (google.api.http).get = "/v2/acls/{resource=**}:getAcl"; } ... }
Martin Kustermann12cdd522018-08-27 10:46:50 +02004175class Mixin {
4176 /// The fully qualified name of the interface which is included.
4177 core.String name;
4178
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004179 /// If non-empty specifies a path under which inherited HTTP paths are rooted.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004180 core.String root;
4181
4182 Mixin();
4183
4184 Mixin.fromJson(core.Map _json) {
4185 if (_json.containsKey("name")) {
4186 name = _json["name"];
4187 }
4188 if (_json.containsKey("root")) {
4189 root = _json["root"];
4190 }
4191 }
4192
4193 core.Map<core.String, core.Object> toJson() {
4194 final core.Map<core.String, core.Object> _json =
4195 new core.Map<core.String, core.Object>();
4196 if (name != null) {
4197 _json["name"] = name;
4198 }
4199 if (root != null) {
4200 _json["root"] = root;
4201 }
4202 return _json;
4203 }
4204}
4205
4206/// An object that describes the schema of a MonitoredResource object using a
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004207/// type name and a set of labels. For example, the monitored resource
Martin Kustermann12cdd522018-08-27 10:46:50 +02004208/// descriptor for Google Compute Engine VM instances has a type of
4209/// `"gce_instance"` and specifies the use of the labels `"instance_id"` and
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004210/// `"zone"` to identify particular VM instances. Different APIs can support
4211/// different monitored resource types. APIs generally provide a `list` method
4212/// that returns the monitored resource descriptors used by the API.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004213class MonitoredResourceDescriptor {
4214 /// Optional. A detailed description of the monitored resource type that might
4215 /// be used in documentation.
4216 core.String description;
4217
4218 /// Optional. A concise name for the monitored resource type that might be
4219 /// displayed in user interfaces. It should be a Title Cased Noun Phrase,
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004220 /// without any article or other determiners. For example, `"Google Cloud SQL
4221 /// Database"`.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004222 core.String displayName;
4223
4224 /// Required. A set of labels used to describe instances of this monitored
4225 /// resource type. For example, an individual Google Cloud SQL database is
4226 /// identified by values for the labels `"database_id"` and `"zone"`.
4227 core.List<LabelDescriptor> labels;
4228
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02004229 /// Optional. The launch stage of the monitored resource definition.
4230 /// Possible string values are:
4231 /// - "LAUNCH_STAGE_UNSPECIFIED" : Do not use this default value.
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02004232 /// - "UNIMPLEMENTED" : The feature is not yet implemented. Users can not use
4233 /// it.
4234 /// - "PRELAUNCH" : Prelaunch features are hidden from users and are only
4235 /// visible internally.
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02004236 /// - "EARLY_ACCESS" : Early Access features are limited to a closed group of
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004237 /// testers. To use these features, you must sign up in advance and sign a
4238 /// Trusted Tester agreement (which includes confidentiality provisions).
4239 /// These features may be unstable, changed in backward-incompatible ways, and
4240 /// are not guaranteed to be released.
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02004241 /// - "ALPHA" : Alpha is a limited availability test for releases before they
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004242 /// are cleared for widespread use. By Alpha, all significant design issues
4243 /// are resolved and we are in the process of verifying functionality. Alpha
4244 /// customers need to apply for access, agree to applicable terms, and have
4245 /// their projects whitelisted. Alpha releases don’t have to be feature
4246 /// complete, no SLAs are provided, and there are no technical support
4247 /// obligations, but they will be far enough along that customers can actually
4248 /// use them in test environments or for limited-use tests -- just like they
4249 /// would in normal production cases.
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02004250 /// - "BETA" : Beta is the point at which we are ready to open a release for
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004251 /// any customer to use. There are no SLA or technical support obligations in
4252 /// a Beta release. Products will be complete from a feature perspective, but
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02004253 /// may have some open outstanding issues. Beta releases are suitable for
4254 /// limited production use cases.
4255 /// - "GA" : GA features are open to all developers and are considered stable
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004256 /// and fully qualified for production use.
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02004257 /// - "DEPRECATED" : Deprecated features are scheduled to be shut down and
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004258 /// removed. For more information, see the “Deprecation Policy” section of our
4259 /// [Terms of Service](https://cloud.google.com/terms/) and the [Google Cloud
4260 /// Platform Subject to the Deprecation
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02004261 /// Policy](https://cloud.google.com/terms/deprecation) documentation.
4262 core.String launchStage;
4263
Martin Kustermann12cdd522018-08-27 10:46:50 +02004264 /// Optional. The resource name of the monitored resource descriptor:
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004265 /// `"projects/{project_id}/monitoredResourceDescriptors/{type}"` where {type}
4266 /// is the value of the `type` field in this object and {project_id} is a
4267 /// project ID that provides API-specific context for accessing the type. APIs
4268 /// that do not use project information can use the resource name format
4269 /// `"monitoredResourceDescriptors/{type}"`.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004270 core.String name;
4271
4272 /// Required. The monitored resource type. For example, the type
4273 /// `"cloudsql_database"` represents databases in Google Cloud SQL.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004274 core.String type;
4275
4276 MonitoredResourceDescriptor();
4277
4278 MonitoredResourceDescriptor.fromJson(core.Map _json) {
4279 if (_json.containsKey("description")) {
4280 description = _json["description"];
4281 }
4282 if (_json.containsKey("displayName")) {
4283 displayName = _json["displayName"];
4284 }
4285 if (_json.containsKey("labels")) {
4286 labels = (_json["labels"] as core.List)
4287 .map<LabelDescriptor>((value) => new LabelDescriptor.fromJson(value))
4288 .toList();
4289 }
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02004290 if (_json.containsKey("launchStage")) {
4291 launchStage = _json["launchStage"];
4292 }
Martin Kustermann12cdd522018-08-27 10:46:50 +02004293 if (_json.containsKey("name")) {
4294 name = _json["name"];
4295 }
4296 if (_json.containsKey("type")) {
4297 type = _json["type"];
4298 }
4299 }
4300
4301 core.Map<core.String, core.Object> toJson() {
4302 final core.Map<core.String, core.Object> _json =
4303 new core.Map<core.String, core.Object>();
4304 if (description != null) {
4305 _json["description"] = description;
4306 }
4307 if (displayName != null) {
4308 _json["displayName"] = displayName;
4309 }
4310 if (labels != null) {
4311 _json["labels"] = labels.map((value) => (value).toJson()).toList();
4312 }
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02004313 if (launchStage != null) {
4314 _json["launchStage"] = launchStage;
4315 }
Martin Kustermann12cdd522018-08-27 10:46:50 +02004316 if (name != null) {
4317 _json["name"] = name;
4318 }
4319 if (type != null) {
4320 _json["type"] = type;
4321 }
4322 return _json;
4323 }
4324}
4325
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004326/// Monitoring configuration of the service. The example below shows how to
4327/// configure monitored resources and metrics for monitoring. In the example, a
4328/// monitored resource and two metrics are defined. The
4329/// `library.googleapis.com/book/returned_count` metric is sent to both producer
4330/// and consumer projects, whereas the `library.googleapis.com/book/num_overdue`
4331/// metric is only sent to the consumer project. monitored_resources: - type:
4332/// library.googleapis.com/Branch display_name: "Library Branch" description: "A
4333/// branch of a library." launch_stage: GA labels: - key: resource_container
4334/// description: "The Cloud container (ie. project id) for the Branch." - key:
4335/// location description: "The location of the library branch." - key: branch_id
4336/// description: "The id of the branch." metrics: - name:
4337/// library.googleapis.com/book/returned_count display_name: "Books Returned"
4338/// description: "The count of books that have been returned." launch_stage: GA
4339/// metric_kind: DELTA value_type: INT64 unit: "1" labels: - key: customer_id
4340/// description: "The id of the customer." - name:
4341/// library.googleapis.com/book/num_overdue display_name: "Books Overdue"
4342/// description: "The current number of overdue books." launch_stage: GA
4343/// metric_kind: GAUGE value_type: INT64 unit: "1" labels: - key: customer_id
4344/// description: "The id of the customer." monitoring: producer_destinations: -
4345/// monitored_resource: library.googleapis.com/Branch metrics: -
4346/// library.googleapis.com/book/returned_count consumer_destinations: -
4347/// monitored_resource: library.googleapis.com/Branch metrics: -
4348/// library.googleapis.com/book/returned_count -
4349/// library.googleapis.com/book/num_overdue
Martin Kustermann12cdd522018-08-27 10:46:50 +02004350class Monitoring {
4351 /// Monitoring configurations for sending metrics to the consumer project.
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004352 /// There can be multiple consumer destinations. A monitored resource type may
Jonas Finnemann Jensendda12e42019-02-09 12:37:20 +01004353 /// appear in multiple monitoring destinations if different aggregations are
4354 /// needed for different sets of metrics associated with that monitored
4355 /// resource type. A monitored resource and metric pair may only be used once
4356 /// in the Monitoring configuration.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004357 core.List<MonitoringDestination> consumerDestinations;
4358
4359 /// Monitoring configurations for sending metrics to the producer project.
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004360 /// There can be multiple producer destinations. A monitored resource type may
Jonas Finnemann Jensendda12e42019-02-09 12:37:20 +01004361 /// appear in multiple monitoring destinations if different aggregations are
4362 /// needed for different sets of metrics associated with that monitored
4363 /// resource type. A monitored resource and metric pair may only be used once
4364 /// in the Monitoring configuration.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004365 core.List<MonitoringDestination> producerDestinations;
4366
4367 Monitoring();
4368
4369 Monitoring.fromJson(core.Map _json) {
4370 if (_json.containsKey("consumerDestinations")) {
4371 consumerDestinations = (_json["consumerDestinations"] as core.List)
4372 .map<MonitoringDestination>(
4373 (value) => new MonitoringDestination.fromJson(value))
4374 .toList();
4375 }
4376 if (_json.containsKey("producerDestinations")) {
4377 producerDestinations = (_json["producerDestinations"] as core.List)
4378 .map<MonitoringDestination>(
4379 (value) => new MonitoringDestination.fromJson(value))
4380 .toList();
4381 }
4382 }
4383
4384 core.Map<core.String, core.Object> toJson() {
4385 final core.Map<core.String, core.Object> _json =
4386 new core.Map<core.String, core.Object>();
4387 if (consumerDestinations != null) {
4388 _json["consumerDestinations"] =
4389 consumerDestinations.map((value) => (value).toJson()).toList();
4390 }
4391 if (producerDestinations != null) {
4392 _json["producerDestinations"] =
4393 producerDestinations.map((value) => (value).toJson()).toList();
4394 }
4395 return _json;
4396 }
4397}
4398
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004399/// Configuration of a specific monitoring destination (the producer project or
4400/// the consumer project).
Martin Kustermann12cdd522018-08-27 10:46:50 +02004401class MonitoringDestination {
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004402 /// Types of the metrics to report to this monitoring destination. Each type
4403 /// must be defined in Service.metrics section.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004404 core.List<core.String> metrics;
4405
4406 /// The monitored resource type. The type must be defined in
4407 /// Service.monitored_resources section.
4408 core.String monitoredResource;
4409
4410 MonitoringDestination();
4411
4412 MonitoringDestination.fromJson(core.Map _json) {
4413 if (_json.containsKey("metrics")) {
4414 metrics = (_json["metrics"] as core.List).cast<core.String>();
4415 }
4416 if (_json.containsKey("monitoredResource")) {
4417 monitoredResource = _json["monitoredResource"];
4418 }
4419 }
4420
4421 core.Map<core.String, core.Object> toJson() {
4422 final core.Map<core.String, core.Object> _json =
4423 new core.Map<core.String, core.Object>();
4424 if (metrics != null) {
4425 _json["metrics"] = metrics;
4426 }
4427 if (monitoredResource != null) {
4428 _json["monitoredResource"] = monitoredResource;
4429 }
4430 return _json;
4431 }
4432}
4433
4434/// OAuth scopes are a way to define data and permissions on data. For example,
4435/// there are scopes defined for "Read-only access to Google Calendar" and
4436/// "Access to Cloud Platform". Users can consent to a scope for an application,
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004437/// giving it permission to access that data on their behalf. OAuth scope
4438/// specifications should be fairly coarse grained; a user will need to see and
4439/// understand the text description of what your scope means. In most cases: use
4440/// one or at most two OAuth scopes for an entire family of products. If your
4441/// product has multiple APIs, you should probably be sharing the OAuth scope
4442/// across all of those APIs. When you need finer grained OAuth consent screens:
4443/// talk with your product management about how developers will use them in
4444/// practice. Please note that even though each of the canonical scopes is
4445/// enough for a request to be accepted and passed to the backend, a request can
4446/// still fail due to the backend requiring additional scopes or permissions.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004447class OAuthRequirements {
4448 /// The list of publicly documented OAuth scopes that are allowed access. An
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004449 /// OAuth token containing any of these scopes will be accepted. Example:
4450 /// canonical_scopes: https://www.googleapis.com/auth/calendar,
4451 /// https://www.googleapis.com/auth/calendar.read
Martin Kustermann12cdd522018-08-27 10:46:50 +02004452 core.String canonicalScopes;
4453
4454 OAuthRequirements();
4455
4456 OAuthRequirements.fromJson(core.Map _json) {
4457 if (_json.containsKey("canonicalScopes")) {
4458 canonicalScopes = _json["canonicalScopes"];
4459 }
4460 }
4461
4462 core.Map<core.String, core.Object> toJson() {
4463 final core.Map<core.String, core.Object> _json =
4464 new core.Map<core.String, core.Object>();
4465 if (canonicalScopes != null) {
4466 _json["canonicalScopes"] = canonicalScopes;
4467 }
4468 return _json;
4469 }
4470}
4471
4472/// This resource represents a long-running operation that is the result of a
4473/// network API call.
4474class Operation {
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004475 /// If the value is `false`, it means the operation is still in progress. If
4476 /// `true`, the operation is completed, and either `error` or `response` is
Martin Kustermann12cdd522018-08-27 10:46:50 +02004477 /// available.
4478 core.bool done;
4479
4480 /// The error result of the operation in case of failure or cancellation.
4481 Status error;
4482
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004483 /// Service-specific metadata associated with the operation. It typically
Martin Kustermann12cdd522018-08-27 10:46:50 +02004484 /// contains progress information and common metadata such as create time.
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004485 /// Some services might not provide such metadata. Any method that returns a
Martin Kustermann12cdd522018-08-27 10:46:50 +02004486 /// long-running operation should document the metadata type, if any.
4487 ///
4488 /// The values for Object must be JSON objects. It can consist of `num`,
4489 /// `String`, `bool` and `null` as well as `Map` and `List` values.
4490 core.Map<core.String, core.Object> metadata;
4491
4492 /// The server-assigned name, which is only unique within the same service
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004493 /// that originally returns it. If you use the default HTTP mapping, the
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02004494 /// `name` should be a resource name ending with `operations/{unique_id}`.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004495 core.String name;
4496
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004497 /// The normal response of the operation in case of success. If the original
Martin Kustermann12cdd522018-08-27 10:46:50 +02004498 /// method returns no data on success, such as `Delete`, the response is
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004499 /// `google.protobuf.Empty`. If the original method is standard
4500 /// `Get`/`Create`/`Update`, the response should be the resource. For other
4501 /// methods, the response should have the type `XxxResponse`, where `Xxx` is
4502 /// the original method name. For example, if the original method name is
4503 /// `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004504 ///
4505 /// The values for Object must be JSON objects. It can consist of `num`,
4506 /// `String`, `bool` and `null` as well as `Map` and `List` values.
4507 core.Map<core.String, core.Object> response;
4508
4509 Operation();
4510
4511 Operation.fromJson(core.Map _json) {
4512 if (_json.containsKey("done")) {
4513 done = _json["done"];
4514 }
4515 if (_json.containsKey("error")) {
4516 error = new Status.fromJson(_json["error"]);
4517 }
4518 if (_json.containsKey("metadata")) {
4519 metadata =
4520 (_json["metadata"] as core.Map).cast<core.String, core.Object>();
4521 }
4522 if (_json.containsKey("name")) {
4523 name = _json["name"];
4524 }
4525 if (_json.containsKey("response")) {
4526 response =
4527 (_json["response"] as core.Map).cast<core.String, core.Object>();
4528 }
4529 }
4530
4531 core.Map<core.String, core.Object> toJson() {
4532 final core.Map<core.String, core.Object> _json =
4533 new core.Map<core.String, core.Object>();
4534 if (done != null) {
4535 _json["done"] = done;
4536 }
4537 if (error != null) {
4538 _json["error"] = (error).toJson();
4539 }
4540 if (metadata != null) {
4541 _json["metadata"] = metadata;
4542 }
4543 if (name != null) {
4544 _json["name"] = name;
4545 }
4546 if (response != null) {
4547 _json["response"] = response;
4548 }
4549 return _json;
4550 }
4551}
4552
4553/// The operation metadata returned for the batchend services operation.
4554class OperationMetadata {
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004555 /// The full name of the resources that this operation is directly associated
4556 /// with.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004557 core.List<core.String> resourceNames;
4558
4559 OperationMetadata();
4560
4561 OperationMetadata.fromJson(core.Map _json) {
4562 if (_json.containsKey("resourceNames")) {
4563 resourceNames = (_json["resourceNames"] as core.List).cast<core.String>();
4564 }
4565 }
4566
4567 core.Map<core.String, core.Object> toJson() {
4568 final core.Map<core.String, core.Object> _json =
4569 new core.Map<core.String, core.Object>();
4570 if (resourceNames != null) {
4571 _json["resourceNames"] = resourceNames;
4572 }
4573 return _json;
4574 }
4575}
4576
4577/// A protocol buffer option, which can be attached to a message, field,
4578/// enumeration, etc.
4579class Option {
4580 /// The option's name. For protobuf built-in options (options defined in
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004581 /// descriptor.proto), this is the short name. For example, `"map_entry"`. For
4582 /// custom options, it should be the fully-qualified name. For example,
Martin Kustermann12cdd522018-08-27 10:46:50 +02004583 /// `"google.api.http"`.
4584 core.String name;
4585
4586 /// The option's value packed in an Any message. If the value is a primitive,
4587 /// the corresponding wrapper type defined in google/protobuf/wrappers.proto
4588 /// should be used. If the value is an enum, it should be stored as an int32
4589 /// value using the google.protobuf.Int32Value type.
4590 ///
4591 /// The values for Object must be JSON objects. It can consist of `num`,
4592 /// `String`, `bool` and `null` as well as `Map` and `List` values.
4593 core.Map<core.String, core.Object> value;
4594
4595 Option();
4596
4597 Option.fromJson(core.Map _json) {
4598 if (_json.containsKey("name")) {
4599 name = _json["name"];
4600 }
4601 if (_json.containsKey("value")) {
4602 value = (_json["value"] as core.Map).cast<core.String, core.Object>();
4603 }
4604 }
4605
4606 core.Map<core.String, core.Object> toJson() {
4607 final core.Map<core.String, core.Object> _json =
4608 new core.Map<core.String, core.Object>();
4609 if (name != null) {
4610 _json["name"] = name;
4611 }
4612 if (value != null) {
4613 _json["value"] = value;
4614 }
4615 return _json;
4616 }
4617}
4618
4619/// Represents a documentation page. A page can contain subpages to represent
4620/// nested documentation set structure.
4621class Page {
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004622 /// The Markdown content of the page. You can use (== include {path} ==) to
4623 /// include content from a Markdown file.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004624 core.String content;
4625
4626 /// The name of the page. It will be used as an identity of the page to
4627 /// generate URI of the page, text of the link to this page in navigation,
4628 /// etc. The full page name (start from the root page name to this page
4629 /// concatenated with `.`) can be used as reference to the page in your
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004630 /// documentation. For example: pages: - name: Tutorial content: (== include
4631 /// tutorial.md ==) subpages: - name: Java content: (== include
4632 /// tutorial_java.md ==) You can reference `Java` page using Markdown
4633 /// reference link syntax: `Java`.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004634 core.String name;
4635
4636 /// Subpages of this page. The order of subpages specified here will be
4637 /// honored in the generated docset.
4638 core.List<Page> subpages;
4639
4640 Page();
4641
4642 Page.fromJson(core.Map _json) {
4643 if (_json.containsKey("content")) {
4644 content = _json["content"];
4645 }
4646 if (_json.containsKey("name")) {
4647 name = _json["name"];
4648 }
4649 if (_json.containsKey("subpages")) {
4650 subpages = (_json["subpages"] as core.List)
4651 .map<Page>((value) => new Page.fromJson(value))
4652 .toList();
4653 }
4654 }
4655
4656 core.Map<core.String, core.Object> toJson() {
4657 final core.Map<core.String, core.Object> _json =
4658 new core.Map<core.String, core.Object>();
4659 if (content != null) {
4660 _json["content"] = content;
4661 }
4662 if (name != null) {
4663 _json["name"] = name;
4664 }
4665 if (subpages != null) {
4666 _json["subpages"] = subpages.map((value) => (value).toJson()).toList();
4667 }
4668 return _json;
4669 }
4670}
4671
4672/// Quota configuration helps to achieve fairness and budgeting in service
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004673/// usage. The metric based quota configuration works this way: - The service
4674/// configuration defines a set of metrics. - For API calls, the
4675/// quota.metric_rules maps methods to metrics with corresponding costs. - The
4676/// quota.limits defines limits on the metrics, which will be used for quota
4677/// checks at runtime. An example quota configuration in yaml format: quota:
4678/// limits: - name: apiWriteQpsPerProject metric:
4679/// library.googleapis.com/write_calls unit: "1/min/{project}" # rate limit for
4680/// consumer projects values: STANDARD: 10000 # The metric rules bind all
4681/// methods to the read_calls metric, # except for the UpdateBook and DeleteBook
4682/// methods. These two methods # are mapped to the write_calls metric, with the
4683/// UpdateBook method # consuming at twice rate as the DeleteBook method.
4684/// metric_rules: - selector: "*" metric_costs:
4685/// library.googleapis.com/read_calls: 1 - selector:
4686/// google.example.library.v1.LibraryService.UpdateBook metric_costs:
4687/// library.googleapis.com/write_calls: 2 - selector:
4688/// google.example.library.v1.LibraryService.DeleteBook metric_costs:
4689/// library.googleapis.com/write_calls: 1 Corresponding Metric definition:
4690/// metrics: - name: library.googleapis.com/read_calls display_name: Read
4691/// requests metric_kind: DELTA value_type: INT64 - name:
4692/// library.googleapis.com/write_calls display_name: Write requests metric_kind:
4693/// DELTA value_type: INT64
Martin Kustermann12cdd522018-08-27 10:46:50 +02004694class Quota {
4695 /// List of `QuotaLimit` definitions for the service.
4696 core.List<QuotaLimit> limits;
4697
4698 /// List of `MetricRule` definitions, each one mapping a selected method to
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004699 /// one or more metrics.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004700 core.List<MetricRule> metricRules;
4701
4702 Quota();
4703
4704 Quota.fromJson(core.Map _json) {
4705 if (_json.containsKey("limits")) {
4706 limits = (_json["limits"] as core.List)
4707 .map<QuotaLimit>((value) => new QuotaLimit.fromJson(value))
4708 .toList();
4709 }
4710 if (_json.containsKey("metricRules")) {
4711 metricRules = (_json["metricRules"] as core.List)
4712 .map<MetricRule>((value) => new MetricRule.fromJson(value))
4713 .toList();
4714 }
4715 }
4716
4717 core.Map<core.String, core.Object> toJson() {
4718 final core.Map<core.String, core.Object> _json =
4719 new core.Map<core.String, core.Object>();
4720 if (limits != null) {
4721 _json["limits"] = limits.map((value) => (value).toJson()).toList();
4722 }
4723 if (metricRules != null) {
4724 _json["metricRules"] =
4725 metricRules.map((value) => (value).toJson()).toList();
4726 }
4727 return _json;
4728 }
4729}
4730
4731/// `QuotaLimit` defines a specific limit that applies over a specified duration
4732/// for a limit type. There can be at most one limit for a duration and limit
4733/// type combination defined within a `QuotaGroup`.
4734class QuotaLimit {
4735 /// Default number of tokens that can be consumed during the specified
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004736 /// duration. This is the number of tokens assigned when a client application
4737 /// developer activates the service for his/her project. Specifying a value of
4738 /// 0 will block all requests. This can be used if you are provisioning quota
4739 /// to selected consumers and blocking others. Similarly, a value of -1 will
4740 /// indicate an unlimited quota. No other negative values are allowed. Used by
4741 /// group-based quotas only.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004742 core.String defaultLimit;
4743
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004744 /// Optional. User-visible, extended description for this quota limit. Should
4745 /// be used only when more context is needed to understand this limit than
4746 /// provided by the limit's display name (see: `display_name`).
Martin Kustermann12cdd522018-08-27 10:46:50 +02004747 core.String description;
4748
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004749 /// User-visible display name for this limit. Optional. If not set, the UI
4750 /// will provide a default display name based on the quota configuration. This
4751 /// field can be used to override the default display name generated from the
4752 /// configuration.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004753 core.String displayName;
4754
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004755 /// Duration of this limit in textual notation. Must be "100s" or "1d". Used
4756 /// by group-based quotas only.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004757 core.String duration;
4758
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004759 /// Free tier value displayed in the Developers Console for this limit. The
4760 /// free tier is the number of tokens that will be subtracted from the billed
4761 /// amount when billing is enabled. This field can only be set on a limit with
4762 /// duration "1d", in a billable group; it is invalid on any other limit. If
4763 /// this field is not set, it defaults to 0, indicating that there is no free
4764 /// tier for this service. Used by group-based quotas only.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004765 core.String freeTier;
4766
4767 /// Maximum number of tokens that can be consumed during the specified
4768 /// duration. Client application developers can override the default limit up
4769 /// to this maximum. If specified, this value cannot be set to a value less
4770 /// than the default limit. If not specified, it is set to the default limit.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004771 /// To allow clients to apply overrides with no upper bound, set this to -1,
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004772 /// indicating unlimited maximum quota. Used by group-based quotas only.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004773 core.String maxLimit;
4774
4775 /// The name of the metric this quota limit applies to. The quota limits with
4776 /// the same metric will be checked together during runtime. The metric must
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004777 /// be defined within the service config.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004778 core.String metric;
4779
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004780 /// Name of the quota limit. The name must be provided, and it must be unique
4781 /// within the service. The name can only include alphanumeric characters as
4782 /// well as '-'. The maximum length of the limit name is 64 characters.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004783 core.String name;
4784
4785 /// Specify the unit of the quota limit. It uses the same syntax as
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004786 /// Metric.unit. The supported unit kinds are determined by the quota backend
4787 /// system. Here are some examples: * "1/min/{project}" for quota per minute
4788 /// per project. Note: the order of unit components is insignificant. The "1"
4789 /// at the beginning is required to follow the metric unit syntax.
Martin Kustermann12cdd522018-08-27 10:46:50 +02004790 core.String unit;
4791
4792 /// Tiered limit values. You must specify this as a key:value pair, with an
4793 /// integer value that is the maximum number of requests allowed for the
4794 /// specified unit. Currently only STANDARD is supported.
4795 core.Map<core.String, core.String> values;
4796
4797 QuotaLimit();
4798
4799 QuotaLimit.fromJson(core.Map _json) {
4800 if (_json.containsKey("defaultLimit")) {
4801 defaultLimit = _json["defaultLimit"];
4802 }
4803 if (_json.containsKey("description")) {
4804 description = _json["description"];
4805 }
4806 if (_json.containsKey("displayName")) {
4807 displayName = _json["displayName"];
4808 }
4809 if (_json.containsKey("duration")) {
4810 duration = _json["duration"];
4811 }
4812 if (_json.containsKey("freeTier")) {
4813 freeTier = _json["freeTier"];
4814 }
4815 if (_json.containsKey("maxLimit")) {
4816 maxLimit = _json["maxLimit"];
4817 }
4818 if (_json.containsKey("metric")) {
4819 metric = _json["metric"];
4820 }
4821 if (_json.containsKey("name")) {
4822 name = _json["name"];
4823 }
4824 if (_json.containsKey("unit")) {
4825 unit = _json["unit"];
4826 }
4827 if (_json.containsKey("values")) {
4828 values = (_json["values"] as core.Map).cast<core.String, core.String>();
4829 }
4830 }
4831
4832 core.Map<core.String, core.Object> toJson() {
4833 final core.Map<core.String, core.Object> _json =
4834 new core.Map<core.String, core.Object>();
4835 if (defaultLimit != null) {
4836 _json["defaultLimit"] = defaultLimit;
4837 }
4838 if (description != null) {
4839 _json["description"] = description;
4840 }
4841 if (displayName != null) {
4842 _json["displayName"] = displayName;
4843 }
4844 if (duration != null) {
4845 _json["duration"] = duration;
4846 }
4847 if (freeTier != null) {
4848 _json["freeTier"] = freeTier;
4849 }
4850 if (maxLimit != null) {
4851 _json["maxLimit"] = maxLimit;
4852 }
4853 if (metric != null) {
4854 _json["metric"] = metric;
4855 }
4856 if (name != null) {
4857 _json["name"] = name;
4858 }
4859 if (unit != null) {
4860 _json["unit"] = unit;
4861 }
4862 if (values != null) {
4863 _json["values"] = values;
4864 }
4865 return _json;
4866 }
4867}
4868
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02004869/// A quota override
4870class QuotaOverride {
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004871 /// The resource name of the ancestor that requested the override. For
4872 /// example: "organizations/12345" or "folders/67890". Used by admin overrides
4873 /// only.
4874 core.String adminOverrideAncestor;
4875
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02004876 /// If this map is nonempty, then this override applies only to specific
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004877 /// values for dimensions defined in the limit unit. For example, an override
4878 /// on a limit with the unit 1/{project}/{region} could contain an entry with
4879 /// the key "region" and the value "us-east-1"; the override is only applied
4880 /// to quota consumed in that region. This map has the following restrictions:
4881 /// * Keys that are not defined in the limit's unit are not valid keys. Any
4882 /// string appearing in {brackets} in the unit (besides {project} or {user})
4883 /// is a defined key. * "project" is not a valid key; the project is already
4884 /// specified in the parent resource name. * "user" is not a valid key; the
4885 /// API does not support quota overrides that apply only to a specific user. *
4886 /// If "region" appears as a key, its value must be a valid Cloud region. * If
4887 /// "zone" appears as a key, its value must be a valid Cloud zone. * If any
4888 /// valid key other than "region" or "zone" appears in the map, then all valid
4889 /// keys other than "region" or "zone" must also appear in the map.
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02004890 core.Map<core.String, core.String> dimensions;
4891
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004892 /// The name of the metric to which this override applies. An example name
4893 /// would be: `compute.googleapis.com/cpus`
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02004894 core.String metric;
4895
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004896 /// The resource name of the override. This name is generated by the server
4897 /// when the override is created. Example names would be:
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02004898 /// `projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus/limits/%2Fproject%2Fregion/adminOverrides/4a3f2c1d`
4899 /// `projects/123/services/compute.googleapis.com/consumerQuotaMetrics/compute.googleapis.com%2Fcpus/limits/%2Fproject%2Fregion/consumerOverrides/4a3f2c1d`
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02004900 /// The resource name is intended to be opaque and should not be parsed for
4901 /// its component strings, since its representation could change in the
4902 /// future.
4903 core.String name;
4904
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004905 /// The overriding quota limit value. Can be any nonnegative integer, or -1
4906 /// (unlimited quota).
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02004907 core.String overrideValue;
4908
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004909 /// The limit unit of the limit to which this override applies. An example
4910 /// unit would be: `1/{project}/{region}` Note that `{project}` and `{region}`
4911 /// are not placeholders in this example; the literal characters `{` and `}`
4912 /// occur in the string.
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02004913 core.String unit;
4914
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02004915 QuotaOverride();
4916
4917 QuotaOverride.fromJson(core.Map _json) {
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004918 if (_json.containsKey("adminOverrideAncestor")) {
4919 adminOverrideAncestor = _json["adminOverrideAncestor"];
4920 }
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02004921 if (_json.containsKey("dimensions")) {
4922 dimensions =
4923 (_json["dimensions"] as core.Map).cast<core.String, core.String>();
4924 }
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02004925 if (_json.containsKey("metric")) {
4926 metric = _json["metric"];
4927 }
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02004928 if (_json.containsKey("name")) {
4929 name = _json["name"];
4930 }
4931 if (_json.containsKey("overrideValue")) {
4932 overrideValue = _json["overrideValue"];
4933 }
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02004934 if (_json.containsKey("unit")) {
4935 unit = _json["unit"];
4936 }
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02004937 }
4938
4939 core.Map<core.String, core.Object> toJson() {
4940 final core.Map<core.String, core.Object> _json =
4941 new core.Map<core.String, core.Object>();
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004942 if (adminOverrideAncestor != null) {
4943 _json["adminOverrideAncestor"] = adminOverrideAncestor;
4944 }
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02004945 if (dimensions != null) {
4946 _json["dimensions"] = dimensions;
4947 }
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02004948 if (metric != null) {
4949 _json["metric"] = metric;
4950 }
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02004951 if (name != null) {
4952 _json["name"] = name;
4953 }
4954 if (overrideValue != null) {
4955 _json["overrideValue"] = overrideValue;
4956 }
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02004957 if (unit != null) {
4958 _json["unit"] = unit;
4959 }
4960 return _json;
4961 }
4962}
4963
4964/// Service identity for a service. This is the identity that service producer
4965/// should use to access consumer resources.
4966class ServiceIdentity {
4967 /// The email address of the service account that a service producer would use
4968 /// to access consumer resources.
4969 core.String email;
4970
4971 /// The unique and stable id of the service account.
4972 /// https://cloud.google.com/iam/reference/rest/v1/projects.serviceAccounts#ServiceAccount
4973 core.String uniqueId;
4974
4975 ServiceIdentity();
4976
4977 ServiceIdentity.fromJson(core.Map _json) {
4978 if (_json.containsKey("email")) {
4979 email = _json["email"];
4980 }
4981 if (_json.containsKey("uniqueId")) {
4982 uniqueId = _json["uniqueId"];
4983 }
4984 }
4985
4986 core.Map<core.String, core.Object> toJson() {
4987 final core.Map<core.String, core.Object> _json =
4988 new core.Map<core.String, core.Object>();
4989 if (email != null) {
4990 _json["email"] = email;
4991 }
4992 if (uniqueId != null) {
4993 _json["uniqueId"] = uniqueId;
4994 }
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02004995 return _json;
4996 }
4997}
4998
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02004999/// `SourceContext` represents information about the source of a protobuf
5000/// element, like the file in which it is defined.
Martin Kustermann12cdd522018-08-27 10:46:50 +02005001class SourceContext {
5002 /// The path-qualified name of the .proto file that contained the associated
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02005003 /// protobuf element. For example: `"google/protobuf/source_context.proto"`.
Martin Kustermann12cdd522018-08-27 10:46:50 +02005004 core.String fileName;
5005
5006 SourceContext();
5007
5008 SourceContext.fromJson(core.Map _json) {
5009 if (_json.containsKey("fileName")) {
5010 fileName = _json["fileName"];
5011 }
5012 }
5013
5014 core.Map<core.String, core.Object> toJson() {
5015 final core.Map<core.String, core.Object> _json =
5016 new core.Map<core.String, core.Object>();
5017 if (fileName != null) {
5018 _json["fileName"] = fileName;
5019 }
5020 return _json;
5021 }
5022}
5023
5024/// Source information used to create a Service Config
5025class SourceInfo {
5026 /// All files used during config generation.
5027 ///
5028 /// The values for Object must be JSON objects. It can consist of `num`,
5029 /// `String`, `bool` and `null` as well as `Map` and `List` values.
5030 core.List<core.Map<core.String, core.Object>> sourceFiles;
5031
5032 SourceInfo();
5033
5034 SourceInfo.fromJson(core.Map _json) {
5035 if (_json.containsKey("sourceFiles")) {
5036 sourceFiles = (_json["sourceFiles"] as core.List)
5037 .map<core.Map<core.String, core.Object>>(
5038 (value) => (value as core.Map).cast<core.String, core.Object>())
5039 .toList();
5040 }
5041 }
5042
5043 core.Map<core.String, core.Object> toJson() {
5044 final core.Map<core.String, core.Object> _json =
5045 new core.Map<core.String, core.Object>();
5046 if (sourceFiles != null) {
5047 _json["sourceFiles"] = sourceFiles;
5048 }
5049 return _json;
5050 }
5051}
5052
5053/// The `Status` type defines a logical error model that is suitable for
Jonas Finnemann Jensenee696b12019-07-04 15:07:25 +02005054/// different programming environments, including REST APIs and RPC APIs. It is
5055/// used by [gRPC](https://github.com/grpc). Each `Status` message contains
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02005056/// three pieces of data: error code, error message, and error details. You can
5057/// find out more about this error model and how to work with it in the [API
5058/// Design Guide](https://cloud.google.com/apis/design/errors).
Martin Kustermann12cdd522018-08-27 10:46:50 +02005059class Status {
5060 /// The status code, which should be an enum value of google.rpc.Code.
5061 core.int code;
5062
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02005063 /// A list of messages that carry the error details. There is a common set of
Martin Kustermann12cdd522018-08-27 10:46:50 +02005064 /// message types for APIs to use.
5065 ///
5066 /// The values for Object must be JSON objects. It can consist of `num`,
5067 /// `String`, `bool` and `null` as well as `Map` and `List` values.
5068 core.List<core.Map<core.String, core.Object>> details;
5069
5070 /// A developer-facing error message, which should be in English. Any
5071 /// user-facing error message should be localized and sent in the
5072 /// google.rpc.Status.details field, or localized by the client.
5073 core.String message;
5074
5075 Status();
5076
5077 Status.fromJson(core.Map _json) {
5078 if (_json.containsKey("code")) {
5079 code = _json["code"];
5080 }
5081 if (_json.containsKey("details")) {
5082 details = (_json["details"] as core.List)
5083 .map<core.Map<core.String, core.Object>>(
5084 (value) => (value as core.Map).cast<core.String, core.Object>())
5085 .toList();
5086 }
5087 if (_json.containsKey("message")) {
5088 message = _json["message"];
5089 }
5090 }
5091
5092 core.Map<core.String, core.Object> toJson() {
5093 final core.Map<core.String, core.Object> _json =
5094 new core.Map<core.String, core.Object>();
5095 if (code != null) {
5096 _json["code"] = code;
5097 }
5098 if (details != null) {
5099 _json["details"] = details;
5100 }
5101 if (message != null) {
5102 _json["message"] = message;
5103 }
5104 return _json;
5105 }
5106}
5107
5108/// Define a parameter's name and location. The parameter may be passed as
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02005109/// either an HTTP header or a URL query parameter, and if both are passed the
5110/// behavior is implementation-dependent.
Martin Kustermann12cdd522018-08-27 10:46:50 +02005111class SystemParameter {
5112 /// Define the HTTP header name to use for the parameter. It is case
5113 /// insensitive.
5114 core.String httpHeader;
5115
5116 /// Define the name of the parameter, such as "api_key" . It is case
5117 /// sensitive.
5118 core.String name;
5119
5120 /// Define the URL query parameter name to use for the parameter. It is case
5121 /// sensitive.
5122 core.String urlQueryParameter;
5123
5124 SystemParameter();
5125
5126 SystemParameter.fromJson(core.Map _json) {
5127 if (_json.containsKey("httpHeader")) {
5128 httpHeader = _json["httpHeader"];
5129 }
5130 if (_json.containsKey("name")) {
5131 name = _json["name"];
5132 }
5133 if (_json.containsKey("urlQueryParameter")) {
5134 urlQueryParameter = _json["urlQueryParameter"];
5135 }
5136 }
5137
5138 core.Map<core.String, core.Object> toJson() {
5139 final core.Map<core.String, core.Object> _json =
5140 new core.Map<core.String, core.Object>();
5141 if (httpHeader != null) {
5142 _json["httpHeader"] = httpHeader;
5143 }
5144 if (name != null) {
5145 _json["name"] = name;
5146 }
5147 if (urlQueryParameter != null) {
5148 _json["urlQueryParameter"] = urlQueryParameter;
5149 }
5150 return _json;
5151 }
5152}
5153
5154/// Define a system parameter rule mapping system parameter definitions to
5155/// methods.
5156class SystemParameterRule {
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02005157 /// Define parameters. Multiple names may be defined for a parameter. For a
5158 /// given method call, only one of them should be used. If multiple names are
5159 /// used the behavior is implementation-dependent. If none of the specified
5160 /// names are present the behavior is parameter-dependent.
Martin Kustermann12cdd522018-08-27 10:46:50 +02005161 core.List<SystemParameter> parameters;
5162
5163 /// Selects the methods to which this rule applies. Use '*' to indicate all
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02005164 /// methods in all APIs. Refer to selector for syntax details.
Martin Kustermann12cdd522018-08-27 10:46:50 +02005165 core.String selector;
5166
5167 SystemParameterRule();
5168
5169 SystemParameterRule.fromJson(core.Map _json) {
5170 if (_json.containsKey("parameters")) {
5171 parameters = (_json["parameters"] as core.List)
5172 .map<SystemParameter>((value) => new SystemParameter.fromJson(value))
5173 .toList();
5174 }
5175 if (_json.containsKey("selector")) {
5176 selector = _json["selector"];
5177 }
5178 }
5179
5180 core.Map<core.String, core.Object> toJson() {
5181 final core.Map<core.String, core.Object> _json =
5182 new core.Map<core.String, core.Object>();
5183 if (parameters != null) {
5184 _json["parameters"] =
5185 parameters.map((value) => (value).toJson()).toList();
5186 }
5187 if (selector != null) {
5188 _json["selector"] = selector;
5189 }
5190 return _json;
5191 }
5192}
5193
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02005194/// ### System parameter configuration A system parameter is a special kind of
5195/// parameter defined by the API system, not by an individual API. It is
5196/// typically mapped to an HTTP header and/or a URL query parameter. This
5197/// configuration specifies which methods change the names of the system
5198/// parameters.
Martin Kustermann12cdd522018-08-27 10:46:50 +02005199class SystemParameters {
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02005200 /// Define system parameters. The parameters defined here will override the
5201 /// default parameters implemented by the system. If this field is missing
5202 /// from the service config, default system parameters will be used. Default
5203 /// system parameters and names is implementation-dependent. Example: define
5204 /// api key for all methods system_parameters rules: - selector: "*"
5205 /// parameters: - name: api_key url_query_parameter: api_key Example: define 2
5206 /// api key names for a specific method. system_parameters rules: - selector:
5207 /// "/ListShelves" parameters: - name: api_key http_header: Api-Key1 - name:
5208 /// api_key http_header: Api-Key2 **NOTE:** All service configuration rules
5209 /// follow "last one wins" order.
Martin Kustermann12cdd522018-08-27 10:46:50 +02005210 core.List<SystemParameterRule> rules;
5211
5212 SystemParameters();
5213
5214 SystemParameters.fromJson(core.Map _json) {
5215 if (_json.containsKey("rules")) {
5216 rules = (_json["rules"] as core.List)
5217 .map<SystemParameterRule>(
5218 (value) => new SystemParameterRule.fromJson(value))
5219 .toList();
5220 }
5221 }
5222
5223 core.Map<core.String, core.Object> toJson() {
5224 final core.Map<core.String, core.Object> _json =
5225 new core.Map<core.String, core.Object>();
5226 if (rules != null) {
5227 _json["rules"] = rules.map((value) => (value).toJson()).toList();
5228 }
5229 return _json;
5230 }
5231}
5232
5233/// A protocol buffer message type.
5234class Type {
5235 /// The list of fields.
5236 core.List<Field> fields;
5237
5238 /// The fully qualified message name.
5239 core.String name;
5240
5241 /// The list of types appearing in `oneof` definitions in this type.
5242 core.List<core.String> oneofs;
5243
5244 /// The protocol buffer options.
5245 core.List<Option> options;
5246
5247 /// The source context.
5248 SourceContext sourceContext;
5249
5250 /// The source syntax.
5251 /// Possible string values are:
5252 /// - "SYNTAX_PROTO2" : Syntax `proto2`.
5253 /// - "SYNTAX_PROTO3" : Syntax `proto3`.
5254 core.String syntax;
5255
5256 Type();
5257
5258 Type.fromJson(core.Map _json) {
5259 if (_json.containsKey("fields")) {
5260 fields = (_json["fields"] as core.List)
5261 .map<Field>((value) => new Field.fromJson(value))
5262 .toList();
5263 }
5264 if (_json.containsKey("name")) {
5265 name = _json["name"];
5266 }
5267 if (_json.containsKey("oneofs")) {
5268 oneofs = (_json["oneofs"] as core.List).cast<core.String>();
5269 }
5270 if (_json.containsKey("options")) {
5271 options = (_json["options"] as core.List)
5272 .map<Option>((value) => new Option.fromJson(value))
5273 .toList();
5274 }
5275 if (_json.containsKey("sourceContext")) {
5276 sourceContext = new SourceContext.fromJson(_json["sourceContext"]);
5277 }
5278 if (_json.containsKey("syntax")) {
5279 syntax = _json["syntax"];
5280 }
5281 }
5282
5283 core.Map<core.String, core.Object> toJson() {
5284 final core.Map<core.String, core.Object> _json =
5285 new core.Map<core.String, core.Object>();
5286 if (fields != null) {
5287 _json["fields"] = fields.map((value) => (value).toJson()).toList();
5288 }
5289 if (name != null) {
5290 _json["name"] = name;
5291 }
5292 if (oneofs != null) {
5293 _json["oneofs"] = oneofs;
5294 }
5295 if (options != null) {
5296 _json["options"] = options.map((value) => (value).toJson()).toList();
5297 }
5298 if (sourceContext != null) {
5299 _json["sourceContext"] = (sourceContext).toJson();
5300 }
5301 if (syntax != null) {
5302 _json["syntax"] = syntax;
5303 }
5304 return _json;
5305 }
5306}
5307
5308/// Configuration controlling usage of a service.
5309class Usage {
5310 /// The full resource name of a channel used for sending notifications to the
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02005311 /// service producer. Google Service Management currently only supports
Martin Kustermann12cdd522018-08-27 10:46:50 +02005312 /// [Google Cloud Pub/Sub](https://cloud.google.com/pubsub) as a notification
5313 /// channel. To use Google Cloud Pub/Sub as the channel, this must be the name
5314 /// of a Cloud Pub/Sub topic that uses the Cloud Pub/Sub topic name format
5315 /// documented in https://cloud.google.com/pubsub/docs/overview.
5316 core.String producerNotificationChannel;
5317
5318 /// Requirements that must be satisfied before a consumer project can use the
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02005319 /// service. Each requirement is of the form /; for example
5320 /// 'serviceusage.googleapis.com/billing-enabled'.
Martin Kustermann12cdd522018-08-27 10:46:50 +02005321 core.List<core.String> requirements;
5322
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02005323 /// A list of usage rules that apply to individual API methods. **NOTE:** All
5324 /// service configuration rules follow "last one wins" order.
Martin Kustermann12cdd522018-08-27 10:46:50 +02005325 core.List<UsageRule> rules;
5326
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02005327 /// The configuration of a per-product per-project service identity.
5328 GoogleApiServiceIdentity serviceIdentity;
5329
Martin Kustermann12cdd522018-08-27 10:46:50 +02005330 Usage();
5331
5332 Usage.fromJson(core.Map _json) {
5333 if (_json.containsKey("producerNotificationChannel")) {
5334 producerNotificationChannel = _json["producerNotificationChannel"];
5335 }
5336 if (_json.containsKey("requirements")) {
5337 requirements = (_json["requirements"] as core.List).cast<core.String>();
5338 }
5339 if (_json.containsKey("rules")) {
5340 rules = (_json["rules"] as core.List)
5341 .map<UsageRule>((value) => new UsageRule.fromJson(value))
5342 .toList();
5343 }
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02005344 if (_json.containsKey("serviceIdentity")) {
5345 serviceIdentity =
5346 new GoogleApiServiceIdentity.fromJson(_json["serviceIdentity"]);
5347 }
Martin Kustermann12cdd522018-08-27 10:46:50 +02005348 }
5349
5350 core.Map<core.String, core.Object> toJson() {
5351 final core.Map<core.String, core.Object> _json =
5352 new core.Map<core.String, core.Object>();
5353 if (producerNotificationChannel != null) {
5354 _json["producerNotificationChannel"] = producerNotificationChannel;
5355 }
5356 if (requirements != null) {
5357 _json["requirements"] = requirements;
5358 }
5359 if (rules != null) {
5360 _json["rules"] = rules.map((value) => (value).toJson()).toList();
5361 }
Jonas Finnemann Jensen94d5b4d2020-05-07 12:00:14 +02005362 if (serviceIdentity != null) {
5363 _json["serviceIdentity"] = (serviceIdentity).toJson();
5364 }
Martin Kustermann12cdd522018-08-27 10:46:50 +02005365 return _json;
5366 }
5367}
5368
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02005369/// Usage configuration rules for the service. NOTE: Under development. Use this
5370/// rule to configure unregistered calls for the service. Unregistered calls are
5371/// calls that do not contain consumer project identity. (Example: calls that do
5372/// not contain an API key). By default, API methods do not allow unregistered
5373/// calls, and each method call must be identified by a consumer project
5374/// identity. Use this rule to allow/disallow unregistered calls. Example of an
5375/// API that wants to allow unregistered calls for entire service. usage: rules:
5376/// - selector: "*" allow_unregistered_calls: true Example of a method that
5377/// wants to allow unregistered calls. usage: rules: - selector:
5378/// "google.example.library.v1.LibraryService.CreateBook"
5379/// allow_unregistered_calls: true
Martin Kustermann12cdd522018-08-27 10:46:50 +02005380class UsageRule {
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02005381 /// If true, the selected method allows unregistered calls, e.g. calls that
5382 /// don't identify any user or application.
Martin Kustermann12cdd522018-08-27 10:46:50 +02005383 core.bool allowUnregisteredCalls;
5384
5385 /// Selects the methods to which this rule applies. Use '*' to indicate all
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02005386 /// methods in all APIs. Refer to selector for syntax details.
Martin Kustermann12cdd522018-08-27 10:46:50 +02005387 core.String selector;
5388
5389 /// If true, the selected method should skip service control and the control
Jonas Finnemann Jensenef0c8a32020-10-07 20:58:20 +02005390 /// plane features, such as quota and billing, will not be available. This
5391 /// flag is used by Google Cloud Endpoints to bypass checks for internal
Martin Kustermann12cdd522018-08-27 10:46:50 +02005392 /// methods, such as service health check methods.
5393 core.bool skipServiceControl;
5394
5395 UsageRule();
5396
5397 UsageRule.fromJson(core.Map _json) {
5398 if (_json.containsKey("allowUnregisteredCalls")) {
5399 allowUnregisteredCalls = _json["allowUnregisteredCalls"];
5400 }
5401 if (_json.containsKey("selector")) {
5402 selector = _json["selector"];
5403 }
5404 if (_json.containsKey("skipServiceControl")) {
5405 skipServiceControl = _json["skipServiceControl"];
5406 }
5407 }
5408
5409 core.Map<core.String, core.Object> toJson() {
5410 final core.Map<core.String, core.Object> _json =
5411 new core.Map<core.String, core.Object>();
5412 if (allowUnregisteredCalls != null) {
5413 _json["allowUnregisteredCalls"] = allowUnregisteredCalls;
5414 }
5415 if (selector != null) {
5416 _json["selector"] = selector;
5417 }
5418 if (skipServiceControl != null) {
5419 _json["skipServiceControl"] = skipServiceControl;
5420 }
5421 return _json;
5422 }
5423}