google-apis-workstations_v1 0.27.0 → 0.28.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: 32df7b478187a50aca6155c902c92d8f15cd08d4655f0ec9ade40ebe3f0e021b
4
- data.tar.gz: bd351951948561e1f94669124c7748404622547667c1408b249c4b0a35f8bc92
3
+ metadata.gz: e845a8c9b4b708440eb2e9df5de36941d9e8bd3a0ac38256117a6d6154e3d489
4
+ data.tar.gz: 1ace842a737b5cb26a89abfcbad4007b78c0bd77c042a0d75233fc5ebd9fc05f
5
5
  SHA512:
6
- metadata.gz: edad40203af2f53d2761cb4f1020d79c55cbe1a861186fc5cca4e309592c8c748514bb867dc2e19545f46047603ac13784fe7684cc02ffa23d45e2fcaa327ffa
7
- data.tar.gz: e244d119be8736b90c95545b41be575be881b361269367108191c6c74fff836c6e431a648b51417daa0eb9d613c6c3df74c36ae7504fbbbb5a74917417d79d90
6
+ metadata.gz: c1bdcb8244985c31c61cf2b0ec817e9a6e96672775806b82781d5ea45b5f52d38021114fe2f6a8cbd75c9cea6b78371e9386c74481aa6c6e844260aa5eae6a03
7
+ data.tar.gz: 7e1642071f6ffd24a55c4b190787a436b8bcae578e562b05f3bbbd183acd0db4f7d66cefef716c7a3b9fcb16b06897899ae6fd7492f96aee73a643a3755d06e4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-workstations_v1
2
2
 
3
+ ### v0.28.0 (2025-10-12)
4
+
5
+ * Regenerated from discovery document revision 20250929
6
+
3
7
  ### v0.27.0 (2025-09-21)
4
8
 
5
9
  * Regenerated from discovery document revision 20250915
@@ -1020,6 +1020,13 @@ module Google
1020
1020
  # @return [Array<Google::Apis::WorkstationsV1::Operation>]
1021
1021
  attr_accessor :operations
1022
1022
 
1023
+ # Unordered list. Unreachable resources. Populated when the request sets `
1024
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
1025
+ # when attempting to list all resources across all supported locations.
1026
+ # Corresponds to the JSON property `unreachable`
1027
+ # @return [Array<String>]
1028
+ attr_accessor :unreachable
1029
+
1023
1030
  def initialize(**args)
1024
1031
  update!(**args)
1025
1032
  end
@@ -1028,6 +1035,7 @@ module Google
1028
1035
  def update!(**args)
1029
1036
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1030
1037
  @operations = args[:operations] if args.key?(:operations)
1038
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
1031
1039
  end
1032
1040
  end
1033
1041
 
@@ -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.27.0"
19
+ GEM_VERSION = "0.28.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 = "20250915"
25
+ REVISION = "20250929"
26
26
  end
27
27
  end
28
28
  end
@@ -528,6 +528,7 @@ module Google
528
528
  property :next_page_token, as: 'nextPageToken'
529
529
  collection :operations, as: 'operations', class: Google::Apis::WorkstationsV1::Operation, decorator: Google::Apis::WorkstationsV1::Operation::Representation
530
530
 
531
+ collection :unreachable, as: 'unreachable'
531
532
  end
532
533
  end
533
534
 
@@ -242,6 +242,13 @@ module Google
242
242
  # The standard list page size.
243
243
  # @param [String] page_token
244
244
  # The standard list page token.
245
+ # @param [Boolean] return_partial_success
246
+ # When set to `true`, operations that are reachable are returned as normal, and
247
+ # those that are unreachable are returned in the [ListOperationsResponse.
248
+ # unreachable] field. This can only be `true` when reading across collections e.
249
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
250
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
251
+ # explicitly documented otherwise in service or product specific documentation.
245
252
  # @param [String] fields
246
253
  # Selector specifying which fields to include in a partial response.
247
254
  # @param [String] quota_user
@@ -259,7 +266,7 @@ module Google
259
266
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
260
267
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
261
268
  # @raise [Google::Apis::AuthorizationError] Authorization is required
262
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
269
+ def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
263
270
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
264
271
  command.response_representation = Google::Apis::WorkstationsV1::ListOperationsResponse::Representation
265
272
  command.response_class = Google::Apis::WorkstationsV1::ListOperationsResponse
@@ -267,6 +274,7 @@ module Google
267
274
  command.query['filter'] = filter unless filter.nil?
268
275
  command.query['pageSize'] = page_size unless page_size.nil?
269
276
  command.query['pageToken'] = page_token unless page_token.nil?
277
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
270
278
  command.query['fields'] = fields unless fields.nil?
271
279
  command.query['quotaUser'] = quota_user unless quota_user.nil?
272
280
  execute_or_queue_command(command, &block)
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.27.0
4
+ version: 0.28.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.27.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1/v0.28.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: