@maxim_mazurok/gapi.client.datastream-v1alpha1 0.0.20230410 → 0.0.20230510
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 +1515 -758
- 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://datastream.googleapis.com/$discovery/rest?version=v1alpha1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230510
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -27,21 +27,28 @@ declare namespace gapi.client {
|
|
|
27
27
|
}
|
|
28
28
|
interface BackfillAllStrategy {
|
|
29
29
|
/** MySQL data source objects to avoid backfilling. */
|
|
30
|
-
mysqlExcludedObjects?:
|
|
30
|
+
mysqlExcludedObjects?:
|
|
31
|
+
MysqlRdbms;
|
|
31
32
|
/** Oracle data source objects to avoid backfilling. */
|
|
32
|
-
oracleExcludedObjects?:
|
|
33
|
+
oracleExcludedObjects?:
|
|
34
|
+
OracleRdbms;
|
|
33
35
|
}
|
|
34
36
|
interface BackfillJob {
|
|
35
37
|
/** Output only. Errors which caused the backfill job to fail. */
|
|
36
|
-
errors?:
|
|
38
|
+
errors?:
|
|
39
|
+
Error[];
|
|
37
40
|
/** Output only. Backfill job's end time. */
|
|
38
|
-
lastEndTime?:
|
|
41
|
+
lastEndTime?:
|
|
42
|
+
string;
|
|
39
43
|
/** Output only. Backfill job's start time. */
|
|
40
|
-
lastStartTime?:
|
|
44
|
+
lastStartTime?:
|
|
45
|
+
string;
|
|
41
46
|
/** Backfill job state. */
|
|
42
|
-
state?:
|
|
47
|
+
state?:
|
|
48
|
+
string;
|
|
43
49
|
/** Backfill job's triggering reason. */
|
|
44
|
-
trigger?:
|
|
50
|
+
trigger?:
|
|
51
|
+
string;
|
|
45
52
|
}
|
|
46
53
|
// tslint:disable-next-line:no-empty-interface
|
|
47
54
|
interface BackfillNoneStrategy {
|
|
@@ -51,55 +58,77 @@ declare namespace gapi.client {
|
|
|
51
58
|
}
|
|
52
59
|
interface ConnectionProfile {
|
|
53
60
|
/** Output only. The create time of the resource. */
|
|
54
|
-
createTime?:
|
|
61
|
+
createTime?:
|
|
62
|
+
string;
|
|
55
63
|
/** Required. Display name. */
|
|
56
|
-
displayName?:
|
|
64
|
+
displayName?:
|
|
65
|
+
string;
|
|
57
66
|
/** Forward SSH tunnel connectivity. */
|
|
58
|
-
forwardSshConnectivity?:
|
|
67
|
+
forwardSshConnectivity?:
|
|
68
|
+
ForwardSshTunnelConnectivity;
|
|
59
69
|
/** Cloud Storage ConnectionProfile configuration. */
|
|
60
|
-
gcsProfile?:
|
|
70
|
+
gcsProfile?:
|
|
71
|
+
GcsProfile;
|
|
61
72
|
/** Labels. */
|
|
62
|
-
labels?:
|
|
73
|
+
labels?:
|
|
74
|
+
{ [P in string]: string };
|
|
63
75
|
/** MySQL ConnectionProfile configuration. */
|
|
64
|
-
mysqlProfile?:
|
|
76
|
+
mysqlProfile?:
|
|
77
|
+
MysqlProfile;
|
|
65
78
|
/** Output only. The resource's name. */
|
|
66
|
-
name?:
|
|
79
|
+
name?:
|
|
80
|
+
string;
|
|
67
81
|
/** No connectivity option chosen. */
|
|
68
|
-
noConnectivity?:
|
|
82
|
+
noConnectivity?:
|
|
83
|
+
any;
|
|
69
84
|
/** Oracle ConnectionProfile configuration. */
|
|
70
|
-
oracleProfile?:
|
|
85
|
+
oracleProfile?:
|
|
86
|
+
OracleProfile;
|
|
71
87
|
/** Private connectivity. */
|
|
72
|
-
privateConnectivity?:
|
|
88
|
+
privateConnectivity?:
|
|
89
|
+
PrivateConnectivity;
|
|
73
90
|
/** Static Service IP connectivity. */
|
|
74
|
-
staticServiceIpConnectivity?:
|
|
91
|
+
staticServiceIpConnectivity?:
|
|
92
|
+
any;
|
|
75
93
|
/** Output only. The update time of the resource. */
|
|
76
|
-
updateTime?:
|
|
94
|
+
updateTime?:
|
|
95
|
+
string;
|
|
77
96
|
}
|
|
78
97
|
interface DestinationConfig {
|
|
79
98
|
/** Required. Destination connection profile identifier. */
|
|
80
|
-
destinationConnectionProfileName?:
|
|
99
|
+
destinationConnectionProfileName?:
|
|
100
|
+
string;
|
|
81
101
|
/** GCS destination configuration. */
|
|
82
|
-
gcsDestinationConfig?:
|
|
102
|
+
gcsDestinationConfig?:
|
|
103
|
+
GcsDestinationConfig;
|
|
83
104
|
}
|
|
84
105
|
interface DiscoverConnectionProfileRequest {
|
|
85
106
|
/** An ad-hoc ConnectionProfile configuration. */
|
|
86
|
-
connectionProfile?:
|
|
107
|
+
connectionProfile?:
|
|
108
|
+
ConnectionProfile;
|
|
87
109
|
/** A reference to an existing ConnectionProfile. */
|
|
88
|
-
connectionProfileName?:
|
|
110
|
+
connectionProfileName?:
|
|
111
|
+
string;
|
|
89
112
|
/** MySQL RDBMS to enrich with child data objects and metadata. */
|
|
90
|
-
mysqlRdbms?:
|
|
113
|
+
mysqlRdbms?:
|
|
114
|
+
MysqlRdbms;
|
|
91
115
|
/** Oracle RDBMS to enrich with child data objects and metadata. */
|
|
92
|
-
oracleRdbms?:
|
|
116
|
+
oracleRdbms?:
|
|
117
|
+
OracleRdbms;
|
|
93
118
|
/** The number of hierarchy levels below the current level to be retrieved. */
|
|
94
|
-
recursionDepth?:
|
|
119
|
+
recursionDepth?:
|
|
120
|
+
number;
|
|
95
121
|
/** Whether to retrieve the full hierarchy of data objects (TRUE) or only the current level (FALSE). */
|
|
96
|
-
recursive?:
|
|
122
|
+
recursive?:
|
|
123
|
+
boolean;
|
|
97
124
|
}
|
|
98
125
|
interface DiscoverConnectionProfileResponse {
|
|
99
126
|
/** Enriched MySQL RDBMS object. */
|
|
100
|
-
mysqlRdbms?:
|
|
127
|
+
mysqlRdbms?:
|
|
128
|
+
MysqlRdbms;
|
|
101
129
|
/** Enriched Oracle RDBMS object. */
|
|
102
|
-
oracleRdbms?:
|
|
130
|
+
oracleRdbms?:
|
|
131
|
+
OracleRdbms;
|
|
103
132
|
}
|
|
104
133
|
// tslint:disable-next-line:no-empty-interface
|
|
105
134
|
interface DropLargeObjects {
|
|
@@ -109,485 +138,663 @@ declare namespace gapi.client {
|
|
|
109
138
|
}
|
|
110
139
|
interface Error {
|
|
111
140
|
/** Additional information about the error. */
|
|
112
|
-
details?:
|
|
141
|
+
details?:
|
|
142
|
+
{ [P in string]: string };
|
|
113
143
|
/** The time when the error occurred. */
|
|
114
|
-
errorTime?:
|
|
144
|
+
errorTime?:
|
|
145
|
+
string;
|
|
115
146
|
/** A unique identifier for this specific error, allowing it to be traced throughout the system in logs and API responses. */
|
|
116
|
-
errorUuid?:
|
|
147
|
+
errorUuid?:
|
|
148
|
+
string;
|
|
117
149
|
/** A message containing more information about the error that occurred. */
|
|
118
|
-
message?:
|
|
150
|
+
message?:
|
|
151
|
+
string;
|
|
119
152
|
/** A title that explains the reason for the error. */
|
|
120
|
-
reason?:
|
|
153
|
+
reason?:
|
|
154
|
+
string;
|
|
121
155
|
}
|
|
122
156
|
// tslint:disable-next-line:no-empty-interface
|
|
123
157
|
interface FetchErrorsRequest {
|
|
124
158
|
}
|
|
125
159
|
interface FetchErrorsResponse {
|
|
126
160
|
/** The list of errors on the Stream. */
|
|
127
|
-
errors?:
|
|
161
|
+
errors?:
|
|
162
|
+
Error[];
|
|
128
163
|
}
|
|
129
164
|
interface FetchStaticIpsResponse {
|
|
130
165
|
/** A token that can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
131
|
-
nextPageToken?:
|
|
166
|
+
nextPageToken?:
|
|
167
|
+
string;
|
|
132
168
|
/** list of static ips by account */
|
|
133
|
-
staticIps?:
|
|
169
|
+
staticIps?:
|
|
170
|
+
string[];
|
|
134
171
|
}
|
|
135
172
|
interface ForwardSshTunnelConnectivity {
|
|
136
173
|
/** Required. Hostname for the SSH tunnel. */
|
|
137
|
-
hostname?:
|
|
174
|
+
hostname?:
|
|
175
|
+
string;
|
|
138
176
|
/** Input only. SSH password. */
|
|
139
|
-
password?:
|
|
177
|
+
password?:
|
|
178
|
+
string;
|
|
140
179
|
/** Port for the SSH tunnel, default value is 22. */
|
|
141
|
-
port?:
|
|
180
|
+
port?:
|
|
181
|
+
number;
|
|
142
182
|
/** Input only. SSH private key. */
|
|
143
|
-
privateKey?:
|
|
183
|
+
privateKey?:
|
|
184
|
+
string;
|
|
144
185
|
/** Required. Username for the SSH tunnel. */
|
|
145
|
-
username?:
|
|
186
|
+
username?:
|
|
187
|
+
string;
|
|
146
188
|
}
|
|
147
189
|
interface GcsDestinationConfig {
|
|
148
190
|
/** AVRO file format configuration. */
|
|
149
|
-
avroFileFormat?:
|
|
191
|
+
avroFileFormat?:
|
|
192
|
+
any;
|
|
150
193
|
/** The maximum duration for which new events are added before a file is closed and a new file is created. */
|
|
151
|
-
fileRotationInterval?:
|
|
194
|
+
fileRotationInterval?:
|
|
195
|
+
string;
|
|
152
196
|
/** The maximum file size to be saved in the bucket. */
|
|
153
|
-
fileRotationMb?:
|
|
197
|
+
fileRotationMb?:
|
|
198
|
+
number;
|
|
154
199
|
/** File format that data should be written in. Deprecated field (b/169501737) - use file_format instead. */
|
|
155
|
-
gcsFileFormat?:
|
|
200
|
+
gcsFileFormat?:
|
|
201
|
+
string;
|
|
156
202
|
/** JSON file format configuration. */
|
|
157
|
-
jsonFileFormat?:
|
|
203
|
+
jsonFileFormat?:
|
|
204
|
+
JsonFileFormat;
|
|
158
205
|
/** Path inside the Cloud Storage bucket to write data to. */
|
|
159
|
-
path?:
|
|
206
|
+
path?:
|
|
207
|
+
string;
|
|
160
208
|
}
|
|
161
209
|
interface GcsProfile {
|
|
162
210
|
/** Required. The full project and resource path for Cloud Storage bucket including the name. */
|
|
163
|
-
bucketName?:
|
|
211
|
+
bucketName?:
|
|
212
|
+
string;
|
|
164
213
|
/** The root path inside the Cloud Storage bucket. */
|
|
165
|
-
rootPath?:
|
|
214
|
+
rootPath?:
|
|
215
|
+
string;
|
|
166
216
|
}
|
|
167
217
|
interface JsonFileFormat {
|
|
168
218
|
/** Compression of the loaded JSON file. */
|
|
169
|
-
compression?:
|
|
219
|
+
compression?:
|
|
220
|
+
string;
|
|
170
221
|
/** The schema file format along JSON data files. */
|
|
171
|
-
schemaFileFormat?:
|
|
222
|
+
schemaFileFormat?:
|
|
223
|
+
string;
|
|
172
224
|
}
|
|
173
225
|
interface ListConnectionProfilesResponse {
|
|
174
226
|
/** List of connection profiles. */
|
|
175
|
-
connectionProfiles?:
|
|
227
|
+
connectionProfiles?:
|
|
228
|
+
ConnectionProfile[];
|
|
176
229
|
/** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
177
|
-
nextPageToken?:
|
|
230
|
+
nextPageToken?:
|
|
231
|
+
string;
|
|
178
232
|
/** Locations that could not be reached. */
|
|
179
|
-
unreachable?:
|
|
233
|
+
unreachable?:
|
|
234
|
+
string[];
|
|
180
235
|
}
|
|
181
236
|
interface ListLocationsResponse {
|
|
182
237
|
/** A list of locations that matches the specified filter in the request. */
|
|
183
|
-
locations?:
|
|
238
|
+
locations?:
|
|
239
|
+
Location[];
|
|
184
240
|
/** The standard List next-page token. */
|
|
185
|
-
nextPageToken?:
|
|
241
|
+
nextPageToken?:
|
|
242
|
+
string;
|
|
186
243
|
}
|
|
187
244
|
interface ListOperationsResponse {
|
|
188
245
|
/** The standard List next-page token. */
|
|
189
|
-
nextPageToken?:
|
|
246
|
+
nextPageToken?:
|
|
247
|
+
string;
|
|
190
248
|
/** A list of operations that matches the specified filter in the request. */
|
|
191
|
-
operations?:
|
|
249
|
+
operations?:
|
|
250
|
+
Operation[];
|
|
192
251
|
}
|
|
193
252
|
interface ListPrivateConnectionsResponse {
|
|
194
253
|
/** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
195
|
-
nextPageToken?:
|
|
254
|
+
nextPageToken?:
|
|
255
|
+
string;
|
|
196
256
|
/** List of private connectivity configurations. */
|
|
197
|
-
privateConnections?:
|
|
257
|
+
privateConnections?:
|
|
258
|
+
PrivateConnection[];
|
|
198
259
|
/** Locations that could not be reached. */
|
|
199
|
-
unreachable?:
|
|
260
|
+
unreachable?:
|
|
261
|
+
string[];
|
|
200
262
|
}
|
|
201
263
|
interface ListRoutesResponse {
|
|
202
264
|
/** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
203
|
-
nextPageToken?:
|
|
265
|
+
nextPageToken?:
|
|
266
|
+
string;
|
|
204
267
|
/** List of Routes. */
|
|
205
|
-
routes?:
|
|
268
|
+
routes?:
|
|
269
|
+
Route[];
|
|
206
270
|
/** Locations that could not be reached. */
|
|
207
|
-
unreachable?:
|
|
271
|
+
unreachable?:
|
|
272
|
+
string[];
|
|
208
273
|
}
|
|
209
274
|
interface ListStreamObjectsResponse {
|
|
210
275
|
/** A token, which can be sent as `page_token` to retrieve the next page. */
|
|
211
|
-
nextPageToken?:
|
|
276
|
+
nextPageToken?:
|
|
277
|
+
string;
|
|
212
278
|
/** List of stream objects. */
|
|
213
|
-
streamObjects?:
|
|
279
|
+
streamObjects?:
|
|
280
|
+
StreamObject[];
|
|
214
281
|
}
|
|
215
282
|
interface ListStreamsResponse {
|
|
216
283
|
/** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
217
|
-
nextPageToken?:
|
|
284
|
+
nextPageToken?:
|
|
285
|
+
string;
|
|
218
286
|
/** List of streams */
|
|
219
|
-
streams?:
|
|
287
|
+
streams?:
|
|
288
|
+
Stream[];
|
|
220
289
|
/** Locations that could not be reached. */
|
|
221
|
-
unreachable?:
|
|
290
|
+
unreachable?:
|
|
291
|
+
string[];
|
|
222
292
|
}
|
|
223
293
|
interface Location {
|
|
224
294
|
/** The friendly name for this location, typically a nearby city name. For example, "Tokyo". */
|
|
225
|
-
displayName?:
|
|
295
|
+
displayName?:
|
|
296
|
+
string;
|
|
226
297
|
/** Cross-service attributes for the location. For example {"cloud.googleapis.com/region": "us-east1"} */
|
|
227
|
-
labels?:
|
|
298
|
+
labels?:
|
|
299
|
+
{ [P in string]: string };
|
|
228
300
|
/** The canonical id for this location. For example: `"us-east1"`. */
|
|
229
|
-
locationId?:
|
|
301
|
+
locationId?:
|
|
302
|
+
string;
|
|
230
303
|
/** Service-specific metadata. For example the available capacity at the given location. */
|
|
231
|
-
metadata?:
|
|
304
|
+
metadata?:
|
|
305
|
+
{ [P in string]: any };
|
|
232
306
|
/** Resource name for the location, which may vary between implementations. For example: `"projects/example-project/locations/us-east1"` */
|
|
233
|
-
name?:
|
|
307
|
+
name?:
|
|
308
|
+
string;
|
|
234
309
|
}
|
|
235
310
|
interface MysqlColumn {
|
|
236
311
|
/** Column collation. */
|
|
237
|
-
collation?:
|
|
312
|
+
collation?:
|
|
313
|
+
string;
|
|
238
314
|
/** Column name. */
|
|
239
|
-
columnName?:
|
|
315
|
+
columnName?:
|
|
316
|
+
string;
|
|
240
317
|
/** The MySQL data type. Full data types list can be found here: https://dev.mysql.com/doc/refman/8.0/en/data-types.html */
|
|
241
|
-
dataType?:
|
|
318
|
+
dataType?:
|
|
319
|
+
string;
|
|
242
320
|
/** Column length. */
|
|
243
|
-
length?:
|
|
321
|
+
length?:
|
|
322
|
+
number;
|
|
244
323
|
/** Whether or not the column can accept a null value. */
|
|
245
|
-
nullable?:
|
|
324
|
+
nullable?:
|
|
325
|
+
boolean;
|
|
246
326
|
/** The ordinal position of the column in the table. */
|
|
247
|
-
ordinalPosition?:
|
|
327
|
+
ordinalPosition?:
|
|
328
|
+
number;
|
|
248
329
|
/** Whether or not the column represents a primary key. */
|
|
249
|
-
primaryKey?:
|
|
330
|
+
primaryKey?:
|
|
331
|
+
boolean;
|
|
250
332
|
}
|
|
251
333
|
interface MysqlDatabase {
|
|
252
334
|
/** Database name. */
|
|
253
|
-
databaseName?:
|
|
335
|
+
databaseName?:
|
|
336
|
+
string;
|
|
254
337
|
/** Tables in the database. */
|
|
255
|
-
mysqlTables?:
|
|
338
|
+
mysqlTables?:
|
|
339
|
+
MysqlTable[];
|
|
256
340
|
}
|
|
257
341
|
interface MysqlObjectIdentifier {
|
|
258
342
|
/** Required. The database name. */
|
|
259
|
-
database?:
|
|
343
|
+
database?:
|
|
344
|
+
string;
|
|
260
345
|
/** Required. The table name. */
|
|
261
|
-
table?:
|
|
346
|
+
table?:
|
|
347
|
+
string;
|
|
262
348
|
}
|
|
263
349
|
interface MysqlProfile {
|
|
264
350
|
/** Required. Hostname for the MySQL connection. */
|
|
265
|
-
hostname?:
|
|
351
|
+
hostname?:
|
|
352
|
+
string;
|
|
266
353
|
/** Required. Input only. Password for the MySQL connection. */
|
|
267
|
-
password?:
|
|
354
|
+
password?:
|
|
355
|
+
string;
|
|
268
356
|
/** Port for the MySQL connection, default value is 3306. */
|
|
269
|
-
port?:
|
|
357
|
+
port?:
|
|
358
|
+
number;
|
|
270
359
|
/** SSL configuration for the MySQL connection. */
|
|
271
|
-
sslConfig?:
|
|
360
|
+
sslConfig?:
|
|
361
|
+
MysqlSslConfig;
|
|
272
362
|
/** Required. Username for the MySQL connection. */
|
|
273
|
-
username?:
|
|
363
|
+
username?:
|
|
364
|
+
string;
|
|
274
365
|
}
|
|
275
366
|
interface MysqlRdbms {
|
|
276
367
|
/** Mysql databases on the server */
|
|
277
|
-
mysqlDatabases?:
|
|
368
|
+
mysqlDatabases?:
|
|
369
|
+
MysqlDatabase[];
|
|
278
370
|
}
|
|
279
371
|
interface MysqlSourceConfig {
|
|
280
372
|
/** MySQL objects to retrieve from the source. */
|
|
281
|
-
allowlist?:
|
|
373
|
+
allowlist?:
|
|
374
|
+
MysqlRdbms;
|
|
282
375
|
/** MySQL objects to exclude from the stream. */
|
|
283
|
-
rejectlist?:
|
|
376
|
+
rejectlist?:
|
|
377
|
+
MysqlRdbms;
|
|
284
378
|
}
|
|
285
379
|
interface MysqlSslConfig {
|
|
286
380
|
/** Input only. PEM-encoded certificate of the CA that signed the source database server's certificate. */
|
|
287
|
-
caCertificate?:
|
|
381
|
+
caCertificate?:
|
|
382
|
+
string;
|
|
288
383
|
/** Output only. Indicates whether the ca_certificate field is set. */
|
|
289
|
-
caCertificateSet?:
|
|
384
|
+
caCertificateSet?:
|
|
385
|
+
boolean;
|
|
290
386
|
/**
|
|
291
387
|
* Input only. PEM-encoded certificate that will be used by the replica to authenticate against the source database server. If this field is used then the 'client_key' and the
|
|
292
388
|
* 'ca_certificate' fields are mandatory.
|
|
293
389
|
*/
|
|
294
|
-
clientCertificate?:
|
|
390
|
+
clientCertificate?:
|
|
391
|
+
string;
|
|
295
392
|
/** Output only. Indicates whether the client_certificate field is set. */
|
|
296
|
-
clientCertificateSet?:
|
|
393
|
+
clientCertificateSet?:
|
|
394
|
+
boolean;
|
|
297
395
|
/** Input only. PEM-encoded private key associated with the Client Certificate. If this field is used then the 'client_certificate' and the 'ca_certificate' fields are mandatory. */
|
|
298
|
-
clientKey?:
|
|
396
|
+
clientKey?:
|
|
397
|
+
string;
|
|
299
398
|
/** Output only. Indicates whether the client_key field is set. */
|
|
300
|
-
clientKeySet?:
|
|
399
|
+
clientKeySet?:
|
|
400
|
+
boolean;
|
|
301
401
|
}
|
|
302
402
|
interface MysqlTable {
|
|
303
403
|
/** MySQL columns in the database. When unspecified as part of include/exclude lists, includes/excludes everything. */
|
|
304
|
-
mysqlColumns?:
|
|
404
|
+
mysqlColumns?:
|
|
405
|
+
MysqlColumn[];
|
|
305
406
|
/** Table name. */
|
|
306
|
-
tableName?:
|
|
407
|
+
tableName?:
|
|
408
|
+
string;
|
|
307
409
|
}
|
|
308
410
|
// tslint:disable-next-line:no-empty-interface
|
|
309
411
|
interface NoConnectivitySettings {
|
|
310
412
|
}
|
|
311
413
|
interface Operation {
|
|
312
414
|
/** 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. */
|
|
313
|
-
done?:
|
|
415
|
+
done?:
|
|
416
|
+
boolean;
|
|
314
417
|
/** The error result of the operation in case of failure or cancellation. */
|
|
315
|
-
error?:
|
|
418
|
+
error?:
|
|
419
|
+
Status;
|
|
316
420
|
/**
|
|
317
421
|
* 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
|
|
318
422
|
* metadata. Any method that returns a long-running operation should document the metadata type, if any.
|
|
319
423
|
*/
|
|
320
|
-
metadata?:
|
|
424
|
+
metadata?:
|
|
425
|
+
{ [P in string]: any };
|
|
321
426
|
/**
|
|
322
427
|
* 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
|
|
323
428
|
* with `operations/{unique_id}`.
|
|
324
429
|
*/
|
|
325
|
-
name?:
|
|
430
|
+
name?:
|
|
431
|
+
string;
|
|
326
432
|
/**
|
|
327
433
|
* 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
|
|
328
434
|
* 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
|
|
329
435
|
* original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
|
|
330
436
|
*/
|
|
331
|
-
response?:
|
|
437
|
+
response?:
|
|
438
|
+
{ [P in string]: any };
|
|
332
439
|
}
|
|
333
440
|
interface OperationMetadata {
|
|
334
441
|
/** Output only. API version used to start the operation. */
|
|
335
|
-
apiVersion?:
|
|
442
|
+
apiVersion?:
|
|
443
|
+
string;
|
|
336
444
|
/** Output only. The time the operation was created. */
|
|
337
|
-
createTime?:
|
|
445
|
+
createTime?:
|
|
446
|
+
string;
|
|
338
447
|
/** Output only. The time the operation finished running. */
|
|
339
|
-
endTime?:
|
|
448
|
+
endTime?:
|
|
449
|
+
string;
|
|
340
450
|
/**
|
|
341
451
|
* Output only. Identifies whether the user has requested cancellation of the operation. Operations that have successfully been cancelled have Operation.error value with a
|
|
342
452
|
* google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
|
|
343
453
|
*/
|
|
344
|
-
requestedCancellation?:
|
|
454
|
+
requestedCancellation?:
|
|
455
|
+
boolean;
|
|
345
456
|
/** Output only. Human-readable status of the operation, if any. */
|
|
346
|
-
statusMessage?:
|
|
457
|
+
statusMessage?:
|
|
458
|
+
string;
|
|
347
459
|
/** Output only. Server-defined resource path for the target of the operation. */
|
|
348
|
-
target?:
|
|
460
|
+
target?:
|
|
461
|
+
string;
|
|
349
462
|
/** Output only. Results of executed validations if there are any. */
|
|
350
|
-
validationResult?:
|
|
463
|
+
validationResult?:
|
|
464
|
+
ValidationResult;
|
|
351
465
|
/** Output only. Name of the verb executed by the operation. */
|
|
352
|
-
verb?:
|
|
466
|
+
verb?:
|
|
467
|
+
string;
|
|
353
468
|
}
|
|
354
469
|
interface OracleColumn {
|
|
355
470
|
/** Column name. */
|
|
356
|
-
columnName?:
|
|
471
|
+
columnName?:
|
|
472
|
+
string;
|
|
357
473
|
/** The Oracle data type. */
|
|
358
|
-
dataType?:
|
|
474
|
+
dataType?:
|
|
475
|
+
string;
|
|
359
476
|
/** Column encoding. */
|
|
360
|
-
encoding?:
|
|
477
|
+
encoding?:
|
|
478
|
+
string;
|
|
361
479
|
/** Column length. */
|
|
362
|
-
length?:
|
|
480
|
+
length?:
|
|
481
|
+
number;
|
|
363
482
|
/** Whether or not the column can accept a null value. */
|
|
364
|
-
nullable?:
|
|
483
|
+
nullable?:
|
|
484
|
+
boolean;
|
|
365
485
|
/** The ordinal position of the column in the table. */
|
|
366
|
-
ordinalPosition?:
|
|
486
|
+
ordinalPosition?:
|
|
487
|
+
number;
|
|
367
488
|
/** Column precision. */
|
|
368
|
-
precision?:
|
|
489
|
+
precision?:
|
|
490
|
+
number;
|
|
369
491
|
/** Whether or not the column represents a primary key. */
|
|
370
|
-
primaryKey?:
|
|
492
|
+
primaryKey?:
|
|
493
|
+
boolean;
|
|
371
494
|
/** Column scale. */
|
|
372
|
-
scale?:
|
|
495
|
+
scale?:
|
|
496
|
+
number;
|
|
373
497
|
}
|
|
374
498
|
interface OracleObjectIdentifier {
|
|
375
499
|
/** Required. The schema name. */
|
|
376
|
-
schema?:
|
|
500
|
+
schema?:
|
|
501
|
+
string;
|
|
377
502
|
/** Required. The table name. */
|
|
378
|
-
table?:
|
|
503
|
+
table?:
|
|
504
|
+
string;
|
|
379
505
|
}
|
|
380
506
|
interface OracleProfile {
|
|
381
507
|
/** Connection string attributes */
|
|
382
|
-
connectionAttributes?:
|
|
508
|
+
connectionAttributes?:
|
|
509
|
+
{ [P in string]: string };
|
|
383
510
|
/** Required. Database for the Oracle connection. */
|
|
384
|
-
databaseService?:
|
|
511
|
+
databaseService?:
|
|
512
|
+
string;
|
|
385
513
|
/** Required. Hostname for the Oracle connection. */
|
|
386
|
-
hostname?:
|
|
514
|
+
hostname?:
|
|
515
|
+
string;
|
|
387
516
|
/** Required. Password for the Oracle connection. */
|
|
388
|
-
password?:
|
|
517
|
+
password?:
|
|
518
|
+
string;
|
|
389
519
|
/** Port for the Oracle connection, default value is 1521. */
|
|
390
|
-
port?:
|
|
520
|
+
port?:
|
|
521
|
+
number;
|
|
391
522
|
/** Required. Username for the Oracle connection. */
|
|
392
|
-
username?:
|
|
523
|
+
username?:
|
|
524
|
+
string;
|
|
393
525
|
}
|
|
394
526
|
interface OracleRdbms {
|
|
395
527
|
/** Oracle schemas/databases in the database server. */
|
|
396
|
-
oracleSchemas?:
|
|
528
|
+
oracleSchemas?:
|
|
529
|
+
OracleSchema[];
|
|
397
530
|
}
|
|
398
531
|
interface OracleSchema {
|
|
399
532
|
/** Tables in the schema. */
|
|
400
|
-
oracleTables?:
|
|
533
|
+
oracleTables?:
|
|
534
|
+
OracleTable[];
|
|
401
535
|
/** Schema name. */
|
|
402
|
-
schemaName?:
|
|
536
|
+
schemaName?:
|
|
537
|
+
string;
|
|
403
538
|
}
|
|
404
539
|
interface OracleSourceConfig {
|
|
405
540
|
/** Oracle objects to include in the stream. */
|
|
406
|
-
allowlist?:
|
|
541
|
+
allowlist?:
|
|
542
|
+
OracleRdbms;
|
|
407
543
|
/** Drop large object values. */
|
|
408
|
-
dropLargeObjects?:
|
|
544
|
+
dropLargeObjects?:
|
|
545
|
+
any;
|
|
409
546
|
/** Oracle objects to exclude from the stream. */
|
|
410
|
-
rejectlist?:
|
|
547
|
+
rejectlist?:
|
|
548
|
+
OracleRdbms;
|
|
411
549
|
}
|
|
412
550
|
interface OracleTable {
|
|
413
551
|
/** Oracle columns in the schema. When unspecified as part of inclue/exclude lists, includes/excludes everything. */
|
|
414
|
-
oracleColumns?:
|
|
552
|
+
oracleColumns?:
|
|
553
|
+
OracleColumn[];
|
|
415
554
|
/** Table name. */
|
|
416
|
-
tableName?:
|
|
555
|
+
tableName?:
|
|
556
|
+
string;
|
|
417
557
|
}
|
|
418
558
|
interface PrivateConnection {
|
|
419
559
|
/** Output only. The create time of the resource. */
|
|
420
|
-
createTime?:
|
|
560
|
+
createTime?:
|
|
561
|
+
string;
|
|
421
562
|
/** Required. Display name. */
|
|
422
|
-
displayName?:
|
|
563
|
+
displayName?:
|
|
564
|
+
string;
|
|
423
565
|
/** Output only. In case of error, the details of the error in a user-friendly format. */
|
|
424
|
-
error?:
|
|
566
|
+
error?:
|
|
567
|
+
Error;
|
|
425
568
|
/** Labels. */
|
|
426
|
-
labels?:
|
|
569
|
+
labels?:
|
|
570
|
+
{ [P in string]: string };
|
|
427
571
|
/** Output only. The resource's name. */
|
|
428
|
-
name?:
|
|
572
|
+
name?:
|
|
573
|
+
string;
|
|
429
574
|
/** Output only. The state of the Private Connection. */
|
|
430
|
-
state?:
|
|
575
|
+
state?:
|
|
576
|
+
string;
|
|
431
577
|
/** Output only. The update time of the resource. */
|
|
432
|
-
updateTime?:
|
|
578
|
+
updateTime?:
|
|
579
|
+
string;
|
|
433
580
|
/** VPC Peering Config */
|
|
434
|
-
vpcPeeringConfig?:
|
|
581
|
+
vpcPeeringConfig?:
|
|
582
|
+
VpcPeeringConfig;
|
|
435
583
|
}
|
|
436
584
|
interface PrivateConnectivity {
|
|
437
|
-
privateConnectionName?:
|
|
585
|
+
privateConnectionName?:
|
|
586
|
+
string;
|
|
438
587
|
}
|
|
439
588
|
interface Route {
|
|
440
589
|
/** Output only. The create time of the resource. */
|
|
441
|
-
createTime?:
|
|
590
|
+
createTime?:
|
|
591
|
+
string;
|
|
442
592
|
/** Required. Destination address for connection */
|
|
443
|
-
destinationAddress?:
|
|
593
|
+
destinationAddress?:
|
|
594
|
+
string;
|
|
444
595
|
/** Destination port for connection */
|
|
445
|
-
destinationPort?:
|
|
596
|
+
destinationPort?:
|
|
597
|
+
number;
|
|
446
598
|
/** Required. Display name. */
|
|
447
|
-
displayName?:
|
|
599
|
+
displayName?:
|
|
600
|
+
string;
|
|
448
601
|
/** Labels. */
|
|
449
|
-
labels?:
|
|
602
|
+
labels?:
|
|
603
|
+
{ [P in string]: string };
|
|
450
604
|
/** Output only. The resource's name. */
|
|
451
|
-
name?:
|
|
605
|
+
name?:
|
|
606
|
+
string;
|
|
452
607
|
/** Output only. The update time of the resource. */
|
|
453
|
-
updateTime?:
|
|
608
|
+
updateTime?:
|
|
609
|
+
string;
|
|
454
610
|
}
|
|
455
611
|
interface SourceConfig {
|
|
456
612
|
/** MySQL data source configuration */
|
|
457
|
-
mysqlSourceConfig?:
|
|
613
|
+
mysqlSourceConfig?:
|
|
614
|
+
MysqlSourceConfig;
|
|
458
615
|
/** Oracle data source configuration */
|
|
459
|
-
oracleSourceConfig?:
|
|
616
|
+
oracleSourceConfig?:
|
|
617
|
+
OracleSourceConfig;
|
|
460
618
|
/** Required. Source connection profile identifier. */
|
|
461
|
-
sourceConnectionProfileName?:
|
|
619
|
+
sourceConnectionProfileName?:
|
|
620
|
+
string;
|
|
462
621
|
}
|
|
463
622
|
interface SourceObjectIdentifier {
|
|
464
623
|
/** Mysql data source object identifier. */
|
|
465
|
-
mysqlIdentifier?:
|
|
624
|
+
mysqlIdentifier?:
|
|
625
|
+
MysqlObjectIdentifier;
|
|
466
626
|
/** Oracle data source object identifier. */
|
|
467
|
-
oracleIdentifier?:
|
|
627
|
+
oracleIdentifier?:
|
|
628
|
+
OracleObjectIdentifier;
|
|
468
629
|
}
|
|
469
630
|
interface StartBackfillJobResponse {
|
|
470
631
|
/** The stream object resource a backfill job was started for. */
|
|
471
|
-
object?:
|
|
632
|
+
object?:
|
|
633
|
+
StreamObject;
|
|
472
634
|
}
|
|
473
635
|
// tslint:disable-next-line:no-empty-interface
|
|
474
636
|
interface StaticServiceIpConnectivity {
|
|
475
637
|
}
|
|
476
638
|
interface Status {
|
|
477
639
|
/** The status code, which should be an enum value of google.rpc.Code. */
|
|
478
|
-
code?:
|
|
640
|
+
code?:
|
|
641
|
+
number;
|
|
479
642
|
/** A list of messages that carry the error details. There is a common set of message types for APIs to use. */
|
|
480
|
-
details?:
|
|
643
|
+
details?:
|
|
644
|
+
Array<{ [P in string]: any }>;
|
|
481
645
|
/**
|
|
482
646
|
* 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
|
|
483
647
|
* client.
|
|
484
648
|
*/
|
|
485
|
-
message?:
|
|
649
|
+
message?:
|
|
650
|
+
string;
|
|
486
651
|
}
|
|
487
652
|
interface StopBackfillJobResponse {
|
|
488
653
|
/** The stream object resource the backfill job was stopped for. */
|
|
489
|
-
object?:
|
|
654
|
+
object?:
|
|
655
|
+
StreamObject;
|
|
490
656
|
}
|
|
491
657
|
interface Stream {
|
|
492
658
|
/** Automatically backfill objects included in the stream source configuration. Specific objects can be excluded. */
|
|
493
|
-
backfillAll?:
|
|
659
|
+
backfillAll?:
|
|
660
|
+
BackfillAllStrategy;
|
|
494
661
|
/** Do not automatically backfill any objects. */
|
|
495
|
-
backfillNone?:
|
|
662
|
+
backfillNone?:
|
|
663
|
+
any;
|
|
496
664
|
/** Output only. The creation time of the stream. */
|
|
497
|
-
createTime?:
|
|
665
|
+
createTime?:
|
|
666
|
+
string;
|
|
498
667
|
/**
|
|
499
668
|
* Immutable. A reference to a KMS encryption key. If provided, it will be used to encrypt the data. If left blank, data will be encrypted using an internal Stream-specific encryption
|
|
500
669
|
* key provisioned through KMS.
|
|
501
670
|
*/
|
|
502
|
-
customerManagedEncryptionKey?:
|
|
671
|
+
customerManagedEncryptionKey?:
|
|
672
|
+
string;
|
|
503
673
|
/** Required. Destination connection profile configuration. */
|
|
504
|
-
destinationConfig?:
|
|
674
|
+
destinationConfig?:
|
|
675
|
+
DestinationConfig;
|
|
505
676
|
/** Required. Display name. */
|
|
506
|
-
displayName?:
|
|
677
|
+
displayName?:
|
|
678
|
+
string;
|
|
507
679
|
/** Output only. Errors on the Stream. */
|
|
508
|
-
errors?:
|
|
680
|
+
errors?:
|
|
681
|
+
Error[];
|
|
509
682
|
/** Labels. */
|
|
510
|
-
labels?:
|
|
683
|
+
labels?:
|
|
684
|
+
{ [P in string]: string };
|
|
511
685
|
/** Output only. The stream's name. */
|
|
512
|
-
name?:
|
|
686
|
+
name?:
|
|
687
|
+
string;
|
|
513
688
|
/** Required. Source connection profile configuration. */
|
|
514
|
-
sourceConfig?:
|
|
689
|
+
sourceConfig?:
|
|
690
|
+
SourceConfig;
|
|
515
691
|
/** The state of the stream. */
|
|
516
|
-
state?:
|
|
692
|
+
state?:
|
|
693
|
+
string;
|
|
517
694
|
/** Output only. The last update time of the stream. */
|
|
518
|
-
updateTime?:
|
|
695
|
+
updateTime?:
|
|
696
|
+
string;
|
|
519
697
|
}
|
|
520
698
|
interface StreamObject {
|
|
521
699
|
/** The latest backfill job that was initiated for the stream object. */
|
|
522
|
-
backfillJob?:
|
|
700
|
+
backfillJob?:
|
|
701
|
+
BackfillJob;
|
|
523
702
|
/** Output only. The creation time of the object. */
|
|
524
|
-
createTime?:
|
|
703
|
+
createTime?:
|
|
704
|
+
string;
|
|
525
705
|
/** Required. Display name. */
|
|
526
|
-
displayName?:
|
|
706
|
+
displayName?:
|
|
707
|
+
string;
|
|
527
708
|
/** Output only. Active errors on the object. */
|
|
528
|
-
errors?:
|
|
709
|
+
errors?:
|
|
710
|
+
Error[];
|
|
529
711
|
/** Output only. The object's name. */
|
|
530
|
-
name?:
|
|
712
|
+
name?:
|
|
713
|
+
string;
|
|
531
714
|
/** The object identifier in the data source. */
|
|
532
|
-
sourceObject?:
|
|
715
|
+
sourceObject?:
|
|
716
|
+
SourceObjectIdentifier;
|
|
533
717
|
/** Output only. The last update time of the object. */
|
|
534
|
-
updateTime?:
|
|
718
|
+
updateTime?:
|
|
719
|
+
string;
|
|
535
720
|
}
|
|
536
721
|
interface Validation {
|
|
537
722
|
/** A custom code identifying this validation. */
|
|
538
|
-
code?:
|
|
723
|
+
code?:
|
|
724
|
+
string;
|
|
539
725
|
/** A short description of the validation. */
|
|
540
|
-
description?:
|
|
726
|
+
description?:
|
|
727
|
+
string;
|
|
541
728
|
/** Messages reflecting the validation results. */
|
|
542
|
-
message?:
|
|
729
|
+
message?:
|
|
730
|
+
ValidationMessage[];
|
|
543
731
|
/** Validation execution status. */
|
|
544
|
-
status?:
|
|
732
|
+
status?:
|
|
733
|
+
string;
|
|
545
734
|
}
|
|
546
735
|
interface ValidationMessage {
|
|
547
736
|
/** A custom code identifying this specific message. */
|
|
548
|
-
code?:
|
|
737
|
+
code?:
|
|
738
|
+
string;
|
|
549
739
|
/** Message severity level (warning or error). */
|
|
550
|
-
level?:
|
|
740
|
+
level?:
|
|
741
|
+
string;
|
|
551
742
|
/** The result of the validation. */
|
|
552
|
-
message?:
|
|
743
|
+
message?:
|
|
744
|
+
string;
|
|
553
745
|
/** Additional metadata related to the result. */
|
|
554
|
-
metadata?:
|
|
746
|
+
metadata?:
|
|
747
|
+
{ [P in string]: string };
|
|
555
748
|
}
|
|
556
749
|
interface ValidationResult {
|
|
557
750
|
/** A list of validations (includes both executed as well as not executed validations). */
|
|
558
|
-
validations?:
|
|
751
|
+
validations?:
|
|
752
|
+
Validation[];
|
|
559
753
|
}
|
|
560
754
|
interface VpcPeeringConfig {
|
|
561
755
|
/** Required. A free subnet for peering. (CIDR of /29) */
|
|
562
|
-
subnet?:
|
|
756
|
+
subnet?:
|
|
757
|
+
string;
|
|
563
758
|
/** Required. fully qualified name of the VPC Datastream will peer to. */
|
|
564
|
-
vpcName?:
|
|
759
|
+
vpcName?:
|
|
760
|
+
string;
|
|
565
761
|
}
|
|
566
762
|
interface ConnectionProfilesResource {
|
|
567
763
|
/** Use this method to create a connection profile in a project and location. */
|
|
568
764
|
create(request: {
|
|
569
765
|
/** V1 error format. */
|
|
570
|
-
"$.xgafv"?:
|
|
766
|
+
"$.xgafv"?:
|
|
767
|
+
string;
|
|
571
768
|
/** OAuth access token. */
|
|
572
|
-
access_token?:
|
|
769
|
+
access_token?:
|
|
770
|
+
string;
|
|
573
771
|
/** Data format for response. */
|
|
574
|
-
alt?:
|
|
772
|
+
alt?:
|
|
773
|
+
string;
|
|
575
774
|
/** JSONP */
|
|
576
|
-
callback?:
|
|
775
|
+
callback?:
|
|
776
|
+
string;
|
|
577
777
|
/** Required. The connection profile identifier. */
|
|
578
|
-
connectionProfileId?:
|
|
778
|
+
connectionProfileId?:
|
|
779
|
+
string;
|
|
579
780
|
/** Selector specifying which fields to include in a partial response. */
|
|
580
|
-
fields?:
|
|
781
|
+
fields?:
|
|
782
|
+
string;
|
|
581
783
|
/** 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?:
|
|
784
|
+
key?:
|
|
785
|
+
string;
|
|
583
786
|
/** OAuth 2.0 token for the current user. */
|
|
584
|
-
oauth_token?:
|
|
787
|
+
oauth_token?:
|
|
788
|
+
string;
|
|
585
789
|
/** Required. The parent that owns the collection of ConnectionProfiles. */
|
|
586
|
-
parent:
|
|
790
|
+
parent:
|
|
791
|
+
string;
|
|
587
792
|
/** Returns response with indentations and line breaks. */
|
|
588
|
-
prettyPrint?:
|
|
793
|
+
prettyPrint?:
|
|
794
|
+
boolean;
|
|
589
795
|
/** 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. */
|
|
590
|
-
quotaUser?:
|
|
796
|
+
quotaUser?:
|
|
797
|
+
string;
|
|
591
798
|
/**
|
|
592
799
|
* Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
|
|
593
800
|
* been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the
|
|
@@ -595,37 +802,52 @@ declare namespace gapi.client {
|
|
|
595
802
|
* ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not
|
|
596
803
|
* supported (00000000-0000-0000-0000-000000000000).
|
|
597
804
|
*/
|
|
598
|
-
requestId?:
|
|
805
|
+
requestId?:
|
|
806
|
+
string;
|
|
599
807
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
600
|
-
upload_protocol?:
|
|
808
|
+
upload_protocol?:
|
|
809
|
+
string;
|
|
601
810
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
602
|
-
uploadType?:
|
|
811
|
+
uploadType?:
|
|
812
|
+
string;
|
|
603
813
|
/** Request body */
|
|
604
|
-
resource:
|
|
814
|
+
resource:
|
|
815
|
+
ConnectionProfile;
|
|
605
816
|
}): Request<Operation>;
|
|
606
817
|
create(request: {
|
|
607
818
|
/** V1 error format. */
|
|
608
|
-
"$.xgafv"?:
|
|
819
|
+
"$.xgafv"?:
|
|
820
|
+
string;
|
|
609
821
|
/** OAuth access token. */
|
|
610
|
-
access_token?:
|
|
822
|
+
access_token?:
|
|
823
|
+
string;
|
|
611
824
|
/** Data format for response. */
|
|
612
|
-
alt?:
|
|
825
|
+
alt?:
|
|
826
|
+
string;
|
|
613
827
|
/** JSONP */
|
|
614
|
-
callback?:
|
|
828
|
+
callback?:
|
|
829
|
+
string;
|
|
615
830
|
/** Required. The connection profile identifier. */
|
|
616
|
-
connectionProfileId?:
|
|
831
|
+
connectionProfileId?:
|
|
832
|
+
string;
|
|
617
833
|
/** Selector specifying which fields to include in a partial response. */
|
|
618
|
-
fields?:
|
|
834
|
+
fields?:
|
|
835
|
+
string;
|
|
619
836
|
/** 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?:
|
|
837
|
+
key?:
|
|
838
|
+
string;
|
|
621
839
|
/** OAuth 2.0 token for the current user. */
|
|
622
|
-
oauth_token?:
|
|
840
|
+
oauth_token?:
|
|
841
|
+
string;
|
|
623
842
|
/** Required. The parent that owns the collection of ConnectionProfiles. */
|
|
624
|
-
parent:
|
|
843
|
+
parent:
|
|
844
|
+
string;
|
|
625
845
|
/** Returns response with indentations and line breaks. */
|
|
626
|
-
prettyPrint?:
|
|
846
|
+
prettyPrint?:
|
|
847
|
+
boolean;
|
|
627
848
|
/** 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. */
|
|
628
|
-
quotaUser?:
|
|
849
|
+
quotaUser?:
|
|
850
|
+
string;
|
|
629
851
|
/**
|
|
630
852
|
* Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
|
|
631
853
|
* been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the
|
|
@@ -633,35 +855,48 @@ declare namespace gapi.client {
|
|
|
633
855
|
* ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not
|
|
634
856
|
* supported (00000000-0000-0000-0000-000000000000).
|
|
635
857
|
*/
|
|
636
|
-
requestId?:
|
|
858
|
+
requestId?:
|
|
859
|
+
string;
|
|
637
860
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
638
|
-
upload_protocol?:
|
|
861
|
+
upload_protocol?:
|
|
862
|
+
string;
|
|
639
863
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
640
|
-
uploadType?:
|
|
864
|
+
uploadType?:
|
|
865
|
+
string;
|
|
641
866
|
},
|
|
642
867
|
body: ConnectionProfile): Request<Operation>;
|
|
643
868
|
/** Use this method to delete a connection profile.. */
|
|
644
869
|
delete(request?: {
|
|
645
870
|
/** V1 error format. */
|
|
646
|
-
"$.xgafv"?:
|
|
871
|
+
"$.xgafv"?:
|
|
872
|
+
string;
|
|
647
873
|
/** OAuth access token. */
|
|
648
|
-
access_token?:
|
|
874
|
+
access_token?:
|
|
875
|
+
string;
|
|
649
876
|
/** Data format for response. */
|
|
650
|
-
alt?:
|
|
877
|
+
alt?:
|
|
878
|
+
string;
|
|
651
879
|
/** JSONP */
|
|
652
|
-
callback?:
|
|
880
|
+
callback?:
|
|
881
|
+
string;
|
|
653
882
|
/** Selector specifying which fields to include in a partial response. */
|
|
654
|
-
fields?:
|
|
883
|
+
fields?:
|
|
884
|
+
string;
|
|
655
885
|
/** 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. */
|
|
656
|
-
key?:
|
|
886
|
+
key?:
|
|
887
|
+
string;
|
|
657
888
|
/** Required. The name of the connection profile resource to delete. */
|
|
658
|
-
name:
|
|
889
|
+
name:
|
|
890
|
+
string;
|
|
659
891
|
/** OAuth 2.0 token for the current user. */
|
|
660
|
-
oauth_token?:
|
|
892
|
+
oauth_token?:
|
|
893
|
+
string;
|
|
661
894
|
/** Returns response with indentations and line breaks. */
|
|
662
|
-
prettyPrint?:
|
|
895
|
+
prettyPrint?:
|
|
896
|
+
boolean;
|
|
663
897
|
/** 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. */
|
|
664
|
-
quotaUser?:
|
|
898
|
+
quotaUser?:
|
|
899
|
+
string;
|
|
665
900
|
/**
|
|
666
901
|
* Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
|
|
667
902
|
* been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the
|
|
@@ -669,11 +904,14 @@ declare namespace gapi.client {
|
|
|
669
904
|
* ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not
|
|
670
905
|
* supported (00000000-0000-0000-0000-000000000000).
|
|
671
906
|
*/
|
|
672
|
-
requestId?:
|
|
907
|
+
requestId?:
|
|
908
|
+
string;
|
|
673
909
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
674
|
-
upload_protocol?:
|
|
910
|
+
upload_protocol?:
|
|
911
|
+
string;
|
|
675
912
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
676
|
-
uploadType?:
|
|
913
|
+
uploadType?:
|
|
914
|
+
string;
|
|
677
915
|
}): Request<Operation>;
|
|
678
916
|
/**
|
|
679
917
|
* Use this method to discover a connection profile. The discover API call exposes the data objects and metadata belonging to the profile. Typically, a request returns children data
|
|
@@ -681,149 +919,212 @@ declare namespace gapi.client {
|
|
|
681
919
|
*/
|
|
682
920
|
discover(request: {
|
|
683
921
|
/** V1 error format. */
|
|
684
|
-
"$.xgafv"?:
|
|
922
|
+
"$.xgafv"?:
|
|
923
|
+
string;
|
|
685
924
|
/** OAuth access token. */
|
|
686
|
-
access_token?:
|
|
925
|
+
access_token?:
|
|
926
|
+
string;
|
|
687
927
|
/** Data format for response. */
|
|
688
|
-
alt?:
|
|
928
|
+
alt?:
|
|
929
|
+
string;
|
|
689
930
|
/** JSONP */
|
|
690
|
-
callback?:
|
|
931
|
+
callback?:
|
|
932
|
+
string;
|
|
691
933
|
/** Selector specifying which fields to include in a partial response. */
|
|
692
|
-
fields?:
|
|
934
|
+
fields?:
|
|
935
|
+
string;
|
|
693
936
|
/** 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. */
|
|
694
|
-
key?:
|
|
937
|
+
key?:
|
|
938
|
+
string;
|
|
695
939
|
/** OAuth 2.0 token for the current user. */
|
|
696
|
-
oauth_token?:
|
|
940
|
+
oauth_token?:
|
|
941
|
+
string;
|
|
697
942
|
/** Required. The parent resource of the ConnectionProfile type. Must be in the format `projects/*/locations/*`. */
|
|
698
|
-
parent:
|
|
943
|
+
parent:
|
|
944
|
+
string;
|
|
699
945
|
/** Returns response with indentations and line breaks. */
|
|
700
|
-
prettyPrint?:
|
|
946
|
+
prettyPrint?:
|
|
947
|
+
boolean;
|
|
701
948
|
/** 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. */
|
|
702
|
-
quotaUser?:
|
|
949
|
+
quotaUser?:
|
|
950
|
+
string;
|
|
703
951
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
704
|
-
upload_protocol?:
|
|
952
|
+
upload_protocol?:
|
|
953
|
+
string;
|
|
705
954
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
706
|
-
uploadType?:
|
|
955
|
+
uploadType?:
|
|
956
|
+
string;
|
|
707
957
|
/** Request body */
|
|
708
|
-
resource:
|
|
958
|
+
resource:
|
|
959
|
+
DiscoverConnectionProfileRequest;
|
|
709
960
|
}): Request<DiscoverConnectionProfileResponse>;
|
|
710
961
|
discover(request: {
|
|
711
962
|
/** V1 error format. */
|
|
712
|
-
"$.xgafv"?:
|
|
963
|
+
"$.xgafv"?:
|
|
964
|
+
string;
|
|
713
965
|
/** OAuth access token. */
|
|
714
|
-
access_token?:
|
|
966
|
+
access_token?:
|
|
967
|
+
string;
|
|
715
968
|
/** Data format for response. */
|
|
716
|
-
alt?:
|
|
969
|
+
alt?:
|
|
970
|
+
string;
|
|
717
971
|
/** JSONP */
|
|
718
|
-
callback?:
|
|
972
|
+
callback?:
|
|
973
|
+
string;
|
|
719
974
|
/** Selector specifying which fields to include in a partial response. */
|
|
720
|
-
fields?:
|
|
975
|
+
fields?:
|
|
976
|
+
string;
|
|
721
977
|
/** 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. */
|
|
722
|
-
key?:
|
|
978
|
+
key?:
|
|
979
|
+
string;
|
|
723
980
|
/** OAuth 2.0 token for the current user. */
|
|
724
|
-
oauth_token?:
|
|
981
|
+
oauth_token?:
|
|
982
|
+
string;
|
|
725
983
|
/** Required. The parent resource of the ConnectionProfile type. Must be in the format `projects/*/locations/*`. */
|
|
726
|
-
parent:
|
|
984
|
+
parent:
|
|
985
|
+
string;
|
|
727
986
|
/** Returns response with indentations and line breaks. */
|
|
728
|
-
prettyPrint?:
|
|
987
|
+
prettyPrint?:
|
|
988
|
+
boolean;
|
|
729
989
|
/** 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. */
|
|
730
|
-
quotaUser?:
|
|
990
|
+
quotaUser?:
|
|
991
|
+
string;
|
|
731
992
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
732
|
-
upload_protocol?:
|
|
993
|
+
upload_protocol?:
|
|
994
|
+
string;
|
|
733
995
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
734
|
-
uploadType?:
|
|
996
|
+
uploadType?:
|
|
997
|
+
string;
|
|
735
998
|
},
|
|
736
999
|
body: DiscoverConnectionProfileRequest): Request<DiscoverConnectionProfileResponse>;
|
|
737
1000
|
/** Use this method to get details about a connection profile. */
|
|
738
1001
|
get(request?: {
|
|
739
1002
|
/** V1 error format. */
|
|
740
|
-
"$.xgafv"?:
|
|
1003
|
+
"$.xgafv"?:
|
|
1004
|
+
string;
|
|
741
1005
|
/** OAuth access token. */
|
|
742
|
-
access_token?:
|
|
1006
|
+
access_token?:
|
|
1007
|
+
string;
|
|
743
1008
|
/** Data format for response. */
|
|
744
|
-
alt?:
|
|
1009
|
+
alt?:
|
|
1010
|
+
string;
|
|
745
1011
|
/** JSONP */
|
|
746
|
-
callback?:
|
|
1012
|
+
callback?:
|
|
1013
|
+
string;
|
|
747
1014
|
/** Selector specifying which fields to include in a partial response. */
|
|
748
|
-
fields?:
|
|
1015
|
+
fields?:
|
|
1016
|
+
string;
|
|
749
1017
|
/** 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. */
|
|
750
|
-
key?:
|
|
1018
|
+
key?:
|
|
1019
|
+
string;
|
|
751
1020
|
/** Required. The name of the connection profile resource to get. */
|
|
752
|
-
name:
|
|
1021
|
+
name:
|
|
1022
|
+
string;
|
|
753
1023
|
/** OAuth 2.0 token for the current user. */
|
|
754
|
-
oauth_token?:
|
|
1024
|
+
oauth_token?:
|
|
1025
|
+
string;
|
|
755
1026
|
/** Returns response with indentations and line breaks. */
|
|
756
|
-
prettyPrint?:
|
|
1027
|
+
prettyPrint?:
|
|
1028
|
+
boolean;
|
|
757
1029
|
/** 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. */
|
|
758
|
-
quotaUser?:
|
|
1030
|
+
quotaUser?:
|
|
1031
|
+
string;
|
|
759
1032
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
760
|
-
upload_protocol?:
|
|
1033
|
+
upload_protocol?:
|
|
1034
|
+
string;
|
|
761
1035
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
762
|
-
uploadType?:
|
|
1036
|
+
uploadType?:
|
|
1037
|
+
string;
|
|
763
1038
|
}): Request<ConnectionProfile>;
|
|
764
1039
|
/** Use this method to list connection profiles created in a project and location. */
|
|
765
1040
|
list(request?: {
|
|
766
1041
|
/** V1 error format. */
|
|
767
|
-
"$.xgafv"?:
|
|
1042
|
+
"$.xgafv"?:
|
|
1043
|
+
string;
|
|
768
1044
|
/** OAuth access token. */
|
|
769
|
-
access_token?:
|
|
1045
|
+
access_token?:
|
|
1046
|
+
string;
|
|
770
1047
|
/** Data format for response. */
|
|
771
|
-
alt?:
|
|
1048
|
+
alt?:
|
|
1049
|
+
string;
|
|
772
1050
|
/** JSONP */
|
|
773
|
-
callback?:
|
|
1051
|
+
callback?:
|
|
1052
|
+
string;
|
|
774
1053
|
/** Selector specifying which fields to include in a partial response. */
|
|
775
|
-
fields?:
|
|
1054
|
+
fields?:
|
|
1055
|
+
string;
|
|
776
1056
|
/** Filter request. */
|
|
777
|
-
filter?:
|
|
1057
|
+
filter?:
|
|
1058
|
+
string;
|
|
778
1059
|
/** 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. */
|
|
779
|
-
key?:
|
|
1060
|
+
key?:
|
|
1061
|
+
string;
|
|
780
1062
|
/** OAuth 2.0 token for the current user. */
|
|
781
|
-
oauth_token?:
|
|
1063
|
+
oauth_token?:
|
|
1064
|
+
string;
|
|
782
1065
|
/** Order by fields for the result. */
|
|
783
|
-
orderBy?:
|
|
1066
|
+
orderBy?:
|
|
1067
|
+
string;
|
|
784
1068
|
/**
|
|
785
1069
|
* Maximum number of connection profiles to return. If unspecified, at most 50 connection profiles will be returned. The maximum value is 1000; values above 1000 will be coerced to
|
|
786
1070
|
* 1000.
|
|
787
1071
|
*/
|
|
788
|
-
pageSize?:
|
|
1072
|
+
pageSize?:
|
|
1073
|
+
number;
|
|
789
1074
|
/**
|
|
790
1075
|
* Page token received from a previous `ListConnectionProfiles` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to
|
|
791
1076
|
* `ListConnectionProfiles` must match the call that provided the page token.
|
|
792
1077
|
*/
|
|
793
|
-
pageToken?:
|
|
1078
|
+
pageToken?:
|
|
1079
|
+
string;
|
|
794
1080
|
/** Required. The parent that owns the collection of connection profiles. */
|
|
795
|
-
parent:
|
|
1081
|
+
parent:
|
|
1082
|
+
string;
|
|
796
1083
|
/** Returns response with indentations and line breaks. */
|
|
797
|
-
prettyPrint?:
|
|
1084
|
+
prettyPrint?:
|
|
1085
|
+
boolean;
|
|
798
1086
|
/** 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. */
|
|
799
|
-
quotaUser?:
|
|
1087
|
+
quotaUser?:
|
|
1088
|
+
string;
|
|
800
1089
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
801
|
-
upload_protocol?:
|
|
1090
|
+
upload_protocol?:
|
|
1091
|
+
string;
|
|
802
1092
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
803
|
-
uploadType?:
|
|
1093
|
+
uploadType?:
|
|
1094
|
+
string;
|
|
804
1095
|
}): Request<ListConnectionProfilesResponse>;
|
|
805
1096
|
/** Use this method to update the parameters of a connection profile. */
|
|
806
1097
|
patch(request: {
|
|
807
1098
|
/** V1 error format. */
|
|
808
|
-
"$.xgafv"?:
|
|
1099
|
+
"$.xgafv"?:
|
|
1100
|
+
string;
|
|
809
1101
|
/** OAuth access token. */
|
|
810
|
-
access_token?:
|
|
1102
|
+
access_token?:
|
|
1103
|
+
string;
|
|
811
1104
|
/** Data format for response. */
|
|
812
|
-
alt?:
|
|
1105
|
+
alt?:
|
|
1106
|
+
string;
|
|
813
1107
|
/** JSONP */
|
|
814
|
-
callback?:
|
|
1108
|
+
callback?:
|
|
1109
|
+
string;
|
|
815
1110
|
/** Selector specifying which fields to include in a partial response. */
|
|
816
|
-
fields?:
|
|
1111
|
+
fields?:
|
|
1112
|
+
string;
|
|
817
1113
|
/** 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. */
|
|
818
|
-
key?:
|
|
1114
|
+
key?:
|
|
1115
|
+
string;
|
|
819
1116
|
/** Output only. The resource's name. */
|
|
820
|
-
name:
|
|
1117
|
+
name:
|
|
1118
|
+
string;
|
|
821
1119
|
/** OAuth 2.0 token for the current user. */
|
|
822
|
-
oauth_token?:
|
|
1120
|
+
oauth_token?:
|
|
1121
|
+
string;
|
|
823
1122
|
/** Returns response with indentations and line breaks. */
|
|
824
|
-
prettyPrint?:
|
|
1123
|
+
prettyPrint?:
|
|
1124
|
+
boolean;
|
|
825
1125
|
/** 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. */
|
|
826
|
-
quotaUser?:
|
|
1126
|
+
quotaUser?:
|
|
1127
|
+
string;
|
|
827
1128
|
/**
|
|
828
1129
|
* Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
|
|
829
1130
|
* been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the
|
|
@@ -831,42 +1132,58 @@ declare namespace gapi.client {
|
|
|
831
1132
|
* ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not
|
|
832
1133
|
* supported (00000000-0000-0000-0000-000000000000).
|
|
833
1134
|
*/
|
|
834
|
-
requestId?:
|
|
1135
|
+
requestId?:
|
|
1136
|
+
string;
|
|
835
1137
|
/**
|
|
836
1138
|
* Optional. Field mask is used to specify the fields to be overwritten in the ConnectionProfile resource by the update. The fields specified in the update_mask are relative to the
|
|
837
1139
|
* resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten.
|
|
838
1140
|
*/
|
|
839
|
-
updateMask?:
|
|
1141
|
+
updateMask?:
|
|
1142
|
+
string;
|
|
840
1143
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
841
|
-
upload_protocol?:
|
|
1144
|
+
upload_protocol?:
|
|
1145
|
+
string;
|
|
842
1146
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
843
|
-
uploadType?:
|
|
1147
|
+
uploadType?:
|
|
1148
|
+
string;
|
|
844
1149
|
/** Optional. Only validate the connection profile, but do not update any resources. The default is false. */
|
|
845
|
-
validateOnly?:
|
|
1150
|
+
validateOnly?:
|
|
1151
|
+
boolean;
|
|
846
1152
|
/** Request body */
|
|
847
|
-
resource:
|
|
1153
|
+
resource:
|
|
1154
|
+
ConnectionProfile;
|
|
848
1155
|
}): Request<Operation>;
|
|
849
1156
|
patch(request: {
|
|
850
1157
|
/** V1 error format. */
|
|
851
|
-
"$.xgafv"?:
|
|
1158
|
+
"$.xgafv"?:
|
|
1159
|
+
string;
|
|
852
1160
|
/** OAuth access token. */
|
|
853
|
-
access_token?:
|
|
1161
|
+
access_token?:
|
|
1162
|
+
string;
|
|
854
1163
|
/** Data format for response. */
|
|
855
|
-
alt?:
|
|
1164
|
+
alt?:
|
|
1165
|
+
string;
|
|
856
1166
|
/** JSONP */
|
|
857
|
-
callback?:
|
|
1167
|
+
callback?:
|
|
1168
|
+
string;
|
|
858
1169
|
/** Selector specifying which fields to include in a partial response. */
|
|
859
|
-
fields?:
|
|
1170
|
+
fields?:
|
|
1171
|
+
string;
|
|
860
1172
|
/** 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. */
|
|
861
|
-
key?:
|
|
1173
|
+
key?:
|
|
1174
|
+
string;
|
|
862
1175
|
/** Output only. The resource's name. */
|
|
863
|
-
name:
|
|
1176
|
+
name:
|
|
1177
|
+
string;
|
|
864
1178
|
/** OAuth 2.0 token for the current user. */
|
|
865
|
-
oauth_token?:
|
|
1179
|
+
oauth_token?:
|
|
1180
|
+
string;
|
|
866
1181
|
/** Returns response with indentations and line breaks. */
|
|
867
|
-
prettyPrint?:
|
|
1182
|
+
prettyPrint?:
|
|
1183
|
+
boolean;
|
|
868
1184
|
/** 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. */
|
|
869
|
-
quotaUser?:
|
|
1185
|
+
quotaUser?:
|
|
1186
|
+
string;
|
|
870
1187
|
/**
|
|
871
1188
|
* Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
|
|
872
1189
|
* been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the
|
|
@@ -874,18 +1191,23 @@ declare namespace gapi.client {
|
|
|
874
1191
|
* ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not
|
|
875
1192
|
* supported (00000000-0000-0000-0000-000000000000).
|
|
876
1193
|
*/
|
|
877
|
-
requestId?:
|
|
1194
|
+
requestId?:
|
|
1195
|
+
string;
|
|
878
1196
|
/**
|
|
879
1197
|
* Optional. Field mask is used to specify the fields to be overwritten in the ConnectionProfile resource by the update. The fields specified in the update_mask are relative to the
|
|
880
1198
|
* resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten.
|
|
881
1199
|
*/
|
|
882
|
-
updateMask?:
|
|
1200
|
+
updateMask?:
|
|
1201
|
+
string;
|
|
883
1202
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
884
|
-
upload_protocol?:
|
|
1203
|
+
upload_protocol?:
|
|
1204
|
+
string;
|
|
885
1205
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
886
|
-
uploadType?:
|
|
1206
|
+
uploadType?:
|
|
1207
|
+
string;
|
|
887
1208
|
/** Optional. Only validate the connection profile, but do not update any resources. The default is false. */
|
|
888
|
-
validateOnly?:
|
|
1209
|
+
validateOnly?:
|
|
1210
|
+
boolean;
|
|
889
1211
|
},
|
|
890
1212
|
body: ConnectionProfile): Request<Operation>;
|
|
891
1213
|
}
|
|
@@ -898,57 +1220,82 @@ declare namespace gapi.client {
|
|
|
898
1220
|
*/
|
|
899
1221
|
cancel(request: {
|
|
900
1222
|
/** V1 error format. */
|
|
901
|
-
"$.xgafv"?:
|
|
1223
|
+
"$.xgafv"?:
|
|
1224
|
+
string;
|
|
902
1225
|
/** OAuth access token. */
|
|
903
|
-
access_token?:
|
|
1226
|
+
access_token?:
|
|
1227
|
+
string;
|
|
904
1228
|
/** Data format for response. */
|
|
905
|
-
alt?:
|
|
1229
|
+
alt?:
|
|
1230
|
+
string;
|
|
906
1231
|
/** JSONP */
|
|
907
|
-
callback?:
|
|
1232
|
+
callback?:
|
|
1233
|
+
string;
|
|
908
1234
|
/** Selector specifying which fields to include in a partial response. */
|
|
909
|
-
fields?:
|
|
1235
|
+
fields?:
|
|
1236
|
+
string;
|
|
910
1237
|
/** 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. */
|
|
911
|
-
key?:
|
|
1238
|
+
key?:
|
|
1239
|
+
string;
|
|
912
1240
|
/** The name of the operation resource to be cancelled. */
|
|
913
|
-
name:
|
|
1241
|
+
name:
|
|
1242
|
+
string;
|
|
914
1243
|
/** OAuth 2.0 token for the current user. */
|
|
915
|
-
oauth_token?:
|
|
1244
|
+
oauth_token?:
|
|
1245
|
+
string;
|
|
916
1246
|
/** Returns response with indentations and line breaks. */
|
|
917
|
-
prettyPrint?:
|
|
1247
|
+
prettyPrint?:
|
|
1248
|
+
boolean;
|
|
918
1249
|
/** 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. */
|
|
919
|
-
quotaUser?:
|
|
1250
|
+
quotaUser?:
|
|
1251
|
+
string;
|
|
920
1252
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
921
|
-
upload_protocol?:
|
|
1253
|
+
upload_protocol?:
|
|
1254
|
+
string;
|
|
922
1255
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
923
|
-
uploadType?:
|
|
1256
|
+
uploadType?:
|
|
1257
|
+
string;
|
|
924
1258
|
/** Request body */
|
|
925
|
-
resource:
|
|
1259
|
+
resource:
|
|
1260
|
+
CancelOperationRequest;
|
|
926
1261
|
}): Request<{}>;
|
|
927
1262
|
cancel(request: {
|
|
928
1263
|
/** V1 error format. */
|
|
929
|
-
"$.xgafv"?:
|
|
1264
|
+
"$.xgafv"?:
|
|
1265
|
+
string;
|
|
930
1266
|
/** OAuth access token. */
|
|
931
|
-
access_token?:
|
|
1267
|
+
access_token?:
|
|
1268
|
+
string;
|
|
932
1269
|
/** Data format for response. */
|
|
933
|
-
alt?:
|
|
1270
|
+
alt?:
|
|
1271
|
+
string;
|
|
934
1272
|
/** JSONP */
|
|
935
|
-
callback?:
|
|
1273
|
+
callback?:
|
|
1274
|
+
string;
|
|
936
1275
|
/** Selector specifying which fields to include in a partial response. */
|
|
937
|
-
fields?:
|
|
1276
|
+
fields?:
|
|
1277
|
+
string;
|
|
938
1278
|
/** 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. */
|
|
939
|
-
key?:
|
|
1279
|
+
key?:
|
|
1280
|
+
string;
|
|
940
1281
|
/** The name of the operation resource to be cancelled. */
|
|
941
|
-
name:
|
|
1282
|
+
name:
|
|
1283
|
+
string;
|
|
942
1284
|
/** OAuth 2.0 token for the current user. */
|
|
943
|
-
oauth_token?:
|
|
1285
|
+
oauth_token?:
|
|
1286
|
+
string;
|
|
944
1287
|
/** Returns response with indentations and line breaks. */
|
|
945
|
-
prettyPrint?:
|
|
1288
|
+
prettyPrint?:
|
|
1289
|
+
boolean;
|
|
946
1290
|
/** 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. */
|
|
947
|
-
quotaUser?:
|
|
1291
|
+
quotaUser?:
|
|
1292
|
+
string;
|
|
948
1293
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
949
|
-
upload_protocol?:
|
|
1294
|
+
upload_protocol?:
|
|
1295
|
+
string;
|
|
950
1296
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
951
|
-
uploadType?:
|
|
1297
|
+
uploadType?:
|
|
1298
|
+
string;
|
|
952
1299
|
},
|
|
953
1300
|
body: CancelOperationRequest): Request<{}>;
|
|
954
1301
|
/**
|
|
@@ -957,114 +1304,163 @@ declare namespace gapi.client {
|
|
|
957
1304
|
*/
|
|
958
1305
|
delete(request?: {
|
|
959
1306
|
/** V1 error format. */
|
|
960
|
-
"$.xgafv"?:
|
|
1307
|
+
"$.xgafv"?:
|
|
1308
|
+
string;
|
|
961
1309
|
/** OAuth access token. */
|
|
962
|
-
access_token?:
|
|
1310
|
+
access_token?:
|
|
1311
|
+
string;
|
|
963
1312
|
/** Data format for response. */
|
|
964
|
-
alt?:
|
|
1313
|
+
alt?:
|
|
1314
|
+
string;
|
|
965
1315
|
/** JSONP */
|
|
966
|
-
callback?:
|
|
1316
|
+
callback?:
|
|
1317
|
+
string;
|
|
967
1318
|
/** Selector specifying which fields to include in a partial response. */
|
|
968
|
-
fields?:
|
|
1319
|
+
fields?:
|
|
1320
|
+
string;
|
|
969
1321
|
/** 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. */
|
|
970
|
-
key?:
|
|
1322
|
+
key?:
|
|
1323
|
+
string;
|
|
971
1324
|
/** The name of the operation resource to be deleted. */
|
|
972
|
-
name:
|
|
1325
|
+
name:
|
|
1326
|
+
string;
|
|
973
1327
|
/** OAuth 2.0 token for the current user. */
|
|
974
|
-
oauth_token?:
|
|
1328
|
+
oauth_token?:
|
|
1329
|
+
string;
|
|
975
1330
|
/** Returns response with indentations and line breaks. */
|
|
976
|
-
prettyPrint?:
|
|
1331
|
+
prettyPrint?:
|
|
1332
|
+
boolean;
|
|
977
1333
|
/** 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. */
|
|
978
|
-
quotaUser?:
|
|
1334
|
+
quotaUser?:
|
|
1335
|
+
string;
|
|
979
1336
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
980
|
-
upload_protocol?:
|
|
1337
|
+
upload_protocol?:
|
|
1338
|
+
string;
|
|
981
1339
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
982
|
-
uploadType?:
|
|
1340
|
+
uploadType?:
|
|
1341
|
+
string;
|
|
983
1342
|
}): Request<{}>;
|
|
984
1343
|
/** 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. */
|
|
985
1344
|
get(request?: {
|
|
986
1345
|
/** V1 error format. */
|
|
987
|
-
"$.xgafv"?:
|
|
1346
|
+
"$.xgafv"?:
|
|
1347
|
+
string;
|
|
988
1348
|
/** OAuth access token. */
|
|
989
|
-
access_token?:
|
|
1349
|
+
access_token?:
|
|
1350
|
+
string;
|
|
990
1351
|
/** Data format for response. */
|
|
991
|
-
alt?:
|
|
1352
|
+
alt?:
|
|
1353
|
+
string;
|
|
992
1354
|
/** JSONP */
|
|
993
|
-
callback?:
|
|
1355
|
+
callback?:
|
|
1356
|
+
string;
|
|
994
1357
|
/** Selector specifying which fields to include in a partial response. */
|
|
995
|
-
fields?:
|
|
1358
|
+
fields?:
|
|
1359
|
+
string;
|
|
996
1360
|
/** 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. */
|
|
997
|
-
key?:
|
|
1361
|
+
key?:
|
|
1362
|
+
string;
|
|
998
1363
|
/** The name of the operation resource. */
|
|
999
|
-
name:
|
|
1364
|
+
name:
|
|
1365
|
+
string;
|
|
1000
1366
|
/** OAuth 2.0 token for the current user. */
|
|
1001
|
-
oauth_token?:
|
|
1367
|
+
oauth_token?:
|
|
1368
|
+
string;
|
|
1002
1369
|
/** Returns response with indentations and line breaks. */
|
|
1003
|
-
prettyPrint?:
|
|
1370
|
+
prettyPrint?:
|
|
1371
|
+
boolean;
|
|
1004
1372
|
/** 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. */
|
|
1005
|
-
quotaUser?:
|
|
1373
|
+
quotaUser?:
|
|
1374
|
+
string;
|
|
1006
1375
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1007
|
-
upload_protocol?:
|
|
1376
|
+
upload_protocol?:
|
|
1377
|
+
string;
|
|
1008
1378
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1009
|
-
uploadType?:
|
|
1379
|
+
uploadType?:
|
|
1380
|
+
string;
|
|
1010
1381
|
}): Request<Operation>;
|
|
1011
1382
|
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
1012
1383
|
list(request?: {
|
|
1013
1384
|
/** V1 error format. */
|
|
1014
|
-
"$.xgafv"?:
|
|
1385
|
+
"$.xgafv"?:
|
|
1386
|
+
string;
|
|
1015
1387
|
/** OAuth access token. */
|
|
1016
|
-
access_token?:
|
|
1388
|
+
access_token?:
|
|
1389
|
+
string;
|
|
1017
1390
|
/** Data format for response. */
|
|
1018
|
-
alt?:
|
|
1391
|
+
alt?:
|
|
1392
|
+
string;
|
|
1019
1393
|
/** JSONP */
|
|
1020
|
-
callback?:
|
|
1394
|
+
callback?:
|
|
1395
|
+
string;
|
|
1021
1396
|
/** Selector specifying which fields to include in a partial response. */
|
|
1022
|
-
fields?:
|
|
1397
|
+
fields?:
|
|
1398
|
+
string;
|
|
1023
1399
|
/** The standard list filter. */
|
|
1024
|
-
filter?:
|
|
1400
|
+
filter?:
|
|
1401
|
+
string;
|
|
1025
1402
|
/** 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. */
|
|
1026
|
-
key?:
|
|
1403
|
+
key?:
|
|
1404
|
+
string;
|
|
1027
1405
|
/** The name of the operation's parent resource. */
|
|
1028
|
-
name:
|
|
1406
|
+
name:
|
|
1407
|
+
string;
|
|
1029
1408
|
/** OAuth 2.0 token for the current user. */
|
|
1030
|
-
oauth_token?:
|
|
1409
|
+
oauth_token?:
|
|
1410
|
+
string;
|
|
1031
1411
|
/** The standard list page size. */
|
|
1032
|
-
pageSize?:
|
|
1412
|
+
pageSize?:
|
|
1413
|
+
number;
|
|
1033
1414
|
/** The standard list page token. */
|
|
1034
|
-
pageToken?:
|
|
1415
|
+
pageToken?:
|
|
1416
|
+
string;
|
|
1035
1417
|
/** Returns response with indentations and line breaks. */
|
|
1036
|
-
prettyPrint?:
|
|
1418
|
+
prettyPrint?:
|
|
1419
|
+
boolean;
|
|
1037
1420
|
/** 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. */
|
|
1038
|
-
quotaUser?:
|
|
1421
|
+
quotaUser?:
|
|
1422
|
+
string;
|
|
1039
1423
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1040
|
-
upload_protocol?:
|
|
1424
|
+
upload_protocol?:
|
|
1425
|
+
string;
|
|
1041
1426
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1042
|
-
uploadType?:
|
|
1427
|
+
uploadType?:
|
|
1428
|
+
string;
|
|
1043
1429
|
}): Request<ListOperationsResponse>;
|
|
1044
1430
|
}
|
|
1045
1431
|
interface RoutesResource {
|
|
1046
1432
|
/** Use this method to create a route for a private connectivity in a project and location. */
|
|
1047
1433
|
create(request: {
|
|
1048
1434
|
/** V1 error format. */
|
|
1049
|
-
"$.xgafv"?:
|
|
1435
|
+
"$.xgafv"?:
|
|
1436
|
+
string;
|
|
1050
1437
|
/** OAuth access token. */
|
|
1051
|
-
access_token?:
|
|
1438
|
+
access_token?:
|
|
1439
|
+
string;
|
|
1052
1440
|
/** Data format for response. */
|
|
1053
|
-
alt?:
|
|
1441
|
+
alt?:
|
|
1442
|
+
string;
|
|
1054
1443
|
/** JSONP */
|
|
1055
|
-
callback?:
|
|
1444
|
+
callback?:
|
|
1445
|
+
string;
|
|
1056
1446
|
/** Selector specifying which fields to include in a partial response. */
|
|
1057
|
-
fields?:
|
|
1447
|
+
fields?:
|
|
1448
|
+
string;
|
|
1058
1449
|
/** 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. */
|
|
1059
|
-
key?:
|
|
1450
|
+
key?:
|
|
1451
|
+
string;
|
|
1060
1452
|
/** OAuth 2.0 token for the current user. */
|
|
1061
|
-
oauth_token?:
|
|
1453
|
+
oauth_token?:
|
|
1454
|
+
string;
|
|
1062
1455
|
/** Required. The parent that owns the collection of Routes. */
|
|
1063
|
-
parent:
|
|
1456
|
+
parent:
|
|
1457
|
+
string;
|
|
1064
1458
|
/** Returns response with indentations and line breaks. */
|
|
1065
|
-
prettyPrint?:
|
|
1459
|
+
prettyPrint?:
|
|
1460
|
+
boolean;
|
|
1066
1461
|
/** 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. */
|
|
1067
|
-
quotaUser?:
|
|
1462
|
+
quotaUser?:
|
|
1463
|
+
string;
|
|
1068
1464
|
/**
|
|
1069
1465
|
* Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
|
|
1070
1466
|
* been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the
|
|
@@ -1072,37 +1468,52 @@ declare namespace gapi.client {
|
|
|
1072
1468
|
* ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not
|
|
1073
1469
|
* supported (00000000-0000-0000-0000-000000000000).
|
|
1074
1470
|
*/
|
|
1075
|
-
requestId?:
|
|
1471
|
+
requestId?:
|
|
1472
|
+
string;
|
|
1076
1473
|
/** Required. The Route identifier. */
|
|
1077
|
-
routeId?:
|
|
1474
|
+
routeId?:
|
|
1475
|
+
string;
|
|
1078
1476
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1079
|
-
upload_protocol?:
|
|
1477
|
+
upload_protocol?:
|
|
1478
|
+
string;
|
|
1080
1479
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1081
|
-
uploadType?:
|
|
1480
|
+
uploadType?:
|
|
1481
|
+
string;
|
|
1082
1482
|
/** Request body */
|
|
1083
|
-
resource:
|
|
1483
|
+
resource:
|
|
1484
|
+
Route;
|
|
1084
1485
|
}): Request<Operation>;
|
|
1085
1486
|
create(request: {
|
|
1086
1487
|
/** V1 error format. */
|
|
1087
|
-
"$.xgafv"?:
|
|
1488
|
+
"$.xgafv"?:
|
|
1489
|
+
string;
|
|
1088
1490
|
/** OAuth access token. */
|
|
1089
|
-
access_token?:
|
|
1491
|
+
access_token?:
|
|
1492
|
+
string;
|
|
1090
1493
|
/** Data format for response. */
|
|
1091
|
-
alt?:
|
|
1494
|
+
alt?:
|
|
1495
|
+
string;
|
|
1092
1496
|
/** JSONP */
|
|
1093
|
-
callback?:
|
|
1497
|
+
callback?:
|
|
1498
|
+
string;
|
|
1094
1499
|
/** Selector specifying which fields to include in a partial response. */
|
|
1095
|
-
fields?:
|
|
1500
|
+
fields?:
|
|
1501
|
+
string;
|
|
1096
1502
|
/** 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. */
|
|
1097
|
-
key?:
|
|
1503
|
+
key?:
|
|
1504
|
+
string;
|
|
1098
1505
|
/** OAuth 2.0 token for the current user. */
|
|
1099
|
-
oauth_token?:
|
|
1506
|
+
oauth_token?:
|
|
1507
|
+
string;
|
|
1100
1508
|
/** Required. The parent that owns the collection of Routes. */
|
|
1101
|
-
parent:
|
|
1509
|
+
parent:
|
|
1510
|
+
string;
|
|
1102
1511
|
/** Returns response with indentations and line breaks. */
|
|
1103
|
-
prettyPrint?:
|
|
1512
|
+
prettyPrint?:
|
|
1513
|
+
boolean;
|
|
1104
1514
|
/** 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. */
|
|
1105
|
-
quotaUser?:
|
|
1515
|
+
quotaUser?:
|
|
1516
|
+
string;
|
|
1106
1517
|
/**
|
|
1107
1518
|
* Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
|
|
1108
1519
|
* been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the
|
|
@@ -1110,37 +1521,51 @@ declare namespace gapi.client {
|
|
|
1110
1521
|
* ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not
|
|
1111
1522
|
* supported (00000000-0000-0000-0000-000000000000).
|
|
1112
1523
|
*/
|
|
1113
|
-
requestId?:
|
|
1524
|
+
requestId?:
|
|
1525
|
+
string;
|
|
1114
1526
|
/** Required. The Route identifier. */
|
|
1115
|
-
routeId?:
|
|
1527
|
+
routeId?:
|
|
1528
|
+
string;
|
|
1116
1529
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1117
|
-
upload_protocol?:
|
|
1530
|
+
upload_protocol?:
|
|
1531
|
+
string;
|
|
1118
1532
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1119
|
-
uploadType?:
|
|
1533
|
+
uploadType?:
|
|
1534
|
+
string;
|
|
1120
1535
|
},
|
|
1121
1536
|
body: Route): Request<Operation>;
|
|
1122
1537
|
/** Use this method to delete a route. */
|
|
1123
1538
|
delete(request?: {
|
|
1124
1539
|
/** V1 error format. */
|
|
1125
|
-
"$.xgafv"?:
|
|
1540
|
+
"$.xgafv"?:
|
|
1541
|
+
string;
|
|
1126
1542
|
/** OAuth access token. */
|
|
1127
|
-
access_token?:
|
|
1543
|
+
access_token?:
|
|
1544
|
+
string;
|
|
1128
1545
|
/** Data format for response. */
|
|
1129
|
-
alt?:
|
|
1546
|
+
alt?:
|
|
1547
|
+
string;
|
|
1130
1548
|
/** JSONP */
|
|
1131
|
-
callback?:
|
|
1549
|
+
callback?:
|
|
1550
|
+
string;
|
|
1132
1551
|
/** Selector specifying which fields to include in a partial response. */
|
|
1133
|
-
fields?:
|
|
1552
|
+
fields?:
|
|
1553
|
+
string;
|
|
1134
1554
|
/** 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. */
|
|
1135
|
-
key?:
|
|
1555
|
+
key?:
|
|
1556
|
+
string;
|
|
1136
1557
|
/** Required. The name of the Route resource to delete. */
|
|
1137
|
-
name:
|
|
1558
|
+
name:
|
|
1559
|
+
string;
|
|
1138
1560
|
/** OAuth 2.0 token for the current user. */
|
|
1139
|
-
oauth_token?:
|
|
1561
|
+
oauth_token?:
|
|
1562
|
+
string;
|
|
1140
1563
|
/** Returns response with indentations and line breaks. */
|
|
1141
|
-
prettyPrint?:
|
|
1564
|
+
prettyPrint?:
|
|
1565
|
+
boolean;
|
|
1142
1566
|
/** 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. */
|
|
1143
|
-
quotaUser?:
|
|
1567
|
+
quotaUser?:
|
|
1568
|
+
string;
|
|
1144
1569
|
/**
|
|
1145
1570
|
* Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
|
|
1146
1571
|
* been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the
|
|
@@ -1148,106 +1573,148 @@ declare namespace gapi.client {
|
|
|
1148
1573
|
* ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not
|
|
1149
1574
|
* supported (00000000-0000-0000-0000-000000000000).
|
|
1150
1575
|
*/
|
|
1151
|
-
requestId?:
|
|
1576
|
+
requestId?:
|
|
1577
|
+
string;
|
|
1152
1578
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1153
|
-
upload_protocol?:
|
|
1579
|
+
upload_protocol?:
|
|
1580
|
+
string;
|
|
1154
1581
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1155
|
-
uploadType?:
|
|
1582
|
+
uploadType?:
|
|
1583
|
+
string;
|
|
1156
1584
|
}): Request<Operation>;
|
|
1157
1585
|
/** Use this method to get details about a route. */
|
|
1158
1586
|
get(request?: {
|
|
1159
1587
|
/** V1 error format. */
|
|
1160
|
-
"$.xgafv"?:
|
|
1588
|
+
"$.xgafv"?:
|
|
1589
|
+
string;
|
|
1161
1590
|
/** OAuth access token. */
|
|
1162
|
-
access_token?:
|
|
1591
|
+
access_token?:
|
|
1592
|
+
string;
|
|
1163
1593
|
/** Data format for response. */
|
|
1164
|
-
alt?:
|
|
1594
|
+
alt?:
|
|
1595
|
+
string;
|
|
1165
1596
|
/** JSONP */
|
|
1166
|
-
callback?:
|
|
1597
|
+
callback?:
|
|
1598
|
+
string;
|
|
1167
1599
|
/** Selector specifying which fields to include in a partial response. */
|
|
1168
|
-
fields?:
|
|
1600
|
+
fields?:
|
|
1601
|
+
string;
|
|
1169
1602
|
/** 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. */
|
|
1170
|
-
key?:
|
|
1603
|
+
key?:
|
|
1604
|
+
string;
|
|
1171
1605
|
/** Required. The name of the Route resource to get. */
|
|
1172
|
-
name:
|
|
1606
|
+
name:
|
|
1607
|
+
string;
|
|
1173
1608
|
/** OAuth 2.0 token for the current user. */
|
|
1174
|
-
oauth_token?:
|
|
1609
|
+
oauth_token?:
|
|
1610
|
+
string;
|
|
1175
1611
|
/** Returns response with indentations and line breaks. */
|
|
1176
|
-
prettyPrint?:
|
|
1612
|
+
prettyPrint?:
|
|
1613
|
+
boolean;
|
|
1177
1614
|
/** 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. */
|
|
1178
|
-
quotaUser?:
|
|
1615
|
+
quotaUser?:
|
|
1616
|
+
string;
|
|
1179
1617
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1180
|
-
upload_protocol?:
|
|
1618
|
+
upload_protocol?:
|
|
1619
|
+
string;
|
|
1181
1620
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1182
|
-
uploadType?:
|
|
1621
|
+
uploadType?:
|
|
1622
|
+
string;
|
|
1183
1623
|
}): Request<Route>;
|
|
1184
1624
|
/** Use this method to list routes created for a private connectivity in a project and location. */
|
|
1185
1625
|
list(request?: {
|
|
1186
1626
|
/** V1 error format. */
|
|
1187
|
-
"$.xgafv"?:
|
|
1627
|
+
"$.xgafv"?:
|
|
1628
|
+
string;
|
|
1188
1629
|
/** OAuth access token. */
|
|
1189
|
-
access_token?:
|
|
1630
|
+
access_token?:
|
|
1631
|
+
string;
|
|
1190
1632
|
/** Data format for response. */
|
|
1191
|
-
alt?:
|
|
1633
|
+
alt?:
|
|
1634
|
+
string;
|
|
1192
1635
|
/** JSONP */
|
|
1193
|
-
callback?:
|
|
1636
|
+
callback?:
|
|
1637
|
+
string;
|
|
1194
1638
|
/** Selector specifying which fields to include in a partial response. */
|
|
1195
|
-
fields?:
|
|
1639
|
+
fields?:
|
|
1640
|
+
string;
|
|
1196
1641
|
/** Filter request. */
|
|
1197
|
-
filter?:
|
|
1642
|
+
filter?:
|
|
1643
|
+
string;
|
|
1198
1644
|
/** 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. */
|
|
1199
|
-
key?:
|
|
1645
|
+
key?:
|
|
1646
|
+
string;
|
|
1200
1647
|
/** OAuth 2.0 token for the current user. */
|
|
1201
|
-
oauth_token?:
|
|
1648
|
+
oauth_token?:
|
|
1649
|
+
string;
|
|
1202
1650
|
/** Order by fields for the result. */
|
|
1203
|
-
orderBy?:
|
|
1651
|
+
orderBy?:
|
|
1652
|
+
string;
|
|
1204
1653
|
/**
|
|
1205
1654
|
* Maximum number of Routes to return. The service may return fewer than this value. If unspecified, at most 50 Routes will be returned. The maximum value is 1000; values above
|
|
1206
1655
|
* 1000 will be coerced to 1000.
|
|
1207
1656
|
*/
|
|
1208
|
-
pageSize?:
|
|
1657
|
+
pageSize?:
|
|
1658
|
+
number;
|
|
1209
1659
|
/**
|
|
1210
1660
|
* Page token received from a previous `ListRoutes` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListRoutes` must match
|
|
1211
1661
|
* the call that provided the page token.
|
|
1212
1662
|
*/
|
|
1213
|
-
pageToken?:
|
|
1663
|
+
pageToken?:
|
|
1664
|
+
string;
|
|
1214
1665
|
/** Required. The parent that owns the collection of Routess. */
|
|
1215
|
-
parent:
|
|
1666
|
+
parent:
|
|
1667
|
+
string;
|
|
1216
1668
|
/** Returns response with indentations and line breaks. */
|
|
1217
|
-
prettyPrint?:
|
|
1669
|
+
prettyPrint?:
|
|
1670
|
+
boolean;
|
|
1218
1671
|
/** 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. */
|
|
1219
|
-
quotaUser?:
|
|
1672
|
+
quotaUser?:
|
|
1673
|
+
string;
|
|
1220
1674
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1221
|
-
upload_protocol?:
|
|
1675
|
+
upload_protocol?:
|
|
1676
|
+
string;
|
|
1222
1677
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1223
|
-
uploadType?:
|
|
1678
|
+
uploadType?:
|
|
1679
|
+
string;
|
|
1224
1680
|
}): Request<ListRoutesResponse>;
|
|
1225
1681
|
}
|
|
1226
1682
|
interface PrivateConnectionsResource {
|
|
1227
1683
|
/** Use this method to create a private connectivity configuration. */
|
|
1228
1684
|
create(request: {
|
|
1229
1685
|
/** V1 error format. */
|
|
1230
|
-
"$.xgafv"?:
|
|
1686
|
+
"$.xgafv"?:
|
|
1687
|
+
string;
|
|
1231
1688
|
/** OAuth access token. */
|
|
1232
|
-
access_token?:
|
|
1689
|
+
access_token?:
|
|
1690
|
+
string;
|
|
1233
1691
|
/** Data format for response. */
|
|
1234
|
-
alt?:
|
|
1692
|
+
alt?:
|
|
1693
|
+
string;
|
|
1235
1694
|
/** JSONP */
|
|
1236
|
-
callback?:
|
|
1695
|
+
callback?:
|
|
1696
|
+
string;
|
|
1237
1697
|
/** Selector specifying which fields to include in a partial response. */
|
|
1238
|
-
fields?:
|
|
1698
|
+
fields?:
|
|
1699
|
+
string;
|
|
1239
1700
|
/** 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. */
|
|
1240
|
-
key?:
|
|
1701
|
+
key?:
|
|
1702
|
+
string;
|
|
1241
1703
|
/** OAuth 2.0 token for the current user. */
|
|
1242
|
-
oauth_token?:
|
|
1704
|
+
oauth_token?:
|
|
1705
|
+
string;
|
|
1243
1706
|
/** Required. The parent that owns the collection of PrivateConnections. */
|
|
1244
|
-
parent:
|
|
1707
|
+
parent:
|
|
1708
|
+
string;
|
|
1245
1709
|
/** Returns response with indentations and line breaks. */
|
|
1246
|
-
prettyPrint?:
|
|
1710
|
+
prettyPrint?:
|
|
1711
|
+
boolean;
|
|
1247
1712
|
/** Required. The private connectivity identifier. */
|
|
1248
|
-
privateConnectionId?:
|
|
1713
|
+
privateConnectionId?:
|
|
1714
|
+
string;
|
|
1249
1715
|
/** 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. */
|
|
1250
|
-
quotaUser?:
|
|
1716
|
+
quotaUser?:
|
|
1717
|
+
string;
|
|
1251
1718
|
/**
|
|
1252
1719
|
* Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
|
|
1253
1720
|
* been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the
|
|
@@ -1255,37 +1722,52 @@ declare namespace gapi.client {
|
|
|
1255
1722
|
* ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not
|
|
1256
1723
|
* supported (00000000-0000-0000-0000-000000000000).
|
|
1257
1724
|
*/
|
|
1258
|
-
requestId?:
|
|
1725
|
+
requestId?:
|
|
1726
|
+
string;
|
|
1259
1727
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1260
|
-
upload_protocol?:
|
|
1728
|
+
upload_protocol?:
|
|
1729
|
+
string;
|
|
1261
1730
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1262
|
-
uploadType?:
|
|
1731
|
+
uploadType?:
|
|
1732
|
+
string;
|
|
1263
1733
|
/** Request body */
|
|
1264
|
-
resource:
|
|
1734
|
+
resource:
|
|
1735
|
+
PrivateConnection;
|
|
1265
1736
|
}): Request<Operation>;
|
|
1266
1737
|
create(request: {
|
|
1267
1738
|
/** V1 error format. */
|
|
1268
|
-
"$.xgafv"?:
|
|
1739
|
+
"$.xgafv"?:
|
|
1740
|
+
string;
|
|
1269
1741
|
/** OAuth access token. */
|
|
1270
|
-
access_token?:
|
|
1742
|
+
access_token?:
|
|
1743
|
+
string;
|
|
1271
1744
|
/** Data format for response. */
|
|
1272
|
-
alt?:
|
|
1745
|
+
alt?:
|
|
1746
|
+
string;
|
|
1273
1747
|
/** JSONP */
|
|
1274
|
-
callback?:
|
|
1748
|
+
callback?:
|
|
1749
|
+
string;
|
|
1275
1750
|
/** Selector specifying which fields to include in a partial response. */
|
|
1276
|
-
fields?:
|
|
1751
|
+
fields?:
|
|
1752
|
+
string;
|
|
1277
1753
|
/** 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. */
|
|
1278
|
-
key?:
|
|
1754
|
+
key?:
|
|
1755
|
+
string;
|
|
1279
1756
|
/** OAuth 2.0 token for the current user. */
|
|
1280
|
-
oauth_token?:
|
|
1757
|
+
oauth_token?:
|
|
1758
|
+
string;
|
|
1281
1759
|
/** Required. The parent that owns the collection of PrivateConnections. */
|
|
1282
|
-
parent:
|
|
1760
|
+
parent:
|
|
1761
|
+
string;
|
|
1283
1762
|
/** Returns response with indentations and line breaks. */
|
|
1284
|
-
prettyPrint?:
|
|
1763
|
+
prettyPrint?:
|
|
1764
|
+
boolean;
|
|
1285
1765
|
/** Required. The private connectivity identifier. */
|
|
1286
|
-
privateConnectionId?:
|
|
1766
|
+
privateConnectionId?:
|
|
1767
|
+
string;
|
|
1287
1768
|
/** 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. */
|
|
1288
|
-
quotaUser?:
|
|
1769
|
+
quotaUser?:
|
|
1770
|
+
string;
|
|
1289
1771
|
/**
|
|
1290
1772
|
* Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
|
|
1291
1773
|
* been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the
|
|
@@ -1293,37 +1775,51 @@ declare namespace gapi.client {
|
|
|
1293
1775
|
* ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not
|
|
1294
1776
|
* supported (00000000-0000-0000-0000-000000000000).
|
|
1295
1777
|
*/
|
|
1296
|
-
requestId?:
|
|
1778
|
+
requestId?:
|
|
1779
|
+
string;
|
|
1297
1780
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1298
|
-
upload_protocol?:
|
|
1781
|
+
upload_protocol?:
|
|
1782
|
+
string;
|
|
1299
1783
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1300
|
-
uploadType?:
|
|
1784
|
+
uploadType?:
|
|
1785
|
+
string;
|
|
1301
1786
|
},
|
|
1302
1787
|
body: PrivateConnection): Request<Operation>;
|
|
1303
1788
|
/** Use this method to delete a private connectivity configuration. */
|
|
1304
1789
|
delete(request?: {
|
|
1305
1790
|
/** V1 error format. */
|
|
1306
|
-
"$.xgafv"?:
|
|
1791
|
+
"$.xgafv"?:
|
|
1792
|
+
string;
|
|
1307
1793
|
/** OAuth access token. */
|
|
1308
|
-
access_token?:
|
|
1794
|
+
access_token?:
|
|
1795
|
+
string;
|
|
1309
1796
|
/** Data format for response. */
|
|
1310
|
-
alt?:
|
|
1797
|
+
alt?:
|
|
1798
|
+
string;
|
|
1311
1799
|
/** JSONP */
|
|
1312
|
-
callback?:
|
|
1800
|
+
callback?:
|
|
1801
|
+
string;
|
|
1313
1802
|
/** Selector specifying which fields to include in a partial response. */
|
|
1314
|
-
fields?:
|
|
1803
|
+
fields?:
|
|
1804
|
+
string;
|
|
1315
1805
|
/** Optional. If set to true, any child routes that belong to this PrivateConnection will also be deleted. */
|
|
1316
|
-
force?:
|
|
1806
|
+
force?:
|
|
1807
|
+
boolean;
|
|
1317
1808
|
/** 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. */
|
|
1318
|
-
key?:
|
|
1809
|
+
key?:
|
|
1810
|
+
string;
|
|
1319
1811
|
/** Required. The name of the private connectivity configuration to delete. */
|
|
1320
|
-
name:
|
|
1812
|
+
name:
|
|
1813
|
+
string;
|
|
1321
1814
|
/** OAuth 2.0 token for the current user. */
|
|
1322
|
-
oauth_token?:
|
|
1815
|
+
oauth_token?:
|
|
1816
|
+
string;
|
|
1323
1817
|
/** Returns response with indentations and line breaks. */
|
|
1324
|
-
prettyPrint?:
|
|
1818
|
+
prettyPrint?:
|
|
1819
|
+
boolean;
|
|
1325
1820
|
/** 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. */
|
|
1326
|
-
quotaUser?:
|
|
1821
|
+
quotaUser?:
|
|
1822
|
+
string;
|
|
1327
1823
|
/**
|
|
1328
1824
|
* Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
|
|
1329
1825
|
* been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the
|
|
@@ -1331,224 +1827,317 @@ declare namespace gapi.client {
|
|
|
1331
1827
|
* ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not
|
|
1332
1828
|
* supported (00000000-0000-0000-0000-000000000000).
|
|
1333
1829
|
*/
|
|
1334
|
-
requestId?:
|
|
1830
|
+
requestId?:
|
|
1831
|
+
string;
|
|
1335
1832
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1336
|
-
upload_protocol?:
|
|
1833
|
+
upload_protocol?:
|
|
1834
|
+
string;
|
|
1337
1835
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1338
|
-
uploadType?:
|
|
1836
|
+
uploadType?:
|
|
1837
|
+
string;
|
|
1339
1838
|
}): Request<Operation>;
|
|
1340
1839
|
/** Use this method to get details about a private connectivity configuration. */
|
|
1341
1840
|
get(request?: {
|
|
1342
1841
|
/** V1 error format. */
|
|
1343
|
-
"$.xgafv"?:
|
|
1842
|
+
"$.xgafv"?:
|
|
1843
|
+
string;
|
|
1344
1844
|
/** OAuth access token. */
|
|
1345
|
-
access_token?:
|
|
1845
|
+
access_token?:
|
|
1846
|
+
string;
|
|
1346
1847
|
/** Data format for response. */
|
|
1347
|
-
alt?:
|
|
1848
|
+
alt?:
|
|
1849
|
+
string;
|
|
1348
1850
|
/** JSONP */
|
|
1349
|
-
callback?:
|
|
1851
|
+
callback?:
|
|
1852
|
+
string;
|
|
1350
1853
|
/** Selector specifying which fields to include in a partial response. */
|
|
1351
|
-
fields?:
|
|
1854
|
+
fields?:
|
|
1855
|
+
string;
|
|
1352
1856
|
/** 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. */
|
|
1353
|
-
key?:
|
|
1857
|
+
key?:
|
|
1858
|
+
string;
|
|
1354
1859
|
/** Required. The name of the private connectivity configuration to get. */
|
|
1355
|
-
name:
|
|
1860
|
+
name:
|
|
1861
|
+
string;
|
|
1356
1862
|
/** OAuth 2.0 token for the current user. */
|
|
1357
|
-
oauth_token?:
|
|
1863
|
+
oauth_token?:
|
|
1864
|
+
string;
|
|
1358
1865
|
/** Returns response with indentations and line breaks. */
|
|
1359
|
-
prettyPrint?:
|
|
1866
|
+
prettyPrint?:
|
|
1867
|
+
boolean;
|
|
1360
1868
|
/** 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. */
|
|
1361
|
-
quotaUser?:
|
|
1869
|
+
quotaUser?:
|
|
1870
|
+
string;
|
|
1362
1871
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1363
|
-
upload_protocol?:
|
|
1872
|
+
upload_protocol?:
|
|
1873
|
+
string;
|
|
1364
1874
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1365
|
-
uploadType?:
|
|
1875
|
+
uploadType?:
|
|
1876
|
+
string;
|
|
1366
1877
|
}): Request<PrivateConnection>;
|
|
1367
1878
|
/** Use this method to list private connectivity configurations in a project and location. */
|
|
1368
1879
|
list(request?: {
|
|
1369
1880
|
/** V1 error format. */
|
|
1370
|
-
"$.xgafv"?:
|
|
1881
|
+
"$.xgafv"?:
|
|
1882
|
+
string;
|
|
1371
1883
|
/** OAuth access token. */
|
|
1372
|
-
access_token?:
|
|
1884
|
+
access_token?:
|
|
1885
|
+
string;
|
|
1373
1886
|
/** Data format for response. */
|
|
1374
|
-
alt?:
|
|
1887
|
+
alt?:
|
|
1888
|
+
string;
|
|
1375
1889
|
/** JSONP */
|
|
1376
|
-
callback?:
|
|
1890
|
+
callback?:
|
|
1891
|
+
string;
|
|
1377
1892
|
/** Selector specifying which fields to include in a partial response. */
|
|
1378
|
-
fields?:
|
|
1893
|
+
fields?:
|
|
1894
|
+
string;
|
|
1379
1895
|
/** Filter request. */
|
|
1380
|
-
filter?:
|
|
1896
|
+
filter?:
|
|
1897
|
+
string;
|
|
1381
1898
|
/** 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. */
|
|
1382
|
-
key?:
|
|
1899
|
+
key?:
|
|
1900
|
+
string;
|
|
1383
1901
|
/** OAuth 2.0 token for the current user. */
|
|
1384
|
-
oauth_token?:
|
|
1902
|
+
oauth_token?:
|
|
1903
|
+
string;
|
|
1385
1904
|
/** Order by fields for the result. */
|
|
1386
|
-
orderBy?:
|
|
1905
|
+
orderBy?:
|
|
1906
|
+
string;
|
|
1387
1907
|
/**
|
|
1388
1908
|
* Maximum number of private connectivity configurations to return. If unspecified, at most 50 private connectivity configurations that will be returned. The maximum value is 1000;
|
|
1389
1909
|
* values above 1000 will be coerced to 1000.
|
|
1390
1910
|
*/
|
|
1391
|
-
pageSize?:
|
|
1911
|
+
pageSize?:
|
|
1912
|
+
number;
|
|
1392
1913
|
/**
|
|
1393
1914
|
* Page token received from a previous `ListPrivateConnections` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to
|
|
1394
1915
|
* `ListPrivateConnections` must match the call that provided the page token.
|
|
1395
1916
|
*/
|
|
1396
|
-
pageToken?:
|
|
1917
|
+
pageToken?:
|
|
1918
|
+
string;
|
|
1397
1919
|
/** Required. The parent that owns the collection of private connectivity configurations. */
|
|
1398
|
-
parent:
|
|
1920
|
+
parent:
|
|
1921
|
+
string;
|
|
1399
1922
|
/** Returns response with indentations and line breaks. */
|
|
1400
|
-
prettyPrint?:
|
|
1923
|
+
prettyPrint?:
|
|
1924
|
+
boolean;
|
|
1401
1925
|
/** 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. */
|
|
1402
|
-
quotaUser?:
|
|
1926
|
+
quotaUser?:
|
|
1927
|
+
string;
|
|
1403
1928
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1404
|
-
upload_protocol?:
|
|
1929
|
+
upload_protocol?:
|
|
1930
|
+
string;
|
|
1405
1931
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1406
|
-
uploadType?:
|
|
1932
|
+
uploadType?:
|
|
1933
|
+
string;
|
|
1407
1934
|
}): Request<ListPrivateConnectionsResponse>;
|
|
1408
|
-
routes:
|
|
1935
|
+
routes:
|
|
1936
|
+
RoutesResource;
|
|
1409
1937
|
}
|
|
1410
1938
|
interface ObjectsResource {
|
|
1411
1939
|
/** Use this method to get details about a stream object. */
|
|
1412
1940
|
get(request?: {
|
|
1413
1941
|
/** V1 error format. */
|
|
1414
|
-
"$.xgafv"?:
|
|
1942
|
+
"$.xgafv"?:
|
|
1943
|
+
string;
|
|
1415
1944
|
/** OAuth access token. */
|
|
1416
|
-
access_token?:
|
|
1945
|
+
access_token?:
|
|
1946
|
+
string;
|
|
1417
1947
|
/** Data format for response. */
|
|
1418
|
-
alt?:
|
|
1948
|
+
alt?:
|
|
1949
|
+
string;
|
|
1419
1950
|
/** JSONP */
|
|
1420
|
-
callback?:
|
|
1951
|
+
callback?:
|
|
1952
|
+
string;
|
|
1421
1953
|
/** Selector specifying which fields to include in a partial response. */
|
|
1422
|
-
fields?:
|
|
1954
|
+
fields?:
|
|
1955
|
+
string;
|
|
1423
1956
|
/** 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. */
|
|
1424
|
-
key?:
|
|
1957
|
+
key?:
|
|
1958
|
+
string;
|
|
1425
1959
|
/** Required. The name of the stream object resource to get. */
|
|
1426
|
-
name:
|
|
1960
|
+
name:
|
|
1961
|
+
string;
|
|
1427
1962
|
/** OAuth 2.0 token for the current user. */
|
|
1428
|
-
oauth_token?:
|
|
1963
|
+
oauth_token?:
|
|
1964
|
+
string;
|
|
1429
1965
|
/** Returns response with indentations and line breaks. */
|
|
1430
|
-
prettyPrint?:
|
|
1966
|
+
prettyPrint?:
|
|
1967
|
+
boolean;
|
|
1431
1968
|
/** 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. */
|
|
1432
|
-
quotaUser?:
|
|
1969
|
+
quotaUser?:
|
|
1970
|
+
string;
|
|
1433
1971
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1434
|
-
upload_protocol?:
|
|
1972
|
+
upload_protocol?:
|
|
1973
|
+
string;
|
|
1435
1974
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1436
|
-
uploadType?:
|
|
1975
|
+
uploadType?:
|
|
1976
|
+
string;
|
|
1437
1977
|
}): Request<StreamObject>;
|
|
1438
1978
|
/** Use this method to list the objects of a specific stream. */
|
|
1439
1979
|
list(request?: {
|
|
1440
1980
|
/** V1 error format. */
|
|
1441
|
-
"$.xgafv"?:
|
|
1981
|
+
"$.xgafv"?:
|
|
1982
|
+
string;
|
|
1442
1983
|
/** OAuth access token. */
|
|
1443
|
-
access_token?:
|
|
1984
|
+
access_token?:
|
|
1985
|
+
string;
|
|
1444
1986
|
/** Data format for response. */
|
|
1445
|
-
alt?:
|
|
1987
|
+
alt?:
|
|
1988
|
+
string;
|
|
1446
1989
|
/** JSONP */
|
|
1447
|
-
callback?:
|
|
1990
|
+
callback?:
|
|
1991
|
+
string;
|
|
1448
1992
|
/** Selector specifying which fields to include in a partial response. */
|
|
1449
|
-
fields?:
|
|
1993
|
+
fields?:
|
|
1994
|
+
string;
|
|
1450
1995
|
/** 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?:
|
|
1996
|
+
key?:
|
|
1997
|
+
string;
|
|
1452
1998
|
/** OAuth 2.0 token for the current user. */
|
|
1453
|
-
oauth_token?:
|
|
1999
|
+
oauth_token?:
|
|
2000
|
+
string;
|
|
1454
2001
|
/** Maximum number of objects to return. Default is 50. The maximum value is 1000; values above 1000 will be coerced to 1000. */
|
|
1455
|
-
pageSize?:
|
|
2002
|
+
pageSize?:
|
|
2003
|
+
number;
|
|
1456
2004
|
/**
|
|
1457
2005
|
* Page token received from a previous `ListStreamObjectsRequest` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to
|
|
1458
2006
|
* `ListStreamObjectsRequest` must match the call that provided the page token.
|
|
1459
2007
|
*/
|
|
1460
|
-
pageToken?:
|
|
2008
|
+
pageToken?:
|
|
2009
|
+
string;
|
|
1461
2010
|
/** Required. The parent stream that owns the collection of objects. */
|
|
1462
|
-
parent:
|
|
2011
|
+
parent:
|
|
2012
|
+
string;
|
|
1463
2013
|
/** Returns response with indentations and line breaks. */
|
|
1464
|
-
prettyPrint?:
|
|
2014
|
+
prettyPrint?:
|
|
2015
|
+
boolean;
|
|
1465
2016
|
/** 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. */
|
|
1466
|
-
quotaUser?:
|
|
2017
|
+
quotaUser?:
|
|
2018
|
+
string;
|
|
1467
2019
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1468
|
-
upload_protocol?:
|
|
2020
|
+
upload_protocol?:
|
|
2021
|
+
string;
|
|
1469
2022
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1470
|
-
uploadType?:
|
|
2023
|
+
uploadType?:
|
|
2024
|
+
string;
|
|
1471
2025
|
}): Request<ListStreamObjectsResponse>;
|
|
1472
2026
|
/** Starts backfill job for the specified stream object. */
|
|
1473
2027
|
startBackfillJob(request?: {
|
|
1474
2028
|
/** V1 error format. */
|
|
1475
|
-
"$.xgafv"?:
|
|
2029
|
+
"$.xgafv"?:
|
|
2030
|
+
string;
|
|
1476
2031
|
/** OAuth access token. */
|
|
1477
|
-
access_token?:
|
|
2032
|
+
access_token?:
|
|
2033
|
+
string;
|
|
1478
2034
|
/** Data format for response. */
|
|
1479
|
-
alt?:
|
|
2035
|
+
alt?:
|
|
2036
|
+
string;
|
|
1480
2037
|
/** JSONP */
|
|
1481
|
-
callback?:
|
|
2038
|
+
callback?:
|
|
2039
|
+
string;
|
|
1482
2040
|
/** Selector specifying which fields to include in a partial response. */
|
|
1483
|
-
fields?:
|
|
2041
|
+
fields?:
|
|
2042
|
+
string;
|
|
1484
2043
|
/** 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. */
|
|
1485
|
-
key?:
|
|
2044
|
+
key?:
|
|
2045
|
+
string;
|
|
1486
2046
|
/** OAuth 2.0 token for the current user. */
|
|
1487
|
-
oauth_token?:
|
|
2047
|
+
oauth_token?:
|
|
2048
|
+
string;
|
|
1488
2049
|
/** Required. The name of the stream object resource to start a backfill job for. */
|
|
1489
|
-
object:
|
|
2050
|
+
object:
|
|
2051
|
+
string;
|
|
1490
2052
|
/** Returns response with indentations and line breaks. */
|
|
1491
|
-
prettyPrint?:
|
|
2053
|
+
prettyPrint?:
|
|
2054
|
+
boolean;
|
|
1492
2055
|
/** 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. */
|
|
1493
|
-
quotaUser?:
|
|
2056
|
+
quotaUser?:
|
|
2057
|
+
string;
|
|
1494
2058
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1495
|
-
upload_protocol?:
|
|
2059
|
+
upload_protocol?:
|
|
2060
|
+
string;
|
|
1496
2061
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1497
|
-
uploadType?:
|
|
2062
|
+
uploadType?:
|
|
2063
|
+
string;
|
|
1498
2064
|
}): Request<StartBackfillJobResponse>;
|
|
1499
2065
|
/** Stops the backfill job for the specified stream object. */
|
|
1500
2066
|
stopBackfillJob(request?: {
|
|
1501
2067
|
/** V1 error format. */
|
|
1502
|
-
"$.xgafv"?:
|
|
2068
|
+
"$.xgafv"?:
|
|
2069
|
+
string;
|
|
1503
2070
|
/** OAuth access token. */
|
|
1504
|
-
access_token?:
|
|
2071
|
+
access_token?:
|
|
2072
|
+
string;
|
|
1505
2073
|
/** Data format for response. */
|
|
1506
|
-
alt?:
|
|
2074
|
+
alt?:
|
|
2075
|
+
string;
|
|
1507
2076
|
/** JSONP */
|
|
1508
|
-
callback?:
|
|
2077
|
+
callback?:
|
|
2078
|
+
string;
|
|
1509
2079
|
/** Selector specifying which fields to include in a partial response. */
|
|
1510
|
-
fields?:
|
|
2080
|
+
fields?:
|
|
2081
|
+
string;
|
|
1511
2082
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1512
|
-
key?:
|
|
2083
|
+
key?:
|
|
2084
|
+
string;
|
|
1513
2085
|
/** OAuth 2.0 token for the current user. */
|
|
1514
|
-
oauth_token?:
|
|
2086
|
+
oauth_token?:
|
|
2087
|
+
string;
|
|
1515
2088
|
/** Required. The name of the stream object resource to stop the backfill job for. */
|
|
1516
|
-
object:
|
|
2089
|
+
object:
|
|
2090
|
+
string;
|
|
1517
2091
|
/** Returns response with indentations and line breaks. */
|
|
1518
|
-
prettyPrint?:
|
|
2092
|
+
prettyPrint?:
|
|
2093
|
+
boolean;
|
|
1519
2094
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1520
|
-
quotaUser?:
|
|
2095
|
+
quotaUser?:
|
|
2096
|
+
string;
|
|
1521
2097
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1522
|
-
upload_protocol?:
|
|
2098
|
+
upload_protocol?:
|
|
2099
|
+
string;
|
|
1523
2100
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1524
|
-
uploadType?:
|
|
2101
|
+
uploadType?:
|
|
2102
|
+
string;
|
|
1525
2103
|
}): Request<StopBackfillJobResponse>;
|
|
1526
2104
|
}
|
|
1527
2105
|
interface StreamsResource {
|
|
1528
2106
|
/** Use this method to create a stream. */
|
|
1529
2107
|
create(request: {
|
|
1530
2108
|
/** V1 error format. */
|
|
1531
|
-
"$.xgafv"?:
|
|
2109
|
+
"$.xgafv"?:
|
|
2110
|
+
string;
|
|
1532
2111
|
/** OAuth access token. */
|
|
1533
|
-
access_token?:
|
|
2112
|
+
access_token?:
|
|
2113
|
+
string;
|
|
1534
2114
|
/** Data format for response. */
|
|
1535
|
-
alt?:
|
|
2115
|
+
alt?:
|
|
2116
|
+
string;
|
|
1536
2117
|
/** JSONP */
|
|
1537
|
-
callback?:
|
|
2118
|
+
callback?:
|
|
2119
|
+
string;
|
|
1538
2120
|
/** Selector specifying which fields to include in a partial response. */
|
|
1539
|
-
fields?:
|
|
2121
|
+
fields?:
|
|
2122
|
+
string;
|
|
1540
2123
|
/** Optional. Create the stream without validating it. */
|
|
1541
|
-
force?:
|
|
2124
|
+
force?:
|
|
2125
|
+
boolean;
|
|
1542
2126
|
/** 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. */
|
|
1543
|
-
key?:
|
|
2127
|
+
key?:
|
|
2128
|
+
string;
|
|
1544
2129
|
/** OAuth 2.0 token for the current user. */
|
|
1545
|
-
oauth_token?:
|
|
2130
|
+
oauth_token?:
|
|
2131
|
+
string;
|
|
1546
2132
|
/** Required. The parent that owns the collection of streams. */
|
|
1547
|
-
parent:
|
|
2133
|
+
parent:
|
|
2134
|
+
string;
|
|
1548
2135
|
/** Returns response with indentations and line breaks. */
|
|
1549
|
-
prettyPrint?:
|
|
2136
|
+
prettyPrint?:
|
|
2137
|
+
boolean;
|
|
1550
2138
|
/** 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. */
|
|
1551
|
-
quotaUser?:
|
|
2139
|
+
quotaUser?:
|
|
2140
|
+
string;
|
|
1552
2141
|
/**
|
|
1553
2142
|
* Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
|
|
1554
2143
|
* been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the
|
|
@@ -1556,41 +2145,58 @@ declare namespace gapi.client {
|
|
|
1556
2145
|
* ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not
|
|
1557
2146
|
* supported (00000000-0000-0000-0000-000000000000).
|
|
1558
2147
|
*/
|
|
1559
|
-
requestId?:
|
|
2148
|
+
requestId?:
|
|
2149
|
+
string;
|
|
1560
2150
|
/** Required. The stream identifier. */
|
|
1561
|
-
streamId?:
|
|
2151
|
+
streamId?:
|
|
2152
|
+
string;
|
|
1562
2153
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1563
|
-
upload_protocol?:
|
|
2154
|
+
upload_protocol?:
|
|
2155
|
+
string;
|
|
1564
2156
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1565
|
-
uploadType?:
|
|
2157
|
+
uploadType?:
|
|
2158
|
+
string;
|
|
1566
2159
|
/** Optional. Only validate the stream, but do not create any resources. The default is false. */
|
|
1567
|
-
validateOnly?:
|
|
2160
|
+
validateOnly?:
|
|
2161
|
+
boolean;
|
|
1568
2162
|
/** Request body */
|
|
1569
|
-
resource:
|
|
2163
|
+
resource:
|
|
2164
|
+
Stream;
|
|
1570
2165
|
}): Request<Operation>;
|
|
1571
2166
|
create(request: {
|
|
1572
2167
|
/** V1 error format. */
|
|
1573
|
-
"$.xgafv"?:
|
|
2168
|
+
"$.xgafv"?:
|
|
2169
|
+
string;
|
|
1574
2170
|
/** OAuth access token. */
|
|
1575
|
-
access_token?:
|
|
2171
|
+
access_token?:
|
|
2172
|
+
string;
|
|
1576
2173
|
/** Data format for response. */
|
|
1577
|
-
alt?:
|
|
2174
|
+
alt?:
|
|
2175
|
+
string;
|
|
1578
2176
|
/** JSONP */
|
|
1579
|
-
callback?:
|
|
2177
|
+
callback?:
|
|
2178
|
+
string;
|
|
1580
2179
|
/** Selector specifying which fields to include in a partial response. */
|
|
1581
|
-
fields?:
|
|
2180
|
+
fields?:
|
|
2181
|
+
string;
|
|
1582
2182
|
/** Optional. Create the stream without validating it. */
|
|
1583
|
-
force?:
|
|
2183
|
+
force?:
|
|
2184
|
+
boolean;
|
|
1584
2185
|
/** 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. */
|
|
1585
|
-
key?:
|
|
2186
|
+
key?:
|
|
2187
|
+
string;
|
|
1586
2188
|
/** OAuth 2.0 token for the current user. */
|
|
1587
|
-
oauth_token?:
|
|
2189
|
+
oauth_token?:
|
|
2190
|
+
string;
|
|
1588
2191
|
/** Required. The parent that owns the collection of streams. */
|
|
1589
|
-
parent:
|
|
2192
|
+
parent:
|
|
2193
|
+
string;
|
|
1590
2194
|
/** Returns response with indentations and line breaks. */
|
|
1591
|
-
prettyPrint?:
|
|
2195
|
+
prettyPrint?:
|
|
2196
|
+
boolean;
|
|
1592
2197
|
/** 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. */
|
|
1593
|
-
quotaUser?:
|
|
2198
|
+
quotaUser?:
|
|
2199
|
+
string;
|
|
1594
2200
|
/**
|
|
1595
2201
|
* Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
|
|
1596
2202
|
* been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the
|
|
@@ -1598,39 +2204,54 @@ declare namespace gapi.client {
|
|
|
1598
2204
|
* ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not
|
|
1599
2205
|
* supported (00000000-0000-0000-0000-000000000000).
|
|
1600
2206
|
*/
|
|
1601
|
-
requestId?:
|
|
2207
|
+
requestId?:
|
|
2208
|
+
string;
|
|
1602
2209
|
/** Required. The stream identifier. */
|
|
1603
|
-
streamId?:
|
|
2210
|
+
streamId?:
|
|
2211
|
+
string;
|
|
1604
2212
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1605
|
-
upload_protocol?:
|
|
2213
|
+
upload_protocol?:
|
|
2214
|
+
string;
|
|
1606
2215
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1607
|
-
uploadType?:
|
|
2216
|
+
uploadType?:
|
|
2217
|
+
string;
|
|
1608
2218
|
/** Optional. Only validate the stream, but do not create any resources. The default is false. */
|
|
1609
|
-
validateOnly?:
|
|
2219
|
+
validateOnly?:
|
|
2220
|
+
boolean;
|
|
1610
2221
|
},
|
|
1611
2222
|
body: Stream): Request<Operation>;
|
|
1612
2223
|
/** Use this method to delete a stream. */
|
|
1613
2224
|
delete(request?: {
|
|
1614
2225
|
/** V1 error format. */
|
|
1615
|
-
"$.xgafv"?:
|
|
2226
|
+
"$.xgafv"?:
|
|
2227
|
+
string;
|
|
1616
2228
|
/** OAuth access token. */
|
|
1617
|
-
access_token?:
|
|
2229
|
+
access_token?:
|
|
2230
|
+
string;
|
|
1618
2231
|
/** Data format for response. */
|
|
1619
|
-
alt?:
|
|
2232
|
+
alt?:
|
|
2233
|
+
string;
|
|
1620
2234
|
/** JSONP */
|
|
1621
|
-
callback?:
|
|
2235
|
+
callback?:
|
|
2236
|
+
string;
|
|
1622
2237
|
/** Selector specifying which fields to include in a partial response. */
|
|
1623
|
-
fields?:
|
|
2238
|
+
fields?:
|
|
2239
|
+
string;
|
|
1624
2240
|
/** 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. */
|
|
1625
|
-
key?:
|
|
2241
|
+
key?:
|
|
2242
|
+
string;
|
|
1626
2243
|
/** Required. The name of the stream resource to delete. */
|
|
1627
|
-
name:
|
|
2244
|
+
name:
|
|
2245
|
+
string;
|
|
1628
2246
|
/** OAuth 2.0 token for the current user. */
|
|
1629
|
-
oauth_token?:
|
|
2247
|
+
oauth_token?:
|
|
2248
|
+
string;
|
|
1630
2249
|
/** Returns response with indentations and line breaks. */
|
|
1631
|
-
prettyPrint?:
|
|
2250
|
+
prettyPrint?:
|
|
2251
|
+
boolean;
|
|
1632
2252
|
/** 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. */
|
|
1633
|
-
quotaUser?:
|
|
2253
|
+
quotaUser?:
|
|
2254
|
+
string;
|
|
1634
2255
|
/**
|
|
1635
2256
|
* Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
|
|
1636
2257
|
* been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the
|
|
@@ -1638,157 +2259,224 @@ declare namespace gapi.client {
|
|
|
1638
2259
|
* ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not
|
|
1639
2260
|
* supported (00000000-0000-0000-0000-000000000000).
|
|
1640
2261
|
*/
|
|
1641
|
-
requestId?:
|
|
2262
|
+
requestId?:
|
|
2263
|
+
string;
|
|
1642
2264
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1643
|
-
upload_protocol?:
|
|
2265
|
+
upload_protocol?:
|
|
2266
|
+
string;
|
|
1644
2267
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1645
|
-
uploadType?:
|
|
2268
|
+
uploadType?:
|
|
2269
|
+
string;
|
|
1646
2270
|
}): Request<Operation>;
|
|
1647
2271
|
/** Use this method to fetch any errors associated with a stream. */
|
|
1648
2272
|
fetchErrors(request: {
|
|
1649
2273
|
/** V1 error format. */
|
|
1650
|
-
"$.xgafv"?:
|
|
2274
|
+
"$.xgafv"?:
|
|
2275
|
+
string;
|
|
1651
2276
|
/** OAuth access token. */
|
|
1652
|
-
access_token?:
|
|
2277
|
+
access_token?:
|
|
2278
|
+
string;
|
|
1653
2279
|
/** Data format for response. */
|
|
1654
|
-
alt?:
|
|
2280
|
+
alt?:
|
|
2281
|
+
string;
|
|
1655
2282
|
/** JSONP */
|
|
1656
|
-
callback?:
|
|
2283
|
+
callback?:
|
|
2284
|
+
string;
|
|
1657
2285
|
/** Selector specifying which fields to include in a partial response. */
|
|
1658
|
-
fields?:
|
|
2286
|
+
fields?:
|
|
2287
|
+
string;
|
|
1659
2288
|
/** 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. */
|
|
1660
|
-
key?:
|
|
2289
|
+
key?:
|
|
2290
|
+
string;
|
|
1661
2291
|
/** OAuth 2.0 token for the current user. */
|
|
1662
|
-
oauth_token?:
|
|
2292
|
+
oauth_token?:
|
|
2293
|
+
string;
|
|
1663
2294
|
/** Returns response with indentations and line breaks. */
|
|
1664
|
-
prettyPrint?:
|
|
2295
|
+
prettyPrint?:
|
|
2296
|
+
boolean;
|
|
1665
2297
|
/** 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?:
|
|
2298
|
+
quotaUser?:
|
|
2299
|
+
string;
|
|
1667
2300
|
/** Name of the Stream resource for which to fetch any errors. */
|
|
1668
|
-
stream:
|
|
2301
|
+
stream:
|
|
2302
|
+
string;
|
|
1669
2303
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1670
|
-
upload_protocol?:
|
|
2304
|
+
upload_protocol?:
|
|
2305
|
+
string;
|
|
1671
2306
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1672
|
-
uploadType?:
|
|
2307
|
+
uploadType?:
|
|
2308
|
+
string;
|
|
1673
2309
|
/** Request body */
|
|
1674
|
-
resource:
|
|
2310
|
+
resource:
|
|
2311
|
+
FetchErrorsRequest;
|
|
1675
2312
|
}): Request<Operation>;
|
|
1676
2313
|
fetchErrors(request: {
|
|
1677
2314
|
/** V1 error format. */
|
|
1678
|
-
"$.xgafv"?:
|
|
2315
|
+
"$.xgafv"?:
|
|
2316
|
+
string;
|
|
1679
2317
|
/** OAuth access token. */
|
|
1680
|
-
access_token?:
|
|
2318
|
+
access_token?:
|
|
2319
|
+
string;
|
|
1681
2320
|
/** Data format for response. */
|
|
1682
|
-
alt?:
|
|
2321
|
+
alt?:
|
|
2322
|
+
string;
|
|
1683
2323
|
/** JSONP */
|
|
1684
|
-
callback?:
|
|
2324
|
+
callback?:
|
|
2325
|
+
string;
|
|
1685
2326
|
/** Selector specifying which fields to include in a partial response. */
|
|
1686
|
-
fields?:
|
|
2327
|
+
fields?:
|
|
2328
|
+
string;
|
|
1687
2329
|
/** 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. */
|
|
1688
|
-
key?:
|
|
2330
|
+
key?:
|
|
2331
|
+
string;
|
|
1689
2332
|
/** OAuth 2.0 token for the current user. */
|
|
1690
|
-
oauth_token?:
|
|
2333
|
+
oauth_token?:
|
|
2334
|
+
string;
|
|
1691
2335
|
/** Returns response with indentations and line breaks. */
|
|
1692
|
-
prettyPrint?:
|
|
2336
|
+
prettyPrint?:
|
|
2337
|
+
boolean;
|
|
1693
2338
|
/** 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. */
|
|
1694
|
-
quotaUser?:
|
|
2339
|
+
quotaUser?:
|
|
2340
|
+
string;
|
|
1695
2341
|
/** Name of the Stream resource for which to fetch any errors. */
|
|
1696
|
-
stream:
|
|
2342
|
+
stream:
|
|
2343
|
+
string;
|
|
1697
2344
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1698
|
-
upload_protocol?:
|
|
2345
|
+
upload_protocol?:
|
|
2346
|
+
string;
|
|
1699
2347
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1700
|
-
uploadType?:
|
|
2348
|
+
uploadType?:
|
|
2349
|
+
string;
|
|
1701
2350
|
},
|
|
1702
2351
|
body: FetchErrorsRequest): Request<Operation>;
|
|
1703
2352
|
/** Use this method to get details about a stream. */
|
|
1704
2353
|
get(request?: {
|
|
1705
2354
|
/** V1 error format. */
|
|
1706
|
-
"$.xgafv"?:
|
|
2355
|
+
"$.xgafv"?:
|
|
2356
|
+
string;
|
|
1707
2357
|
/** OAuth access token. */
|
|
1708
|
-
access_token?:
|
|
2358
|
+
access_token?:
|
|
2359
|
+
string;
|
|
1709
2360
|
/** Data format for response. */
|
|
1710
|
-
alt?:
|
|
2361
|
+
alt?:
|
|
2362
|
+
string;
|
|
1711
2363
|
/** JSONP */
|
|
1712
|
-
callback?:
|
|
2364
|
+
callback?:
|
|
2365
|
+
string;
|
|
1713
2366
|
/** Selector specifying which fields to include in a partial response. */
|
|
1714
|
-
fields?:
|
|
2367
|
+
fields?:
|
|
2368
|
+
string;
|
|
1715
2369
|
/** 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. */
|
|
1716
|
-
key?:
|
|
2370
|
+
key?:
|
|
2371
|
+
string;
|
|
1717
2372
|
/** Required. The name of the stream resource to get. */
|
|
1718
|
-
name:
|
|
2373
|
+
name:
|
|
2374
|
+
string;
|
|
1719
2375
|
/** OAuth 2.0 token for the current user. */
|
|
1720
|
-
oauth_token?:
|
|
2376
|
+
oauth_token?:
|
|
2377
|
+
string;
|
|
1721
2378
|
/** Returns response with indentations and line breaks. */
|
|
1722
|
-
prettyPrint?:
|
|
2379
|
+
prettyPrint?:
|
|
2380
|
+
boolean;
|
|
1723
2381
|
/** 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. */
|
|
1724
|
-
quotaUser?:
|
|
2382
|
+
quotaUser?:
|
|
2383
|
+
string;
|
|
1725
2384
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1726
|
-
upload_protocol?:
|
|
2385
|
+
upload_protocol?:
|
|
2386
|
+
string;
|
|
1727
2387
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1728
|
-
uploadType?:
|
|
2388
|
+
uploadType?:
|
|
2389
|
+
string;
|
|
1729
2390
|
}): Request<Stream>;
|
|
1730
2391
|
/** Use this method to list streams in a project and location. */
|
|
1731
2392
|
list(request?: {
|
|
1732
2393
|
/** V1 error format. */
|
|
1733
|
-
"$.xgafv"?:
|
|
2394
|
+
"$.xgafv"?:
|
|
2395
|
+
string;
|
|
1734
2396
|
/** OAuth access token. */
|
|
1735
|
-
access_token?:
|
|
2397
|
+
access_token?:
|
|
2398
|
+
string;
|
|
1736
2399
|
/** Data format for response. */
|
|
1737
|
-
alt?:
|
|
2400
|
+
alt?:
|
|
2401
|
+
string;
|
|
1738
2402
|
/** JSONP */
|
|
1739
|
-
callback?:
|
|
2403
|
+
callback?:
|
|
2404
|
+
string;
|
|
1740
2405
|
/** Selector specifying which fields to include in a partial response. */
|
|
1741
|
-
fields?:
|
|
2406
|
+
fields?:
|
|
2407
|
+
string;
|
|
1742
2408
|
/** Filter request. */
|
|
1743
|
-
filter?:
|
|
2409
|
+
filter?:
|
|
2410
|
+
string;
|
|
1744
2411
|
/** 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. */
|
|
1745
|
-
key?:
|
|
2412
|
+
key?:
|
|
2413
|
+
string;
|
|
1746
2414
|
/** OAuth 2.0 token for the current user. */
|
|
1747
|
-
oauth_token?:
|
|
2415
|
+
oauth_token?:
|
|
2416
|
+
string;
|
|
1748
2417
|
/** Order by fields for the result. */
|
|
1749
|
-
orderBy?:
|
|
2418
|
+
orderBy?:
|
|
2419
|
+
string;
|
|
1750
2420
|
/** Maximum number of streams to return. If unspecified, at most 50 streams will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000. */
|
|
1751
|
-
pageSize?:
|
|
2421
|
+
pageSize?:
|
|
2422
|
+
number;
|
|
1752
2423
|
/**
|
|
1753
2424
|
* Page token received from a previous `ListStreams` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListStreams` must match
|
|
1754
2425
|
* the call that provided the page token.
|
|
1755
2426
|
*/
|
|
1756
|
-
pageToken?:
|
|
2427
|
+
pageToken?:
|
|
2428
|
+
string;
|
|
1757
2429
|
/** Required. The parent that owns the collection of streams. */
|
|
1758
|
-
parent:
|
|
2430
|
+
parent:
|
|
2431
|
+
string;
|
|
1759
2432
|
/** Returns response with indentations and line breaks. */
|
|
1760
|
-
prettyPrint?:
|
|
2433
|
+
prettyPrint?:
|
|
2434
|
+
boolean;
|
|
1761
2435
|
/** 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?:
|
|
2436
|
+
quotaUser?:
|
|
2437
|
+
string;
|
|
1763
2438
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1764
|
-
upload_protocol?:
|
|
2439
|
+
upload_protocol?:
|
|
2440
|
+
string;
|
|
1765
2441
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1766
|
-
uploadType?:
|
|
2442
|
+
uploadType?:
|
|
2443
|
+
string;
|
|
1767
2444
|
}): Request<ListStreamsResponse>;
|
|
1768
2445
|
/** Use this method to update the configuration of a stream. */
|
|
1769
2446
|
patch(request: {
|
|
1770
2447
|
/** V1 error format. */
|
|
1771
|
-
"$.xgafv"?:
|
|
2448
|
+
"$.xgafv"?:
|
|
2449
|
+
string;
|
|
1772
2450
|
/** OAuth access token. */
|
|
1773
|
-
access_token?:
|
|
2451
|
+
access_token?:
|
|
2452
|
+
string;
|
|
1774
2453
|
/** Data format for response. */
|
|
1775
|
-
alt?:
|
|
2454
|
+
alt?:
|
|
2455
|
+
string;
|
|
1776
2456
|
/** JSONP */
|
|
1777
|
-
callback?:
|
|
2457
|
+
callback?:
|
|
2458
|
+
string;
|
|
1778
2459
|
/** Selector specifying which fields to include in a partial response. */
|
|
1779
|
-
fields?:
|
|
2460
|
+
fields?:
|
|
2461
|
+
string;
|
|
1780
2462
|
/** Optional. Execute the update without validating it. */
|
|
1781
|
-
force?:
|
|
2463
|
+
force?:
|
|
2464
|
+
boolean;
|
|
1782
2465
|
/** 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. */
|
|
1783
|
-
key?:
|
|
2466
|
+
key?:
|
|
2467
|
+
string;
|
|
1784
2468
|
/** Output only. The stream's name. */
|
|
1785
|
-
name:
|
|
2469
|
+
name:
|
|
2470
|
+
string;
|
|
1786
2471
|
/** OAuth 2.0 token for the current user. */
|
|
1787
|
-
oauth_token?:
|
|
2472
|
+
oauth_token?:
|
|
2473
|
+
string;
|
|
1788
2474
|
/** Returns response with indentations and line breaks. */
|
|
1789
|
-
prettyPrint?:
|
|
2475
|
+
prettyPrint?:
|
|
2476
|
+
boolean;
|
|
1790
2477
|
/** 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. */
|
|
1791
|
-
quotaUser?:
|
|
2478
|
+
quotaUser?:
|
|
2479
|
+
string;
|
|
1792
2480
|
/**
|
|
1793
2481
|
* Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
|
|
1794
2482
|
* been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the
|
|
@@ -1796,44 +2484,61 @@ declare namespace gapi.client {
|
|
|
1796
2484
|
* ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not
|
|
1797
2485
|
* supported (00000000-0000-0000-0000-000000000000).
|
|
1798
2486
|
*/
|
|
1799
|
-
requestId?:
|
|
2487
|
+
requestId?:
|
|
2488
|
+
string;
|
|
1800
2489
|
/**
|
|
1801
2490
|
* Optional. Field mask is used to specify the fields to be overwritten in the stream resource by the update. The fields specified in the update_mask are relative to the resource,
|
|
1802
2491
|
* not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten.
|
|
1803
2492
|
*/
|
|
1804
|
-
updateMask?:
|
|
2493
|
+
updateMask?:
|
|
2494
|
+
string;
|
|
1805
2495
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1806
|
-
upload_protocol?:
|
|
2496
|
+
upload_protocol?:
|
|
2497
|
+
string;
|
|
1807
2498
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1808
|
-
uploadType?:
|
|
2499
|
+
uploadType?:
|
|
2500
|
+
string;
|
|
1809
2501
|
/** Optional. Only validate the stream with the changes, without actually updating it. The default is false. */
|
|
1810
|
-
validateOnly?:
|
|
2502
|
+
validateOnly?:
|
|
2503
|
+
boolean;
|
|
1811
2504
|
/** Request body */
|
|
1812
|
-
resource:
|
|
2505
|
+
resource:
|
|
2506
|
+
Stream;
|
|
1813
2507
|
}): Request<Operation>;
|
|
1814
2508
|
patch(request: {
|
|
1815
2509
|
/** V1 error format. */
|
|
1816
|
-
"$.xgafv"?:
|
|
2510
|
+
"$.xgafv"?:
|
|
2511
|
+
string;
|
|
1817
2512
|
/** OAuth access token. */
|
|
1818
|
-
access_token?:
|
|
2513
|
+
access_token?:
|
|
2514
|
+
string;
|
|
1819
2515
|
/** Data format for response. */
|
|
1820
|
-
alt?:
|
|
2516
|
+
alt?:
|
|
2517
|
+
string;
|
|
1821
2518
|
/** JSONP */
|
|
1822
|
-
callback?:
|
|
2519
|
+
callback?:
|
|
2520
|
+
string;
|
|
1823
2521
|
/** Selector specifying which fields to include in a partial response. */
|
|
1824
|
-
fields?:
|
|
2522
|
+
fields?:
|
|
2523
|
+
string;
|
|
1825
2524
|
/** Optional. Execute the update without validating it. */
|
|
1826
|
-
force?:
|
|
2525
|
+
force?:
|
|
2526
|
+
boolean;
|
|
1827
2527
|
/** 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. */
|
|
1828
|
-
key?:
|
|
2528
|
+
key?:
|
|
2529
|
+
string;
|
|
1829
2530
|
/** Output only. The stream's name. */
|
|
1830
|
-
name:
|
|
2531
|
+
name:
|
|
2532
|
+
string;
|
|
1831
2533
|
/** OAuth 2.0 token for the current user. */
|
|
1832
|
-
oauth_token?:
|
|
2534
|
+
oauth_token?:
|
|
2535
|
+
string;
|
|
1833
2536
|
/** Returns response with indentations and line breaks. */
|
|
1834
|
-
prettyPrint?:
|
|
2537
|
+
prettyPrint?:
|
|
2538
|
+
boolean;
|
|
1835
2539
|
/** 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. */
|
|
1836
|
-
quotaUser?:
|
|
2540
|
+
quotaUser?:
|
|
2541
|
+
string;
|
|
1837
2542
|
/**
|
|
1838
2543
|
* Optional. A request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already
|
|
1839
2544
|
* been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the
|
|
@@ -1841,124 +2546,176 @@ declare namespace gapi.client {
|
|
|
1841
2546
|
* ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not
|
|
1842
2547
|
* supported (00000000-0000-0000-0000-000000000000).
|
|
1843
2548
|
*/
|
|
1844
|
-
requestId?:
|
|
2549
|
+
requestId?:
|
|
2550
|
+
string;
|
|
1845
2551
|
/**
|
|
1846
2552
|
* Optional. Field mask is used to specify the fields to be overwritten in the stream resource by the update. The fields specified in the update_mask are relative to the resource,
|
|
1847
2553
|
* not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten.
|
|
1848
2554
|
*/
|
|
1849
|
-
updateMask?:
|
|
2555
|
+
updateMask?:
|
|
2556
|
+
string;
|
|
1850
2557
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1851
|
-
upload_protocol?:
|
|
2558
|
+
upload_protocol?:
|
|
2559
|
+
string;
|
|
1852
2560
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1853
|
-
uploadType?:
|
|
2561
|
+
uploadType?:
|
|
2562
|
+
string;
|
|
1854
2563
|
/** Optional. Only validate the stream with the changes, without actually updating it. The default is false. */
|
|
1855
|
-
validateOnly?:
|
|
2564
|
+
validateOnly?:
|
|
2565
|
+
boolean;
|
|
1856
2566
|
},
|
|
1857
2567
|
body: Stream): Request<Operation>;
|
|
1858
|
-
objects:
|
|
2568
|
+
objects:
|
|
2569
|
+
ObjectsResource;
|
|
1859
2570
|
}
|
|
1860
2571
|
interface LocationsResource {
|
|
1861
2572
|
/** The FetchStaticIps API call exposes the static IP addresses used by Datastream. */
|
|
1862
2573
|
fetchStaticIps(request?: {
|
|
1863
2574
|
/** V1 error format. */
|
|
1864
|
-
"$.xgafv"?:
|
|
2575
|
+
"$.xgafv"?:
|
|
2576
|
+
string;
|
|
1865
2577
|
/** OAuth access token. */
|
|
1866
|
-
access_token?:
|
|
2578
|
+
access_token?:
|
|
2579
|
+
string;
|
|
1867
2580
|
/** Data format for response. */
|
|
1868
|
-
alt?:
|
|
2581
|
+
alt?:
|
|
2582
|
+
string;
|
|
1869
2583
|
/** JSONP */
|
|
1870
|
-
callback?:
|
|
2584
|
+
callback?:
|
|
2585
|
+
string;
|
|
1871
2586
|
/** Selector specifying which fields to include in a partial response. */
|
|
1872
|
-
fields?:
|
|
2587
|
+
fields?:
|
|
2588
|
+
string;
|
|
1873
2589
|
/** 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. */
|
|
1874
|
-
key?:
|
|
2590
|
+
key?:
|
|
2591
|
+
string;
|
|
1875
2592
|
/** Required. The name resource of the Response type. Must be in the format `projects/*/locations/*`. */
|
|
1876
|
-
name:
|
|
2593
|
+
name:
|
|
2594
|
+
string;
|
|
1877
2595
|
/** OAuth 2.0 token for the current user. */
|
|
1878
|
-
oauth_token?:
|
|
2596
|
+
oauth_token?:
|
|
2597
|
+
string;
|
|
1879
2598
|
/** Maximum number of Ips to return, will likely not be specified. */
|
|
1880
|
-
pageSize?:
|
|
2599
|
+
pageSize?:
|
|
2600
|
+
number;
|
|
1881
2601
|
/** A page token, received from a previous `ListStaticIps` call. will likely not be specified. */
|
|
1882
|
-
pageToken?:
|
|
2602
|
+
pageToken?:
|
|
2603
|
+
string;
|
|
1883
2604
|
/** Returns response with indentations and line breaks. */
|
|
1884
|
-
prettyPrint?:
|
|
2605
|
+
prettyPrint?:
|
|
2606
|
+
boolean;
|
|
1885
2607
|
/** 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. */
|
|
1886
|
-
quotaUser?:
|
|
2608
|
+
quotaUser?:
|
|
2609
|
+
string;
|
|
1887
2610
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1888
|
-
upload_protocol?:
|
|
2611
|
+
upload_protocol?:
|
|
2612
|
+
string;
|
|
1889
2613
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1890
|
-
uploadType?:
|
|
2614
|
+
uploadType?:
|
|
2615
|
+
string;
|
|
1891
2616
|
}): Request<FetchStaticIpsResponse>;
|
|
1892
2617
|
/** Gets information about a location. */
|
|
1893
2618
|
get(request?: {
|
|
1894
2619
|
/** V1 error format. */
|
|
1895
|
-
"$.xgafv"?:
|
|
2620
|
+
"$.xgafv"?:
|
|
2621
|
+
string;
|
|
1896
2622
|
/** OAuth access token. */
|
|
1897
|
-
access_token?:
|
|
2623
|
+
access_token?:
|
|
2624
|
+
string;
|
|
1898
2625
|
/** Data format for response. */
|
|
1899
|
-
alt?:
|
|
2626
|
+
alt?:
|
|
2627
|
+
string;
|
|
1900
2628
|
/** JSONP */
|
|
1901
|
-
callback?:
|
|
2629
|
+
callback?:
|
|
2630
|
+
string;
|
|
1902
2631
|
/** Selector specifying which fields to include in a partial response. */
|
|
1903
|
-
fields?:
|
|
2632
|
+
fields?:
|
|
2633
|
+
string;
|
|
1904
2634
|
/** 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. */
|
|
1905
|
-
key?:
|
|
2635
|
+
key?:
|
|
2636
|
+
string;
|
|
1906
2637
|
/** Resource name for the location. */
|
|
1907
|
-
name:
|
|
2638
|
+
name:
|
|
2639
|
+
string;
|
|
1908
2640
|
/** OAuth 2.0 token for the current user. */
|
|
1909
|
-
oauth_token?:
|
|
2641
|
+
oauth_token?:
|
|
2642
|
+
string;
|
|
1910
2643
|
/** Returns response with indentations and line breaks. */
|
|
1911
|
-
prettyPrint?:
|
|
2644
|
+
prettyPrint?:
|
|
2645
|
+
boolean;
|
|
1912
2646
|
/** 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. */
|
|
1913
|
-
quotaUser?:
|
|
2647
|
+
quotaUser?:
|
|
2648
|
+
string;
|
|
1914
2649
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1915
|
-
upload_protocol?:
|
|
2650
|
+
upload_protocol?:
|
|
2651
|
+
string;
|
|
1916
2652
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1917
|
-
uploadType?:
|
|
2653
|
+
uploadType?:
|
|
2654
|
+
string;
|
|
1918
2655
|
}): Request<Location>;
|
|
1919
2656
|
/** Lists information about the supported locations for this service. */
|
|
1920
2657
|
list(request?: {
|
|
1921
2658
|
/** V1 error format. */
|
|
1922
|
-
"$.xgafv"?:
|
|
2659
|
+
"$.xgafv"?:
|
|
2660
|
+
string;
|
|
1923
2661
|
/** OAuth access token. */
|
|
1924
|
-
access_token?:
|
|
2662
|
+
access_token?:
|
|
2663
|
+
string;
|
|
1925
2664
|
/** Data format for response. */
|
|
1926
|
-
alt?:
|
|
2665
|
+
alt?:
|
|
2666
|
+
string;
|
|
1927
2667
|
/** JSONP */
|
|
1928
|
-
callback?:
|
|
2668
|
+
callback?:
|
|
2669
|
+
string;
|
|
1929
2670
|
/** Selector specifying which fields to include in a partial response. */
|
|
1930
|
-
fields?:
|
|
2671
|
+
fields?:
|
|
2672
|
+
string;
|
|
1931
2673
|
/**
|
|
1932
2674
|
* 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
|
|
1933
2675
|
* [AIP-160](https://google.aip.dev/160).
|
|
1934
2676
|
*/
|
|
1935
|
-
filter?:
|
|
2677
|
+
filter?:
|
|
2678
|
+
string;
|
|
1936
2679
|
/** 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. */
|
|
1937
|
-
key?:
|
|
2680
|
+
key?:
|
|
2681
|
+
string;
|
|
1938
2682
|
/** The resource that owns the locations collection, if applicable. */
|
|
1939
|
-
name:
|
|
2683
|
+
name:
|
|
2684
|
+
string;
|
|
1940
2685
|
/** OAuth 2.0 token for the current user. */
|
|
1941
|
-
oauth_token?:
|
|
2686
|
+
oauth_token?:
|
|
2687
|
+
string;
|
|
1942
2688
|
/** The maximum number of results to return. If not set, the service selects a default. */
|
|
1943
|
-
pageSize?:
|
|
2689
|
+
pageSize?:
|
|
2690
|
+
number;
|
|
1944
2691
|
/** A page token received from the `next_page_token` field in the response. Send that page token to receive the subsequent page. */
|
|
1945
|
-
pageToken?:
|
|
2692
|
+
pageToken?:
|
|
2693
|
+
string;
|
|
1946
2694
|
/** Returns response with indentations and line breaks. */
|
|
1947
|
-
prettyPrint?:
|
|
2695
|
+
prettyPrint?:
|
|
2696
|
+
boolean;
|
|
1948
2697
|
/** 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. */
|
|
1949
|
-
quotaUser?:
|
|
2698
|
+
quotaUser?:
|
|
2699
|
+
string;
|
|
1950
2700
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1951
|
-
upload_protocol?:
|
|
2701
|
+
upload_protocol?:
|
|
2702
|
+
string;
|
|
1952
2703
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1953
|
-
uploadType?:
|
|
2704
|
+
uploadType?:
|
|
2705
|
+
string;
|
|
1954
2706
|
}): Request<ListLocationsResponse>;
|
|
1955
|
-
connectionProfiles:
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
2707
|
+
connectionProfiles:
|
|
2708
|
+
ConnectionProfilesResource;
|
|
2709
|
+
operations:
|
|
2710
|
+
OperationsResource;
|
|
2711
|
+
privateConnections:
|
|
2712
|
+
PrivateConnectionsResource;
|
|
2713
|
+
streams:
|
|
2714
|
+
StreamsResource;
|
|
1959
2715
|
}
|
|
1960
2716
|
interface ProjectsResource {
|
|
1961
|
-
locations:
|
|
2717
|
+
locations:
|
|
2718
|
+
LocationsResource;
|
|
1962
2719
|
}
|
|
1963
2720
|
|
|
1964
2721
|
const projects: ProjectsResource;
|