@maxim_mazurok/gapi.client.cloudresourcemanager-v2 0.0.20230420 → 0.0.20230430

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 +557 -279
  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://cloudresourcemanager.googleapis.com/$discovery/rest?version=v2
12
- // Revision: 20230420
12
+ // Revision: 20230430
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -24,18 +24,22 @@ declare namespace gapi.client {
24
24
  namespace cloudresourcemanager {
25
25
  interface AuditConfig {
26
26
  /** The configuration for logging of each type of permission. */
27
- auditLogConfigs?: AuditLogConfig[];
27
+ auditLogConfigs?:
28
+ AuditLogConfig[];
28
29
  /**
29
30
  * Specifies a service that will be enabled for audit logging. For example, `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special value that covers all
30
31
  * services.
31
32
  */
32
- service?: string;
33
+ service?:
34
+ string;
33
35
  }
34
36
  interface AuditLogConfig {
35
37
  /** Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members. */
36
- exemptedMembers?: string[];
38
+ exemptedMembers?:
39
+ string[];
37
40
  /** The log type that this config enables. */
38
- logType?: string;
41
+ logType?:
42
+ string;
39
43
  }
40
44
  interface Binding {
41
45
  /**
@@ -43,7 +47,8 @@ declare namespace gapi.client {
43
47
  * then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the principals in this binding. To learn which
44
48
  * resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
45
49
  */
46
- condition?: Expr;
50
+ condition?:
51
+ Expr;
47
52
  /**
48
53
  * Specifies the principals requesting access for a Google Cloud resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on
49
54
  * the internet; with or without a Google account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Google account or a service
@@ -60,43 +65,58 @@ declare namespace gapi.client {
60
65
  * has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group
61
66
  * retains the role in the binding.
62
67
  */
63
- members?: string[];
68
+ members?:
69
+ string[];
64
70
  /** Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. */
65
- role?: string;
71
+ role?:
72
+ string;
66
73
  }
67
74
  interface CloudresourcemanagerGoogleCloudResourcemanagerV2alpha1FolderOperation {
68
75
  /** The resource name of the folder or organization we are either creating the folder under or moving the folder to. */
69
- destinationParent?: string;
76
+ destinationParent?:
77
+ string;
70
78
  /** The display name of the folder. */
71
- displayName?: string;
79
+ displayName?:
80
+ string;
72
81
  /** The type of this operation. */
73
- operationType?: string;
82
+ operationType?:
83
+ string;
74
84
  /** The resource name of the folder's parent. Only applicable when the operation_type is MOVE. */
75
- sourceParent?: string;
85
+ sourceParent?:
86
+ string;
76
87
  }
77
88
  interface CloudresourcemanagerGoogleCloudResourcemanagerV2beta1FolderOperation {
78
89
  /** The resource name of the folder or organization we are either creating the folder under or moving the folder to. */
79
- destinationParent?: string;
90
+ destinationParent?:
91
+ string;
80
92
  /** The display name of the folder. */
81
- displayName?: string;
93
+ displayName?:
94
+ string;
82
95
  /** The type of this operation. */
83
- operationType?: string;
96
+ operationType?:
97
+ string;
84
98
  /** The resource name of the folder's parent. Only applicable when the operation_type is MOVE. */
85
- sourceParent?: string;
99
+ sourceParent?:
100
+ string;
86
101
  }
87
102
  interface CreateFolderMetadata {
88
103
  /** The display name of the folder. */
89
- displayName?: string;
104
+ displayName?:
105
+ string;
90
106
  /** The resource name of the folder or organization we are creating the folder under. */
91
- parent?: string;
107
+ parent?:
108
+ string;
92
109
  }
93
110
  interface CreateProjectMetadata {
94
111
  /** Creation time of the project creation workflow. */
95
- createTime?: string;
112
+ createTime?:
113
+ string;
96
114
  /** True if the project can be retrieved using `GetProject`. No other operations on the project are guaranteed to work until the project creation is complete. */
97
- gettable?: boolean;
115
+ gettable?:
116
+ boolean;
98
117
  /** True if the project creation process is complete. */
99
- ready?: boolean;
118
+ ready?:
119
+ boolean;
100
120
  }
101
121
  // tslint:disable-next-line:no-empty-interface
102
122
  interface CreateTagBindingMetadata {
@@ -127,47 +147,62 @@ declare namespace gapi.client {
127
147
  }
128
148
  interface Expr {
129
149
  /** Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI. */
130
- description?: string;
150
+ description?:
151
+ string;
131
152
  /** Textual representation of an expression in Common Expression Language syntax. */
132
- expression?: string;
153
+ expression?:
154
+ string;
133
155
  /** Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file. */
134
- location?: string;
156
+ location?:
157
+ string;
135
158
  /** Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression. */
136
- title?: string;
159
+ title?:
160
+ string;
137
161
  }
138
162
  interface Folder {
139
163
  /** Output only. Timestamp when the Folder was created. Assigned by the server. */
140
- createTime?: string;
164
+ createTime?:
165
+ string;
141
166
  /**
142
167
  * The folder's display name. A folder's display name must be unique amongst its siblings, e.g. no two folders with the same parent can share the same display name. The display name
143
168
  * must start and end with a letter or digit, may contain letters, digits, spaces, hyphens and underscores and can be no longer than 30 characters. This is captured by the regular
144
169
  * expression: `[\p{L}\p{N}]([\p{L}\p{N}_- ]{0,28}[\p{L}\p{N}])?`.
145
170
  */
146
- displayName?: string;
171
+ displayName?:
172
+ string;
147
173
  /** Output only. The lifecycle state of the folder. Updates to the lifecycle_state must be performed via DeleteFolder and UndeleteFolder. */
148
- lifecycleState?: string;
174
+ lifecycleState?:
175
+ string;
149
176
  /** Output only. The resource name of the Folder. Its format is `folders/{folder_id}`, for example: "folders/1234". */
150
- name?: string;
177
+ name?:
178
+ string;
151
179
  /** Required. The Folder's parent's resource name. Updates to the folder's parent must be performed via MoveFolder. */
152
- parent?: string;
180
+ parent?:
181
+ string;
153
182
  }
154
183
  interface FolderOperation {
155
184
  /** The resource name of the folder or organization we are either creating the folder under or moving the folder to. */
156
- destinationParent?: string;
185
+ destinationParent?:
186
+ string;
157
187
  /** The display name of the folder. */
158
- displayName?: string;
188
+ displayName?:
189
+ string;
159
190
  /** The type of this operation. */
160
- operationType?: string;
191
+ operationType?:
192
+ string;
161
193
  /** The resource name of the folder's parent. Only applicable when the operation_type is MOVE. */
162
- sourceParent?: string;
194
+ sourceParent?:
195
+ string;
163
196
  }
164
197
  interface FolderOperationError {
165
198
  /** The type of operation error experienced. */
166
- errorMessageId?: string;
199
+ errorMessageId?:
200
+ string;
167
201
  }
168
202
  interface GetIamPolicyRequest {
169
203
  /** OPTIONAL: A `GetPolicyOptions` object for specifying options to `GetIamPolicy`. */
170
- options?: GetPolicyOptions;
204
+ options?:
205
+ GetPolicyOptions;
171
206
  }
172
207
  interface GetPolicyOptions {
173
208
  /**
@@ -177,61 +212,75 @@ declare namespace gapi.client {
177
212
  * bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM
178
213
  * documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
179
214
  */
180
- requestedPolicyVersion?: number;
215
+ requestedPolicyVersion?:
216
+ number;
181
217
  }
182
218
  interface ListFoldersResponse {
183
219
  /** A possibly paginated list of Folders that are direct descendants of the specified parent resource. */
184
- folders?: Folder[];
220
+ folders?:
221
+ Folder[];
185
222
  /** A pagination token returned from a previous call to `ListFolders` that indicates from where listing should continue. */
186
- nextPageToken?: string;
223
+ nextPageToken?:
224
+ string;
187
225
  }
188
226
  interface MoveFolderMetadata {
189
227
  /** The resource name of the folder or organization to move the folder to. */
190
- destinationParent?: string;
228
+ destinationParent?:
229
+ string;
191
230
  /** The display name of the folder. */
192
- displayName?: string;
231
+ displayName?:
232
+ string;
193
233
  /** The resource name of the folder's parent. */
194
- sourceParent?: string;
234
+ sourceParent?:
235
+ string;
195
236
  }
196
237
  interface MoveFolderRequest {
197
238
  /** Required. The resource name of the Folder or Organization to reparent the folder under. Must be of the form `folders/{folder_id}` or `organizations/{org_id}`. */
198
- destinationParent?: string;
239
+ destinationParent?:
240
+ string;
199
241
  }
200
242
  // tslint:disable-next-line:no-empty-interface
201
243
  interface MoveProjectMetadata {
202
244
  }
203
245
  interface Operation {
204
246
  /** 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. */
205
- done?: boolean;
247
+ done?:
248
+ boolean;
206
249
  /** The error result of the operation in case of failure or cancellation. */
207
- error?: Status;
250
+ error?:
251
+ Status;
208
252
  /**
209
253
  * 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
210
254
  * metadata. Any method that returns a long-running operation should document the metadata type, if any.
211
255
  */
212
- metadata?: { [P in string]: any };
256
+ metadata?:
257
+ { [P in string]: any };
213
258
  /**
214
259
  * 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
215
260
  * with `operations/{unique_id}`.
216
261
  */
217
- name?: string;
262
+ name?:
263
+ string;
218
264
  /**
219
265
  * 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
220
266
  * 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
221
267
  * original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
222
268
  */
223
- response?: { [P in string]: any };
269
+ response?:
270
+ { [P in string]: any };
224
271
  }
225
272
  interface Policy {
226
273
  /** Specifies cloud audit logging configuration for this policy. */
227
- auditConfigs?: AuditConfig[];
274
+ auditConfigs?:
275
+ AuditConfig[];
228
276
  /**
229
277
  * Associates a list of `members`, or principals, with a `role`. Optionally, may specify a `condition` that determines how and when the `bindings` are applied. Each of the `bindings`
230
278
  * must contain at least one principal. The `bindings` in a `Policy` can refer to up to 1,500 principals; up to 250 of these principals can be Google groups. Each occurrence of a
231
279
  * principal counts towards these limits. For example, if the `bindings` grant 50 different roles to `user:alice@example.com`, and not to any other principal, then you can add another
232
280
  * 1,450 principals to the `bindings` in the `Policy`.
233
281
  */
234
- bindings?: Binding[];
282
+ bindings?:
283
+ Binding[];
235
284
  /**
236
285
  * `etag` is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. It is strongly suggested that systems make
237
286
  * use of the `etag` in the read-modify-write cycle to perform policy updates in order to avoid race conditions: An `etag` is returned in the response to `getIamPolicy`, and systems
@@ -239,7 +288,8 @@ declare namespace gapi.client {
239
288
  * Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1`
240
289
  * policy, and all of the conditions in the version `3` policy are lost.
241
290
  */
242
- etag?: string;
291
+ etag?:
292
+ string;
243
293
  /**
244
294
  * Specifies the format of the policy. Valid values are `0`, `1`, and `3`. Requests that specify an invalid value are rejected. Any operation that affects conditional role bindings
245
295
  * must specify version `3`. This requirement applies to the following operations: * Getting a policy that includes a conditional role binding * Adding a conditional role binding to a
@@ -248,21 +298,27 @@ declare namespace gapi.client {
248
298
  * policy, and all of the conditions in the version `3` policy are lost. If a policy does not include any conditions, operations on that policy may specify any valid version or leave
249
299
  * the field unset. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
250
300
  */
251
- version?: number;
301
+ version?:
302
+ number;
252
303
  }
253
304
  interface ProjectCreationStatus {
254
305
  /** Creation time of the project creation workflow. */
255
- createTime?: string;
306
+ createTime?:
307
+ string;
256
308
  /** True if the project can be retrieved using GetProject. No other operations on the project are guaranteed to work until the project creation is complete. */
257
- gettable?: boolean;
309
+ gettable?:
310
+ boolean;
258
311
  /** True if the project creation process is complete. */
259
- ready?: boolean;
312
+ ready?:
313
+ boolean;
260
314
  }
261
315
  interface SearchFoldersRequest {
262
316
  /** Optional. The maximum number of folders to return in the response. The server can return fewer folders than requested. If unspecified, server picks an appropriate default. */
263
- pageSize?: number;
317
+ pageSize?:
318
+ number;
264
319
  /** Optional. A pagination token returned from a previous call to `SearchFolders` that indicates from where search should continue. */
265
- pageToken?: string;
320
+ pageToken?:
321
+ string;
266
322
  /**
267
323
  * Search criteria used to select the Folders to return. If no search criteria is specified then all accessible folders will be returned. Query expressions can be used to restrict
268
324
  * results based upon displayName, lifecycleState and parent, where the operators `=`, `NOT`, `AND` and `OR` can be used along with the suffix wildcard symbol `*`. The displayName
@@ -271,47 +327,57 @@ declare namespace gapi.client {
271
327
  * `parent=folders/123` returns Folder resources that have `folders/123` as a parent resource. * Query `parent=folders/123 AND lifecycleState=ACTIVE` returns active Folder resources
272
328
  * that have `folders/123` as a parent resource. * Query `displayName=\\"Test String\\"` returns Folder resources with display names that include both "Test" and "String".
273
329
  */
274
- query?: string;
330
+ query?:
331
+ string;
275
332
  }
276
333
  interface SearchFoldersResponse {
277
334
  /** A possibly paginated folder search results. the specified parent resource. */
278
- folders?: Folder[];
335
+ folders?:
336
+ Folder[];
279
337
  /** A pagination token returned from a previous call to `SearchFolders` that indicates from where searching should continue. */
280
- nextPageToken?: string;
338
+ nextPageToken?:
339
+ string;
281
340
  }
282
341
  interface SetIamPolicyRequest {
283
342
  /**
284
343
  * REQUIRED: The complete policy to be applied to the `resource`. The size of the policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Google Cloud
285
344
  * services (such as Projects) might reject them.
286
345
  */
287
- policy?: Policy;
346
+ policy?:
347
+ Policy;
288
348
  /**
289
349
  * OPTIONAL: A FieldMask specifying which fields of the policy to modify. Only the fields in the mask will be modified. If no mask is provided, the following default mask is used:
290
350
  * `paths: "bindings, etag"`
291
351
  */
292
- updateMask?: string;
352
+ updateMask?:
353
+ string;
293
354
  }
294
355
  interface Status {
295
356
  /** The status code, which should be an enum value of google.rpc.Code. */
296
- code?: number;
357
+ code?:
358
+ number;
297
359
  /** A list of messages that carry the error details. There is a common set of message types for APIs to use. */
298
- details?: Array<{ [P in string]: any }>;
360
+ details?:
361
+ Array<{ [P in string]: any }>;
299
362
  /**
300
363
  * 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
301
364
  * client.
302
365
  */
303
- message?: string;
366
+ message?:
367
+ string;
304
368
  }
305
369
  interface TestIamPermissionsRequest {
306
370
  /**
307
371
  * The set of permissions to check for the `resource`. Permissions with wildcards (such as `*` or `storage.*`) are not allowed. For more information see [IAM
308
372
  * Overview](https://cloud.google.com/iam/docs/overview#permissions).
309
373
  */
310
- permissions?: string[];
374
+ permissions?:
375
+ string[];
311
376
  }
312
377
  interface TestIamPermissionsResponse {
313
378
  /** A subset of `TestPermissionsRequest.permissions` that the caller is allowed. */
314
- permissions?: string[];
379
+ permissions?:
380
+ string[];
315
381
  }
316
382
  // tslint:disable-next-line:no-empty-interface
317
383
  interface UndeleteFolderMetadata {
@@ -349,57 +415,82 @@ declare namespace gapi.client {
349
415
  */
350
416
  create(request: {
351
417
  /** V1 error format. */
352
- "$.xgafv"?: string;
418
+ "$.xgafv"?:
419
+ string;
353
420
  /** OAuth access token. */
354
- access_token?: string;
421
+ access_token?:
422
+ string;
355
423
  /** Data format for response. */
356
- alt?: string;
424
+ alt?:
425
+ string;
357
426
  /** JSONP */
358
- callback?: string;
427
+ callback?:
428
+ string;
359
429
  /** Selector specifying which fields to include in a partial response. */
360
- fields?: string;
430
+ fields?:
431
+ string;
361
432
  /** 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. */
362
- key?: string;
433
+ key?:
434
+ string;
363
435
  /** OAuth 2.0 token for the current user. */
364
- oauth_token?: string;
436
+ oauth_token?:
437
+ string;
365
438
  /** Required. The resource name of the new Folder's parent. Must be of the form `folders/{folder_id}` or `organizations/{org_id}`. */
366
- parent?: string;
439
+ parent?:
440
+ string;
367
441
  /** Returns response with indentations and line breaks. */
368
- prettyPrint?: boolean;
442
+ prettyPrint?:
443
+ boolean;
369
444
  /** 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. */
370
- quotaUser?: string;
445
+ quotaUser?:
446
+ string;
371
447
  /** Upload protocol for media (e.g. "raw", "multipart"). */
372
- upload_protocol?: string;
448
+ upload_protocol?:
449
+ string;
373
450
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
374
- uploadType?: string;
451
+ uploadType?:
452
+ string;
375
453
  /** Request body */
376
- resource: Folder;
454
+ resource:
455
+ Folder;
377
456
  }): Request<Operation>;
378
457
  create(request: {
379
458
  /** V1 error format. */
380
- "$.xgafv"?: string;
459
+ "$.xgafv"?:
460
+ string;
381
461
  /** OAuth access token. */
382
- access_token?: string;
462
+ access_token?:
463
+ string;
383
464
  /** Data format for response. */
384
- alt?: string;
465
+ alt?:
466
+ string;
385
467
  /** JSONP */
386
- callback?: string;
468
+ callback?:
469
+ string;
387
470
  /** Selector specifying which fields to include in a partial response. */
388
- fields?: string;
471
+ fields?:
472
+ string;
389
473
  /** 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. */
390
- key?: string;
474
+ key?:
475
+ string;
391
476
  /** OAuth 2.0 token for the current user. */
392
- oauth_token?: string;
477
+ oauth_token?:
478
+ string;
393
479
  /** Required. The resource name of the new Folder's parent. Must be of the form `folders/{folder_id}` or `organizations/{org_id}`. */
394
- parent?: string;
480
+ parent?:
481
+ string;
395
482
  /** Returns response with indentations and line breaks. */
396
- prettyPrint?: boolean;
483
+ prettyPrint?:
484
+ boolean;
397
485
  /** 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. */
398
- quotaUser?: string;
486
+ quotaUser?:
487
+ string;
399
488
  /** Upload protocol for media (e.g. "raw", "multipart"). */
400
- upload_protocol?: string;
489
+ upload_protocol?:
490
+ string;
401
491
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
402
- uploadType?: string;
492
+ uploadType?:
493
+ string;
403
494
  },
404
495
  body: Folder): Request<Operation>;
405
496
  /**
@@ -409,29 +500,41 @@ declare namespace gapi.client {
409
500
  */
410
501
  delete(request?: {
411
502
  /** V1 error format. */
412
- "$.xgafv"?: string;
503
+ "$.xgafv"?:
504
+ string;
413
505
  /** OAuth access token. */
414
- access_token?: string;
506
+ access_token?:
507
+ string;
415
508
  /** Data format for response. */
416
- alt?: string;
509
+ alt?:
510
+ string;
417
511
  /** JSONP */
418
- callback?: string;
512
+ callback?:
513
+ string;
419
514
  /** Selector specifying which fields to include in a partial response. */
420
- fields?: string;
515
+ fields?:
516
+ string;
421
517
  /** 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. */
422
- key?: string;
518
+ key?:
519
+ string;
423
520
  /** Required. the resource name of the Folder to be deleted. Must be of the form `folders/{folder_id}`. */
424
- name: string;
521
+ name:
522
+ string;
425
523
  /** OAuth 2.0 token for the current user. */
426
- oauth_token?: string;
524
+ oauth_token?:
525
+ string;
427
526
  /** Returns response with indentations and line breaks. */
428
- prettyPrint?: boolean;
527
+ prettyPrint?:
528
+ boolean;
429
529
  /** 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. */
430
- quotaUser?: string;
530
+ quotaUser?:
531
+ string;
431
532
  /** Upload protocol for media (e.g. "raw", "multipart"). */
432
- upload_protocol?: string;
533
+ upload_protocol?:
534
+ string;
433
535
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
434
- uploadType?: string;
536
+ uploadType?:
537
+ string;
435
538
  }): Request<Folder>;
436
539
  /**
437
540
  * Retrieves a Folder identified by the supplied resource name. Valid Folder resource names have the format `folders/{folder_id}` (for example, `folders/1234`). The caller must have
@@ -439,29 +542,41 @@ declare namespace gapi.client {
439
542
  */
440
543
  get(request?: {
441
544
  /** V1 error format. */
442
- "$.xgafv"?: string;
545
+ "$.xgafv"?:
546
+ string;
443
547
  /** OAuth access token. */
444
- access_token?: string;
548
+ access_token?:
549
+ string;
445
550
  /** Data format for response. */
446
- alt?: string;
551
+ alt?:
552
+ string;
447
553
  /** JSONP */
448
- callback?: string;
554
+ callback?:
555
+ string;
449
556
  /** Selector specifying which fields to include in a partial response. */
450
- fields?: string;
557
+ fields?:
558
+ string;
451
559
  /** 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. */
452
- key?: string;
560
+ key?:
561
+ string;
453
562
  /** Required. The resource name of the Folder to retrieve. Must be of the form `folders/{folder_id}`. */
454
- name: string;
563
+ name:
564
+ string;
455
565
  /** OAuth 2.0 token for the current user. */
456
- oauth_token?: string;
566
+ oauth_token?:
567
+ string;
457
568
  /** Returns response with indentations and line breaks. */
458
- prettyPrint?: boolean;
569
+ prettyPrint?:
570
+ boolean;
459
571
  /** 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. */
460
- quotaUser?: string;
572
+ quotaUser?:
573
+ string;
461
574
  /** Upload protocol for media (e.g. "raw", "multipart"). */
462
- upload_protocol?: string;
575
+ upload_protocol?:
576
+ string;
463
577
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
464
- uploadType?: string;
578
+ uploadType?:
579
+ string;
465
580
  }): Request<Folder>;
466
581
  /**
467
582
  * Gets the access control policy for a Folder. The returned policy may be empty if no such policy or resource exists. The `resource` field should be the Folder's resource name, e.g.
@@ -469,32 +584,44 @@ declare namespace gapi.client {
469
584
  */
470
585
  getIamPolicy(request: {
471
586
  /** V1 error format. */
472
- "$.xgafv"?: string;
587
+ "$.xgafv"?:
588
+ string;
473
589
  /** OAuth access token. */
474
- access_token?: string;
590
+ access_token?:
591
+ string;
475
592
  /** Data format for response. */
476
- alt?: string;
593
+ alt?:
594
+ string;
477
595
  /** JSONP */
478
- callback?: string;
596
+ callback?:
597
+ string;
479
598
  /** Selector specifying which fields to include in a partial response. */
480
- fields?: string;
599
+ fields?:
600
+ string;
481
601
  /** 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. */
482
- key?: string;
602
+ key?:
603
+ string;
483
604
  /** OAuth 2.0 token for the current user. */
484
- oauth_token?: string;
605
+ oauth_token?:
606
+ string;
485
607
  /** Returns response with indentations and line breaks. */
486
- prettyPrint?: boolean;
608
+ prettyPrint?:
609
+ boolean;
487
610
  /** 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. */
488
- quotaUser?: string;
611
+ quotaUser?:
612
+ string;
489
613
  /**
490
614
  * REQUIRED: The resource for which the policy is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this
491
615
  * field.
492
616
  */
493
- resource: string;
617
+ resource:
618
+ string;
494
619
  /** Upload protocol for media (e.g. "raw", "multipart"). */
495
- upload_protocol?: string;
620
+ upload_protocol?:
621
+ string;
496
622
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
497
- uploadType?: string;
623
+ uploadType?:
624
+ string;
498
625
  },
499
626
  body: GetIamPolicyRequest): Request<Policy>;
500
627
  /**
@@ -503,38 +630,53 @@ declare namespace gapi.client {
503
630
  */
504
631
  list(request?: {
505
632
  /** V1 error format. */
506
- "$.xgafv"?: string;
633
+ "$.xgafv"?:
634
+ string;
507
635
  /** OAuth access token. */
508
- access_token?: string;
636
+ access_token?:
637
+ string;
509
638
  /** Data format for response. */
510
- alt?: string;
639
+ alt?:
640
+ string;
511
641
  /** JSONP */
512
- callback?: string;
642
+ callback?:
643
+ string;
513
644
  /** Selector specifying which fields to include in a partial response. */
514
- fields?: string;
645
+ fields?:
646
+ string;
515
647
  /** 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. */
516
- key?: string;
648
+ key?:
649
+ string;
517
650
  /** OAuth 2.0 token for the current user. */
518
- oauth_token?: string;
651
+ oauth_token?:
652
+ string;
519
653
  /** Optional. The maximum number of Folders to return in the response. The server can return fewer folders than requested. If unspecified, server picks an appropriate default. */
520
- pageSize?: number;
654
+ pageSize?:
655
+ number;
521
656
  /** Optional. A pagination token returned from a previous call to `ListFolders` that indicates where this listing should continue from. */
522
- pageToken?: string;
657
+ pageToken?:
658
+ string;
523
659
  /**
524
660
  * Required. The resource name of the Organization or Folder whose Folders are being listed. Must be of the form `folders/{folder_id}` or `organizations/{org_id}`. Access to this
525
661
  * method is controlled by checking the `resourcemanager.folders.list` permission on the `parent`.
526
662
  */
527
- parent?: string;
663
+ parent?:
664
+ string;
528
665
  /** Returns response with indentations and line breaks. */
529
- prettyPrint?: boolean;
666
+ prettyPrint?:
667
+ boolean;
530
668
  /** 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. */
531
- quotaUser?: string;
669
+ quotaUser?:
670
+ string;
532
671
  /** Optional. Controls whether Folders in the DELETE_REQUESTED state should be returned. Defaults to false. */
533
- showDeleted?: boolean;
672
+ showDeleted?:
673
+ boolean;
534
674
  /** Upload protocol for media (e.g. "raw", "multipart"). */
535
- upload_protocol?: string;
675
+ upload_protocol?:
676
+ string;
536
677
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
537
- uploadType?: string;
678
+ uploadType?:
679
+ string;
538
680
  }): Request<ListFoldersResponse>;
539
681
  /**
540
682
  * Moves a Folder under a new resource parent. Returns an Operation which can be used to track the progress of the folder move workflow. Upon success the Operation.response field will
@@ -546,57 +688,82 @@ declare namespace gapi.client {
546
688
  */
547
689
  move(request: {
548
690
  /** V1 error format. */
549
- "$.xgafv"?: string;
691
+ "$.xgafv"?:
692
+ string;
550
693
  /** OAuth access token. */
551
- access_token?: string;
694
+ access_token?:
695
+ string;
552
696
  /** Data format for response. */
553
- alt?: string;
697
+ alt?:
698
+ string;
554
699
  /** JSONP */
555
- callback?: string;
700
+ callback?:
701
+ string;
556
702
  /** Selector specifying which fields to include in a partial response. */
557
- fields?: string;
703
+ fields?:
704
+ string;
558
705
  /** 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. */
559
- key?: string;
706
+ key?:
707
+ string;
560
708
  /** Required. The resource name of the Folder to move. Must be of the form folders/{folder_id} */
561
- name: string;
709
+ name:
710
+ string;
562
711
  /** OAuth 2.0 token for the current user. */
563
- oauth_token?: string;
712
+ oauth_token?:
713
+ string;
564
714
  /** Returns response with indentations and line breaks. */
565
- prettyPrint?: boolean;
715
+ prettyPrint?:
716
+ boolean;
566
717
  /** 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. */
567
- quotaUser?: string;
718
+ quotaUser?:
719
+ string;
568
720
  /** Upload protocol for media (e.g. "raw", "multipart"). */
569
- upload_protocol?: string;
721
+ upload_protocol?:
722
+ string;
570
723
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
571
- uploadType?: string;
724
+ uploadType?:
725
+ string;
572
726
  /** Request body */
573
- resource: MoveFolderRequest;
727
+ resource:
728
+ MoveFolderRequest;
574
729
  }): Request<Operation>;
575
730
  move(request: {
576
731
  /** V1 error format. */
577
- "$.xgafv"?: string;
732
+ "$.xgafv"?:
733
+ string;
578
734
  /** OAuth access token. */
579
- access_token?: string;
735
+ access_token?:
736
+ string;
580
737
  /** Data format for response. */
581
- alt?: string;
738
+ alt?:
739
+ string;
582
740
  /** JSONP */
583
- callback?: string;
741
+ callback?:
742
+ string;
584
743
  /** Selector specifying which fields to include in a partial response. */
585
- fields?: string;
744
+ fields?:
745
+ string;
586
746
  /** 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. */
587
- key?: string;
747
+ key?:
748
+ string;
588
749
  /** Required. The resource name of the Folder to move. Must be of the form folders/{folder_id} */
589
- name: string;
750
+ name:
751
+ string;
590
752
  /** OAuth 2.0 token for the current user. */
591
- oauth_token?: string;
753
+ oauth_token?:
754
+ string;
592
755
  /** Returns response with indentations and line breaks. */
593
- prettyPrint?: boolean;
756
+ prettyPrint?:
757
+ boolean;
594
758
  /** 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. */
595
- quotaUser?: string;
759
+ quotaUser?:
760
+ string;
596
761
  /** Upload protocol for media (e.g. "raw", "multipart"). */
597
- upload_protocol?: string;
762
+ upload_protocol?:
763
+ string;
598
764
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
599
- uploadType?: string;
765
+ uploadType?:
766
+ string;
600
767
  },
601
768
  body: MoveFolderRequest): Request<Operation>;
602
769
  /**
@@ -607,61 +774,88 @@ declare namespace gapi.client {
607
774
  */
608
775
  patch(request: {
609
776
  /** V1 error format. */
610
- "$.xgafv"?: string;
777
+ "$.xgafv"?:
778
+ string;
611
779
  /** OAuth access token. */
612
- access_token?: string;
780
+ access_token?:
781
+ string;
613
782
  /** Data format for response. */
614
- alt?: string;
783
+ alt?:
784
+ string;
615
785
  /** JSONP */
616
- callback?: string;
786
+ callback?:
787
+ string;
617
788
  /** Selector specifying which fields to include in a partial response. */
618
- fields?: string;
789
+ fields?:
790
+ string;
619
791
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
620
- key?: string;
792
+ key?:
793
+ string;
621
794
  /** Output only. The resource name of the Folder. Its format is `folders/{folder_id}`, for example: "folders/1234". */
622
- name: string;
795
+ name:
796
+ string;
623
797
  /** OAuth 2.0 token for the current user. */
624
- oauth_token?: string;
798
+ oauth_token?:
799
+ string;
625
800
  /** Returns response with indentations and line breaks. */
626
- prettyPrint?: boolean;
801
+ prettyPrint?:
802
+ boolean;
627
803
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
628
- quotaUser?: string;
804
+ quotaUser?:
805
+ string;
629
806
  /** Required. Fields to be updated. Only the `display_name` can be updated. */
630
- updateMask?: string;
807
+ updateMask?:
808
+ string;
631
809
  /** Upload protocol for media (e.g. "raw", "multipart"). */
632
- upload_protocol?: string;
810
+ upload_protocol?:
811
+ string;
633
812
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
634
- uploadType?: string;
813
+ uploadType?:
814
+ string;
635
815
  /** Request body */
636
- resource: Folder;
816
+ resource:
817
+ Folder;
637
818
  }): Request<Folder>;
638
819
  patch(request: {
639
820
  /** V1 error format. */
640
- "$.xgafv"?: string;
821
+ "$.xgafv"?:
822
+ string;
641
823
  /** OAuth access token. */
642
- access_token?: string;
824
+ access_token?:
825
+ string;
643
826
  /** Data format for response. */
644
- alt?: string;
827
+ alt?:
828
+ string;
645
829
  /** JSONP */
646
- callback?: string;
830
+ callback?:
831
+ string;
647
832
  /** Selector specifying which fields to include in a partial response. */
648
- fields?: string;
833
+ fields?:
834
+ string;
649
835
  /** 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. */
650
- key?: string;
836
+ key?:
837
+ string;
651
838
  /** Output only. The resource name of the Folder. Its format is `folders/{folder_id}`, for example: "folders/1234". */
652
- name: string;
839
+ name:
840
+ string;
653
841
  /** OAuth 2.0 token for the current user. */
654
- oauth_token?: string;
842
+ oauth_token?:
843
+ string;
655
844
  /** Returns response with indentations and line breaks. */
656
- prettyPrint?: boolean;
845
+ prettyPrint?:
846
+ boolean;
657
847
  /** 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. */
658
- quotaUser?: string;
848
+ quotaUser?:
849
+ string;
659
850
  /** Required. Fields to be updated. Only the `display_name` can be updated. */
660
- updateMask?: string;
851
+ updateMask?:
852
+ string;
661
853
  /** Upload protocol for media (e.g. "raw", "multipart"). */
662
- upload_protocol?: string;
854
+ upload_protocol?:
855
+ string;
663
856
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
664
- uploadType?: string;
857
+ uploadType?:
858
+ string;
665
859
  },
666
860
  body: Folder): Request<Folder>;
667
861
  /**
@@ -670,53 +864,76 @@ declare namespace gapi.client {
670
864
  */
671
865
  search(request: {
672
866
  /** V1 error format. */
673
- "$.xgafv"?: string;
867
+ "$.xgafv"?:
868
+ string;
674
869
  /** OAuth access token. */
675
- access_token?: string;
870
+ access_token?:
871
+ string;
676
872
  /** Data format for response. */
677
- alt?: string;
873
+ alt?:
874
+ string;
678
875
  /** JSONP */
679
- callback?: string;
876
+ callback?:
877
+ string;
680
878
  /** Selector specifying which fields to include in a partial response. */
681
- fields?: string;
879
+ fields?:
880
+ string;
682
881
  /** 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. */
683
- key?: string;
882
+ key?:
883
+ string;
684
884
  /** OAuth 2.0 token for the current user. */
685
- oauth_token?: string;
885
+ oauth_token?:
886
+ string;
686
887
  /** Returns response with indentations and line breaks. */
687
- prettyPrint?: boolean;
888
+ prettyPrint?:
889
+ boolean;
688
890
  /** 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. */
689
- quotaUser?: string;
891
+ quotaUser?:
892
+ string;
690
893
  /** Upload protocol for media (e.g. "raw", "multipart"). */
691
- upload_protocol?: string;
894
+ upload_protocol?:
895
+ string;
692
896
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
693
- uploadType?: string;
897
+ uploadType?:
898
+ string;
694
899
  /** Request body */
695
- resource: SearchFoldersRequest;
900
+ resource:
901
+ SearchFoldersRequest;
696
902
  }): Request<SearchFoldersResponse>;
697
903
  search(request: {
698
904
  /** V1 error format. */
699
- "$.xgafv"?: string;
905
+ "$.xgafv"?:
906
+ string;
700
907
  /** OAuth access token. */
701
- access_token?: string;
908
+ access_token?:
909
+ string;
702
910
  /** Data format for response. */
703
- alt?: string;
911
+ alt?:
912
+ string;
704
913
  /** JSONP */
705
- callback?: string;
914
+ callback?:
915
+ string;
706
916
  /** Selector specifying which fields to include in a partial response. */
707
- fields?: string;
917
+ fields?:
918
+ string;
708
919
  /** 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. */
709
- key?: string;
920
+ key?:
921
+ string;
710
922
  /** OAuth 2.0 token for the current user. */
711
- oauth_token?: string;
923
+ oauth_token?:
924
+ string;
712
925
  /** Returns response with indentations and line breaks. */
713
- prettyPrint?: boolean;
926
+ prettyPrint?:
927
+ boolean;
714
928
  /** 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. */
715
- quotaUser?: string;
929
+ quotaUser?:
930
+ string;
716
931
  /** Upload protocol for media (e.g. "raw", "multipart"). */
717
- upload_protocol?: string;
932
+ upload_protocol?:
933
+ string;
718
934
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
719
- uploadType?: string;
935
+ uploadType?:
936
+ string;
720
937
  },
721
938
  body: SearchFoldersRequest): Request<SearchFoldersResponse>;
722
939
  /**
@@ -725,32 +942,44 @@ declare namespace gapi.client {
725
942
  */
726
943
  setIamPolicy(request: {
727
944
  /** V1 error format. */
728
- "$.xgafv"?: string;
945
+ "$.xgafv"?:
946
+ string;
729
947
  /** OAuth access token. */
730
- access_token?: string;
948
+ access_token?:
949
+ string;
731
950
  /** Data format for response. */
732
- alt?: string;
951
+ alt?:
952
+ string;
733
953
  /** JSONP */
734
- callback?: string;
954
+ callback?:
955
+ string;
735
956
  /** Selector specifying which fields to include in a partial response. */
736
- fields?: string;
957
+ fields?:
958
+ string;
737
959
  /** 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. */
738
- key?: string;
960
+ key?:
961
+ string;
739
962
  /** OAuth 2.0 token for the current user. */
740
- oauth_token?: string;
963
+ oauth_token?:
964
+ string;
741
965
  /** Returns response with indentations and line breaks. */
742
- prettyPrint?: boolean;
966
+ prettyPrint?:
967
+ boolean;
743
968
  /** 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. */
744
- quotaUser?: string;
969
+ quotaUser?:
970
+ string;
745
971
  /**
746
972
  * REQUIRED: The resource for which the policy is being specified. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this
747
973
  * field.
748
974
  */
749
- resource: string;
975
+ resource:
976
+ string;
750
977
  /** Upload protocol for media (e.g. "raw", "multipart"). */
751
- upload_protocol?: string;
978
+ upload_protocol?:
979
+ string;
752
980
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
753
- uploadType?: string;
981
+ uploadType?:
982
+ string;
754
983
  },
755
984
  body: SetIamPolicyRequest): Request<Policy>;
756
985
  /**
@@ -759,32 +988,44 @@ declare namespace gapi.client {
759
988
  */
760
989
  testIamPermissions(request: {
761
990
  /** V1 error format. */
762
- "$.xgafv"?: string;
991
+ "$.xgafv"?:
992
+ string;
763
993
  /** OAuth access token. */
764
- access_token?: string;
994
+ access_token?:
995
+ string;
765
996
  /** Data format for response. */
766
- alt?: string;
997
+ alt?:
998
+ string;
767
999
  /** JSONP */
768
- callback?: string;
1000
+ callback?:
1001
+ string;
769
1002
  /** Selector specifying which fields to include in a partial response. */
770
- fields?: string;
1003
+ fields?:
1004
+ string;
771
1005
  /** 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. */
772
- key?: string;
1006
+ key?:
1007
+ string;
773
1008
  /** OAuth 2.0 token for the current user. */
774
- oauth_token?: string;
1009
+ oauth_token?:
1010
+ string;
775
1011
  /** Returns response with indentations and line breaks. */
776
- prettyPrint?: boolean;
1012
+ prettyPrint?:
1013
+ boolean;
777
1014
  /** 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. */
778
- quotaUser?: string;
1015
+ quotaUser?:
1016
+ string;
779
1017
  /**
780
1018
  * REQUIRED: The resource for which the policy detail is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for
781
1019
  * this field.
782
1020
  */
783
- resource: string;
1021
+ resource:
1022
+ string;
784
1023
  /** Upload protocol for media (e.g. "raw", "multipart"). */
785
- upload_protocol?: string;
1024
+ upload_protocol?:
1025
+ string;
786
1026
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
787
- uploadType?: string;
1027
+ uploadType?:
1028
+ string;
788
1029
  },
789
1030
  body: TestIamPermissionsRequest): Request<TestIamPermissionsResponse>;
790
1031
  /**
@@ -794,57 +1035,82 @@ declare namespace gapi.client {
794
1035
  */
795
1036
  undelete(request: {
796
1037
  /** V1 error format. */
797
- "$.xgafv"?: string;
1038
+ "$.xgafv"?:
1039
+ string;
798
1040
  /** OAuth access token. */
799
- access_token?: string;
1041
+ access_token?:
1042
+ string;
800
1043
  /** Data format for response. */
801
- alt?: string;
1044
+ alt?:
1045
+ string;
802
1046
  /** JSONP */
803
- callback?: string;
1047
+ callback?:
1048
+ string;
804
1049
  /** Selector specifying which fields to include in a partial response. */
805
- fields?: string;
1050
+ fields?:
1051
+ string;
806
1052
  /** 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. */
807
- key?: string;
1053
+ key?:
1054
+ string;
808
1055
  /** Required. The resource name of the Folder to undelete. Must be of the form `folders/{folder_id}`. */
809
- name: string;
1056
+ name:
1057
+ string;
810
1058
  /** OAuth 2.0 token for the current user. */
811
- oauth_token?: string;
1059
+ oauth_token?:
1060
+ string;
812
1061
  /** Returns response with indentations and line breaks. */
813
- prettyPrint?: boolean;
1062
+ prettyPrint?:
1063
+ boolean;
814
1064
  /** 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. */
815
- quotaUser?: string;
1065
+ quotaUser?:
1066
+ string;
816
1067
  /** Upload protocol for media (e.g. "raw", "multipart"). */
817
- upload_protocol?: string;
1068
+ upload_protocol?:
1069
+ string;
818
1070
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
819
- uploadType?: string;
1071
+ uploadType?:
1072
+ string;
820
1073
  /** Request body */
821
- resource: UndeleteFolderRequest;
1074
+ resource:
1075
+ UndeleteFolderRequest;
822
1076
  }): Request<Folder>;
823
1077
  undelete(request: {
824
1078
  /** V1 error format. */
825
- "$.xgafv"?: string;
1079
+ "$.xgafv"?:
1080
+ string;
826
1081
  /** OAuth access token. */
827
- access_token?: string;
1082
+ access_token?:
1083
+ string;
828
1084
  /** Data format for response. */
829
- alt?: string;
1085
+ alt?:
1086
+ string;
830
1087
  /** JSONP */
831
- callback?: string;
1088
+ callback?:
1089
+ string;
832
1090
  /** Selector specifying which fields to include in a partial response. */
833
- fields?: string;
1091
+ fields?:
1092
+ string;
834
1093
  /** 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. */
835
- key?: string;
1094
+ key?:
1095
+ string;
836
1096
  /** Required. The resource name of the Folder to undelete. Must be of the form `folders/{folder_id}`. */
837
- name: string;
1097
+ name:
1098
+ string;
838
1099
  /** OAuth 2.0 token for the current user. */
839
- oauth_token?: string;
1100
+ oauth_token?:
1101
+ string;
840
1102
  /** Returns response with indentations and line breaks. */
841
- prettyPrint?: boolean;
1103
+ prettyPrint?:
1104
+ boolean;
842
1105
  /** 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. */
843
- quotaUser?: string;
1106
+ quotaUser?:
1107
+ string;
844
1108
  /** Upload protocol for media (e.g. "raw", "multipart"). */
845
- upload_protocol?: string;
1109
+ upload_protocol?:
1110
+ string;
846
1111
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
847
- uploadType?: string;
1112
+ uploadType?:
1113
+ string;
848
1114
  },
849
1115
  body: UndeleteFolderRequest): Request<Folder>;
850
1116
  }
@@ -852,29 +1118,41 @@ declare namespace gapi.client {
852
1118
  /** 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. */
853
1119
  get(request?: {
854
1120
  /** V1 error format. */
855
- "$.xgafv"?: string;
1121
+ "$.xgafv"?:
1122
+ string;
856
1123
  /** OAuth access token. */
857
- access_token?: string;
1124
+ access_token?:
1125
+ string;
858
1126
  /** Data format for response. */
859
- alt?: string;
1127
+ alt?:
1128
+ string;
860
1129
  /** JSONP */
861
- callback?: string;
1130
+ callback?:
1131
+ string;
862
1132
  /** Selector specifying which fields to include in a partial response. */
863
- fields?: string;
1133
+ fields?:
1134
+ string;
864
1135
  /** 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. */
865
- key?: string;
1136
+ key?:
1137
+ string;
866
1138
  /** The name of the operation resource. */
867
- name: string;
1139
+ name:
1140
+ string;
868
1141
  /** OAuth 2.0 token for the current user. */
869
- oauth_token?: string;
1142
+ oauth_token?:
1143
+ string;
870
1144
  /** Returns response with indentations and line breaks. */
871
- prettyPrint?: boolean;
1145
+ prettyPrint?:
1146
+ boolean;
872
1147
  /** 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. */
873
- quotaUser?: string;
1148
+ quotaUser?:
1149
+ string;
874
1150
  /** Upload protocol for media (e.g. "raw", "multipart"). */
875
- upload_protocol?: string;
1151
+ upload_protocol?:
1152
+ string;
876
1153
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
877
- uploadType?: string;
1154
+ uploadType?:
1155
+ string;
878
1156
  }): Request<Operation>;
879
1157
  }
880
1158