@maxim_mazurok/gapi.client.vmwareengine-v1 0.1.20260128 → 0.1.20260217

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 (2) hide show
  1. package/index.d.ts +13 -15
  2. 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://vmwareengine.googleapis.com/$discovery/rest?version=v1
12
- // Revision: 20260128
12
+ // Revision: 20260217
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -157,9 +157,9 @@ declare namespace gapi.client {
157
157
  updateTime?: string;
158
158
  }
159
159
  interface DatastoreMountConfig {
160
- /** Optional. NFS is accessed by hosts in read mode Optional. Default value used will be READ_WRITE */
160
+ /** Optional. The access mode of the NFS volume. Optional. Default value used will be READ_WRITE */
161
161
  accessMode?: string;
162
- /** Required. The resource name of the datastore to unmount. The datastore requested to be mounted should be in same region/zone as the cluster. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: `projects/my-project/locations/us-central1/datastores/my-datastore` */
162
+ /** Required. The resource name of the datastore to mount. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: `projects/my-project/locations/us-central1/datastores/my-datastore` */
163
163
  datastore?: string;
164
164
  /** Required. The network configuration for the datastore. */
165
165
  datastoreNetwork?: DatastoreNetwork;
@@ -167,15 +167,13 @@ declare namespace gapi.client {
167
167
  fileShare?: string;
168
168
  /** Optional. The NFS protocol supported by the NFS volume. Default value used will be NFS_V3 */
169
169
  nfsVersion?: string;
170
- /** Optional. ONLY required when NFS 4.1 version is used */
171
- securityType?: string;
172
170
  /** Output only. Server IP addresses of the NFS volume. For NFS 3, you can only provide a single server IP address or DNS names. */
173
171
  servers?: string[];
174
172
  }
175
173
  interface DatastoreNetwork {
176
- /** Optional. The number of connections of the NFS volume. Spported from vsphere 8.0u1 */
174
+ /** Optional. connection_count is used to set multiple connections from NFS client on ESXi host to NFS server. A higher number of connections results in better performance on datastores. In MountDatastore API by default max 4 connections are configured. User can set value of connection_count between 1 to 4. Connection_count is supported from vsphere 8.0u1 for earlier version 1 connection count is set on the ESXi hosts. */
177
175
  connectionCount?: number;
178
- /** Optional. The Maximal Transmission Unit (MTU) of the datastore. System sets default MTU size. It prefers the VPC peering MTU, falling back to the VEN MTU if no peering MTU is found. when detected, and falling back to the VEN MTU otherwise. */
176
+ /** Optional. MTU value is set on the VMKernel adapter for the NFS traffic. By default standard 1500 MTU size is set in MountDatastore API which is good for typical setups. However google VPC networks supports jumbo MTU 8896. We recommend to tune this value based on the NFS traffic performance. Performance can be determined using benchmarking I/O tools like fio (Flexible I/O Tester) utility. */
179
177
  mtu?: number;
180
178
  /** Output only. The resource name of the network peering, used to access the file share by clients on private cloud. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. e.g. projects/my-project/locations/us-central1/networkPeerings/my-network-peering */
181
179
  networkPeering?: string;
@@ -619,7 +617,7 @@ declare namespace gapi.client {
619
617
  state?: string;
620
618
  }
621
619
  interface NfsDatastore {
622
- /** Google service file service configuration */
620
+ /** Google file service configuration */
623
621
  googleFileService?: GoogleFileService;
624
622
  /** GCVE file service configuration */
625
623
  googleVmwareFileService?: any;
@@ -1063,7 +1061,7 @@ declare namespace gapi.client {
1063
1061
  }): Request<ListAnnouncementsResponse>;
1064
1062
  }
1065
1063
  interface DatastoresResource {
1066
- /** Creates a new `Datastore` resource in a given project and location. Datastores are regional resources */
1064
+ /** Creates a new `Datastore` resource in a given project and location. */
1067
1065
  create(request: {
1068
1066
  /** V1 error format. */
1069
1067
  '$.xgafv'?: string;
@@ -1224,7 +1222,7 @@ declare namespace gapi.client {
1224
1222
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1225
1223
  uploadType?: string;
1226
1224
  }): Request<ListDatastoresResponse>;
1227
- /** Modifies a Datastore resource. Only the following fields can be updated: `description`. Only fields specified in `updateMask` are applied. */
1225
+ /** Modifies a Datastore resource. Only fields specified in `updateMask` are applied. */
1228
1226
  patch(request: {
1229
1227
  /** V1 error format. */
1230
1228
  '$.xgafv'?: string;
@@ -1248,7 +1246,7 @@ declare namespace gapi.client {
1248
1246
  quotaUser?: string;
1249
1247
  /** Optional. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
1250
1248
  requestId?: string;
1251
- /** Optional. Field mask is used to specify the fields to be overwritten in the Datastore resource by the update. The fields specified in the `update_mask` are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten. Only the following fields can be updated: `description`. */
1249
+ /** Optional. Field mask is used to specify the fields to be overwritten in the Datastore resource by the update. The fields specified in the `update_mask` are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten. */
1252
1250
  updateMask?: string;
1253
1251
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1254
1252
  upload_protocol?: string;
@@ -1281,7 +1279,7 @@ declare namespace gapi.client {
1281
1279
  quotaUser?: string;
1282
1280
  /** Optional. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
1283
1281
  requestId?: string;
1284
- /** Optional. Field mask is used to specify the fields to be overwritten in the Datastore resource by the update. The fields specified in the `update_mask` are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten. Only the following fields can be updated: `description`. */
1282
+ /** Optional. Field mask is used to specify the fields to be overwritten in the Datastore resource by the update. The fields specified in the `update_mask` are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then all fields will be overwritten. */
1285
1283
  updateMask?: string;
1286
1284
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1287
1285
  upload_protocol?: string;
@@ -2556,7 +2554,7 @@ declare namespace gapi.client {
2556
2554
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2557
2555
  uploadType?: string;
2558
2556
  }): Request<ListClustersResponse>;
2559
- /** Mounts a `Datastore` on a cluster resource Datastores are zonal resources */
2557
+ /** Mounts a `Datastore` on a cluster resource */
2560
2558
  mountDatastore(request: {
2561
2559
  /** V1 error format. */
2562
2560
  '$.xgafv'?: string;
@@ -2744,7 +2742,7 @@ declare namespace gapi.client {
2744
2742
  },
2745
2743
  body: TestIamPermissionsRequest,
2746
2744
  ): Request<TestIamPermissionsResponse>;
2747
- /** Mounts a `Datastore` on a cluster resource Datastores are zonal resources */
2745
+ /** Unmounts a `Datastore` on a cluster resource */
2748
2746
  unmountDatastore(request: {
2749
2747
  /** V1 error format. */
2750
2748
  '$.xgafv'?: string;
@@ -5255,7 +5253,7 @@ declare namespace gapi.client {
5255
5253
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
5256
5254
  uploadType?: string;
5257
5255
  }): Request<DnsBindPermission>;
5258
- /** Lists information about the supported locations for this service. */
5256
+ /** Lists information about the supported locations for this service. This method can be called in two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include public locations as well as private or other locations specifically visible to the project. */
5259
5257
  list(request?: {
5260
5258
  /** V1 error format. */
5261
5259
  '$.xgafv'?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.vmwareengine-v1",
3
- "version": "0.1.20260128",
3
+ "version": "0.1.20260217",
4
4
  "description": "TypeScript typings for VMware Engine API v1",
5
5
  "repository": {
6
6
  "type": "git",