google-apis-workstations_v1beta 0.30.0 → 0.31.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: be0363d3d36fe3457a0947209e65df7a77f93f32d5a43660906a8367b19b8022
|
4
|
+
data.tar.gz: ff612f56ff616c7e2922ac219a50384fd052a72ba14ca6c3fb1ad9a871f2ade2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8de891f635c5643ea4e9eb19b330226fad4cf6dabc6e8f61e246605a94380c2c0b7b9c915d89253eee0fe626c4cd7993428a9b939eb3f5cd455859cc8e28e08e
|
7
|
+
data.tar.gz: fc1752608218c8efb1aaa5dd476faad9e1efc10ae0d3f0b47eed29ad9d4fa450c73edf009460d89246327e669a9ad6ec7b32ed4c25608fd64513066b93bd0f6d
|
data/CHANGELOG.md
CHANGED
@@ -926,6 +926,32 @@ module Google
|
|
926
926
|
end
|
927
927
|
end
|
928
928
|
|
929
|
+
# Http options for the running workstations.
|
930
|
+
class HttpOptions
|
931
|
+
include Google::Apis::Core::Hashable
|
932
|
+
|
933
|
+
# Optional. By default, the workstations service makes sure that all requests to
|
934
|
+
# the workstation are authenticated. CORS preflight requests do not include
|
935
|
+
# cookies or custom headers, and so are considered unauthenticated and blocked
|
936
|
+
# by the workstations service. Enabling this option allows these unauthenticated
|
937
|
+
# CORS preflight requests through to the workstation, where it becomes the
|
938
|
+
# responsibility of the destination server in the workstation to validate the
|
939
|
+
# request.
|
940
|
+
# Corresponds to the JSON property `allowedUnauthenticatedCorsPreflightRequests`
|
941
|
+
# @return [Boolean]
|
942
|
+
attr_accessor :allowed_unauthenticated_cors_preflight_requests
|
943
|
+
alias_method :allowed_unauthenticated_cors_preflight_requests?, :allowed_unauthenticated_cors_preflight_requests
|
944
|
+
|
945
|
+
def initialize(**args)
|
946
|
+
update!(**args)
|
947
|
+
end
|
948
|
+
|
949
|
+
# Update properties of this object
|
950
|
+
def update!(**args)
|
951
|
+
@allowed_unauthenticated_cors_preflight_requests = args[:allowed_unauthenticated_cors_preflight_requests] if args.key?(:allowed_unauthenticated_cors_preflight_requests)
|
952
|
+
end
|
953
|
+
end
|
954
|
+
|
929
955
|
# The response message for Operations.ListOperations.
|
930
956
|
class ListOperationsResponse
|
931
957
|
include Google::Apis::Core::Hashable
|
@@ -1711,6 +1737,12 @@ module Google
|
|
1711
1737
|
attr_accessor :reconciling
|
1712
1738
|
alias_method :reconciling?, :reconciling
|
1713
1739
|
|
1740
|
+
# Optional. The source workstation from which this workstations persistent
|
1741
|
+
# directories were cloned on creation.
|
1742
|
+
# Corresponds to the JSON property `sourceWorkstation`
|
1743
|
+
# @return [String]
|
1744
|
+
attr_accessor :source_workstation
|
1745
|
+
|
1714
1746
|
# Output only. Time when this workstation was most recently successfully started,
|
1715
1747
|
# regardless of the workstation's initial state.
|
1716
1748
|
# Corresponds to the JSON property `startTime`
|
@@ -1749,6 +1781,7 @@ module Google
|
|
1749
1781
|
@labels = args[:labels] if args.key?(:labels)
|
1750
1782
|
@name = args[:name] if args.key?(:name)
|
1751
1783
|
@reconciling = args[:reconciling] if args.key?(:reconciling)
|
1784
|
+
@source_workstation = args[:source_workstation] if args.key?(:source_workstation)
|
1752
1785
|
@start_time = args[:start_time] if args.key?(:start_time)
|
1753
1786
|
@state = args[:state] if args.key?(:state)
|
1754
1787
|
@uid = args[:uid] if args.key?(:uid)
|
@@ -1988,6 +2021,11 @@ module Google
|
|
1988
2021
|
# @return [Google::Apis::WorkstationsV1beta::Host]
|
1989
2022
|
attr_accessor :host
|
1990
2023
|
|
2024
|
+
# Http options for the running workstations.
|
2025
|
+
# Corresponds to the JSON property `httpOptions`
|
2026
|
+
# @return [Google::Apis::WorkstationsV1beta::HttpOptions]
|
2027
|
+
attr_accessor :http_options
|
2028
|
+
|
1991
2029
|
# Optional. Number of seconds to wait before automatically stopping a
|
1992
2030
|
# workstation after it last received user traffic. A value of `"0s"` indicates
|
1993
2031
|
# that Cloud Workstations VMs created with this configuration should never time
|
@@ -2087,6 +2125,7 @@ module Google
|
|
2087
2125
|
@ephemeral_directories = args[:ephemeral_directories] if args.key?(:ephemeral_directories)
|
2088
2126
|
@etag = args[:etag] if args.key?(:etag)
|
2089
2127
|
@host = args[:host] if args.key?(:host)
|
2128
|
+
@http_options = args[:http_options] if args.key?(:http_options)
|
2090
2129
|
@idle_timeout = args[:idle_timeout] if args.key?(:idle_timeout)
|
2091
2130
|
@labels = args[:labels] if args.key?(:labels)
|
2092
2131
|
@name = args[:name] if args.key?(:name)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module WorkstationsV1beta
|
18
18
|
# Version of the google-apis-workstations_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.31.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240619"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -142,6 +142,12 @@ module Google
|
|
142
142
|
include Google::Apis::Core::JsonObjectSupport
|
143
143
|
end
|
144
144
|
|
145
|
+
class HttpOptions
|
146
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
147
|
+
|
148
|
+
include Google::Apis::Core::JsonObjectSupport
|
149
|
+
end
|
150
|
+
|
145
151
|
class ListOperationsResponse
|
146
152
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
147
153
|
|
@@ -467,6 +473,13 @@ module Google
|
|
467
473
|
end
|
468
474
|
end
|
469
475
|
|
476
|
+
class HttpOptions
|
477
|
+
# @private
|
478
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
479
|
+
property :allowed_unauthenticated_cors_preflight_requests, as: 'allowedUnauthenticatedCorsPreflightRequests'
|
480
|
+
end
|
481
|
+
end
|
482
|
+
|
470
483
|
class ListOperationsResponse
|
471
484
|
# @private
|
472
485
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -661,6 +674,7 @@ module Google
|
|
661
674
|
hash :labels, as: 'labels'
|
662
675
|
property :name, as: 'name'
|
663
676
|
property :reconciling, as: 'reconciling'
|
677
|
+
property :source_workstation, as: 'sourceWorkstation'
|
664
678
|
property :start_time, as: 'startTime'
|
665
679
|
property :state, as: 'state'
|
666
680
|
property :uid, as: 'uid'
|
@@ -717,6 +731,8 @@ module Google
|
|
717
731
|
property :etag, as: 'etag'
|
718
732
|
property :host, as: 'host', class: Google::Apis::WorkstationsV1beta::Host, decorator: Google::Apis::WorkstationsV1beta::Host::Representation
|
719
733
|
|
734
|
+
property :http_options, as: 'httpOptions', class: Google::Apis::WorkstationsV1beta::HttpOptions, decorator: Google::Apis::WorkstationsV1beta::HttpOptions::Representation
|
735
|
+
|
720
736
|
property :idle_timeout, as: 'idleTimeout'
|
721
737
|
hash :labels, as: 'labels'
|
722
738
|
property :name, as: 'name'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-workstations_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.31.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-06-
|
11
|
+
date: 2024-06-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workstations_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1beta/v0.31.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workstations_v1beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|