google-apis-workstations_v1 0.33.0 → 0.35.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: bb3a880bc26b4e497de8730bc8b3ddf5bb06645ed85ec7a203c5373b19771603
|
|
4
|
+
data.tar.gz: 78543fdf5ef54e972381f7ecd253610a81af4de73bc1f0cc17dcb343509d761c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a65f6e8f38d57a210ae5ed1987815e3c6020ff5976bd4667f23ee12e3d35596c6ba04ca0f20a390322a6d33424bf97687941ea8961e6056ee8b8553bc73ff7f0
|
|
7
|
+
data.tar.gz: 8bc48912566c503498c74d767f93f566aaa5ec5d36aab6558e8dcbe1e4922828384187557c480e01ff01167afab67ba98fdbc5b7fd5a818a7cd26d505a8b9ac1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-workstations_v1
|
|
2
2
|
|
|
3
|
+
### v0.35.0 (2026-05-10)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260427
|
|
6
|
+
|
|
7
|
+
### v0.34.0 (2026-05-03)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260413
|
|
10
|
+
|
|
3
11
|
### v0.33.0 (2026-04-19)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260401
|
|
@@ -868,6 +868,15 @@ module Google
|
|
|
868
868
|
class GceRegionalPersistentDisk
|
|
869
869
|
include Google::Apis::Core::Hashable
|
|
870
870
|
|
|
871
|
+
# Optional. Number of seconds to wait after initially creating or subsequently
|
|
872
|
+
# shutting down the workstation before converting its disk into a snapshot. This
|
|
873
|
+
# generally saves costs at the expense of greater startup time on next
|
|
874
|
+
# workstation start, as the service will need to create a disk from the archival
|
|
875
|
+
# snapshot. A value of `"0s"` indicates that the disk will never be archived.
|
|
876
|
+
# Corresponds to the JSON property `archiveTimeout`
|
|
877
|
+
# @return [String]
|
|
878
|
+
attr_accessor :archive_timeout
|
|
879
|
+
|
|
871
880
|
# Optional. The [type of the persistent disk](https://cloud.google.com/compute/
|
|
872
881
|
# docs/disks#disk-types) for the home directory. Defaults to `"pd-standard"`.
|
|
873
882
|
# Corresponds to the JSON property `diskType`
|
|
@@ -908,6 +917,7 @@ module Google
|
|
|
908
917
|
|
|
909
918
|
# Update properties of this object
|
|
910
919
|
def update!(**args)
|
|
920
|
+
@archive_timeout = args[:archive_timeout] if args.key?(:archive_timeout)
|
|
911
921
|
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
|
912
922
|
@fs_type = args[:fs_type] if args.key?(:fs_type)
|
|
913
923
|
@reclaim_policy = args[:reclaim_policy] if args.key?(:reclaim_policy)
|
|
@@ -2367,11 +2377,10 @@ module Google
|
|
|
2367
2377
|
attr_accessor :replica_zones
|
|
2368
2378
|
|
|
2369
2379
|
# Optional. Number of seconds that a workstation can run until it is
|
|
2370
|
-
# automatically shut down.
|
|
2371
|
-
#
|
|
2372
|
-
#
|
|
2373
|
-
#
|
|
2374
|
-
# Note that the running_timeout field shuts down VMs after the specified time,
|
|
2380
|
+
# automatically shut down. We recommend that workstations be shut down daily to
|
|
2381
|
+
# reduce costs and so that security updates can be applied upon restart. The
|
|
2382
|
+
# idle_timeout and running_timeout fields are independent of each other. Note
|
|
2383
|
+
# that the running_timeout field shuts down VMs after the specified time,
|
|
2375
2384
|
# regardless of whether or not the VMs are idle. Provide duration terminated by `
|
|
2376
2385
|
# s` for seconds—for example, `"54000s"` (15 hours). Defaults to `"43200s"` (12
|
|
2377
2386
|
# hours). A value of `"0s"` indicates that workstations using this configuration
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module WorkstationsV1
|
|
18
18
|
# Version of the google-apis-workstations_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.35.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 = "
|
|
25
|
+
REVISION = "20260427"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -483,6 +483,7 @@ module Google
|
|
|
483
483
|
class GceRegionalPersistentDisk
|
|
484
484
|
# @private
|
|
485
485
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
486
|
+
property :archive_timeout, as: 'archiveTimeout'
|
|
486
487
|
property :disk_type, as: 'diskType'
|
|
487
488
|
property :fs_type, as: 'fsType'
|
|
488
489
|
property :reclaim_policy, as: 'reclaimPolicy'
|
|
@@ -82,8 +82,8 @@ module Google
|
|
|
82
82
|
end
|
|
83
83
|
|
|
84
84
|
# Lists information about the supported locations for this service. This method
|
|
85
|
-
# lists locations based on the resource scope provided in the
|
|
86
|
-
# ListLocationsRequest.name
|
|
85
|
+
# lists locations based on the resource scope provided in the
|
|
86
|
+
# ListLocationsRequest.name field: * **Global locations**: If `name` is empty,
|
|
87
87
|
# the method lists the public locations available to all projects. * **Project-
|
|
88
88
|
# specific locations**: If `name` follows the format `projects/`project``, the
|
|
89
89
|
# method lists locations visible to that specific project. This includes public,
|
|
@@ -94,8 +94,8 @@ module Google
|
|
|
94
94
|
# @param [String] name
|
|
95
95
|
# The resource that owns the locations collection, if applicable.
|
|
96
96
|
# @param [Array<String>, String] extra_location_types
|
|
97
|
-
# Optional. Do not use this field
|
|
98
|
-
#
|
|
97
|
+
# Optional. Do not use this field unless explicitly documented otherwise. This
|
|
98
|
+
# is primarily for internal usage.
|
|
99
99
|
# @param [String] filter
|
|
100
100
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
101
101
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-workstations_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.35.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_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1/v0.35.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workstations_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|