@maxim_mazurok/gapi.client.cloudresourcemanager-v1beta1 0.0.20230416 → 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 +659 -330
  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=v1beta1
12
- // Revision: 20230416
12
+ // Revision: 20230430
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -24,22 +24,27 @@ declare namespace gapi.client {
24
24
  namespace cloudresourcemanager {
25
25
  interface Ancestor {
26
26
  /** Resource id of the ancestor. */
27
- resourceId?: ResourceId;
27
+ resourceId?:
28
+ ResourceId;
28
29
  }
29
30
  interface AuditConfig {
30
31
  /** The configuration for logging of each type of permission. */
31
- auditLogConfigs?: AuditLogConfig[];
32
+ auditLogConfigs?:
33
+ AuditLogConfig[];
32
34
  /**
33
35
  * 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
34
36
  * services.
35
37
  */
36
- service?: string;
38
+ service?:
39
+ string;
37
40
  }
38
41
  interface AuditLogConfig {
39
42
  /** Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members. */
40
- exemptedMembers?: string[];
43
+ exemptedMembers?:
44
+ string[];
41
45
  /** The log type that this config enables. */
42
- logType?: string;
46
+ logType?:
47
+ string;
43
48
  }
44
49
  interface Binding {
45
50
  /**
@@ -47,7 +52,8 @@ declare namespace gapi.client {
47
52
  * 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
48
53
  * resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
49
54
  */
50
- condition?: Expr;
55
+ condition?:
56
+ Expr;
51
57
  /**
52
58
  * 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
53
59
  * 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
@@ -64,43 +70,58 @@ declare namespace gapi.client {
64
70
  * 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
65
71
  * retains the role in the binding.
66
72
  */
67
- members?: string[];
73
+ members?:
74
+ string[];
68
75
  /** Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. */
69
- role?: string;
76
+ role?:
77
+ string;
70
78
  }
71
79
  interface CloudresourcemanagerGoogleCloudResourcemanagerV2alpha1FolderOperation {
72
80
  /** The resource name of the folder or organization we are either creating the folder under or moving the folder to. */
73
- destinationParent?: string;
81
+ destinationParent?:
82
+ string;
74
83
  /** The display name of the folder. */
75
- displayName?: string;
84
+ displayName?:
85
+ string;
76
86
  /** The type of this operation. */
77
- operationType?: string;
87
+ operationType?:
88
+ string;
78
89
  /** The resource name of the folder's parent. Only applicable when the operation_type is MOVE. */
79
- sourceParent?: string;
90
+ sourceParent?:
91
+ string;
80
92
  }
81
93
  interface CloudresourcemanagerGoogleCloudResourcemanagerV2beta1FolderOperation {
82
94
  /** The resource name of the folder or organization we are either creating the folder under or moving the folder to. */
83
- destinationParent?: string;
95
+ destinationParent?:
96
+ string;
84
97
  /** The display name of the folder. */
85
- displayName?: string;
98
+ displayName?:
99
+ string;
86
100
  /** The type of this operation. */
87
- operationType?: string;
101
+ operationType?:
102
+ string;
88
103
  /** The resource name of the folder's parent. Only applicable when the operation_type is MOVE. */
89
- sourceParent?: string;
104
+ sourceParent?:
105
+ string;
90
106
  }
91
107
  interface CreateFolderMetadata {
92
108
  /** The display name of the folder. */
93
- displayName?: string;
109
+ displayName?:
110
+ string;
94
111
  /** The resource name of the folder or organization we are creating the folder under. */
95
- parent?: string;
112
+ parent?:
113
+ string;
96
114
  }
97
115
  interface CreateProjectMetadata {
98
116
  /** Creation time of the project creation workflow. */
99
- createTime?: string;
117
+ createTime?:
118
+ string;
100
119
  /** 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. */
101
- gettable?: boolean;
120
+ gettable?:
121
+ boolean;
102
122
  /** True if the project creation process is complete. */
103
- ready?: boolean;
123
+ ready?:
124
+ boolean;
104
125
  }
105
126
  // tslint:disable-next-line:no-empty-interface
106
127
  interface CreateTagBindingMetadata {
@@ -134,38 +155,49 @@ declare namespace gapi.client {
134
155
  }
135
156
  interface Expr {
136
157
  /** Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI. */
137
- description?: string;
158
+ description?:
159
+ string;
138
160
  /** Textual representation of an expression in Common Expression Language syntax. */
139
- expression?: string;
161
+ expression?:
162
+ string;
140
163
  /** Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file. */
141
- location?: string;
164
+ location?:
165
+ string;
142
166
  /** 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. */
143
- title?: string;
167
+ title?:
168
+ string;
144
169
  }
145
170
  interface FolderOperation {
146
171
  /** The resource name of the folder or organization we are either creating the folder under or moving the folder to. */
147
- destinationParent?: string;
172
+ destinationParent?:
173
+ string;
148
174
  /** The display name of the folder. */
149
- displayName?: string;
175
+ displayName?:
176
+ string;
150
177
  /** The type of this operation. */
151
- operationType?: string;
178
+ operationType?:
179
+ string;
152
180
  /** The resource name of the folder's parent. Only applicable when the operation_type is MOVE. */
153
- sourceParent?: string;
181
+ sourceParent?:
182
+ string;
154
183
  }
155
184
  interface FolderOperationError {
156
185
  /** The type of operation error experienced. */
157
- errorMessageId?: string;
186
+ errorMessageId?:
187
+ string;
158
188
  }
159
189
  // tslint:disable-next-line:no-empty-interface
160
190
  interface GetAncestryRequest {
161
191
  }
162
192
  interface GetAncestryResponse {
163
193
  /** Ancestors are ordered from bottom to top of the resource hierarchy. The first ancestor is the project itself, followed by the project's parent, etc. */
164
- ancestor?: Ancestor[];
194
+ ancestor?:
195
+ Ancestor[];
165
196
  }
166
197
  interface GetIamPolicyRequest {
167
198
  /** OPTIONAL: A `GetPolicyOptions` object for specifying options to `GetIamPolicy`. */
168
- options?: GetPolicyOptions;
199
+ options?:
200
+ GetPolicyOptions;
169
201
  }
170
202
  interface GetPolicyOptions {
171
203
  /**
@@ -175,16 +207,19 @@ declare namespace gapi.client {
175
207
  * bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM
176
208
  * documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
177
209
  */
178
- requestedPolicyVersion?: number;
210
+ requestedPolicyVersion?:
211
+ number;
179
212
  }
180
213
  interface ListOrganizationsResponse {
181
214
  /**
182
215
  * A pagination token to be used to retrieve the next page of results. If the result is too large to fit within the page size specified in the request, this field will be set with a
183
216
  * token that can be used to fetch the next page of results. If this field is empty, it indicates that this response contains the last page of results.
184
217
  */
185
- nextPageToken?: string;
218
+ nextPageToken?:
219
+ string;
186
220
  /** The list of Organizations that matched the list query, possibly paginated. */
187
- organizations?: Organization[];
221
+ organizations?:
222
+ Organization[];
188
223
  }
189
224
  interface ListProjectsResponse {
190
225
  /**
@@ -192,55 +227,69 @@ declare namespace gapi.client {
192
227
  * new list request with the `page_token` parameter gives the next page of the results. When `next_page_token` is not filled in, there is no next page and the list returned is the last
193
228
  * page in the result set. Pagination tokens have a limited lifetime.
194
229
  */
195
- nextPageToken?: string;
230
+ nextPageToken?:
231
+ string;
196
232
  /** The list of Projects that matched the list filter. This list can be paginated. */
197
- projects?: Project[];
233
+ projects?:
234
+ Project[];
198
235
  }
199
236
  interface MoveFolderMetadata {
200
237
  /** The resource name of the folder or organization to move the folder to. */
201
- destinationParent?: string;
238
+ destinationParent?:
239
+ string;
202
240
  /** The display name of the folder. */
203
- displayName?: string;
241
+ displayName?:
242
+ string;
204
243
  /** The resource name of the folder's parent. */
205
- sourceParent?: string;
244
+ sourceParent?:
245
+ string;
206
246
  }
207
247
  // tslint:disable-next-line:no-empty-interface
208
248
  interface MoveProjectMetadata {
209
249
  }
210
250
  interface Organization {
211
251
  /** Timestamp when the Organization was created. Assigned by the server. */
212
- creationTime?: string;
252
+ creationTime?:
253
+ string;
213
254
  /**
214
255
  * A human-readable string that refers to the Organization in the GCP Console UI. This string is set by the server and cannot be changed. The string will be set to the primary domain
215
256
  * (for example, "google.com") of the G Suite customer that owns the organization.
216
257
  */
217
- displayName?: string;
258
+ displayName?:
259
+ string;
218
260
  /** The organization's current lifecycle state. Assigned by the server. */
219
- lifecycleState?: string;
261
+ lifecycleState?:
262
+ string;
220
263
  /**
221
264
  * Output only. The resource name of the organization. This is the organization's relative path in the API. Its format is "organizations/[organization_id]". For example,
222
265
  * "organizations/1234".
223
266
  */
224
- name?: string;
267
+ name?:
268
+ string;
225
269
  /** An immutable id for the Organization that is assigned on creation. This should be omitted when creating a new Organization. This field is read-only. */
226
- organizationId?: string;
270
+ organizationId?:
271
+ string;
227
272
  /** The owner of this Organization. The owner should be specified on creation. Once set, it cannot be changed. This field is required. */
228
- owner?: OrganizationOwner;
273
+ owner?:
274
+ OrganizationOwner;
229
275
  }
230
276
  interface OrganizationOwner {
231
277
  /** The G Suite customer id used in the Directory API. */
232
- directoryCustomerId?: string;
278
+ directoryCustomerId?:
279
+ string;
233
280
  }
234
281
  interface Policy {
235
282
  /** Specifies cloud audit logging configuration for this policy. */
236
- auditConfigs?: AuditConfig[];
283
+ auditConfigs?:
284
+ AuditConfig[];
237
285
  /**
238
286
  * 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`
239
287
  * 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
240
288
  * 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
241
289
  * 1,450 principals to the `bindings` in the `Policy`.
242
290
  */
243
- bindings?: Binding[];
291
+ bindings?:
292
+ Binding[];
244
293
  /**
245
294
  * `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
246
295
  * 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
@@ -248,7 +297,8 @@ declare namespace gapi.client {
248
297
  * 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`
249
298
  * policy, and all of the conditions in the version `3` policy are lost.
250
299
  */
251
- etag?: string;
300
+ etag?:
301
+ string;
252
302
  /**
253
303
  * 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
254
304
  * 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
@@ -257,73 +307,90 @@ declare namespace gapi.client {
257
307
  * 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
258
308
  * 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).
259
309
  */
260
- version?: number;
310
+ version?:
311
+ number;
261
312
  }
262
313
  interface Project {
263
314
  /** Creation time. Read-only. */
264
- createTime?: string;
315
+ createTime?:
316
+ string;
265
317
  /**
266
318
  * The labels associated with this Project. Label keys must be between 1 and 63 characters long and must conform to the following regular expression: a-z{0,62}. Label values must be
267
319
  * between 0 and 63 characters long and must conform to the regular expression [a-z0-9_-]{0,63}. A label value can be empty. No more than 256 labels can be associated with a given
268
320
  * resource. Clients should store labels in a representation such as JSON that does not depend on specific characters being disallowed. Example: `"environment" : "dev"` Read-write.
269
321
  */
270
- labels?: { [P in string]: string };
322
+ labels?:
323
+ { [P in string]: string };
271
324
  /** The Project lifecycle state. Read-only. */
272
- lifecycleState?: string;
325
+ lifecycleState?:
326
+ string;
273
327
  /**
274
328
  * The optional user-assigned display name of the Project. When present it must be between 4 to 30 characters. Allowed characters are: lowercase and uppercase letters, numbers, hyphen,
275
329
  * single-quote, double-quote, space, and exclamation point. Example: `My Project` Read-write.
276
330
  */
277
- name?: string;
331
+ name?:
332
+ string;
278
333
  /**
279
334
  * An optional reference to a parent Resource. Supported parent types include "organization" and "folder". Once set, the parent cannot be cleared. The `parent` can be set on creation
280
335
  * or using the `UpdateProject` method; the end user must have the `resourcemanager.projects.create` permission on the parent. Read-write.
281
336
  */
282
- parent?: ResourceId;
337
+ parent?:
338
+ ResourceId;
283
339
  /**
284
340
  * The unique, user-assigned ID of the Project. It must be 6 to 30 lowercase letters, digits, or hyphens. It must start with a letter. Trailing hyphens are prohibited. Example:
285
341
  * `tokyo-rain-123` Read-only after creation.
286
342
  */
287
- projectId?: string;
343
+ projectId?:
344
+ string;
288
345
  /** The number uniquely identifying the project. Example: `415104041262` Read-only. */
289
- projectNumber?: string;
346
+ projectNumber?:
347
+ string;
290
348
  }
291
349
  interface ProjectCreationStatus {
292
350
  /** Creation time of the project creation workflow. */
293
- createTime?: string;
351
+ createTime?:
352
+ string;
294
353
  /** 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. */
295
- gettable?: boolean;
354
+ gettable?:
355
+ boolean;
296
356
  /** True if the project creation process is complete. */
297
- ready?: boolean;
357
+ ready?:
358
+ boolean;
298
359
  }
299
360
  interface ResourceId {
300
361
  /** Required field for the type-specific id. This should correspond to the id used in the type-specific API's. */
301
- id?: string;
362
+ id?:
363
+ string;
302
364
  /** Required field representing the resource type this id is for. At present, the valid types are "project", "folder", and "organization". */
303
- type?: string;
365
+ type?:
366
+ string;
304
367
  }
305
368
  interface SetIamPolicyRequest {
306
369
  /**
307
370
  * 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
308
371
  * services (such as Projects) might reject them.
309
372
  */
310
- policy?: Policy;
373
+ policy?:
374
+ Policy;
311
375
  /**
312
376
  * 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:
313
377
  * `paths: "bindings, etag"`
314
378
  */
315
- updateMask?: string;
379
+ updateMask?:
380
+ string;
316
381
  }
317
382
  interface TestIamPermissionsRequest {
318
383
  /**
319
384
  * The set of permissions to check for the `resource`. Permissions with wildcards (such as `*` or `storage.*`) are not allowed. For more information see [IAM
320
385
  * Overview](https://cloud.google.com/iam/docs/overview#permissions).
321
386
  */
322
- permissions?: string[];
387
+ permissions?:
388
+ string[];
323
389
  }
324
390
  interface TestIamPermissionsResponse {
325
391
  /** A subset of `TestPermissionsRequest.permissions` that the caller is allowed. */
326
- permissions?: string[];
392
+ permissions?:
393
+ string[];
327
394
  }
328
395
  // tslint:disable-next-line:no-empty-interface
329
396
  interface UndeleteFolderMetadata {
@@ -353,34 +420,47 @@ declare namespace gapi.client {
353
420
  /** Fetches an Organization resource identified by the specified resource name. */
354
421
  get(request?: {
355
422
  /** V1 error format. */
356
- "$.xgafv"?: string;
423
+ "$.xgafv"?:
424
+ string;
357
425
  /** OAuth access token. */
358
- access_token?: string;
426
+ access_token?:
427
+ string;
359
428
  /** Data format for response. */
360
- alt?: string;
429
+ alt?:
430
+ string;
361
431
  /** JSONP */
362
- callback?: string;
432
+ callback?:
433
+ string;
363
434
  /** Selector specifying which fields to include in a partial response. */
364
- fields?: string;
435
+ fields?:
436
+ string;
365
437
  /** 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. */
366
- key?: string;
438
+ key?:
439
+ string;
367
440
  /**
368
441
  * The resource name of the Organization to fetch. This is the organization's relative path in the API, formatted as "organizations/[organizationId]". For example,
369
442
  * "organizations/1234".
370
443
  */
371
- name: string;
444
+ name:
445
+ string;
372
446
  /** OAuth 2.0 token for the current user. */
373
- oauth_token?: string;
447
+ oauth_token?:
448
+ string;
374
449
  /** The id of the Organization resource to fetch. This field is deprecated and will be removed in v1. Use name instead. */
375
- organizationId?: string;
450
+ organizationId?:
451
+ string;
376
452
  /** Returns response with indentations and line breaks. */
377
- prettyPrint?: boolean;
453
+ prettyPrint?:
454
+ boolean;
378
455
  /** 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. */
379
- quotaUser?: string;
456
+ quotaUser?:
457
+ string;
380
458
  /** Upload protocol for media (e.g. "raw", "multipart"). */
381
- upload_protocol?: string;
459
+ upload_protocol?:
460
+ string;
382
461
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
383
- uploadType?: string;
462
+ uploadType?:
463
+ string;
384
464
  }): Request<Organization>;
385
465
  /**
386
466
  * Gets the access control policy for an Organization resource. May be empty if no such policy or resource exists. The `resource` field should be the organization's resource name, e.g.
@@ -388,32 +468,44 @@ declare namespace gapi.client {
388
468
  */
389
469
  getIamPolicy(request: {
390
470
  /** V1 error format. */
391
- "$.xgafv"?: string;
471
+ "$.xgafv"?:
472
+ string;
392
473
  /** OAuth access token. */
393
- access_token?: string;
474
+ access_token?:
475
+ string;
394
476
  /** Data format for response. */
395
- alt?: string;
477
+ alt?:
478
+ string;
396
479
  /** JSONP */
397
- callback?: string;
480
+ callback?:
481
+ string;
398
482
  /** Selector specifying which fields to include in a partial response. */
399
- fields?: string;
483
+ fields?:
484
+ string;
400
485
  /** 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. */
401
- key?: string;
486
+ key?:
487
+ string;
402
488
  /** OAuth 2.0 token for the current user. */
403
- oauth_token?: string;
489
+ oauth_token?:
490
+ string;
404
491
  /** Returns response with indentations and line breaks. */
405
- prettyPrint?: boolean;
492
+ prettyPrint?:
493
+ boolean;
406
494
  /** 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. */
407
- quotaUser?: string;
495
+ quotaUser?:
496
+ string;
408
497
  /**
409
498
  * 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
410
499
  * field.
411
500
  */
412
- resource: string;
501
+ resource:
502
+ string;
413
503
  /** Upload protocol for media (e.g. "raw", "multipart"). */
414
- upload_protocol?: string;
504
+ upload_protocol?:
505
+ string;
415
506
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
416
- uploadType?: string;
507
+ uploadType?:
508
+ string;
417
509
  },
418
510
  body: GetIamPolicyRequest): Request<Policy>;
419
511
  /**
@@ -422,160 +514,223 @@ declare namespace gapi.client {
422
514
  */
423
515
  list(request?: {
424
516
  /** V1 error format. */
425
- "$.xgafv"?: string;
517
+ "$.xgafv"?:
518
+ string;
426
519
  /** OAuth access token. */
427
- access_token?: string;
520
+ access_token?:
521
+ string;
428
522
  /** Data format for response. */
429
- alt?: string;
523
+ alt?:
524
+ string;
430
525
  /** JSONP */
431
- callback?: string;
526
+ callback?:
527
+ string;
432
528
  /** Selector specifying which fields to include in a partial response. */
433
- fields?: string;
529
+ fields?:
530
+ string;
434
531
  /**
435
532
  * An optional query string used to filter the Organizations to return in the response. Filter rules are case-insensitive. Organizations may be filtered by
436
533
  * `owner.directoryCustomerId` or by `domain`, where the domain is a G Suite domain, for example: * Filter `owner.directorycustomerid:123456789` returns Organization resources with
437
534
  * `owner.directory_customer_id` equal to `123456789`. * Filter `domain:google.com` returns Organization resources corresponding to the domain `google.com`. This field is optional.
438
535
  */
439
- filter?: string;
536
+ filter?:
537
+ string;
440
538
  /** 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. */
441
- key?: string;
539
+ key?:
540
+ string;
442
541
  /** OAuth 2.0 token for the current user. */
443
- oauth_token?: string;
542
+ oauth_token?:
543
+ string;
444
544
  /** The maximum number of Organizations to return in the response. This field is optional. */
445
- pageSize?: number;
545
+ pageSize?:
546
+ number;
446
547
  /** A pagination token returned from a previous call to `ListOrganizations` that indicates from where listing should continue. This field is optional. */
447
- pageToken?: string;
548
+ pageToken?:
549
+ string;
448
550
  /** Returns response with indentations and line breaks. */
449
- prettyPrint?: boolean;
551
+ prettyPrint?:
552
+ boolean;
450
553
  /** 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. */
451
- quotaUser?: string;
554
+ quotaUser?:
555
+ string;
452
556
  /** Upload protocol for media (e.g. "raw", "multipart"). */
453
- upload_protocol?: string;
557
+ upload_protocol?:
558
+ string;
454
559
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
455
- uploadType?: string;
560
+ uploadType?:
561
+ string;
456
562
  }): Request<ListOrganizationsResponse>;
457
563
  /** Sets the access control policy on an Organization resource. Replaces any existing policy. The `resource` field should be the organization's resource name, e.g. "organizations/123". */
458
564
  setIamPolicy(request: {
459
565
  /** V1 error format. */
460
- "$.xgafv"?: string;
566
+ "$.xgafv"?:
567
+ string;
461
568
  /** OAuth access token. */
462
- access_token?: string;
569
+ access_token?:
570
+ string;
463
571
  /** Data format for response. */
464
- alt?: string;
572
+ alt?:
573
+ string;
465
574
  /** JSONP */
466
- callback?: string;
575
+ callback?:
576
+ string;
467
577
  /** Selector specifying which fields to include in a partial response. */
468
- fields?: string;
578
+ fields?:
579
+ string;
469
580
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
470
- key?: string;
581
+ key?:
582
+ string;
471
583
  /** OAuth 2.0 token for the current user. */
472
- oauth_token?: string;
584
+ oauth_token?:
585
+ string;
473
586
  /** Returns response with indentations and line breaks. */
474
- prettyPrint?: boolean;
587
+ prettyPrint?:
588
+ boolean;
475
589
  /** 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. */
476
- quotaUser?: string;
590
+ quotaUser?:
591
+ string;
477
592
  /**
478
593
  * 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
479
594
  * field.
480
595
  */
481
- resource: string;
596
+ resource:
597
+ string;
482
598
  /** Upload protocol for media (e.g. "raw", "multipart"). */
483
- upload_protocol?: string;
599
+ upload_protocol?:
600
+ string;
484
601
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
485
- uploadType?: string;
602
+ uploadType?:
603
+ string;
486
604
  },
487
605
  body: SetIamPolicyRequest): Request<Policy>;
488
606
  /** Returns permissions that a caller has on the specified Organization. The `resource` field should be the organization's resource name, e.g. "organizations/123". */
489
607
  testIamPermissions(request: {
490
608
  /** V1 error format. */
491
- "$.xgafv"?: string;
609
+ "$.xgafv"?:
610
+ string;
492
611
  /** OAuth access token. */
493
- access_token?: string;
612
+ access_token?:
613
+ string;
494
614
  /** Data format for response. */
495
- alt?: string;
615
+ alt?:
616
+ string;
496
617
  /** JSONP */
497
- callback?: string;
618
+ callback?:
619
+ string;
498
620
  /** Selector specifying which fields to include in a partial response. */
499
- fields?: string;
621
+ fields?:
622
+ string;
500
623
  /** 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. */
501
- key?: string;
624
+ key?:
625
+ string;
502
626
  /** OAuth 2.0 token for the current user. */
503
- oauth_token?: string;
627
+ oauth_token?:
628
+ string;
504
629
  /** Returns response with indentations and line breaks. */
505
- prettyPrint?: boolean;
630
+ prettyPrint?:
631
+ boolean;
506
632
  /** 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. */
507
- quotaUser?: string;
633
+ quotaUser?:
634
+ string;
508
635
  /**
509
636
  * 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
510
637
  * this field.
511
638
  */
512
- resource: string;
639
+ resource:
640
+ string;
513
641
  /** Upload protocol for media (e.g. "raw", "multipart"). */
514
- upload_protocol?: string;
642
+ upload_protocol?:
643
+ string;
515
644
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
516
- uploadType?: string;
645
+ uploadType?:
646
+ string;
517
647
  },
518
648
  body: TestIamPermissionsRequest): Request<TestIamPermissionsResponse>;
519
649
  /** Updates an Organization resource identified by the specified resource name. */
520
650
  update(request: {
521
651
  /** V1 error format. */
522
- "$.xgafv"?: string;
652
+ "$.xgafv"?:
653
+ string;
523
654
  /** OAuth access token. */
524
- access_token?: string;
655
+ access_token?:
656
+ string;
525
657
  /** Data format for response. */
526
- alt?: string;
658
+ alt?:
659
+ string;
527
660
  /** JSONP */
528
- callback?: string;
661
+ callback?:
662
+ string;
529
663
  /** Selector specifying which fields to include in a partial response. */
530
- fields?: string;
664
+ fields?:
665
+ string;
531
666
  /** 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. */
532
- key?: string;
667
+ key?:
668
+ string;
533
669
  /**
534
670
  * Output only. The resource name of the organization. This is the organization's relative path in the API. Its format is "organizations/[organization_id]". For example,
535
671
  * "organizations/1234".
536
672
  */
537
- name: string;
673
+ name:
674
+ string;
538
675
  /** OAuth 2.0 token for the current user. */
539
- oauth_token?: string;
676
+ oauth_token?:
677
+ string;
540
678
  /** Returns response with indentations and line breaks. */
541
- prettyPrint?: boolean;
679
+ prettyPrint?:
680
+ boolean;
542
681
  /** 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. */
543
- quotaUser?: string;
682
+ quotaUser?:
683
+ string;
544
684
  /** Upload protocol for media (e.g. "raw", "multipart"). */
545
- upload_protocol?: string;
685
+ upload_protocol?:
686
+ string;
546
687
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
547
- uploadType?: string;
688
+ uploadType?:
689
+ string;
548
690
  /** Request body */
549
- resource: Organization;
691
+ resource:
692
+ Organization;
550
693
  }): Request<Organization>;
551
694
  update(request: {
552
695
  /** V1 error format. */
553
- "$.xgafv"?: string;
696
+ "$.xgafv"?:
697
+ string;
554
698
  /** OAuth access token. */
555
- access_token?: string;
699
+ access_token?:
700
+ string;
556
701
  /** Data format for response. */
557
- alt?: string;
702
+ alt?:
703
+ string;
558
704
  /** JSONP */
559
- callback?: string;
705
+ callback?:
706
+ string;
560
707
  /** Selector specifying which fields to include in a partial response. */
561
- fields?: string;
708
+ fields?:
709
+ string;
562
710
  /** 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. */
563
- key?: string;
711
+ key?:
712
+ string;
564
713
  /**
565
714
  * Output only. The resource name of the organization. This is the organization's relative path in the API. Its format is "organizations/[organization_id]". For example,
566
715
  * "organizations/1234".
567
716
  */
568
- name: string;
717
+ name:
718
+ string;
569
719
  /** OAuth 2.0 token for the current user. */
570
- oauth_token?: string;
720
+ oauth_token?:
721
+ string;
571
722
  /** Returns response with indentations and line breaks. */
572
- prettyPrint?: boolean;
723
+ prettyPrint?:
724
+ boolean;
573
725
  /** 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. */
574
- quotaUser?: string;
726
+ quotaUser?:
727
+ string;
575
728
  /** Upload protocol for media (e.g. "raw", "multipart"). */
576
- upload_protocol?: string;
729
+ upload_protocol?:
730
+ string;
577
731
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
578
- uploadType?: string;
732
+ uploadType?:
733
+ string;
579
734
  },
580
735
  body: Organization): Request<Organization>;
581
736
  }
@@ -588,57 +743,82 @@ declare namespace gapi.client {
588
743
  */
589
744
  create(request: {
590
745
  /** V1 error format. */
591
- "$.xgafv"?: string;
746
+ "$.xgafv"?:
747
+ string;
592
748
  /** OAuth access token. */
593
- access_token?: string;
749
+ access_token?:
750
+ string;
594
751
  /** Data format for response. */
595
- alt?: string;
752
+ alt?:
753
+ string;
596
754
  /** JSONP */
597
- callback?: string;
755
+ callback?:
756
+ string;
598
757
  /** Selector specifying which fields to include in a partial response. */
599
- fields?: string;
758
+ fields?:
759
+ string;
600
760
  /** 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. */
601
- key?: string;
761
+ key?:
762
+ string;
602
763
  /** OAuth 2.0 token for the current user. */
603
- oauth_token?: string;
764
+ oauth_token?:
765
+ string;
604
766
  /** Returns response with indentations and line breaks. */
605
- prettyPrint?: boolean;
767
+ prettyPrint?:
768
+ boolean;
606
769
  /** 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. */
607
- quotaUser?: string;
770
+ quotaUser?:
771
+ string;
608
772
  /** Upload protocol for media (e.g. "raw", "multipart"). */
609
- upload_protocol?: string;
773
+ upload_protocol?:
774
+ string;
610
775
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
611
- uploadType?: string;
776
+ uploadType?:
777
+ string;
612
778
  /** A now unused experiment opt-out option. */
613
- useLegacyStack?: boolean;
779
+ useLegacyStack?:
780
+ boolean;
614
781
  /** Request body */
615
- resource: Project;
782
+ resource:
783
+ Project;
616
784
  }): Request<Project>;
617
785
  create(request: {
618
786
  /** V1 error format. */
619
- "$.xgafv"?: string;
787
+ "$.xgafv"?:
788
+ string;
620
789
  /** OAuth access token. */
621
- access_token?: string;
790
+ access_token?:
791
+ string;
622
792
  /** Data format for response. */
623
- alt?: string;
793
+ alt?:
794
+ string;
624
795
  /** JSONP */
625
- callback?: string;
796
+ callback?:
797
+ string;
626
798
  /** Selector specifying which fields to include in a partial response. */
627
- fields?: string;
799
+ fields?:
800
+ string;
628
801
  /** 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. */
629
- key?: string;
802
+ key?:
803
+ string;
630
804
  /** OAuth 2.0 token for the current user. */
631
- oauth_token?: string;
805
+ oauth_token?:
806
+ string;
632
807
  /** Returns response with indentations and line breaks. */
633
- prettyPrint?: boolean;
808
+ prettyPrint?:
809
+ boolean;
634
810
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
635
- quotaUser?: string;
811
+ quotaUser?:
812
+ string;
636
813
  /** Upload protocol for media (e.g. "raw", "multipart"). */
637
- upload_protocol?: string;
814
+ upload_protocol?:
815
+ string;
638
816
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
639
- uploadType?: string;
817
+ uploadType?:
818
+ string;
640
819
  /** A now unused experiment opt-out option. */
641
- useLegacyStack?: boolean;
820
+ useLegacyStack?:
821
+ boolean;
642
822
  },
643
823
  body: Project): Request<Project>;
644
824
  /**
@@ -650,56 +830,80 @@ declare namespace gapi.client {
650
830
  */
651
831
  delete(request?: {
652
832
  /** V1 error format. */
653
- "$.xgafv"?: string;
833
+ "$.xgafv"?:
834
+ string;
654
835
  /** OAuth access token. */
655
- access_token?: string;
836
+ access_token?:
837
+ string;
656
838
  /** Data format for response. */
657
- alt?: string;
839
+ alt?:
840
+ string;
658
841
  /** JSONP */
659
- callback?: string;
842
+ callback?:
843
+ string;
660
844
  /** Selector specifying which fields to include in a partial response. */
661
- fields?: string;
845
+ fields?:
846
+ string;
662
847
  /** 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. */
663
- key?: string;
848
+ key?:
849
+ string;
664
850
  /** OAuth 2.0 token for the current user. */
665
- oauth_token?: string;
851
+ oauth_token?:
852
+ string;
666
853
  /** Returns response with indentations and line breaks. */
667
- prettyPrint?: boolean;
854
+ prettyPrint?:
855
+ boolean;
668
856
  /** The Project ID (for example, `foo-bar-123`). */
669
- projectId: string;
857
+ projectId:
858
+ string;
670
859
  /** 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. */
671
- quotaUser?: string;
860
+ quotaUser?:
861
+ string;
672
862
  /** Upload protocol for media (e.g. "raw", "multipart"). */
673
- upload_protocol?: string;
863
+ upload_protocol?:
864
+ string;
674
865
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
675
- uploadType?: string;
866
+ uploadType?:
867
+ string;
676
868
  }): Request<{}>;
677
869
  /** Retrieves the Project identified by the specified `project_id` (for example, `my-project-123`). The caller must have read permissions for this Project. */
678
870
  get(request?: {
679
871
  /** V1 error format. */
680
- "$.xgafv"?: string;
872
+ "$.xgafv"?:
873
+ string;
681
874
  /** OAuth access token. */
682
- access_token?: string;
875
+ access_token?:
876
+ string;
683
877
  /** Data format for response. */
684
- alt?: string;
878
+ alt?:
879
+ string;
685
880
  /** JSONP */
686
- callback?: string;
881
+ callback?:
882
+ string;
687
883
  /** Selector specifying which fields to include in a partial response. */
688
- fields?: string;
884
+ fields?:
885
+ string;
689
886
  /** 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. */
690
- key?: string;
887
+ key?:
888
+ string;
691
889
  /** OAuth 2.0 token for the current user. */
692
- oauth_token?: string;
890
+ oauth_token?:
891
+ string;
693
892
  /** Returns response with indentations and line breaks. */
694
- prettyPrint?: boolean;
893
+ prettyPrint?:
894
+ boolean;
695
895
  /** Required. The Project ID (for example, `my-project-123`). */
696
- projectId: string;
896
+ projectId:
897
+ string;
697
898
  /** 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. */
698
- quotaUser?: string;
899
+ quotaUser?:
900
+ string;
699
901
  /** Upload protocol for media (e.g. "raw", "multipart"). */
700
- upload_protocol?: string;
902
+ upload_protocol?:
903
+ string;
701
904
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
702
- uploadType?: string;
905
+ uploadType?:
906
+ string;
703
907
  }): Request<Project>;
704
908
  /**
705
909
  * Gets a list of ancestors in the resource hierarchy for the Project identified by the specified `project_id` (for example, `my-project-123`). The caller must have read permissions
@@ -707,57 +911,82 @@ declare namespace gapi.client {
707
911
  */
708
912
  getAncestry(request: {
709
913
  /** V1 error format. */
710
- "$.xgafv"?: string;
914
+ "$.xgafv"?:
915
+ string;
711
916
  /** OAuth access token. */
712
- access_token?: string;
917
+ access_token?:
918
+ string;
713
919
  /** Data format for response. */
714
- alt?: string;
920
+ alt?:
921
+ string;
715
922
  /** JSONP */
716
- callback?: string;
923
+ callback?:
924
+ string;
717
925
  /** Selector specifying which fields to include in a partial response. */
718
- fields?: string;
926
+ fields?:
927
+ string;
719
928
  /** 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. */
720
- key?: string;
929
+ key?:
930
+ string;
721
931
  /** OAuth 2.0 token for the current user. */
722
- oauth_token?: string;
932
+ oauth_token?:
933
+ string;
723
934
  /** Returns response with indentations and line breaks. */
724
- prettyPrint?: boolean;
935
+ prettyPrint?:
936
+ boolean;
725
937
  /** Required. The Project ID (for example, `my-project-123`). */
726
- projectId: string;
938
+ projectId:
939
+ string;
727
940
  /** 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. */
728
- quotaUser?: string;
941
+ quotaUser?:
942
+ string;
729
943
  /** Upload protocol for media (e.g. "raw", "multipart"). */
730
- upload_protocol?: string;
944
+ upload_protocol?:
945
+ string;
731
946
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
732
- uploadType?: string;
947
+ uploadType?:
948
+ string;
733
949
  /** Request body */
734
- resource: GetAncestryRequest;
950
+ resource:
951
+ GetAncestryRequest;
735
952
  }): Request<GetAncestryResponse>;
736
953
  getAncestry(request: {
737
954
  /** V1 error format. */
738
- "$.xgafv"?: string;
955
+ "$.xgafv"?:
956
+ string;
739
957
  /** OAuth access token. */
740
- access_token?: string;
958
+ access_token?:
959
+ string;
741
960
  /** Data format for response. */
742
- alt?: string;
961
+ alt?:
962
+ string;
743
963
  /** JSONP */
744
- callback?: string;
964
+ callback?:
965
+ string;
745
966
  /** Selector specifying which fields to include in a partial response. */
746
- fields?: string;
967
+ fields?:
968
+ string;
747
969
  /** 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. */
748
- key?: string;
970
+ key?:
971
+ string;
749
972
  /** OAuth 2.0 token for the current user. */
750
- oauth_token?: string;
973
+ oauth_token?:
974
+ string;
751
975
  /** Returns response with indentations and line breaks. */
752
- prettyPrint?: boolean;
976
+ prettyPrint?:
977
+ boolean;
753
978
  /** Required. The Project ID (for example, `my-project-123`). */
754
- projectId: string;
979
+ projectId:
980
+ string;
755
981
  /** 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. */
756
- quotaUser?: string;
982
+ quotaUser?:
983
+ string;
757
984
  /** Upload protocol for media (e.g. "raw", "multipart"). */
758
- upload_protocol?: string;
985
+ upload_protocol?:
986
+ string;
759
987
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
760
- uploadType?: string;
988
+ uploadType?:
989
+ string;
761
990
  },
762
991
  body: GetAncestryRequest): Request<GetAncestryResponse>;
763
992
  /**
@@ -766,32 +995,44 @@ declare namespace gapi.client {
766
995
  */
767
996
  getIamPolicy(request: {
768
997
  /** V1 error format. */
769
- "$.xgafv"?: string;
998
+ "$.xgafv"?:
999
+ string;
770
1000
  /** OAuth access token. */
771
- access_token?: string;
1001
+ access_token?:
1002
+ string;
772
1003
  /** Data format for response. */
773
- alt?: string;
1004
+ alt?:
1005
+ string;
774
1006
  /** JSONP */
775
- callback?: string;
1007
+ callback?:
1008
+ string;
776
1009
  /** Selector specifying which fields to include in a partial response. */
777
- fields?: string;
1010
+ fields?:
1011
+ string;
778
1012
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
779
- key?: string;
1013
+ key?:
1014
+ string;
780
1015
  /** OAuth 2.0 token for the current user. */
781
- oauth_token?: string;
1016
+ oauth_token?:
1017
+ string;
782
1018
  /** Returns response with indentations and line breaks. */
783
- prettyPrint?: boolean;
1019
+ prettyPrint?:
1020
+ boolean;
784
1021
  /** 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. */
785
- quotaUser?: string;
1022
+ quotaUser?:
1023
+ string;
786
1024
  /**
787
1025
  * 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
788
1026
  * field.
789
1027
  */
790
- resource: string;
1028
+ resource:
1029
+ string;
791
1030
  /** Upload protocol for media (e.g. "raw", "multipart"). */
792
- upload_protocol?: string;
1031
+ upload_protocol?:
1032
+ string;
793
1033
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
794
- uploadType?: string;
1034
+ uploadType?:
1035
+ string;
795
1036
  },
796
1037
  body: GetIamPolicyRequest): Request<Policy>;
797
1038
  /**
@@ -803,15 +1044,20 @@ declare namespace gapi.client {
803
1044
  */
804
1045
  list(request?: {
805
1046
  /** V1 error format. */
806
- "$.xgafv"?: string;
1047
+ "$.xgafv"?:
1048
+ string;
807
1049
  /** OAuth access token. */
808
- access_token?: string;
1050
+ access_token?:
1051
+ string;
809
1052
  /** Data format for response. */
810
- alt?: string;
1053
+ alt?:
1054
+ string;
811
1055
  /** JSONP */
812
- callback?: string;
1056
+ callback?:
1057
+ string;
813
1058
  /** Selector specifying which fields to include in a partial response. */
814
- fields?: string;
1059
+ fields?:
1060
+ string;
815
1061
  /**
816
1062
  * An expression for filtering the results of the request. Filter rules are case insensitive. If multiple fields are included in a filter query, the query will return results that
817
1063
  * match any of the fields. Some eligible fields for filtering are: + `name` + `id` + `labels.` (where *key* is the name of a label) + `parent.type` + `parent.id` Some examples of
@@ -823,23 +1069,32 @@ declare namespace gapi.client {
823
1069
  * contain both a `parent.type` and a `parent.id` restriction (example: "parent.type:folder parent.id:123"). In this case an alternate search index is used which provides more
824
1070
  * consistent results. Optional.
825
1071
  */
826
- filter?: string;
1072
+ filter?:
1073
+ string;
827
1074
  /** 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. */
828
- key?: string;
1075
+ key?:
1076
+ string;
829
1077
  /** OAuth 2.0 token for the current user. */
830
- oauth_token?: string;
1078
+ oauth_token?:
1079
+ string;
831
1080
  /** The maximum number of Projects to return in the response. The server can return fewer Projects than requested. If unspecified, server picks an appropriate default. Optional. */
832
- pageSize?: number;
1081
+ pageSize?:
1082
+ number;
833
1083
  /** A pagination token returned from a previous call to ListProjects that indicates from where listing should continue. Optional. */
834
- pageToken?: string;
1084
+ pageToken?:
1085
+ string;
835
1086
  /** Returns response with indentations and line breaks. */
836
- prettyPrint?: boolean;
1087
+ prettyPrint?:
1088
+ boolean;
837
1089
  /** 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. */
838
- quotaUser?: string;
1090
+ quotaUser?:
1091
+ string;
839
1092
  /** Upload protocol for media (e.g. "raw", "multipart"). */
840
- upload_protocol?: string;
1093
+ upload_protocol?:
1094
+ string;
841
1095
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
842
- uploadType?: string;
1096
+ uploadType?:
1097
+ string;
843
1098
  }): Request<ListProjectsResponse>;
844
1099
  /**
845
1100
  * Sets the IAM access control policy for the specified Project. CAUTION: This method will replace the existing policy, and cannot be used to append additional IAM settings. NOTE:
@@ -857,63 +1112,87 @@ declare namespace gapi.client {
857
1112
  */
858
1113
  setIamPolicy(request: {
859
1114
  /** V1 error format. */
860
- "$.xgafv"?: string;
1115
+ "$.xgafv"?:
1116
+ string;
861
1117
  /** OAuth access token. */
862
- access_token?: string;
1118
+ access_token?:
1119
+ string;
863
1120
  /** Data format for response. */
864
- alt?: string;
1121
+ alt?:
1122
+ string;
865
1123
  /** JSONP */
866
- callback?: string;
1124
+ callback?:
1125
+ string;
867
1126
  /** Selector specifying which fields to include in a partial response. */
868
- fields?: string;
1127
+ fields?:
1128
+ string;
869
1129
  /** 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. */
870
- key?: string;
1130
+ key?:
1131
+ string;
871
1132
  /** OAuth 2.0 token for the current user. */
872
- oauth_token?: string;
1133
+ oauth_token?:
1134
+ string;
873
1135
  /** Returns response with indentations and line breaks. */
874
- prettyPrint?: boolean;
1136
+ prettyPrint?:
1137
+ boolean;
875
1138
  /** 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. */
876
- quotaUser?: string;
1139
+ quotaUser?:
1140
+ string;
877
1141
  /**
878
1142
  * 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
879
1143
  * field.
880
1144
  */
881
- resource: string;
1145
+ resource:
1146
+ string;
882
1147
  /** Upload protocol for media (e.g. "raw", "multipart"). */
883
- upload_protocol?: string;
1148
+ upload_protocol?:
1149
+ string;
884
1150
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
885
- uploadType?: string;
1151
+ uploadType?:
1152
+ string;
886
1153
  },
887
1154
  body: SetIamPolicyRequest): Request<Policy>;
888
1155
  /** Returns permissions that a caller has on the specified Project. */
889
1156
  testIamPermissions(request: {
890
1157
  /** V1 error format. */
891
- "$.xgafv"?: string;
1158
+ "$.xgafv"?:
1159
+ string;
892
1160
  /** OAuth access token. */
893
- access_token?: string;
1161
+ access_token?:
1162
+ string;
894
1163
  /** Data format for response. */
895
- alt?: string;
1164
+ alt?:
1165
+ string;
896
1166
  /** JSONP */
897
- callback?: string;
1167
+ callback?:
1168
+ string;
898
1169
  /** Selector specifying which fields to include in a partial response. */
899
- fields?: string;
1170
+ fields?:
1171
+ string;
900
1172
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
901
- key?: string;
1173
+ key?:
1174
+ string;
902
1175
  /** OAuth 2.0 token for the current user. */
903
- oauth_token?: string;
1176
+ oauth_token?:
1177
+ string;
904
1178
  /** Returns response with indentations and line breaks. */
905
- prettyPrint?: boolean;
1179
+ prettyPrint?:
1180
+ boolean;
906
1181
  /** 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. */
907
- quotaUser?: string;
1182
+ quotaUser?:
1183
+ string;
908
1184
  /**
909
1185
  * 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
910
1186
  * this field.
911
1187
  */
912
- resource: string;
1188
+ resource:
1189
+ string;
913
1190
  /** Upload protocol for media (e.g. "raw", "multipart"). */
914
- upload_protocol?: string;
1191
+ upload_protocol?:
1192
+ string;
915
1193
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
916
- uploadType?: string;
1194
+ uploadType?:
1195
+ string;
917
1196
  },
918
1197
  body: TestIamPermissionsRequest): Request<TestIamPermissionsResponse>;
919
1198
  /**
@@ -922,113 +1201,163 @@ declare namespace gapi.client {
922
1201
  */
923
1202
  undelete(request: {
924
1203
  /** V1 error format. */
925
- "$.xgafv"?: string;
1204
+ "$.xgafv"?:
1205
+ string;
926
1206
  /** OAuth access token. */
927
- access_token?: string;
1207
+ access_token?:
1208
+ string;
928
1209
  /** Data format for response. */
929
- alt?: string;
1210
+ alt?:
1211
+ string;
930
1212
  /** JSONP */
931
- callback?: string;
1213
+ callback?:
1214
+ string;
932
1215
  /** Selector specifying which fields to include in a partial response. */
933
- fields?: string;
1216
+ fields?:
1217
+ string;
934
1218
  /** 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. */
935
- key?: string;
1219
+ key?:
1220
+ string;
936
1221
  /** OAuth 2.0 token for the current user. */
937
- oauth_token?: string;
1222
+ oauth_token?:
1223
+ string;
938
1224
  /** Returns response with indentations and line breaks. */
939
- prettyPrint?: boolean;
1225
+ prettyPrint?:
1226
+ boolean;
940
1227
  /** Required. The project ID (for example, `foo-bar-123`). */
941
- projectId: string;
1228
+ projectId:
1229
+ string;
942
1230
  /** 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. */
943
- quotaUser?: string;
1231
+ quotaUser?:
1232
+ string;
944
1233
  /** Upload protocol for media (e.g. "raw", "multipart"). */
945
- upload_protocol?: string;
1234
+ upload_protocol?:
1235
+ string;
946
1236
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
947
- uploadType?: string;
1237
+ uploadType?:
1238
+ string;
948
1239
  /** Request body */
949
- resource: UndeleteProjectRequest;
1240
+ resource:
1241
+ UndeleteProjectRequest;
950
1242
  }): Request<{}>;
951
1243
  undelete(request: {
952
1244
  /** V1 error format. */
953
- "$.xgafv"?: string;
1245
+ "$.xgafv"?:
1246
+ string;
954
1247
  /** OAuth access token. */
955
- access_token?: string;
1248
+ access_token?:
1249
+ string;
956
1250
  /** Data format for response. */
957
- alt?: string;
1251
+ alt?:
1252
+ string;
958
1253
  /** JSONP */
959
- callback?: string;
1254
+ callback?:
1255
+ string;
960
1256
  /** Selector specifying which fields to include in a partial response. */
961
- fields?: string;
1257
+ fields?:
1258
+ string;
962
1259
  /** 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. */
963
- key?: string;
1260
+ key?:
1261
+ string;
964
1262
  /** OAuth 2.0 token for the current user. */
965
- oauth_token?: string;
1263
+ oauth_token?:
1264
+ string;
966
1265
  /** Returns response with indentations and line breaks. */
967
- prettyPrint?: boolean;
1266
+ prettyPrint?:
1267
+ boolean;
968
1268
  /** Required. The project ID (for example, `foo-bar-123`). */
969
- projectId: string;
1269
+ projectId:
1270
+ string;
970
1271
  /** 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. */
971
- quotaUser?: string;
1272
+ quotaUser?:
1273
+ string;
972
1274
  /** Upload protocol for media (e.g. "raw", "multipart"). */
973
- upload_protocol?: string;
1275
+ upload_protocol?:
1276
+ string;
974
1277
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
975
- uploadType?: string;
1278
+ uploadType?:
1279
+ string;
976
1280
  },
977
1281
  body: UndeleteProjectRequest): Request<{}>;
978
1282
  /** Updates the attributes of the Project identified by the specified `project_id` (for example, `my-project-123`). The caller must have modify permissions for this Project. */
979
1283
  update(request: {
980
1284
  /** V1 error format. */
981
- "$.xgafv"?: string;
1285
+ "$.xgafv"?:
1286
+ string;
982
1287
  /** OAuth access token. */
983
- access_token?: string;
1288
+ access_token?:
1289
+ string;
984
1290
  /** Data format for response. */
985
- alt?: string;
1291
+ alt?:
1292
+ string;
986
1293
  /** JSONP */
987
- callback?: string;
1294
+ callback?:
1295
+ string;
988
1296
  /** Selector specifying which fields to include in a partial response. */
989
- fields?: string;
1297
+ fields?:
1298
+ string;
990
1299
  /** 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. */
991
- key?: string;
1300
+ key?:
1301
+ string;
992
1302
  /** OAuth 2.0 token for the current user. */
993
- oauth_token?: string;
1303
+ oauth_token?:
1304
+ string;
994
1305
  /** Returns response with indentations and line breaks. */
995
- prettyPrint?: boolean;
1306
+ prettyPrint?:
1307
+ boolean;
996
1308
  /** The project ID (for example, `my-project-123`). */
997
- projectId: string;
1309
+ projectId:
1310
+ string;
998
1311
  /** 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. */
999
- quotaUser?: string;
1312
+ quotaUser?:
1313
+ string;
1000
1314
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1001
- upload_protocol?: string;
1315
+ upload_protocol?:
1316
+ string;
1002
1317
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1003
- uploadType?: string;
1318
+ uploadType?:
1319
+ string;
1004
1320
  /** Request body */
1005
- resource: Project;
1321
+ resource:
1322
+ Project;
1006
1323
  }): Request<Project>;
1007
1324
  update(request: {
1008
1325
  /** V1 error format. */
1009
- "$.xgafv"?: string;
1326
+ "$.xgafv"?:
1327
+ string;
1010
1328
  /** OAuth access token. */
1011
- access_token?: string;
1329
+ access_token?:
1330
+ string;
1012
1331
  /** Data format for response. */
1013
- alt?: string;
1332
+ alt?:
1333
+ string;
1014
1334
  /** JSONP */
1015
- callback?: string;
1335
+ callback?:
1336
+ string;
1016
1337
  /** Selector specifying which fields to include in a partial response. */
1017
- fields?: string;
1338
+ fields?:
1339
+ string;
1018
1340
  /** 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. */
1019
- key?: string;
1341
+ key?:
1342
+ string;
1020
1343
  /** OAuth 2.0 token for the current user. */
1021
- oauth_token?: string;
1344
+ oauth_token?:
1345
+ string;
1022
1346
  /** Returns response with indentations and line breaks. */
1023
- prettyPrint?: boolean;
1347
+ prettyPrint?:
1348
+ boolean;
1024
1349
  /** The project ID (for example, `my-project-123`). */
1025
- projectId: string;
1350
+ projectId:
1351
+ string;
1026
1352
  /** 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. */
1027
- quotaUser?: string;
1353
+ quotaUser?:
1354
+ string;
1028
1355
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1029
- upload_protocol?: string;
1356
+ upload_protocol?:
1357
+ string;
1030
1358
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1031
- uploadType?: string;
1359
+ uploadType?:
1360
+ string;
1032
1361
  },
1033
1362
  body: Project): Request<Project>;
1034
1363
  }