@maxim_mazurok/gapi.client.workstations-v1beta 0.0.20230308 → 0.0.20230327

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/index.d.ts +7 -7
  2. package/package.json +1 -1
  3. package/tests.ts +1 -1
package/index.d.ts CHANGED
@@ -9,7 +9,7 @@
9
9
  // This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
10
10
  // In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
11
11
  // Generated from: https://workstations.googleapis.com/$discovery/rest?version=v1beta
12
- // Revision: 20230308
12
+ // Revision: 20230327
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -106,7 +106,7 @@ declare namespace gapi.client {
106
106
  enableConfidentialCompute?: boolean;
107
107
  }
108
108
  interface GceInstance {
109
- /** Size of the boot disk in GB. */
109
+ /** Size of the boot disk in GB. Defaults to 50. */
110
110
  bootDiskSizeGb?: number;
111
111
  /** A set of Compute Engine Confidential VM instance options. */
112
112
  confidentialInstanceConfig?: GceConfidentialInstanceConfig;
@@ -117,8 +117,8 @@ declare namespace gapi.client {
117
117
  /** Number of instances to pool for faster workstation starup. */
118
118
  poolSize?: number;
119
119
  /**
120
- * Email address of the service account that will be used on VM instances used to support this config. This service account must have permission to pull the specified container image.
121
- * If not set, VMs will run without a service account, in which case the image must be publicly accessible.
120
+ * Email address of the service account that will be used on VM instances used to support this config. If not set, VMs will run with a Google-managed service account. This service
121
+ * account must have permission to pull the specified container image, otherwise the image must be publicly accessible.
122
122
  */
123
123
  serviceAccount?: string;
124
124
  /** A set of Compute Engine Shielded instance options. */
@@ -127,13 +127,13 @@ declare namespace gapi.client {
127
127
  tags?: string[];
128
128
  }
129
129
  interface GceRegionalPersistentDisk {
130
- /** Type of the disk to use. */
130
+ /** Type of the disk to use. Defaults to pd-standard. */
131
131
  diskType?: string;
132
- /** 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. */
132
+ /** 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. */
133
133
  fsType?: string;
134
134
  /** What should happen to the disk after the workstation is deleted. Defaults to DELETE. */
135
135
  reclaimPolicy?: string;
136
- /** Size of the disk in GB. Must be empty if source_snapshot is set. */
136
+ /** Size of the disk in GB. Must be empty if source_snapshot is set. Defaults to 200. */
137
137
  sizeGb?: number;
138
138
  /** Name of the snapshot to use as the source for the disk. If set, size_gb and fs_type must be empty. */
139
139
  sourceSnapshot?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.workstations-v1beta",
3
- "version": "0.0.20230308",
3
+ "version": "0.0.20230327",
4
4
  "description": "TypeScript typings for Cloud Workstations API v1beta",
5
5
  "license": "MIT",
6
6
  "author": {
package/tests.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  // This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
4
4
  // In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
5
5
 
6
- // Revision: 20230308
6
+ // Revision: 20230327
7
7
 
8
8
  gapi.load('client', async () => {
9
9
  /** now we can use gapi.client */