google-apis-workstations_v1beta 0.43.0 → 0.44.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: 0d086299a4182fbbd9050291f52bfa94ff790cfc17849226008c7b80f755424b
4
- data.tar.gz: a6a83559444c6ebf08544e4fde647e667234dc8468e6543006a9a721f8ce5484
3
+ metadata.gz: 242f494482300484f8dfd3db3065778dd29a4ab83e8aa6ee209976b3cc3f4d2a
4
+ data.tar.gz: 16467abc6f2123e4d09da34c7177bdb70cf59ccbde92da0757ec60a70b742ca1
5
5
  SHA512:
6
- metadata.gz: 7467721a29c79195fb0fdcef3d44920ac7f5064c11906b00a61a952eaff733a013a36620c9bd490d2b7039b7b05ad4d1573eaf01b9346d833975c6a8627b4d13
7
- data.tar.gz: ce64d21766541b6cb410dc91e4e433d6e077ad6ba7c7d75f82404e24d551fed2a822da94e61c460a292c4e54d880efe7c90512b91e3d803f623d17ae1ba62dc9
6
+ metadata.gz: defd32807806369e9a066e84b6c3f20bec026a50912184d5e28ece4f0e03542bd6de54540d484d796aef16f76b263577120ac55274679cf8d421dc6ba00f8977
7
+ data.tar.gz: 6d7415632d02e67423b28f20f00f9648e2914b9ed72e06c21721912beddd949f4c4790bab770d9b9c96be28d5990e6d86b5cb5278eb21757372389891f1ad6b3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-workstations_v1beta
2
2
 
3
+ ### v0.44.0 (2025-10-12)
4
+
5
+ * Regenerated from discovery document revision 20250929
6
+
3
7
  ### v0.43.0 (2025-08-10)
4
8
 
5
9
  * Regenerated from discovery document revision 20250729
@@ -1046,6 +1046,13 @@ module Google
1046
1046
  # @return [Array<Google::Apis::WorkstationsV1beta::Operation>]
1047
1047
  attr_accessor :operations
1048
1048
 
1049
+ # Unordered list. Unreachable resources. Populated when the request sets `
1050
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
1051
+ # when attempting to list all resources across all supported locations.
1052
+ # Corresponds to the JSON property `unreachable`
1053
+ # @return [Array<String>]
1054
+ attr_accessor :unreachable
1055
+
1049
1056
  def initialize(**args)
1050
1057
  update!(**args)
1051
1058
  end
@@ -1054,6 +1061,7 @@ module Google
1054
1061
  def update!(**args)
1055
1062
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1056
1063
  @operations = args[:operations] if args.key?(:operations)
1064
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
1057
1065
  end
1058
1066
  end
1059
1067
 
@@ -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.43.0"
19
+ GEM_VERSION = "0.44.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 = "20250729"
25
+ REVISION = "20250929"
26
26
  end
27
27
  end
28
28
  end
@@ -537,6 +537,7 @@ module Google
537
537
  property :next_page_token, as: 'nextPageToken'
538
538
  collection :operations, as: 'operations', class: Google::Apis::WorkstationsV1beta::Operation, decorator: Google::Apis::WorkstationsV1beta::Operation::Representation
539
539
 
540
+ collection :unreachable, as: 'unreachable'
540
541
  end
541
542
  end
542
543
 
@@ -165,6 +165,13 @@ module Google
165
165
  # The standard list page size.
166
166
  # @param [String] page_token
167
167
  # The standard list page token.
168
+ # @param [Boolean] return_partial_success
169
+ # When set to `true`, operations that are reachable are returned as normal, and
170
+ # those that are unreachable are returned in the [ListOperationsResponse.
171
+ # unreachable] field. This can only be `true` when reading across collections e.
172
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
173
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
174
+ # explicitly documented otherwise in service or product specific documentation.
168
175
  # @param [String] fields
169
176
  # Selector specifying which fields to include in a partial response.
170
177
  # @param [String] quota_user
@@ -182,7 +189,7 @@ module Google
182
189
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
183
190
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
184
191
  # @raise [Google::Apis::AuthorizationError] Authorization is required
185
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
192
+ 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)
186
193
  command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
187
194
  command.response_representation = Google::Apis::WorkstationsV1beta::ListOperationsResponse::Representation
188
195
  command.response_class = Google::Apis::WorkstationsV1beta::ListOperationsResponse
@@ -190,6 +197,7 @@ module Google
190
197
  command.query['filter'] = filter unless filter.nil?
191
198
  command.query['pageSize'] = page_size unless page_size.nil?
192
199
  command.query['pageToken'] = page_token unless page_token.nil?
200
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
193
201
  command.query['fields'] = fields unless fields.nil?
194
202
  command.query['quotaUser'] = quota_user unless quota_user.nil?
195
203
  execute_or_queue_command(command, &block)
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.43.0
4
+ version: 0.44.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.43.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1beta/v0.44.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: