google-apis-cloudfunctions_v2 0.54.0 → 0.55.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: 6f0999a50e4c083d5c09197e5bc014b37a98fe2ed6c3a91f170f8700269c056e
4
- data.tar.gz: a04cd1a6beb16e311577158bf07c8eeff06b69ce71ffcd2329c16d5038db6d99
3
+ metadata.gz: 770acfb0fd968abe6c29fa6a0974f4c463e5e07302f9e47f44abad216b3004be
4
+ data.tar.gz: d9506f72093d31a179be8815cd6b866292d97100115955178c3bc6c6676df605
5
5
  SHA512:
6
- metadata.gz: d59d38e36450c38c34e13b06c0b93f096c904da992b5343762a6403260151de0cc3e2e4153f6af69aba916377e837f3acfa76a8c776260e6f09fb8e076b71ac8
7
- data.tar.gz: e18bf8bed895ce201039611c6d88f273a1c99839797ce2e6a13a870aba40fe629090fdbd85a00c22f91285e50d1de5644ee422179c089abc184292315c47e47a
6
+ metadata.gz: ef55c96f9c29011ba6d07c83990171a8b1ef38d62936d138c658af5925982027511f72d789facbecbe024c9b7ada93fcdf504205e7291a0d66e42ac736f9a5b5
7
+ data.tar.gz: 4fa855febc0972699f3ca609cf3906789fd13fb4efce35fde76a1a47dbb4d3951b757868408c68a39680804862498e51170530f8bbe6ae49947f0486b2e8bc7c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudfunctions_v2
2
2
 
3
+ ### v0.55.0 (2025-10-05)
4
+
5
+ * Regenerated from discovery document revision 20250929
6
+
3
7
  ### v0.54.0 (2025-09-14)
4
8
 
5
9
  * Regenerated from discovery document revision 20250908
@@ -1069,6 +1069,13 @@ module Google
1069
1069
  # @return [Array<Google::Apis::CloudfunctionsV2::Operation>]
1070
1070
  attr_accessor :operations
1071
1071
 
1072
+ # Unordered list. Unreachable resources. Populated when the request sets `
1073
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
1074
+ # when attempting to list all resources across all supported locations.
1075
+ # Corresponds to the JSON property `unreachable`
1076
+ # @return [Array<String>]
1077
+ attr_accessor :unreachable
1078
+
1072
1079
  def initialize(**args)
1073
1080
  update!(**args)
1074
1081
  end
@@ -1077,6 +1084,7 @@ module Google
1077
1084
  def update!(**args)
1078
1085
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1079
1086
  @operations = args[:operations] if args.key?(:operations)
1087
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
1080
1088
  end
1081
1089
  end
1082
1090
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudfunctionsV2
18
18
  # Version of the google-apis-cloudfunctions_v2 gem
19
- GEM_VERSION = "0.54.0"
19
+ GEM_VERSION = "0.55.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 = "20250908"
25
+ REVISION = "20250929"
26
26
  end
27
27
  end
28
28
  end
@@ -553,6 +553,7 @@ module Google
553
553
  property :next_page_token, as: 'nextPageToken'
554
554
  collection :operations, as: 'operations', class: Google::Apis::CloudfunctionsV2::Operation, decorator: Google::Apis::CloudfunctionsV2::Operation::Representation
555
555
 
556
+ collection :unreachable, as: 'unreachable'
556
557
  end
557
558
  end
558
559
 
@@ -759,6 +759,13 @@ module Google
759
759
  # The standard list page size.
760
760
  # @param [String] page_token
761
761
  # The standard list page token.
762
+ # @param [Boolean] return_partial_success
763
+ # When set to `true`, operations that are reachable are returned as normal, and
764
+ # those that are unreachable are returned in the [ListOperationsResponse.
765
+ # unreachable] field. This can only be `true` when reading across collections e.
766
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
767
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
768
+ # explicitly documented otherwise in service or product specific documentation.
762
769
  # @param [String] fields
763
770
  # Selector specifying which fields to include in a partial response.
764
771
  # @param [String] quota_user
@@ -776,7 +783,7 @@ module Google
776
783
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
777
784
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
778
785
  # @raise [Google::Apis::AuthorizationError] Authorization is required
779
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
786
+ 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)
780
787
  command = make_simple_command(:get, 'v2/{+name}/operations', options)
781
788
  command.response_representation = Google::Apis::CloudfunctionsV2::ListOperationsResponse::Representation
782
789
  command.response_class = Google::Apis::CloudfunctionsV2::ListOperationsResponse
@@ -784,6 +791,7 @@ module Google
784
791
  command.query['filter'] = filter unless filter.nil?
785
792
  command.query['pageSize'] = page_size unless page_size.nil?
786
793
  command.query['pageToken'] = page_token unless page_token.nil?
794
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
787
795
  command.query['fields'] = fields unless fields.nil?
788
796
  command.query['quotaUser'] = quota_user unless quota_user.nil?
789
797
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudfunctions_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.54.0
4
+ version: 0.55.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-cloudfunctions_v2/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2/v0.54.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2/v0.55.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudfunctions_v2
62
62
  rdoc_options: []
63
63
  require_paths: