google-apis-workstations_v1 0.24.0 → 0.26.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5d536d8be274707994bfd36b27ffcda8c35a7c01b27a76db0b96d539efb2fd2c
4
- data.tar.gz: 17750eb69bd6a561bee328ed0645d670d7a0571a2304d7456f9102d80b188489
3
+ metadata.gz: 4249b50d9b3321f9d220b66c91eb58666ffcaa955064f57b9f48c6b8a82255fb
4
+ data.tar.gz: 6fe6aa1770555a2bc28a22e9924abc3f421146a2953f10133d0f2cb7501c9a99
5
5
  SHA512:
6
- metadata.gz: 5cc5bbc41a61c93892140f99293490048d7115a5a002eaa10a86c8746a148d50f1bead77c279676700f4af2648df147c8b91095b68748d1e6b2085cdc3046f6a
7
- data.tar.gz: 034ad5f3a14de459560b80736594fbc32a3aaa25d40f1c98f6c02cf14ad9feb44ea779370682eedc644250383d0e1752bba26d8abfaae0c3ab67bee2585d220a
6
+ metadata.gz: 7cd2a6fd0fe914b9b264d917ebbc64c020fe6847b558f37ab90e296935b567893fa5cc19ae6aed459dcab69e70b0c924694a9ebea90fddd6050dc4768bb4ae7b
7
+ data.tar.gz: 8920395a6bb33be29123d206bfc77b352c69e1342632b45dedcd950c23a263fc3952e9d1369a216311024d429f810a9ef868fe5aa2ae1de34c2b797a158509a7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-workstations_v1
2
2
 
3
+ ### v0.26.0 (2025-08-31)
4
+
5
+ * Regenerated from discovery document revision 20250814
6
+
7
+ ### v0.25.0 (2025-06-15)
8
+
9
+ * Regenerated from discovery document revision 20250604
10
+ * Regenerated using generator version 0.18.0
11
+
3
12
  ### v0.24.0 (2025-05-04)
4
13
 
5
14
  * Regenerated using generator version 0.17.0
@@ -505,6 +505,27 @@ module Google
505
505
  end
506
506
  end
507
507
 
508
+ # Configuration options for Cluster HTTP Gateway.
509
+ class GatewayConfig
510
+ include Google::Apis::Core::Hashable
511
+
512
+ # Optional. Whether HTTP/2 is enabled for this workstation cluster. Defaults to
513
+ # false.
514
+ # Corresponds to the JSON property `http2Enabled`
515
+ # @return [Boolean]
516
+ attr_accessor :http2_enabled
517
+ alias_method :http2_enabled?, :http2_enabled
518
+
519
+ def initialize(**args)
520
+ update!(**args)
521
+ end
522
+
523
+ # Update properties of this object
524
+ def update!(**args)
525
+ @http2_enabled = args[:http2_enabled] if args.key?(:http2_enabled)
526
+ end
527
+ end
528
+
508
529
  # A set of Compute Engine Confidential VM instance options.
509
530
  class GceConfidentialInstanceConfig
510
531
  include Google::Apis::Core::Hashable
@@ -1966,6 +1987,11 @@ module Google
1966
1987
  # @return [String]
1967
1988
  attr_accessor :etag
1968
1989
 
1990
+ # Configuration options for Cluster HTTP Gateway.
1991
+ # Corresponds to the JSON property `gatewayConfig`
1992
+ # @return [Google::Apis::WorkstationsV1::GatewayConfig]
1993
+ attr_accessor :gateway_config
1994
+
1969
1995
  # Optional. [Labels](https://cloud.google.com/workstations/docs/label-resources)
1970
1996
  # that are applied to the workstation cluster and that are also propagated to
1971
1997
  # the underlying Compute Engine resources.
@@ -2035,6 +2061,7 @@ module Google
2035
2061
  @display_name = args[:display_name] if args.key?(:display_name)
2036
2062
  @domain_config = args[:domain_config] if args.key?(:domain_config)
2037
2063
  @etag = args[:etag] if args.key?(:etag)
2064
+ @gateway_config = args[:gateway_config] if args.key?(:gateway_config)
2038
2065
  @labels = args[:labels] if args.key?(:labels)
2039
2066
  @name = args[:name] if args.key?(:name)
2040
2067
  @network = args[:network] if args.key?(:network)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module WorkstationsV1
18
18
  # Version of the google-apis-workstations_v1 gem
19
- GEM_VERSION = "0.24.0"
19
+ GEM_VERSION = "0.26.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250326"
25
+ REVISION = "20250814"
26
26
  end
27
27
  end
28
28
  end
@@ -88,6 +88,12 @@ module Google
88
88
  include Google::Apis::Core::JsonObjectSupport
89
89
  end
90
90
 
91
+ class GatewayConfig
92
+ class Representation < Google::Apis::Core::JsonRepresentation; end
93
+
94
+ include Google::Apis::Core::JsonObjectSupport
95
+ end
96
+
91
97
  class GceConfidentialInstanceConfig
92
98
  class Representation < Google::Apis::Core::JsonRepresentation; end
93
99
 
@@ -398,6 +404,13 @@ module Google
398
404
  end
399
405
  end
400
406
 
407
+ class GatewayConfig
408
+ # @private
409
+ class Representation < Google::Apis::Core::JsonRepresentation
410
+ property :http2_enabled, as: 'http2Enabled'
411
+ end
412
+ end
413
+
401
414
  class GceConfidentialInstanceConfig
402
415
  # @private
403
416
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -746,6 +759,8 @@ module Google
746
759
  property :domain_config, as: 'domainConfig', class: Google::Apis::WorkstationsV1::DomainConfig, decorator: Google::Apis::WorkstationsV1::DomainConfig::Representation
747
760
 
748
761
  property :etag, as: 'etag'
762
+ property :gateway_config, as: 'gatewayConfig', class: Google::Apis::WorkstationsV1::GatewayConfig, decorator: Google::Apis::WorkstationsV1::GatewayConfig::Representation
763
+
749
764
  hash :labels, as: 'labels'
750
765
  property :name, as: 'name'
751
766
  property :network, as: 'network'
@@ -85,8 +85,8 @@ module Google
85
85
  # @param [String] name
86
86
  # The resource that owns the locations collection, if applicable.
87
87
  # @param [Array<String>, String] extra_location_types
88
- # Optional. A list of extra location types that should be used as conditions for
89
- # controlling the visibility of the locations.
88
+ # Optional. Do not use this field. It is unsupported and is ignored unless
89
+ # explicitly documented otherwise. This is primarily for internal usage.
90
90
  # @param [String] filter
91
91
  # A filter to narrow down results to a preferred subset. The filtering language
92
92
  # accepts strings like `"displayName=tokyo"`, and is documented in more detail
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-workstations_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.24.0
4
+ version: 0.26.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workstations_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1/v0.24.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1/v0.26.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workstations_v1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.8
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Cloud Workstations API V1
79
79
  test_files: []