google-apis-workstations_v1beta 0.49.0 → 0.50.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: 51fc37387569ad69189ca38cd20b9fed85f327a779ff169a8dd93afd559083d9
4
- data.tar.gz: 43974c2758082e9081a2f2b814ea3a1ba6415c06f8676663d2ff9bbc857f0f2a
3
+ metadata.gz: 312caf3b4017603a7bb4c4cd577ef123d7b2668fcd9a4d13d293fb08d3fa7a8b
4
+ data.tar.gz: cad29a1b48b03b9ef6f1f041e1b72678c63020d260186944ab8760ef78e4a9df
5
5
  SHA512:
6
- metadata.gz: 3d1c5cb28b82c98065498d784b0b4b2fde8187f565ba90e3e7474e3dec2f92f092082be49e1ba3d57c156f690312d89870a2e5a163880b468822863ded081e15
7
- data.tar.gz: 4fadcf012643054da38a5353ec3fb8c4b06d171ce16ea9faf2ec6e90b9b725c51cd48e17bbb41f3bf2f473cd694cb4e3a132473f22f69b26b22576159a0c1fbb
6
+ metadata.gz: 428d790faf4b844c5dd1545f64281337c9f68404be9c07ddd4d018d8c3adab670f5144e21d068a9caf15d2315e05b8d1fd01a4bc6999e42a6411309e25674f5e
7
+ data.tar.gz: 1e9b454b24fcfcf5fa4ed29c909b98978f711fcb3a920bce31e2c7fb9d97f174dfb1303784a1cbd66b5ccc1021a55514a2705d7b24137f5ddac532cdc88d053c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-workstations_v1beta
2
2
 
3
+ ### v0.50.0 (2026-05-17)
4
+
5
+ * Regenerated from discovery document revision 20260506
6
+
3
7
  ### v0.49.0 (2026-05-03)
4
8
 
5
9
  * Regenerated from discovery document revision 20260413
@@ -2054,6 +2054,11 @@ module Google
2054
2054
  # @return [String]
2055
2055
  attr_accessor :name
2056
2056
 
2057
+ # Optional. Directories to persist across workstation sessions.
2058
+ # Corresponds to the JSON property `persistentDirectories`
2059
+ # @return [Array<Google::Apis::WorkstationsV1beta::WorkstationPersistentDirectory>]
2060
+ attr_accessor :persistent_directories
2061
+
2057
2062
  # Output only. Indicates whether this workstation is currently being updated to
2058
2063
  # match its intended state.
2059
2064
  # Corresponds to the JSON property `reconciling`
@@ -2124,6 +2129,7 @@ module Google
2124
2129
  @kms_key = args[:kms_key] if args.key?(:kms_key)
2125
2130
  @labels = args[:labels] if args.key?(:labels)
2126
2131
  @name = args[:name] if args.key?(:name)
2132
+ @persistent_directories = args[:persistent_directories] if args.key?(:persistent_directories)
2127
2133
  @reconciling = args[:reconciling] if args.key?(:reconciling)
2128
2134
  @runtime_host = args[:runtime_host] if args.key?(:runtime_host)
2129
2135
  @satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
@@ -2622,6 +2628,66 @@ module Google
2622
2628
  @update_time = args[:update_time] if args.key?(:update_time)
2623
2629
  end
2624
2630
  end
2631
+
2632
+ # A Persistent Directory backed by a Compute Engine regional persistent disk
2633
+ # within the workstation.
2634
+ class WorkstationGceRegionalPersistentDisk
2635
+ include Google::Apis::Core::Hashable
2636
+
2637
+ # The name of the persistent directory.
2638
+ # Corresponds to the JSON property `name`
2639
+ # @return [String]
2640
+ attr_accessor :name
2641
+
2642
+ # Required. The desired size of the persistent directory in GB.
2643
+ # Corresponds to the JSON property `sizeGb`
2644
+ # @return [Fixnum]
2645
+ attr_accessor :size_gb
2646
+
2647
+ def initialize(**args)
2648
+ update!(**args)
2649
+ end
2650
+
2651
+ # Update properties of this object
2652
+ def update!(**args)
2653
+ @name = args[:name] if args.key?(:name)
2654
+ @size_gb = args[:size_gb] if args.key?(:size_gb)
2655
+ end
2656
+ end
2657
+
2658
+ # A directory to persist across workstation sessions. Updates to this field will
2659
+ # only take effect on this workstation after it is restarted.
2660
+ class WorkstationPersistentDirectory
2661
+ include Google::Apis::Core::Hashable
2662
+
2663
+ # A Persistent Directory backed by a Compute Engine regional persistent disk
2664
+ # within the workstation.
2665
+ # Corresponds to the JSON property `gcePd`
2666
+ # @return [Google::Apis::WorkstationsV1beta::WorkstationGceRegionalPersistentDisk]
2667
+ attr_accessor :gce_pd
2668
+
2669
+ # Optional. The mount path of the persistent directory.
2670
+ # Corresponds to the JSON property `mountPath`
2671
+ # @return [String]
2672
+ attr_accessor :mount_path
2673
+
2674
+ # Optional. Size of the persistent directory in GB. If specified in an update
2675
+ # request, this is the desired size of the directory.
2676
+ # Corresponds to the JSON property `sizeGb`
2677
+ # @return [Fixnum]
2678
+ attr_accessor :size_gb
2679
+
2680
+ def initialize(**args)
2681
+ update!(**args)
2682
+ end
2683
+
2684
+ # Update properties of this object
2685
+ def update!(**args)
2686
+ @gce_pd = args[:gce_pd] if args.key?(:gce_pd)
2687
+ @mount_path = args[:mount_path] if args.key?(:mount_path)
2688
+ @size_gb = args[:size_gb] if args.key?(:size_gb)
2689
+ end
2690
+ end
2625
2691
  end
2626
2692
  end
2627
2693
  end
@@ -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.49.0"
19
+ GEM_VERSION = "0.50.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260413"
25
+ REVISION = "20260506"
26
26
  end
27
27
  end
28
28
  end
@@ -328,6 +328,18 @@ module Google
328
328
  include Google::Apis::Core::JsonObjectSupport
329
329
  end
330
330
 
331
+ class WorkstationGceRegionalPersistentDisk
332
+ class Representation < Google::Apis::Core::JsonRepresentation; end
333
+
334
+ include Google::Apis::Core::JsonObjectSupport
335
+ end
336
+
337
+ class WorkstationPersistentDirectory
338
+ class Representation < Google::Apis::Core::JsonRepresentation; end
339
+
340
+ include Google::Apis::Core::JsonObjectSupport
341
+ end
342
+
331
343
  class Accelerator
332
344
  # @private
333
345
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -798,6 +810,8 @@ module Google
798
810
  property :kms_key, as: 'kmsKey'
799
811
  hash :labels, as: 'labels'
800
812
  property :name, as: 'name'
813
+ collection :persistent_directories, as: 'persistentDirectories', class: Google::Apis::WorkstationsV1beta::WorkstationPersistentDirectory, decorator: Google::Apis::WorkstationsV1beta::WorkstationPersistentDirectory::Representation
814
+
801
815
  property :reconciling, as: 'reconciling'
802
816
  property :runtime_host, as: 'runtimeHost', class: Google::Apis::WorkstationsV1beta::RuntimeHost, decorator: Google::Apis::WorkstationsV1beta::RuntimeHost::Representation
803
817
 
@@ -896,6 +910,24 @@ module Google
896
910
  property :update_time, as: 'updateTime'
897
911
  end
898
912
  end
913
+
914
+ class WorkstationGceRegionalPersistentDisk
915
+ # @private
916
+ class Representation < Google::Apis::Core::JsonRepresentation
917
+ property :name, as: 'name'
918
+ property :size_gb, as: 'sizeGb'
919
+ end
920
+ end
921
+
922
+ class WorkstationPersistentDirectory
923
+ # @private
924
+ class Representation < Google::Apis::Core::JsonRepresentation
925
+ property :gce_pd, as: 'gcePd', class: Google::Apis::WorkstationsV1beta::WorkstationGceRegionalPersistentDisk, decorator: Google::Apis::WorkstationsV1beta::WorkstationGceRegionalPersistentDisk::Representation
926
+
927
+ property :mount_path, as: 'mountPath'
928
+ property :size_gb, as: 'sizeGb'
929
+ end
930
+ end
899
931
  end
900
932
  end
901
933
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-workstations_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.49.0
4
+ version: 0.50.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_v1beta/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1beta/v0.49.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1beta/v0.50.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: