@maxim_mazurok/gapi.client.vault-v1 0.0.20230424 → 0.0.20230426

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/index.d.ts +1599 -800
  2. package/package.json +1 -1
  3. package/tests.ts +1 -1
package/index.d.ts CHANGED
@@ -9,7 +9,7 @@
9
9
  // This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
10
10
  // In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
11
11
  // Generated from: https://vault.googleapis.com/$discovery/rest?version=v1
12
- // Revision: 20230424
12
+ // Revision: 20230426
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -24,43 +24,56 @@ declare namespace gapi.client {
24
24
  namespace vault {
25
25
  interface AccountCount {
26
26
  /** Account owner. */
27
- account?: UserInfo;
27
+ account?:
28
+ UserInfo;
28
29
  /** The number of results (messages or files) found for this account. */
29
- count?: string;
30
+ count?:
31
+ string;
30
32
  }
31
33
  interface AccountCountError {
32
34
  /** Account owner. */
33
- account?: UserInfo;
35
+ account?:
36
+ UserInfo;
34
37
  /** Account query error. */
35
- errorType?: string;
38
+ errorType?:
39
+ string;
36
40
  }
37
41
  interface AccountInfo {
38
42
  /** A set of accounts to search. */
39
- emails?: string[];
43
+ emails?:
44
+ string[];
40
45
  }
41
46
  interface AddHeldAccountResult {
42
47
  /** Returned when the account was successfully created. */
43
- account?: HeldAccount;
48
+ account?:
49
+ HeldAccount;
44
50
  /** Reports the request status. If it failed, returns an error message. */
45
- status?: Status;
51
+ status?:
52
+ Status;
46
53
  }
47
54
  interface AddHeldAccountsRequest {
48
55
  /** A comma-separated list of the account IDs of the accounts to add to the hold. Specify either **emails** or **account_ids**, but not both. */
49
- accountIds?: string[];
56
+ accountIds?:
57
+ string[];
50
58
  /** A comma-separated list of the emails of the accounts to add to the hold. Specify either **emails** or **account_ids**, but not both. */
51
- emails?: string[];
59
+ emails?:
60
+ string[];
52
61
  }
53
62
  interface AddHeldAccountsResponse {
54
63
  /** The list of responses, in the same order as the batch request. */
55
- responses?: AddHeldAccountResult[];
64
+ responses?:
65
+ AddHeldAccountResult[];
56
66
  }
57
67
  interface AddMatterPermissionsRequest {
58
68
  /** Only relevant if **sendEmails** is **true**. To CC the requestor in the email message, set to **true**. To not CC requestor, set to **false**. */
59
- ccMe?: boolean;
69
+ ccMe?:
70
+ boolean;
60
71
  /** The account and its role to add. */
61
- matterPermission?: MatterPermission;
72
+ matterPermission?:
73
+ MatterPermission;
62
74
  /** To send a notification email to the added account, set to **true**. To not send a notification email, set to **false**. */
63
- sendEmails?: boolean;
75
+ sendEmails?:
76
+ boolean;
64
77
  }
65
78
  // tslint:disable-next-line:no-empty-interface
66
79
  interface CancelOperationRequest {
@@ -70,582 +83,795 @@ declare namespace gapi.client {
70
83
  }
71
84
  interface CloseMatterResponse {
72
85
  /** The updated matter, with state **CLOSED**. */
73
- matter?: Matter;
86
+ matter?:
87
+ Matter;
74
88
  }
75
89
  interface CloudStorageFile {
76
90
  /**
77
91
  * The name of the Cloud Storage bucket for the export file. You can use this value in the [Cloud Storage JSON or XML APIs](https://cloud.google.com/storage/docs/apis), but not to list
78
92
  * the bucket contents. Instead, you can [get individual export files](https://cloud.google.com/storage/docs/json_api/v1/objects/get) by object name.
79
93
  */
80
- bucketName?: string;
94
+ bucketName?:
95
+ string;
81
96
  /** The md5 hash of the file. */
82
- md5Hash?: string;
97
+ md5Hash?:
98
+ string;
83
99
  /** The name of the Cloud Storage object for the export file. You can use this value in the [Cloud Storage JSON or XML APIs](https://cloud.google.com/storage/docs/apis). */
84
- objectName?: string;
100
+ objectName?:
101
+ string;
85
102
  /** The export file size. */
86
- size?: string;
103
+ size?:
104
+ string;
87
105
  }
88
106
  interface CloudStorageSink {
89
107
  /** Output only. The exported files in Cloud Storage. */
90
- files?: CloudStorageFile[];
108
+ files?:
109
+ CloudStorageFile[];
91
110
  }
92
111
  interface CorpusQuery {
93
112
  /** Service-specific options for Drive holds. If set, **CorpusType** must be **DRIVE**. */
94
- driveQuery?: HeldDriveQuery;
113
+ driveQuery?:
114
+ HeldDriveQuery;
95
115
  /** Service-specific options for Groups holds. If set, **CorpusType** must be **GROUPS**. */
96
- groupsQuery?: HeldGroupsQuery;
116
+ groupsQuery?:
117
+ HeldGroupsQuery;
97
118
  /** Service-specific options for Chat holds. If set, **CorpusType** must be **HANGOUTS_CHAT**. */
98
- hangoutsChatQuery?: HeldHangoutsChatQuery;
119
+ hangoutsChatQuery?:
120
+ HeldHangoutsChatQuery;
99
121
  /** Service-specific options for Gmail holds. If set, **CorpusType** must be **MAIL**. */
100
- mailQuery?: HeldMailQuery;
122
+ mailQuery?:
123
+ HeldMailQuery;
101
124
  /** Service-specific options for Voice holds. If set, **CorpusType** must be **VOICE**. */
102
- voiceQuery?: HeldVoiceQuery;
125
+ voiceQuery?:
126
+ HeldVoiceQuery;
103
127
  }
104
128
  interface CountArtifactsMetadata {
105
129
  /** End time of count operation. Available when operation is done. */
106
- endTime?: string;
130
+ endTime?:
131
+ string;
107
132
  /** The matter ID of the associated matter. */
108
- matterId?: string;
133
+ matterId?:
134
+ string;
109
135
  /** The search query from the request. */
110
- query?: Query;
136
+ query?:
137
+ Query;
111
138
  /** Creation time of count operation. */
112
- startTime?: string;
139
+ startTime?:
140
+ string;
113
141
  }
114
142
  interface CountArtifactsRequest {
115
143
  /** The search query. */
116
- query?: Query;
144
+ query?:
145
+ Query;
117
146
  /** Sets the granularity of the count results. */
118
- view?: string;
147
+ view?:
148
+ string;
119
149
  }
120
150
  interface CountArtifactsResponse {
121
151
  /** Count metrics for Groups. */
122
- groupsCountResult?: GroupsCountResult;
152
+ groupsCountResult?:
153
+ GroupsCountResult;
123
154
  /** Count metrics for Gmail and classic Hangouts. */
124
- mailCountResult?: MailCountResult;
155
+ mailCountResult?:
156
+ MailCountResult;
125
157
  /** Total count of messages. */
126
- totalCount?: string;
158
+ totalCount?:
159
+ string;
127
160
  }
128
161
  interface DriveExportOptions {
129
162
  /** To include access level information for users with [indirect access](https://support.google.com/vault/answer/6099459#metadata) to files, set to **true**. */
130
- includeAccessInfo?: boolean;
163
+ includeAccessInfo?:
164
+ boolean;
131
165
  }
132
166
  interface DriveOptions {
133
167
  /**
134
168
  * Set whether the results include only content encrypted with [Google Workspace Client-side encryption](https://support.google.com/a?p=cse_ov) content, only unencrypted content, or
135
169
  * both. Defaults to both. Currently supported for Drive.
136
170
  */
137
- clientSideEncryptedOption?: string;
171
+ clientSideEncryptedOption?:
172
+ string;
138
173
  /** Set to **true** to include shared drives. */
139
- includeSharedDrives?: boolean;
174
+ includeSharedDrives?:
175
+ boolean;
140
176
  /** Set to true to include Team Drive. */
141
- includeTeamDrives?: boolean;
177
+ includeTeamDrives?:
178
+ boolean;
142
179
  /** Search the current version of the Drive file, but export the contents of the last version saved before 12:00 AM UTC on the specified date. Enter the date in UTC. */
143
- versionDate?: string;
180
+ versionDate?:
181
+ string;
144
182
  }
145
183
  // tslint:disable-next-line:no-empty-interface
146
184
  interface Empty {
147
185
  }
148
186
  interface Export {
149
187
  /** Output only. The sink for export files in Cloud Storage. */
150
- cloudStorageSink?: CloudStorageSink;
188
+ cloudStorageSink?:
189
+ CloudStorageSink;
151
190
  /** Output only. The time when the export was created. */
152
- createTime?: string;
191
+ createTime?:
192
+ string;
153
193
  /** Additional export options. */
154
- exportOptions?: ExportOptions;
194
+ exportOptions?:
195
+ ExportOptions;
155
196
  /** Output only. The generated export ID. */
156
- id?: string;
197
+ id?:
198
+ string;
157
199
  /** Output only. The matter ID. */
158
- matterId?: string;
200
+ matterId?:
201
+ string;
159
202
  /** The export name. Don't use special characters (~!$'(),;@:/?) in the name, they can prevent you from downloading exports. */
160
- name?: string;
203
+ name?:
204
+ string;
161
205
  /** The query parameters used to create the export. */
162
- query?: Query;
206
+ query?:
207
+ Query;
163
208
  /** Output only. The requester of the export. */
164
- requester?: UserInfo;
209
+ requester?:
210
+ UserInfo;
165
211
  /** Output only. Details about the export progress and size. */
166
- stats?: ExportStats;
212
+ stats?:
213
+ ExportStats;
167
214
  /** Output only. The status of the export. */
168
- status?: string;
215
+ status?:
216
+ string;
169
217
  }
170
218
  interface ExportOptions {
171
219
  /** Options for Drive exports. */
172
- driveOptions?: DriveExportOptions;
220
+ driveOptions?:
221
+ DriveExportOptions;
173
222
  /** Options for Groups exports. */
174
- groupsOptions?: GroupsExportOptions;
223
+ groupsOptions?:
224
+ GroupsExportOptions;
175
225
  /** Options for Chat exports. */
176
- hangoutsChatOptions?: HangoutsChatExportOptions;
226
+ hangoutsChatOptions?:
227
+ HangoutsChatExportOptions;
177
228
  /** Options for Gmail exports. */
178
- mailOptions?: MailExportOptions;
229
+ mailOptions?:
230
+ MailExportOptions;
179
231
  /** The requested data region for the export. */
180
- region?: string;
232
+ region?:
233
+ string;
181
234
  /** Options for Voice exports. */
182
- voiceOptions?: VoiceExportOptions;
235
+ voiceOptions?:
236
+ VoiceExportOptions;
183
237
  }
184
238
  interface ExportStats {
185
239
  /** The number of messages or files already processed for export. */
186
- exportedArtifactCount?: string;
240
+ exportedArtifactCount?:
241
+ string;
187
242
  /** The size of export in bytes. */
188
- sizeInBytes?: string;
243
+ sizeInBytes?:
244
+ string;
189
245
  /** The number of messages or files to be exported. */
190
- totalArtifactCount?: string;
246
+ totalArtifactCount?:
247
+ string;
191
248
  }
192
249
  interface GroupsCountResult {
193
250
  /** Error occurred when querying these accounts. */
194
- accountCountErrors?: AccountCountError[];
251
+ accountCountErrors?:
252
+ AccountCountError[];
195
253
  /** Subtotal count per matching account that have more than zero messages. */
196
- accountCounts?: AccountCount[];
254
+ accountCounts?:
255
+ AccountCount[];
197
256
  /** Total number of accounts that can be queried and have more than zero messages. */
198
- matchingAccountsCount?: string;
257
+ matchingAccountsCount?:
258
+ string;
199
259
  /** When **DataScope** is **HELD_DATA**, these accounts in the request are not queried because they are not on hold. For other data scope, this field is not set. */
200
- nonQueryableAccounts?: string[];
260
+ nonQueryableAccounts?:
261
+ string[];
201
262
  /** Total number of accounts involved in this count operation. */
202
- queriedAccountsCount?: string;
263
+ queriedAccountsCount?:
264
+ string;
203
265
  }
204
266
  interface GroupsExportOptions {
205
267
  /** The file format for exported messages. */
206
- exportFormat?: string;
268
+ exportFormat?:
269
+ string;
207
270
  }
208
271
  interface HangoutsChatExportOptions {
209
272
  /** The file format for exported messages. */
210
- exportFormat?: string;
273
+ exportFormat?:
274
+ string;
211
275
  }
212
276
  interface HangoutsChatInfo {
213
277
  /** A list of Chat spaces IDs, as provided by the [Chat API](https://developers.google.com/chat). There is a limit of exporting from 500 Chat spaces per request. */
214
- roomId?: string[];
278
+ roomId?:
279
+ string[];
215
280
  }
216
281
  interface HangoutsChatOptions {
217
282
  /** For searches by account or organizational unit, set to **true** to include rooms. */
218
- includeRooms?: boolean;
283
+ includeRooms?:
284
+ boolean;
219
285
  }
220
286
  interface HeldAccount {
221
287
  /** The account ID, as provided by the [Admin SDK](https://developers.google.com/admin-sdk/). */
222
- accountId?: string;
288
+ accountId?:
289
+ string;
223
290
  /** The primary email address of the account. If used as an input, this takes precedence over **accountId**. */
224
- email?: string;
291
+ email?:
292
+ string;
225
293
  /** Output only. The first name of the account holder. */
226
- firstName?: string;
294
+ firstName?:
295
+ string;
227
296
  /** Output only. When the account was put on hold. */
228
- holdTime?: string;
297
+ holdTime?:
298
+ string;
229
299
  /** Output only. The last name of the account holder. */
230
- lastName?: string;
300
+ lastName?:
301
+ string;
231
302
  }
232
303
  interface HeldDriveQuery {
233
304
  /** To include files in shared drives in the hold, set to **true**. */
234
- includeSharedDriveFiles?: boolean;
305
+ includeSharedDriveFiles?:
306
+ boolean;
235
307
  /** To include files in Team Drives in the hold, set to **true**. */
236
- includeTeamDriveFiles?: boolean;
308
+ includeTeamDriveFiles?:
309
+ boolean;
237
310
  }
238
311
  interface HeldGroupsQuery {
239
312
  /** The end time for the query. Specify in GMT. The value is rounded to 12 AM on the specified date. */
240
- endTime?: string;
313
+ endTime?:
314
+ string;
241
315
  /** The start time for the query. Specify in GMT. The value is rounded to 12 AM on the specified date. */
242
- startTime?: string;
316
+ startTime?:
317
+ string;
243
318
  /** The [search operators](https://support.google.com/vault/answer/2474474) used to refine the messages covered by the hold. */
244
- terms?: string;
319
+ terms?:
320
+ string;
245
321
  }
246
322
  interface HeldHangoutsChatQuery {
247
323
  /** To include messages in Chat spaces the user was a member of, set to **true**. */
248
- includeRooms?: boolean;
324
+ includeRooms?:
325
+ boolean;
249
326
  }
250
327
  interface HeldMailQuery {
251
328
  /** The end time for the query. Specify in GMT. The value is rounded to 12 AM on the specified date. */
252
- endTime?: string;
329
+ endTime?:
330
+ string;
253
331
  /** The start time for the query. Specify in GMT. The value is rounded to 12 AM on the specified date. */
254
- startTime?: string;
332
+ startTime?:
333
+ string;
255
334
  /** The [search operators](https://support.google.com/vault/answer/2474474) used to refine the messages covered by the hold. */
256
- terms?: string;
335
+ terms?:
336
+ string;
257
337
  }
258
338
  interface HeldOrgUnit {
259
339
  /** When the organizational unit was put on hold. This property is immutable. */
260
- holdTime?: string;
340
+ holdTime?:
341
+ string;
261
342
  /** The organizational unit's immutable ID as provided by the [Admin SDK](https://developers.google.com/admin-sdk/). */
262
- orgUnitId?: string;
343
+ orgUnitId?:
344
+ string;
263
345
  }
264
346
  interface HeldVoiceQuery {
265
347
  /** A list of data types covered by the hold. Should be non-empty. Order does not matter and duplicates are ignored. */
266
- coveredData?: string[];
348
+ coveredData?:
349
+ string[];
267
350
  }
268
351
  interface Hold {
269
352
  /** If set, the hold applies to the specified accounts and **orgUnit** must be empty. */
270
- accounts?: HeldAccount[];
353
+ accounts?:
354
+ HeldAccount[];
271
355
  /** The service to be searched. */
272
- corpus?: string;
356
+ corpus?:
357
+ string;
273
358
  /** The unique immutable ID of the hold. Assigned during creation. */
274
- holdId?: string;
359
+ holdId?:
360
+ string;
275
361
  /** The name of the hold. */
276
- name?: string;
362
+ name?:
363
+ string;
277
364
  /** If set, the hold applies to all members of the organizational unit and **accounts** must be empty. This property is mutable. For Groups holds, set **accounts**. */
278
- orgUnit?: HeldOrgUnit;
365
+ orgUnit?:
366
+ HeldOrgUnit;
279
367
  /** Service-specific options. If set, **CorpusQuery** must match **CorpusType**. */
280
- query?: CorpusQuery;
368
+ query?:
369
+ CorpusQuery;
281
370
  /** The last time this hold was modified. */
282
- updateTime?: string;
371
+ updateTime?:
372
+ string;
283
373
  }
284
374
  interface ListExportsResponse {
285
375
  /** The list of exports. */
286
- exports?: Export[];
376
+ exports?:
377
+ Export[];
287
378
  /** Page token to retrieve the next page of results in the list. */
288
- nextPageToken?: string;
379
+ nextPageToken?:
380
+ string;
289
381
  }
290
382
  interface ListHeldAccountsResponse {
291
383
  /** The held accounts on a hold. */
292
- accounts?: HeldAccount[];
384
+ accounts?:
385
+ HeldAccount[];
293
386
  }
294
387
  interface ListHoldsResponse {
295
388
  /** The list of holds. */
296
- holds?: Hold[];
389
+ holds?:
390
+ Hold[];
297
391
  /** Page token to retrieve the next page of results in the list. If this is empty, then there are no more holds to list. */
298
- nextPageToken?: string;
392
+ nextPageToken?:
393
+ string;
299
394
  }
300
395
  interface ListMattersResponse {
301
396
  /** List of matters. */
302
- matters?: Matter[];
397
+ matters?:
398
+ Matter[];
303
399
  /** Page token to retrieve the next page of results in the list. */
304
- nextPageToken?: string;
400
+ nextPageToken?:
401
+ string;
305
402
  }
306
403
  interface ListOperationsResponse {
307
404
  /** The standard List next-page token. */
308
- nextPageToken?: string;
405
+ nextPageToken?:
406
+ string;
309
407
  /** A list of operations that matches the specified filter in the request. */
310
- operations?: Operation[];
408
+ operations?:
409
+ Operation[];
311
410
  }
312
411
  interface ListSavedQueriesResponse {
313
412
  /** Page token to retrieve the next page of results in the list. If this is empty, then there are no more saved queries to list. */
314
- nextPageToken?: string;
413
+ nextPageToken?:
414
+ string;
315
415
  /** List of saved queries. */
316
- savedQueries?: SavedQuery[];
416
+ savedQueries?:
417
+ SavedQuery[];
317
418
  }
318
419
  interface MailCountResult {
319
420
  /** Errors occurred when querying these accounts. */
320
- accountCountErrors?: AccountCountError[];
421
+ accountCountErrors?:
422
+ AccountCountError[];
321
423
  /** Subtotal count per matching account that have more than zero messages. */
322
- accountCounts?: AccountCount[];
424
+ accountCounts?:
425
+ AccountCount[];
323
426
  /** Total number of accounts that can be queried and have more than zero messages. */
324
- matchingAccountsCount?: string;
427
+ matchingAccountsCount?:
428
+ string;
325
429
  /**
326
430
  * When **DataScope** is **HELD_DATA** and when account emails are passed in explicitly, the list of accounts in the request that are not queried because they are not on hold in the
327
431
  * matter. For other data scopes, this field is not set.
328
432
  */
329
- nonQueryableAccounts?: string[];
433
+ nonQueryableAccounts?:
434
+ string[];
330
435
  /** Total number of accounts involved in this count operation. */
331
- queriedAccountsCount?: string;
436
+ queriedAccountsCount?:
437
+ string;
332
438
  }
333
439
  interface MailExportOptions {
334
440
  /** The file format for exported messages. */
335
- exportFormat?: string;
441
+ exportFormat?:
442
+ string;
336
443
  /** To export confidential mode content, set to **true**. */
337
- showConfidentialModeContent?: boolean;
444
+ showConfidentialModeContent?:
445
+ boolean;
338
446
  /** To use the new export system, set to **true**. */
339
- useNewExport?: boolean;
447
+ useNewExport?:
448
+ boolean;
340
449
  }
341
450
  interface MailOptions {
342
451
  /** Specifies whether the results should include encrypted content, unencrypted content, or both. Defaults to including both. */
343
- clientSideEncryptedOption?: string;
452
+ clientSideEncryptedOption?:
453
+ string;
344
454
  /** Set to **true** to exclude drafts. */
345
- excludeDrafts?: boolean;
455
+ excludeDrafts?:
456
+ boolean;
346
457
  }
347
458
  interface Matter {
348
459
  /** An optional description for the matter. */
349
- description?: string;
460
+ description?:
461
+ string;
350
462
  /** The matter ID, which is generated by the server. Leave blank when creating a matter. */
351
- matterId?: string;
463
+ matterId?:
464
+ string;
352
465
  /** Lists the users and their permission for the matter. Currently there is no programmer defined limit on the number of permissions a matter can have. */
353
- matterPermissions?: MatterPermission[];
466
+ matterPermissions?:
467
+ MatterPermission[];
354
468
  /** The name of the matter. */
355
- name?: string;
469
+ name?:
470
+ string;
356
471
  /** The state of the matter. */
357
- state?: string;
472
+ state?:
473
+ string;
358
474
  }
359
475
  interface MatterPermission {
360
476
  /** The account ID, as provided by the [Admin SDK](https://developers.google.com/admin-sdk/). */
361
- accountId?: string;
477
+ accountId?:
478
+ string;
362
479
  /** The user's role for the matter. */
363
- role?: string;
480
+ role?:
481
+ string;
364
482
  }
365
483
  interface Operation {
366
484
  /** 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. */
367
- done?: boolean;
485
+ done?:
486
+ boolean;
368
487
  /** The error result of the operation in case of failure or cancellation. */
369
- error?: Status;
488
+ error?:
489
+ Status;
370
490
  /**
371
491
  * 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
372
492
  * metadata. Any method that returns a long-running operation should document the metadata type, if any.
373
493
  */
374
- metadata?: { [P in string]: any };
494
+ metadata?:
495
+ { [P in string]: any };
375
496
  /**
376
497
  * 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
377
498
  * with `operations/{unique_id}`.
378
499
  */
379
- name?: string;
500
+ name?:
501
+ string;
380
502
  /**
381
503
  * 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
382
504
  * 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
383
505
  * original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
384
506
  */
385
- response?: { [P in string]: any };
507
+ response?:
508
+ { [P in string]: any };
386
509
  }
387
510
  interface OrgUnitInfo {
388
511
  /** The name of the organizational unit to search, as provided by the [Admin SDK Directory API](https://developers.google.com/admin-sdk/directory/). */
389
- orgUnitId?: string;
512
+ orgUnitId?:
513
+ string;
390
514
  }
391
515
  interface Query {
392
516
  /** Required when **SearchMethod** is **ACCOUNT**. */
393
- accountInfo?: AccountInfo;
517
+ accountInfo?:
518
+ AccountInfo;
394
519
  /** The Google Workspace service to search. */
395
- corpus?: string;
520
+ corpus?:
521
+ string;
396
522
  /** The data source to search. */
397
- dataScope?: string;
523
+ dataScope?:
524
+ string;
398
525
  /** Set Drive search-specific options. */
399
- driveOptions?: DriveOptions;
526
+ driveOptions?:
527
+ DriveOptions;
400
528
  /** The end time for the search query. Specify in GMT. The value is rounded to 12 AM on the specified date. */
401
- endTime?: string;
529
+ endTime?:
530
+ string;
402
531
  /** Required when **SearchMethod** is **ROOM**. (read-only) */
403
- hangoutsChatInfo?: HangoutsChatInfo;
532
+ hangoutsChatInfo?:
533
+ HangoutsChatInfo;
404
534
  /** Set Chat search-specific options. (read-only) */
405
- hangoutsChatOptions?: HangoutsChatOptions;
535
+ hangoutsChatOptions?:
536
+ HangoutsChatOptions;
406
537
  /** Set Gmail search-specific options. */
407
- mailOptions?: MailOptions;
538
+ mailOptions?:
539
+ MailOptions;
408
540
  /** The entity to search. This field replaces **searchMethod** to support shared drives. When **searchMethod** is **TEAM_DRIVE**, the response of this field is **SHARED_DRIVE**. */
409
- method?: string;
541
+ method?:
542
+ string;
410
543
  /** Required when **SearchMethod** is **ORG_UNIT**. */
411
- orgUnitInfo?: OrgUnitInfo;
544
+ orgUnitInfo?:
545
+ OrgUnitInfo;
412
546
  /** The search method to use. */
413
- searchMethod?: string;
547
+ searchMethod?:
548
+ string;
414
549
  /** Required when **SearchMethod** is **SHARED_DRIVE**. */
415
- sharedDriveInfo?: SharedDriveInfo;
550
+ sharedDriveInfo?:
551
+ SharedDriveInfo;
416
552
  /** Required when **SearchMethod** is **SITES_URL**. */
417
- sitesUrlInfo?: SitesUrlInfo;
553
+ sitesUrlInfo?:
554
+ SitesUrlInfo;
418
555
  /** The start time for the search query. Specify in GMT. The value is rounded to 12 AM on the specified date. */
419
- startTime?: string;
556
+ startTime?:
557
+ string;
420
558
  /** Required when **SearchMethod** is **TEAM_DRIVE**. */
421
- teamDriveInfo?: TeamDriveInfo;
559
+ teamDriveInfo?:
560
+ TeamDriveInfo;
422
561
  /** Service-specific [search operators](https://support.google.com/vault/answer/2474474) to filter search results. */
423
- terms?: string;
562
+ terms?:
563
+ string;
424
564
  /**
425
565
  * The time zone name. It should be an IANA TZ name, such as "America/Los_Angeles". For a list of time zone names, see [Time
426
566
  * Zone](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). For more information about how Vault uses time zones, see [the Vault help
427
567
  * center](https://support.google.com/vault/answer/6092995#time).
428
568
  */
429
- timeZone?: string;
569
+ timeZone?:
570
+ string;
430
571
  /** Set Voice search-specific options. */
431
- voiceOptions?: VoiceOptions;
572
+ voiceOptions?:
573
+ VoiceOptions;
432
574
  }
433
575
  interface RemoveHeldAccountsRequest {
434
576
  /** The account IDs of the accounts to remove from the hold. */
435
- accountIds?: string[];
577
+ accountIds?:
578
+ string[];
436
579
  }
437
580
  interface RemoveHeldAccountsResponse {
438
581
  /** A list of statuses for the deleted accounts. Results have the same order as the request. */
439
- statuses?: Status[];
582
+ statuses?:
583
+ Status[];
440
584
  }
441
585
  interface RemoveMatterPermissionsRequest {
442
586
  /** The account ID. */
443
- accountId?: string;
587
+ accountId?:
588
+ string;
444
589
  }
445
590
  // tslint:disable-next-line:no-empty-interface
446
591
  interface ReopenMatterRequest {
447
592
  }
448
593
  interface ReopenMatterResponse {
449
594
  /** The updated matter, with state **OPEN**. */
450
- matter?: Matter;
595
+ matter?:
596
+ Matter;
451
597
  }
452
598
  interface SavedQuery {
453
599
  /** Output only. The server-generated timestamp when the saved query was created. */
454
- createTime?: string;
600
+ createTime?:
601
+ string;
455
602
  /** The name of the saved query. */
456
- displayName?: string;
603
+ displayName?:
604
+ string;
457
605
  /** Output only. The matter ID of the matter the saved query is saved in. The server does not use this field during create and always uses matter ID in the URL. */
458
- matterId?: string;
606
+ matterId?:
607
+ string;
459
608
  /** The search parameters of the saved query. */
460
- query?: Query;
609
+ query?:
610
+ Query;
461
611
  /** A unique identifier for the saved query. */
462
- savedQueryId?: string;
612
+ savedQueryId?:
613
+ string;
463
614
  }
464
615
  interface SharedDriveInfo {
465
616
  /** A list of shared drive IDs, as provided by the [Drive API](https://developers.google.com/drive). */
466
- sharedDriveIds?: string[];
617
+ sharedDriveIds?:
618
+ string[];
467
619
  }
468
620
  interface SitesUrlInfo {
469
621
  /** A list of published site URLs. */
470
- urls?: string[];
622
+ urls?:
623
+ string[];
471
624
  }
472
625
  interface Status {
473
626
  /** The status code, which should be an enum value of google.rpc.Code. */
474
- code?: number;
627
+ code?:
628
+ number;
475
629
  /** A list of messages that carry the error details. There is a common set of message types for APIs to use. */
476
- details?: Array<{ [P in string]: any }>;
630
+ details?:
631
+ Array<{ [P in string]: any }>;
477
632
  /**
478
633
  * 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
479
634
  * client.
480
635
  */
481
- message?: string;
636
+ message?:
637
+ string;
482
638
  }
483
639
  interface TeamDriveInfo {
484
640
  /** List of Team Drive IDs, as provided by the [Drive API](https://developers.google.com/drive). */
485
- teamDriveIds?: string[];
641
+ teamDriveIds?:
642
+ string[];
486
643
  }
487
644
  // tslint:disable-next-line:no-empty-interface
488
645
  interface UndeleteMatterRequest {
489
646
  }
490
647
  interface UserInfo {
491
648
  /** The displayed name of the user. */
492
- displayName?: string;
649
+ displayName?:
650
+ string;
493
651
  /** The email address of the user. */
494
- email?: string;
652
+ email?:
653
+ string;
495
654
  }
496
655
  interface VoiceExportOptions {
497
656
  /** The file format for exported text messages. */
498
- exportFormat?: string;
657
+ exportFormat?:
658
+ string;
499
659
  }
500
660
  interface VoiceOptions {
501
661
  /** Datatypes to search */
502
- coveredData?: string[];
662
+ coveredData?:
663
+ string[];
503
664
  }
504
665
  interface ExportsResource {
505
666
  /** Creates an export. */
506
667
  create(request: {
507
668
  /** V1 error format. */
508
- "$.xgafv"?: string;
669
+ "$.xgafv"?:
670
+ string;
509
671
  /** OAuth access token. */
510
- access_token?: string;
672
+ access_token?:
673
+ string;
511
674
  /** Data format for response. */
512
- alt?: string;
675
+ alt?:
676
+ string;
513
677
  /** JSONP */
514
- callback?: string;
678
+ callback?:
679
+ string;
515
680
  /** Selector specifying which fields to include in a partial response. */
516
- fields?: string;
681
+ fields?:
682
+ string;
517
683
  /** 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. */
518
- key?: string;
684
+ key?:
685
+ string;
519
686
  /** The matter ID. */
520
- matterId: string;
687
+ matterId:
688
+ string;
521
689
  /** OAuth 2.0 token for the current user. */
522
- oauth_token?: string;
690
+ oauth_token?:
691
+ string;
523
692
  /** Returns response with indentations and line breaks. */
524
- prettyPrint?: boolean;
693
+ prettyPrint?:
694
+ boolean;
525
695
  /** 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. */
526
- quotaUser?: string;
696
+ quotaUser?:
697
+ string;
527
698
  /** Upload protocol for media (e.g. "raw", "multipart"). */
528
- upload_protocol?: string;
699
+ upload_protocol?:
700
+ string;
529
701
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
530
- uploadType?: string;
702
+ uploadType?:
703
+ string;
531
704
  /** Request body */
532
- resource: Export;
705
+ resource:
706
+ Export;
533
707
  }): Request<Export>;
534
708
  create(request: {
535
709
  /** V1 error format. */
536
- "$.xgafv"?: string;
710
+ "$.xgafv"?:
711
+ string;
537
712
  /** OAuth access token. */
538
- access_token?: string;
713
+ access_token?:
714
+ string;
539
715
  /** Data format for response. */
540
- alt?: string;
716
+ alt?:
717
+ string;
541
718
  /** JSONP */
542
- callback?: string;
719
+ callback?:
720
+ string;
543
721
  /** Selector specifying which fields to include in a partial response. */
544
- fields?: string;
722
+ fields?:
723
+ string;
545
724
  /** 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. */
546
- key?: string;
725
+ key?:
726
+ string;
547
727
  /** The matter ID. */
548
- matterId: string;
728
+ matterId:
729
+ string;
549
730
  /** OAuth 2.0 token for the current user. */
550
- oauth_token?: string;
731
+ oauth_token?:
732
+ string;
551
733
  /** Returns response with indentations and line breaks. */
552
- prettyPrint?: boolean;
734
+ prettyPrint?:
735
+ boolean;
553
736
  /** 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. */
554
- quotaUser?: string;
737
+ quotaUser?:
738
+ string;
555
739
  /** Upload protocol for media (e.g. "raw", "multipart"). */
556
- upload_protocol?: string;
740
+ upload_protocol?:
741
+ string;
557
742
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
558
- uploadType?: string;
743
+ uploadType?:
744
+ string;
559
745
  },
560
746
  body: Export): Request<Export>;
561
747
  /** Deletes an export. */
562
748
  delete(request?: {
563
749
  /** V1 error format. */
564
- "$.xgafv"?: string;
750
+ "$.xgafv"?:
751
+ string;
565
752
  /** OAuth access token. */
566
- access_token?: string;
753
+ access_token?:
754
+ string;
567
755
  /** Data format for response. */
568
- alt?: string;
756
+ alt?:
757
+ string;
569
758
  /** JSONP */
570
- callback?: string;
759
+ callback?:
760
+ string;
571
761
  /** The export ID. */
572
- exportId: string;
762
+ exportId:
763
+ string;
573
764
  /** Selector specifying which fields to include in a partial response. */
574
- fields?: string;
765
+ fields?:
766
+ string;
575
767
  /** 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. */
576
- key?: string;
768
+ key?:
769
+ string;
577
770
  /** The matter ID. */
578
- matterId: string;
771
+ matterId:
772
+ string;
579
773
  /** OAuth 2.0 token for the current user. */
580
- oauth_token?: string;
774
+ oauth_token?:
775
+ string;
581
776
  /** Returns response with indentations and line breaks. */
582
- prettyPrint?: boolean;
777
+ prettyPrint?:
778
+ boolean;
583
779
  /** 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. */
584
- quotaUser?: string;
780
+ quotaUser?:
781
+ string;
585
782
  /** Upload protocol for media (e.g. "raw", "multipart"). */
586
- upload_protocol?: string;
783
+ upload_protocol?:
784
+ string;
587
785
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
588
- uploadType?: string;
786
+ uploadType?:
787
+ string;
589
788
  }): Request<{}>;
590
789
  /** Gets an export. */
591
790
  get(request?: {
592
791
  /** V1 error format. */
593
- "$.xgafv"?: string;
792
+ "$.xgafv"?:
793
+ string;
594
794
  /** OAuth access token. */
595
- access_token?: string;
795
+ access_token?:
796
+ string;
596
797
  /** Data format for response. */
597
- alt?: string;
798
+ alt?:
799
+ string;
598
800
  /** JSONP */
599
- callback?: string;
801
+ callback?:
802
+ string;
600
803
  /** The export ID. */
601
- exportId: string;
804
+ exportId:
805
+ string;
602
806
  /** Selector specifying which fields to include in a partial response. */
603
- fields?: string;
807
+ fields?:
808
+ string;
604
809
  /** 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. */
605
- key?: string;
810
+ key?:
811
+ string;
606
812
  /** The matter ID. */
607
- matterId: string;
813
+ matterId:
814
+ string;
608
815
  /** OAuth 2.0 token for the current user. */
609
- oauth_token?: string;
816
+ oauth_token?:
817
+ string;
610
818
  /** Returns response with indentations and line breaks. */
611
- prettyPrint?: boolean;
819
+ prettyPrint?:
820
+ boolean;
612
821
  /** 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. */
613
- quotaUser?: string;
822
+ quotaUser?:
823
+ string;
614
824
  /** Upload protocol for media (e.g. "raw", "multipart"). */
615
- upload_protocol?: string;
825
+ upload_protocol?:
826
+ string;
616
827
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
617
- uploadType?: string;
828
+ uploadType?:
829
+ string;
618
830
  }): Request<Export>;
619
831
  /** Lists details about the exports in the specified matter. */
620
832
  list(request?: {
621
833
  /** V1 error format. */
622
- "$.xgafv"?: string;
834
+ "$.xgafv"?:
835
+ string;
623
836
  /** OAuth access token. */
624
- access_token?: string;
837
+ access_token?:
838
+ string;
625
839
  /** Data format for response. */
626
- alt?: string;
840
+ alt?:
841
+ string;
627
842
  /** JSONP */
628
- callback?: string;
843
+ callback?:
844
+ string;
629
845
  /** Selector specifying which fields to include in a partial response. */
630
- fields?: string;
846
+ fields?:
847
+ string;
631
848
  /** 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. */
632
- key?: string;
849
+ key?:
850
+ string;
633
851
  /** The matter ID. */
634
- matterId: string;
852
+ matterId:
853
+ string;
635
854
  /** OAuth 2.0 token for the current user. */
636
- oauth_token?: string;
855
+ oauth_token?:
856
+ string;
637
857
  /** The number of exports to return in the response. */
638
- pageSize?: number;
858
+ pageSize?:
859
+ number;
639
860
  /** The pagination token as returned in the response. */
640
- pageToken?: string;
861
+ pageToken?:
862
+ string;
641
863
  /** Returns response with indentations and line breaks. */
642
- prettyPrint?: boolean;
864
+ prettyPrint?:
865
+ boolean;
643
866
  /** 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. */
644
- quotaUser?: string;
867
+ quotaUser?:
868
+ string;
645
869
  /** Upload protocol for media (e.g. "raw", "multipart"). */
646
- upload_protocol?: string;
870
+ upload_protocol?:
871
+ string;
647
872
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
648
- uploadType?: string;
873
+ uploadType?:
874
+ string;
649
875
  }): Request<ListExportsResponse>;
650
876
  }
651
877
  interface AccountsResource {
@@ -655,93 +881,134 @@ declare namespace gapi.client {
655
881
  */
656
882
  create(request: {
657
883
  /** V1 error format. */
658
- "$.xgafv"?: string;
884
+ "$.xgafv"?:
885
+ string;
659
886
  /** OAuth access token. */
660
- access_token?: string;
887
+ access_token?:
888
+ string;
661
889
  /** Data format for response. */
662
- alt?: string;
890
+ alt?:
891
+ string;
663
892
  /** JSONP */
664
- callback?: string;
893
+ callback?:
894
+ string;
665
895
  /** Selector specifying which fields to include in a partial response. */
666
- fields?: string;
896
+ fields?:
897
+ string;
667
898
  /** The hold ID. */
668
- holdId: string;
899
+ holdId:
900
+ string;
669
901
  /** 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. */
670
- key?: string;
902
+ key?:
903
+ string;
671
904
  /** The matter ID. */
672
- matterId: string;
905
+ matterId:
906
+ string;
673
907
  /** OAuth 2.0 token for the current user. */
674
- oauth_token?: string;
908
+ oauth_token?:
909
+ string;
675
910
  /** Returns response with indentations and line breaks. */
676
- prettyPrint?: boolean;
911
+ prettyPrint?:
912
+ boolean;
677
913
  /** 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. */
678
- quotaUser?: string;
914
+ quotaUser?:
915
+ string;
679
916
  /** Upload protocol for media (e.g. "raw", "multipart"). */
680
- upload_protocol?: string;
917
+ upload_protocol?:
918
+ string;
681
919
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
682
- uploadType?: string;
920
+ uploadType?:
921
+ string;
683
922
  /** Request body */
684
- resource: HeldAccount;
923
+ resource:
924
+ HeldAccount;
685
925
  }): Request<HeldAccount>;
686
926
  create(request: {
687
927
  /** V1 error format. */
688
- "$.xgafv"?: string;
928
+ "$.xgafv"?:
929
+ string;
689
930
  /** OAuth access token. */
690
- access_token?: string;
931
+ access_token?:
932
+ string;
691
933
  /** Data format for response. */
692
- alt?: string;
934
+ alt?:
935
+ string;
693
936
  /** JSONP */
694
- callback?: string;
937
+ callback?:
938
+ string;
695
939
  /** Selector specifying which fields to include in a partial response. */
696
- fields?: string;
940
+ fields?:
941
+ string;
697
942
  /** The hold ID. */
698
- holdId: string;
943
+ holdId:
944
+ string;
699
945
  /** 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. */
700
- key?: string;
946
+ key?:
947
+ string;
701
948
  /** The matter ID. */
702
- matterId: string;
949
+ matterId:
950
+ string;
703
951
  /** OAuth 2.0 token for the current user. */
704
- oauth_token?: string;
952
+ oauth_token?:
953
+ string;
705
954
  /** Returns response with indentations and line breaks. */
706
- prettyPrint?: boolean;
955
+ prettyPrint?:
956
+ boolean;
707
957
  /** 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. */
708
- quotaUser?: string;
958
+ quotaUser?:
959
+ string;
709
960
  /** Upload protocol for media (e.g. "raw", "multipart"). */
710
- upload_protocol?: string;
961
+ upload_protocol?:
962
+ string;
711
963
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
712
- uploadType?: string;
964
+ uploadType?:
965
+ string;
713
966
  },
714
967
  body: HeldAccount): Request<HeldAccount>;
715
968
  /** Removes an account from a hold. */
716
969
  delete(request?: {
717
970
  /** V1 error format. */
718
- "$.xgafv"?: string;
971
+ "$.xgafv"?:
972
+ string;
719
973
  /** OAuth access token. */
720
- access_token?: string;
974
+ access_token?:
975
+ string;
721
976
  /** The ID of the account to remove from the hold. */
722
- accountId: string;
977
+ accountId:
978
+ string;
723
979
  /** Data format for response. */
724
- alt?: string;
980
+ alt?:
981
+ string;
725
982
  /** JSONP */
726
- callback?: string;
983
+ callback?:
984
+ string;
727
985
  /** Selector specifying which fields to include in a partial response. */
728
- fields?: string;
986
+ fields?:
987
+ string;
729
988
  /** The hold ID. */
730
- holdId: string;
989
+ holdId:
990
+ string;
731
991
  /** 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. */
732
- key?: string;
992
+ key?:
993
+ string;
733
994
  /** The matter ID. */
734
- matterId: string;
995
+ matterId:
996
+ string;
735
997
  /** OAuth 2.0 token for the current user. */
736
- oauth_token?: string;
998
+ oauth_token?:
999
+ string;
737
1000
  /** Returns response with indentations and line breaks. */
738
- prettyPrint?: boolean;
1001
+ prettyPrint?:
1002
+ boolean;
739
1003
  /** 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. */
740
- quotaUser?: string;
1004
+ quotaUser?:
1005
+ string;
741
1006
  /** Upload protocol for media (e.g. "raw", "multipart"). */
742
- upload_protocol?: string;
1007
+ upload_protocol?:
1008
+ string;
743
1009
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
744
- uploadType?: string;
1010
+ uploadType?:
1011
+ string;
745
1012
  }): Request<{}>;
746
1013
  /**
747
1014
  * Lists the accounts covered by a hold. This can list only individually-specified accounts covered by the hold. If the hold covers an organizational unit, use the [Admin
@@ -749,301 +1016,435 @@ declare namespace gapi.client {
749
1016
  */
750
1017
  list(request?: {
751
1018
  /** V1 error format. */
752
- "$.xgafv"?: string;
1019
+ "$.xgafv"?:
1020
+ string;
753
1021
  /** OAuth access token. */
754
- access_token?: string;
1022
+ access_token?:
1023
+ string;
755
1024
  /** Data format for response. */
756
- alt?: string;
1025
+ alt?:
1026
+ string;
757
1027
  /** JSONP */
758
- callback?: string;
1028
+ callback?:
1029
+ string;
759
1030
  /** Selector specifying which fields to include in a partial response. */
760
- fields?: string;
1031
+ fields?:
1032
+ string;
761
1033
  /** The hold ID. */
762
- holdId: string;
1034
+ holdId:
1035
+ string;
763
1036
  /** 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. */
764
- key?: string;
1037
+ key?:
1038
+ string;
765
1039
  /** The matter ID. */
766
- matterId: string;
1040
+ matterId:
1041
+ string;
767
1042
  /** OAuth 2.0 token for the current user. */
768
- oauth_token?: string;
1043
+ oauth_token?:
1044
+ string;
769
1045
  /** Returns response with indentations and line breaks. */
770
- prettyPrint?: boolean;
1046
+ prettyPrint?:
1047
+ boolean;
771
1048
  /** 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. */
772
- quotaUser?: string;
1049
+ quotaUser?:
1050
+ string;
773
1051
  /** Upload protocol for media (e.g. "raw", "multipart"). */
774
- upload_protocol?: string;
1052
+ upload_protocol?:
1053
+ string;
775
1054
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
776
- uploadType?: string;
1055
+ uploadType?:
1056
+ string;
777
1057
  }): Request<ListHeldAccountsResponse>;
778
1058
  }
779
1059
  interface HoldsResource {
780
1060
  /** Adds accounts to a hold. Returns a list of accounts that have been successfully added. Accounts can be added only to an existing account-based hold. */
781
1061
  addHeldAccounts(request: {
782
1062
  /** V1 error format. */
783
- "$.xgafv"?: string;
1063
+ "$.xgafv"?:
1064
+ string;
784
1065
  /** OAuth access token. */
785
- access_token?: string;
1066
+ access_token?:
1067
+ string;
786
1068
  /** Data format for response. */
787
- alt?: string;
1069
+ alt?:
1070
+ string;
788
1071
  /** JSONP */
789
- callback?: string;
1072
+ callback?:
1073
+ string;
790
1074
  /** Selector specifying which fields to include in a partial response. */
791
- fields?: string;
1075
+ fields?:
1076
+ string;
792
1077
  /** The hold ID. */
793
- holdId: string;
1078
+ holdId:
1079
+ string;
794
1080
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
795
- key?: string;
1081
+ key?:
1082
+ string;
796
1083
  /** The matter ID. */
797
- matterId: string;
1084
+ matterId:
1085
+ string;
798
1086
  /** OAuth 2.0 token for the current user. */
799
- oauth_token?: string;
1087
+ oauth_token?:
1088
+ string;
800
1089
  /** Returns response with indentations and line breaks. */
801
- prettyPrint?: boolean;
1090
+ prettyPrint?:
1091
+ boolean;
802
1092
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
803
- quotaUser?: string;
1093
+ quotaUser?:
1094
+ string;
804
1095
  /** Upload protocol for media (e.g. "raw", "multipart"). */
805
- upload_protocol?: string;
1096
+ upload_protocol?:
1097
+ string;
806
1098
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
807
- uploadType?: string;
1099
+ uploadType?:
1100
+ string;
808
1101
  /** Request body */
809
- resource: AddHeldAccountsRequest;
1102
+ resource:
1103
+ AddHeldAccountsRequest;
810
1104
  }): Request<AddHeldAccountsResponse>;
811
1105
  addHeldAccounts(request: {
812
1106
  /** V1 error format. */
813
- "$.xgafv"?: string;
1107
+ "$.xgafv"?:
1108
+ string;
814
1109
  /** OAuth access token. */
815
- access_token?: string;
1110
+ access_token?:
1111
+ string;
816
1112
  /** Data format for response. */
817
- alt?: string;
1113
+ alt?:
1114
+ string;
818
1115
  /** JSONP */
819
- callback?: string;
1116
+ callback?:
1117
+ string;
820
1118
  /** Selector specifying which fields to include in a partial response. */
821
- fields?: string;
1119
+ fields?:
1120
+ string;
822
1121
  /** The hold ID. */
823
- holdId: string;
1122
+ holdId:
1123
+ string;
824
1124
  /** 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. */
825
- key?: string;
1125
+ key?:
1126
+ string;
826
1127
  /** The matter ID. */
827
- matterId: string;
1128
+ matterId:
1129
+ string;
828
1130
  /** OAuth 2.0 token for the current user. */
829
- oauth_token?: string;
1131
+ oauth_token?:
1132
+ string;
830
1133
  /** Returns response with indentations and line breaks. */
831
- prettyPrint?: boolean;
1134
+ prettyPrint?:
1135
+ boolean;
832
1136
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
833
- quotaUser?: string;
1137
+ quotaUser?:
1138
+ string;
834
1139
  /** Upload protocol for media (e.g. "raw", "multipart"). */
835
- upload_protocol?: string;
1140
+ upload_protocol?:
1141
+ string;
836
1142
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
837
- uploadType?: string;
1143
+ uploadType?:
1144
+ string;
838
1145
  },
839
1146
  body: AddHeldAccountsRequest): Request<AddHeldAccountsResponse>;
840
1147
  /** Creates a hold in the specified matter. */
841
1148
  create(request: {
842
1149
  /** V1 error format. */
843
- "$.xgafv"?: string;
1150
+ "$.xgafv"?:
1151
+ string;
844
1152
  /** OAuth access token. */
845
- access_token?: string;
1153
+ access_token?:
1154
+ string;
846
1155
  /** Data format for response. */
847
- alt?: string;
1156
+ alt?:
1157
+ string;
848
1158
  /** JSONP */
849
- callback?: string;
1159
+ callback?:
1160
+ string;
850
1161
  /** Selector specifying which fields to include in a partial response. */
851
- fields?: string;
1162
+ fields?:
1163
+ string;
852
1164
  /** 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. */
853
- key?: string;
1165
+ key?:
1166
+ string;
854
1167
  /** The matter ID. */
855
- matterId: string;
1168
+ matterId:
1169
+ string;
856
1170
  /** OAuth 2.0 token for the current user. */
857
- oauth_token?: string;
1171
+ oauth_token?:
1172
+ string;
858
1173
  /** Returns response with indentations and line breaks. */
859
- prettyPrint?: boolean;
1174
+ prettyPrint?:
1175
+ boolean;
860
1176
  /** 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. */
861
- quotaUser?: string;
1177
+ quotaUser?:
1178
+ string;
862
1179
  /** Upload protocol for media (e.g. "raw", "multipart"). */
863
- upload_protocol?: string;
1180
+ upload_protocol?:
1181
+ string;
864
1182
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
865
- uploadType?: string;
1183
+ uploadType?:
1184
+ string;
866
1185
  /** Request body */
867
- resource: Hold;
1186
+ resource:
1187
+ Hold;
868
1188
  }): Request<Hold>;
869
1189
  create(request: {
870
1190
  /** V1 error format. */
871
- "$.xgafv"?: string;
1191
+ "$.xgafv"?:
1192
+ string;
872
1193
  /** OAuth access token. */
873
- access_token?: string;
1194
+ access_token?:
1195
+ string;
874
1196
  /** Data format for response. */
875
- alt?: string;
1197
+ alt?:
1198
+ string;
876
1199
  /** JSONP */
877
- callback?: string;
1200
+ callback?:
1201
+ string;
878
1202
  /** Selector specifying which fields to include in a partial response. */
879
- fields?: string;
1203
+ fields?:
1204
+ string;
880
1205
  /** 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. */
881
- key?: string;
1206
+ key?:
1207
+ string;
882
1208
  /** The matter ID. */
883
- matterId: string;
1209
+ matterId:
1210
+ string;
884
1211
  /** OAuth 2.0 token for the current user. */
885
- oauth_token?: string;
1212
+ oauth_token?:
1213
+ string;
886
1214
  /** Returns response with indentations and line breaks. */
887
- prettyPrint?: boolean;
1215
+ prettyPrint?:
1216
+ boolean;
888
1217
  /** 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. */
889
- quotaUser?: string;
1218
+ quotaUser?:
1219
+ string;
890
1220
  /** Upload protocol for media (e.g. "raw", "multipart"). */
891
- upload_protocol?: string;
1221
+ upload_protocol?:
1222
+ string;
892
1223
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
893
- uploadType?: string;
1224
+ uploadType?:
1225
+ string;
894
1226
  },
895
1227
  body: Hold): Request<Hold>;
896
1228
  /** Removes the specified hold and releases the accounts or organizational unit covered by the hold. If the data is not preserved by another hold or retention rule, it might be purged. */
897
1229
  delete(request?: {
898
1230
  /** V1 error format. */
899
- "$.xgafv"?: string;
1231
+ "$.xgafv"?:
1232
+ string;
900
1233
  /** OAuth access token. */
901
- access_token?: string;
1234
+ access_token?:
1235
+ string;
902
1236
  /** Data format for response. */
903
- alt?: string;
1237
+ alt?:
1238
+ string;
904
1239
  /** JSONP */
905
- callback?: string;
1240
+ callback?:
1241
+ string;
906
1242
  /** Selector specifying which fields to include in a partial response. */
907
- fields?: string;
1243
+ fields?:
1244
+ string;
908
1245
  /** The hold ID. */
909
- holdId: string;
1246
+ holdId:
1247
+ string;
910
1248
  /** 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?: string;
1249
+ key?:
1250
+ string;
912
1251
  /** The matter ID. */
913
- matterId: string;
1252
+ matterId:
1253
+ string;
914
1254
  /** OAuth 2.0 token for the current user. */
915
- oauth_token?: string;
1255
+ oauth_token?:
1256
+ string;
916
1257
  /** Returns response with indentations and line breaks. */
917
- prettyPrint?: boolean;
1258
+ prettyPrint?:
1259
+ boolean;
918
1260
  /** 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?: string;
1261
+ quotaUser?:
1262
+ string;
920
1263
  /** Upload protocol for media (e.g. "raw", "multipart"). */
921
- upload_protocol?: string;
1264
+ upload_protocol?:
1265
+ string;
922
1266
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
923
- uploadType?: string;
1267
+ uploadType?:
1268
+ string;
924
1269
  }): Request<{}>;
925
1270
  /** Gets the specified hold. */
926
1271
  get(request?: {
927
1272
  /** V1 error format. */
928
- "$.xgafv"?: string;
1273
+ "$.xgafv"?:
1274
+ string;
929
1275
  /** OAuth access token. */
930
- access_token?: string;
1276
+ access_token?:
1277
+ string;
931
1278
  /** Data format for response. */
932
- alt?: string;
1279
+ alt?:
1280
+ string;
933
1281
  /** JSONP */
934
- callback?: string;
1282
+ callback?:
1283
+ string;
935
1284
  /** Selector specifying which fields to include in a partial response. */
936
- fields?: string;
1285
+ fields?:
1286
+ string;
937
1287
  /** The hold ID. */
938
- holdId: string;
1288
+ holdId:
1289
+ string;
939
1290
  /** 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. */
940
- key?: string;
1291
+ key?:
1292
+ string;
941
1293
  /** The matter ID. */
942
- matterId: string;
1294
+ matterId:
1295
+ string;
943
1296
  /** OAuth 2.0 token for the current user. */
944
- oauth_token?: string;
1297
+ oauth_token?:
1298
+ string;
945
1299
  /** Returns response with indentations and line breaks. */
946
- prettyPrint?: boolean;
1300
+ prettyPrint?:
1301
+ boolean;
947
1302
  /** 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. */
948
- quotaUser?: string;
1303
+ quotaUser?:
1304
+ string;
949
1305
  /** Upload protocol for media (e.g. "raw", "multipart"). */
950
- upload_protocol?: string;
1306
+ upload_protocol?:
1307
+ string;
951
1308
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
952
- uploadType?: string;
1309
+ uploadType?:
1310
+ string;
953
1311
  /** The amount of detail to return for a hold. */
954
- view?: string;
1312
+ view?:
1313
+ string;
955
1314
  }): Request<Hold>;
956
1315
  /** Lists the holds in a matter. */
957
1316
  list(request?: {
958
1317
  /** V1 error format. */
959
- "$.xgafv"?: string;
1318
+ "$.xgafv"?:
1319
+ string;
960
1320
  /** OAuth access token. */
961
- access_token?: string;
1321
+ access_token?:
1322
+ string;
962
1323
  /** Data format for response. */
963
- alt?: string;
1324
+ alt?:
1325
+ string;
964
1326
  /** JSONP */
965
- callback?: string;
1327
+ callback?:
1328
+ string;
966
1329
  /** Selector specifying which fields to include in a partial response. */
967
- fields?: string;
1330
+ fields?:
1331
+ string;
968
1332
  /** 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. */
969
- key?: string;
1333
+ key?:
1334
+ string;
970
1335
  /** The matter ID. */
971
- matterId: string;
1336
+ matterId:
1337
+ string;
972
1338
  /** OAuth 2.0 token for the current user. */
973
- oauth_token?: string;
1339
+ oauth_token?:
1340
+ string;
974
1341
  /** The number of holds to return in the response, between 0 and 100 inclusive. Leaving this empty, or as 0, is the same as **page_size** = 100. */
975
- pageSize?: number;
1342
+ pageSize?:
1343
+ number;
976
1344
  /** The pagination token as returned in the response. An empty token means start from the beginning. */
977
- pageToken?: string;
1345
+ pageToken?:
1346
+ string;
978
1347
  /** Returns response with indentations and line breaks. */
979
- prettyPrint?: boolean;
1348
+ prettyPrint?:
1349
+ boolean;
980
1350
  /** 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. */
981
- quotaUser?: string;
1351
+ quotaUser?:
1352
+ string;
982
1353
  /** Upload protocol for media (e.g. "raw", "multipart"). */
983
- upload_protocol?: string;
1354
+ upload_protocol?:
1355
+ string;
984
1356
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
985
- uploadType?: string;
1357
+ uploadType?:
1358
+ string;
986
1359
  /** The amount of detail to return for a hold. */
987
- view?: string;
1360
+ view?:
1361
+ string;
988
1362
  }): Request<ListHoldsResponse>;
989
1363
  /** Removes the specified accounts from a hold. Returns a list of statuses in the same order as the request. */
990
1364
  removeHeldAccounts(request: {
991
1365
  /** V1 error format. */
992
- "$.xgafv"?: string;
1366
+ "$.xgafv"?:
1367
+ string;
993
1368
  /** OAuth access token. */
994
- access_token?: string;
1369
+ access_token?:
1370
+ string;
995
1371
  /** Data format for response. */
996
- alt?: string;
1372
+ alt?:
1373
+ string;
997
1374
  /** JSONP */
998
- callback?: string;
1375
+ callback?:
1376
+ string;
999
1377
  /** Selector specifying which fields to include in a partial response. */
1000
- fields?: string;
1378
+ fields?:
1379
+ string;
1001
1380
  /** The hold ID. */
1002
- holdId: string;
1381
+ holdId:
1382
+ string;
1003
1383
  /** 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. */
1004
- key?: string;
1384
+ key?:
1385
+ string;
1005
1386
  /** The matter ID. */
1006
- matterId: string;
1387
+ matterId:
1388
+ string;
1007
1389
  /** OAuth 2.0 token for the current user. */
1008
- oauth_token?: string;
1390
+ oauth_token?:
1391
+ string;
1009
1392
  /** Returns response with indentations and line breaks. */
1010
- prettyPrint?: boolean;
1393
+ prettyPrint?:
1394
+ boolean;
1011
1395
  /** 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. */
1012
- quotaUser?: string;
1396
+ quotaUser?:
1397
+ string;
1013
1398
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1014
- upload_protocol?: string;
1399
+ upload_protocol?:
1400
+ string;
1015
1401
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1016
- uploadType?: string;
1402
+ uploadType?:
1403
+ string;
1017
1404
  /** Request body */
1018
- resource: RemoveHeldAccountsRequest;
1405
+ resource:
1406
+ RemoveHeldAccountsRequest;
1019
1407
  }): Request<RemoveHeldAccountsResponse>;
1020
1408
  removeHeldAccounts(request: {
1021
1409
  /** V1 error format. */
1022
- "$.xgafv"?: string;
1410
+ "$.xgafv"?:
1411
+ string;
1023
1412
  /** OAuth access token. */
1024
- access_token?: string;
1413
+ access_token?:
1414
+ string;
1025
1415
  /** Data format for response. */
1026
- alt?: string;
1416
+ alt?:
1417
+ string;
1027
1418
  /** JSONP */
1028
- callback?: string;
1419
+ callback?:
1420
+ string;
1029
1421
  /** Selector specifying which fields to include in a partial response. */
1030
- fields?: string;
1422
+ fields?:
1423
+ string;
1031
1424
  /** The hold ID. */
1032
- holdId: string;
1425
+ holdId:
1426
+ string;
1033
1427
  /** 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. */
1034
- key?: string;
1428
+ key?:
1429
+ string;
1035
1430
  /** The matter ID. */
1036
- matterId: string;
1431
+ matterId:
1432
+ string;
1037
1433
  /** OAuth 2.0 token for the current user. */
1038
- oauth_token?: string;
1434
+ oauth_token?:
1435
+ string;
1039
1436
  /** Returns response with indentations and line breaks. */
1040
- prettyPrint?: boolean;
1437
+ prettyPrint?:
1438
+ boolean;
1041
1439
  /** 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. */
1042
- quotaUser?: string;
1440
+ quotaUser?:
1441
+ string;
1043
1442
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1044
- upload_protocol?: string;
1443
+ upload_protocol?:
1444
+ string;
1045
1445
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1046
- uploadType?: string;
1446
+ uploadType?:
1447
+ string;
1047
1448
  },
1048
1449
  body: RemoveHeldAccountsRequest): Request<RemoveHeldAccountsResponse>;
1049
1450
  /**
@@ -1052,688 +1453,994 @@ declare namespace gapi.client {
1052
1453
  */
1053
1454
  update(request: {
1054
1455
  /** V1 error format. */
1055
- "$.xgafv"?: string;
1456
+ "$.xgafv"?:
1457
+ string;
1056
1458
  /** OAuth access token. */
1057
- access_token?: string;
1459
+ access_token?:
1460
+ string;
1058
1461
  /** Data format for response. */
1059
- alt?: string;
1462
+ alt?:
1463
+ string;
1060
1464
  /** JSONP */
1061
- callback?: string;
1465
+ callback?:
1466
+ string;
1062
1467
  /** Selector specifying which fields to include in a partial response. */
1063
- fields?: string;
1468
+ fields?:
1469
+ string;
1064
1470
  /** The ID of the hold. */
1065
- holdId: string;
1471
+ holdId:
1472
+ string;
1066
1473
  /** 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. */
1067
- key?: string;
1474
+ key?:
1475
+ string;
1068
1476
  /** The matter ID. */
1069
- matterId: string;
1477
+ matterId:
1478
+ string;
1070
1479
  /** OAuth 2.0 token for the current user. */
1071
- oauth_token?: string;
1480
+ oauth_token?:
1481
+ string;
1072
1482
  /** Returns response with indentations and line breaks. */
1073
- prettyPrint?: boolean;
1483
+ prettyPrint?:
1484
+ boolean;
1074
1485
  /** 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. */
1075
- quotaUser?: string;
1486
+ quotaUser?:
1487
+ string;
1076
1488
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1077
- upload_protocol?: string;
1489
+ upload_protocol?:
1490
+ string;
1078
1491
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1079
- uploadType?: string;
1492
+ uploadType?:
1493
+ string;
1080
1494
  /** Request body */
1081
- resource: Hold;
1495
+ resource:
1496
+ Hold;
1082
1497
  }): Request<Hold>;
1083
1498
  update(request: {
1084
1499
  /** V1 error format. */
1085
- "$.xgafv"?: string;
1500
+ "$.xgafv"?:
1501
+ string;
1086
1502
  /** OAuth access token. */
1087
- access_token?: string;
1503
+ access_token?:
1504
+ string;
1088
1505
  /** Data format for response. */
1089
- alt?: string;
1506
+ alt?:
1507
+ string;
1090
1508
  /** JSONP */
1091
- callback?: string;
1509
+ callback?:
1510
+ string;
1092
1511
  /** Selector specifying which fields to include in a partial response. */
1093
- fields?: string;
1512
+ fields?:
1513
+ string;
1094
1514
  /** The ID of the hold. */
1095
- holdId: string;
1515
+ holdId:
1516
+ string;
1096
1517
  /** 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?: string;
1518
+ key?:
1519
+ string;
1098
1520
  /** The matter ID. */
1099
- matterId: string;
1521
+ matterId:
1522
+ string;
1100
1523
  /** OAuth 2.0 token for the current user. */
1101
- oauth_token?: string;
1524
+ oauth_token?:
1525
+ string;
1102
1526
  /** Returns response with indentations and line breaks. */
1103
- prettyPrint?: boolean;
1527
+ prettyPrint?:
1528
+ boolean;
1104
1529
  /** 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?: string;
1530
+ quotaUser?:
1531
+ string;
1106
1532
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1107
- upload_protocol?: string;
1533
+ upload_protocol?:
1534
+ string;
1108
1535
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1109
- uploadType?: string;
1536
+ uploadType?:
1537
+ string;
1110
1538
  },
1111
1539
  body: Hold): Request<Hold>;
1112
- accounts: AccountsResource;
1540
+ accounts:
1541
+ AccountsResource;
1113
1542
  }
1114
1543
  interface SavedQueriesResource {
1115
1544
  /** Creates a saved query. */
1116
1545
  create(request: {
1117
1546
  /** V1 error format. */
1118
- "$.xgafv"?: string;
1547
+ "$.xgafv"?:
1548
+ string;
1119
1549
  /** OAuth access token. */
1120
- access_token?: string;
1550
+ access_token?:
1551
+ string;
1121
1552
  /** Data format for response. */
1122
- alt?: string;
1553
+ alt?:
1554
+ string;
1123
1555
  /** JSONP */
1124
- callback?: string;
1556
+ callback?:
1557
+ string;
1125
1558
  /** Selector specifying which fields to include in a partial response. */
1126
- fields?: string;
1559
+ fields?:
1560
+ string;
1127
1561
  /** 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. */
1128
- key?: string;
1562
+ key?:
1563
+ string;
1129
1564
  /** The ID of the matter to create the saved query in. */
1130
- matterId: string;
1565
+ matterId:
1566
+ string;
1131
1567
  /** OAuth 2.0 token for the current user. */
1132
- oauth_token?: string;
1568
+ oauth_token?:
1569
+ string;
1133
1570
  /** Returns response with indentations and line breaks. */
1134
- prettyPrint?: boolean;
1571
+ prettyPrint?:
1572
+ boolean;
1135
1573
  /** 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. */
1136
- quotaUser?: string;
1574
+ quotaUser?:
1575
+ string;
1137
1576
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1138
- upload_protocol?: string;
1577
+ upload_protocol?:
1578
+ string;
1139
1579
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1140
- uploadType?: string;
1580
+ uploadType?:
1581
+ string;
1141
1582
  /** Request body */
1142
- resource: SavedQuery;
1583
+ resource:
1584
+ SavedQuery;
1143
1585
  }): Request<SavedQuery>;
1144
1586
  create(request: {
1145
1587
  /** V1 error format. */
1146
- "$.xgafv"?: string;
1588
+ "$.xgafv"?:
1589
+ string;
1147
1590
  /** OAuth access token. */
1148
- access_token?: string;
1591
+ access_token?:
1592
+ string;
1149
1593
  /** Data format for response. */
1150
- alt?: string;
1594
+ alt?:
1595
+ string;
1151
1596
  /** JSONP */
1152
- callback?: string;
1597
+ callback?:
1598
+ string;
1153
1599
  /** Selector specifying which fields to include in a partial response. */
1154
- fields?: string;
1600
+ fields?:
1601
+ string;
1155
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. */
1156
- key?: string;
1603
+ key?:
1604
+ string;
1157
1605
  /** The ID of the matter to create the saved query in. */
1158
- matterId: string;
1606
+ matterId:
1607
+ string;
1159
1608
  /** OAuth 2.0 token for the current user. */
1160
- oauth_token?: string;
1609
+ oauth_token?:
1610
+ string;
1161
1611
  /** Returns response with indentations and line breaks. */
1162
- prettyPrint?: boolean;
1612
+ prettyPrint?:
1613
+ boolean;
1163
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. */
1164
- quotaUser?: string;
1615
+ quotaUser?:
1616
+ string;
1165
1617
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1166
- upload_protocol?: string;
1618
+ upload_protocol?:
1619
+ string;
1167
1620
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1168
- uploadType?: string;
1621
+ uploadType?:
1622
+ string;
1169
1623
  },
1170
1624
  body: SavedQuery): Request<SavedQuery>;
1171
1625
  /** Deletes the specified saved query. */
1172
1626
  delete(request?: {
1173
1627
  /** V1 error format. */
1174
- "$.xgafv"?: string;
1628
+ "$.xgafv"?:
1629
+ string;
1175
1630
  /** OAuth access token. */
1176
- access_token?: string;
1631
+ access_token?:
1632
+ string;
1177
1633
  /** Data format for response. */
1178
- alt?: string;
1634
+ alt?:
1635
+ string;
1179
1636
  /** JSONP */
1180
- callback?: string;
1637
+ callback?:
1638
+ string;
1181
1639
  /** Selector specifying which fields to include in a partial response. */
1182
- fields?: string;
1640
+ fields?:
1641
+ string;
1183
1642
  /** 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. */
1184
- key?: string;
1643
+ key?:
1644
+ string;
1185
1645
  /** The ID of the matter to delete the saved query from. */
1186
- matterId: string;
1646
+ matterId:
1647
+ string;
1187
1648
  /** OAuth 2.0 token for the current user. */
1188
- oauth_token?: string;
1649
+ oauth_token?:
1650
+ string;
1189
1651
  /** Returns response with indentations and line breaks. */
1190
- prettyPrint?: boolean;
1652
+ prettyPrint?:
1653
+ boolean;
1191
1654
  /** 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. */
1192
- quotaUser?: string;
1655
+ quotaUser?:
1656
+ string;
1193
1657
  /** ID of the saved query to delete. */
1194
- savedQueryId: string;
1658
+ savedQueryId:
1659
+ string;
1195
1660
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1196
- upload_protocol?: string;
1661
+ upload_protocol?:
1662
+ string;
1197
1663
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1198
- uploadType?: string;
1664
+ uploadType?:
1665
+ string;
1199
1666
  }): Request<{}>;
1200
1667
  /** Retrieves the specified saved query. */
1201
1668
  get(request?: {
1202
1669
  /** V1 error format. */
1203
- "$.xgafv"?: string;
1670
+ "$.xgafv"?:
1671
+ string;
1204
1672
  /** OAuth access token. */
1205
- access_token?: string;
1673
+ access_token?:
1674
+ string;
1206
1675
  /** Data format for response. */
1207
- alt?: string;
1676
+ alt?:
1677
+ string;
1208
1678
  /** JSONP */
1209
- callback?: string;
1679
+ callback?:
1680
+ string;
1210
1681
  /** Selector specifying which fields to include in a partial response. */
1211
- fields?: string;
1682
+ fields?:
1683
+ string;
1212
1684
  /** 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. */
1213
- key?: string;
1685
+ key?:
1686
+ string;
1214
1687
  /** The ID of the matter to get the saved query from. */
1215
- matterId: string;
1688
+ matterId:
1689
+ string;
1216
1690
  /** OAuth 2.0 token for the current user. */
1217
- oauth_token?: string;
1691
+ oauth_token?:
1692
+ string;
1218
1693
  /** Returns response with indentations and line breaks. */
1219
- prettyPrint?: boolean;
1694
+ prettyPrint?:
1695
+ boolean;
1220
1696
  /** 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. */
1221
- quotaUser?: string;
1697
+ quotaUser?:
1698
+ string;
1222
1699
  /** ID of the saved query to retrieve. */
1223
- savedQueryId: string;
1700
+ savedQueryId:
1701
+ string;
1224
1702
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1225
- upload_protocol?: string;
1703
+ upload_protocol?:
1704
+ string;
1226
1705
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1227
- uploadType?: string;
1706
+ uploadType?:
1707
+ string;
1228
1708
  }): Request<SavedQuery>;
1229
1709
  /** Lists the saved queries in a matter. */
1230
1710
  list(request?: {
1231
1711
  /** V1 error format. */
1232
- "$.xgafv"?: string;
1712
+ "$.xgafv"?:
1713
+ string;
1233
1714
  /** OAuth access token. */
1234
- access_token?: string;
1715
+ access_token?:
1716
+ string;
1235
1717
  /** Data format for response. */
1236
- alt?: string;
1718
+ alt?:
1719
+ string;
1237
1720
  /** JSONP */
1238
- callback?: string;
1721
+ callback?:
1722
+ string;
1239
1723
  /** Selector specifying which fields to include in a partial response. */
1240
- fields?: string;
1724
+ fields?:
1725
+ string;
1241
1726
  /** 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. */
1242
- key?: string;
1727
+ key?:
1728
+ string;
1243
1729
  /** The ID of the matter to get the saved queries for. */
1244
- matterId: string;
1730
+ matterId:
1731
+ string;
1245
1732
  /** OAuth 2.0 token for the current user. */
1246
- oauth_token?: string;
1733
+ oauth_token?:
1734
+ string;
1247
1735
  /** The maximum number of saved queries to return. */
1248
- pageSize?: number;
1736
+ pageSize?:
1737
+ number;
1249
1738
  /** The pagination token as returned in the previous response. An empty token means start from the beginning. */
1250
- pageToken?: string;
1739
+ pageToken?:
1740
+ string;
1251
1741
  /** Returns response with indentations and line breaks. */
1252
- prettyPrint?: boolean;
1742
+ prettyPrint?:
1743
+ boolean;
1253
1744
  /** 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. */
1254
- quotaUser?: string;
1745
+ quotaUser?:
1746
+ string;
1255
1747
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1256
- upload_protocol?: string;
1748
+ upload_protocol?:
1749
+ string;
1257
1750
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1258
- uploadType?: string;
1751
+ uploadType?:
1752
+ string;
1259
1753
  }): Request<ListSavedQueriesResponse>;
1260
1754
  }
1261
1755
  interface MattersResource {
1262
1756
  /** Adds an account as a matter collaborator. */
1263
1757
  addPermissions(request: {
1264
1758
  /** V1 error format. */
1265
- "$.xgafv"?: string;
1759
+ "$.xgafv"?:
1760
+ string;
1266
1761
  /** OAuth access token. */
1267
- access_token?: string;
1762
+ access_token?:
1763
+ string;
1268
1764
  /** Data format for response. */
1269
- alt?: string;
1765
+ alt?:
1766
+ string;
1270
1767
  /** JSONP */
1271
- callback?: string;
1768
+ callback?:
1769
+ string;
1272
1770
  /** Selector specifying which fields to include in a partial response. */
1273
- fields?: string;
1771
+ fields?:
1772
+ string;
1274
1773
  /** 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. */
1275
- key?: string;
1774
+ key?:
1775
+ string;
1276
1776
  /** The matter ID. */
1277
- matterId: string;
1777
+ matterId:
1778
+ string;
1278
1779
  /** OAuth 2.0 token for the current user. */
1279
- oauth_token?: string;
1780
+ oauth_token?:
1781
+ string;
1280
1782
  /** Returns response with indentations and line breaks. */
1281
- prettyPrint?: boolean;
1783
+ prettyPrint?:
1784
+ boolean;
1282
1785
  /** 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. */
1283
- quotaUser?: string;
1786
+ quotaUser?:
1787
+ string;
1284
1788
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1285
- upload_protocol?: string;
1789
+ upload_protocol?:
1790
+ string;
1286
1791
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1287
- uploadType?: string;
1792
+ uploadType?:
1793
+ string;
1288
1794
  /** Request body */
1289
- resource: AddMatterPermissionsRequest;
1795
+ resource:
1796
+ AddMatterPermissionsRequest;
1290
1797
  }): Request<MatterPermission>;
1291
1798
  addPermissions(request: {
1292
1799
  /** V1 error format. */
1293
- "$.xgafv"?: string;
1800
+ "$.xgafv"?:
1801
+ string;
1294
1802
  /** OAuth access token. */
1295
- access_token?: string;
1803
+ access_token?:
1804
+ string;
1296
1805
  /** Data format for response. */
1297
- alt?: string;
1806
+ alt?:
1807
+ string;
1298
1808
  /** JSONP */
1299
- callback?: string;
1809
+ callback?:
1810
+ string;
1300
1811
  /** Selector specifying which fields to include in a partial response. */
1301
- fields?: string;
1812
+ fields?:
1813
+ string;
1302
1814
  /** 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. */
1303
- key?: string;
1815
+ key?:
1816
+ string;
1304
1817
  /** The matter ID. */
1305
- matterId: string;
1818
+ matterId:
1819
+ string;
1306
1820
  /** OAuth 2.0 token for the current user. */
1307
- oauth_token?: string;
1821
+ oauth_token?:
1822
+ string;
1308
1823
  /** Returns response with indentations and line breaks. */
1309
- prettyPrint?: boolean;
1824
+ prettyPrint?:
1825
+ boolean;
1310
1826
  /** 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. */
1311
- quotaUser?: string;
1827
+ quotaUser?:
1828
+ string;
1312
1829
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1313
- upload_protocol?: string;
1830
+ upload_protocol?:
1831
+ string;
1314
1832
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1315
- uploadType?: string;
1833
+ uploadType?:
1834
+ string;
1316
1835
  },
1317
1836
  body: AddMatterPermissionsRequest): Request<MatterPermission>;
1318
1837
  /** Closes the specified matter. Returns the matter with updated state. */
1319
1838
  close(request: {
1320
1839
  /** V1 error format. */
1321
- "$.xgafv"?: string;
1840
+ "$.xgafv"?:
1841
+ string;
1322
1842
  /** OAuth access token. */
1323
- access_token?: string;
1843
+ access_token?:
1844
+ string;
1324
1845
  /** Data format for response. */
1325
- alt?: string;
1846
+ alt?:
1847
+ string;
1326
1848
  /** JSONP */
1327
- callback?: string;
1849
+ callback?:
1850
+ string;
1328
1851
  /** Selector specifying which fields to include in a partial response. */
1329
- fields?: string;
1852
+ fields?:
1853
+ string;
1330
1854
  /** 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. */
1331
- key?: string;
1855
+ key?:
1856
+ string;
1332
1857
  /** The matter ID. */
1333
- matterId: string;
1858
+ matterId:
1859
+ string;
1334
1860
  /** OAuth 2.0 token for the current user. */
1335
- oauth_token?: string;
1861
+ oauth_token?:
1862
+ string;
1336
1863
  /** Returns response with indentations and line breaks. */
1337
- prettyPrint?: boolean;
1864
+ prettyPrint?:
1865
+ boolean;
1338
1866
  /** 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. */
1339
- quotaUser?: string;
1867
+ quotaUser?:
1868
+ string;
1340
1869
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1341
- upload_protocol?: string;
1870
+ upload_protocol?:
1871
+ string;
1342
1872
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1343
- uploadType?: string;
1873
+ uploadType?:
1874
+ string;
1344
1875
  /** Request body */
1345
- resource: CloseMatterRequest;
1876
+ resource:
1877
+ CloseMatterRequest;
1346
1878
  }): Request<CloseMatterResponse>;
1347
1879
  close(request: {
1348
1880
  /** V1 error format. */
1349
- "$.xgafv"?: string;
1881
+ "$.xgafv"?:
1882
+ string;
1350
1883
  /** OAuth access token. */
1351
- access_token?: string;
1884
+ access_token?:
1885
+ string;
1352
1886
  /** Data format for response. */
1353
- alt?: string;
1887
+ alt?:
1888
+ string;
1354
1889
  /** JSONP */
1355
- callback?: string;
1890
+ callback?:
1891
+ string;
1356
1892
  /** Selector specifying which fields to include in a partial response. */
1357
- fields?: string;
1893
+ fields?:
1894
+ string;
1358
1895
  /** 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. */
1359
- key?: string;
1896
+ key?:
1897
+ string;
1360
1898
  /** The matter ID. */
1361
- matterId: string;
1899
+ matterId:
1900
+ string;
1362
1901
  /** OAuth 2.0 token for the current user. */
1363
- oauth_token?: string;
1902
+ oauth_token?:
1903
+ string;
1364
1904
  /** Returns response with indentations and line breaks. */
1365
- prettyPrint?: boolean;
1905
+ prettyPrint?:
1906
+ boolean;
1366
1907
  /** 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. */
1367
- quotaUser?: string;
1908
+ quotaUser?:
1909
+ string;
1368
1910
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1369
- upload_protocol?: string;
1911
+ upload_protocol?:
1912
+ string;
1370
1913
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1371
- uploadType?: string;
1914
+ uploadType?:
1915
+ string;
1372
1916
  },
1373
1917
  body: CloseMatterRequest): Request<CloseMatterResponse>;
1374
1918
  /** Counts the accounts processed by the specified query. */
1375
1919
  count(request: {
1376
1920
  /** V1 error format. */
1377
- "$.xgafv"?: string;
1921
+ "$.xgafv"?:
1922
+ string;
1378
1923
  /** OAuth access token. */
1379
- access_token?: string;
1924
+ access_token?:
1925
+ string;
1380
1926
  /** Data format for response. */
1381
- alt?: string;
1927
+ alt?:
1928
+ string;
1382
1929
  /** JSONP */
1383
- callback?: string;
1930
+ callback?:
1931
+ string;
1384
1932
  /** Selector specifying which fields to include in a partial response. */
1385
- fields?: string;
1933
+ fields?:
1934
+ string;
1386
1935
  /** 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. */
1387
- key?: string;
1936
+ key?:
1937
+ string;
1388
1938
  /** The matter ID. */
1389
- matterId: string;
1939
+ matterId:
1940
+ string;
1390
1941
  /** OAuth 2.0 token for the current user. */
1391
- oauth_token?: string;
1942
+ oauth_token?:
1943
+ string;
1392
1944
  /** Returns response with indentations and line breaks. */
1393
- prettyPrint?: boolean;
1945
+ prettyPrint?:
1946
+ boolean;
1394
1947
  /** 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. */
1395
- quotaUser?: string;
1948
+ quotaUser?:
1949
+ string;
1396
1950
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1397
- upload_protocol?: string;
1951
+ upload_protocol?:
1952
+ string;
1398
1953
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1399
- uploadType?: string;
1954
+ uploadType?:
1955
+ string;
1400
1956
  /** Request body */
1401
- resource: CountArtifactsRequest;
1957
+ resource:
1958
+ CountArtifactsRequest;
1402
1959
  }): Request<Operation>;
1403
1960
  count(request: {
1404
1961
  /** V1 error format. */
1405
- "$.xgafv"?: string;
1962
+ "$.xgafv"?:
1963
+ string;
1406
1964
  /** OAuth access token. */
1407
- access_token?: string;
1965
+ access_token?:
1966
+ string;
1408
1967
  /** Data format for response. */
1409
- alt?: string;
1968
+ alt?:
1969
+ string;
1410
1970
  /** JSONP */
1411
- callback?: string;
1971
+ callback?:
1972
+ string;
1412
1973
  /** Selector specifying which fields to include in a partial response. */
1413
- fields?: string;
1974
+ fields?:
1975
+ string;
1414
1976
  /** 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. */
1415
- key?: string;
1977
+ key?:
1978
+ string;
1416
1979
  /** The matter ID. */
1417
- matterId: string;
1980
+ matterId:
1981
+ string;
1418
1982
  /** OAuth 2.0 token for the current user. */
1419
- oauth_token?: string;
1983
+ oauth_token?:
1984
+ string;
1420
1985
  /** Returns response with indentations and line breaks. */
1421
- prettyPrint?: boolean;
1986
+ prettyPrint?:
1987
+ boolean;
1422
1988
  /** 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. */
1423
- quotaUser?: string;
1989
+ quotaUser?:
1990
+ string;
1424
1991
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1425
- upload_protocol?: string;
1992
+ upload_protocol?:
1993
+ string;
1426
1994
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1427
- uploadType?: string;
1995
+ uploadType?:
1996
+ string;
1428
1997
  },
1429
1998
  body: CountArtifactsRequest): Request<Operation>;
1430
1999
  /** Creates a matter with the given name and description. The initial state is open, and the owner is the method caller. Returns the created matter with default view. */
1431
2000
  create(request: {
1432
2001
  /** V1 error format. */
1433
- "$.xgafv"?: string;
2002
+ "$.xgafv"?:
2003
+ string;
1434
2004
  /** OAuth access token. */
1435
- access_token?: string;
2005
+ access_token?:
2006
+ string;
1436
2007
  /** Data format for response. */
1437
- alt?: string;
2008
+ alt?:
2009
+ string;
1438
2010
  /** JSONP */
1439
- callback?: string;
2011
+ callback?:
2012
+ string;
1440
2013
  /** Selector specifying which fields to include in a partial response. */
1441
- fields?: string;
2014
+ fields?:
2015
+ string;
1442
2016
  /** 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. */
1443
- key?: string;
2017
+ key?:
2018
+ string;
1444
2019
  /** OAuth 2.0 token for the current user. */
1445
- oauth_token?: string;
2020
+ oauth_token?:
2021
+ string;
1446
2022
  /** Returns response with indentations and line breaks. */
1447
- prettyPrint?: boolean;
2023
+ prettyPrint?:
2024
+ boolean;
1448
2025
  /** 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. */
1449
- quotaUser?: string;
2026
+ quotaUser?:
2027
+ string;
1450
2028
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1451
- upload_protocol?: string;
2029
+ upload_protocol?:
2030
+ string;
1452
2031
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1453
- uploadType?: string;
2032
+ uploadType?:
2033
+ string;
1454
2034
  /** Request body */
1455
- resource: Matter;
2035
+ resource:
2036
+ Matter;
1456
2037
  }): Request<Matter>;
1457
2038
  create(request: {
1458
2039
  /** V1 error format. */
1459
- "$.xgafv"?: string;
2040
+ "$.xgafv"?:
2041
+ string;
1460
2042
  /** OAuth access token. */
1461
- access_token?: string;
2043
+ access_token?:
2044
+ string;
1462
2045
  /** Data format for response. */
1463
- alt?: string;
2046
+ alt?:
2047
+ string;
1464
2048
  /** JSONP */
1465
- callback?: string;
2049
+ callback?:
2050
+ string;
1466
2051
  /** Selector specifying which fields to include in a partial response. */
1467
- fields?: string;
2052
+ fields?:
2053
+ string;
1468
2054
  /** 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. */
1469
- key?: string;
2055
+ key?:
2056
+ string;
1470
2057
  /** OAuth 2.0 token for the current user. */
1471
- oauth_token?: string;
2058
+ oauth_token?:
2059
+ string;
1472
2060
  /** Returns response with indentations and line breaks. */
1473
- prettyPrint?: boolean;
2061
+ prettyPrint?:
2062
+ boolean;
1474
2063
  /** 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. */
1475
- quotaUser?: string;
2064
+ quotaUser?:
2065
+ string;
1476
2066
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1477
- upload_protocol?: string;
2067
+ upload_protocol?:
2068
+ string;
1478
2069
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1479
- uploadType?: string;
2070
+ uploadType?:
2071
+ string;
1480
2072
  },
1481
2073
  body: Matter): Request<Matter>;
1482
2074
  /** Deletes the specified matter. Returns the matter with updated state. */
1483
2075
  delete(request?: {
1484
2076
  /** V1 error format. */
1485
- "$.xgafv"?: string;
2077
+ "$.xgafv"?:
2078
+ string;
1486
2079
  /** OAuth access token. */
1487
- access_token?: string;
2080
+ access_token?:
2081
+ string;
1488
2082
  /** Data format for response. */
1489
- alt?: string;
2083
+ alt?:
2084
+ string;
1490
2085
  /** JSONP */
1491
- callback?: string;
2086
+ callback?:
2087
+ string;
1492
2088
  /** Selector specifying which fields to include in a partial response. */
1493
- fields?: string;
2089
+ fields?:
2090
+ string;
1494
2091
  /** 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. */
1495
- key?: string;
2092
+ key?:
2093
+ string;
1496
2094
  /** The matter ID */
1497
- matterId: string;
2095
+ matterId:
2096
+ string;
1498
2097
  /** OAuth 2.0 token for the current user. */
1499
- oauth_token?: string;
2098
+ oauth_token?:
2099
+ string;
1500
2100
  /** Returns response with indentations and line breaks. */
1501
- prettyPrint?: boolean;
2101
+ prettyPrint?:
2102
+ boolean;
1502
2103
  /** 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. */
1503
- quotaUser?: string;
2104
+ quotaUser?:
2105
+ string;
1504
2106
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1505
- upload_protocol?: string;
2107
+ upload_protocol?:
2108
+ string;
1506
2109
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1507
- uploadType?: string;
2110
+ uploadType?:
2111
+ string;
1508
2112
  }): Request<Matter>;
1509
2113
  /** Gets the specified matter. */
1510
2114
  get(request?: {
1511
2115
  /** V1 error format. */
1512
- "$.xgafv"?: string;
2116
+ "$.xgafv"?:
2117
+ string;
1513
2118
  /** OAuth access token. */
1514
- access_token?: string;
2119
+ access_token?:
2120
+ string;
1515
2121
  /** Data format for response. */
1516
- alt?: string;
2122
+ alt?:
2123
+ string;
1517
2124
  /** JSONP */
1518
- callback?: string;
2125
+ callback?:
2126
+ string;
1519
2127
  /** Selector specifying which fields to include in a partial response. */
1520
- fields?: string;
2128
+ fields?:
2129
+ string;
1521
2130
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1522
- key?: string;
2131
+ key?:
2132
+ string;
1523
2133
  /** The matter ID. */
1524
- matterId: string;
2134
+ matterId:
2135
+ string;
1525
2136
  /** OAuth 2.0 token for the current user. */
1526
- oauth_token?: string;
2137
+ oauth_token?:
2138
+ string;
1527
2139
  /** Returns response with indentations and line breaks. */
1528
- prettyPrint?: boolean;
2140
+ prettyPrint?:
2141
+ boolean;
1529
2142
  /** 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. */
1530
- quotaUser?: string;
2143
+ quotaUser?:
2144
+ string;
1531
2145
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1532
- upload_protocol?: string;
2146
+ upload_protocol?:
2147
+ string;
1533
2148
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1534
- uploadType?: string;
2149
+ uploadType?:
2150
+ string;
1535
2151
  /** Specifies how much information about the matter to return in the response. */
1536
- view?: string;
2152
+ view?:
2153
+ string;
1537
2154
  }): Request<Matter>;
1538
2155
  /** Lists matters the requestor has access to. */
1539
2156
  list(request?: {
1540
2157
  /** V1 error format. */
1541
- "$.xgafv"?: string;
2158
+ "$.xgafv"?:
2159
+ string;
1542
2160
  /** OAuth access token. */
1543
- access_token?: string;
2161
+ access_token?:
2162
+ string;
1544
2163
  /** Data format for response. */
1545
- alt?: string;
2164
+ alt?:
2165
+ string;
1546
2166
  /** JSONP */
1547
- callback?: string;
2167
+ callback?:
2168
+ string;
1548
2169
  /** Selector specifying which fields to include in a partial response. */
1549
- fields?: string;
2170
+ fields?:
2171
+ string;
1550
2172
  /** 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. */
1551
- key?: string;
2173
+ key?:
2174
+ string;
1552
2175
  /** OAuth 2.0 token for the current user. */
1553
- oauth_token?: string;
2176
+ oauth_token?:
2177
+ string;
1554
2178
  /** The number of matters to return in the response. Default and maximum are 100. */
1555
- pageSize?: number;
2179
+ pageSize?:
2180
+ number;
1556
2181
  /** The pagination token as returned in the response. */
1557
- pageToken?: string;
2182
+ pageToken?:
2183
+ string;
1558
2184
  /** Returns response with indentations and line breaks. */
1559
- prettyPrint?: boolean;
2185
+ prettyPrint?:
2186
+ boolean;
1560
2187
  /** 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. */
1561
- quotaUser?: string;
2188
+ quotaUser?:
2189
+ string;
1562
2190
  /** If set, lists only matters with the specified state. The default lists matters of all states. */
1563
- state?: string;
2191
+ state?:
2192
+ string;
1564
2193
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1565
- upload_protocol?: string;
2194
+ upload_protocol?:
2195
+ string;
1566
2196
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1567
- uploadType?: string;
2197
+ uploadType?:
2198
+ string;
1568
2199
  /** Specifies how much information about the matter to return in response. */
1569
- view?: string;
2200
+ view?:
2201
+ string;
1570
2202
  }): Request<ListMattersResponse>;
1571
2203
  /** Removes an account as a matter collaborator. */
1572
2204
  removePermissions(request: {
1573
2205
  /** V1 error format. */
1574
- "$.xgafv"?: string;
2206
+ "$.xgafv"?:
2207
+ string;
1575
2208
  /** OAuth access token. */
1576
- access_token?: string;
2209
+ access_token?:
2210
+ string;
1577
2211
  /** Data format for response. */
1578
- alt?: string;
2212
+ alt?:
2213
+ string;
1579
2214
  /** JSONP */
1580
- callback?: string;
2215
+ callback?:
2216
+ string;
1581
2217
  /** Selector specifying which fields to include in a partial response. */
1582
- fields?: string;
2218
+ fields?:
2219
+ string;
1583
2220
  /** 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. */
1584
- key?: string;
2221
+ key?:
2222
+ string;
1585
2223
  /** The matter ID. */
1586
- matterId: string;
2224
+ matterId:
2225
+ string;
1587
2226
  /** OAuth 2.0 token for the current user. */
1588
- oauth_token?: string;
2227
+ oauth_token?:
2228
+ string;
1589
2229
  /** Returns response with indentations and line breaks. */
1590
- prettyPrint?: boolean;
2230
+ prettyPrint?:
2231
+ boolean;
1591
2232
  /** 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. */
1592
- quotaUser?: string;
2233
+ quotaUser?:
2234
+ string;
1593
2235
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1594
- upload_protocol?: string;
2236
+ upload_protocol?:
2237
+ string;
1595
2238
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1596
- uploadType?: string;
2239
+ uploadType?:
2240
+ string;
1597
2241
  /** Request body */
1598
- resource: RemoveMatterPermissionsRequest;
2242
+ resource:
2243
+ RemoveMatterPermissionsRequest;
1599
2244
  }): Request<{}>;
1600
2245
  removePermissions(request: {
1601
2246
  /** V1 error format. */
1602
- "$.xgafv"?: string;
2247
+ "$.xgafv"?:
2248
+ string;
1603
2249
  /** OAuth access token. */
1604
- access_token?: string;
2250
+ access_token?:
2251
+ string;
1605
2252
  /** Data format for response. */
1606
- alt?: string;
2253
+ alt?:
2254
+ string;
1607
2255
  /** JSONP */
1608
- callback?: string;
2256
+ callback?:
2257
+ string;
1609
2258
  /** Selector specifying which fields to include in a partial response. */
1610
- fields?: string;
2259
+ fields?:
2260
+ string;
1611
2261
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1612
- key?: string;
2262
+ key?:
2263
+ string;
1613
2264
  /** The matter ID. */
1614
- matterId: string;
2265
+ matterId:
2266
+ string;
1615
2267
  /** OAuth 2.0 token for the current user. */
1616
- oauth_token?: string;
2268
+ oauth_token?:
2269
+ string;
1617
2270
  /** Returns response with indentations and line breaks. */
1618
- prettyPrint?: boolean;
2271
+ prettyPrint?:
2272
+ boolean;
1619
2273
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1620
- quotaUser?: string;
2274
+ quotaUser?:
2275
+ string;
1621
2276
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1622
- upload_protocol?: string;
2277
+ upload_protocol?:
2278
+ string;
1623
2279
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1624
- uploadType?: string;
2280
+ uploadType?:
2281
+ string;
1625
2282
  },
1626
2283
  body: RemoveMatterPermissionsRequest): Request<{}>;
1627
2284
  /** Reopens the specified matter. Returns the matter with updated state. */
1628
2285
  reopen(request: {
1629
2286
  /** V1 error format. */
1630
- "$.xgafv"?: string;
2287
+ "$.xgafv"?:
2288
+ string;
1631
2289
  /** OAuth access token. */
1632
- access_token?: string;
2290
+ access_token?:
2291
+ string;
1633
2292
  /** Data format for response. */
1634
- alt?: string;
2293
+ alt?:
2294
+ string;
1635
2295
  /** JSONP */
1636
- callback?: string;
2296
+ callback?:
2297
+ string;
1637
2298
  /** Selector specifying which fields to include in a partial response. */
1638
- fields?: string;
2299
+ fields?:
2300
+ string;
1639
2301
  /** 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. */
1640
- key?: string;
2302
+ key?:
2303
+ string;
1641
2304
  /** The matter ID. */
1642
- matterId: string;
2305
+ matterId:
2306
+ string;
1643
2307
  /** OAuth 2.0 token for the current user. */
1644
- oauth_token?: string;
2308
+ oauth_token?:
2309
+ string;
1645
2310
  /** Returns response with indentations and line breaks. */
1646
- prettyPrint?: boolean;
2311
+ prettyPrint?:
2312
+ boolean;
1647
2313
  /** 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. */
1648
- quotaUser?: string;
2314
+ quotaUser?:
2315
+ string;
1649
2316
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1650
- upload_protocol?: string;
2317
+ upload_protocol?:
2318
+ string;
1651
2319
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1652
- uploadType?: string;
2320
+ uploadType?:
2321
+ string;
1653
2322
  /** Request body */
1654
- resource: ReopenMatterRequest;
2323
+ resource:
2324
+ ReopenMatterRequest;
1655
2325
  }): Request<ReopenMatterResponse>;
1656
2326
  reopen(request: {
1657
2327
  /** V1 error format. */
1658
- "$.xgafv"?: string;
2328
+ "$.xgafv"?:
2329
+ string;
1659
2330
  /** OAuth access token. */
1660
- access_token?: string;
2331
+ access_token?:
2332
+ string;
1661
2333
  /** Data format for response. */
1662
- alt?: string;
2334
+ alt?:
2335
+ string;
1663
2336
  /** JSONP */
1664
- callback?: string;
2337
+ callback?:
2338
+ string;
1665
2339
  /** Selector specifying which fields to include in a partial response. */
1666
- fields?: string;
2340
+ fields?:
2341
+ string;
1667
2342
  /** 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. */
1668
- key?: string;
2343
+ key?:
2344
+ string;
1669
2345
  /** The matter ID. */
1670
- matterId: string;
2346
+ matterId:
2347
+ string;
1671
2348
  /** OAuth 2.0 token for the current user. */
1672
- oauth_token?: string;
2349
+ oauth_token?:
2350
+ string;
1673
2351
  /** Returns response with indentations and line breaks. */
1674
- prettyPrint?: boolean;
2352
+ prettyPrint?:
2353
+ boolean;
1675
2354
  /** 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. */
1676
- quotaUser?: string;
2355
+ quotaUser?:
2356
+ string;
1677
2357
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1678
- upload_protocol?: string;
2358
+ upload_protocol?:
2359
+ string;
1679
2360
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1680
- uploadType?: string;
2361
+ uploadType?:
2362
+ string;
1681
2363
  },
1682
2364
  body: ReopenMatterRequest): Request<ReopenMatterResponse>;
1683
2365
  /** Undeletes the specified matter. Returns the matter with updated state. */
1684
2366
  undelete(request: {
1685
2367
  /** V1 error format. */
1686
- "$.xgafv"?: string;
2368
+ "$.xgafv"?:
2369
+ string;
1687
2370
  /** OAuth access token. */
1688
- access_token?: string;
2371
+ access_token?:
2372
+ string;
1689
2373
  /** Data format for response. */
1690
- alt?: string;
2374
+ alt?:
2375
+ string;
1691
2376
  /** JSONP */
1692
- callback?: string;
2377
+ callback?:
2378
+ string;
1693
2379
  /** Selector specifying which fields to include in a partial response. */
1694
- fields?: string;
2380
+ fields?:
2381
+ string;
1695
2382
  /** 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. */
1696
- key?: string;
2383
+ key?:
2384
+ string;
1697
2385
  /** The matter ID. */
1698
- matterId: string;
2386
+ matterId:
2387
+ string;
1699
2388
  /** OAuth 2.0 token for the current user. */
1700
- oauth_token?: string;
2389
+ oauth_token?:
2390
+ string;
1701
2391
  /** Returns response with indentations and line breaks. */
1702
- prettyPrint?: boolean;
2392
+ prettyPrint?:
2393
+ boolean;
1703
2394
  /** 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. */
1704
- quotaUser?: string;
2395
+ quotaUser?:
2396
+ string;
1705
2397
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1706
- upload_protocol?: string;
2398
+ upload_protocol?:
2399
+ string;
1707
2400
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1708
- uploadType?: string;
2401
+ uploadType?:
2402
+ string;
1709
2403
  /** Request body */
1710
- resource: UndeleteMatterRequest;
2404
+ resource:
2405
+ UndeleteMatterRequest;
1711
2406
  }): Request<Matter>;
1712
2407
  undelete(request: {
1713
2408
  /** V1 error format. */
1714
- "$.xgafv"?: string;
2409
+ "$.xgafv"?:
2410
+ string;
1715
2411
  /** OAuth access token. */
1716
- access_token?: string;
2412
+ access_token?:
2413
+ string;
1717
2414
  /** Data format for response. */
1718
- alt?: string;
2415
+ alt?:
2416
+ string;
1719
2417
  /** JSONP */
1720
- callback?: string;
2418
+ callback?:
2419
+ string;
1721
2420
  /** Selector specifying which fields to include in a partial response. */
1722
- fields?: string;
2421
+ fields?:
2422
+ string;
1723
2423
  /** 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. */
1724
- key?: string;
2424
+ key?:
2425
+ string;
1725
2426
  /** The matter ID. */
1726
- matterId: string;
2427
+ matterId:
2428
+ string;
1727
2429
  /** OAuth 2.0 token for the current user. */
1728
- oauth_token?: string;
2430
+ oauth_token?:
2431
+ string;
1729
2432
  /** Returns response with indentations and line breaks. */
1730
- prettyPrint?: boolean;
2433
+ prettyPrint?:
2434
+ boolean;
1731
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. */
1732
- quotaUser?: string;
2436
+ quotaUser?:
2437
+ string;
1733
2438
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1734
- upload_protocol?: string;
2439
+ upload_protocol?:
2440
+ string;
1735
2441
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1736
- uploadType?: string;
2442
+ uploadType?:
2443
+ string;
1737
2444
  },
1738
2445
  body: UndeleteMatterRequest): Request<Matter>;
1739
2446
  /**
@@ -1742,62 +2449,90 @@ declare namespace gapi.client {
1742
2449
  */
1743
2450
  update(request: {
1744
2451
  /** V1 error format. */
1745
- "$.xgafv"?: string;
2452
+ "$.xgafv"?:
2453
+ string;
1746
2454
  /** OAuth access token. */
1747
- access_token?: string;
2455
+ access_token?:
2456
+ string;
1748
2457
  /** Data format for response. */
1749
- alt?: string;
2458
+ alt?:
2459
+ string;
1750
2460
  /** JSONP */
1751
- callback?: string;
2461
+ callback?:
2462
+ string;
1752
2463
  /** Selector specifying which fields to include in a partial response. */
1753
- fields?: string;
2464
+ fields?:
2465
+ string;
1754
2466
  /** 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. */
1755
- key?: string;
2467
+ key?:
2468
+ string;
1756
2469
  /** The matter ID. */
1757
- matterId: string;
2470
+ matterId:
2471
+ string;
1758
2472
  /** OAuth 2.0 token for the current user. */
1759
- oauth_token?: string;
2473
+ oauth_token?:
2474
+ string;
1760
2475
  /** Returns response with indentations and line breaks. */
1761
- prettyPrint?: boolean;
2476
+ prettyPrint?:
2477
+ boolean;
1762
2478
  /** 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. */
1763
- quotaUser?: string;
2479
+ quotaUser?:
2480
+ string;
1764
2481
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1765
- upload_protocol?: string;
2482
+ upload_protocol?:
2483
+ string;
1766
2484
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1767
- uploadType?: string;
2485
+ uploadType?:
2486
+ string;
1768
2487
  /** Request body */
1769
- resource: Matter;
2488
+ resource:
2489
+ Matter;
1770
2490
  }): Request<Matter>;
1771
2491
  update(request: {
1772
2492
  /** V1 error format. */
1773
- "$.xgafv"?: string;
2493
+ "$.xgafv"?:
2494
+ string;
1774
2495
  /** OAuth access token. */
1775
- access_token?: string;
2496
+ access_token?:
2497
+ string;
1776
2498
  /** Data format for response. */
1777
- alt?: string;
2499
+ alt?:
2500
+ string;
1778
2501
  /** JSONP */
1779
- callback?: string;
2502
+ callback?:
2503
+ string;
1780
2504
  /** Selector specifying which fields to include in a partial response. */
1781
- fields?: string;
2505
+ fields?:
2506
+ string;
1782
2507
  /** 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?: string;
2508
+ key?:
2509
+ string;
1784
2510
  /** The matter ID. */
1785
- matterId: string;
2511
+ matterId:
2512
+ string;
1786
2513
  /** OAuth 2.0 token for the current user. */
1787
- oauth_token?: string;
2514
+ oauth_token?:
2515
+ string;
1788
2516
  /** Returns response with indentations and line breaks. */
1789
- prettyPrint?: boolean;
2517
+ prettyPrint?:
2518
+ boolean;
1790
2519
  /** 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?: string;
2520
+ quotaUser?:
2521
+ string;
1792
2522
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1793
- upload_protocol?: string;
2523
+ upload_protocol?:
2524
+ string;
1794
2525
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1795
- uploadType?: string;
2526
+ uploadType?:
2527
+ string;
1796
2528
  },
1797
2529
  body: Matter): Request<Matter>;
1798
- exports: ExportsResource;
1799
- holds: HoldsResource;
1800
- savedQueries: SavedQueriesResource;
2530
+ exports:
2531
+ ExportsResource;
2532
+ holds:
2533
+ HoldsResource;
2534
+ savedQueries:
2535
+ SavedQueriesResource;
1801
2536
  }
1802
2537
  interface OperationsResource {
1803
2538
  /**
@@ -1808,57 +2543,82 @@ declare namespace gapi.client {
1808
2543
  */
1809
2544
  cancel(request: {
1810
2545
  /** V1 error format. */
1811
- "$.xgafv"?: string;
2546
+ "$.xgafv"?:
2547
+ string;
1812
2548
  /** OAuth access token. */
1813
- access_token?: string;
2549
+ access_token?:
2550
+ string;
1814
2551
  /** Data format for response. */
1815
- alt?: string;
2552
+ alt?:
2553
+ string;
1816
2554
  /** JSONP */
1817
- callback?: string;
2555
+ callback?:
2556
+ string;
1818
2557
  /** Selector specifying which fields to include in a partial response. */
1819
- fields?: string;
2558
+ fields?:
2559
+ string;
1820
2560
  /** 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. */
1821
- key?: string;
2561
+ key?:
2562
+ string;
1822
2563
  /** The name of the operation resource to be cancelled. */
1823
- name: string;
2564
+ name:
2565
+ string;
1824
2566
  /** OAuth 2.0 token for the current user. */
1825
- oauth_token?: string;
2567
+ oauth_token?:
2568
+ string;
1826
2569
  /** Returns response with indentations and line breaks. */
1827
- prettyPrint?: boolean;
2570
+ prettyPrint?:
2571
+ boolean;
1828
2572
  /** 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. */
1829
- quotaUser?: string;
2573
+ quotaUser?:
2574
+ string;
1830
2575
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1831
- upload_protocol?: string;
2576
+ upload_protocol?:
2577
+ string;
1832
2578
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1833
- uploadType?: string;
2579
+ uploadType?:
2580
+ string;
1834
2581
  /** Request body */
1835
- resource: CancelOperationRequest;
2582
+ resource:
2583
+ CancelOperationRequest;
1836
2584
  }): Request<{}>;
1837
2585
  cancel(request: {
1838
2586
  /** V1 error format. */
1839
- "$.xgafv"?: string;
2587
+ "$.xgafv"?:
2588
+ string;
1840
2589
  /** OAuth access token. */
1841
- access_token?: string;
2590
+ access_token?:
2591
+ string;
1842
2592
  /** Data format for response. */
1843
- alt?: string;
2593
+ alt?:
2594
+ string;
1844
2595
  /** JSONP */
1845
- callback?: string;
2596
+ callback?:
2597
+ string;
1846
2598
  /** Selector specifying which fields to include in a partial response. */
1847
- fields?: string;
2599
+ fields?:
2600
+ string;
1848
2601
  /** 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. */
1849
- key?: string;
2602
+ key?:
2603
+ string;
1850
2604
  /** The name of the operation resource to be cancelled. */
1851
- name: string;
2605
+ name:
2606
+ string;
1852
2607
  /** OAuth 2.0 token for the current user. */
1853
- oauth_token?: string;
2608
+ oauth_token?:
2609
+ string;
1854
2610
  /** Returns response with indentations and line breaks. */
1855
- prettyPrint?: boolean;
2611
+ prettyPrint?:
2612
+ boolean;
1856
2613
  /** 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. */
1857
- quotaUser?: string;
2614
+ quotaUser?:
2615
+ string;
1858
2616
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1859
- upload_protocol?: string;
2617
+ upload_protocol?:
2618
+ string;
1860
2619
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1861
- uploadType?: string;
2620
+ uploadType?:
2621
+ string;
1862
2622
  },
1863
2623
  body: CancelOperationRequest): Request<{}>;
1864
2624
  /**
@@ -1867,89 +2627,128 @@ declare namespace gapi.client {
1867
2627
  */
1868
2628
  delete(request?: {
1869
2629
  /** V1 error format. */
1870
- "$.xgafv"?: string;
2630
+ "$.xgafv"?:
2631
+ string;
1871
2632
  /** OAuth access token. */
1872
- access_token?: string;
2633
+ access_token?:
2634
+ string;
1873
2635
  /** Data format for response. */
1874
- alt?: string;
2636
+ alt?:
2637
+ string;
1875
2638
  /** JSONP */
1876
- callback?: string;
2639
+ callback?:
2640
+ string;
1877
2641
  /** Selector specifying which fields to include in a partial response. */
1878
- fields?: string;
2642
+ fields?:
2643
+ string;
1879
2644
  /** 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. */
1880
- key?: string;
2645
+ key?:
2646
+ string;
1881
2647
  /** The name of the operation resource to be deleted. */
1882
- name: string;
2648
+ name:
2649
+ string;
1883
2650
  /** OAuth 2.0 token for the current user. */
1884
- oauth_token?: string;
2651
+ oauth_token?:
2652
+ string;
1885
2653
  /** Returns response with indentations and line breaks. */
1886
- prettyPrint?: boolean;
2654
+ prettyPrint?:
2655
+ boolean;
1887
2656
  /** 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. */
1888
- quotaUser?: string;
2657
+ quotaUser?:
2658
+ string;
1889
2659
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1890
- upload_protocol?: string;
2660
+ upload_protocol?:
2661
+ string;
1891
2662
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1892
- uploadType?: string;
2663
+ uploadType?:
2664
+ string;
1893
2665
  }): Request<{}>;
1894
2666
  /** 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. */
1895
2667
  get(request?: {
1896
2668
  /** V1 error format. */
1897
- "$.xgafv"?: string;
2669
+ "$.xgafv"?:
2670
+ string;
1898
2671
  /** OAuth access token. */
1899
- access_token?: string;
2672
+ access_token?:
2673
+ string;
1900
2674
  /** Data format for response. */
1901
- alt?: string;
2675
+ alt?:
2676
+ string;
1902
2677
  /** JSONP */
1903
- callback?: string;
2678
+ callback?:
2679
+ string;
1904
2680
  /** Selector specifying which fields to include in a partial response. */
1905
- fields?: string;
2681
+ fields?:
2682
+ string;
1906
2683
  /** 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. */
1907
- key?: string;
2684
+ key?:
2685
+ string;
1908
2686
  /** The name of the operation resource. */
1909
- name: string;
2687
+ name:
2688
+ string;
1910
2689
  /** OAuth 2.0 token for the current user. */
1911
- oauth_token?: string;
2690
+ oauth_token?:
2691
+ string;
1912
2692
  /** Returns response with indentations and line breaks. */
1913
- prettyPrint?: boolean;
2693
+ prettyPrint?:
2694
+ boolean;
1914
2695
  /** 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. */
1915
- quotaUser?: string;
2696
+ quotaUser?:
2697
+ string;
1916
2698
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1917
- upload_protocol?: string;
2699
+ upload_protocol?:
2700
+ string;
1918
2701
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1919
- uploadType?: string;
2702
+ uploadType?:
2703
+ string;
1920
2704
  }): Request<Operation>;
1921
2705
  /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
1922
2706
  list(request?: {
1923
2707
  /** V1 error format. */
1924
- "$.xgafv"?: string;
2708
+ "$.xgafv"?:
2709
+ string;
1925
2710
  /** OAuth access token. */
1926
- access_token?: string;
2711
+ access_token?:
2712
+ string;
1927
2713
  /** Data format for response. */
1928
- alt?: string;
2714
+ alt?:
2715
+ string;
1929
2716
  /** JSONP */
1930
- callback?: string;
2717
+ callback?:
2718
+ string;
1931
2719
  /** Selector specifying which fields to include in a partial response. */
1932
- fields?: string;
2720
+ fields?:
2721
+ string;
1933
2722
  /** The standard list filter. */
1934
- filter?: string;
2723
+ filter?:
2724
+ string;
1935
2725
  /** 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. */
1936
- key?: string;
2726
+ key?:
2727
+ string;
1937
2728
  /** The name of the operation's parent resource. */
1938
- name: string;
2729
+ name:
2730
+ string;
1939
2731
  /** OAuth 2.0 token for the current user. */
1940
- oauth_token?: string;
2732
+ oauth_token?:
2733
+ string;
1941
2734
  /** The standard list page size. */
1942
- pageSize?: number;
2735
+ pageSize?:
2736
+ number;
1943
2737
  /** The standard list page token. */
1944
- pageToken?: string;
2738
+ pageToken?:
2739
+ string;
1945
2740
  /** Returns response with indentations and line breaks. */
1946
- prettyPrint?: boolean;
2741
+ prettyPrint?:
2742
+ boolean;
1947
2743
  /** 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. */
1948
- quotaUser?: string;
2744
+ quotaUser?:
2745
+ string;
1949
2746
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1950
- upload_protocol?: string;
2747
+ upload_protocol?:
2748
+ string;
1951
2749
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1952
- uploadType?: string;
2750
+ uploadType?:
2751
+ string;
1953
2752
  }): Request<ListOperationsResponse>;
1954
2753
  }
1955
2754