google-apis-workstations_v1beta 0.52.0 → 0.54.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: a1110972e973b621f652cd0ca4a2d097749c4697e47cb13a757e2b0c03c47274
4
- data.tar.gz: db57ef78b8dddf896c1864182eacde5814abdccdefd71814570ed0cc476248c0
3
+ metadata.gz: 0e98653d5e07ead0d6c59f09f4a34b1a03f69fe72b73119540b11f5ce9c9969b
4
+ data.tar.gz: b89d662133a6f70c3bb1a2c33744540daa94162a1143cc34df94611b256b668a
5
5
  SHA512:
6
- metadata.gz: 4af457a470347f061f27907a86ae0664a1d77b77100e7198f45165ba0b90715658b3396706641bb1273be7d720b426434d0dfc01a77294da5096ef4cf375c8fa
7
- data.tar.gz: d1d98c57fb781d7a4caa129d0fa634de9c9bff918e605d6bc0c8524c33b51bb2bd57adacfd09b8c80361a69a287bcd59672310f72e18de5fe3ed7c4a69913aa3
6
+ metadata.gz: d8fc11c7bb564d91dbfc6450d6191e2ed0d0b52c2c556f555547ac075923a321014024380a2efc5ece80503ad9631688aedbeafb479cea8d2127251554b2716d
7
+ data.tar.gz: 59bff8383c8c46a04996f785476505669129c386ae2abc02344cf5dd8b628cee1e5772e8ed761f922e99144aaeca9359f8feba86bdf58c68cc6b36ae1994e24d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-workstations_v1beta
2
2
 
3
+ ### v0.54.0 (2026-08-30)
4
+
5
+ * Regenerated from discovery document revision 20260819
6
+
7
+ ### v0.53.0 (2026-08-16)
8
+
9
+ * Regenerated from discovery document revision 20260807
10
+
3
11
  ### v0.52.0 (2026-07-12)
4
12
 
5
13
  * Regenerated from discovery document revision 20260705
@@ -571,11 +571,27 @@ module Google
571
571
  attr_accessor :archive_timeout
572
572
 
573
573
  # Optional. Maximum size in GB to which this persistent directory can be resized.
574
- # Defaults to unlimited if not set.
574
+ # Defaults to `0`, which indicates no maximum limit is enforced by this
575
+ # configuration. Resizing is still subject to the quotas and limits of the
576
+ # underlying disk type.
575
577
  # Corresponds to the JSON property `maxSizeGb`
576
578
  # @return [Fixnum]
577
579
  attr_accessor :max_size_gb
578
580
 
581
+ # Optional. Indicates how many IOPS to provision for the disk. This sets the
582
+ # number of I/O operations per second that the disk can handle. Values must be
583
+ # between 3000 and 100,000.
584
+ # Corresponds to the JSON property `provisionedIops`
585
+ # @return [Fixnum]
586
+ attr_accessor :provisioned_iops
587
+
588
+ # Optional. Indicates how much throughput to provision for the disk. This sets
589
+ # the number of throughput mb per second that the disk can handle. Values must
590
+ # be between 1 and 2,400.
591
+ # Corresponds to the JSON property `provisionedThroughput`
592
+ # @return [Fixnum]
593
+ attr_accessor :provisioned_throughput
594
+
579
595
  # Optional. Whether the persistent disk should be deleted when the workstation
580
596
  # is deleted. Valid values are `DELETE` and `RETAIN`. Defaults to `DELETE`.
581
597
  # Corresponds to the JSON property `reclaimPolicy`
@@ -604,6 +620,8 @@ module Google
604
620
  def update!(**args)
605
621
  @archive_timeout = args[:archive_timeout] if args.key?(:archive_timeout)
606
622
  @max_size_gb = args[:max_size_gb] if args.key?(:max_size_gb)
623
+ @provisioned_iops = args[:provisioned_iops] if args.key?(:provisioned_iops)
624
+ @provisioned_throughput = args[:provisioned_throughput] if args.key?(:provisioned_throughput)
607
625
  @reclaim_policy = args[:reclaim_policy] if args.key?(:reclaim_policy)
608
626
  @size_gb = args[:size_gb] if args.key?(:size_gb)
609
627
  @source_snapshot = args[:source_snapshot] if args.key?(:source_snapshot)
@@ -912,7 +930,9 @@ module Google
912
930
  attr_accessor :fs_type
913
931
 
914
932
  # Optional. Maximum size in GB to which this persistent directory can be resized.
915
- # Defaults to unlimited if not set.
933
+ # Defaults to `0`, which indicates no maximum limit is enforced by this
934
+ # configuration. Resizing is still subject to the quotas and limits of the
935
+ # underlying disk type.
916
936
  # Corresponds to the JSON property `maxSizeGb`
917
937
  # @return [Fixnum]
918
938
  attr_accessor :max_size_gb
@@ -2605,19 +2625,19 @@ module Google
2605
2625
  # @return [Array<String>]
2606
2626
  attr_accessor :replica_zones
2607
2627
 
2608
- # Optional. Number of seconds that a workstation can run until it is
2609
- # automatically shut down. We recommend that workstations be shut down daily to
2610
- # reduce costs and so that security updates can be applied upon restart. The
2611
- # idle_timeout and running_timeout fields are independent of each other. Note
2612
- # that the running_timeout field shuts down VMs after the specified time,
2613
- # regardless of whether or not the VMs are idle. Provide duration terminated by `
2614
- # s` for seconds—for example, `"54000s"` (15 hours). Defaults to `"43200s"` (12
2615
- # hours). A value of `"0s"` indicates that workstations using this configuration
2616
- # should never time out. If encryption_key is set, it must be greater than `"0s"`
2617
- # and less than `"86400s"` (24 hours). Warning: A value of `"0s"` indicates
2618
- # that Cloud Workstations VMs created with this configuration have no maximum
2619
- # running time. This is strongly discouraged because you incur costs and will
2620
- # not pick up security updates.
2628
+ # Optional. Number of seconds to wait before automatically stopping a
2629
+ # workstation. We recommend that workstations be stopped daily so that security
2630
+ # updates can be applied upon restart. The idle_timeout and running_timeout
2631
+ # fields are independent of each other. Note that the running_timeout field
2632
+ # stops workstations after the specified time, regardless of whether or not the
2633
+ # workstations are idle. Provide duration terminated by `s` for seconds—for
2634
+ # example, `"54000s"` (15 hours). Defaults to `"43200s"` (12 hours). A value of `
2635
+ # "0s"` indicates that workstations using this configuration should never time
2636
+ # out. If encryption_key is set, it must be greater than `"0s"` and less than `"
2637
+ # 86400s"` (24 hours). Warning: A value of `"0s"` indicates that Cloud
2638
+ # Workstations VMs created with this configuration have no maximum running time.
2639
+ # This is strongly discouraged because you incur costs and will not pick up
2640
+ # security updates.
2621
2641
  # Corresponds to the JSON property `runningTimeout`
2622
2642
  # @return [String]
2623
2643
  attr_accessor :running_timeout
@@ -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.52.0"
19
+ GEM_VERSION = "0.54.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260705"
25
+ REVISION = "20260819"
26
26
  end
27
27
  end
28
28
  end
@@ -461,6 +461,8 @@ module Google
461
461
  class Representation < Google::Apis::Core::JsonRepresentation
462
462
  property :archive_timeout, as: 'archiveTimeout'
463
463
  property :max_size_gb, as: 'maxSizeGb'
464
+ property :provisioned_iops, :numeric_string => true, as: 'provisionedIops'
465
+ property :provisioned_throughput, :numeric_string => true, as: 'provisionedThroughput'
464
466
  property :reclaim_policy, as: 'reclaimPolicy'
465
467
  property :size_gb, as: 'sizeGb'
466
468
  property :source_snapshot, as: 'sourceSnapshot'
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.52.0
4
+ version: 0.54.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.52.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1beta/v0.54.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: