google-apis-workstations_v1beta 0.53.0 → 0.55.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: 164c32f8cc69dc36e1672fa1b73da32b24479246f11569a18589977185401a52
|
|
4
|
+
data.tar.gz: 041e80086c1df974b80dc9313f1847e498e7c646e4bdcc94acacdf7911091e99
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7b16e51e0729e6e7066c17c66b6adf5c57311306b8e555ff01985c07fd2b3465e85ea0af711f40fd11dd9ee557257cf0a2e481626f1c7e660a54a1b17d225b5b
|
|
7
|
+
data.tar.gz: 2743c99980fd2278fc7e8156debaad631309f2b0dbc4a80ff0061450db04b02399dd7cb8d88bdd9ee6222dc4ef4168a521efb07a1783f0994c93c4235110d7fc
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-workstations_v1beta
|
|
2
2
|
|
|
3
|
+
### v0.55.0 (2026-09-06)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260901
|
|
6
|
+
|
|
7
|
+
### v0.54.0 (2026-08-30)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260819
|
|
10
|
+
|
|
3
11
|
### v0.53.0 (2026-08-16)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260807
|
|
@@ -578,6 +578,20 @@ module Google
|
|
|
578
578
|
# @return [Fixnum]
|
|
579
579
|
attr_accessor :max_size_gb
|
|
580
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
|
+
|
|
581
595
|
# Optional. Whether the persistent disk should be deleted when the workstation
|
|
582
596
|
# is deleted. Valid values are `DELETE` and `RETAIN`. Defaults to `DELETE`.
|
|
583
597
|
# Corresponds to the JSON property `reclaimPolicy`
|
|
@@ -606,6 +620,8 @@ module Google
|
|
|
606
620
|
def update!(**args)
|
|
607
621
|
@archive_timeout = args[:archive_timeout] if args.key?(:archive_timeout)
|
|
608
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)
|
|
609
625
|
@reclaim_policy = args[:reclaim_policy] if args.key?(:reclaim_policy)
|
|
610
626
|
@size_gb = args[:size_gb] if args.key?(:size_gb)
|
|
611
627
|
@source_snapshot = args[:source_snapshot] if args.key?(:source_snapshot)
|
|
@@ -2240,6 +2256,15 @@ module Google
|
|
|
2240
2256
|
# @return [Array<Google::Apis::WorkstationsV1beta::Status>]
|
|
2241
2257
|
attr_accessor :conditions
|
|
2242
2258
|
|
|
2259
|
+
# Optional. Specifies a custom base URL for the Google Cloud Console. This field
|
|
2260
|
+
# is intended to be user-configurable to support data residency for Cloud
|
|
2261
|
+
# Workstations users. This will be used generally for user journeys where users
|
|
2262
|
+
# need to go to the Cloud Console from Code OSS. When the Auth and Launch URLs
|
|
2263
|
+
# are unset, this will be used as the base URL for those endpoints if set.
|
|
2264
|
+
# Corresponds to the JSON property `consoleBaseUrl`
|
|
2265
|
+
# @return [String]
|
|
2266
|
+
attr_accessor :console_base_url
|
|
2267
|
+
|
|
2243
2268
|
# Output only. The private IP address of the control plane for this workstation
|
|
2244
2269
|
# cluster. Workstation VMs need access to this IP address to work with the
|
|
2245
2270
|
# service, so make sure that your firewall rules allow egress from the
|
|
@@ -2383,6 +2408,7 @@ module Google
|
|
|
2383
2408
|
def update!(**args)
|
|
2384
2409
|
@annotations = args[:annotations] if args.key?(:annotations)
|
|
2385
2410
|
@conditions = args[:conditions] if args.key?(:conditions)
|
|
2411
|
+
@console_base_url = args[:console_base_url] if args.key?(:console_base_url)
|
|
2386
2412
|
@control_plane_ip = args[:control_plane_ip] if args.key?(:control_plane_ip)
|
|
2387
2413
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
2388
2414
|
@degraded = args[:degraded] if args.key?(:degraded)
|
|
@@ -2547,12 +2573,14 @@ module Google
|
|
|
2547
2573
|
# @return [String]
|
|
2548
2574
|
attr_accessor :idle_action
|
|
2549
2575
|
|
|
2550
|
-
# Optional. Number of seconds to wait before automatically stopping
|
|
2551
|
-
# workstation after it last received user traffic.
|
|
2552
|
-
#
|
|
2553
|
-
#
|
|
2554
|
-
#
|
|
2555
|
-
#
|
|
2576
|
+
# Optional. Number of seconds to wait before automatically stopping or
|
|
2577
|
+
# suspending a workstation after it last received user traffic. See idle_action
|
|
2578
|
+
# to configure whether to stop or suspend idle workstations. A value of `"0s"`
|
|
2579
|
+
# indicates that Cloud Workstations VMs created with this configuration should
|
|
2580
|
+
# never time out due to idleness. Provide [duration](https://developers.google.
|
|
2581
|
+
# com/protocol-buffers/docs/reference/google.protobuf#duration) terminated by `s`
|
|
2582
|
+
# for seconds—for example, `"7200s"` (2 hours). The default is `"1200s"` (20
|
|
2583
|
+
# minutes).
|
|
2556
2584
|
# Corresponds to the JSON property `idleTimeout`
|
|
2557
2585
|
# @return [String]
|
|
2558
2586
|
attr_accessor :idle_timeout
|
|
@@ -2614,11 +2642,13 @@ module Google
|
|
|
2614
2642
|
# updates can be applied upon restart. The idle_timeout and running_timeout
|
|
2615
2643
|
# fields are independent of each other. Note that the running_timeout field
|
|
2616
2644
|
# stops workstations after the specified time, regardless of whether or not the
|
|
2617
|
-
# workstations are idle.
|
|
2618
|
-
#
|
|
2619
|
-
#
|
|
2620
|
-
#
|
|
2621
|
-
#
|
|
2645
|
+
# workstations are idle. Note: This timeout applies to workstations in the
|
|
2646
|
+
# following states: * STATE_RUNNING * STATE_SUSPENDED Suspending a workstation
|
|
2647
|
+
# does not reset this timeout. Provide duration terminated by `s` for seconds—
|
|
2648
|
+
# for example, `"54000s"` (15 hours). Defaults to `"43200s"` (12 hours). A value
|
|
2649
|
+
# of `"0s"` indicates that workstations using this configuration should never
|
|
2650
|
+
# time out. If encryption_key is set, it must be greater than `"0s"` and less
|
|
2651
|
+
# than `"86400s"` (24 hours). Warning: A value of `"0s"` indicates that Cloud
|
|
2622
2652
|
# Workstations VMs created with this configuration have no maximum running time.
|
|
2623
2653
|
# This is strongly discouraged because you incur costs and will not pick up
|
|
2624
2654
|
# security updates.
|
|
@@ -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.55.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 = "
|
|
25
|
+
REVISION = "20260901"
|
|
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'
|
|
@@ -850,6 +852,7 @@ module Google
|
|
|
850
852
|
hash :annotations, as: 'annotations'
|
|
851
853
|
collection :conditions, as: 'conditions', class: Google::Apis::WorkstationsV1beta::Status, decorator: Google::Apis::WorkstationsV1beta::Status::Representation
|
|
852
854
|
|
|
855
|
+
property :console_base_url, as: 'consoleBaseUrl'
|
|
853
856
|
property :control_plane_ip, as: 'controlPlaneIp'
|
|
854
857
|
property :create_time, as: 'createTime'
|
|
855
858
|
property :degraded, as: 'degraded'
|
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.55.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.55.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:
|