google-apis-workstations_v1beta 0.49.0 → 0.51.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: c4e73c749761a67abb13a1bf0f54e72a94162fb065e5fd29a73425ea5c9499b4
|
|
4
|
+
data.tar.gz: 2597f38d2ac9073504dcfd31d96a9772f403e3f02782bf0fcc609fdb634611e9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b7fd14f6f322a1305963f7246d12cab2dab339ec9158dd8084ab6b51b7b83b0dd35d5eb95162e34fcc793ba39d0df2267db939b272a40d3878c16c642e5827a2
|
|
7
|
+
data.tar.gz: 7f699f4b9b49a5ab1850de65ba719d371ff57bc12418ae6aea024cf10edc8d07f311377bb0ebe93c95f9d455a146e73e0c28f4e8376b235d36ccf066e93c042c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release history for google-apis-workstations_v1beta
|
|
2
2
|
|
|
3
|
+
### v0.51.0 (2026-06-21)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260604
|
|
6
|
+
* Regenerated using generator version 0.19.0
|
|
7
|
+
|
|
8
|
+
### v0.50.0 (2026-05-17)
|
|
9
|
+
|
|
10
|
+
* Regenerated from discovery document revision 20260506
|
|
11
|
+
|
|
3
12
|
### v0.49.0 (2026-05-03)
|
|
4
13
|
|
|
5
14
|
* Regenerated from discovery document revision 20260413
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/workstations) may provide g
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby 3.
|
|
86
|
+
This library is supported on Ruby 3.2+.
|
|
87
87
|
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
|
89
89
|
|
|
@@ -570,6 +570,12 @@ module Google
|
|
|
570
570
|
# @return [String]
|
|
571
571
|
attr_accessor :archive_timeout
|
|
572
572
|
|
|
573
|
+
# Optional. Maximum size in GB to which this persistent directory can be resized.
|
|
574
|
+
# Defaults to unlimited if not set.
|
|
575
|
+
# Corresponds to the JSON property `maxSizeGb`
|
|
576
|
+
# @return [Fixnum]
|
|
577
|
+
attr_accessor :max_size_gb
|
|
578
|
+
|
|
573
579
|
# Optional. Whether the persistent disk should be deleted when the workstation
|
|
574
580
|
# is deleted. Valid values are `DELETE` and `RETAIN`. Defaults to `DELETE`.
|
|
575
581
|
# Corresponds to the JSON property `reclaimPolicy`
|
|
@@ -597,6 +603,7 @@ module Google
|
|
|
597
603
|
# Update properties of this object
|
|
598
604
|
def update!(**args)
|
|
599
605
|
@archive_timeout = args[:archive_timeout] if args.key?(:archive_timeout)
|
|
606
|
+
@max_size_gb = args[:max_size_gb] if args.key?(:max_size_gb)
|
|
600
607
|
@reclaim_policy = args[:reclaim_policy] if args.key?(:reclaim_policy)
|
|
601
608
|
@size_gb = args[:size_gb] if args.key?(:size_gb)
|
|
602
609
|
@source_snapshot = args[:source_snapshot] if args.key?(:source_snapshot)
|
|
@@ -904,6 +911,12 @@ module Google
|
|
|
904
911
|
# @return [String]
|
|
905
912
|
attr_accessor :fs_type
|
|
906
913
|
|
|
914
|
+
# Optional. Maximum size in GB to which this persistent directory can be resized.
|
|
915
|
+
# Defaults to unlimited if not set.
|
|
916
|
+
# Corresponds to the JSON property `maxSizeGb`
|
|
917
|
+
# @return [Fixnum]
|
|
918
|
+
attr_accessor :max_size_gb
|
|
919
|
+
|
|
907
920
|
# Optional. Whether the persistent disk should be deleted when the workstation
|
|
908
921
|
# is deleted. Valid values are `DELETE` and `RETAIN`. Defaults to `DELETE`.
|
|
909
922
|
# Corresponds to the JSON property `reclaimPolicy`
|
|
@@ -934,6 +947,7 @@ module Google
|
|
|
934
947
|
@archive_timeout = args[:archive_timeout] if args.key?(:archive_timeout)
|
|
935
948
|
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
|
936
949
|
@fs_type = args[:fs_type] if args.key?(:fs_type)
|
|
950
|
+
@max_size_gb = args[:max_size_gb] if args.key?(:max_size_gb)
|
|
937
951
|
@reclaim_policy = args[:reclaim_policy] if args.key?(:reclaim_policy)
|
|
938
952
|
@size_gb = args[:size_gb] if args.key?(:size_gb)
|
|
939
953
|
@source_snapshot = args[:source_snapshot] if args.key?(:source_snapshot)
|
|
@@ -2054,6 +2068,11 @@ module Google
|
|
|
2054
2068
|
# @return [String]
|
|
2055
2069
|
attr_accessor :name
|
|
2056
2070
|
|
|
2071
|
+
# Optional. Directories to persist across workstation sessions.
|
|
2072
|
+
# Corresponds to the JSON property `persistentDirectories`
|
|
2073
|
+
# @return [Array<Google::Apis::WorkstationsV1beta::WorkstationPersistentDirectory>]
|
|
2074
|
+
attr_accessor :persistent_directories
|
|
2075
|
+
|
|
2057
2076
|
# Output only. Indicates whether this workstation is currently being updated to
|
|
2058
2077
|
# match its intended state.
|
|
2059
2078
|
# Corresponds to the JSON property `reconciling`
|
|
@@ -2124,6 +2143,7 @@ module Google
|
|
|
2124
2143
|
@kms_key = args[:kms_key] if args.key?(:kms_key)
|
|
2125
2144
|
@labels = args[:labels] if args.key?(:labels)
|
|
2126
2145
|
@name = args[:name] if args.key?(:name)
|
|
2146
|
+
@persistent_directories = args[:persistent_directories] if args.key?(:persistent_directories)
|
|
2127
2147
|
@reconciling = args[:reconciling] if args.key?(:reconciling)
|
|
2128
2148
|
@runtime_host = args[:runtime_host] if args.key?(:runtime_host)
|
|
2129
2149
|
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
|
@@ -2622,6 +2642,33 @@ module Google
|
|
|
2622
2642
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
2623
2643
|
end
|
|
2624
2644
|
end
|
|
2645
|
+
|
|
2646
|
+
# A directory to persist across workstation sessions. Updates to this field will
|
|
2647
|
+
# only take effect on this workstation after it is restarted.
|
|
2648
|
+
class WorkstationPersistentDirectory
|
|
2649
|
+
include Google::Apis::Core::Hashable
|
|
2650
|
+
|
|
2651
|
+
# Optional. The mount path of the persistent directory.
|
|
2652
|
+
# Corresponds to the JSON property `mountPath`
|
|
2653
|
+
# @return [String]
|
|
2654
|
+
attr_accessor :mount_path
|
|
2655
|
+
|
|
2656
|
+
# Optional. Size of the persistent directory in GB. If specified in an update
|
|
2657
|
+
# request, this is the desired size of the directory.
|
|
2658
|
+
# Corresponds to the JSON property `sizeGb`
|
|
2659
|
+
# @return [Fixnum]
|
|
2660
|
+
attr_accessor :size_gb
|
|
2661
|
+
|
|
2662
|
+
def initialize(**args)
|
|
2663
|
+
update!(**args)
|
|
2664
|
+
end
|
|
2665
|
+
|
|
2666
|
+
# Update properties of this object
|
|
2667
|
+
def update!(**args)
|
|
2668
|
+
@mount_path = args[:mount_path] if args.key?(:mount_path)
|
|
2669
|
+
@size_gb = args[:size_gb] if args.key?(:size_gb)
|
|
2670
|
+
end
|
|
2671
|
+
end
|
|
2625
2672
|
end
|
|
2626
2673
|
end
|
|
2627
2674
|
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.
|
|
19
|
+
GEM_VERSION = "0.51.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260604"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -328,6 +328,12 @@ module Google
|
|
|
328
328
|
include Google::Apis::Core::JsonObjectSupport
|
|
329
329
|
end
|
|
330
330
|
|
|
331
|
+
class WorkstationPersistentDirectory
|
|
332
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
333
|
+
|
|
334
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
335
|
+
end
|
|
336
|
+
|
|
331
337
|
class Accelerator
|
|
332
338
|
# @private
|
|
333
339
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -448,6 +454,7 @@ module Google
|
|
|
448
454
|
# @private
|
|
449
455
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
450
456
|
property :archive_timeout, as: 'archiveTimeout'
|
|
457
|
+
property :max_size_gb, as: 'maxSizeGb'
|
|
451
458
|
property :reclaim_policy, as: 'reclaimPolicy'
|
|
452
459
|
property :size_gb, as: 'sizeGb'
|
|
453
460
|
property :source_snapshot, as: 'sourceSnapshot'
|
|
@@ -508,6 +515,7 @@ module Google
|
|
|
508
515
|
property :archive_timeout, as: 'archiveTimeout'
|
|
509
516
|
property :disk_type, as: 'diskType'
|
|
510
517
|
property :fs_type, as: 'fsType'
|
|
518
|
+
property :max_size_gb, as: 'maxSizeGb'
|
|
511
519
|
property :reclaim_policy, as: 'reclaimPolicy'
|
|
512
520
|
property :size_gb, as: 'sizeGb'
|
|
513
521
|
property :source_snapshot, as: 'sourceSnapshot'
|
|
@@ -798,6 +806,8 @@ module Google
|
|
|
798
806
|
property :kms_key, as: 'kmsKey'
|
|
799
807
|
hash :labels, as: 'labels'
|
|
800
808
|
property :name, as: 'name'
|
|
809
|
+
collection :persistent_directories, as: 'persistentDirectories', class: Google::Apis::WorkstationsV1beta::WorkstationPersistentDirectory, decorator: Google::Apis::WorkstationsV1beta::WorkstationPersistentDirectory::Representation
|
|
810
|
+
|
|
801
811
|
property :reconciling, as: 'reconciling'
|
|
802
812
|
property :runtime_host, as: 'runtimeHost', class: Google::Apis::WorkstationsV1beta::RuntimeHost, decorator: Google::Apis::WorkstationsV1beta::RuntimeHost::Representation
|
|
803
813
|
|
|
@@ -896,6 +906,14 @@ module Google
|
|
|
896
906
|
property :update_time, as: 'updateTime'
|
|
897
907
|
end
|
|
898
908
|
end
|
|
909
|
+
|
|
910
|
+
class WorkstationPersistentDirectory
|
|
911
|
+
# @private
|
|
912
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
913
|
+
property :mount_path, as: 'mountPath'
|
|
914
|
+
property :size_gb, as: 'sizeGb'
|
|
915
|
+
end
|
|
916
|
+
end
|
|
899
917
|
end
|
|
900
918
|
end
|
|
901
919
|
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.
|
|
4
|
+
version: 0.51.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1beta/v0.51.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:
|
|
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
requirements:
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '3.
|
|
69
|
+
version: '3.2'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|