@maxim_mazurok/gapi.client.workstations-v1beta 0.0.20230423 → 0.0.20230510

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/index.d.ts +1398 -693
  2. package/package.json +1 -1
  3. package/readme.md +1 -1
  4. package/tests.ts +13 -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://workstations.googleapis.com/$discovery/rest?version=v1beta
12
- // Revision: 20230423
12
+ // Revision: 20230510
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -22,20 +22,32 @@ declare namespace gapi.client {
22
22
  function load(name: "workstations", version: "v1beta", callback: () => any): void;
23
23
 
24
24
  namespace workstations {
25
+ interface Accelerator {
26
+ /** Number of accelerator cards exposed to the instance. */
27
+ count?:
28
+ number;
29
+ /** Type of accelerator resource to attach to the instance, for example, "nvidia-tesla-p100". */
30
+ type?:
31
+ string;
32
+ }
25
33
  interface AuditConfig {
26
34
  /** The configuration for logging of each type of permission. */
27
- auditLogConfigs?: AuditLogConfig[];
35
+ auditLogConfigs?:
36
+ AuditLogConfig[];
28
37
  /**
29
38
  * 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
39
  * services.
31
40
  */
32
- service?: string;
41
+ service?:
42
+ string;
33
43
  }
34
44
  interface AuditLogConfig {
35
45
  /** Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members. */
36
- exemptedMembers?: string[];
46
+ exemptedMembers?:
47
+ string[];
37
48
  /** The log type that this config enables. */
38
- logType?: string;
49
+ logType?:
50
+ string;
39
51
  }
40
52
  interface Binding {
41
53
  /**
@@ -43,7 +55,8 @@ declare namespace gapi.client {
43
55
  * 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
56
  * resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
45
57
  */
46
- condition?: Expr;
58
+ condition?:
59
+ Expr;
47
60
  /**
48
61
  * 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
62
  * 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,219 +73,295 @@ declare namespace gapi.client {
60
73
  * 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
74
  * retains the role in the binding.
62
75
  */
63
- members?: string[];
76
+ members?:
77
+ string[];
64
78
  /** Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. */
65
- role?: string;
79
+ role?:
80
+ string;
66
81
  }
67
82
  // tslint:disable-next-line:no-empty-interface
68
83
  interface CancelOperationRequest {
69
84
  }
70
85
  interface Container {
71
86
  /** Arguments passed to the entrypoint. */
72
- args?: string[];
87
+ args?:
88
+ string[];
73
89
  /** If set, overrides the default ENTRYPOINT specified by the image. */
74
- command?: string[];
90
+ command?:
91
+ string[];
75
92
  /** Environment variables passed to the container's entrypoint. */
76
- env?: { [P in string]: string };
93
+ env?:
94
+ { [P in string]: string };
77
95
  /** Docker image defining the container. This image must be accessible by the service account specified in the workstation configuration. */
78
- image?: string;
96
+ image?:
97
+ string;
79
98
  /** If set, overrides the USER specified in the image with the given uid. */
80
- runAsUser?: number;
99
+ runAsUser?:
100
+ number;
81
101
  /** If set, overrides the default DIR specified by the image. */
82
- workingDir?: string;
102
+ workingDir?:
103
+ string;
83
104
  }
84
105
  interface CustomerEncryptionKey {
85
- /** Immutable. The name of the Google Cloud KMS encryption key. For example, `projects/PROJECT_ID/locations/REGION/keyRings/KEY_RING/cryptoKeys/KEY_NAME`. */
86
- kmsKey?: string;
106
+ /**
107
+ * Immutable. The name of the Google Cloud KMS encryption key. For example, `projects/PROJECT_ID/locations/REGION/keyRings/KEY_RING/cryptoKeys/KEY_NAME`. The key must be in the same
108
+ * region as the workstation configuration.
109
+ */
110
+ kmsKey?:
111
+ string;
87
112
  /**
88
113
  * Immutable. The service account to use with the specified KMS key. We recommend that you use a separate service account and follow KMS best practices. For more information, see
89
114
  * [Separation of duties](https://cloud.google.com/kms/docs/separation-of-duties) and `gcloud kms keys add-iam-policy-binding`
90
115
  * [`--member`](https://cloud.google.com/sdk/gcloud/reference/kms/keys/add-iam-policy-binding#--member).
91
116
  */
92
- kmsKeyServiceAccount?: string;
117
+ kmsKeyServiceAccount?:
118
+ string;
93
119
  }
94
120
  interface Expr {
95
121
  /** Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI. */
96
- description?: string;
122
+ description?:
123
+ string;
97
124
  /** Textual representation of an expression in Common Expression Language syntax. */
98
- expression?: string;
125
+ expression?:
126
+ string;
99
127
  /** Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file. */
100
- location?: string;
128
+ location?:
129
+ string;
101
130
  /** 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. */
102
- title?: string;
131
+ title?:
132
+ string;
103
133
  }
104
134
  interface GceConfidentialInstanceConfig {
105
135
  /** Whether the instance has confidential compute enabled. */
106
- enableConfidentialCompute?: boolean;
136
+ enableConfidentialCompute?:
137
+ boolean;
107
138
  }
108
139
  interface GceInstance {
140
+ /** A list of the type and count of accelerator cards attached to the instance. */
141
+ accelerators?:
142
+ Accelerator[];
109
143
  /** Size of the boot disk in GB. Defaults to 50. */
110
- bootDiskSizeGb?: number;
144
+ bootDiskSizeGb?:
145
+ number;
111
146
  /** A set of Compute Engine Confidential VM instance options. */
112
- confidentialInstanceConfig?: GceConfidentialInstanceConfig;
147
+ confidentialInstanceConfig?:
148
+ GceConfidentialInstanceConfig;
113
149
  /** Whether instances have no public IP address. */
114
- disablePublicIpAddresses?: boolean;
150
+ disablePublicIpAddresses?:
151
+ boolean;
115
152
  /** The name of a Compute Engine machine type. */
116
- machineType?: string;
153
+ machineType?:
154
+ string;
117
155
  /** Output only. Number of instances currently available in the pool for faster workstation startup. */
118
- pooledInstances?: number;
156
+ pooledInstances?:
157
+ number;
119
158
  /** Number of instances to pool for faster workstation startup. */
120
- poolSize?: number;
159
+ poolSize?:
160
+ number;
121
161
  /**
122
162
  * Email address of the service account used on VM instances used to support this configuration. If not set, VMs run with a Google-managed service account. This service account must
123
163
  * have permission to pull the specified container image; otherwise, the image must be publicly accessible.
124
164
  */
125
- serviceAccount?: string;
165
+ serviceAccount?:
166
+ string;
126
167
  /** A set of Compute Engine Shielded instance options. */
127
- shieldedInstanceConfig?: GceShieldedInstanceConfig;
168
+ shieldedInstanceConfig?:
169
+ GceShieldedInstanceConfig;
128
170
  /** Network tags to add to the Compute Engine machines backing the Workstations. */
129
- tags?: string[];
171
+ tags?:
172
+ string[];
130
173
  }
131
174
  interface GceRegionalPersistentDisk {
132
175
  /** Type of the disk to use. Defaults to pd-standard. */
133
- diskType?: string;
176
+ diskType?:
177
+ string;
134
178
  /** Type of file system that the disk should be formatted with. The workstation image must support this file system type. Must be empty if source_snapshot is set. Defaults to ext4. */
135
- fsType?: string;
179
+ fsType?:
180
+ string;
136
181
  /** What should happen to the disk after the workstation is deleted. Defaults to DELETE. */
137
- reclaimPolicy?: string;
182
+ reclaimPolicy?:
183
+ string;
138
184
  /** Size of the disk in GB. Must be empty if source_snapshot is set. Defaults to 200. */
139
- sizeGb?: number;
185
+ sizeGb?:
186
+ number;
140
187
  /** Name of the snapshot to use as the source for the disk. If set, size_gb and fs_type must be empty. */
141
- sourceSnapshot?: string;
188
+ sourceSnapshot?:
189
+ string;
142
190
  }
143
191
  interface GceShieldedInstanceConfig {
144
192
  /** Whether the instance has integrity monitoring enabled. */
145
- enableIntegrityMonitoring?: boolean;
193
+ enableIntegrityMonitoring?:
194
+ boolean;
146
195
  /** Whether the instance has Secure Boot enabled. */
147
- enableSecureBoot?: boolean;
196
+ enableSecureBoot?:
197
+ boolean;
148
198
  /** Whether the instance has the vTPM enabled. */
149
- enableVtpm?: boolean;
199
+ enableVtpm?:
200
+ boolean;
150
201
  }
151
202
  interface GenerateAccessTokenRequest {
152
203
  /**
153
204
  * Desired expiration time of the access token. This value must be at most 24 hours in the future. If a value is not specified, the token's expiration time will be set to a default
154
205
  * value of 1 hour in the future.
155
206
  */
156
- expireTime?: string;
207
+ expireTime?:
208
+ string;
157
209
  /** Desired lifetime duration of the access token. This value must be at most 24 hours. If a value is not specified, the token's lifetime will be set to a default value of 1 hour. */
158
- ttl?: string;
210
+ ttl?:
211
+ string;
159
212
  }
160
213
  interface GenerateAccessTokenResponse {
161
214
  /**
162
215
  * The generated bearer access token. To use this token, include it in an Authorization header of an HTTP request sent to the associated workstation's hostname—for example,
163
216
  * `Authorization: Bearer `.
164
217
  */
165
- accessToken?: string;
218
+ accessToken?:
219
+ string;
166
220
  /** Time at which the generated token will expire. */
167
- expireTime?: string;
221
+ expireTime?:
222
+ string;
168
223
  }
169
224
  // tslint:disable-next-line:no-empty-interface
170
225
  interface GoogleProtobufEmpty {
171
226
  }
172
227
  interface Host {
173
228
  /** Specifies a Compute Engine instance as the host. */
174
- gceInstance?: GceInstance;
229
+ gceInstance?:
230
+ GceInstance;
175
231
  }
176
232
  interface ListOperationsResponse {
177
233
  /** The standard List next-page token. */
178
- nextPageToken?: string;
234
+ nextPageToken?:
235
+ string;
179
236
  /** A list of operations that matches the specified filter in the request. */
180
- operations?: Operation[];
237
+ operations?:
238
+ Operation[];
181
239
  }
182
240
  interface ListUsableWorkstationConfigsResponse {
183
241
  /** Token to retrieve the next page of results, or empty if there are no more results in the list. */
184
- nextPageToken?: string;
242
+ nextPageToken?:
243
+ string;
185
244
  /** Unreachable resources. */
186
- unreachable?: string[];
245
+ unreachable?:
246
+ string[];
187
247
  /** The requested configs. */
188
- workstationConfigs?: WorkstationConfig[];
248
+ workstationConfigs?:
249
+ WorkstationConfig[];
189
250
  }
190
251
  interface ListUsableWorkstationsResponse {
191
252
  /** Token to retrieve the next page of results, or empty if there are no more results in the list. */
192
- nextPageToken?: string;
253
+ nextPageToken?:
254
+ string;
193
255
  /** Unreachable resources. */
194
- unreachable?: string[];
256
+ unreachable?:
257
+ string[];
195
258
  /** The requested workstations. */
196
- workstations?: Workstation[];
259
+ workstations?:
260
+ Workstation[];
197
261
  }
198
262
  interface ListWorkstationClustersResponse {
199
263
  /** Token to retrieve the next page of results, or empty if there are no more results in the list. */
200
- nextPageToken?: string;
264
+ nextPageToken?:
265
+ string;
201
266
  /** Unreachable resources. */
202
- unreachable?: string[];
267
+ unreachable?:
268
+ string[];
203
269
  /** The requested workstation clusters. */
204
- workstationClusters?: WorkstationCluster[];
270
+ workstationClusters?:
271
+ WorkstationCluster[];
205
272
  }
206
273
  interface ListWorkstationConfigsResponse {
207
274
  /** Token to retrieve the next page of results, or empty if there are no more results in the list. */
208
- nextPageToken?: string;
275
+ nextPageToken?:
276
+ string;
209
277
  /** Unreachable resources. */
210
- unreachable?: string[];
278
+ unreachable?:
279
+ string[];
211
280
  /** The requested configs. */
212
- workstationConfigs?: WorkstationConfig[];
281
+ workstationConfigs?:
282
+ WorkstationConfig[];
213
283
  }
214
284
  interface ListWorkstationsResponse {
215
285
  /** Token to retrieve the next page of results, or empty if there are no more results in the list. */
216
- nextPageToken?: string;
286
+ nextPageToken?:
287
+ string;
217
288
  /** Unreachable resources. */
218
- unreachable?: string[];
289
+ unreachable?:
290
+ string[];
219
291
  /** The requested workstations. */
220
- workstations?: Workstation[];
292
+ workstations?:
293
+ Workstation[];
221
294
  }
222
295
  interface Operation {
223
296
  /** 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. */
224
- done?: boolean;
297
+ done?:
298
+ boolean;
225
299
  /** The error result of the operation in case of failure or cancellation. */
226
- error?: Status;
300
+ error?:
301
+ Status;
227
302
  /**
228
303
  * 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
229
304
  * metadata. Any method that returns a long-running operation should document the metadata type, if any.
230
305
  */
231
- metadata?: { [P in string]: any };
306
+ metadata?:
307
+ { [P in string]: any };
232
308
  /**
233
309
  * 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
234
310
  * with `operations/{unique_id}`.
235
311
  */
236
- name?: string;
312
+ name?:
313
+ string;
237
314
  /**
238
315
  * 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
239
316
  * 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
240
317
  * original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
241
318
  */
242
- response?: { [P in string]: any };
319
+ response?:
320
+ { [P in string]: any };
243
321
  }
244
322
  interface OperationMetadata {
245
323
  /** Output only. API version used to start the operation. */
246
- apiVersion?: string;
324
+ apiVersion?:
325
+ string;
247
326
  /** Output only. Time that the operation was created. */
248
- createTime?: string;
327
+ createTime?:
328
+ string;
249
329
  /** Output only. Time that the operation finished running. */
250
- endTime?: string;
330
+ endTime?:
331
+ string;
251
332
  /** Output only. Identifies whether the user has requested cancellation of the operation. */
252
- requestedCancellation?: boolean;
333
+ requestedCancellation?:
334
+ boolean;
253
335
  /** Output only. Human-readable status of the operation, if any. */
254
- statusMessage?: string;
336
+ statusMessage?:
337
+ string;
255
338
  /** Output only. Server-defined resource path for the target of the operation. */
256
- target?: string;
339
+ target?:
340
+ string;
257
341
  /** Output only. Name of the verb executed by the operation. */
258
- verb?: string;
342
+ verb?:
343
+ string;
259
344
  }
260
345
  interface PersistentDirectory {
261
346
  /** A PersistentDirectory backed by a Compute Engine persistent disk. */
262
- gcePd?: GceRegionalPersistentDisk;
347
+ gcePd?:
348
+ GceRegionalPersistentDisk;
263
349
  /** Location of this directory in the running workstation. */
264
- mountPath?: string;
350
+ mountPath?:
351
+ string;
265
352
  }
266
353
  interface Policy {
267
354
  /** Specifies cloud audit logging configuration for this policy. */
268
- auditConfigs?: AuditConfig[];
355
+ auditConfigs?:
356
+ AuditConfig[];
269
357
  /**
270
358
  * 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`
271
359
  * 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
272
360
  * 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
273
361
  * 1,450 principals to the `bindings` in the `Policy`.
274
362
  */
275
- bindings?: Binding[];
363
+ bindings?:
364
+ Binding[];
276
365
  /**
277
366
  * `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
278
367
  * 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
@@ -280,7 +369,8 @@ declare namespace gapi.client {
280
369
  * 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`
281
370
  * policy, and all of the conditions in the version `3` policy are lost.
282
371
  */
283
- etag?: string;
372
+ etag?:
373
+ string;
284
374
  /**
285
375
  * 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
286
376
  * 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
@@ -289,167 +379,222 @@ declare namespace gapi.client {
289
379
  * 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
290
380
  * 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).
291
381
  */
292
- version?: number;
382
+ version?:
383
+ number;
293
384
  }
294
385
  interface PrivateClusterConfig {
295
386
  /**
296
387
  * Additional projects that are allowed to attach to the workstation cluster's service attachment. By default, the workstation cluster's project and the VPC host project (if different)
297
388
  * are allowed.
298
389
  */
299
- allowedProjects?: string[];
390
+ allowedProjects?:
391
+ string[];
300
392
  /**
301
393
  * Output only. Hostname for the workstation cluster. This field will be populated only when private endpoint is enabled. To access workstations in the cluster, create a new DNS zone
302
394
  * mapping this domain name to an internal IP address and a forwarding rule mapping that address to the service attachment.
303
395
  */
304
- clusterHostname?: string;
396
+ clusterHostname?:
397
+ string;
305
398
  /** Immutable. Whether Workstations endpoint is private. */
306
- enablePrivateEndpoint?: boolean;
399
+ enablePrivateEndpoint?:
400
+ boolean;
307
401
  /**
308
402
  * Output only. Service attachment URI for the workstation cluster. The service attachemnt is created when private endpoint is enabled. To access workstations in the cluster, configure
309
403
  * access to the managed service using [Private Service Connect](https://cloud.google.com/vpc/docs/configure-private-service-connect-services).
310
404
  */
311
- serviceAttachmentUri?: string;
405
+ serviceAttachmentUri?:
406
+ string;
312
407
  }
313
408
  interface ReadinessCheck {
314
409
  /** Path to which the request should be sent. */
315
- path?: string;
410
+ path?:
411
+ string;
316
412
  /** Port to which the request should be sent. */
317
- port?: number;
413
+ port?:
414
+ number;
318
415
  }
319
416
  interface SetIamPolicyRequest {
320
417
  /**
321
418
  * 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
322
419
  * services (such as Projects) might reject them.
323
420
  */
324
- policy?: Policy;
421
+ policy?:
422
+ Policy;
325
423
  /**
326
424
  * 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:
327
425
  * `paths: "bindings, etag"`
328
426
  */
329
- updateMask?: string;
427
+ updateMask?:
428
+ string;
330
429
  }
331
430
  interface StartWorkstationRequest {
332
431
  /** If set, the request will be rejected if the latest version of the workstation on the server does not have this ETag. */
333
- etag?: string;
432
+ etag?:
433
+ string;
334
434
  /** If set, validate the request and preview the review, but do not actually apply it. */
335
- validateOnly?: boolean;
435
+ validateOnly?:
436
+ boolean;
336
437
  }
337
438
  interface Status {
338
439
  /** The status code, which should be an enum value of google.rpc.Code. */
339
- code?: number;
440
+ code?:
441
+ number;
340
442
  /** A list of messages that carry the error details. There is a common set of message types for APIs to use. */
341
- details?: Array<{ [P in string]: any }>;
443
+ details?:
444
+ Array<{ [P in string]: any }>;
342
445
  /**
343
446
  * 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
344
447
  * client.
345
448
  */
346
- message?: string;
449
+ message?:
450
+ string;
347
451
  }
348
452
  interface StopWorkstationRequest {
349
453
  /** If set, the request will be rejected if the latest version of the workstation on the server does not have this ETag. */
350
- etag?: string;
454
+ etag?:
455
+ string;
351
456
  /** If set, validate the request and preview the review, but do not actually apply it. */
352
- validateOnly?: boolean;
457
+ validateOnly?:
458
+ boolean;
353
459
  }
354
460
  interface TestIamPermissionsRequest {
355
461
  /**
356
462
  * The set of permissions to check for the `resource`. Permissions with wildcards (such as `*` or `storage.*`) are not allowed. For more information see [IAM
357
463
  * Overview](https://cloud.google.com/iam/docs/overview#permissions).
358
464
  */
359
- permissions?: string[];
465
+ permissions?:
466
+ string[];
360
467
  }
361
468
  interface TestIamPermissionsResponse {
362
469
  /** A subset of `TestPermissionsRequest.permissions` that the caller is allowed. */
363
- permissions?: string[];
470
+ permissions?:
471
+ string[];
364
472
  }
365
473
  interface Workstation {
366
474
  /** Client-specified annotations. */
367
- annotations?: { [P in string]: string };
475
+ annotations?:
476
+ { [P in string]: string };
368
477
  /** Output only. Time when this resource was created. */
369
- createTime?: string;
478
+ createTime?:
479
+ string;
370
480
  /** Output only. Time when this resource was soft-deleted. */
371
- deleteTime?: string;
481
+ deleteTime?:
482
+ string;
372
483
  /** Human-readable name for this resource. */
373
- displayName?: string;
484
+ displayName?:
485
+ string;
374
486
  /** Environment variables passed to the workstation container's entrypoint. */
375
- env?: { [P in string]: string };
487
+ env?:
488
+ { [P in string]: string };
376
489
  /** Checksum computed by the server. May be sent on update and delete requests to make sure that the client has an up-to-date value before proceeding. */
377
- etag?: string;
490
+ etag?:
491
+ string;
378
492
  /**
379
493
  * Output only. Host to which clients can send HTTPS traffic that will be received by the workstation. Authorized traffic will be received to the workstation as HTTP on port 80. To
380
494
  * send traffic to a different port, clients may prefix the host with the destination port in the format `{port}-{host}`.
381
495
  */
382
- host?: string;
496
+ host?:
497
+ string;
383
498
  /** Client-specified labels that are applied to the resource and that are also propagated to the underlying Compute Engine resources. */
384
- labels?: { [P in string]: string };
499
+ labels?:
500
+ { [P in string]: string };
385
501
  /** Full name of this resource. */
386
- name?: string;
502
+ name?:
503
+ string;
387
504
  /** Output only. Indicates whether this resource is currently being updated to match its intended state. */
388
- reconciling?: boolean;
505
+ reconciling?:
506
+ boolean;
389
507
  /** Output only. Current state of the workstation. */
390
- state?: string;
508
+ state?:
509
+ string;
391
510
  /** Output only. A system-assigned unique identified for this resource. */
392
- uid?: string;
511
+ uid?:
512
+ string;
393
513
  /** Output only. Time when this resource was most recently updated. */
394
- updateTime?: string;
514
+ updateTime?:
515
+ string;
395
516
  }
396
517
  interface WorkstationCluster {
397
518
  /** Client-specified annotations. */
398
- annotations?: { [P in string]: string };
519
+ annotations?:
520
+ { [P in string]: string };
399
521
  /** Output only. Status conditions describing the current resource state. */
400
- conditions?: Status[];
522
+ conditions?:
523
+ Status[];
401
524
  /**
402
525
  * Output only. The private IP address of the control plane for this cluster. Workstation VMs need access to this IP address to work with the service, so make sure that your firewall
403
526
  * rules allow egress from the workstation VMs to this address.
404
527
  */
405
- controlPlaneIp?: string;
528
+ controlPlaneIp?:
529
+ string;
406
530
  /** Output only. Time when this resource was created. */
407
- createTime?: string;
531
+ createTime?:
532
+ string;
408
533
  /** Output only. Whether this resource is in degraded mode, in which case it may require user action to restore full functionality. Details can be found in the `conditions` field. */
409
- degraded?: boolean;
534
+ degraded?:
535
+ boolean;
410
536
  /** Output only. Time when this resource was soft-deleted. */
411
- deleteTime?: string;
537
+ deleteTime?:
538
+ string;
412
539
  /** Human-readable name for this resource. */
413
- displayName?: string;
540
+ displayName?:
541
+ string;
414
542
  /** Checksum computed by the server. May be sent on update and delete requests to make sure that the client has an up-to-date value before proceeding. */
415
- etag?: string;
543
+ etag?:
544
+ string;
416
545
  /** Client-specified labels that are applied to the resource and that are also propagated to the underlying Compute Engine resources. */
417
- labels?: { [P in string]: string };
546
+ labels?:
547
+ { [P in string]: string };
418
548
  /** Full name of this resource. */
419
- name?: string;
549
+ name?:
550
+ string;
420
551
  /** Immutable. Name of the Compute Engine network in which instances associated with this cluster will be created. */
421
- network?: string;
552
+ network?:
553
+ string;
422
554
  /** Configuration for private cluster. */
423
- privateClusterConfig?: PrivateClusterConfig;
555
+ privateClusterConfig?:
556
+ PrivateClusterConfig;
424
557
  /** Output only. Indicates whether this resource is currently being updated to match its intended state. */
425
- reconciling?: boolean;
558
+ reconciling?:
559
+ boolean;
426
560
  /** Immutable. Name of the Compute Engine subnetwork in which instances associated with this cluster will be created. Must be part of the subnetwork specified for this cluster. */
427
- subnetwork?: string;
561
+ subnetwork?:
562
+ string;
428
563
  /** Output only. A system-assigned unique identified for this resource. */
429
- uid?: string;
564
+ uid?:
565
+ string;
430
566
  /** Output only. Time when this resource was most recently updated. */
431
- updateTime?: string;
567
+ updateTime?:
568
+ string;
432
569
  }
433
570
  interface WorkstationConfig {
434
571
  /** Client-specified annotations. */
435
- annotations?: { [P in string]: string };
572
+ annotations?:
573
+ { [P in string]: string };
436
574
  /** Output only. Status conditions describing the current resource state. */
437
- conditions?: Status[];
575
+ conditions?:
576
+ Status[];
438
577
  /** Container that will be run for each workstation using this configuration when that workstation is started. */
439
- container?: Container;
578
+ container?:
579
+ Container;
440
580
  /** Output only. Time when this resource was created. */
441
- createTime?: string;
581
+ createTime?:
582
+ string;
442
583
  /** Output only. Whether this resource is in degraded mode, in which case it may require user action to restore full functionality. Details can be found in the `conditions` field. */
443
- degraded?: boolean;
584
+ degraded?:
585
+ boolean;
444
586
  /** Output only. Time when this resource was soft-deleted. */
445
- deleteTime?: string;
587
+ deleteTime?:
588
+ string;
446
589
  /** Human-readable name for this resource. */
447
- displayName?: string;
590
+ displayName?:
591
+ string;
448
592
  /**
449
593
  * Whether to enable linux auditd logging on the workstation. When enabled, a service account must also be specified that has logging.buckets.write permission on the project. Operating
450
594
  * system audit logging is distinct from [Cloud Audit Logs](https://cloud.google.com/workstations/docs/audit-logging).
451
595
  */
452
- enableAuditAgent?: boolean;
596
+ enableAuditAgent?:
597
+ boolean;
453
598
  /**
454
599
  * Immutable. Encrypts resources of this workstation configuration using a customer-managed encryption key. If specified, the boot disk of the Compute Engine instance and the
455
600
  * persistent disk are encrypted using this encryption key. If this field is not set, the disks are encrypted using a generated key. Customer-managed encryption keys do not protect
@@ -457,38 +602,50 @@ declare namespace gapi.client {
457
602
  * of the key. Be sure to keep older versions of the key until the persistent disk is recreated. Otherwise, data on the persistent disk will be lost. If the encryption key is revoked,
458
603
  * the workstation session will automatically be stopped within 7 hours. Immutable after the workstation configuration is created.
459
604
  */
460
- encryptionKey?: CustomerEncryptionKey;
605
+ encryptionKey?:
606
+ CustomerEncryptionKey;
461
607
  /** Checksum computed by the server. May be sent on update and delete requests to make sure that the client has an up-to-date value before proceeding. */
462
- etag?: string;
608
+ etag?:
609
+ string;
463
610
  /** Runtime host for the workstation. */
464
- host?: Host;
611
+ host?:
612
+ Host;
465
613
  /**
466
614
  * How long to wait before automatically stopping an instance that hasn't received any user traffic. A value of 0 indicates that this instance should never time out due to idleness.
467
615
  * Defaults to 20 minutes.
468
616
  */
469
- idleTimeout?: string;
617
+ idleTimeout?:
618
+ string;
470
619
  /** Client-specified labels that are applied to the resource and that are also propagated to the underlying Compute Engine resources. */
471
- labels?: { [P in string]: string };
620
+ labels?:
621
+ { [P in string]: string };
472
622
  /** Full name of this resource. */
473
- name?: string;
623
+ name?:
624
+ string;
474
625
  /** Directories to persist across workstation sessions. */
475
- persistentDirectories?: PersistentDirectory[];
626
+ persistentDirectories?:
627
+ PersistentDirectory[];
476
628
  /**
477
629
  * Readiness checks to perform when starting a workstation using this workstation configuration. Mark a workstation as running only after all specified readiness checks return 200
478
630
  * status codes.
479
631
  */
480
- readinessChecks?: ReadinessCheck[];
632
+ readinessChecks?:
633
+ ReadinessCheck[];
481
634
  /** Output only. Indicates whether this resource is currently being updated to match its intended state. */
482
- reconciling?: boolean;
635
+ reconciling?:
636
+ boolean;
483
637
  /**
484
638
  * How long to wait before automatically stopping a workstation after it started. A value of 0 indicates that workstations using this configuration should never time out. Must be
485
639
  * greater than 0 and less than 24 hours if encryption_key is set. Defaults to 12 hours.
486
640
  */
487
- runningTimeout?: string;
641
+ runningTimeout?:
642
+ string;
488
643
  /** Output only. A system-assigned unique identified for this resource. */
489
- uid?: string;
644
+ uid?:
645
+ string;
490
646
  /** Output only. Time when this resource was most recently updated. */
491
- updateTime?: string;
647
+ updateTime?:
648
+ string;
492
649
  }
493
650
  interface OperationsResource {
494
651
  /**
@@ -499,57 +656,82 @@ declare namespace gapi.client {
499
656
  */
500
657
  cancel(request: {
501
658
  /** V1 error format. */
502
- "$.xgafv"?: string;
659
+ "$.xgafv"?:
660
+ string;
503
661
  /** OAuth access token. */
504
- access_token?: string;
662
+ access_token?:
663
+ string;
505
664
  /** Data format for response. */
506
- alt?: string;
665
+ alt?:
666
+ string;
507
667
  /** JSONP */
508
- callback?: string;
668
+ callback?:
669
+ string;
509
670
  /** Selector specifying which fields to include in a partial response. */
510
- fields?: string;
671
+ fields?:
672
+ string;
511
673
  /** 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. */
512
- key?: string;
674
+ key?:
675
+ string;
513
676
  /** The name of the operation resource to be cancelled. */
514
- name: string;
677
+ name:
678
+ string;
515
679
  /** OAuth 2.0 token for the current user. */
516
- oauth_token?: string;
680
+ oauth_token?:
681
+ string;
517
682
  /** Returns response with indentations and line breaks. */
518
- prettyPrint?: boolean;
683
+ prettyPrint?:
684
+ boolean;
519
685
  /** 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. */
520
- quotaUser?: string;
686
+ quotaUser?:
687
+ string;
521
688
  /** Upload protocol for media (e.g. "raw", "multipart"). */
522
- upload_protocol?: string;
689
+ upload_protocol?:
690
+ string;
523
691
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
524
- uploadType?: string;
692
+ uploadType?:
693
+ string;
525
694
  /** Request body */
526
- resource: CancelOperationRequest;
695
+ resource:
696
+ CancelOperationRequest;
527
697
  }): Request<{}>;
528
698
  cancel(request: {
529
699
  /** V1 error format. */
530
- "$.xgafv"?: string;
700
+ "$.xgafv"?:
701
+ string;
531
702
  /** OAuth access token. */
532
- access_token?: string;
703
+ access_token?:
704
+ string;
533
705
  /** Data format for response. */
534
- alt?: string;
706
+ alt?:
707
+ string;
535
708
  /** JSONP */
536
- callback?: string;
709
+ callback?:
710
+ string;
537
711
  /** Selector specifying which fields to include in a partial response. */
538
- fields?: string;
712
+ fields?:
713
+ string;
539
714
  /** 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. */
540
- key?: string;
715
+ key?:
716
+ string;
541
717
  /** The name of the operation resource to be cancelled. */
542
- name: string;
718
+ name:
719
+ string;
543
720
  /** OAuth 2.0 token for the current user. */
544
- oauth_token?: string;
721
+ oauth_token?:
722
+ string;
545
723
  /** Returns response with indentations and line breaks. */
546
- prettyPrint?: boolean;
724
+ prettyPrint?:
725
+ boolean;
547
726
  /** 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. */
548
- quotaUser?: string;
727
+ quotaUser?:
728
+ string;
549
729
  /** Upload protocol for media (e.g. "raw", "multipart"). */
550
- upload_protocol?: string;
730
+ upload_protocol?:
731
+ string;
551
732
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
552
- uploadType?: string;
733
+ uploadType?:
734
+ string;
553
735
  },
554
736
  body: CancelOperationRequest): Request<{}>;
555
737
  /**
@@ -558,286 +740,412 @@ declare namespace gapi.client {
558
740
  */
559
741
  delete(request?: {
560
742
  /** V1 error format. */
561
- "$.xgafv"?: string;
743
+ "$.xgafv"?:
744
+ string;
562
745
  /** OAuth access token. */
563
- access_token?: string;
746
+ access_token?:
747
+ string;
564
748
  /** Data format for response. */
565
- alt?: string;
749
+ alt?:
750
+ string;
566
751
  /** JSONP */
567
- callback?: string;
752
+ callback?:
753
+ string;
568
754
  /** Selector specifying which fields to include in a partial response. */
569
- fields?: string;
755
+ fields?:
756
+ string;
570
757
  /** 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. */
571
- key?: string;
758
+ key?:
759
+ string;
572
760
  /** The name of the operation resource to be deleted. */
573
- name: string;
761
+ name:
762
+ string;
574
763
  /** OAuth 2.0 token for the current user. */
575
- oauth_token?: string;
764
+ oauth_token?:
765
+ string;
576
766
  /** Returns response with indentations and line breaks. */
577
- prettyPrint?: boolean;
767
+ prettyPrint?:
768
+ boolean;
578
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. */
579
- quotaUser?: string;
770
+ quotaUser?:
771
+ string;
580
772
  /** Upload protocol for media (e.g. "raw", "multipart"). */
581
- upload_protocol?: string;
773
+ upload_protocol?:
774
+ string;
582
775
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
583
- uploadType?: string;
776
+ uploadType?:
777
+ string;
584
778
  }): Request<{}>;
585
779
  /** 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. */
586
780
  get(request?: {
587
781
  /** V1 error format. */
588
- "$.xgafv"?: string;
782
+ "$.xgafv"?:
783
+ string;
589
784
  /** OAuth access token. */
590
- access_token?: string;
785
+ access_token?:
786
+ string;
591
787
  /** Data format for response. */
592
- alt?: string;
788
+ alt?:
789
+ string;
593
790
  /** JSONP */
594
- callback?: string;
791
+ callback?:
792
+ string;
595
793
  /** Selector specifying which fields to include in a partial response. */
596
- fields?: string;
794
+ fields?:
795
+ string;
597
796
  /** 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. */
598
- key?: string;
797
+ key?:
798
+ string;
599
799
  /** The name of the operation resource. */
600
- name: string;
800
+ name:
801
+ string;
601
802
  /** OAuth 2.0 token for the current user. */
602
- oauth_token?: string;
803
+ oauth_token?:
804
+ string;
603
805
  /** Returns response with indentations and line breaks. */
604
- prettyPrint?: boolean;
806
+ prettyPrint?:
807
+ boolean;
605
808
  /** 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. */
606
- quotaUser?: string;
809
+ quotaUser?:
810
+ string;
607
811
  /** Upload protocol for media (e.g. "raw", "multipart"). */
608
- upload_protocol?: string;
812
+ upload_protocol?:
813
+ string;
609
814
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
610
- uploadType?: string;
815
+ uploadType?:
816
+ string;
611
817
  }): Request<Operation>;
612
818
  /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
613
819
  list(request?: {
614
820
  /** V1 error format. */
615
- "$.xgafv"?: string;
821
+ "$.xgafv"?:
822
+ string;
616
823
  /** OAuth access token. */
617
- access_token?: string;
824
+ access_token?:
825
+ string;
618
826
  /** Data format for response. */
619
- alt?: string;
827
+ alt?:
828
+ string;
620
829
  /** JSONP */
621
- callback?: string;
830
+ callback?:
831
+ string;
622
832
  /** Selector specifying which fields to include in a partial response. */
623
- fields?: string;
833
+ fields?:
834
+ string;
624
835
  /** The standard list filter. */
625
- filter?: string;
836
+ filter?:
837
+ string;
626
838
  /** 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. */
627
- key?: string;
839
+ key?:
840
+ string;
628
841
  /** The name of the operation's parent resource. */
629
- name: string;
842
+ name:
843
+ string;
630
844
  /** OAuth 2.0 token for the current user. */
631
- oauth_token?: string;
845
+ oauth_token?:
846
+ string;
632
847
  /** The standard list page size. */
633
- pageSize?: number;
848
+ pageSize?:
849
+ number;
634
850
  /** The standard list page token. */
635
- pageToken?: string;
851
+ pageToken?:
852
+ string;
636
853
  /** Returns response with indentations and line breaks. */
637
- prettyPrint?: boolean;
854
+ prettyPrint?:
855
+ boolean;
638
856
  /** 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. */
639
- quotaUser?: string;
857
+ quotaUser?:
858
+ string;
640
859
  /** Upload protocol for media (e.g. "raw", "multipart"). */
641
- upload_protocol?: string;
860
+ upload_protocol?:
861
+ string;
642
862
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
643
- uploadType?: string;
863
+ uploadType?:
864
+ string;
644
865
  }): Request<ListOperationsResponse>;
645
866
  }
646
867
  interface WorkstationsResource {
647
868
  /** Creates a new workstation. */
648
869
  create(request: {
649
870
  /** V1 error format. */
650
- "$.xgafv"?: string;
871
+ "$.xgafv"?:
872
+ string;
651
873
  /** OAuth access token. */
652
- access_token?: string;
874
+ access_token?:
875
+ string;
653
876
  /** Data format for response. */
654
- alt?: string;
877
+ alt?:
878
+ string;
655
879
  /** JSONP */
656
- callback?: string;
880
+ callback?:
881
+ string;
657
882
  /** Selector specifying which fields to include in a partial response. */
658
- fields?: string;
883
+ fields?:
884
+ string;
659
885
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
660
- key?: string;
886
+ key?:
887
+ string;
661
888
  /** OAuth 2.0 token for the current user. */
662
- oauth_token?: string;
889
+ oauth_token?:
890
+ string;
663
891
  /** Required. Parent resource name. */
664
- parent: string;
892
+ parent:
893
+ string;
665
894
  /** Returns response with indentations and line breaks. */
666
- prettyPrint?: boolean;
895
+ prettyPrint?:
896
+ boolean;
667
897
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
668
- quotaUser?: string;
898
+ quotaUser?:
899
+ string;
669
900
  /** Upload protocol for media (e.g. "raw", "multipart"). */
670
- upload_protocol?: string;
901
+ upload_protocol?:
902
+ string;
671
903
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
672
- uploadType?: string;
904
+ uploadType?:
905
+ string;
673
906
  /** If set, validate the request and preview the review, but do not actually apply it. */
674
- validateOnly?: boolean;
907
+ validateOnly?:
908
+ boolean;
675
909
  /** Required. ID to use for the workstation. */
676
- workstationId?: string;
910
+ workstationId?:
911
+ string;
677
912
  /** Request body */
678
- resource: Workstation;
913
+ resource:
914
+ Workstation;
679
915
  }): Request<Operation>;
680
916
  create(request: {
681
917
  /** V1 error format. */
682
- "$.xgafv"?: string;
918
+ "$.xgafv"?:
919
+ string;
683
920
  /** OAuth access token. */
684
- access_token?: string;
921
+ access_token?:
922
+ string;
685
923
  /** Data format for response. */
686
- alt?: string;
924
+ alt?:
925
+ string;
687
926
  /** JSONP */
688
- callback?: string;
927
+ callback?:
928
+ string;
689
929
  /** Selector specifying which fields to include in a partial response. */
690
- fields?: string;
930
+ fields?:
931
+ string;
691
932
  /** 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. */
692
- key?: string;
933
+ key?:
934
+ string;
693
935
  /** OAuth 2.0 token for the current user. */
694
- oauth_token?: string;
936
+ oauth_token?:
937
+ string;
695
938
  /** Required. Parent resource name. */
696
- parent: string;
939
+ parent:
940
+ string;
697
941
  /** Returns response with indentations and line breaks. */
698
- prettyPrint?: boolean;
942
+ prettyPrint?:
943
+ boolean;
699
944
  /** 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. */
700
- quotaUser?: string;
945
+ quotaUser?:
946
+ string;
701
947
  /** Upload protocol for media (e.g. "raw", "multipart"). */
702
- upload_protocol?: string;
948
+ upload_protocol?:
949
+ string;
703
950
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
704
- uploadType?: string;
951
+ uploadType?:
952
+ string;
705
953
  /** If set, validate the request and preview the review, but do not actually apply it. */
706
- validateOnly?: boolean;
954
+ validateOnly?:
955
+ boolean;
707
956
  /** Required. ID to use for the workstation. */
708
- workstationId?: string;
957
+ workstationId?:
958
+ string;
709
959
  },
710
960
  body: Workstation): Request<Operation>;
711
961
  /** Deletes the specified workstation. */
712
962
  delete(request?: {
713
963
  /** V1 error format. */
714
- "$.xgafv"?: string;
964
+ "$.xgafv"?:
965
+ string;
715
966
  /** OAuth access token. */
716
- access_token?: string;
967
+ access_token?:
968
+ string;
717
969
  /** Data format for response. */
718
- alt?: string;
970
+ alt?:
971
+ string;
719
972
  /** JSONP */
720
- callback?: string;
973
+ callback?:
974
+ string;
721
975
  /** If set, the request will be rejected if the latest version of the workstation on the server does not have this ETag. */
722
- etag?: string;
976
+ etag?:
977
+ string;
723
978
  /** Selector specifying which fields to include in a partial response. */
724
- fields?: string;
979
+ fields?:
980
+ string;
725
981
  /** 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. */
726
- key?: string;
982
+ key?:
983
+ string;
727
984
  /** Required. Name of the workstation to delete. */
728
- name: string;
985
+ name:
986
+ string;
729
987
  /** OAuth 2.0 token for the current user. */
730
- oauth_token?: string;
988
+ oauth_token?:
989
+ string;
731
990
  /** Returns response with indentations and line breaks. */
732
- prettyPrint?: boolean;
991
+ prettyPrint?:
992
+ boolean;
733
993
  /** 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. */
734
- quotaUser?: string;
994
+ quotaUser?:
995
+ string;
735
996
  /** Upload protocol for media (e.g. "raw", "multipart"). */
736
- upload_protocol?: string;
997
+ upload_protocol?:
998
+ string;
737
999
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
738
- uploadType?: string;
1000
+ uploadType?:
1001
+ string;
739
1002
  /** If set, validate the request and preview the review, but do not actually apply it. */
740
- validateOnly?: boolean;
1003
+ validateOnly?:
1004
+ boolean;
741
1005
  }): Request<Operation>;
742
1006
  /** Returns a short-lived credential that can be used to send authenticated and authorized traffic to a workstation. */
743
1007
  generateAccessToken(request: {
744
1008
  /** V1 error format. */
745
- "$.xgafv"?: string;
1009
+ "$.xgafv"?:
1010
+ string;
746
1011
  /** OAuth access token. */
747
- access_token?: string;
1012
+ access_token?:
1013
+ string;
748
1014
  /** Data format for response. */
749
- alt?: string;
1015
+ alt?:
1016
+ string;
750
1017
  /** JSONP */
751
- callback?: string;
1018
+ callback?:
1019
+ string;
752
1020
  /** Selector specifying which fields to include in a partial response. */
753
- fields?: string;
1021
+ fields?:
1022
+ string;
754
1023
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
755
- key?: string;
1024
+ key?:
1025
+ string;
756
1026
  /** OAuth 2.0 token for the current user. */
757
- oauth_token?: string;
1027
+ oauth_token?:
1028
+ string;
758
1029
  /** Returns response with indentations and line breaks. */
759
- prettyPrint?: boolean;
1030
+ prettyPrint?:
1031
+ boolean;
760
1032
  /** 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. */
761
- quotaUser?: string;
1033
+ quotaUser?:
1034
+ string;
762
1035
  /** Upload protocol for media (e.g. "raw", "multipart"). */
763
- upload_protocol?: string;
1036
+ upload_protocol?:
1037
+ string;
764
1038
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
765
- uploadType?: string;
1039
+ uploadType?:
1040
+ string;
766
1041
  /** Required. Name of the workstation for which the access token should be generated. */
767
- workstation: string;
1042
+ workstation:
1043
+ string;
768
1044
  /** Request body */
769
- resource: GenerateAccessTokenRequest;
1045
+ resource:
1046
+ GenerateAccessTokenRequest;
770
1047
  }): Request<GenerateAccessTokenResponse>;
771
1048
  generateAccessToken(request: {
772
1049
  /** V1 error format. */
773
- "$.xgafv"?: string;
1050
+ "$.xgafv"?:
1051
+ string;
774
1052
  /** OAuth access token. */
775
- access_token?: string;
1053
+ access_token?:
1054
+ string;
776
1055
  /** Data format for response. */
777
- alt?: string;
1056
+ alt?:
1057
+ string;
778
1058
  /** JSONP */
779
- callback?: string;
1059
+ callback?:
1060
+ string;
780
1061
  /** Selector specifying which fields to include in a partial response. */
781
- fields?: string;
1062
+ fields?:
1063
+ string;
782
1064
  /** 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. */
783
- key?: string;
1065
+ key?:
1066
+ string;
784
1067
  /** OAuth 2.0 token for the current user. */
785
- oauth_token?: string;
1068
+ oauth_token?:
1069
+ string;
786
1070
  /** Returns response with indentations and line breaks. */
787
- prettyPrint?: boolean;
1071
+ prettyPrint?:
1072
+ boolean;
788
1073
  /** 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. */
789
- quotaUser?: string;
1074
+ quotaUser?:
1075
+ string;
790
1076
  /** Upload protocol for media (e.g. "raw", "multipart"). */
791
- upload_protocol?: string;
1077
+ upload_protocol?:
1078
+ string;
792
1079
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
793
- uploadType?: string;
1080
+ uploadType?:
1081
+ string;
794
1082
  /** Required. Name of the workstation for which the access token should be generated. */
795
- workstation: string;
1083
+ workstation:
1084
+ string;
796
1085
  },
797
1086
  body: GenerateAccessTokenRequest): Request<GenerateAccessTokenResponse>;
798
1087
  /** Returns the requested workstation. */
799
1088
  get(request?: {
800
1089
  /** V1 error format. */
801
- "$.xgafv"?: string;
1090
+ "$.xgafv"?:
1091
+ string;
802
1092
  /** OAuth access token. */
803
- access_token?: string;
1093
+ access_token?:
1094
+ string;
804
1095
  /** Data format for response. */
805
- alt?: string;
1096
+ alt?:
1097
+ string;
806
1098
  /** JSONP */
807
- callback?: string;
1099
+ callback?:
1100
+ string;
808
1101
  /** Selector specifying which fields to include in a partial response. */
809
- fields?: string;
1102
+ fields?:
1103
+ string;
810
1104
  /** 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. */
811
- key?: string;
1105
+ key?:
1106
+ string;
812
1107
  /** Required. Name of the requested resource. */
813
- name: string;
1108
+ name:
1109
+ string;
814
1110
  /** OAuth 2.0 token for the current user. */
815
- oauth_token?: string;
1111
+ oauth_token?:
1112
+ string;
816
1113
  /** Returns response with indentations and line breaks. */
817
- prettyPrint?: boolean;
1114
+ prettyPrint?:
1115
+ boolean;
818
1116
  /** 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. */
819
- quotaUser?: string;
1117
+ quotaUser?:
1118
+ string;
820
1119
  /** Upload protocol for media (e.g. "raw", "multipart"). */
821
- upload_protocol?: string;
1120
+ upload_protocol?:
1121
+ string;
822
1122
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
823
- uploadType?: string;
1123
+ uploadType?:
1124
+ string;
824
1125
  }): Request<Workstation>;
825
1126
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
826
1127
  getIamPolicy(request?: {
827
1128
  /** V1 error format. */
828
- "$.xgafv"?: string;
1129
+ "$.xgafv"?:
1130
+ string;
829
1131
  /** OAuth access token. */
830
- access_token?: string;
1132
+ access_token?:
1133
+ string;
831
1134
  /** Data format for response. */
832
- alt?: string;
1135
+ alt?:
1136
+ string;
833
1137
  /** JSONP */
834
- callback?: string;
1138
+ callback?:
1139
+ string;
835
1140
  /** Selector specifying which fields to include in a partial response. */
836
- fields?: string;
1141
+ fields?:
1142
+ string;
837
1143
  /** 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. */
838
- key?: string;
1144
+ key?:
1145
+ string;
839
1146
  /** OAuth 2.0 token for the current user. */
840
- oauth_token?: string;
1147
+ oauth_token?:
1148
+ string;
841
1149
  /**
842
1150
  * Optional. The maximum policy version that will be used to format the policy. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. Requests for
843
1151
  * policies with any conditional role bindings must specify version 3. Policies with no conditional role bindings may specify any valid value or leave the field unset. The policy
@@ -845,292 +1153,419 @@ declare namespace gapi.client {
845
1153
  * role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM
846
1154
  * documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
847
1155
  */
848
- "options.requestedPolicyVersion"?: number;
1156
+ "options.requestedPolicyVersion"?:
1157
+ number;
849
1158
  /** Returns response with indentations and line breaks. */
850
- prettyPrint?: boolean;
1159
+ prettyPrint?:
1160
+ boolean;
851
1161
  /** 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. */
852
- quotaUser?: string;
1162
+ quotaUser?:
1163
+ string;
853
1164
  /**
854
1165
  * 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
855
1166
  * field.
856
1167
  */
857
- resource: string;
1168
+ resource:
1169
+ string;
858
1170
  /** Upload protocol for media (e.g. "raw", "multipart"). */
859
- upload_protocol?: string;
1171
+ upload_protocol?:
1172
+ string;
860
1173
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
861
- uploadType?: string;
1174
+ uploadType?:
1175
+ string;
862
1176
  }): Request<Policy>;
863
1177
  /** Returns all Workstations using the specified workstation configuration. */
864
1178
  list(request?: {
865
1179
  /** V1 error format. */
866
- "$.xgafv"?: string;
1180
+ "$.xgafv"?:
1181
+ string;
867
1182
  /** OAuth access token. */
868
- access_token?: string;
1183
+ access_token?:
1184
+ string;
869
1185
  /** Data format for response. */
870
- alt?: string;
1186
+ alt?:
1187
+ string;
871
1188
  /** JSONP */
872
- callback?: string;
1189
+ callback?:
1190
+ string;
873
1191
  /** Selector specifying which fields to include in a partial response. */
874
- fields?: string;
1192
+ fields?:
1193
+ string;
875
1194
  /** 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. */
876
- key?: string;
1195
+ key?:
1196
+ string;
877
1197
  /** OAuth 2.0 token for the current user. */
878
- oauth_token?: string;
1198
+ oauth_token?:
1199
+ string;
879
1200
  /** Maximum number of items to return. */
880
- pageSize?: number;
1201
+ pageSize?:
1202
+ number;
881
1203
  /** next_page_token value returned from a previous List request, if any. */
882
- pageToken?: string;
1204
+ pageToken?:
1205
+ string;
883
1206
  /** Required. Parent resource name. */
884
- parent: string;
1207
+ parent:
1208
+ string;
885
1209
  /** Returns response with indentations and line breaks. */
886
- prettyPrint?: boolean;
1210
+ prettyPrint?:
1211
+ boolean;
887
1212
  /** 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. */
888
- quotaUser?: string;
1213
+ quotaUser?:
1214
+ string;
889
1215
  /** Upload protocol for media (e.g. "raw", "multipart"). */
890
- upload_protocol?: string;
1216
+ upload_protocol?:
1217
+ string;
891
1218
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
892
- uploadType?: string;
1219
+ uploadType?:
1220
+ string;
893
1221
  }): Request<ListWorkstationsResponse>;
894
1222
  /** Returns all workstations using the specified workstation configuration on which the caller has the "workstations.workstations.use" permission. */
895
1223
  listUsable(request?: {
896
1224
  /** V1 error format. */
897
- "$.xgafv"?: string;
1225
+ "$.xgafv"?:
1226
+ string;
898
1227
  /** OAuth access token. */
899
- access_token?: string;
1228
+ access_token?:
1229
+ string;
900
1230
  /** Data format for response. */
901
- alt?: string;
1231
+ alt?:
1232
+ string;
902
1233
  /** JSONP */
903
- callback?: string;
1234
+ callback?:
1235
+ string;
904
1236
  /** Selector specifying which fields to include in a partial response. */
905
- fields?: string;
1237
+ fields?:
1238
+ string;
906
1239
  /** 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. */
907
- key?: string;
1240
+ key?:
1241
+ string;
908
1242
  /** OAuth 2.0 token for the current user. */
909
- oauth_token?: string;
1243
+ oauth_token?:
1244
+ string;
910
1245
  /** Maximum number of items to return. */
911
- pageSize?: number;
1246
+ pageSize?:
1247
+ number;
912
1248
  /** next_page_token value returned from a previous List request, if any. */
913
- pageToken?: string;
1249
+ pageToken?:
1250
+ string;
914
1251
  /** Required. Parent resource name. */
915
- parent: string;
1252
+ parent:
1253
+ string;
916
1254
  /** Returns response with indentations and line breaks. */
917
- prettyPrint?: boolean;
1255
+ prettyPrint?:
1256
+ boolean;
918
1257
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
919
- quotaUser?: string;
1258
+ quotaUser?:
1259
+ string;
920
1260
  /** Upload protocol for media (e.g. "raw", "multipart"). */
921
- upload_protocol?: string;
1261
+ upload_protocol?:
1262
+ string;
922
1263
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
923
- uploadType?: string;
1264
+ uploadType?:
1265
+ string;
924
1266
  }): Request<ListUsableWorkstationsResponse>;
925
1267
  /** Updates an existing workstation. */
926
1268
  patch(request: {
927
1269
  /** V1 error format. */
928
- "$.xgafv"?: string;
1270
+ "$.xgafv"?:
1271
+ string;
929
1272
  /** OAuth access token. */
930
- access_token?: string;
1273
+ access_token?:
1274
+ string;
931
1275
  /** If set and the workstation configuration is not found, a new workstation configuration is created. In this situation, update_mask is ignored. */
932
- allowMissing?: boolean;
1276
+ allowMissing?:
1277
+ boolean;
933
1278
  /** Data format for response. */
934
- alt?: string;
1279
+ alt?:
1280
+ string;
935
1281
  /** JSONP */
936
- callback?: string;
1282
+ callback?:
1283
+ string;
937
1284
  /** Selector specifying which fields to include in a partial response. */
938
- fields?: string;
1285
+ fields?:
1286
+ string;
939
1287
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
940
- key?: string;
1288
+ key?:
1289
+ string;
941
1290
  /** Full name of this resource. */
942
- name: string;
1291
+ name:
1292
+ string;
943
1293
  /** OAuth 2.0 token for the current user. */
944
- oauth_token?: string;
1294
+ oauth_token?:
1295
+ string;
945
1296
  /** Returns response with indentations and line breaks. */
946
- prettyPrint?: boolean;
1297
+ prettyPrint?:
1298
+ boolean;
947
1299
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
948
- quotaUser?: string;
1300
+ quotaUser?:
1301
+ string;
949
1302
  /** Required. Mask specifying which fields in the workstation configuration should be updated. */
950
- updateMask?: string;
1303
+ updateMask?:
1304
+ string;
951
1305
  /** Upload protocol for media (e.g. "raw", "multipart"). */
952
- upload_protocol?: string;
1306
+ upload_protocol?:
1307
+ string;
953
1308
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
954
- uploadType?: string;
1309
+ uploadType?:
1310
+ string;
955
1311
  /** If set, validate the request and preview the review, but do not actually apply it. */
956
- validateOnly?: boolean;
1312
+ validateOnly?:
1313
+ boolean;
957
1314
  /** Request body */
958
- resource: Workstation;
1315
+ resource:
1316
+ Workstation;
959
1317
  }): Request<Operation>;
960
1318
  patch(request: {
961
1319
  /** V1 error format. */
962
- "$.xgafv"?: string;
1320
+ "$.xgafv"?:
1321
+ string;
963
1322
  /** OAuth access token. */
964
- access_token?: string;
1323
+ access_token?:
1324
+ string;
965
1325
  /** If set and the workstation configuration is not found, a new workstation configuration is created. In this situation, update_mask is ignored. */
966
- allowMissing?: boolean;
1326
+ allowMissing?:
1327
+ boolean;
967
1328
  /** Data format for response. */
968
- alt?: string;
1329
+ alt?:
1330
+ string;
969
1331
  /** JSONP */
970
- callback?: string;
1332
+ callback?:
1333
+ string;
971
1334
  /** Selector specifying which fields to include in a partial response. */
972
- fields?: string;
1335
+ fields?:
1336
+ string;
973
1337
  /** 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. */
974
- key?: string;
1338
+ key?:
1339
+ string;
975
1340
  /** Full name of this resource. */
976
- name: string;
1341
+ name:
1342
+ string;
977
1343
  /** OAuth 2.0 token for the current user. */
978
- oauth_token?: string;
1344
+ oauth_token?:
1345
+ string;
979
1346
  /** Returns response with indentations and line breaks. */
980
- prettyPrint?: boolean;
1347
+ prettyPrint?:
1348
+ boolean;
981
1349
  /** 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. */
982
- quotaUser?: string;
1350
+ quotaUser?:
1351
+ string;
983
1352
  /** Required. Mask specifying which fields in the workstation configuration should be updated. */
984
- updateMask?: string;
1353
+ updateMask?:
1354
+ string;
985
1355
  /** Upload protocol for media (e.g. "raw", "multipart"). */
986
- upload_protocol?: string;
1356
+ upload_protocol?:
1357
+ string;
987
1358
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
988
- uploadType?: string;
1359
+ uploadType?:
1360
+ string;
989
1361
  /** If set, validate the request and preview the review, but do not actually apply it. */
990
- validateOnly?: boolean;
1362
+ validateOnly?:
1363
+ boolean;
991
1364
  },
992
1365
  body: Workstation): Request<Operation>;
993
1366
  /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
994
1367
  setIamPolicy(request: {
995
1368
  /** V1 error format. */
996
- "$.xgafv"?: string;
1369
+ "$.xgafv"?:
1370
+ string;
997
1371
  /** OAuth access token. */
998
- access_token?: string;
1372
+ access_token?:
1373
+ string;
999
1374
  /** Data format for response. */
1000
- alt?: string;
1375
+ alt?:
1376
+ string;
1001
1377
  /** JSONP */
1002
- callback?: string;
1378
+ callback?:
1379
+ string;
1003
1380
  /** Selector specifying which fields to include in a partial response. */
1004
- fields?: string;
1381
+ fields?:
1382
+ string;
1005
1383
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1006
- key?: string;
1384
+ key?:
1385
+ string;
1007
1386
  /** OAuth 2.0 token for the current user. */
1008
- oauth_token?: string;
1387
+ oauth_token?:
1388
+ string;
1009
1389
  /** Returns response with indentations and line breaks. */
1010
- prettyPrint?: boolean;
1390
+ prettyPrint?:
1391
+ boolean;
1011
1392
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1012
- quotaUser?: string;
1393
+ quotaUser?:
1394
+ string;
1013
1395
  /**
1014
1396
  * 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
1015
1397
  * field.
1016
1398
  */
1017
- resource: string;
1399
+ resource:
1400
+ string;
1018
1401
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1019
- upload_protocol?: string;
1402
+ upload_protocol?:
1403
+ string;
1020
1404
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1021
- uploadType?: string;
1405
+ uploadType?:
1406
+ string;
1022
1407
  },
1023
1408
  body: SetIamPolicyRequest): Request<Policy>;
1024
1409
  /** Starts running a workstation so that users can connect to it. */
1025
1410
  start(request: {
1026
1411
  /** V1 error format. */
1027
- "$.xgafv"?: string;
1412
+ "$.xgafv"?:
1413
+ string;
1028
1414
  /** OAuth access token. */
1029
- access_token?: string;
1415
+ access_token?:
1416
+ string;
1030
1417
  /** Data format for response. */
1031
- alt?: string;
1418
+ alt?:
1419
+ string;
1032
1420
  /** JSONP */
1033
- callback?: string;
1421
+ callback?:
1422
+ string;
1034
1423
  /** Selector specifying which fields to include in a partial response. */
1035
- fields?: string;
1424
+ fields?:
1425
+ string;
1036
1426
  /** 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. */
1037
- key?: string;
1427
+ key?:
1428
+ string;
1038
1429
  /** Required. Name of the workstation to start. */
1039
- name: string;
1430
+ name:
1431
+ string;
1040
1432
  /** OAuth 2.0 token for the current user. */
1041
- oauth_token?: string;
1433
+ oauth_token?:
1434
+ string;
1042
1435
  /** Returns response with indentations and line breaks. */
1043
- prettyPrint?: boolean;
1436
+ prettyPrint?:
1437
+ boolean;
1044
1438
  /** 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. */
1045
- quotaUser?: string;
1439
+ quotaUser?:
1440
+ string;
1046
1441
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1047
- upload_protocol?: string;
1442
+ upload_protocol?:
1443
+ string;
1048
1444
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1049
- uploadType?: string;
1445
+ uploadType?:
1446
+ string;
1050
1447
  /** Request body */
1051
- resource: StartWorkstationRequest;
1448
+ resource:
1449
+ StartWorkstationRequest;
1052
1450
  }): Request<Operation>;
1053
1451
  start(request: {
1054
1452
  /** V1 error format. */
1055
- "$.xgafv"?: string;
1453
+ "$.xgafv"?:
1454
+ string;
1056
1455
  /** OAuth access token. */
1057
- access_token?: string;
1456
+ access_token?:
1457
+ string;
1058
1458
  /** Data format for response. */
1059
- alt?: string;
1459
+ alt?:
1460
+ string;
1060
1461
  /** JSONP */
1061
- callback?: string;
1462
+ callback?:
1463
+ string;
1062
1464
  /** Selector specifying which fields to include in a partial response. */
1063
- fields?: string;
1465
+ fields?:
1466
+ string;
1064
1467
  /** 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. */
1065
- key?: string;
1468
+ key?:
1469
+ string;
1066
1470
  /** Required. Name of the workstation to start. */
1067
- name: string;
1471
+ name:
1472
+ string;
1068
1473
  /** OAuth 2.0 token for the current user. */
1069
- oauth_token?: string;
1474
+ oauth_token?:
1475
+ string;
1070
1476
  /** Returns response with indentations and line breaks. */
1071
- prettyPrint?: boolean;
1477
+ prettyPrint?:
1478
+ boolean;
1072
1479
  /** 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. */
1073
- quotaUser?: string;
1480
+ quotaUser?:
1481
+ string;
1074
1482
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1075
- upload_protocol?: string;
1483
+ upload_protocol?:
1484
+ string;
1076
1485
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1077
- uploadType?: string;
1486
+ uploadType?:
1487
+ string;
1078
1488
  },
1079
1489
  body: StartWorkstationRequest): Request<Operation>;
1080
1490
  /** Stops running a workstation, reducing costs. */
1081
1491
  stop(request: {
1082
1492
  /** V1 error format. */
1083
- "$.xgafv"?: string;
1493
+ "$.xgafv"?:
1494
+ string;
1084
1495
  /** OAuth access token. */
1085
- access_token?: string;
1496
+ access_token?:
1497
+ string;
1086
1498
  /** Data format for response. */
1087
- alt?: string;
1499
+ alt?:
1500
+ string;
1088
1501
  /** JSONP */
1089
- callback?: string;
1502
+ callback?:
1503
+ string;
1090
1504
  /** Selector specifying which fields to include in a partial response. */
1091
- fields?: string;
1505
+ fields?:
1506
+ string;
1092
1507
  /** 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. */
1093
- key?: string;
1508
+ key?:
1509
+ string;
1094
1510
  /** Required. Name of the workstation to stop. */
1095
- name: string;
1511
+ name:
1512
+ string;
1096
1513
  /** OAuth 2.0 token for the current user. */
1097
- oauth_token?: string;
1514
+ oauth_token?:
1515
+ string;
1098
1516
  /** Returns response with indentations and line breaks. */
1099
- prettyPrint?: boolean;
1517
+ prettyPrint?:
1518
+ boolean;
1100
1519
  /** 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. */
1101
- quotaUser?: string;
1520
+ quotaUser?:
1521
+ string;
1102
1522
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1103
- upload_protocol?: string;
1523
+ upload_protocol?:
1524
+ string;
1104
1525
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1105
- uploadType?: string;
1526
+ uploadType?:
1527
+ string;
1106
1528
  /** Request body */
1107
- resource: StopWorkstationRequest;
1529
+ resource:
1530
+ StopWorkstationRequest;
1108
1531
  }): Request<Operation>;
1109
1532
  stop(request: {
1110
1533
  /** V1 error format. */
1111
- "$.xgafv"?: string;
1534
+ "$.xgafv"?:
1535
+ string;
1112
1536
  /** OAuth access token. */
1113
- access_token?: string;
1537
+ access_token?:
1538
+ string;
1114
1539
  /** Data format for response. */
1115
- alt?: string;
1540
+ alt?:
1541
+ string;
1116
1542
  /** JSONP */
1117
- callback?: string;
1543
+ callback?:
1544
+ string;
1118
1545
  /** Selector specifying which fields to include in a partial response. */
1119
- fields?: string;
1546
+ fields?:
1547
+ string;
1120
1548
  /** 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. */
1121
- key?: string;
1549
+ key?:
1550
+ string;
1122
1551
  /** Required. Name of the workstation to stop. */
1123
- name: string;
1552
+ name:
1553
+ string;
1124
1554
  /** OAuth 2.0 token for the current user. */
1125
- oauth_token?: string;
1555
+ oauth_token?:
1556
+ string;
1126
1557
  /** Returns response with indentations and line breaks. */
1127
- prettyPrint?: boolean;
1558
+ prettyPrint?:
1559
+ boolean;
1128
1560
  /** 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. */
1129
- quotaUser?: string;
1561
+ quotaUser?:
1562
+ string;
1130
1563
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1131
- upload_protocol?: string;
1564
+ upload_protocol?:
1565
+ string;
1132
1566
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1133
- uploadType?: string;
1567
+ uploadType?:
1568
+ string;
1134
1569
  },
1135
1570
  body: StopWorkstationRequest): Request<Operation>;
1136
1571
  /**
@@ -1139,32 +1574,44 @@ declare namespace gapi.client {
1139
1574
  */
1140
1575
  testIamPermissions(request: {
1141
1576
  /** V1 error format. */
1142
- "$.xgafv"?: string;
1577
+ "$.xgafv"?:
1578
+ string;
1143
1579
  /** OAuth access token. */
1144
- access_token?: string;
1580
+ access_token?:
1581
+ string;
1145
1582
  /** Data format for response. */
1146
- alt?: string;
1583
+ alt?:
1584
+ string;
1147
1585
  /** JSONP */
1148
- callback?: string;
1586
+ callback?:
1587
+ string;
1149
1588
  /** Selector specifying which fields to include in a partial response. */
1150
- fields?: string;
1589
+ fields?:
1590
+ string;
1151
1591
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1152
- key?: string;
1592
+ key?:
1593
+ string;
1153
1594
  /** OAuth 2.0 token for the current user. */
1154
- oauth_token?: string;
1595
+ oauth_token?:
1596
+ string;
1155
1597
  /** Returns response with indentations and line breaks. */
1156
- prettyPrint?: boolean;
1598
+ prettyPrint?:
1599
+ boolean;
1157
1600
  /** 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. */
1158
- quotaUser?: string;
1601
+ quotaUser?:
1602
+ string;
1159
1603
  /**
1160
1604
  * 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
1161
1605
  * this field.
1162
1606
  */
1163
- resource: string;
1607
+ resource:
1608
+ string;
1164
1609
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1165
- upload_protocol?: string;
1610
+ upload_protocol?:
1611
+ string;
1166
1612
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1167
- uploadType?: string;
1613
+ uploadType?:
1614
+ string;
1168
1615
  },
1169
1616
  body: TestIamPermissionsRequest): Request<TestIamPermissionsResponse>;
1170
1617
  }
@@ -1172,143 +1619,206 @@ declare namespace gapi.client {
1172
1619
  /** Creates a new workstation configuration. */
1173
1620
  create(request: {
1174
1621
  /** V1 error format. */
1175
- "$.xgafv"?: string;
1622
+ "$.xgafv"?:
1623
+ string;
1176
1624
  /** OAuth access token. */
1177
- access_token?: string;
1625
+ access_token?:
1626
+ string;
1178
1627
  /** Data format for response. */
1179
- alt?: string;
1628
+ alt?:
1629
+ string;
1180
1630
  /** JSONP */
1181
- callback?: string;
1631
+ callback?:
1632
+ string;
1182
1633
  /** Selector specifying which fields to include in a partial response. */
1183
- fields?: string;
1634
+ fields?:
1635
+ string;
1184
1636
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1185
- key?: string;
1637
+ key?:
1638
+ string;
1186
1639
  /** OAuth 2.0 token for the current user. */
1187
- oauth_token?: string;
1640
+ oauth_token?:
1641
+ string;
1188
1642
  /** Required. Parent resource name. */
1189
- parent: string;
1643
+ parent:
1644
+ string;
1190
1645
  /** Returns response with indentations and line breaks. */
1191
- prettyPrint?: boolean;
1646
+ prettyPrint?:
1647
+ boolean;
1192
1648
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
1193
- quotaUser?: string;
1649
+ quotaUser?:
1650
+ string;
1194
1651
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1195
- upload_protocol?: string;
1652
+ upload_protocol?:
1653
+ string;
1196
1654
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1197
- uploadType?: string;
1655
+ uploadType?:
1656
+ string;
1198
1657
  /** If set, validate the request and preview the review, but do not actually apply it. */
1199
- validateOnly?: boolean;
1658
+ validateOnly?:
1659
+ boolean;
1200
1660
  /** Required. ID to use for the workstation configuration. */
1201
- workstationConfigId?: string;
1661
+ workstationConfigId?:
1662
+ string;
1202
1663
  /** Request body */
1203
- resource: WorkstationConfig;
1664
+ resource:
1665
+ WorkstationConfig;
1204
1666
  }): Request<Operation>;
1205
1667
  create(request: {
1206
1668
  /** V1 error format. */
1207
- "$.xgafv"?: string;
1669
+ "$.xgafv"?:
1670
+ string;
1208
1671
  /** OAuth access token. */
1209
- access_token?: string;
1672
+ access_token?:
1673
+ string;
1210
1674
  /** Data format for response. */
1211
- alt?: string;
1675
+ alt?:
1676
+ string;
1212
1677
  /** JSONP */
1213
- callback?: string;
1678
+ callback?:
1679
+ string;
1214
1680
  /** Selector specifying which fields to include in a partial response. */
1215
- fields?: string;
1681
+ fields?:
1682
+ string;
1216
1683
  /** 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. */
1217
- key?: string;
1684
+ key?:
1685
+ string;
1218
1686
  /** OAuth 2.0 token for the current user. */
1219
- oauth_token?: string;
1687
+ oauth_token?:
1688
+ string;
1220
1689
  /** Required. Parent resource name. */
1221
- parent: string;
1690
+ parent:
1691
+ string;
1222
1692
  /** Returns response with indentations and line breaks. */
1223
- prettyPrint?: boolean;
1693
+ prettyPrint?:
1694
+ boolean;
1224
1695
  /** 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. */
1225
- quotaUser?: string;
1696
+ quotaUser?:
1697
+ string;
1226
1698
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1227
- upload_protocol?: string;
1699
+ upload_protocol?:
1700
+ string;
1228
1701
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1229
- uploadType?: string;
1702
+ uploadType?:
1703
+ string;
1230
1704
  /** If set, validate the request and preview the review, but do not actually apply it. */
1231
- validateOnly?: boolean;
1705
+ validateOnly?:
1706
+ boolean;
1232
1707
  /** Required. ID to use for the workstation configuration. */
1233
- workstationConfigId?: string;
1708
+ workstationConfigId?:
1709
+ string;
1234
1710
  },
1235
1711
  body: WorkstationConfig): Request<Operation>;
1236
1712
  /** Deletes the specified workstation configuration. */
1237
1713
  delete(request?: {
1238
1714
  /** V1 error format. */
1239
- "$.xgafv"?: string;
1715
+ "$.xgafv"?:
1716
+ string;
1240
1717
  /** OAuth access token. */
1241
- access_token?: string;
1718
+ access_token?:
1719
+ string;
1242
1720
  /** Data format for response. */
1243
- alt?: string;
1721
+ alt?:
1722
+ string;
1244
1723
  /** JSONP */
1245
- callback?: string;
1724
+ callback?:
1725
+ string;
1246
1726
  /** If set, the request is rejected if the latest version of the workstation configuration on the server does not have this ETag. */
1247
- etag?: string;
1727
+ etag?:
1728
+ string;
1248
1729
  /** Selector specifying which fields to include in a partial response. */
1249
- fields?: string;
1730
+ fields?:
1731
+ string;
1250
1732
  /** If set, any workstations in the workstation configuration are also deleted. Otherwise, the request works only if the workstation configuration has no workstations. */
1251
- force?: boolean;
1733
+ force?:
1734
+ boolean;
1252
1735
  /** 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. */
1253
- key?: string;
1736
+ key?:
1737
+ string;
1254
1738
  /** Required. Name of the workstation configuration to delete. */
1255
- name: string;
1739
+ name:
1740
+ string;
1256
1741
  /** OAuth 2.0 token for the current user. */
1257
- oauth_token?: string;
1742
+ oauth_token?:
1743
+ string;
1258
1744
  /** Returns response with indentations and line breaks. */
1259
- prettyPrint?: boolean;
1745
+ prettyPrint?:
1746
+ boolean;
1260
1747
  /** 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. */
1261
- quotaUser?: string;
1748
+ quotaUser?:
1749
+ string;
1262
1750
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1263
- upload_protocol?: string;
1751
+ upload_protocol?:
1752
+ string;
1264
1753
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1265
- uploadType?: string;
1754
+ uploadType?:
1755
+ string;
1266
1756
  /** If set, validate the request and preview the review, but do not actually apply it. */
1267
- validateOnly?: boolean;
1757
+ validateOnly?:
1758
+ boolean;
1268
1759
  }): Request<Operation>;
1269
1760
  /** Returns the requested workstation configuration. */
1270
1761
  get(request?: {
1271
1762
  /** V1 error format. */
1272
- "$.xgafv"?: string;
1763
+ "$.xgafv"?:
1764
+ string;
1273
1765
  /** OAuth access token. */
1274
- access_token?: string;
1766
+ access_token?:
1767
+ string;
1275
1768
  /** Data format for response. */
1276
- alt?: string;
1769
+ alt?:
1770
+ string;
1277
1771
  /** JSONP */
1278
- callback?: string;
1772
+ callback?:
1773
+ string;
1279
1774
  /** Selector specifying which fields to include in a partial response. */
1280
- fields?: string;
1775
+ fields?:
1776
+ string;
1281
1777
  /** 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. */
1282
- key?: string;
1778
+ key?:
1779
+ string;
1283
1780
  /** Required. Name of the requested resource. */
1284
- name: string;
1781
+ name:
1782
+ string;
1285
1783
  /** OAuth 2.0 token for the current user. */
1286
- oauth_token?: string;
1784
+ oauth_token?:
1785
+ string;
1287
1786
  /** Returns response with indentations and line breaks. */
1288
- prettyPrint?: boolean;
1787
+ prettyPrint?:
1788
+ boolean;
1289
1789
  /** 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. */
1290
- quotaUser?: string;
1790
+ quotaUser?:
1791
+ string;
1291
1792
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1292
- upload_protocol?: string;
1793
+ upload_protocol?:
1794
+ string;
1293
1795
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1294
- uploadType?: string;
1796
+ uploadType?:
1797
+ string;
1295
1798
  }): Request<WorkstationConfig>;
1296
1799
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
1297
1800
  getIamPolicy(request?: {
1298
1801
  /** V1 error format. */
1299
- "$.xgafv"?: string;
1802
+ "$.xgafv"?:
1803
+ string;
1300
1804
  /** OAuth access token. */
1301
- access_token?: string;
1805
+ access_token?:
1806
+ string;
1302
1807
  /** Data format for response. */
1303
- alt?: string;
1808
+ alt?:
1809
+ string;
1304
1810
  /** JSONP */
1305
- callback?: string;
1811
+ callback?:
1812
+ string;
1306
1813
  /** Selector specifying which fields to include in a partial response. */
1307
- fields?: string;
1814
+ fields?:
1815
+ string;
1308
1816
  /** 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. */
1309
- key?: string;
1817
+ key?:
1818
+ string;
1310
1819
  /** OAuth 2.0 token for the current user. */
1311
- oauth_token?: string;
1820
+ oauth_token?:
1821
+ string;
1312
1822
  /**
1313
1823
  * Optional. The maximum policy version that will be used to format the policy. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. Requests for
1314
1824
  * policies with any conditional role bindings must specify version 3. Policies with no conditional role bindings may specify any valid value or leave the field unset. The policy
@@ -1316,180 +1826,257 @@ declare namespace gapi.client {
1316
1826
  * role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM
1317
1827
  * documentation](https://cloud.google.com/iam/help/conditions/resource-policies).
1318
1828
  */
1319
- "options.requestedPolicyVersion"?: number;
1829
+ "options.requestedPolicyVersion"?:
1830
+ number;
1320
1831
  /** Returns response with indentations and line breaks. */
1321
- prettyPrint?: boolean;
1832
+ prettyPrint?:
1833
+ boolean;
1322
1834
  /** 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. */
1323
- quotaUser?: string;
1835
+ quotaUser?:
1836
+ string;
1324
1837
  /**
1325
1838
  * 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
1326
1839
  * field.
1327
1840
  */
1328
- resource: string;
1841
+ resource:
1842
+ string;
1329
1843
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1330
- upload_protocol?: string;
1844
+ upload_protocol?:
1845
+ string;
1331
1846
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1332
- uploadType?: string;
1847
+ uploadType?:
1848
+ string;
1333
1849
  }): Request<Policy>;
1334
1850
  /** Returns all workstation configurations in the specified cluster. */
1335
1851
  list(request?: {
1336
1852
  /** V1 error format. */
1337
- "$.xgafv"?: string;
1853
+ "$.xgafv"?:
1854
+ string;
1338
1855
  /** OAuth access token. */
1339
- access_token?: string;
1856
+ access_token?:
1857
+ string;
1340
1858
  /** Data format for response. */
1341
- alt?: string;
1859
+ alt?:
1860
+ string;
1342
1861
  /** JSONP */
1343
- callback?: string;
1862
+ callback?:
1863
+ string;
1344
1864
  /** Selector specifying which fields to include in a partial response. */
1345
- fields?: string;
1865
+ fields?:
1866
+ string;
1346
1867
  /** 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. */
1347
- key?: string;
1868
+ key?:
1869
+ string;
1348
1870
  /** OAuth 2.0 token for the current user. */
1349
- oauth_token?: string;
1871
+ oauth_token?:
1872
+ string;
1350
1873
  /** Maximum number of items to return. */
1351
- pageSize?: number;
1874
+ pageSize?:
1875
+ number;
1352
1876
  /** next_page_token value returned from a previous List request, if any. */
1353
- pageToken?: string;
1877
+ pageToken?:
1878
+ string;
1354
1879
  /** Required. Parent resource name. */
1355
- parent: string;
1880
+ parent:
1881
+ string;
1356
1882
  /** Returns response with indentations and line breaks. */
1357
- prettyPrint?: boolean;
1883
+ prettyPrint?:
1884
+ boolean;
1358
1885
  /** 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. */
1359
- quotaUser?: string;
1886
+ quotaUser?:
1887
+ string;
1360
1888
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1361
- upload_protocol?: string;
1889
+ upload_protocol?:
1890
+ string;
1362
1891
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1363
- uploadType?: string;
1892
+ uploadType?:
1893
+ string;
1364
1894
  }): Request<ListWorkstationConfigsResponse>;
1365
1895
  /** Returns all workstation configurations in the specified cluster on which the caller has the "workstations.workstation.create" permission. */
1366
1896
  listUsable(request?: {
1367
1897
  /** V1 error format. */
1368
- "$.xgafv"?: string;
1898
+ "$.xgafv"?:
1899
+ string;
1369
1900
  /** OAuth access token. */
1370
- access_token?: string;
1901
+ access_token?:
1902
+ string;
1371
1903
  /** Data format for response. */
1372
- alt?: string;
1904
+ alt?:
1905
+ string;
1373
1906
  /** JSONP */
1374
- callback?: string;
1907
+ callback?:
1908
+ string;
1375
1909
  /** Selector specifying which fields to include in a partial response. */
1376
- fields?: string;
1910
+ fields?:
1911
+ string;
1377
1912
  /** 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. */
1378
- key?: string;
1913
+ key?:
1914
+ string;
1379
1915
  /** OAuth 2.0 token for the current user. */
1380
- oauth_token?: string;
1916
+ oauth_token?:
1917
+ string;
1381
1918
  /** Maximum number of items to return. */
1382
- pageSize?: number;
1919
+ pageSize?:
1920
+ number;
1383
1921
  /** next_page_token value returned from a previous List request, if any. */
1384
- pageToken?: string;
1922
+ pageToken?:
1923
+ string;
1385
1924
  /** Required. Parent resource name. */
1386
- parent: string;
1925
+ parent:
1926
+ string;
1387
1927
  /** Returns response with indentations and line breaks. */
1388
- prettyPrint?: boolean;
1928
+ prettyPrint?:
1929
+ boolean;
1389
1930
  /** 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. */
1390
- quotaUser?: string;
1931
+ quotaUser?:
1932
+ string;
1391
1933
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1392
- upload_protocol?: string;
1934
+ upload_protocol?:
1935
+ string;
1393
1936
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1394
- uploadType?: string;
1937
+ uploadType?:
1938
+ string;
1395
1939
  }): Request<ListUsableWorkstationConfigsResponse>;
1396
1940
  /** Updates an existing workstation configuration. */
1397
1941
  patch(request: {
1398
1942
  /** V1 error format. */
1399
- "$.xgafv"?: string;
1943
+ "$.xgafv"?:
1944
+ string;
1400
1945
  /** OAuth access token. */
1401
- access_token?: string;
1946
+ access_token?:
1947
+ string;
1402
1948
  /** If set and the workstation configuration is not found, a new workstation configuration will be created. In this situation, update_mask is ignored. */
1403
- allowMissing?: boolean;
1949
+ allowMissing?:
1950
+ boolean;
1404
1951
  /** Data format for response. */
1405
- alt?: string;
1952
+ alt?:
1953
+ string;
1406
1954
  /** JSONP */
1407
- callback?: string;
1955
+ callback?:
1956
+ string;
1408
1957
  /** Selector specifying which fields to include in a partial response. */
1409
- fields?: string;
1958
+ fields?:
1959
+ string;
1410
1960
  /** 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. */
1411
- key?: string;
1961
+ key?:
1962
+ string;
1412
1963
  /** Full name of this resource. */
1413
- name: string;
1964
+ name:
1965
+ string;
1414
1966
  /** OAuth 2.0 token for the current user. */
1415
- oauth_token?: string;
1967
+ oauth_token?:
1968
+ string;
1416
1969
  /** Returns response with indentations and line breaks. */
1417
- prettyPrint?: boolean;
1970
+ prettyPrint?:
1971
+ boolean;
1418
1972
  /** 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. */
1419
- quotaUser?: string;
1973
+ quotaUser?:
1974
+ string;
1420
1975
  /** Required. Mask specifying which fields in the workstation configuration should be updated. */
1421
- updateMask?: string;
1976
+ updateMask?:
1977
+ string;
1422
1978
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1423
- upload_protocol?: string;
1979
+ upload_protocol?:
1980
+ string;
1424
1981
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1425
- uploadType?: string;
1982
+ uploadType?:
1983
+ string;
1426
1984
  /** If set, validate the request and preview the review, but do not actually apply it. */
1427
- validateOnly?: boolean;
1985
+ validateOnly?:
1986
+ boolean;
1428
1987
  /** Request body */
1429
- resource: WorkstationConfig;
1988
+ resource:
1989
+ WorkstationConfig;
1430
1990
  }): Request<Operation>;
1431
1991
  patch(request: {
1432
1992
  /** V1 error format. */
1433
- "$.xgafv"?: string;
1993
+ "$.xgafv"?:
1994
+ string;
1434
1995
  /** OAuth access token. */
1435
- access_token?: string;
1996
+ access_token?:
1997
+ string;
1436
1998
  /** If set and the workstation configuration is not found, a new workstation configuration will be created. In this situation, update_mask is ignored. */
1437
- allowMissing?: boolean;
1999
+ allowMissing?:
2000
+ boolean;
1438
2001
  /** Data format for response. */
1439
- alt?: string;
2002
+ alt?:
2003
+ string;
1440
2004
  /** JSONP */
1441
- callback?: string;
2005
+ callback?:
2006
+ string;
1442
2007
  /** Selector specifying which fields to include in a partial response. */
1443
- fields?: string;
2008
+ fields?:
2009
+ string;
1444
2010
  /** 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. */
1445
- key?: string;
2011
+ key?:
2012
+ string;
1446
2013
  /** Full name of this resource. */
1447
- name: string;
2014
+ name:
2015
+ string;
1448
2016
  /** OAuth 2.0 token for the current user. */
1449
- oauth_token?: string;
2017
+ oauth_token?:
2018
+ string;
1450
2019
  /** Returns response with indentations and line breaks. */
1451
- prettyPrint?: boolean;
2020
+ prettyPrint?:
2021
+ boolean;
1452
2022
  /** 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. */
1453
- quotaUser?: string;
2023
+ quotaUser?:
2024
+ string;
1454
2025
  /** Required. Mask specifying which fields in the workstation configuration should be updated. */
1455
- updateMask?: string;
2026
+ updateMask?:
2027
+ string;
1456
2028
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1457
- upload_protocol?: string;
2029
+ upload_protocol?:
2030
+ string;
1458
2031
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1459
- uploadType?: string;
2032
+ uploadType?:
2033
+ string;
1460
2034
  /** If set, validate the request and preview the review, but do not actually apply it. */
1461
- validateOnly?: boolean;
2035
+ validateOnly?:
2036
+ boolean;
1462
2037
  },
1463
2038
  body: WorkstationConfig): Request<Operation>;
1464
2039
  /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
1465
2040
  setIamPolicy(request: {
1466
2041
  /** V1 error format. */
1467
- "$.xgafv"?: string;
2042
+ "$.xgafv"?:
2043
+ string;
1468
2044
  /** OAuth access token. */
1469
- access_token?: string;
2045
+ access_token?:
2046
+ string;
1470
2047
  /** Data format for response. */
1471
- alt?: string;
2048
+ alt?:
2049
+ string;
1472
2050
  /** JSONP */
1473
- callback?: string;
2051
+ callback?:
2052
+ string;
1474
2053
  /** Selector specifying which fields to include in a partial response. */
1475
- fields?: string;
2054
+ fields?:
2055
+ string;
1476
2056
  /** 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. */
1477
- key?: string;
2057
+ key?:
2058
+ string;
1478
2059
  /** OAuth 2.0 token for the current user. */
1479
- oauth_token?: string;
2060
+ oauth_token?:
2061
+ string;
1480
2062
  /** Returns response with indentations and line breaks. */
1481
- prettyPrint?: boolean;
2063
+ prettyPrint?:
2064
+ boolean;
1482
2065
  /** 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. */
1483
- quotaUser?: string;
2066
+ quotaUser?:
2067
+ string;
1484
2068
  /**
1485
2069
  * 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
1486
2070
  * field.
1487
2071
  */
1488
- resource: string;
2072
+ resource:
2073
+ string;
1489
2074
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1490
- upload_protocol?: string;
2075
+ upload_protocol?:
2076
+ string;
1491
2077
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1492
- uploadType?: string;
2078
+ uploadType?:
2079
+ string;
1493
2080
  },
1494
2081
  body: SetIamPolicyRequest): Request<Policy>;
1495
2082
  /**
@@ -1498,271 +2085,389 @@ declare namespace gapi.client {
1498
2085
  */
1499
2086
  testIamPermissions(request: {
1500
2087
  /** V1 error format. */
1501
- "$.xgafv"?: string;
2088
+ "$.xgafv"?:
2089
+ string;
1502
2090
  /** OAuth access token. */
1503
- access_token?: string;
2091
+ access_token?:
2092
+ string;
1504
2093
  /** Data format for response. */
1505
- alt?: string;
2094
+ alt?:
2095
+ string;
1506
2096
  /** JSONP */
1507
- callback?: string;
2097
+ callback?:
2098
+ string;
1508
2099
  /** Selector specifying which fields to include in a partial response. */
1509
- fields?: string;
2100
+ fields?:
2101
+ string;
1510
2102
  /** 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. */
1511
- key?: string;
2103
+ key?:
2104
+ string;
1512
2105
  /** OAuth 2.0 token for the current user. */
1513
- oauth_token?: string;
2106
+ oauth_token?:
2107
+ string;
1514
2108
  /** Returns response with indentations and line breaks. */
1515
- prettyPrint?: boolean;
2109
+ prettyPrint?:
2110
+ boolean;
1516
2111
  /** 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. */
1517
- quotaUser?: string;
2112
+ quotaUser?:
2113
+ string;
1518
2114
  /**
1519
2115
  * 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
1520
2116
  * this field.
1521
2117
  */
1522
- resource: string;
2118
+ resource:
2119
+ string;
1523
2120
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1524
- upload_protocol?: string;
2121
+ upload_protocol?:
2122
+ string;
1525
2123
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1526
- uploadType?: string;
2124
+ uploadType?:
2125
+ string;
1527
2126
  },
1528
2127
  body: TestIamPermissionsRequest): Request<TestIamPermissionsResponse>;
1529
- workstations: WorkstationsResource;
2128
+ workstations:
2129
+ WorkstationsResource;
1530
2130
  }
1531
2131
  interface WorkstationClustersResource {
1532
2132
  /** Creates a new workstation cluster. */
1533
2133
  create(request: {
1534
2134
  /** V1 error format. */
1535
- "$.xgafv"?: string;
2135
+ "$.xgafv"?:
2136
+ string;
1536
2137
  /** OAuth access token. */
1537
- access_token?: string;
2138
+ access_token?:
2139
+ string;
1538
2140
  /** Data format for response. */
1539
- alt?: string;
2141
+ alt?:
2142
+ string;
1540
2143
  /** JSONP */
1541
- callback?: string;
2144
+ callback?:
2145
+ string;
1542
2146
  /** Selector specifying which fields to include in a partial response. */
1543
- fields?: string;
2147
+ fields?:
2148
+ string;
1544
2149
  /** 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. */
1545
- key?: string;
2150
+ key?:
2151
+ string;
1546
2152
  /** OAuth 2.0 token for the current user. */
1547
- oauth_token?: string;
2153
+ oauth_token?:
2154
+ string;
1548
2155
  /** Required. Parent resource name. */
1549
- parent: string;
2156
+ parent:
2157
+ string;
1550
2158
  /** Returns response with indentations and line breaks. */
1551
- prettyPrint?: boolean;
2159
+ prettyPrint?:
2160
+ boolean;
1552
2161
  /** 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. */
1553
- quotaUser?: string;
2162
+ quotaUser?:
2163
+ string;
1554
2164
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1555
- upload_protocol?: string;
2165
+ upload_protocol?:
2166
+ string;
1556
2167
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1557
- uploadType?: string;
2168
+ uploadType?:
2169
+ string;
1558
2170
  /** If set, validate the request and preview the review, but do not actually apply it. */
1559
- validateOnly?: boolean;
2171
+ validateOnly?:
2172
+ boolean;
1560
2173
  /** Required. ID to use for the workstation cluster. */
1561
- workstationClusterId?: string;
2174
+ workstationClusterId?:
2175
+ string;
1562
2176
  /** Request body */
1563
- resource: WorkstationCluster;
2177
+ resource:
2178
+ WorkstationCluster;
1564
2179
  }): Request<Operation>;
1565
2180
  create(request: {
1566
2181
  /** V1 error format. */
1567
- "$.xgafv"?: string;
2182
+ "$.xgafv"?:
2183
+ string;
1568
2184
  /** OAuth access token. */
1569
- access_token?: string;
2185
+ access_token?:
2186
+ string;
1570
2187
  /** Data format for response. */
1571
- alt?: string;
2188
+ alt?:
2189
+ string;
1572
2190
  /** JSONP */
1573
- callback?: string;
2191
+ callback?:
2192
+ string;
1574
2193
  /** Selector specifying which fields to include in a partial response. */
1575
- fields?: string;
2194
+ fields?:
2195
+ string;
1576
2196
  /** 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. */
1577
- key?: string;
2197
+ key?:
2198
+ string;
1578
2199
  /** OAuth 2.0 token for the current user. */
1579
- oauth_token?: string;
2200
+ oauth_token?:
2201
+ string;
1580
2202
  /** Required. Parent resource name. */
1581
- parent: string;
2203
+ parent:
2204
+ string;
1582
2205
  /** Returns response with indentations and line breaks. */
1583
- prettyPrint?: boolean;
2206
+ prettyPrint?:
2207
+ boolean;
1584
2208
  /** 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. */
1585
- quotaUser?: string;
2209
+ quotaUser?:
2210
+ string;
1586
2211
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1587
- upload_protocol?: string;
2212
+ upload_protocol?:
2213
+ string;
1588
2214
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1589
- uploadType?: string;
2215
+ uploadType?:
2216
+ string;
1590
2217
  /** If set, validate the request and preview the review, but do not actually apply it. */
1591
- validateOnly?: boolean;
2218
+ validateOnly?:
2219
+ boolean;
1592
2220
  /** Required. ID to use for the workstation cluster. */
1593
- workstationClusterId?: string;
2221
+ workstationClusterId?:
2222
+ string;
1594
2223
  },
1595
2224
  body: WorkstationCluster): Request<Operation>;
1596
2225
  /** Deletes the specified workstation cluster. */
1597
2226
  delete(request?: {
1598
2227
  /** V1 error format. */
1599
- "$.xgafv"?: string;
2228
+ "$.xgafv"?:
2229
+ string;
1600
2230
  /** OAuth access token. */
1601
- access_token?: string;
2231
+ access_token?:
2232
+ string;
1602
2233
  /** Data format for response. */
1603
- alt?: string;
2234
+ alt?:
2235
+ string;
1604
2236
  /** JSONP */
1605
- callback?: string;
2237
+ callback?:
2238
+ string;
1606
2239
  /** If set, the request will be rejected if the latest version of the workstation cluster on the server does not have this ETag. */
1607
- etag?: string;
2240
+ etag?:
2241
+ string;
1608
2242
  /** Selector specifying which fields to include in a partial response. */
1609
- fields?: string;
2243
+ fields?:
2244
+ string;
1610
2245
  /**
1611
2246
  * If set, any workstation configurations and workstations in the workstation cluster are also deleted. Otherwise, the request only works if the workstation cluster has no
1612
2247
  * configurations or workstations.
1613
2248
  */
1614
- force?: boolean;
2249
+ force?:
2250
+ boolean;
1615
2251
  /** 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. */
1616
- key?: string;
2252
+ key?:
2253
+ string;
1617
2254
  /** Required. Name of the workstation cluster to delete. */
1618
- name: string;
2255
+ name:
2256
+ string;
1619
2257
  /** OAuth 2.0 token for the current user. */
1620
- oauth_token?: string;
2258
+ oauth_token?:
2259
+ string;
1621
2260
  /** Returns response with indentations and line breaks. */
1622
- prettyPrint?: boolean;
2261
+ prettyPrint?:
2262
+ boolean;
1623
2263
  /** 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. */
1624
- quotaUser?: string;
2264
+ quotaUser?:
2265
+ string;
1625
2266
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1626
- upload_protocol?: string;
2267
+ upload_protocol?:
2268
+ string;
1627
2269
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1628
- uploadType?: string;
2270
+ uploadType?:
2271
+ string;
1629
2272
  /** If set, validate the request and preview the review, but do not apply it. */
1630
- validateOnly?: boolean;
2273
+ validateOnly?:
2274
+ boolean;
1631
2275
  }): Request<Operation>;
1632
2276
  /** Returns the requested workstation cluster. */
1633
2277
  get(request?: {
1634
2278
  /** V1 error format. */
1635
- "$.xgafv"?: string;
2279
+ "$.xgafv"?:
2280
+ string;
1636
2281
  /** OAuth access token. */
1637
- access_token?: string;
2282
+ access_token?:
2283
+ string;
1638
2284
  /** Data format for response. */
1639
- alt?: string;
2285
+ alt?:
2286
+ string;
1640
2287
  /** JSONP */
1641
- callback?: string;
2288
+ callback?:
2289
+ string;
1642
2290
  /** Selector specifying which fields to include in a partial response. */
1643
- fields?: string;
2291
+ fields?:
2292
+ string;
1644
2293
  /** 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. */
1645
- key?: string;
2294
+ key?:
2295
+ string;
1646
2296
  /** Required. Name of the requested resource. */
1647
- name: string;
2297
+ name:
2298
+ string;
1648
2299
  /** OAuth 2.0 token for the current user. */
1649
- oauth_token?: string;
2300
+ oauth_token?:
2301
+ string;
1650
2302
  /** Returns response with indentations and line breaks. */
1651
- prettyPrint?: boolean;
2303
+ prettyPrint?:
2304
+ boolean;
1652
2305
  /** 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. */
1653
- quotaUser?: string;
2306
+ quotaUser?:
2307
+ string;
1654
2308
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1655
- upload_protocol?: string;
2309
+ upload_protocol?:
2310
+ string;
1656
2311
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1657
- uploadType?: string;
2312
+ uploadType?:
2313
+ string;
1658
2314
  }): Request<WorkstationCluster>;
1659
2315
  /** Returns all workstation clusters in the specified location. */
1660
2316
  list(request?: {
1661
2317
  /** V1 error format. */
1662
- "$.xgafv"?: string;
2318
+ "$.xgafv"?:
2319
+ string;
1663
2320
  /** OAuth access token. */
1664
- access_token?: string;
2321
+ access_token?:
2322
+ string;
1665
2323
  /** Data format for response. */
1666
- alt?: string;
2324
+ alt?:
2325
+ string;
1667
2326
  /** JSONP */
1668
- callback?: string;
2327
+ callback?:
2328
+ string;
1669
2329
  /** Selector specifying which fields to include in a partial response. */
1670
- fields?: string;
2330
+ fields?:
2331
+ string;
1671
2332
  /** 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. */
1672
- key?: string;
2333
+ key?:
2334
+ string;
1673
2335
  /** OAuth 2.0 token for the current user. */
1674
- oauth_token?: string;
2336
+ oauth_token?:
2337
+ string;
1675
2338
  /** Maximum number of items to return. */
1676
- pageSize?: number;
2339
+ pageSize?:
2340
+ number;
1677
2341
  /** next_page_token value returned from a previous List request, if any. */
1678
- pageToken?: string;
2342
+ pageToken?:
2343
+ string;
1679
2344
  /** Required. Parent resource name. */
1680
- parent: string;
2345
+ parent:
2346
+ string;
1681
2347
  /** Returns response with indentations and line breaks. */
1682
- prettyPrint?: boolean;
2348
+ prettyPrint?:
2349
+ boolean;
1683
2350
  /** 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. */
1684
- quotaUser?: string;
2351
+ quotaUser?:
2352
+ string;
1685
2353
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1686
- upload_protocol?: string;
2354
+ upload_protocol?:
2355
+ string;
1687
2356
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1688
- uploadType?: string;
2357
+ uploadType?:
2358
+ string;
1689
2359
  }): Request<ListWorkstationClustersResponse>;
1690
2360
  /** Updates an existing workstation cluster. */
1691
2361
  patch(request: {
1692
2362
  /** V1 error format. */
1693
- "$.xgafv"?: string;
2363
+ "$.xgafv"?:
2364
+ string;
1694
2365
  /** OAuth access token. */
1695
- access_token?: string;
2366
+ access_token?:
2367
+ string;
1696
2368
  /** If set, and the workstation cluster is not found, a new workstation cluster will be created. In this situation, update_mask is ignored. */
1697
- allowMissing?: boolean;
2369
+ allowMissing?:
2370
+ boolean;
1698
2371
  /** Data format for response. */
1699
- alt?: string;
2372
+ alt?:
2373
+ string;
1700
2374
  /** JSONP */
1701
- callback?: string;
2375
+ callback?:
2376
+ string;
1702
2377
  /** Selector specifying which fields to include in a partial response. */
1703
- fields?: string;
2378
+ fields?:
2379
+ string;
1704
2380
  /** 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. */
1705
- key?: string;
2381
+ key?:
2382
+ string;
1706
2383
  /** Full name of this resource. */
1707
- name: string;
2384
+ name:
2385
+ string;
1708
2386
  /** OAuth 2.0 token for the current user. */
1709
- oauth_token?: string;
2387
+ oauth_token?:
2388
+ string;
1710
2389
  /** Returns response with indentations and line breaks. */
1711
- prettyPrint?: boolean;
2390
+ prettyPrint?:
2391
+ boolean;
1712
2392
  /** 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. */
1713
- quotaUser?: string;
2393
+ quotaUser?:
2394
+ string;
1714
2395
  /** Required. Mask that specifies which fields in the workstation cluster should be updated. */
1715
- updateMask?: string;
2396
+ updateMask?:
2397
+ string;
1716
2398
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1717
- upload_protocol?: string;
2399
+ upload_protocol?:
2400
+ string;
1718
2401
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1719
- uploadType?: string;
2402
+ uploadType?:
2403
+ string;
1720
2404
  /** If set, validate the request and preview the review, but do not actually apply it. */
1721
- validateOnly?: boolean;
2405
+ validateOnly?:
2406
+ boolean;
1722
2407
  /** Request body */
1723
- resource: WorkstationCluster;
2408
+ resource:
2409
+ WorkstationCluster;
1724
2410
  }): Request<Operation>;
1725
2411
  patch(request: {
1726
2412
  /** V1 error format. */
1727
- "$.xgafv"?: string;
2413
+ "$.xgafv"?:
2414
+ string;
1728
2415
  /** OAuth access token. */
1729
- access_token?: string;
2416
+ access_token?:
2417
+ string;
1730
2418
  /** If set, and the workstation cluster is not found, a new workstation cluster will be created. In this situation, update_mask is ignored. */
1731
- allowMissing?: boolean;
2419
+ allowMissing?:
2420
+ boolean;
1732
2421
  /** Data format for response. */
1733
- alt?: string;
2422
+ alt?:
2423
+ string;
1734
2424
  /** JSONP */
1735
- callback?: string;
2425
+ callback?:
2426
+ string;
1736
2427
  /** Selector specifying which fields to include in a partial response. */
1737
- fields?: string;
2428
+ fields?:
2429
+ string;
1738
2430
  /** 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. */
1739
- key?: string;
2431
+ key?:
2432
+ string;
1740
2433
  /** Full name of this resource. */
1741
- name: string;
2434
+ name:
2435
+ string;
1742
2436
  /** OAuth 2.0 token for the current user. */
1743
- oauth_token?: string;
2437
+ oauth_token?:
2438
+ string;
1744
2439
  /** Returns response with indentations and line breaks. */
1745
- prettyPrint?: boolean;
2440
+ prettyPrint?:
2441
+ boolean;
1746
2442
  /** 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. */
1747
- quotaUser?: string;
2443
+ quotaUser?:
2444
+ string;
1748
2445
  /** Required. Mask that specifies which fields in the workstation cluster should be updated. */
1749
- updateMask?: string;
2446
+ updateMask?:
2447
+ string;
1750
2448
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1751
- upload_protocol?: string;
2449
+ upload_protocol?:
2450
+ string;
1752
2451
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1753
- uploadType?: string;
2452
+ uploadType?:
2453
+ string;
1754
2454
  /** If set, validate the request and preview the review, but do not actually apply it. */
1755
- validateOnly?: boolean;
2455
+ validateOnly?:
2456
+ boolean;
1756
2457
  },
1757
2458
  body: WorkstationCluster): Request<Operation>;
1758
- workstationConfigs: WorkstationConfigsResource;
2459
+ workstationConfigs:
2460
+ WorkstationConfigsResource;
1759
2461
  }
1760
2462
  interface LocationsResource {
1761
- operations: OperationsResource;
1762
- workstationClusters: WorkstationClustersResource;
2463
+ operations:
2464
+ OperationsResource;
2465
+ workstationClusters:
2466
+ WorkstationClustersResource;
1763
2467
  }
1764
2468
  interface ProjectsResource {
1765
- locations: LocationsResource;
2469
+ locations:
2470
+ LocationsResource;
1766
2471
  }
1767
2472
 
1768
2473
  const projects: ProjectsResource;