@maxim_mazurok/gapi.client.eventarc-v1 0.0.20230421 → 0.0.20230505

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/index.d.ts +1334 -675
  2. package/package.json +1 -1
  3. package/tests.ts +1 -1
package/index.d.ts CHANGED
@@ -9,7 +9,7 @@
9
9
  // This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
10
10
  // In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
11
11
  // Generated from: https://eventarc.googleapis.com/$discovery/rest?version=v1
12
- // Revision: 20230421
12
+ // Revision: 20230505
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -24,18 +24,22 @@ declare namespace gapi.client {
24
24
  namespace eventarc {
25
25
  interface AuditConfig {
26
26
  /** The configuration for logging of each type of permission. */
27
- auditLogConfigs?: AuditLogConfig[];
27
+ auditLogConfigs?:
28
+ AuditLogConfig[];
28
29
  /**
29
30
  * Specifies a service that will be enabled for audit logging. For example, `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special value that covers all
30
31
  * services.
31
32
  */
32
- service?: string;
33
+ service?:
34
+ string;
33
35
  }
34
36
  interface AuditLogConfig {
35
37
  /** Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members. */
36
- exemptedMembers?: string[];
38
+ exemptedMembers?:
39
+ string[];
37
40
  /** The log type that this config enables. */
38
- logType?: string;
41
+ logType?:
42
+ string;
39
43
  }
40
44
  interface Binding {
41
45
  /**
@@ -43,7 +47,8 @@ declare namespace gapi.client {
43
47
  * then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the principals in this binding. To learn which
44
48
  * resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
45
49
  */
46
- condition?: Expr;
50
+ condition?:
51
+ Expr;
47
52
  /**
48
53
  * Specifies the principals requesting access for a Google Cloud resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on
49
54
  * the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service
@@ -60,280 +65,368 @@ declare namespace gapi.client {
60
65
  * has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group
61
66
  * retains the role in the binding.
62
67
  */
63
- members?: string[];
68
+ members?:
69
+ string[];
64
70
  /** Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. */
65
- role?: string;
71
+ role?:
72
+ string;
66
73
  }
67
74
  interface Channel {
68
75
  /** Output only. The activation token for the channel. The token must be used by the provider to register the channel for publishing. */
69
- activationToken?: string;
76
+ activationToken?:
77
+ string;
70
78
  /** Output only. The creation time. */
71
- createTime?: string;
79
+ createTime?:
80
+ string;
72
81
  /** Resource name of a KMS crypto key (managed by the user) used to encrypt/decrypt their event data. It must match the pattern `projects/*‍/locations/*‍/keyRings/*‍/cryptoKeys/*`. */
73
- cryptoKeyName?: string;
82
+ cryptoKeyName?:
83
+ string;
74
84
  /** Required. The resource name of the channel. Must be unique within the location on the project and must be in `projects/{project}/locations/{location}/channels/{channel_id}` format. */
75
- name?: string;
85
+ name?:
86
+ string;
76
87
  /**
77
88
  * The name of the event provider (e.g. Eventarc SaaS partner) associated with the channel. This provider will be granted permissions to publish events to the channel. Format:
78
89
  * `projects/{project}/locations/{location}/providers/{provider_id}`.
79
90
  */
80
- provider?: string;
91
+ provider?:
92
+ string;
81
93
  /** Output only. The name of the Pub/Sub topic created and managed by Eventarc system as a transport for the event delivery. Format: `projects/{project}/topics/{topic_id}`. */
82
- pubsubTopic?: string;
94
+ pubsubTopic?:
95
+ string;
83
96
  /** Output only. The state of a Channel. */
84
- state?: string;
97
+ state?:
98
+ string;
85
99
  /** Output only. Server assigned unique identifier for the channel. The value is a UUID4 string and guaranteed to remain unchanged until the resource is deleted. */
86
- uid?: string;
100
+ uid?:
101
+ string;
87
102
  /** Output only. The last-modified time. */
88
- updateTime?: string;
103
+ updateTime?:
104
+ string;
89
105
  }
90
106
  interface ChannelConnection {
91
107
  /**
92
108
  * Input only. Activation token for the channel. The token will be used during the creation of ChannelConnection to bind the channel with the provider project. This field will not be
93
109
  * stored in the provider resource.
94
110
  */
95
- activationToken?: string;
111
+ activationToken?:
112
+ string;
96
113
  /**
97
114
  * Required. The name of the connected subscriber Channel. This is a weak reference to avoid cross project and cross accounts references. This must be in
98
115
  * `projects/{project}/location/{location}/channels/{channel_id}` format.
99
116
  */
100
- channel?: string;
117
+ channel?:
118
+ string;
101
119
  /** Output only. The creation time. */
102
- createTime?: string;
120
+ createTime?:
121
+ string;
103
122
  /** Required. The name of the connection. */
104
- name?: string;
123
+ name?:
124
+ string;
105
125
  /** Output only. Server assigned ID of the resource. The server guarantees uniqueness and immutability until deleted. */
106
- uid?: string;
126
+ uid?:
127
+ string;
107
128
  /** Output only. The last-modified time. */
108
- updateTime?: string;
129
+ updateTime?:
130
+ string;
109
131
  }
110
132
  interface CloudRun {
111
133
  /**
112
134
  * Optional. The relative path on the Cloud Run service the events should be sent to. The value must conform to the definition of a URI path segment (section 3.3 of RFC2396). Examples:
113
135
  * "/route", "route", "route/subroute".
114
136
  */
115
- path?: string;
137
+ path?:
138
+ string;
116
139
  /** Required. The region the Cloud Run service is deployed in. */
117
- region?: string;
140
+ region?:
141
+ string;
118
142
  /**
119
143
  * Required. The name of the Cloud Run service being addressed. See https://cloud.google.com/run/docs/reference/rest/v1/namespaces.services. Only services located in the same project
120
144
  * as the trigger object can be addressed.
121
145
  */
122
- service?: string;
146
+ service?:
147
+ string;
123
148
  }
124
149
  interface Destination {
125
150
  /**
126
151
  * The Cloud Function resource name. Only Cloud Functions V2 is supported. Format: `projects/{project}/locations/{location}/functions/{function}` This is a read-only field. Creating
127
152
  * Cloud Functions V2 triggers is only supported via the Cloud Functions product. An error will be returned if the user sets this value.
128
153
  */
129
- cloudFunction?: string;
154
+ cloudFunction?:
155
+ string;
130
156
  /** Cloud Run fully-managed resource that receives the events. The resource should be in the same project as the trigger. */
131
- cloudRun?: CloudRun;
157
+ cloudRun?:
158
+ CloudRun;
132
159
  /** A GKE service capable of receiving events. The service should be running in the same project as the trigger. */
133
- gke?: GKE;
160
+ gke?:
161
+ GKE;
134
162
  /**
135
163
  * The resource name of the Workflow whose Executions are triggered by the events. The Workflow resource should be deployed in the same project as the trigger. Format:
136
164
  * `projects/{project}/locations/{location}/workflows/{workflow}`
137
165
  */
138
- workflow?: string;
166
+ workflow?:
167
+ string;
139
168
  }
140
169
  // tslint:disable-next-line:no-empty-interface
141
170
  interface Empty {
142
171
  }
143
172
  interface EventFilter {
144
- /** Required. The name of a CloudEvents attribute. Currently, only a subset of attributes are supported for filtering. All triggers MUST provide a filter for the 'type' attribute. */
145
- attribute?: string;
173
+ /**
174
+ * Required. The name of a CloudEvents attribute. Currently, only a subset of attributes are supported for filtering. You can [retrieve a specific provider's supported event
175
+ * types](/eventarc/docs/list-providers#describe-provider). All triggers MUST provide a filter for the 'type' attribute.
176
+ */
177
+ attribute?:
178
+ string;
146
179
  /**
147
180
  * Optional. The operator used for matching the events with the value of the filter. If not specified, only events that have an exact key-value pair specified in the filter are
148
181
  * matched. The only allowed value is `match-path-pattern`.
149
182
  */
150
- operator?: string;
183
+ operator?:
184
+ string;
151
185
  /** Required. The value for the attribute. */
152
- value?: string;
186
+ value?:
187
+ string;
153
188
  }
154
189
  interface EventType {
155
190
  /** Output only. Human friendly description of what the event type is about. For example "Bucket created in Cloud Storage". */
156
- description?: string;
191
+ description?:
192
+ string;
157
193
  /** Output only. URI for the event schema. For example "https://github.com/googleapis/google-cloudevents/blob/master/proto/google/events/cloud/storage/v1/events.proto" */
158
- eventSchemaUri?: string;
194
+ eventSchemaUri?:
195
+ string;
159
196
  /** Output only. Filtering attributes for the event type. */
160
- filteringAttributes?: FilteringAttribute[];
197
+ filteringAttributes?:
198
+ FilteringAttribute[];
161
199
  /**
162
200
  * Output only. The full name of the event type (for example, "google.cloud.storage.object.v1.finalized"). In the form of {provider-specific-prefix}.{resource}.{version}.{verb}. Types
163
201
  * MUST be versioned and event schemas are guaranteed to remain backward compatible within one version. Note that event type versions and API versions do not need to match.
164
202
  */
165
- type?: string;
203
+ type?:
204
+ string;
166
205
  }
167
206
  interface Expr {
168
207
  /** Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI. */
169
- description?: string;
208
+ description?:
209
+ string;
170
210
  /** Textual representation of an expression in Common Expression Language syntax. */
171
- expression?: string;
211
+ expression?:
212
+ string;
172
213
  /** Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file. */
173
- location?: string;
214
+ location?:
215
+ string;
174
216
  /** Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression. */
175
- title?: string;
217
+ title?:
218
+ string;
176
219
  }
177
220
  interface FilteringAttribute {
178
221
  /** Output only. Attribute used for filtering the event type. */
179
- attribute?: string;
222
+ attribute?:
223
+ string;
180
224
  /** Output only. Description of the purpose of the attribute. */
181
- description?: string;
225
+ description?:
226
+ string;
182
227
  /** Output only. If true, the attribute accepts matching expressions in the Eventarc PathPattern format. */
183
- pathPatternSupported?: boolean;
228
+ pathPatternSupported?:
229
+ boolean;
184
230
  /** Output only. If true, the triggers for this provider should always specify a filter on these attributes. Trigger creation will fail otherwise. */
185
- required?: boolean;
231
+ required?:
232
+ boolean;
186
233
  }
187
234
  interface GKE {
188
235
  /** Required. The name of the cluster the GKE service is running in. The cluster must be running in the same project as the trigger being created. */
189
- cluster?: string;
236
+ cluster?:
237
+ string;
190
238
  /**
191
239
  * Required. The name of the Google Compute Engine in which the cluster resides, which can either be compute zone (for example, us-central1-a) for the zonal clusters or region (for
192
240
  * example, us-central1) for regional clusters.
193
241
  */
194
- location?: string;
242
+ location?:
243
+ string;
195
244
  /** Required. The namespace the GKE service is running in. */
196
- namespace?: string;
245
+ namespace?:
246
+ string;
197
247
  /**
198
248
  * Optional. The relative path on the GKE service the events should be sent to. The value must conform to the definition of a URI path segment (section 3.3 of RFC2396). Examples:
199
249
  * "/route", "route", "route/subroute".
200
250
  */
201
- path?: string;
251
+ path?:
252
+ string;
202
253
  /** Required. Name of the GKE service. */
203
- service?: string;
254
+ service?:
255
+ string;
204
256
  }
205
257
  interface GoogleChannelConfig {
206
258
  /**
207
259
  * Optional. Resource name of a KMS crypto key (managed by the user) used to encrypt/decrypt their event data. It must match the pattern
208
260
  * `projects/*‍/locations/*‍/keyRings/*‍/cryptoKeys/*`.
209
261
  */
210
- cryptoKeyName?: string;
262
+ cryptoKeyName?:
263
+ string;
211
264
  /** Required. The resource name of the config. Must be in the format of, `projects/{project}/locations/{location}/googleChannelConfig`. */
212
- name?: string;
265
+ name?:
266
+ string;
213
267
  /** Output only. The last-modified time. */
214
- updateTime?: string;
268
+ updateTime?:
269
+ string;
215
270
  }
216
271
  // tslint:disable-next-line:no-empty-interface
217
272
  interface GoogleLongrunningCancelOperationRequest {
218
273
  }
219
274
  interface GoogleLongrunningListOperationsResponse {
220
275
  /** The standard List next-page token. */
221
- nextPageToken?: string;
276
+ nextPageToken?:
277
+ string;
222
278
  /** A list of operations that matches the specified filter in the request. */
223
- operations?: GoogleLongrunningOperation[];
279
+ operations?:
280
+ GoogleLongrunningOperation[];
224
281
  }
225
282
  interface GoogleLongrunningOperation {
226
283
  /** If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available. */
227
- done?: boolean;
284
+ done?:
285
+ boolean;
228
286
  /** The error result of the operation in case of failure or cancellation. */
229
- error?: GoogleRpcStatus;
287
+ error?:
288
+ GoogleRpcStatus;
230
289
  /**
231
290
  * Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such
232
291
  * metadata. Any method that returns a long-running operation should document the metadata type, if any.
233
292
  */
234
- metadata?: { [P in string]: any };
293
+ metadata?:
294
+ { [P in string]: any };
235
295
  /**
236
296
  * The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending
237
297
  * with `operations/{unique_id}`.
238
298
  */
239
- name?: string;
299
+ name?:
300
+ string;
240
301
  /**
241
302
  * The normal response of the operation in case of success. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the
242
303
  * original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the
243
304
  * original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
244
305
  */
245
- response?: { [P in string]: any };
306
+ response?:
307
+ { [P in string]: any };
246
308
  }
247
309
  interface GoogleRpcStatus {
248
310
  /** The status code, which should be an enum value of google.rpc.Code. */
249
- code?: number;
311
+ code?:
312
+ number;
250
313
  /** A list of messages that carry the error details. There is a common set of message types for APIs to use. */
251
- details?: Array<{ [P in string]: any }>;
314
+ details?:
315
+ Array<{ [P in string]: any }>;
252
316
  /**
253
317
  * A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the
254
318
  * client.
255
319
  */
256
- message?: string;
320
+ message?:
321
+ string;
257
322
  }
258
323
  interface ListChannelConnectionsResponse {
259
324
  /** The requested channel connections, up to the number specified in `page_size`. */
260
- channelConnections?: ChannelConnection[];
325
+ channelConnections?:
326
+ ChannelConnection[];
261
327
  /** A page token that can be sent to `ListChannelConnections` to request the next page. If this is empty, then there are no more pages. */
262
- nextPageToken?: string;
328
+ nextPageToken?:
329
+ string;
263
330
  /** Unreachable resources, if any. */
264
- unreachable?: string[];
331
+ unreachable?:
332
+ string[];
265
333
  }
266
334
  interface ListChannelsResponse {
267
335
  /** The requested channels, up to the number specified in `page_size`. */
268
- channels?: Channel[];
336
+ channels?:
337
+ Channel[];
269
338
  /** A page token that can be sent to `ListChannels` to request the next page. If this is empty, then there are no more pages. */
270
- nextPageToken?: string;
339
+ nextPageToken?:
340
+ string;
271
341
  /** Unreachable resources, if any. */
272
- unreachable?: string[];
342
+ unreachable?:
343
+ string[];
273
344
  }
274
345
  interface ListLocationsResponse {
275
346
  /** A list of locations that matches the specified filter in the request. */
276
- locations?: Location[];
347
+ locations?:
348
+ Location[];
277
349
  /** The standard List next-page token. */
278
- nextPageToken?: string;
350
+ nextPageToken?:
351
+ string;
279
352
  }
280
353
  interface ListProvidersResponse {
281
354
  /** A page token that can be sent to `ListProviders` to request the next page. If this is empty, then there are no more pages. */
282
- nextPageToken?: string;
355
+ nextPageToken?:
356
+ string;
283
357
  /** The requested providers, up to the number specified in `page_size`. */
284
- providers?: Provider[];
358
+ providers?:
359
+ Provider[];
285
360
  /** Unreachable resources, if any. */
286
- unreachable?: string[];
361
+ unreachable?:
362
+ string[];
287
363
  }
288
364
  interface ListTriggersResponse {
289
365
  /** A page token that can be sent to `ListTriggers` to request the next page. If this is empty, then there are no more pages. */
290
- nextPageToken?: string;
366
+ nextPageToken?:
367
+ string;
291
368
  /** The requested triggers, up to the number specified in `page_size`. */
292
- triggers?: Trigger[];
369
+ triggers?:
370
+ Trigger[];
293
371
  /** Unreachable resources, if any. */
294
- unreachable?: string[];
372
+ unreachable?:
373
+ string[];
295
374
  }
296
375
  interface Location {
297
376
  /** The friendly name for this location, typically a nearby city name. For example, "Tokyo". */
298
- displayName?: string;
377
+ displayName?:
378
+ string;
299
379
  /** Cross-service attributes for the location. For example {"cloud.googleapis.com/region": "us-east1"} */
300
- labels?: { [P in string]: string };
380
+ labels?:
381
+ { [P in string]: string };
301
382
  /** The canonical id for this location. For example: `"us-east1"`. */
302
- locationId?: string;
383
+ locationId?:
384
+ string;
303
385
  /** Service-specific metadata. For example the available capacity at the given location. */
304
- metadata?: { [P in string]: any };
386
+ metadata?:
387
+ { [P in string]: any };
305
388
  /** Resource name for the location, which may vary between implementations. For example: `"projects/example-project/locations/us-east1"` */
306
- name?: string;
389
+ name?:
390
+ string;
307
391
  }
308
392
  interface OperationMetadata {
309
393
  /** Output only. API version used to start the operation. */
310
- apiVersion?: string;
394
+ apiVersion?:
395
+ string;
311
396
  /** Output only. The time the operation was created. */
312
- createTime?: string;
397
+ createTime?:
398
+ string;
313
399
  /** Output only. The time the operation finished running. */
314
- endTime?: string;
400
+ endTime?:
401
+ string;
315
402
  /**
316
403
  * Output only. Identifies whether the user has requested cancellation of the operation. Operations that have successfully been cancelled have Operation.error value with a
317
404
  * google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
318
405
  */
319
- requestedCancellation?: boolean;
406
+ requestedCancellation?:
407
+ boolean;
320
408
  /** Output only. Human-readable status of the operation, if any. */
321
- statusMessage?: string;
409
+ statusMessage?:
410
+ string;
322
411
  /** Output only. Server-defined resource path for the target of the operation. */
323
- target?: string;
412
+ target?:
413
+ string;
324
414
  /** Output only. Name of the verb executed by the operation. */
325
- verb?: string;
415
+ verb?:
416
+ string;
326
417
  }
327
418
  interface Policy {
328
419
  /** Specifies cloud audit logging configuration for this policy. */
329
- auditConfigs?: AuditConfig[];
420
+ auditConfigs?:
421
+ AuditConfig[];
330
422
  /**
331
423
  * Associates a list of `members`, or principals, with a `role`. Optionally, may specify a `condition` that determines how and when the `bindings` are applied. Each of the `bindings`
332
424
  * must contain at least one principal. The `bindings` in a `Policy` can refer to up to 1,500 principals; up to 250 of these principals can be Google groups. Each occurrence of a
333
425
  * principal counts towards these limits. For example, if the `bindings` grant 50 different roles to `user:alice@example.com`, and not to any other principal, then you can add another
334
426
  * 1,450 principals to the `bindings` in the `Policy`.
335
427
  */
336
- bindings?: Binding[];
428
+ bindings?:
429
+ Binding[];
337
430
  /**
338
431
  * `etag` is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. It is strongly suggested that systems make
339
432
  * use of the `etag` in the read-modify-write cycle to perform policy updates in order to avoid race conditions: An `etag` is returned in the response to `getIamPolicy`, and systems
@@ -341,7 +434,8 @@ declare namespace gapi.client {
341
434
  * Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1`
342
435
  * policy, and all of the conditions in the version `3` policy are lost.
343
436
  */
344
- etag?: string;
437
+ etag?:
438
+ string;
345
439
  /**
346
440
  * Specifies the format of the policy. Valid values are `0`, `1`, and `3`. Requests that specify an invalid value are rejected. Any operation that affects conditional role bindings
347
441
  * must specify version `3`. This requirement applies to the following operations: * Getting a policy that includes a conditional role binding * Adding a conditional role binding to a
@@ -350,238 +444,320 @@ declare namespace gapi.client {
350
444
  * policy, and all of the conditions in the version `3` policy are lost. If a policy does not include any conditions, operations on that policy may specify any valid version or leave
351
445
  * the field unset. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
352
446
  */
353
- version?: number;
447
+ version?:
448
+ number;
354
449
  }
355
450
  interface Provider {
356
451
  /** Output only. Human friendly name for the Provider. For example "Cloud Storage". */
357
- displayName?: string;
452
+ displayName?:
453
+ string;
358
454
  /** Output only. Event types for this provider. */
359
- eventTypes?: EventType[];
455
+ eventTypes?:
456
+ EventType[];
360
457
  /** Output only. In `projects/{project}/locations/{location}/providers/{provider_id}` format. */
361
- name?: string;
458
+ name?:
459
+ string;
362
460
  }
363
461
  interface Pubsub {
364
462
  /**
365
463
  * Output only. The name of the Pub/Sub subscription created and managed by Eventarc as a transport for the event delivery. Format:
366
464
  * `projects/{PROJECT_ID}/subscriptions/{SUBSCRIPTION_NAME}`.
367
465
  */
368
- subscription?: string;
466
+ subscription?:
467
+ string;
369
468
  /**
370
469
  * Optional. The name of the Pub/Sub topic created and managed by Eventarc as a transport for the event delivery. Format: `projects/{PROJECT_ID}/topics/{TOPIC_NAME}`. You can set an
371
470
  * existing topic for triggers of the type `google.cloud.pubsub.topic.v1.messagePublished`. The topic you provide here is not deleted by Eventarc at trigger deletion.
372
471
  */
373
- topic?: string;
472
+ topic?:
473
+ string;
374
474
  }
375
475
  interface SetIamPolicyRequest {
376
476
  /**
377
477
  * REQUIRED: The complete policy to be applied to the `resource`. The size of the policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Google Cloud
378
478
  * services (such as Projects) might reject them.
379
479
  */
380
- policy?: Policy;
480
+ policy?:
481
+ Policy;
381
482
  /**
382
483
  * OPTIONAL: A FieldMask specifying which fields of the policy to modify. Only the fields in the mask will be modified. If no mask is provided, the following default mask is used:
383
484
  * `paths: "bindings, etag"`
384
485
  */
385
- updateMask?: string;
486
+ updateMask?:
487
+ string;
386
488
  }
387
489
  interface StateCondition {
388
490
  /** The canonical code of the condition. */
389
- code?: string;
491
+ code?:
492
+ string;
390
493
  /** Human-readable message. */
391
- message?: string;
494
+ message?:
495
+ string;
392
496
  }
393
497
  interface TestIamPermissionsRequest {
394
498
  /**
395
499
  * The set of permissions to check for the `resource`. Permissions with wildcards (such as `*` or `storage.*`) are not allowed. For more information see [IAM
396
500
  * Overview](https://cloud.google.com/iam/docs/overview#permissions).
397
501
  */
398
- permissions?: string[];
502
+ permissions?:
503
+ string[];
399
504
  }
400
505
  interface TestIamPermissionsResponse {
401
506
  /** A subset of `TestPermissionsRequest.permissions` that the caller is allowed. */
402
- permissions?: string[];
507
+ permissions?:
508
+ string[];
403
509
  }
404
510
  interface Transport {
405
511
  /** The Pub/Sub topic and subscription used by Eventarc as a transport intermediary. */
406
- pubsub?: Pubsub;
512
+ pubsub?:
513
+ Pubsub;
407
514
  }
408
515
  interface Trigger {
409
516
  /**
410
517
  * Optional. The name of the channel associated with the trigger in `projects/{project}/locations/{location}/channels/{channel}` format. You must provide a channel to receive events
411
518
  * from Eventarc SaaS partners.
412
519
  */
413
- channel?: string;
520
+ channel?:
521
+ string;
414
522
  /** Output only. The reason(s) why a trigger is in FAILED state. */
415
- conditions?: { [P in string]: StateCondition };
523
+ conditions?:
524
+ { [P in string]: StateCondition };
416
525
  /** Output only. The creation time. */
417
- createTime?: string;
526
+ createTime?:
527
+ string;
418
528
  /** Required. Destination specifies where the events should be sent to. */
419
- destination?: Destination;
529
+ destination?:
530
+ Destination;
420
531
  /**
421
532
  * Output only. This checksum is computed by the server based on the value of other fields, and might be sent only on create requests to ensure that the client has an up-to-date value
422
533
  * before proceeding.
423
534
  */
424
- etag?: string;
535
+ etag?:
536
+ string;
425
537
  /**
426
538
  * Optional. EventDataContentType specifies the type of payload in MIME format that is expected from the CloudEvent data field. This is set to `application/json` if the value is not
427
539
  * defined.
428
540
  */
429
- eventDataContentType?: string;
541
+ eventDataContentType?:
542
+ string;
430
543
  /** Required. Unordered list. The list of filters that applies to event attributes. Only events that match all the provided filters are sent to the destination. */
431
- eventFilters?: EventFilter[];
544
+ eventFilters?:
545
+ EventFilter[];
432
546
  /** Optional. User labels attached to the triggers that can be used to group resources. */
433
- labels?: { [P in string]: string };
547
+ labels?:
548
+ { [P in string]: string };
434
549
  /** Required. The resource name of the trigger. Must be unique within the location of the project and must be in `projects/{project}/locations/{location}/triggers/{trigger}` format. */
435
- name?: string;
550
+ name?:
551
+ string;
436
552
  /**
437
- * Optional. The IAM service account email associated with the trigger. The service account represents the identity of the trigger. The principal who calls this API must have the
438
- * `iam.serviceAccounts.actAs` permission in the service account. See https://cloud.google.com/iam/docs/understanding-service-accounts?hl=en#sa_common for more information. For Cloud
439
- * Run destinations, this service account is used to generate identity tokens when invoking the service. See
440
- * https://cloud.google.com/run/docs/triggering/pubsub-push#create-service-account for information on how to invoke authenticated Cloud Run services. To create Audit Log triggers, the
441
- * service account should also have the `roles/eventarc.eventReceiver` IAM role.
553
+ * Optional. The IAM service account email associated with the trigger. The service account represents the identity of the trigger. The `iam.serviceAccounts.actAs` permission must be
554
+ * granted on the service account to allow a principal to impersonate the service account. For more information, see the [Roles and permissions](/eventarc/docs/all-roles-permissions)
555
+ * page specific to the trigger destination.
442
556
  */
443
- serviceAccount?: string;
557
+ serviceAccount?:
558
+ string;
444
559
  /**
445
560
  * Optional. To deliver messages, Eventarc might use other Google Cloud products as a transport intermediary. This field contains a reference to that transport intermediary. This
446
561
  * information can be used for debugging purposes.
447
562
  */
448
- transport?: Transport;
563
+ transport?:
564
+ Transport;
449
565
  /** Output only. Server-assigned unique identifier for the trigger. The value is a UUID4 string and guaranteed to remain unchanged until the resource is deleted. */
450
- uid?: string;
566
+ uid?:
567
+ string;
451
568
  /** Output only. The last-modified time. */
452
- updateTime?: string;
569
+ updateTime?:
570
+ string;
453
571
  }
454
572
  interface ChannelConnectionsResource {
455
573
  /** Create a new ChannelConnection in a particular project and location. */
456
574
  create(request: {
457
575
  /** V1 error format. */
458
- "$.xgafv"?: string;
576
+ "$.xgafv"?:
577
+ string;
459
578
  /** OAuth access token. */
460
- access_token?: string;
579
+ access_token?:
580
+ string;
461
581
  /** Data format for response. */
462
- alt?: string;
582
+ alt?:
583
+ string;
463
584
  /** JSONP */
464
- callback?: string;
585
+ callback?:
586
+ string;
465
587
  /** Required. The user-provided ID to be assigned to the channel connection. */
466
- channelConnectionId?: string;
588
+ channelConnectionId?:
589
+ string;
467
590
  /** Selector specifying which fields to include in a partial response. */
468
- fields?: string;
591
+ fields?:
592
+ string;
469
593
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
470
- key?: string;
594
+ key?:
595
+ string;
471
596
  /** OAuth 2.0 token for the current user. */
472
- oauth_token?: string;
597
+ oauth_token?:
598
+ string;
473
599
  /** Required. The parent collection in which to add this channel connection. */
474
- parent: string;
600
+ parent:
601
+ string;
475
602
  /** Returns response with indentations and line breaks. */
476
- prettyPrint?: boolean;
603
+ prettyPrint?:
604
+ boolean;
477
605
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
478
- quotaUser?: string;
606
+ quotaUser?:
607
+ string;
479
608
  /** Upload protocol for media (e.g. "raw", "multipart"). */
480
- upload_protocol?: string;
609
+ upload_protocol?:
610
+ string;
481
611
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
482
- uploadType?: string;
612
+ uploadType?:
613
+ string;
483
614
  /** Request body */
484
- resource: ChannelConnection;
615
+ resource:
616
+ ChannelConnection;
485
617
  }): Request<GoogleLongrunningOperation>;
486
618
  create(request: {
487
619
  /** V1 error format. */
488
- "$.xgafv"?: string;
620
+ "$.xgafv"?:
621
+ string;
489
622
  /** OAuth access token. */
490
- access_token?: string;
623
+ access_token?:
624
+ string;
491
625
  /** Data format for response. */
492
- alt?: string;
626
+ alt?:
627
+ string;
493
628
  /** JSONP */
494
- callback?: string;
629
+ callback?:
630
+ string;
495
631
  /** Required. The user-provided ID to be assigned to the channel connection. */
496
- channelConnectionId?: string;
632
+ channelConnectionId?:
633
+ string;
497
634
  /** Selector specifying which fields to include in a partial response. */
498
- fields?: string;
635
+ fields?:
636
+ string;
499
637
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
500
- key?: string;
638
+ key?:
639
+ string;
501
640
  /** OAuth 2.0 token for the current user. */
502
- oauth_token?: string;
641
+ oauth_token?:
642
+ string;
503
643
  /** Required. The parent collection in which to add this channel connection. */
504
- parent: string;
644
+ parent:
645
+ string;
505
646
  /** Returns response with indentations and line breaks. */
506
- prettyPrint?: boolean;
647
+ prettyPrint?:
648
+ boolean;
507
649
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
508
- quotaUser?: string;
650
+ quotaUser?:
651
+ string;
509
652
  /** Upload protocol for media (e.g. "raw", "multipart"). */
510
- upload_protocol?: string;
653
+ upload_protocol?:
654
+ string;
511
655
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
512
- uploadType?: string;
656
+ uploadType?:
657
+ string;
513
658
  },
514
659
  body: ChannelConnection): Request<GoogleLongrunningOperation>;
515
660
  /** Delete a single ChannelConnection. */
516
661
  delete(request?: {
517
662
  /** V1 error format. */
518
- "$.xgafv"?: string;
663
+ "$.xgafv"?:
664
+ string;
519
665
  /** OAuth access token. */
520
- access_token?: string;
666
+ access_token?:
667
+ string;
521
668
  /** Data format for response. */
522
- alt?: string;
669
+ alt?:
670
+ string;
523
671
  /** JSONP */
524
- callback?: string;
672
+ callback?:
673
+ string;
525
674
  /** Selector specifying which fields to include in a partial response. */
526
- fields?: string;
675
+ fields?:
676
+ string;
527
677
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
528
- key?: string;
678
+ key?:
679
+ string;
529
680
  /** Required. The name of the channel connection to delete. */
530
- name: string;
681
+ name:
682
+ string;
531
683
  /** OAuth 2.0 token for the current user. */
532
- oauth_token?: string;
684
+ oauth_token?:
685
+ string;
533
686
  /** Returns response with indentations and line breaks. */
534
- prettyPrint?: boolean;
687
+ prettyPrint?:
688
+ boolean;
535
689
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
536
- quotaUser?: string;
690
+ quotaUser?:
691
+ string;
537
692
  /** Upload protocol for media (e.g. "raw", "multipart"). */
538
- upload_protocol?: string;
693
+ upload_protocol?:
694
+ string;
539
695
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
540
- uploadType?: string;
696
+ uploadType?:
697
+ string;
541
698
  }): Request<GoogleLongrunningOperation>;
542
699
  /** Get a single ChannelConnection. */
543
700
  get(request?: {
544
701
  /** V1 error format. */
545
- "$.xgafv"?: string;
702
+ "$.xgafv"?:
703
+ string;
546
704
  /** OAuth access token. */
547
- access_token?: string;
705
+ access_token?:
706
+ string;
548
707
  /** Data format for response. */
549
- alt?: string;
708
+ alt?:
709
+ string;
550
710
  /** JSONP */
551
- callback?: string;
711
+ callback?:
712
+ string;
552
713
  /** Selector specifying which fields to include in a partial response. */
553
- fields?: string;
714
+ fields?:
715
+ string;
554
716
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
555
- key?: string;
717
+ key?:
718
+ string;
556
719
  /** Required. The name of the channel connection to get. */
557
- name: string;
720
+ name:
721
+ string;
558
722
  /** OAuth 2.0 token for the current user. */
559
- oauth_token?: string;
723
+ oauth_token?:
724
+ string;
560
725
  /** Returns response with indentations and line breaks. */
561
- prettyPrint?: boolean;
726
+ prettyPrint?:
727
+ boolean;
562
728
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
563
- quotaUser?: string;
729
+ quotaUser?:
730
+ string;
564
731
  /** Upload protocol for media (e.g. "raw", "multipart"). */
565
- upload_protocol?: string;
732
+ upload_protocol?:
733
+ string;
566
734
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
567
- uploadType?: string;
735
+ uploadType?:
736
+ string;
568
737
  }): Request<ChannelConnection>;
569
738
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
570
739
  getIamPolicy(request?: {
571
740
  /** V1 error format. */
572
- "$.xgafv"?: string;
741
+ "$.xgafv"?:
742
+ string;
573
743
  /** OAuth access token. */
574
- access_token?: string;
744
+ access_token?:
745
+ string;
575
746
  /** Data format for response. */
576
- alt?: string;
747
+ alt?:
748
+ string;
577
749
  /** JSONP */
578
- callback?: string;
750
+ callback?:
751
+ string;
579
752
  /** Selector specifying which fields to include in a partial response. */
580
- fields?: string;
753
+ fields?:
754
+ string;
581
755
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
582
- key?: string;
756
+ key?:
757
+ string;
583
758
  /** OAuth 2.0 token for the current user. */
584
- oauth_token?: string;
759
+ oauth_token?:
760
+ string;
585
761
  /**
586
762
  * Optional. The maximum policy version that will be used to format the policy. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. Requests for
587
763
  * policies with any conditional role bindings must specify version 3. Policies with no conditional role bindings may specify any valid value or leave the field unset. The policy
@@ -589,84 +765,116 @@ declare namespace gapi.client {
589
765
  * role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM
590
766
  * documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
591
767
  */
592
- "options.requestedPolicyVersion"?: number;
768
+ "options.requestedPolicyVersion"?:
769
+ number;
593
770
  /** Returns response with indentations and line breaks. */
594
- prettyPrint?: boolean;
771
+ prettyPrint?:
772
+ boolean;
595
773
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
596
- quotaUser?: string;
774
+ quotaUser?:
775
+ string;
597
776
  /**
598
777
  * REQUIRED: The resource for which the policy is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this
599
778
  * field.
600
779
  */
601
- resource: string;
780
+ resource:
781
+ string;
602
782
  /** Upload protocol for media (e.g. "raw", "multipart"). */
603
- upload_protocol?: string;
783
+ upload_protocol?:
784
+ string;
604
785
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
605
- uploadType?: string;
786
+ uploadType?:
787
+ string;
606
788
  }): Request<Policy>;
607
789
  /** List channel connections. */
608
790
  list(request?: {
609
791
  /** V1 error format. */
610
- "$.xgafv"?: string;
792
+ "$.xgafv"?:
793
+ string;
611
794
  /** OAuth access token. */
612
- access_token?: string;
795
+ access_token?:
796
+ string;
613
797
  /** Data format for response. */
614
- alt?: string;
798
+ alt?:
799
+ string;
615
800
  /** JSONP */
616
- callback?: string;
801
+ callback?:
802
+ string;
617
803
  /** Selector specifying which fields to include in a partial response. */
618
- fields?: string;
804
+ fields?:
805
+ string;
619
806
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
620
- key?: string;
807
+ key?:
808
+ string;
621
809
  /** OAuth 2.0 token for the current user. */
622
- oauth_token?: string;
810
+ oauth_token?:
811
+ string;
623
812
  /** The maximum number of channel connections to return on each page. Note: The service may send fewer responses. */
624
- pageSize?: number;
813
+ pageSize?:
814
+ number;
625
815
  /**
626
816
  * The page token; provide the value from the `next_page_token` field in a previous `ListChannelConnections` call to retrieve the subsequent page. When paginating, all other
627
817
  * parameters provided to `ListChannelConnetions` match the call that provided the page token.
628
818
  */
629
- pageToken?: string;
819
+ pageToken?:
820
+ string;
630
821
  /** Required. The parent collection from which to list channel connections. */
631
- parent: string;
822
+ parent:
823
+ string;
632
824
  /** Returns response with indentations and line breaks. */
633
- prettyPrint?: boolean;
825
+ prettyPrint?:
826
+ boolean;
634
827
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
635
- quotaUser?: string;
828
+ quotaUser?:
829
+ string;
636
830
  /** Upload protocol for media (e.g. "raw", "multipart"). */
637
- upload_protocol?: string;
831
+ upload_protocol?:
832
+ string;
638
833
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
639
- uploadType?: string;
834
+ uploadType?:
835
+ string;
640
836
  }): Request<ListChannelConnectionsResponse>;
641
837
  /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
642
838
  setIamPolicy(request: {
643
839
  /** V1 error format. */
644
- "$.xgafv"?: string;
840
+ "$.xgafv"?:
841
+ string;
645
842
  /** OAuth access token. */
646
- access_token?: string;
843
+ access_token?:
844
+ string;
647
845
  /** Data format for response. */
648
- alt?: string;
846
+ alt?:
847
+ string;
649
848
  /** JSONP */
650
- callback?: string;
849
+ callback?:
850
+ string;
651
851
  /** Selector specifying which fields to include in a partial response. */
652
- fields?: string;
852
+ fields?:
853
+ string;
653
854
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
654
- key?: string;
855
+ key?:
856
+ string;
655
857
  /** OAuth 2.0 token for the current user. */
656
- oauth_token?: string;
858
+ oauth_token?:
859
+ string;
657
860
  /** Returns response with indentations and line breaks. */
658
- prettyPrint?: boolean;
861
+ prettyPrint?:
862
+ boolean;
659
863
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
660
- quotaUser?: string;
864
+ quotaUser?:
865
+ string;
661
866
  /**
662
867
  * REQUIRED: The resource for which the policy is being specified. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this
663
868
  * field.
664
869
  */
665
- resource: string;
870
+ resource:
871
+ string;
666
872
  /** Upload protocol for media (e.g. "raw", "multipart"). */
667
- upload_protocol?: string;
873
+ upload_protocol?:
874
+ string;
668
875
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
669
- uploadType?: string;
876
+ uploadType?:
877
+ string;
670
878
  },
671
879
  body: SetIamPolicyRequest): Request<Policy>;
672
880
  /**
@@ -675,32 +883,44 @@ declare namespace gapi.client {
675
883
  */
676
884
  testIamPermissions(request: {
677
885
  /** V1 error format. */
678
- "$.xgafv"?: string;
886
+ "$.xgafv"?:
887
+ string;
679
888
  /** OAuth access token. */
680
- access_token?: string;
889
+ access_token?:
890
+ string;
681
891
  /** Data format for response. */
682
- alt?: string;
892
+ alt?:
893
+ string;
683
894
  /** JSONP */
684
- callback?: string;
895
+ callback?:
896
+ string;
685
897
  /** Selector specifying which fields to include in a partial response. */
686
- fields?: string;
898
+ fields?:
899
+ string;
687
900
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
688
- key?: string;
901
+ key?:
902
+ string;
689
903
  /** OAuth 2.0 token for the current user. */
690
- oauth_token?: string;
904
+ oauth_token?:
905
+ string;
691
906
  /** Returns response with indentations and line breaks. */
692
- prettyPrint?: boolean;
907
+ prettyPrint?:
908
+ boolean;
693
909
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
694
- quotaUser?: string;
910
+ quotaUser?:
911
+ string;
695
912
  /**
696
913
  * REQUIRED: The resource for which the policy detail is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for
697
914
  * this field.
698
915
  */
699
- resource: string;
916
+ resource:
917
+ string;
700
918
  /** Upload protocol for media (e.g. "raw", "multipart"). */
701
- upload_protocol?: string;
919
+ upload_protocol?:
920
+ string;
702
921
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
703
- uploadType?: string;
922
+ uploadType?:
923
+ string;
704
924
  },
705
925
  body: TestIamPermissionsRequest): Request<TestIamPermissionsResponse>;
706
926
  }
@@ -708,139 +928,200 @@ declare namespace gapi.client {
708
928
  /** Create a new channel in a particular project and location. */
709
929
  create(request: {
710
930
  /** V1 error format. */
711
- "$.xgafv"?: string;
931
+ "$.xgafv"?:
932
+ string;
712
933
  /** OAuth access token. */
713
- access_token?: string;
934
+ access_token?:
935
+ string;
714
936
  /** Data format for response. */
715
- alt?: string;
937
+ alt?:
938
+ string;
716
939
  /** JSONP */
717
- callback?: string;
940
+ callback?:
941
+ string;
718
942
  /** Required. The user-provided ID to be assigned to the channel. */
719
- channelId?: string;
943
+ channelId?:
944
+ string;
720
945
  /** Selector specifying which fields to include in a partial response. */
721
- fields?: string;
946
+ fields?:
947
+ string;
722
948
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
723
- key?: string;
949
+ key?:
950
+ string;
724
951
  /** OAuth 2.0 token for the current user. */
725
- oauth_token?: string;
952
+ oauth_token?:
953
+ string;
726
954
  /** Required. The parent collection in which to add this channel. */
727
- parent: string;
955
+ parent:
956
+ string;
728
957
  /** Returns response with indentations and line breaks. */
729
- prettyPrint?: boolean;
958
+ prettyPrint?:
959
+ boolean;
730
960
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
731
- quotaUser?: string;
961
+ quotaUser?:
962
+ string;
732
963
  /** Upload protocol for media (e.g. "raw", "multipart"). */
733
- upload_protocol?: string;
964
+ upload_protocol?:
965
+ string;
734
966
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
735
- uploadType?: string;
736
- /** Required. If set, validate the request and preview the review, but do not post it. */
737
- validateOnly?: boolean;
967
+ uploadType?:
968
+ string;
969
+ /** Optional. If set, validate the request and preview the review, but do not post it. */
970
+ validateOnly?:
971
+ boolean;
738
972
  /** Request body */
739
- resource: Channel;
973
+ resource:
974
+ Channel;
740
975
  }): Request<GoogleLongrunningOperation>;
741
976
  create(request: {
742
977
  /** V1 error format. */
743
- "$.xgafv"?: string;
978
+ "$.xgafv"?:
979
+ string;
744
980
  /** OAuth access token. */
745
- access_token?: string;
981
+ access_token?:
982
+ string;
746
983
  /** Data format for response. */
747
- alt?: string;
984
+ alt?:
985
+ string;
748
986
  /** JSONP */
749
- callback?: string;
987
+ callback?:
988
+ string;
750
989
  /** Required. The user-provided ID to be assigned to the channel. */
751
- channelId?: string;
990
+ channelId?:
991
+ string;
752
992
  /** Selector specifying which fields to include in a partial response. */
753
- fields?: string;
993
+ fields?:
994
+ string;
754
995
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
755
- key?: string;
996
+ key?:
997
+ string;
756
998
  /** OAuth 2.0 token for the current user. */
757
- oauth_token?: string;
999
+ oauth_token?:
1000
+ string;
758
1001
  /** Required. The parent collection in which to add this channel. */
759
- parent: string;
1002
+ parent:
1003
+ string;
760
1004
  /** Returns response with indentations and line breaks. */
761
- prettyPrint?: boolean;
1005
+ prettyPrint?:
1006
+ boolean;
762
1007
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
763
- quotaUser?: string;
1008
+ quotaUser?:
1009
+ string;
764
1010
  /** Upload protocol for media (e.g. "raw", "multipart"). */
765
- upload_protocol?: string;
1011
+ upload_protocol?:
1012
+ string;
766
1013
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
767
- uploadType?: string;
768
- /** Required. If set, validate the request and preview the review, but do not post it. */
769
- validateOnly?: boolean;
1014
+ uploadType?:
1015
+ string;
1016
+ /** Optional. If set, validate the request and preview the review, but do not post it. */
1017
+ validateOnly?:
1018
+ boolean;
770
1019
  },
771
1020
  body: Channel): Request<GoogleLongrunningOperation>;
772
1021
  /** Delete a single channel. */
773
1022
  delete(request?: {
774
1023
  /** V1 error format. */
775
- "$.xgafv"?: string;
1024
+ "$.xgafv"?:
1025
+ string;
776
1026
  /** OAuth access token. */
777
- access_token?: string;
1027
+ access_token?:
1028
+ string;
778
1029
  /** Data format for response. */
779
- alt?: string;
1030
+ alt?:
1031
+ string;
780
1032
  /** JSONP */
781
- callback?: string;
1033
+ callback?:
1034
+ string;
782
1035
  /** Selector specifying which fields to include in a partial response. */
783
- fields?: string;
1036
+ fields?:
1037
+ string;
784
1038
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
785
- key?: string;
1039
+ key?:
1040
+ string;
786
1041
  /** Required. The name of the channel to be deleted. */
787
- name: string;
1042
+ name:
1043
+ string;
788
1044
  /** OAuth 2.0 token for the current user. */
789
- oauth_token?: string;
1045
+ oauth_token?:
1046
+ string;
790
1047
  /** Returns response with indentations and line breaks. */
791
- prettyPrint?: boolean;
1048
+ prettyPrint?:
1049
+ boolean;
792
1050
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
793
- quotaUser?: string;
1051
+ quotaUser?:
1052
+ string;
794
1053
  /** Upload protocol for media (e.g. "raw", "multipart"). */
795
- upload_protocol?: string;
1054
+ upload_protocol?:
1055
+ string;
796
1056
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
797
- uploadType?: string;
798
- /** Required. If set, validate the request and preview the review, but do not post it. */
799
- validateOnly?: boolean;
1057
+ uploadType?:
1058
+ string;
1059
+ /** Optional. If set, validate the request and preview the review, but do not post it. */
1060
+ validateOnly?:
1061
+ boolean;
800
1062
  }): Request<GoogleLongrunningOperation>;
801
1063
  /** Get a single Channel. */
802
1064
  get(request?: {
803
1065
  /** V1 error format. */
804
- "$.xgafv"?: string;
1066
+ "$.xgafv"?:
1067
+ string;
805
1068
  /** OAuth access token. */
806
- access_token?: string;
1069
+ access_token?:
1070
+ string;
807
1071
  /** Data format for response. */
808
- alt?: string;
1072
+ alt?:
1073
+ string;
809
1074
  /** JSONP */
810
- callback?: string;
1075
+ callback?:
1076
+ string;
811
1077
  /** Selector specifying which fields to include in a partial response. */
812
- fields?: string;
1078
+ fields?:
1079
+ string;
813
1080
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
814
- key?: string;
1081
+ key?:
1082
+ string;
815
1083
  /** Required. The name of the channel to get. */
816
- name: string;
1084
+ name:
1085
+ string;
817
1086
  /** OAuth 2.0 token for the current user. */
818
- oauth_token?: string;
1087
+ oauth_token?:
1088
+ string;
819
1089
  /** Returns response with indentations and line breaks. */
820
- prettyPrint?: boolean;
1090
+ prettyPrint?:
1091
+ boolean;
821
1092
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
822
- quotaUser?: string;
1093
+ quotaUser?:
1094
+ string;
823
1095
  /** Upload protocol for media (e.g. "raw", "multipart"). */
824
- upload_protocol?: string;
1096
+ upload_protocol?:
1097
+ string;
825
1098
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
826
- uploadType?: string;
1099
+ uploadType?:
1100
+ string;
827
1101
  }): Request<Channel>;
828
1102
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
829
1103
  getIamPolicy(request?: {
830
1104
  /** V1 error format. */
831
- "$.xgafv"?: string;
1105
+ "$.xgafv"?:
1106
+ string;
832
1107
  /** OAuth access token. */
833
- access_token?: string;
1108
+ access_token?:
1109
+ string;
834
1110
  /** Data format for response. */
835
- alt?: string;
1111
+ alt?:
1112
+ string;
836
1113
  /** JSONP */
837
- callback?: string;
1114
+ callback?:
1115
+ string;
838
1116
  /** Selector specifying which fields to include in a partial response. */
839
- fields?: string;
1117
+ fields?:
1118
+ string;
840
1119
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
841
- key?: string;
1120
+ key?:
1121
+ string;
842
1122
  /** OAuth 2.0 token for the current user. */
843
- oauth_token?: string;
1123
+ oauth_token?:
1124
+ string;
844
1125
  /**
845
1126
  * Optional. The maximum policy version that will be used to format the policy. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. Requests for
846
1127
  * policies with any conditional role bindings must specify version 3. Policies with no conditional role bindings may specify any valid value or leave the field unset. The policy
@@ -848,165 +1129,227 @@ declare namespace gapi.client {
848
1129
  * role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM
849
1130
  * documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
850
1131
  */
851
- "options.requestedPolicyVersion"?: number;
1132
+ "options.requestedPolicyVersion"?:
1133
+ number;
852
1134
  /** Returns response with indentations and line breaks. */
853
- prettyPrint?: boolean;
1135
+ prettyPrint?:
1136
+ boolean;
854
1137
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
855
- quotaUser?: string;
1138
+ quotaUser?:
1139
+ string;
856
1140
  /**
857
1141
  * REQUIRED: The resource for which the policy is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this
858
1142
  * field.
859
1143
  */
860
- resource: string;
1144
+ resource:
1145
+ string;
861
1146
  /** Upload protocol for media (e.g. "raw", "multipart"). */
862
- upload_protocol?: string;
1147
+ upload_protocol?:
1148
+ string;
863
1149
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
864
- uploadType?: string;
1150
+ uploadType?:
1151
+ string;
865
1152
  }): Request<Policy>;
866
1153
  /** List channels. */
867
1154
  list(request?: {
868
1155
  /** V1 error format. */
869
- "$.xgafv"?: string;
1156
+ "$.xgafv"?:
1157
+ string;
870
1158
  /** OAuth access token. */
871
- access_token?: string;
1159
+ access_token?:
1160
+ string;
872
1161
  /** Data format for response. */
873
- alt?: string;
1162
+ alt?:
1163
+ string;
874
1164
  /** JSONP */
875
- callback?: string;
1165
+ callback?:
1166
+ string;
876
1167
  /** Selector specifying which fields to include in a partial response. */
877
- fields?: string;
1168
+ fields?:
1169
+ string;
878
1170
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
879
- key?: string;
1171
+ key?:
1172
+ string;
880
1173
  /** OAuth 2.0 token for the current user. */
881
- oauth_token?: string;
1174
+ oauth_token?:
1175
+ string;
882
1176
  /**
883
1177
  * The sorting order of the resources returned. Value should be a comma-separated list of fields. The default sorting order is ascending. To specify descending order for a field,
884
1178
  * append a `desc` suffix; for example: `name desc, channel_id`.
885
1179
  */
886
- orderBy?: string;
1180
+ orderBy?:
1181
+ string;
887
1182
  /** The maximum number of channels to return on each page. Note: The service may send fewer. */
888
- pageSize?: number;
1183
+ pageSize?:
1184
+ number;
889
1185
  /**
890
1186
  * The page token; provide the value from the `next_page_token` field in a previous `ListChannels` call to retrieve the subsequent page. When paginating, all other parameters
891
1187
  * provided to `ListChannels` must match the call that provided the page token.
892
1188
  */
893
- pageToken?: string;
1189
+ pageToken?:
1190
+ string;
894
1191
  /** Required. The parent collection to list channels on. */
895
- parent: string;
1192
+ parent:
1193
+ string;
896
1194
  /** Returns response with indentations and line breaks. */
897
- prettyPrint?: boolean;
1195
+ prettyPrint?:
1196
+ boolean;
898
1197
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
899
- quotaUser?: string;
1198
+ quotaUser?:
1199
+ string;
900
1200
  /** Upload protocol for media (e.g. "raw", "multipart"). */
901
- upload_protocol?: string;
1201
+ upload_protocol?:
1202
+ string;
902
1203
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
903
- uploadType?: string;
1204
+ uploadType?:
1205
+ string;
904
1206
  }): Request<ListChannelsResponse>;
905
1207
  /** Update a single channel. */
906
1208
  patch(request: {
907
1209
  /** V1 error format. */
908
- "$.xgafv"?: string;
1210
+ "$.xgafv"?:
1211
+ string;
909
1212
  /** OAuth access token. */
910
- access_token?: string;
1213
+ access_token?:
1214
+ string;
911
1215
  /** Data format for response. */
912
- alt?: string;
1216
+ alt?:
1217
+ string;
913
1218
  /** JSONP */
914
- callback?: string;
1219
+ callback?:
1220
+ string;
915
1221
  /** Selector specifying which fields to include in a partial response. */
916
- fields?: string;
1222
+ fields?:
1223
+ string;
917
1224
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
918
- key?: string;
1225
+ key?:
1226
+ string;
919
1227
  /**
920
1228
  * Required. The resource name of the channel. Must be unique within the location on the project and must be in `projects/{project}/locations/{location}/channels/{channel_id}`
921
1229
  * format.
922
1230
  */
923
- name: string;
1231
+ name:
1232
+ string;
924
1233
  /** OAuth 2.0 token for the current user. */
925
- oauth_token?: string;
1234
+ oauth_token?:
1235
+ string;
926
1236
  /** Returns response with indentations and line breaks. */
927
- prettyPrint?: boolean;
1237
+ prettyPrint?:
1238
+ boolean;
928
1239
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
929
- quotaUser?: string;
1240
+ quotaUser?:
1241
+ string;
930
1242
  /**
931
1243
  * The fields to be updated; only fields explicitly provided are updated. If no field mask is provided, all provided fields in the request are updated. To update all fields,
932
1244
  * provide a field mask of "*".
933
1245
  */
934
- updateMask?: string;
1246
+ updateMask?:
1247
+ string;
935
1248
  /** Upload protocol for media (e.g. "raw", "multipart"). */
936
- upload_protocol?: string;
1249
+ upload_protocol?:
1250
+ string;
937
1251
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
938
- uploadType?: string;
939
- /** Required. If set, validate the request and preview the review, but do not post it. */
940
- validateOnly?: boolean;
1252
+ uploadType?:
1253
+ string;
1254
+ /** Optional. If set, validate the request and preview the review, but do not post it. */
1255
+ validateOnly?:
1256
+ boolean;
941
1257
  /** Request body */
942
- resource: Channel;
1258
+ resource:
1259
+ Channel;
943
1260
  }): Request<GoogleLongrunningOperation>;
944
1261
  patch(request: {
945
1262
  /** V1 error format. */
946
- "$.xgafv"?: string;
1263
+ "$.xgafv"?:
1264
+ string;
947
1265
  /** OAuth access token. */
948
- access_token?: string;
1266
+ access_token?:
1267
+ string;
949
1268
  /** Data format for response. */
950
- alt?: string;
1269
+ alt?:
1270
+ string;
951
1271
  /** JSONP */
952
- callback?: string;
1272
+ callback?:
1273
+ string;
953
1274
  /** Selector specifying which fields to include in a partial response. */
954
- fields?: string;
1275
+ fields?:
1276
+ string;
955
1277
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
956
- key?: string;
1278
+ key?:
1279
+ string;
957
1280
  /**
958
1281
  * Required. The resource name of the channel. Must be unique within the location on the project and must be in `projects/{project}/locations/{location}/channels/{channel_id}`
959
1282
  * format.
960
1283
  */
961
- name: string;
1284
+ name:
1285
+ string;
962
1286
  /** OAuth 2.0 token for the current user. */
963
- oauth_token?: string;
1287
+ oauth_token?:
1288
+ string;
964
1289
  /** Returns response with indentations and line breaks. */
965
- prettyPrint?: boolean;
1290
+ prettyPrint?:
1291
+ boolean;
966
1292
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
967
- quotaUser?: string;
1293
+ quotaUser?:
1294
+ string;
968
1295
  /**
969
1296
  * The fields to be updated; only fields explicitly provided are updated. If no field mask is provided, all provided fields in the request are updated. To update all fields,
970
1297
  * provide a field mask of "*".
971
1298
  */
972
- updateMask?: string;
1299
+ updateMask?:
1300
+ string;
973
1301
  /** Upload protocol for media (e.g. "raw", "multipart"). */
974
- upload_protocol?: string;
1302
+ upload_protocol?:
1303
+ string;
975
1304
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
976
- uploadType?: string;
977
- /** Required. If set, validate the request and preview the review, but do not post it. */
978
- validateOnly?: boolean;
1305
+ uploadType?:
1306
+ string;
1307
+ /** Optional. If set, validate the request and preview the review, but do not post it. */
1308
+ validateOnly?:
1309
+ boolean;
979
1310
  },
980
1311
  body: Channel): Request<GoogleLongrunningOperation>;
981
1312
  /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
982
1313
  setIamPolicy(request: {
983
1314
  /** V1 error format. */
984
- "$.xgafv"?: string;
1315
+ "$.xgafv"?:
1316
+ string;
985
1317
  /** OAuth access token. */
986
- access_token?: string;
1318
+ access_token?:
1319
+ string;
987
1320
  /** Data format for response. */
988
- alt?: string;
1321
+ alt?:
1322
+ string;
989
1323
  /** JSONP */
990
- callback?: string;
1324
+ callback?:
1325
+ string;
991
1326
  /** Selector specifying which fields to include in a partial response. */
992
- fields?: string;
1327
+ fields?:
1328
+ string;
993
1329
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
994
- key?: string;
1330
+ key?:
1331
+ string;
995
1332
  /** OAuth 2.0 token for the current user. */
996
- oauth_token?: string;
1333
+ oauth_token?:
1334
+ string;
997
1335
  /** Returns response with indentations and line breaks. */
998
- prettyPrint?: boolean;
1336
+ prettyPrint?:
1337
+ boolean;
999
1338
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1000
- quotaUser?: string;
1339
+ quotaUser?:
1340
+ string;
1001
1341
  /**
1002
1342
  * REQUIRED: The resource for which the policy is being specified. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this
1003
1343
  * field.
1004
1344
  */
1005
- resource: string;
1345
+ resource:
1346
+ string;
1006
1347
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1007
- upload_protocol?: string;
1348
+ upload_protocol?:
1349
+ string;
1008
1350
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1009
- uploadType?: string;
1351
+ uploadType?:
1352
+ string;
1010
1353
  },
1011
1354
  body: SetIamPolicyRequest): Request<Policy>;
1012
1355
  /**
@@ -1015,32 +1358,44 @@ declare namespace gapi.client {
1015
1358
  */
1016
1359
  testIamPermissions(request: {
1017
1360
  /** V1 error format. */
1018
- "$.xgafv"?: string;
1361
+ "$.xgafv"?:
1362
+ string;
1019
1363
  /** OAuth access token. */
1020
- access_token?: string;
1364
+ access_token?:
1365
+ string;
1021
1366
  /** Data format for response. */
1022
- alt?: string;
1367
+ alt?:
1368
+ string;
1023
1369
  /** JSONP */
1024
- callback?: string;
1370
+ callback?:
1371
+ string;
1025
1372
  /** Selector specifying which fields to include in a partial response. */
1026
- fields?: string;
1373
+ fields?:
1374
+ string;
1027
1375
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1028
- key?: string;
1376
+ key?:
1377
+ string;
1029
1378
  /** OAuth 2.0 token for the current user. */
1030
- oauth_token?: string;
1379
+ oauth_token?:
1380
+ string;
1031
1381
  /** Returns response with indentations and line breaks. */
1032
- prettyPrint?: boolean;
1382
+ prettyPrint?:
1383
+ boolean;
1033
1384
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1034
- quotaUser?: string;
1385
+ quotaUser?:
1386
+ string;
1035
1387
  /**
1036
1388
  * REQUIRED: The resource for which the policy detail is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for
1037
1389
  * this field.
1038
1390
  */
1039
- resource: string;
1391
+ resource:
1392
+ string;
1040
1393
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1041
- upload_protocol?: string;
1394
+ upload_protocol?:
1395
+ string;
1042
1396
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1043
- uploadType?: string;
1397
+ uploadType?:
1398
+ string;
1044
1399
  },
1045
1400
  body: TestIamPermissionsRequest): Request<TestIamPermissionsResponse>;
1046
1401
  }
@@ -1053,57 +1408,82 @@ declare namespace gapi.client {
1053
1408
  */
1054
1409
  cancel(request: {
1055
1410
  /** V1 error format. */
1056
- "$.xgafv"?: string;
1411
+ "$.xgafv"?:
1412
+ string;
1057
1413
  /** OAuth access token. */
1058
- access_token?: string;
1414
+ access_token?:
1415
+ string;
1059
1416
  /** Data format for response. */
1060
- alt?: string;
1417
+ alt?:
1418
+ string;
1061
1419
  /** JSONP */
1062
- callback?: string;
1420
+ callback?:
1421
+ string;
1063
1422
  /** Selector specifying which fields to include in a partial response. */
1064
- fields?: string;
1423
+ fields?:
1424
+ string;
1065
1425
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1066
- key?: string;
1426
+ key?:
1427
+ string;
1067
1428
  /** The name of the operation resource to be cancelled. */
1068
- name: string;
1429
+ name:
1430
+ string;
1069
1431
  /** OAuth 2.0 token for the current user. */
1070
- oauth_token?: string;
1432
+ oauth_token?:
1433
+ string;
1071
1434
  /** Returns response with indentations and line breaks. */
1072
- prettyPrint?: boolean;
1435
+ prettyPrint?:
1436
+ boolean;
1073
1437
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1074
- quotaUser?: string;
1438
+ quotaUser?:
1439
+ string;
1075
1440
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1076
- upload_protocol?: string;
1441
+ upload_protocol?:
1442
+ string;
1077
1443
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1078
- uploadType?: string;
1444
+ uploadType?:
1445
+ string;
1079
1446
  /** Request body */
1080
- resource: GoogleLongrunningCancelOperationRequest;
1447
+ resource:
1448
+ GoogleLongrunningCancelOperationRequest;
1081
1449
  }): Request<{}>;
1082
1450
  cancel(request: {
1083
1451
  /** V1 error format. */
1084
- "$.xgafv"?: string;
1452
+ "$.xgafv"?:
1453
+ string;
1085
1454
  /** OAuth access token. */
1086
- access_token?: string;
1455
+ access_token?:
1456
+ string;
1087
1457
  /** Data format for response. */
1088
- alt?: string;
1458
+ alt?:
1459
+ string;
1089
1460
  /** JSONP */
1090
- callback?: string;
1461
+ callback?:
1462
+ string;
1091
1463
  /** Selector specifying which fields to include in a partial response. */
1092
- fields?: string;
1464
+ fields?:
1465
+ string;
1093
1466
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1094
- key?: string;
1467
+ key?:
1468
+ string;
1095
1469
  /** The name of the operation resource to be cancelled. */
1096
- name: string;
1470
+ name:
1471
+ string;
1097
1472
  /** OAuth 2.0 token for the current user. */
1098
- oauth_token?: string;
1473
+ oauth_token?:
1474
+ string;
1099
1475
  /** Returns response with indentations and line breaks. */
1100
- prettyPrint?: boolean;
1476
+ prettyPrint?:
1477
+ boolean;
1101
1478
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1102
- quotaUser?: string;
1479
+ quotaUser?:
1480
+ string;
1103
1481
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1104
- upload_protocol?: string;
1482
+ upload_protocol?:
1483
+ string;
1105
1484
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1106
- uploadType?: string;
1485
+ uploadType?:
1486
+ string;
1107
1487
  },
1108
1488
  body: GoogleLongrunningCancelOperationRequest): Request<{}>;
1109
1489
  /**
@@ -1112,302 +1492,432 @@ declare namespace gapi.client {
1112
1492
  */
1113
1493
  delete(request?: {
1114
1494
  /** V1 error format. */
1115
- "$.xgafv"?: string;
1495
+ "$.xgafv"?:
1496
+ string;
1116
1497
  /** OAuth access token. */
1117
- access_token?: string;
1498
+ access_token?:
1499
+ string;
1118
1500
  /** Data format for response. */
1119
- alt?: string;
1501
+ alt?:
1502
+ string;
1120
1503
  /** JSONP */
1121
- callback?: string;
1504
+ callback?:
1505
+ string;
1122
1506
  /** Selector specifying which fields to include in a partial response. */
1123
- fields?: string;
1507
+ fields?:
1508
+ string;
1124
1509
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1125
- key?: string;
1510
+ key?:
1511
+ string;
1126
1512
  /** The name of the operation resource to be deleted. */
1127
- name: string;
1513
+ name:
1514
+ string;
1128
1515
  /** OAuth 2.0 token for the current user. */
1129
- oauth_token?: string;
1516
+ oauth_token?:
1517
+ string;
1130
1518
  /** Returns response with indentations and line breaks. */
1131
- prettyPrint?: boolean;
1519
+ prettyPrint?:
1520
+ boolean;
1132
1521
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1133
- quotaUser?: string;
1522
+ quotaUser?:
1523
+ string;
1134
1524
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1135
- upload_protocol?: string;
1525
+ upload_protocol?:
1526
+ string;
1136
1527
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1137
- uploadType?: string;
1528
+ uploadType?:
1529
+ string;
1138
1530
  }): Request<{}>;
1139
1531
  /** Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service. */
1140
1532
  get(request?: {
1141
1533
  /** V1 error format. */
1142
- "$.xgafv"?: string;
1534
+ "$.xgafv"?:
1535
+ string;
1143
1536
  /** OAuth access token. */
1144
- access_token?: string;
1537
+ access_token?:
1538
+ string;
1145
1539
  /** Data format for response. */
1146
- alt?: string;
1540
+ alt?:
1541
+ string;
1147
1542
  /** JSONP */
1148
- callback?: string;
1543
+ callback?:
1544
+ string;
1149
1545
  /** Selector specifying which fields to include in a partial response. */
1150
- fields?: string;
1546
+ fields?:
1547
+ string;
1151
1548
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1152
- key?: string;
1549
+ key?:
1550
+ string;
1153
1551
  /** The name of the operation resource. */
1154
- name: string;
1552
+ name:
1553
+ string;
1155
1554
  /** OAuth 2.0 token for the current user. */
1156
- oauth_token?: string;
1555
+ oauth_token?:
1556
+ string;
1157
1557
  /** Returns response with indentations and line breaks. */
1158
- prettyPrint?: boolean;
1558
+ prettyPrint?:
1559
+ boolean;
1159
1560
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1160
- quotaUser?: string;
1561
+ quotaUser?:
1562
+ string;
1161
1563
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1162
- upload_protocol?: string;
1564
+ upload_protocol?:
1565
+ string;
1163
1566
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1164
- uploadType?: string;
1567
+ uploadType?:
1568
+ string;
1165
1569
  }): Request<GoogleLongrunningOperation>;
1166
1570
  /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
1167
1571
  list(request?: {
1168
1572
  /** V1 error format. */
1169
- "$.xgafv"?: string;
1573
+ "$.xgafv"?:
1574
+ string;
1170
1575
  /** OAuth access token. */
1171
- access_token?: string;
1576
+ access_token?:
1577
+ string;
1172
1578
  /** Data format for response. */
1173
- alt?: string;
1579
+ alt?:
1580
+ string;
1174
1581
  /** JSONP */
1175
- callback?: string;
1582
+ callback?:
1583
+ string;
1176
1584
  /** Selector specifying which fields to include in a partial response. */
1177
- fields?: string;
1585
+ fields?:
1586
+ string;
1178
1587
  /** The standard list filter. */
1179
- filter?: string;
1588
+ filter?:
1589
+ string;
1180
1590
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1181
- key?: string;
1591
+ key?:
1592
+ string;
1182
1593
  /** The name of the operation's parent resource. */
1183
- name: string;
1594
+ name:
1595
+ string;
1184
1596
  /** OAuth 2.0 token for the current user. */
1185
- oauth_token?: string;
1597
+ oauth_token?:
1598
+ string;
1186
1599
  /** The standard list page size. */
1187
- pageSize?: number;
1600
+ pageSize?:
1601
+ number;
1188
1602
  /** The standard list page token. */
1189
- pageToken?: string;
1603
+ pageToken?:
1604
+ string;
1190
1605
  /** Returns response with indentations and line breaks. */
1191
- prettyPrint?: boolean;
1606
+ prettyPrint?:
1607
+ boolean;
1192
1608
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1193
- quotaUser?: string;
1609
+ quotaUser?:
1610
+ string;
1194
1611
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1195
- upload_protocol?: string;
1612
+ upload_protocol?:
1613
+ string;
1196
1614
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1197
- uploadType?: string;
1615
+ uploadType?:
1616
+ string;
1198
1617
  }): Request<GoogleLongrunningListOperationsResponse>;
1199
1618
  }
1200
1619
  interface ProvidersResource {
1201
1620
  /** Get a single Provider. */
1202
1621
  get(request?: {
1203
1622
  /** V1 error format. */
1204
- "$.xgafv"?: string;
1623
+ "$.xgafv"?:
1624
+ string;
1205
1625
  /** OAuth access token. */
1206
- access_token?: string;
1626
+ access_token?:
1627
+ string;
1207
1628
  /** Data format for response. */
1208
- alt?: string;
1629
+ alt?:
1630
+ string;
1209
1631
  /** JSONP */
1210
- callback?: string;
1632
+ callback?:
1633
+ string;
1211
1634
  /** Selector specifying which fields to include in a partial response. */
1212
- fields?: string;
1635
+ fields?:
1636
+ string;
1213
1637
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1214
- key?: string;
1638
+ key?:
1639
+ string;
1215
1640
  /** Required. The name of the provider to get. */
1216
- name: string;
1641
+ name:
1642
+ string;
1217
1643
  /** OAuth 2.0 token for the current user. */
1218
- oauth_token?: string;
1644
+ oauth_token?:
1645
+ string;
1219
1646
  /** Returns response with indentations and line breaks. */
1220
- prettyPrint?: boolean;
1647
+ prettyPrint?:
1648
+ boolean;
1221
1649
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1222
- quotaUser?: string;
1650
+ quotaUser?:
1651
+ string;
1223
1652
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1224
- upload_protocol?: string;
1653
+ upload_protocol?:
1654
+ string;
1225
1655
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1226
- uploadType?: string;
1656
+ uploadType?:
1657
+ string;
1227
1658
  }): Request<Provider>;
1228
1659
  /** List providers. */
1229
1660
  list(request?: {
1230
1661
  /** V1 error format. */
1231
- "$.xgafv"?: string;
1662
+ "$.xgafv"?:
1663
+ string;
1232
1664
  /** OAuth access token. */
1233
- access_token?: string;
1665
+ access_token?:
1666
+ string;
1234
1667
  /** Data format for response. */
1235
- alt?: string;
1668
+ alt?:
1669
+ string;
1236
1670
  /** JSONP */
1237
- callback?: string;
1671
+ callback?:
1672
+ string;
1238
1673
  /** Selector specifying which fields to include in a partial response. */
1239
- fields?: string;
1674
+ fields?:
1675
+ string;
1240
1676
  /** The filter field that the list request will filter on. */
1241
- filter?: string;
1677
+ filter?:
1678
+ string;
1242
1679
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1243
- key?: string;
1680
+ key?:
1681
+ string;
1244
1682
  /** OAuth 2.0 token for the current user. */
1245
- oauth_token?: string;
1683
+ oauth_token?:
1684
+ string;
1246
1685
  /**
1247
1686
  * The sorting order of the resources returned. Value should be a comma-separated list of fields. The default sorting oder is ascending. To specify descending order for a field,
1248
1687
  * append a `desc` suffix; for example: `name desc, _id`.
1249
1688
  */
1250
- orderBy?: string;
1689
+ orderBy?:
1690
+ string;
1251
1691
  /** The maximum number of providers to return on each page. */
1252
- pageSize?: number;
1692
+ pageSize?:
1693
+ number;
1253
1694
  /**
1254
1695
  * The page token; provide the value from the `next_page_token` field in a previous `ListProviders` call to retrieve the subsequent page. When paginating, all other parameters
1255
1696
  * provided to `ListProviders` must match the call that provided the page token.
1256
1697
  */
1257
- pageToken?: string;
1698
+ pageToken?:
1699
+ string;
1258
1700
  /** Required. The parent of the provider to get. */
1259
- parent: string;
1701
+ parent:
1702
+ string;
1260
1703
  /** Returns response with indentations and line breaks. */
1261
- prettyPrint?: boolean;
1704
+ prettyPrint?:
1705
+ boolean;
1262
1706
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1263
- quotaUser?: string;
1707
+ quotaUser?:
1708
+ string;
1264
1709
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1265
- upload_protocol?: string;
1710
+ upload_protocol?:
1711
+ string;
1266
1712
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1267
- uploadType?: string;
1713
+ uploadType?:
1714
+ string;
1268
1715
  }): Request<ListProvidersResponse>;
1269
1716
  }
1270
1717
  interface TriggersResource {
1271
1718
  /** Create a new trigger in a particular project and location. */
1272
1719
  create(request: {
1273
1720
  /** V1 error format. */
1274
- "$.xgafv"?: string;
1721
+ "$.xgafv"?:
1722
+ string;
1275
1723
  /** OAuth access token. */
1276
- access_token?: string;
1724
+ access_token?:
1725
+ string;
1277
1726
  /** Data format for response. */
1278
- alt?: string;
1727
+ alt?:
1728
+ string;
1279
1729
  /** JSONP */
1280
- callback?: string;
1730
+ callback?:
1731
+ string;
1281
1732
  /** Selector specifying which fields to include in a partial response. */
1282
- fields?: string;
1733
+ fields?:
1734
+ string;
1283
1735
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1284
- key?: string;
1736
+ key?:
1737
+ string;
1285
1738
  /** OAuth 2.0 token for the current user. */
1286
- oauth_token?: string;
1739
+ oauth_token?:
1740
+ string;
1287
1741
  /** Required. The parent collection in which to add this trigger. */
1288
- parent: string;
1742
+ parent:
1743
+ string;
1289
1744
  /** Returns response with indentations and line breaks. */
1290
- prettyPrint?: boolean;
1745
+ prettyPrint?:
1746
+ boolean;
1291
1747
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1292
- quotaUser?: string;
1748
+ quotaUser?:
1749
+ string;
1293
1750
  /** Required. The user-provided ID to be assigned to the trigger. */
1294
- triggerId?: string;
1751
+ triggerId?:
1752
+ string;
1295
1753
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1296
- upload_protocol?: string;
1754
+ upload_protocol?:
1755
+ string;
1297
1756
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1298
- uploadType?: string;
1299
- /** Required. If set, validate the request and preview the review, but do not post it. */
1300
- validateOnly?: boolean;
1757
+ uploadType?:
1758
+ string;
1759
+ /** Optional. If set, validate the request and preview the review, but do not post it. */
1760
+ validateOnly?:
1761
+ boolean;
1301
1762
  /** Request body */
1302
- resource: Trigger;
1763
+ resource:
1764
+ Trigger;
1303
1765
  }): Request<GoogleLongrunningOperation>;
1304
1766
  create(request: {
1305
1767
  /** V1 error format. */
1306
- "$.xgafv"?: string;
1768
+ "$.xgafv"?:
1769
+ string;
1307
1770
  /** OAuth access token. */
1308
- access_token?: string;
1771
+ access_token?:
1772
+ string;
1309
1773
  /** Data format for response. */
1310
- alt?: string;
1774
+ alt?:
1775
+ string;
1311
1776
  /** JSONP */
1312
- callback?: string;
1777
+ callback?:
1778
+ string;
1313
1779
  /** Selector specifying which fields to include in a partial response. */
1314
- fields?: string;
1780
+ fields?:
1781
+ string;
1315
1782
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1316
- key?: string;
1783
+ key?:
1784
+ string;
1317
1785
  /** OAuth 2.0 token for the current user. */
1318
- oauth_token?: string;
1786
+ oauth_token?:
1787
+ string;
1319
1788
  /** Required. The parent collection in which to add this trigger. */
1320
- parent: string;
1789
+ parent:
1790
+ string;
1321
1791
  /** Returns response with indentations and line breaks. */
1322
- prettyPrint?: boolean;
1792
+ prettyPrint?:
1793
+ boolean;
1323
1794
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1324
- quotaUser?: string;
1795
+ quotaUser?:
1796
+ string;
1325
1797
  /** Required. The user-provided ID to be assigned to the trigger. */
1326
- triggerId?: string;
1798
+ triggerId?:
1799
+ string;
1327
1800
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1328
- upload_protocol?: string;
1801
+ upload_protocol?:
1802
+ string;
1329
1803
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1330
- uploadType?: string;
1331
- /** Required. If set, validate the request and preview the review, but do not post it. */
1332
- validateOnly?: boolean;
1804
+ uploadType?:
1805
+ string;
1806
+ /** Optional. If set, validate the request and preview the review, but do not post it. */
1807
+ validateOnly?:
1808
+ boolean;
1333
1809
  },
1334
1810
  body: Trigger): Request<GoogleLongrunningOperation>;
1335
1811
  /** Delete a single trigger. */
1336
1812
  delete(request?: {
1337
1813
  /** V1 error format. */
1338
- "$.xgafv"?: string;
1814
+ "$.xgafv"?:
1815
+ string;
1339
1816
  /** OAuth access token. */
1340
- access_token?: string;
1817
+ access_token?:
1818
+ string;
1341
1819
  /** If set to true, and the trigger is not found, the request will succeed but no action will be taken on the server. */
1342
- allowMissing?: boolean;
1820
+ allowMissing?:
1821
+ boolean;
1343
1822
  /** Data format for response. */
1344
- alt?: string;
1823
+ alt?:
1824
+ string;
1345
1825
  /** JSONP */
1346
- callback?: string;
1826
+ callback?:
1827
+ string;
1347
1828
  /** If provided, the trigger will only be deleted if the etag matches the current etag on the resource. */
1348
- etag?: string;
1829
+ etag?:
1830
+ string;
1349
1831
  /** Selector specifying which fields to include in a partial response. */
1350
- fields?: string;
1832
+ fields?:
1833
+ string;
1351
1834
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1352
- key?: string;
1835
+ key?:
1836
+ string;
1353
1837
  /** Required. The name of the trigger to be deleted. */
1354
- name: string;
1838
+ name:
1839
+ string;
1355
1840
  /** OAuth 2.0 token for the current user. */
1356
- oauth_token?: string;
1841
+ oauth_token?:
1842
+ string;
1357
1843
  /** Returns response with indentations and line breaks. */
1358
- prettyPrint?: boolean;
1844
+ prettyPrint?:
1845
+ boolean;
1359
1846
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1360
- quotaUser?: string;
1847
+ quotaUser?:
1848
+ string;
1361
1849
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1362
- upload_protocol?: string;
1850
+ upload_protocol?:
1851
+ string;
1363
1852
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1364
- uploadType?: string;
1365
- /** Required. If set, validate the request and preview the review, but do not post it. */
1366
- validateOnly?: boolean;
1853
+ uploadType?:
1854
+ string;
1855
+ /** Optional. If set, validate the request and preview the review, but do not post it. */
1856
+ validateOnly?:
1857
+ boolean;
1367
1858
  }): Request<GoogleLongrunningOperation>;
1368
1859
  /** Get a single trigger. */
1369
1860
  get(request?: {
1370
1861
  /** V1 error format. */
1371
- "$.xgafv"?: string;
1862
+ "$.xgafv"?:
1863
+ string;
1372
1864
  /** OAuth access token. */
1373
- access_token?: string;
1865
+ access_token?:
1866
+ string;
1374
1867
  /** Data format for response. */
1375
- alt?: string;
1868
+ alt?:
1869
+ string;
1376
1870
  /** JSONP */
1377
- callback?: string;
1871
+ callback?:
1872
+ string;
1378
1873
  /** Selector specifying which fields to include in a partial response. */
1379
- fields?: string;
1874
+ fields?:
1875
+ string;
1380
1876
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1381
- key?: string;
1877
+ key?:
1878
+ string;
1382
1879
  /** Required. The name of the trigger to get. */
1383
- name: string;
1880
+ name:
1881
+ string;
1384
1882
  /** OAuth 2.0 token for the current user. */
1385
- oauth_token?: string;
1883
+ oauth_token?:
1884
+ string;
1386
1885
  /** Returns response with indentations and line breaks. */
1387
- prettyPrint?: boolean;
1886
+ prettyPrint?:
1887
+ boolean;
1388
1888
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1389
- quotaUser?: string;
1889
+ quotaUser?:
1890
+ string;
1390
1891
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1391
- upload_protocol?: string;
1892
+ upload_protocol?:
1893
+ string;
1392
1894
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1393
- uploadType?: string;
1895
+ uploadType?:
1896
+ string;
1394
1897
  }): Request<Trigger>;
1395
1898
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
1396
1899
  getIamPolicy(request?: {
1397
1900
  /** V1 error format. */
1398
- "$.xgafv"?: string;
1901
+ "$.xgafv"?:
1902
+ string;
1399
1903
  /** OAuth access token. */
1400
- access_token?: string;
1904
+ access_token?:
1905
+ string;
1401
1906
  /** Data format for response. */
1402
- alt?: string;
1907
+ alt?:
1908
+ string;
1403
1909
  /** JSONP */
1404
- callback?: string;
1910
+ callback?:
1911
+ string;
1405
1912
  /** Selector specifying which fields to include in a partial response. */
1406
- fields?: string;
1913
+ fields?:
1914
+ string;
1407
1915
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1408
- key?: string;
1916
+ key?:
1917
+ string;
1409
1918
  /** OAuth 2.0 token for the current user. */
1410
- oauth_token?: string;
1919
+ oauth_token?:
1920
+ string;
1411
1921
  /**
1412
1922
  * Optional. The maximum policy version that will be used to format the policy. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. Requests for
1413
1923
  * policies with any conditional role bindings must specify version 3. Policies with no conditional role bindings may specify any valid value or leave the field unset. The policy
@@ -1415,168 +1925,233 @@ declare namespace gapi.client {
1415
1925
  * role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM
1416
1926
  * documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
1417
1927
  */
1418
- "options.requestedPolicyVersion"?: number;
1928
+ "options.requestedPolicyVersion"?:
1929
+ number;
1419
1930
  /** Returns response with indentations and line breaks. */
1420
- prettyPrint?: boolean;
1931
+ prettyPrint?:
1932
+ boolean;
1421
1933
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1422
- quotaUser?: string;
1934
+ quotaUser?:
1935
+ string;
1423
1936
  /**
1424
1937
  * REQUIRED: The resource for which the policy is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this
1425
1938
  * field.
1426
1939
  */
1427
- resource: string;
1940
+ resource:
1941
+ string;
1428
1942
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1429
- upload_protocol?: string;
1943
+ upload_protocol?:
1944
+ string;
1430
1945
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1431
- uploadType?: string;
1946
+ uploadType?:
1947
+ string;
1432
1948
  }): Request<Policy>;
1433
1949
  /** List triggers. */
1434
1950
  list(request?: {
1435
1951
  /** V1 error format. */
1436
- "$.xgafv"?: string;
1952
+ "$.xgafv"?:
1953
+ string;
1437
1954
  /** OAuth access token. */
1438
- access_token?: string;
1955
+ access_token?:
1956
+ string;
1439
1957
  /** Data format for response. */
1440
- alt?: string;
1958
+ alt?:
1959
+ string;
1441
1960
  /** JSONP */
1442
- callback?: string;
1961
+ callback?:
1962
+ string;
1443
1963
  /** Selector specifying which fields to include in a partial response. */
1444
- fields?: string;
1964
+ fields?:
1965
+ string;
1445
1966
  /**
1446
1967
  * Filter field. Used to filter the Triggers to be listed. Possible filters are described in https://google.aip.dev/160. For example, using "?filter=destination:gke" would list
1447
1968
  * only Triggers with a gke destination.
1448
1969
  */
1449
- filter?: string;
1970
+ filter?:
1971
+ string;
1450
1972
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1451
- key?: string;
1973
+ key?:
1974
+ string;
1452
1975
  /** OAuth 2.0 token for the current user. */
1453
- oauth_token?: string;
1976
+ oauth_token?:
1977
+ string;
1454
1978
  /**
1455
1979
  * The sorting order of the resources returned. Value should be a comma-separated list of fields. The default sorting order is ascending. To specify descending order for a field,
1456
1980
  * append a `desc` suffix; for example: `name desc, trigger_id`.
1457
1981
  */
1458
- orderBy?: string;
1982
+ orderBy?:
1983
+ string;
1459
1984
  /** The maximum number of triggers to return on each page. Note: The service may send fewer. */
1460
- pageSize?: number;
1985
+ pageSize?:
1986
+ number;
1461
1987
  /**
1462
1988
  * The page token; provide the value from the `next_page_token` field in a previous `ListTriggers` call to retrieve the subsequent page. When paginating, all other parameters
1463
1989
  * provided to `ListTriggers` must match the call that provided the page token.
1464
1990
  */
1465
- pageToken?: string;
1991
+ pageToken?:
1992
+ string;
1466
1993
  /** Required. The parent collection to list triggers on. */
1467
- parent: string;
1994
+ parent:
1995
+ string;
1468
1996
  /** Returns response with indentations and line breaks. */
1469
- prettyPrint?: boolean;
1997
+ prettyPrint?:
1998
+ boolean;
1470
1999
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1471
- quotaUser?: string;
2000
+ quotaUser?:
2001
+ string;
1472
2002
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1473
- upload_protocol?: string;
2003
+ upload_protocol?:
2004
+ string;
1474
2005
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1475
- uploadType?: string;
2006
+ uploadType?:
2007
+ string;
1476
2008
  }): Request<ListTriggersResponse>;
1477
2009
  /** Update a single trigger. */
1478
2010
  patch(request: {
1479
2011
  /** V1 error format. */
1480
- "$.xgafv"?: string;
2012
+ "$.xgafv"?:
2013
+ string;
1481
2014
  /** OAuth access token. */
1482
- access_token?: string;
2015
+ access_token?:
2016
+ string;
1483
2017
  /** If set to true, and the trigger is not found, a new trigger will be created. In this situation, `update_mask` is ignored. */
1484
- allowMissing?: boolean;
2018
+ allowMissing?:
2019
+ boolean;
1485
2020
  /** Data format for response. */
1486
- alt?: string;
2021
+ alt?:
2022
+ string;
1487
2023
  /** JSONP */
1488
- callback?: string;
2024
+ callback?:
2025
+ string;
1489
2026
  /** Selector specifying which fields to include in a partial response. */
1490
- fields?: string;
2027
+ fields?:
2028
+ string;
1491
2029
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1492
- key?: string;
2030
+ key?:
2031
+ string;
1493
2032
  /** Required. The resource name of the trigger. Must be unique within the location of the project and must be in `projects/{project}/locations/{location}/triggers/{trigger}` format. */
1494
- name: string;
2033
+ name:
2034
+ string;
1495
2035
  /** OAuth 2.0 token for the current user. */
1496
- oauth_token?: string;
2036
+ oauth_token?:
2037
+ string;
1497
2038
  /** Returns response with indentations and line breaks. */
1498
- prettyPrint?: boolean;
2039
+ prettyPrint?:
2040
+ boolean;
1499
2041
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1500
- quotaUser?: string;
2042
+ quotaUser?:
2043
+ string;
1501
2044
  /**
1502
2045
  * The fields to be updated; only fields explicitly provided are updated. If no field mask is provided, all provided fields in the request are updated. To update all fields,
1503
2046
  * provide a field mask of "*".
1504
2047
  */
1505
- updateMask?: string;
2048
+ updateMask?:
2049
+ string;
1506
2050
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1507
- upload_protocol?: string;
2051
+ upload_protocol?:
2052
+ string;
1508
2053
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1509
- uploadType?: string;
1510
- /** Required. If set, validate the request and preview the review, but do not post it. */
1511
- validateOnly?: boolean;
2054
+ uploadType?:
2055
+ string;
2056
+ /** Optional. If set, validate the request and preview the review, but do not post it. */
2057
+ validateOnly?:
2058
+ boolean;
1512
2059
  /** Request body */
1513
- resource: Trigger;
2060
+ resource:
2061
+ Trigger;
1514
2062
  }): Request<GoogleLongrunningOperation>;
1515
2063
  patch(request: {
1516
2064
  /** V1 error format. */
1517
- "$.xgafv"?: string;
2065
+ "$.xgafv"?:
2066
+ string;
1518
2067
  /** OAuth access token. */
1519
- access_token?: string;
2068
+ access_token?:
2069
+ string;
1520
2070
  /** If set to true, and the trigger is not found, a new trigger will be created. In this situation, `update_mask` is ignored. */
1521
- allowMissing?: boolean;
2071
+ allowMissing?:
2072
+ boolean;
1522
2073
  /** Data format for response. */
1523
- alt?: string;
2074
+ alt?:
2075
+ string;
1524
2076
  /** JSONP */
1525
- callback?: string;
2077
+ callback?:
2078
+ string;
1526
2079
  /** Selector specifying which fields to include in a partial response. */
1527
- fields?: string;
2080
+ fields?:
2081
+ string;
1528
2082
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1529
- key?: string;
2083
+ key?:
2084
+ string;
1530
2085
  /** Required. The resource name of the trigger. Must be unique within the location of the project and must be in `projects/{project}/locations/{location}/triggers/{trigger}` format. */
1531
- name: string;
2086
+ name:
2087
+ string;
1532
2088
  /** OAuth 2.0 token for the current user. */
1533
- oauth_token?: string;
2089
+ oauth_token?:
2090
+ string;
1534
2091
  /** Returns response with indentations and line breaks. */
1535
- prettyPrint?: boolean;
2092
+ prettyPrint?:
2093
+ boolean;
1536
2094
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1537
- quotaUser?: string;
2095
+ quotaUser?:
2096
+ string;
1538
2097
  /**
1539
2098
  * The fields to be updated; only fields explicitly provided are updated. If no field mask is provided, all provided fields in the request are updated. To update all fields,
1540
2099
  * provide a field mask of "*".
1541
2100
  */
1542
- updateMask?: string;
2101
+ updateMask?:
2102
+ string;
1543
2103
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1544
- upload_protocol?: string;
2104
+ upload_protocol?:
2105
+ string;
1545
2106
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1546
- uploadType?: string;
1547
- /** Required. If set, validate the request and preview the review, but do not post it. */
1548
- validateOnly?: boolean;
2107
+ uploadType?:
2108
+ string;
2109
+ /** Optional. If set, validate the request and preview the review, but do not post it. */
2110
+ validateOnly?:
2111
+ boolean;
1549
2112
  },
1550
2113
  body: Trigger): Request<GoogleLongrunningOperation>;
1551
2114
  /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
1552
2115
  setIamPolicy(request: {
1553
2116
  /** V1 error format. */
1554
- "$.xgafv"?: string;
2117
+ "$.xgafv"?:
2118
+ string;
1555
2119
  /** OAuth access token. */
1556
- access_token?: string;
2120
+ access_token?:
2121
+ string;
1557
2122
  /** Data format for response. */
1558
- alt?: string;
2123
+ alt?:
2124
+ string;
1559
2125
  /** JSONP */
1560
- callback?: string;
2126
+ callback?:
2127
+ string;
1561
2128
  /** Selector specifying which fields to include in a partial response. */
1562
- fields?: string;
2129
+ fields?:
2130
+ string;
1563
2131
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1564
- key?: string;
2132
+ key?:
2133
+ string;
1565
2134
  /** OAuth 2.0 token for the current user. */
1566
- oauth_token?: string;
2135
+ oauth_token?:
2136
+ string;
1567
2137
  /** Returns response with indentations and line breaks. */
1568
- prettyPrint?: boolean;
2138
+ prettyPrint?:
2139
+ boolean;
1569
2140
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1570
- quotaUser?: string;
2141
+ quotaUser?:
2142
+ string;
1571
2143
  /**
1572
2144
  * REQUIRED: The resource for which the policy is being specified. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this
1573
2145
  * field.
1574
2146
  */
1575
- resource: string;
2147
+ resource:
2148
+ string;
1576
2149
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1577
- upload_protocol?: string;
2150
+ upload_protocol?:
2151
+ string;
1578
2152
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1579
- uploadType?: string;
2153
+ uploadType?:
2154
+ string;
1580
2155
  },
1581
2156
  body: SetIamPolicyRequest): Request<Policy>;
1582
2157
  /**
@@ -1585,32 +2160,44 @@ declare namespace gapi.client {
1585
2160
  */
1586
2161
  testIamPermissions(request: {
1587
2162
  /** V1 error format. */
1588
- "$.xgafv"?: string;
2163
+ "$.xgafv"?:
2164
+ string;
1589
2165
  /** OAuth access token. */
1590
- access_token?: string;
2166
+ access_token?:
2167
+ string;
1591
2168
  /** Data format for response. */
1592
- alt?: string;
2169
+ alt?:
2170
+ string;
1593
2171
  /** JSONP */
1594
- callback?: string;
2172
+ callback?:
2173
+ string;
1595
2174
  /** Selector specifying which fields to include in a partial response. */
1596
- fields?: string;
2175
+ fields?:
2176
+ string;
1597
2177
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1598
- key?: string;
2178
+ key?:
2179
+ string;
1599
2180
  /** OAuth 2.0 token for the current user. */
1600
- oauth_token?: string;
2181
+ oauth_token?:
2182
+ string;
1601
2183
  /** Returns response with indentations and line breaks. */
1602
- prettyPrint?: boolean;
2184
+ prettyPrint?:
2185
+ boolean;
1603
2186
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1604
- quotaUser?: string;
2187
+ quotaUser?:
2188
+ string;
1605
2189
  /**
1606
2190
  * REQUIRED: The resource for which the policy detail is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for
1607
2191
  * this field.
1608
2192
  */
1609
- resource: string;
2193
+ resource:
2194
+ string;
1610
2195
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1611
- upload_protocol?: string;
2196
+ upload_protocol?:
2197
+ string;
1612
2198
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1613
- uploadType?: string;
2199
+ uploadType?:
2200
+ string;
1614
2201
  },
1615
2202
  body: TestIamPermissionsRequest): Request<TestIamPermissionsResponse>;
1616
2203
  }
@@ -1618,167 +2205,239 @@ declare namespace gapi.client {
1618
2205
  /** Gets information about a location. */
1619
2206
  get(request?: {
1620
2207
  /** V1 error format. */
1621
- "$.xgafv"?: string;
2208
+ "$.xgafv"?:
2209
+ string;
1622
2210
  /** OAuth access token. */
1623
- access_token?: string;
2211
+ access_token?:
2212
+ string;
1624
2213
  /** Data format for response. */
1625
- alt?: string;
2214
+ alt?:
2215
+ string;
1626
2216
  /** JSONP */
1627
- callback?: string;
2217
+ callback?:
2218
+ string;
1628
2219
  /** Selector specifying which fields to include in a partial response. */
1629
- fields?: string;
2220
+ fields?:
2221
+ string;
1630
2222
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1631
- key?: string;
2223
+ key?:
2224
+ string;
1632
2225
  /** Resource name for the location. */
1633
- name: string;
2226
+ name:
2227
+ string;
1634
2228
  /** OAuth 2.0 token for the current user. */
1635
- oauth_token?: string;
2229
+ oauth_token?:
2230
+ string;
1636
2231
  /** Returns response with indentations and line breaks. */
1637
- prettyPrint?: boolean;
2232
+ prettyPrint?:
2233
+ boolean;
1638
2234
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1639
- quotaUser?: string;
2235
+ quotaUser?:
2236
+ string;
1640
2237
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1641
- upload_protocol?: string;
2238
+ upload_protocol?:
2239
+ string;
1642
2240
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1643
- uploadType?: string;
2241
+ uploadType?:
2242
+ string;
1644
2243
  }): Request<Location>;
1645
2244
  /** Get a GoogleChannelConfig */
1646
2245
  getGoogleChannelConfig(request?: {
1647
2246
  /** V1 error format. */
1648
- "$.xgafv"?: string;
2247
+ "$.xgafv"?:
2248
+ string;
1649
2249
  /** OAuth access token. */
1650
- access_token?: string;
2250
+ access_token?:
2251
+ string;
1651
2252
  /** Data format for response. */
1652
- alt?: string;
2253
+ alt?:
2254
+ string;
1653
2255
  /** JSONP */
1654
- callback?: string;
2256
+ callback?:
2257
+ string;
1655
2258
  /** Selector specifying which fields to include in a partial response. */
1656
- fields?: string;
2259
+ fields?:
2260
+ string;
1657
2261
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1658
- key?: string;
2262
+ key?:
2263
+ string;
1659
2264
  /** Required. The name of the config to get. */
1660
- name: string;
2265
+ name:
2266
+ string;
1661
2267
  /** OAuth 2.0 token for the current user. */
1662
- oauth_token?: string;
2268
+ oauth_token?:
2269
+ string;
1663
2270
  /** Returns response with indentations and line breaks. */
1664
- prettyPrint?: boolean;
2271
+ prettyPrint?:
2272
+ boolean;
1665
2273
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1666
- quotaUser?: string;
2274
+ quotaUser?:
2275
+ string;
1667
2276
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1668
- upload_protocol?: string;
2277
+ upload_protocol?:
2278
+ string;
1669
2279
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1670
- uploadType?: string;
2280
+ uploadType?:
2281
+ string;
1671
2282
  }): Request<GoogleChannelConfig>;
1672
2283
  /** Lists information about the supported locations for this service. */
1673
2284
  list(request?: {
1674
2285
  /** V1 error format. */
1675
- "$.xgafv"?: string;
2286
+ "$.xgafv"?:
2287
+ string;
1676
2288
  /** OAuth access token. */
1677
- access_token?: string;
2289
+ access_token?:
2290
+ string;
1678
2291
  /** Data format for response. */
1679
- alt?: string;
2292
+ alt?:
2293
+ string;
1680
2294
  /** JSONP */
1681
- callback?: string;
2295
+ callback?:
2296
+ string;
1682
2297
  /** Selector specifying which fields to include in a partial response. */
1683
- fields?: string;
2298
+ fields?:
2299
+ string;
1684
2300
  /**
1685
2301
  * A filter to narrow down results to a preferred subset. The filtering language accepts strings like `"displayName=tokyo"`, and is documented in more detail in
1686
2302
  * [AIP-160](https://google.aip.dev/160).
1687
2303
  */
1688
- filter?: string;
2304
+ filter?:
2305
+ string;
1689
2306
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1690
- key?: string;
2307
+ key?:
2308
+ string;
1691
2309
  /** The resource that owns the locations collection, if applicable. */
1692
- name: string;
2310
+ name:
2311
+ string;
1693
2312
  /** OAuth 2.0 token for the current user. */
1694
- oauth_token?: string;
2313
+ oauth_token?:
2314
+ string;
1695
2315
  /** The maximum number of results to return. If not set, the service selects a default. */
1696
- pageSize?: number;
2316
+ pageSize?:
2317
+ number;
1697
2318
  /** A page token received from the `next_page_token` field in the response. Send that page token to receive the subsequent page. */
1698
- pageToken?: string;
2319
+ pageToken?:
2320
+ string;
1699
2321
  /** Returns response with indentations and line breaks. */
1700
- prettyPrint?: boolean;
2322
+ prettyPrint?:
2323
+ boolean;
1701
2324
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1702
- quotaUser?: string;
2325
+ quotaUser?:
2326
+ string;
1703
2327
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1704
- upload_protocol?: string;
2328
+ upload_protocol?:
2329
+ string;
1705
2330
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1706
- uploadType?: string;
2331
+ uploadType?:
2332
+ string;
1707
2333
  }): Request<ListLocationsResponse>;
1708
2334
  /** Update a single GoogleChannelConfig */
1709
2335
  updateGoogleChannelConfig(request: {
1710
2336
  /** V1 error format. */
1711
- "$.xgafv"?: string;
2337
+ "$.xgafv"?:
2338
+ string;
1712
2339
  /** OAuth access token. */
1713
- access_token?: string;
2340
+ access_token?:
2341
+ string;
1714
2342
  /** Data format for response. */
1715
- alt?: string;
2343
+ alt?:
2344
+ string;
1716
2345
  /** JSONP */
1717
- callback?: string;
2346
+ callback?:
2347
+ string;
1718
2348
  /** Selector specifying which fields to include in a partial response. */
1719
- fields?: string;
2349
+ fields?:
2350
+ string;
1720
2351
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1721
- key?: string;
2352
+ key?:
2353
+ string;
1722
2354
  /** Required. The resource name of the config. Must be in the format of, `projects/{project}/locations/{location}/googleChannelConfig`. */
1723
- name: string;
2355
+ name:
2356
+ string;
1724
2357
  /** OAuth 2.0 token for the current user. */
1725
- oauth_token?: string;
2358
+ oauth_token?:
2359
+ string;
1726
2360
  /** Returns response with indentations and line breaks. */
1727
- prettyPrint?: boolean;
2361
+ prettyPrint?:
2362
+ boolean;
1728
2363
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1729
- quotaUser?: string;
2364
+ quotaUser?:
2365
+ string;
1730
2366
  /**
1731
2367
  * The fields to be updated; only fields explicitly provided are updated. If no field mask is provided, all provided fields in the request are updated. To update all fields,
1732
2368
  * provide a field mask of "*".
1733
2369
  */
1734
- updateMask?: string;
2370
+ updateMask?:
2371
+ string;
1735
2372
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1736
- upload_protocol?: string;
2373
+ upload_protocol?:
2374
+ string;
1737
2375
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1738
- uploadType?: string;
2376
+ uploadType?:
2377
+ string;
1739
2378
  /** Request body */
1740
- resource: GoogleChannelConfig;
2379
+ resource:
2380
+ GoogleChannelConfig;
1741
2381
  }): Request<GoogleChannelConfig>;
1742
2382
  updateGoogleChannelConfig(request: {
1743
2383
  /** V1 error format. */
1744
- "$.xgafv"?: string;
2384
+ "$.xgafv"?:
2385
+ string;
1745
2386
  /** OAuth access token. */
1746
- access_token?: string;
2387
+ access_token?:
2388
+ string;
1747
2389
  /** Data format for response. */
1748
- alt?: string;
2390
+ alt?:
2391
+ string;
1749
2392
  /** JSONP */
1750
- callback?: string;
2393
+ callback?:
2394
+ string;
1751
2395
  /** Selector specifying which fields to include in a partial response. */
1752
- fields?: string;
2396
+ fields?:
2397
+ string;
1753
2398
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1754
- key?: string;
2399
+ key?:
2400
+ string;
1755
2401
  /** Required. The resource name of the config. Must be in the format of, `projects/{project}/locations/{location}/googleChannelConfig`. */
1756
- name: string;
2402
+ name:
2403
+ string;
1757
2404
  /** OAuth 2.0 token for the current user. */
1758
- oauth_token?: string;
2405
+ oauth_token?:
2406
+ string;
1759
2407
  /** Returns response with indentations and line breaks. */
1760
- prettyPrint?: boolean;
2408
+ prettyPrint?:
2409
+ boolean;
1761
2410
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1762
- quotaUser?: string;
2411
+ quotaUser?:
2412
+ string;
1763
2413
  /**
1764
2414
  * The fields to be updated; only fields explicitly provided are updated. If no field mask is provided, all provided fields in the request are updated. To update all fields,
1765
2415
  * provide a field mask of "*".
1766
2416
  */
1767
- updateMask?: string;
2417
+ updateMask?:
2418
+ string;
1768
2419
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1769
- upload_protocol?: string;
2420
+ upload_protocol?:
2421
+ string;
1770
2422
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1771
- uploadType?: string;
2423
+ uploadType?:
2424
+ string;
1772
2425
  },
1773
2426
  body: GoogleChannelConfig): Request<GoogleChannelConfig>;
1774
- channelConnections: ChannelConnectionsResource;
1775
- channels: ChannelsResource;
1776
- operations: OperationsResource;
1777
- providers: ProvidersResource;
1778
- triggers: TriggersResource;
2427
+ channelConnections:
2428
+ ChannelConnectionsResource;
2429
+ channels:
2430
+ ChannelsResource;
2431
+ operations:
2432
+ OperationsResource;
2433
+ providers:
2434
+ ProvidersResource;
2435
+ triggers:
2436
+ TriggersResource;
1779
2437
  }
1780
2438
  interface ProjectsResource {
1781
- locations: LocationsResource;
2439
+ locations:
2440
+ LocationsResource;
1782
2441
  }
1783
2442
 
1784
2443
  const projects: ProjectsResource;