google-apis-workstations_v1beta 0.50.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,10 @@
|
|
|
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
|
+
|
|
3
8
|
### v0.50.0 (2026-05-17)
|
|
4
9
|
|
|
5
10
|
* Regenerated from discovery document revision 20260506
|
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)
|
|
@@ -2629,43 +2643,11 @@ module Google
|
|
|
2629
2643
|
end
|
|
2630
2644
|
end
|
|
2631
2645
|
|
|
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
2646
|
# A directory to persist across workstation sessions. Updates to this field will
|
|
2659
2647
|
# only take effect on this workstation after it is restarted.
|
|
2660
2648
|
class WorkstationPersistentDirectory
|
|
2661
2649
|
include Google::Apis::Core::Hashable
|
|
2662
2650
|
|
|
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
2651
|
# Optional. The mount path of the persistent directory.
|
|
2670
2652
|
# Corresponds to the JSON property `mountPath`
|
|
2671
2653
|
# @return [String]
|
|
@@ -2683,7 +2665,6 @@ module Google
|
|
|
2683
2665
|
|
|
2684
2666
|
# Update properties of this object
|
|
2685
2667
|
def update!(**args)
|
|
2686
|
-
@gce_pd = args[:gce_pd] if args.key?(:gce_pd)
|
|
2687
2668
|
@mount_path = args[:mount_path] if args.key?(:mount_path)
|
|
2688
2669
|
@size_gb = args[:size_gb] if args.key?(:size_gb)
|
|
2689
2670
|
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,12 +328,6 @@ 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
331
|
class WorkstationPersistentDirectory
|
|
338
332
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
339
333
|
|
|
@@ -460,6 +454,7 @@ module Google
|
|
|
460
454
|
# @private
|
|
461
455
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
462
456
|
property :archive_timeout, as: 'archiveTimeout'
|
|
457
|
+
property :max_size_gb, as: 'maxSizeGb'
|
|
463
458
|
property :reclaim_policy, as: 'reclaimPolicy'
|
|
464
459
|
property :size_gb, as: 'sizeGb'
|
|
465
460
|
property :source_snapshot, as: 'sourceSnapshot'
|
|
@@ -520,6 +515,7 @@ module Google
|
|
|
520
515
|
property :archive_timeout, as: 'archiveTimeout'
|
|
521
516
|
property :disk_type, as: 'diskType'
|
|
522
517
|
property :fs_type, as: 'fsType'
|
|
518
|
+
property :max_size_gb, as: 'maxSizeGb'
|
|
523
519
|
property :reclaim_policy, as: 'reclaimPolicy'
|
|
524
520
|
property :size_gb, as: 'sizeGb'
|
|
525
521
|
property :source_snapshot, as: 'sourceSnapshot'
|
|
@@ -911,19 +907,9 @@ module Google
|
|
|
911
907
|
end
|
|
912
908
|
end
|
|
913
909
|
|
|
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
910
|
class WorkstationPersistentDirectory
|
|
923
911
|
# @private
|
|
924
912
|
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
913
|
property :mount_path, as: 'mountPath'
|
|
928
914
|
property :size_gb, as: 'sizeGb'
|
|
929
915
|
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
|
- - ">="
|