google-apis-workstations_v1 0.31.0 → 0.33.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: e8c33397bc67b608a888faf200fb8ad984455077a916333aea68a9936f9066b6
4
- data.tar.gz: e91772876aeaa714fffe3c3c07dac1dba1f899d95b76dec1b24c342c022c2bf4
3
+ metadata.gz: 632effd5966443108cf70c8954d534db16f8e5b097456d40385c5ab5a8291517
4
+ data.tar.gz: 3dcbf7cc7923726045b61b782a611a6d48078493befb33b2905e9637abee5719
5
5
  SHA512:
6
- metadata.gz: a8f3901d7cdd44d25115fc053823094cab0ecb06639818065cd2b129e0ff553bda92f05d9ff93f3da77fc33ed4b4cd1c82e9d383e48a29545004a416f415e60f
7
- data.tar.gz: f5b2803d9d615672ce86e49740cfb1faa9fc9c737255d833e77ed7bb6a9eb9e6962398ab0dd31bda14389cfa8b322207c6ec50c79507b75b49c9272cbab21407
6
+ metadata.gz: f44be910b98959d947e908081ecbaa8f1f06c467981455f3c981b77a53d931b8093c7da9567ab20dd4e07b61f6cfa662612fe65ea18b58daca62a462cfcdc956
7
+ data.tar.gz: 7b45d32856bb5937e652fc0ff3a1935964426541ed4de02e587f152db1f20a305e580e6bd4a16bfd8610aabfa31f3e5f7ad6cf508324abe819dc223805f8a5a8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-workstations_v1
2
2
 
3
+ ### v0.33.0 (2026-04-19)
4
+
5
+ * Regenerated from discovery document revision 20260401
6
+
7
+ ### v0.32.0 (2026-02-08)
8
+
9
+ * Regenerated from discovery document revision 20260126
10
+
3
11
  ### v0.31.0 (2026-01-25)
4
12
 
5
13
  * Regenerated from discovery document revision 20260113
@@ -1762,7 +1762,7 @@ module Google
1762
1762
  # @return [String]
1763
1763
  attr_accessor :etag
1764
1764
 
1765
- # Optional. If set, validate the request and preview the review, but do not
1765
+ # Optional. If set, validate the request and preview the result, but do not
1766
1766
  # actually apply it.
1767
1767
  # Corresponds to the JSON property `validateOnly`
1768
1768
  # @return [Boolean]
@@ -1830,7 +1830,7 @@ module Google
1830
1830
  # @return [String]
1831
1831
  attr_accessor :etag
1832
1832
 
1833
- # Optional. If set, validate the request and preview the review, but do not
1833
+ # Optional. If set, validate the request and preview the result, but do not
1834
1834
  # actually apply it.
1835
1835
  # Corresponds to the JSON property `validateOnly`
1836
1836
  # @return [Boolean]
@@ -2135,6 +2135,27 @@ module Google
2135
2135
  # @return [String]
2136
2136
  attr_accessor :update_time
2137
2137
 
2138
+ # Optional. Specifies the redirect URL for unauthorized requests received by
2139
+ # workstation VMs in this cluster. Redirects to this endpoint will send a base64
2140
+ # encoded `state` query param containing the target workstation name and
2141
+ # original request hostname. The endpoint is responsible for retrieving a token
2142
+ # using `GenerateAccessToken` and redirecting back to the original hostname with
2143
+ # the token.
2144
+ # Corresponds to the JSON property `workstationAuthorizationUrl`
2145
+ # @return [String]
2146
+ attr_accessor :workstation_authorization_url
2147
+
2148
+ # Optional. Specifies the launch URL for workstations in this cluster. Requests
2149
+ # sent to unstarted workstations will be redirected to this URL. Requests
2150
+ # redirected to the launch endpoint will be sent with a `workstation` and `
2151
+ # project` query parameter containing the full workstation resource name and
2152
+ # project ID, respectively. The launch endpoint is responsible for starting the
2153
+ # workstation, polling it until it reaches `STATE_RUNNING`, and then issuing a
2154
+ # redirect to the workstation's host URL.
2155
+ # Corresponds to the JSON property `workstationLaunchUrl`
2156
+ # @return [String]
2157
+ attr_accessor :workstation_launch_url
2158
+
2138
2159
  def initialize(**args)
2139
2160
  update!(**args)
2140
2161
  end
@@ -2160,6 +2181,8 @@ module Google
2160
2181
  @tags = args[:tags] if args.key?(:tags)
2161
2182
  @uid = args[:uid] if args.key?(:uid)
2162
2183
  @update_time = args[:update_time] if args.key?(:update_time)
2184
+ @workstation_authorization_url = args[:workstation_authorization_url] if args.key?(:workstation_authorization_url)
2185
+ @workstation_launch_url = args[:workstation_launch_url] if args.key?(:workstation_launch_url)
2163
2186
  end
2164
2187
  end
2165
2188
 
@@ -2344,10 +2367,11 @@ module Google
2344
2367
  attr_accessor :replica_zones
2345
2368
 
2346
2369
  # Optional. Number of seconds that a workstation can run until it is
2347
- # automatically shut down. We recommend that workstations be shut down daily to
2348
- # reduce costs and so that security updates can be applied upon restart. The
2349
- # idle_timeout and running_timeout fields are independent of each other. Note
2350
- # that the running_timeout field shuts down VMs after the specified time,
2370
+ # automatically shut down. This field applies to workstations in both
2371
+ # STATE_RUNNING and STATE_SUSPENDED. We recommend that workstations be shut down
2372
+ # daily to reduce costs and so that security updates can be applied upon restart.
2373
+ # The idle_timeout and running_timeout fields are independent of each other.
2374
+ # Note that the running_timeout field shuts down VMs after the specified time,
2351
2375
  # regardless of whether or not the VMs are idle. Provide duration terminated by `
2352
2376
  # s` for seconds—for example, `"54000s"` (15 hours). Defaults to `"43200s"` (12
2353
2377
  # 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.31.0"
19
+ GEM_VERSION = "0.33.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 = "20260113"
25
+ REVISION = "20260401"
26
26
  end
27
27
  end
28
28
  end
@@ -792,6 +792,8 @@ module Google
792
792
  hash :tags, as: 'tags'
793
793
  property :uid, as: 'uid'
794
794
  property :update_time, as: 'updateTime'
795
+ property :workstation_authorization_url, as: 'workstationAuthorizationUrl'
796
+ property :workstation_launch_url, as: 'workstationLaunchUrl'
795
797
  end
796
798
  end
797
799
 
@@ -81,7 +81,16 @@ module Google
81
81
  execute_or_queue_command(command, &block)
82
82
  end
83
83
 
84
- # Lists information about the supported locations for this service.
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] field: * **Global locations**: If `name` is empty,
87
+ # the method lists the public locations available to all projects. * **Project-
88
+ # specific locations**: If `name` follows the format `projects/`project``, the
89
+ # method lists locations visible to that specific project. This includes public,
90
+ # private, or other project-specific locations enabled for the project. For gRPC
91
+ # and client library implementations, the resource name is passed as the `name`
92
+ # field. For direct service calls, the resource name is incorporated into the
93
+ # request path based on the specific service implementation and version.
85
94
  # @param [String] name
86
95
  # The resource that owns the locations collection, if applicable.
87
96
  # @param [Array<String>, String] extra_location_types
@@ -286,7 +295,7 @@ module Google
286
295
  # Required. Parent resource name.
287
296
  # @param [Google::Apis::WorkstationsV1::WorkstationCluster] workstation_cluster_object
288
297
  # @param [Boolean] validate_only
289
- # Optional. If set, validate the request and preview the review, but do not
298
+ # Optional. If set, validate the request and preview the result, but do not
290
299
  # actually apply it.
291
300
  # @param [String] workstation_cluster_id
292
301
  # Required. ID to use for the workstation cluster.
@@ -332,7 +341,7 @@ module Google
332
341
  # workstation cluster are also deleted. Otherwise, the request only works if the
333
342
  # workstation cluster has no configurations or workstations.
334
343
  # @param [Boolean] validate_only
335
- # Optional. If set, validate the request and preview the review, but do not
344
+ # Optional. If set, validate the request and preview the result, but do not
336
345
  # apply it.
337
346
  # @param [String] fields
338
347
  # Selector specifying which fields to include in a partial response.
@@ -445,7 +454,7 @@ module Google
445
454
  # Required. Mask that specifies which fields in the workstation cluster should
446
455
  # be updated.
447
456
  # @param [Boolean] validate_only
448
- # Optional. If set, validate the request and preview the review, but do not
457
+ # Optional. If set, validate the request and preview the result, but do not
449
458
  # actually apply it.
450
459
  # @param [String] fields
451
460
  # Selector specifying which fields to include in a partial response.
@@ -484,7 +493,7 @@ module Google
484
493
  # Required. Parent resource name.
485
494
  # @param [Google::Apis::WorkstationsV1::WorkstationConfig] workstation_config_object
486
495
  # @param [Boolean] validate_only
487
- # Optional. If set, validate the request and preview the review, but do not
496
+ # Optional. If set, validate the request and preview the result, but do not
488
497
  # actually apply it.
489
498
  # @param [String] workstation_config_id
490
499
  # Required. ID to use for the workstation configuration.
@@ -530,7 +539,7 @@ module Google
530
539
  # deleted. Otherwise, the request works only if the workstation configuration
531
540
  # has no workstations.
532
541
  # @param [Boolean] validate_only
533
- # Optional. If set, validate the request and preview the review, but do not
542
+ # Optional. If set, validate the request and preview the result, but do not
534
543
  # actually apply it.
535
544
  # @param [String] fields
536
545
  # Selector specifying which fields to include in a partial response.
@@ -726,7 +735,7 @@ module Google
726
735
  # Required. Mask specifying which fields in the workstation configuration should
727
736
  # be updated.
728
737
  # @param [Boolean] validate_only
729
- # Optional. If set, validate the request and preview the review, but do not
738
+ # Optional. If set, validate the request and preview the result, but do not
730
739
  # actually apply it.
731
740
  # @param [String] fields
732
741
  # Selector specifying which fields to include in a partial response.
@@ -841,7 +850,7 @@ module Google
841
850
  # Required. Parent resource name.
842
851
  # @param [Google::Apis::WorkstationsV1::Workstation] workstation_object
843
852
  # @param [Boolean] validate_only
844
- # Optional. If set, validate the request and preview the review, but do not
853
+ # Optional. If set, validate the request and preview the result, but do not
845
854
  # actually apply it.
846
855
  # @param [String] workstation_id
847
856
  # Required. ID to use for the workstation.
@@ -883,7 +892,7 @@ module Google
883
892
  # Optional. If set, the request will be rejected if the latest version of the
884
893
  # workstation on the server does not have this ETag.
885
894
  # @param [Boolean] validate_only
886
- # Optional. If set, validate the request and preview the review, but do not
895
+ # Optional. If set, validate the request and preview the result, but do not
887
896
  # actually apply it.
888
897
  # @param [String] fields
889
898
  # Selector specifying which fields to include in a partial response.
@@ -1107,14 +1116,12 @@ module Google
1107
1116
  # Identifier. Full name of this workstation.
1108
1117
  # @param [Google::Apis::WorkstationsV1::Workstation] workstation_object
1109
1118
  # @param [Boolean] allow_missing
1110
- # Optional. If set and the workstation configuration is not found, a new
1111
- # workstation configuration is created. In this situation, update_mask is
1112
- # ignored.
1119
+ # Optional. If set and the workstation is not found, a new workstation is
1120
+ # created. In this situation, update_mask is ignored.
1113
1121
  # @param [String] update_mask
1114
- # Required. Mask specifying which fields in the workstation configuration should
1115
- # be updated.
1122
+ # Required. Mask specifying which fields in the workstation should be updated.
1116
1123
  # @param [Boolean] validate_only
1117
- # Optional. If set, validate the request and preview the review, but do not
1124
+ # Optional. If set, validate the request and preview the result, but do not
1118
1125
  # actually apply it.
1119
1126
  # @param [String] fields
1120
1127
  # Selector specifying which fields to include in a partial response.
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.31.0
4
+ version: 0.33.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.31.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1/v0.33.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: