google-apis-workstations_v1beta 0.35.0 → 0.37.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: 9f13f44d4255c8106312517c05abf164109112408d30921239f9e117c2bab94a
|
4
|
+
data.tar.gz: 04cc14f2dc18a6b216d4433f8ae570c62a9c3f7c6a860d7d1a8634a661f29fe3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7bb158854e01f44a62d11484baa6ca22ffbb148bf43d8e8e9ae498f9f0deab7b6d1b3dfaa8768ff0ea852a54a110fc549437b1c82734e1272b8348df748fa45c
|
7
|
+
data.tar.gz: 4744dc087d5400367f67edb84f722a3aa2bec809b900fc7e18f6a158c63e2a028304ad0f4e0b8c6bc6b4a5af22270bf5a4a55b3cac70362ce8d54ad2c1d8a64f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-workstations_v1beta
|
2
2
|
|
3
|
+
### v0.37.0 (2025-03-23)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250311
|
6
|
+
|
7
|
+
### v0.36.0 (2025-03-02)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250219
|
10
|
+
|
3
11
|
### v0.35.0 (2025-01-12)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250101
|
@@ -733,8 +733,11 @@ module Google
|
|
733
733
|
|
734
734
|
# Optional. Name of the disk image to use as the source for the disk. Must be
|
735
735
|
# empty if source_snapshot is set. Updating source_image will update content in
|
736
|
-
# the ephemeral directory after the workstation is restarted.
|
737
|
-
#
|
736
|
+
# the ephemeral directory after the workstation is restarted. Only file systems
|
737
|
+
# supported by Container-Optimized OS (COS) are explicitly supported. For a list
|
738
|
+
# of supported file systems, please refer to the [COS documentation](https://
|
739
|
+
# cloud.google.com/container-optimized-os/docs/concepts/supported-filesystems).
|
740
|
+
# This field is mutable.
|
738
741
|
# Corresponds to the JSON property `sourceImage`
|
739
742
|
# @return [String]
|
740
743
|
attr_accessor :source_image
|
@@ -742,7 +745,10 @@ module Google
|
|
742
745
|
# Optional. Name of the snapshot to use as the source for the disk. Must be
|
743
746
|
# empty if source_image is set. Must be empty if read_only is false. Updating
|
744
747
|
# source_snapshot will update content in the ephemeral directory after the
|
745
|
-
# workstation is restarted.
|
748
|
+
# workstation is restarted. Only file systems supported by Container-Optimized
|
749
|
+
# OS (COS) are explicitly supported. For a list of supported file systems,
|
750
|
+
# please refer to the [COS documentation](https://cloud.google.com/container-
|
751
|
+
# optimized-os/docs/concepts/supported-filesystems). This field is mutable.
|
746
752
|
# Corresponds to the JSON property `sourceSnapshot`
|
747
753
|
# @return [String]
|
748
754
|
attr_accessor :source_snapshot
|
@@ -798,7 +804,8 @@ module Google
|
|
798
804
|
attr_accessor :size_gb
|
799
805
|
|
800
806
|
# Optional. Name of the snapshot to use as the source for the disk. If set,
|
801
|
-
# size_gb and fs_type must be empty.
|
807
|
+
# size_gb and fs_type must be empty. Must be formatted as ext4 file system with
|
808
|
+
# no partitions.
|
802
809
|
# Corresponds to the JSON property `sourceSnapshot`
|
803
810
|
# @return [String]
|
804
811
|
attr_accessor :source_snapshot
|
@@ -1475,7 +1482,7 @@ module Google
|
|
1475
1482
|
alias_method :enable_private_endpoint?, :enable_private_endpoint
|
1476
1483
|
|
1477
1484
|
# Output only. Service attachment URI for the workstation cluster. The service
|
1478
|
-
#
|
1485
|
+
# attachment is created when private endpoint is enabled. To access workstations
|
1479
1486
|
# in the workstation cluster, configure access to the managed service using [
|
1480
1487
|
# Private Service Connect](https://cloud.google.com/vpc/docs/configure-private-
|
1481
1488
|
# service-connect-services).
|
@@ -1750,11 +1757,24 @@ module Google
|
|
1750
1757
|
# @return [Array<Google::Apis::WorkstationsV1beta::WorkstationBoostConfig>]
|
1751
1758
|
attr_accessor :boost_configs
|
1752
1759
|
|
1760
|
+
# Output only. Status conditions describing the workstation's current state.
|
1761
|
+
# Corresponds to the JSON property `conditions`
|
1762
|
+
# @return [Array<Google::Apis::WorkstationsV1beta::Status>]
|
1763
|
+
attr_accessor :conditions
|
1764
|
+
|
1753
1765
|
# Output only. Time when this workstation was created.
|
1754
1766
|
# Corresponds to the JSON property `createTime`
|
1755
1767
|
# @return [String]
|
1756
1768
|
attr_accessor :create_time
|
1757
1769
|
|
1770
|
+
# Output only. Whether this workstation is in degraded mode, in which case it
|
1771
|
+
# may require user action to restore full functionality. The conditions field
|
1772
|
+
# contains detailed information about the status of the workstation.
|
1773
|
+
# Corresponds to the JSON property `degraded`
|
1774
|
+
# @return [Boolean]
|
1775
|
+
attr_accessor :degraded
|
1776
|
+
alias_method :degraded?, :degraded
|
1777
|
+
|
1758
1778
|
# Output only. Time when this workstation was soft-deleted.
|
1759
1779
|
# Corresponds to the JSON property `deleteTime`
|
1760
1780
|
# @return [String]
|
@@ -1864,7 +1884,9 @@ module Google
|
|
1864
1884
|
def update!(**args)
|
1865
1885
|
@annotations = args[:annotations] if args.key?(:annotations)
|
1866
1886
|
@boost_configs = args[:boost_configs] if args.key?(:boost_configs)
|
1887
|
+
@conditions = args[:conditions] if args.key?(:conditions)
|
1867
1888
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1889
|
+
@degraded = args[:degraded] if args.key?(:degraded)
|
1868
1890
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
1869
1891
|
@display_name = args[:display_name] if args.key?(:display_name)
|
1870
1892
|
@env = args[:env] if args.key?(:env)
|
@@ -1935,8 +1957,8 @@ module Google
|
|
1935
1957
|
attr_accessor :create_time
|
1936
1958
|
|
1937
1959
|
# Output only. Whether this workstation cluster is in degraded mode, in which
|
1938
|
-
# case it may require user action to restore full functionality.
|
1939
|
-
#
|
1960
|
+
# case it may require user action to restore full functionality. The conditions
|
1961
|
+
# field contains detailed information about the status of the cluster.
|
1940
1962
|
# Corresponds to the JSON property `degraded`
|
1941
1963
|
# @return [Boolean]
|
1942
1964
|
attr_accessor :degraded
|
@@ -2013,8 +2035,9 @@ module Google
|
|
2013
2035
|
# @return [String]
|
2014
2036
|
attr_accessor :subnetwork
|
2015
2037
|
|
2016
|
-
# Optional. Tag keys/values directly bound to this
|
2017
|
-
# environment": "production", "123/costCenter": "
|
2038
|
+
# Optional. Input only. Immutable. Tag keys/values directly bound to this
|
2039
|
+
# resource. For example: "123/environment": "production", "123/costCenter": "
|
2040
|
+
# marketing"
|
2018
2041
|
# Corresponds to the JSON property `tags`
|
2019
2042
|
# @return [Hash<String,String>]
|
2020
2043
|
attr_accessor :tags
|
@@ -2081,7 +2104,8 @@ module Google
|
|
2081
2104
|
# @return [Hash<String,String>]
|
2082
2105
|
attr_accessor :annotations
|
2083
2106
|
|
2084
|
-
# Output only. Status conditions describing the
|
2107
|
+
# Output only. Status conditions describing the workstation configuration's
|
2108
|
+
# current state.
|
2085
2109
|
# Corresponds to the JSON property `conditions`
|
2086
2110
|
# @return [Array<Google::Apis::WorkstationsV1beta::Status>]
|
2087
2111
|
attr_accessor :conditions
|
@@ -2096,8 +2120,10 @@ module Google
|
|
2096
2120
|
# @return [String]
|
2097
2121
|
attr_accessor :create_time
|
2098
2122
|
|
2099
|
-
# Output only. Whether this
|
2100
|
-
# user action to restore full functionality.
|
2123
|
+
# Output only. Whether this workstation configuration is in degraded mode, in
|
2124
|
+
# which case it may require user action to restore full functionality. The
|
2125
|
+
# conditions field contains detailed information about the status of the
|
2126
|
+
# configuration.
|
2101
2127
|
# Corresponds to the JSON property `degraded`
|
2102
2128
|
# @return [Boolean]
|
2103
2129
|
attr_accessor :degraded
|
@@ -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.37.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250311"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -702,7 +702,10 @@ module Google
|
|
702
702
|
hash :annotations, as: 'annotations'
|
703
703
|
collection :boost_configs, as: 'boostConfigs', class: Google::Apis::WorkstationsV1beta::WorkstationBoostConfig, decorator: Google::Apis::WorkstationsV1beta::WorkstationBoostConfig::Representation
|
704
704
|
|
705
|
+
collection :conditions, as: 'conditions', class: Google::Apis::WorkstationsV1beta::Status, decorator: Google::Apis::WorkstationsV1beta::Status::Representation
|
706
|
+
|
705
707
|
property :create_time, as: 'createTime'
|
708
|
+
property :degraded, as: 'degraded'
|
706
709
|
property :delete_time, as: 'deleteTime'
|
707
710
|
property :display_name, as: 'displayName'
|
708
711
|
hash :env, as: 'env'
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.37.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-03-23 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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_v1beta/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1beta/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1beta/v0.37.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workstations_v1beta
|
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.5
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Cloud Workstations API V1beta
|
79
79
|
test_files: []
|