google-apis-datastream_v1alpha1 0.25.0 → 0.27.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: c783093eda05688ed4169ccdb80c6494d04b1fe0125141427c5d98bedc02cdeb
4
- data.tar.gz: 62fea49998a702dbf17ca48f4129522acdcfe66aa192e831c266d3c9af0e0b06
3
+ metadata.gz: c34f0cb07043f1caedc0bc6aa2b9149c2ba9b7152e8678ac2bced08ed48beae8
4
+ data.tar.gz: 5fb067c41632e9c13aa023bd0e4bcf794a766b8e413e2b663598e991b2051d05
5
5
  SHA512:
6
- metadata.gz: a88b68ee96a71479a57cd39434b9ffffe220e5a0c1cee841c12de3e23885797543dc6ef8ec10de87d1edd6c9d122f1a4401c2ea3ffbc48762b9cf7c544bf7a87
7
- data.tar.gz: f1304fb3fae0b1063be64ee8d20b8077396b8f80f18fdd374b34ef47082f92ff957ffea437fd9252d7b4072118cfbae2a7f4b2ef0769f29294e65695cb7a982e
6
+ metadata.gz: 854335ce0820f87d27776944a98f1e6af1e171ffa30be8f09317c857970d6bb50a7650034a1f1a3fc8998fa8878f28035e88967c82bea1cf627477e6e20f82e3
7
+ data.tar.gz: 7b244196b4f767d00f56b0f2cd9c16878cec758fd6368ce4c66034d0ea23a4e35283a6795962e3bc7723ee28767286a0bd7c5c09f2fed87484e84556fb306da1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-datastream_v1alpha1
2
2
 
3
+ ### v0.27.0 (2025-12-14)
4
+
5
+ * Regenerated from discovery document revision 20251201
6
+
7
+ ### v0.26.0 (2025-11-02)
8
+
9
+ * Regenerated from discovery document revision 20251021
10
+
3
11
  ### v0.25.0 (2025-08-24)
4
12
 
5
13
  * Regenerated from discovery document revision 20250817
@@ -663,6 +663,14 @@ module Google
663
663
  # @return [Array<Google::Apis::DatastreamV1alpha1::Operation>]
664
664
  attr_accessor :operations
665
665
 
666
+ # Unordered list. Unreachable resources. Populated when the request sets `
667
+ # ListOperationsRequest.return_partial_success` and reads across collections.
668
+ # For example, when attempting to list all resources across all supported
669
+ # locations.
670
+ # Corresponds to the JSON property `unreachable`
671
+ # @return [Array<String>]
672
+ attr_accessor :unreachable
673
+
666
674
  def initialize(**args)
667
675
  update!(**args)
668
676
  end
@@ -671,6 +679,7 @@ module Google
671
679
  def update!(**args)
672
680
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
673
681
  @operations = args[:operations] if args.key?(:operations)
682
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
674
683
  end
675
684
  end
676
685
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatastreamV1alpha1
18
18
  # Version of the google-apis-datastream_v1alpha1 gem
19
- GEM_VERSION = "0.25.0"
19
+ GEM_VERSION = "0.27.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 = "20250817"
25
+ REVISION = "20251201"
26
26
  end
27
27
  end
28
28
  end
@@ -592,6 +592,7 @@ module Google
592
592
  property :next_page_token, as: 'nextPageToken'
593
593
  collection :operations, as: 'operations', class: Google::Apis::DatastreamV1alpha1::Operation, decorator: Google::Apis::DatastreamV1alpha1::Operation::Representation
594
594
 
595
+ collection :unreachable, as: 'unreachable'
595
596
  end
596
597
  end
597
598
 
@@ -540,6 +540,14 @@ module Google
540
540
  # The standard list page size.
541
541
  # @param [String] page_token
542
542
  # The standard list page token.
543
+ # @param [Boolean] return_partial_success
544
+ # When set to `true`, operations that are reachable are returned as normal, and
545
+ # those that are unreachable are returned in the ListOperationsResponse.
546
+ # unreachable field. This can only be `true` when reading across collections.
547
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
548
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
549
+ # if set unless explicitly documented otherwise in service or product specific
550
+ # documentation.
543
551
  # @param [String] fields
544
552
  # Selector specifying which fields to include in a partial response.
545
553
  # @param [String] quota_user
@@ -557,7 +565,7 @@ module Google
557
565
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
558
566
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
559
567
  # @raise [Google::Apis::AuthorizationError] Authorization is required
560
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
568
+ 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)
561
569
  command = make_simple_command(:get, 'v1alpha1/{+name}/operations', options)
562
570
  command.response_representation = Google::Apis::DatastreamV1alpha1::ListOperationsResponse::Representation
563
571
  command.response_class = Google::Apis::DatastreamV1alpha1::ListOperationsResponse
@@ -565,6 +573,7 @@ module Google
565
573
  command.query['filter'] = filter unless filter.nil?
566
574
  command.query['pageSize'] = page_size unless page_size.nil?
567
575
  command.query['pageToken'] = page_token unless page_token.nil?
576
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
568
577
  command.query['fields'] = fields unless fields.nil?
569
578
  command.query['quotaUser'] = quota_user unless quota_user.nil?
570
579
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datastream_v1alpha1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.25.0
4
+ version: 0.27.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-datastream_v1alpha1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-datastream_v1alpha1/v0.25.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datastream_v1alpha1/v0.27.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datastream_v1alpha1
62
62
  rdoc_options: []
63
63
  require_paths: