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