@maxim_mazurok/gapi.client.workstations-v1 0.0.20240619 → 0.0.20240709

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 +14 -2
  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://workstations.googleapis.com/$discovery/rest?version=v1
12
- // Revision: 20240619
12
+ // Revision: 20240709
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -72,7 +72,7 @@ declare namespace gapi.client {
72
72
  kmsKeyServiceAccount?: string;
73
73
  }
74
74
  interface DomainConfig {
75
- /** Immutable. Whether Workstations endpoint is private. */
75
+ /** Immutable. Domain used by Workstations for HTTP ingress. */
76
76
  domain?: string;
77
77
  }
78
78
  interface EphemeralDirectory {
@@ -282,10 +282,20 @@ declare namespace gapi.client {
282
282
  /** 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 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 policy * Changing a conditional role binding in a policy * Removing any role binding, with or without a condition, from a policy that includes conditions **Important:** If you use IAM 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` 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 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). */
283
283
  version?: number;
284
284
  }
285
+ interface PortRange {
286
+ /** Required. Starting port number for the current range of ports. */
287
+ first?: number;
288
+ /** Required. Ending port number for the current range of ports. */
289
+ last?: number;
290
+ }
285
291
  interface PrivateClusterConfig {
292
+ /** Optional. 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) are allowed. */
286
293
  allowedProjects?: string[];
294
+ /** Output only. Hostname for the workstation cluster. This field will be populated only when private endpoint is enabled. To access workstations in the workstation cluster, create a new DNS zone mapping this domain name to an internal IP address and a forwarding rule mapping that address to the service attachment. */
287
295
  clusterHostname?: string;
296
+ /** Immutable. Whether Workstations endpoint is private. */
288
297
  enablePrivateEndpoint?: boolean;
298
+ /** Output only. Service attachment URI for the workstation cluster. The service attachemnt is created when private endpoint is enabled. To access workstations in the workstation cluster, configure access to the managed service using [Private Service Connect](https://cloud.google.com/vpc/docs/configure-private-service-connect-services). */
289
299
  serviceAttachmentUri?: string;
290
300
  }
291
301
  interface ReadinessCheck {
@@ -397,6 +407,8 @@ declare namespace gapi.client {
397
407
  updateTime?: string;
398
408
  }
399
409
  interface WorkstationConfig {
410
+ /** Optional. A Single or Range of ports externally accessible in the workstation. If not specified defaults to ports 22, 80 and ports 1024-65535. */
411
+ allowedPorts?: PortRange[];
400
412
  /** Optional. Client-specified annotations. */
401
413
  annotations?: {[P in string]: string};
402
414
  /** Output only. Status conditions describing the current resource state. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.workstations-v1",
3
- "version": "0.0.20240619",
3
+ "version": "0.0.20240709",
4
4
  "description": "TypeScript typings for Cloud Workstations API v1",
5
5
  "repository": {
6
6
  "type": "git",