google-apis-datalineage_v1 0.10.0 → 0.11.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: 491ee85e77ee6cb3eb3e4501d6c847c24bcc9db724815b7a6000024747380117
4
- data.tar.gz: 7c8d7d4526f6deac74cf50f116b62e189c598d0f6e843abb76dafc89a449c503
3
+ metadata.gz: 201624f1221dd934236e32e4d288a5e28c79cc864bb20b0a716298c7cc7e12f1
4
+ data.tar.gz: 1af185c547e55c0b766834ae7aced5322a407d02fae2589c53b31f7ed87982b0
5
5
  SHA512:
6
- metadata.gz: 68634bdbd7d1392db1567e4fbbd79be9df9203a476819171d1ca5cc7f509dbec2b4a88369d38e0168a57293df4b9fdf431016cc65a3e084c1612bf4475ecabff
7
- data.tar.gz: 7a4b6a574919b29d6d5baba4a069b2a31adc914223f6a4466104c34981e3979868320b72fd9785378b441be6ac2e0ee29ef0075875af4d7d1415b6328d3c2c34
6
+ metadata.gz: 8396955938d74a83d52338e7e6501b7e765cc6c4706c06f6726a66345f0c4a9c573c5f5b3694ccccf410f2671d72edd7aa437c66798e0ed392db5b92f753d0b7
7
+ data.tar.gz: add872b72a63b76f4bab89f4caf4cf3851cfbb92ed859170a28296f8a1f03474c72daf4d1887d97628af59f056f73118e58fcf8e3e0ec5a43ee2eda4fa081e04
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-datalineage_v1
2
2
 
3
+ ### v0.11.0 (2025-10-12)
4
+
5
+ * Regenerated from discovery document revision 20251003
6
+
3
7
  ### v0.10.0 (2025-07-20)
4
8
 
5
9
  * Regenerated from discovery document revision 20250711
@@ -678,6 +678,13 @@ module Google
678
678
  # @return [Array<Google::Apis::DatalineageV1::GoogleLongrunningOperation>]
679
679
  attr_accessor :operations
680
680
 
681
+ # Unordered list. Unreachable resources. Populated when the request sets `
682
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
683
+ # when attempting to list all resources across all supported locations.
684
+ # Corresponds to the JSON property `unreachable`
685
+ # @return [Array<String>]
686
+ attr_accessor :unreachable
687
+
681
688
  def initialize(**args)
682
689
  update!(**args)
683
690
  end
@@ -686,6 +693,7 @@ module Google
686
693
  def update!(**args)
687
694
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
688
695
  @operations = args[:operations] if args.key?(:operations)
696
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
689
697
  end
690
698
  end
691
699
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatalineageV1
18
18
  # Version of the google-apis-datalineage_v1 gem
19
- GEM_VERSION = "0.10.0"
19
+ GEM_VERSION = "0.11.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 = "20250711"
25
+ REVISION = "20251003"
26
26
  end
27
27
  end
28
28
  end
@@ -349,6 +349,7 @@ module Google
349
349
  property :next_page_token, as: 'nextPageToken'
350
350
  collection :operations, as: 'operations', class: Google::Apis::DatalineageV1::GoogleLongrunningOperation, decorator: Google::Apis::DatalineageV1::GoogleLongrunningOperation::Representation
351
351
 
352
+ collection :unreachable, as: 'unreachable'
352
353
  end
353
354
  end
354
355
 
@@ -283,6 +283,13 @@ module Google
283
283
  # The standard list page size.
284
284
  # @param [String] page_token
285
285
  # The standard list page token.
286
+ # @param [Boolean] return_partial_success
287
+ # When set to `true`, operations that are reachable are returned as normal, and
288
+ # those that are unreachable are returned in the [ListOperationsResponse.
289
+ # unreachable] field. This can only be `true` when reading across collections e.
290
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
291
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
292
+ # explicitly documented otherwise in service or product specific documentation.
286
293
  # @param [String] fields
287
294
  # Selector specifying which fields to include in a partial response.
288
295
  # @param [String] quota_user
@@ -300,7 +307,7 @@ module Google
300
307
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
301
308
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
302
309
  # @raise [Google::Apis::AuthorizationError] Authorization is required
303
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
310
+ 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)
304
311
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
305
312
  command.response_representation = Google::Apis::DatalineageV1::GoogleLongrunningListOperationsResponse::Representation
306
313
  command.response_class = Google::Apis::DatalineageV1::GoogleLongrunningListOperationsResponse
@@ -308,6 +315,7 @@ module Google
308
315
  command.query['filter'] = filter unless filter.nil?
309
316
  command.query['pageSize'] = page_size unless page_size.nil?
310
317
  command.query['pageToken'] = page_token unless page_token.nil?
318
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
311
319
  command.query['fields'] = fields unless fields.nil?
312
320
  command.query['quotaUser'] = quota_user unless quota_user.nil?
313
321
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datalineage_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.11.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-datalineage_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-datalineage_v1/v0.10.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datalineage_v1/v0.11.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datalineage_v1
62
62
  rdoc_options: []
63
63
  require_paths: