google-apis-workstations_v1 0.24.0 → 0.25.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1dd456b11ebe4a6916c27b0990d42add9cda705c5ca7f8f8cdc6c50105a8972c
|
4
|
+
data.tar.gz: fc71380bc5d816326aebb31a763c0a18195ecc08065775ba3ca09163f9f7a139
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0bdffa59ae7c256735547589d53b839da4236879c3384c92b3297e0857e4fb22c7516cc4f76928e6b408fe859102cdb01d5e32a080b2d44b8e54679b67e280df
|
7
|
+
data.tar.gz: 3aada5b81c8f9fd7d1c5de5d982eaa376842bba98f87579c64b30f7cec7889094432129fa782914c7b580a697648234745af26258314fae87fb87c2cb11a870b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-workstations_v1
|
2
2
|
|
3
|
+
### v0.25.0 (2025-06-15)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250604
|
6
|
+
* Regenerated using generator version 0.18.0
|
7
|
+
|
3
8
|
### v0.24.0 (2025-05-04)
|
4
9
|
|
5
10
|
* 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.
|
19
|
+
GEM_VERSION = "0.25.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250604"
|
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'
|
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.
|
4
|
+
version: 0.25.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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1/v0.25.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.
|
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: []
|