google-apis-workstations_v1beta 0.35.0 → 0.36.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: 6ad845b8a2f1b9dd815f69763f4c0eec68816d37c5996f08f5a6b2aba6b8c276
4
- data.tar.gz: c8a217896f8d438be8fc26dd23160135f999f777d2f936bc0f58713749ab06d8
3
+ metadata.gz: 17de7595eca4aa0815e0ea4fec27cde53f85c42031c0a3934f281247c4cd89bf
4
+ data.tar.gz: 8bef6d5e52070dac4ef1c5cea7fd6f0273e32a3a3c15a8d3addd3179482cc6b7
5
5
  SHA512:
6
- metadata.gz: 738586df275c5a53139bd697a98d318aa21e321799ecd8e1ef587349e20266cba4a37804ed70fb3242698b425d287cd420dccdb0d4a7f0235b5881af0d5eb4ab
7
- data.tar.gz: 51aa67e1350d8f978101eff18f84d5b9c759bd16627c33961b853a712a6dde6872403629990d6c487e211512dbf2565a8f26f0a86e480d4ac95a7bbdc71fa127
6
+ metadata.gz: afd5589996c4a9cbc2b56f3f7fd1c86b38d8a63ddb7fcfa77a12e3510528fb92a67b284df96dc3e92f666c238ceac97868519069db2deea1118f1df708085ebc
7
+ data.tar.gz: 8e414d381ef244c06ac9c4aa7e71351d96606eea604bdadeb1c3e888c6aab4757976459143fa6f506517ecc18828269e853ad99d7e25b3cab3e7d377f6ad67fc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-workstations_v1beta
2
2
 
3
+ ### v0.36.0 (2025-03-02)
4
+
5
+ * Regenerated from discovery document revision 20250219
6
+
3
7
  ### v0.35.0 (2025-01-12)
4
8
 
5
9
  * 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. This field is
737
- # mutable.
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. This field is mutable.
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
@@ -1475,7 +1481,7 @@ module Google
1475
1481
  alias_method :enable_private_endpoint?, :enable_private_endpoint
1476
1482
 
1477
1483
  # Output only. Service attachment URI for the workstation cluster. The service
1478
- # attachemnt is created when private endpoint is enabled. To access workstations
1484
+ # attachment is created when private endpoint is enabled. To access workstations
1479
1485
  # in the workstation cluster, configure access to the managed service using [
1480
1486
  # Private Service Connect](https://cloud.google.com/vpc/docs/configure-private-
1481
1487
  # service-connect-services).
@@ -1750,11 +1756,24 @@ module Google
1750
1756
  # @return [Array<Google::Apis::WorkstationsV1beta::WorkstationBoostConfig>]
1751
1757
  attr_accessor :boost_configs
1752
1758
 
1759
+ # Output only. Status conditions describing the workstation's current state.
1760
+ # Corresponds to the JSON property `conditions`
1761
+ # @return [Array<Google::Apis::WorkstationsV1beta::Status>]
1762
+ attr_accessor :conditions
1763
+
1753
1764
  # Output only. Time when this workstation was created.
1754
1765
  # Corresponds to the JSON property `createTime`
1755
1766
  # @return [String]
1756
1767
  attr_accessor :create_time
1757
1768
 
1769
+ # Output only. Whether this workstation is in degraded mode, in which case it
1770
+ # may require user action to restore full functionality. Details can be found in
1771
+ # conditions.
1772
+ # Corresponds to the JSON property `degraded`
1773
+ # @return [Boolean]
1774
+ attr_accessor :degraded
1775
+ alias_method :degraded?, :degraded
1776
+
1758
1777
  # Output only. Time when this workstation was soft-deleted.
1759
1778
  # Corresponds to the JSON property `deleteTime`
1760
1779
  # @return [String]
@@ -1864,7 +1883,9 @@ module Google
1864
1883
  def update!(**args)
1865
1884
  @annotations = args[:annotations] if args.key?(:annotations)
1866
1885
  @boost_configs = args[:boost_configs] if args.key?(:boost_configs)
1886
+ @conditions = args[:conditions] if args.key?(:conditions)
1867
1887
  @create_time = args[:create_time] if args.key?(:create_time)
1888
+ @degraded = args[:degraded] if args.key?(:degraded)
1868
1889
  @delete_time = args[:delete_time] if args.key?(:delete_time)
1869
1890
  @display_name = args[:display_name] if args.key?(:display_name)
1870
1891
  @env = args[:env] if args.key?(:env)
@@ -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.35.0"
19
+ GEM_VERSION = "0.36.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 = "20250101"
25
+ REVISION = "20250219"
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.35.0
4
+ version: 0.36.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-01-12 00:00:00.000000000 Z
10
+ date: 2025-03-02 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.35.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1beta/v0.36.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.2
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: []