@maxim_mazurok/gapi.client.workstations-v1 0.0.20250521 → 0.0.20250604
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=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250604
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -105,6 +105,10 @@ declare namespace gapi.client {
|
|
|
105
105
|
/** 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. */
|
|
106
106
|
title?: string;
|
|
107
107
|
}
|
|
108
|
+
interface GatewayConfig {
|
|
109
|
+
/** Optional. Whether HTTP/2 is enabled for this workstation cluster. Defaults to false. */
|
|
110
|
+
http2Enabled?: boolean;
|
|
111
|
+
}
|
|
108
112
|
interface GceConfidentialInstanceConfig {
|
|
109
113
|
/** Optional. Whether the instance has confidential compute enabled. */
|
|
110
114
|
enableConfidentialCompute?: boolean;
|
|
@@ -423,6 +427,8 @@ declare namespace gapi.client {
|
|
|
423
427
|
domainConfig?: DomainConfig;
|
|
424
428
|
/** 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. */
|
|
425
429
|
etag?: string;
|
|
430
|
+
/** Optional. Configuration options for Cluster HTTP Gateway. */
|
|
431
|
+
gatewayConfig?: GatewayConfig;
|
|
426
432
|
/** 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. */
|
|
427
433
|
labels?: {[P in string]: string};
|
|
428
434
|
/** Identifier. Full name of this workstation cluster. */
|