@maxim_mazurok/gapi.client.workstations-v1beta 0.0.20250521 → 0.0.20250609
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +7 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://workstations.googleapis.com/$discovery/rest?version=v1beta
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250609
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -109,6 +109,10 @@ declare namespace gapi.client {
|
|
|
109
109
|
/** 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. */
|
|
110
110
|
title?: string;
|
|
111
111
|
}
|
|
112
|
+
interface GatewayConfig {
|
|
113
|
+
/** Optional. Whether HTTP/2 is enabled for this workstation cluster. Defaults to false. */
|
|
114
|
+
http2Enabled?: boolean;
|
|
115
|
+
}
|
|
112
116
|
interface GceConfidentialInstanceConfig {
|
|
113
117
|
/** Optional. Whether the instance has confidential compute enabled. */
|
|
114
118
|
enableConfidentialCompute?: boolean;
|
|
@@ -429,6 +433,8 @@ declare namespace gapi.client {
|
|
|
429
433
|
domainConfig?: DomainConfig;
|
|
430
434
|
/** Optional. 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. */
|
|
431
435
|
etag?: string;
|
|
436
|
+
/** Optional. Configuration options for Cluster HTTP Gateway. */
|
|
437
|
+
gatewayConfig?: GatewayConfig;
|
|
432
438
|
/** Optional. [Labels](https://cloud.google.com/workstations/docs/label-resources) that are applied to the workstation cluster and that are also propagated to the underlying Compute Engine resources. */
|
|
433
439
|
labels?: {[P in string]: string};
|
|
434
440
|
/** Identifier. Full name of this workstation cluster. */
|