google-apis-file_v1beta1 0.62.0 → 0.63.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: 7d90aa82262065751627fc4d06658ef37e8e638899dcbe76be016b9fb203f210
4
- data.tar.gz: fd184086007c9be7cc778df932d6585ccab24a3dc24e42d51d7d18f558e57dfa
3
+ metadata.gz: 92fe91777a05a3a0dde5bed0917df46e65616eb8732e8dd0c1f5189d9507697b
4
+ data.tar.gz: 8b3420ab2e1016518dc922788e9c3f00ba538ca3aed4b05d3fd672f1ee053151
5
5
  SHA512:
6
- metadata.gz: e2658c3abcb931e8485fff1453001a79a2ce1d92b4b41635a8e79f6efcdc85c06f75f277ee623a50e434ba16924b697e22175febc063e6ed6b2ff47958feb1ae
7
- data.tar.gz: aa6e8af9d4cc389b5b54369b0796224f8a3bced1eba01d884b4bff42c9e2596b4910bef5994ba25392906648379e80b867d15d04280b6325f33399a495b9f57e
6
+ metadata.gz: 0f2ce17f8dad9efaef7b7a98b33db9805647f61a8269c6a4c3d15d4d650babc223437ae453c99b189063f876e11692f77f011318016611f91d59ccb65c456c27
7
+ data.tar.gz: '08e334de81bdedfa6dc583a6699f036f8b12683546dccb5fd4cc8b2e4f597e98a8215d25032e7d309f26fc770f34321d68ad7730aea126da2ac71c44ac4703d5'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-file_v1beta1
2
2
 
3
+ ### v0.63.0 (2025-10-26)
4
+
5
+ * Regenerated from discovery document revision 20251015
6
+
3
7
  ### v0.62.0 (2025-10-12)
4
8
 
5
9
  * Regenerated from discovery document revision 20250929
@@ -1233,6 +1233,13 @@ module Google
1233
1233
  # @return [Array<Google::Apis::FileV1beta1::Operation>]
1234
1234
  attr_accessor :operations
1235
1235
 
1236
+ # Unordered list. Unreachable resources. Populated when the request sets `
1237
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
1238
+ # when attempting to list all resources across all supported locations.
1239
+ # Corresponds to the JSON property `unreachable`
1240
+ # @return [Array<String>]
1241
+ attr_accessor :unreachable
1242
+
1236
1243
  def initialize(**args)
1237
1244
  update!(**args)
1238
1245
  end
@@ -1241,6 +1248,7 @@ module Google
1241
1248
  def update!(**args)
1242
1249
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1243
1250
  @operations = args[:operations] if args.key?(:operations)
1251
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
1244
1252
  end
1245
1253
  end
1246
1254
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module FileV1beta1
18
18
  # Version of the google-apis-file_v1beta1 gem
19
- GEM_VERSION = "0.62.0"
19
+ GEM_VERSION = "0.63.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 = "20250929"
25
+ REVISION = "20251015"
26
26
  end
27
27
  end
28
28
  end
@@ -623,6 +623,7 @@ module Google
623
623
  property :next_page_token, as: 'nextPageToken'
624
624
  collection :operations, as: 'operations', class: Google::Apis::FileV1beta1::Operation, decorator: Google::Apis::FileV1beta1::Operation::Representation
625
625
 
626
+ collection :unreachable, as: 'unreachable'
626
627
  end
627
628
  end
628
629
 
@@ -1176,6 +1176,13 @@ module Google
1176
1176
  # The standard list page size.
1177
1177
  # @param [String] page_token
1178
1178
  # The standard list page token.
1179
+ # @param [Boolean] return_partial_success
1180
+ # When set to `true`, operations that are reachable are returned as normal, and
1181
+ # those that are unreachable are returned in the [ListOperationsResponse.
1182
+ # unreachable] field. This can only be `true` when reading across collections e.
1183
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
1184
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
1185
+ # explicitly documented otherwise in service or product specific documentation.
1179
1186
  # @param [String] fields
1180
1187
  # Selector specifying which fields to include in a partial response.
1181
1188
  # @param [String] quota_user
@@ -1193,7 +1200,7 @@ module Google
1193
1200
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1194
1201
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1195
1202
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1196
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1203
+ 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)
1197
1204
  command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
1198
1205
  command.response_representation = Google::Apis::FileV1beta1::ListOperationsResponse::Representation
1199
1206
  command.response_class = Google::Apis::FileV1beta1::ListOperationsResponse
@@ -1201,6 +1208,7 @@ module Google
1201
1208
  command.query['filter'] = filter unless filter.nil?
1202
1209
  command.query['pageSize'] = page_size unless page_size.nil?
1203
1210
  command.query['pageToken'] = page_token unless page_token.nil?
1211
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
1204
1212
  command.query['fields'] = fields unless fields.nil?
1205
1213
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1206
1214
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-file_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.62.0
4
+ version: 0.63.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-file_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1beta1/v0.62.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1beta1/v0.63.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-file_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths: