google-apis-apigateway_v1beta 0.36.0 → 0.37.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: 8d7a5abc6c9393cddae298c7acfb231e5b4b18a0729bd1d5c1f36964a7028b9c
4
- data.tar.gz: e28116c7362f81480b32e8e89bcc0d8d7b2c85278333415c0364a28e27e4be35
3
+ metadata.gz: bc939766cbb418dc15590dc33beecf9861bfad9ef05d36fff0f05ca166f0cbbf
4
+ data.tar.gz: bdaf2435c97d2c8345a37a5f13111268f2edbcd6807da8f5158bdefc61619d87
5
5
  SHA512:
6
- metadata.gz: e3e601bc4d6bde24e0a5a25157eb8340b370fe7bc43cd024c07149c8b5020a0ebe48ce73d603b3af6f2219f8b95b878dd0eb3d771e556fbd121a88f99ae2372c
7
- data.tar.gz: 0ce2b8c107f89c5a0e4394aaefe9ef108cba4826d4dd79b1a306509af343b518b4bd3f9f070f5ce30c6902a1b17a701750dc092ad124b4ee4f99b9cfe47f9b83
6
+ metadata.gz: '0079d75785e54edeeb0c857c4d44da7c2221bd4cebaa6886c5503b0755e581adafec603677bff80fad86a33346faeb6b69de3119fdfd1450f94630e8aa5357a0'
7
+ data.tar.gz: 3f5858c7826fec254566b433da511aba2bc9895937ca47ec46ff75ca9a70fc04e115cc535af63395be9a892b0842c97d7c36cffaa2202332586d4e2c0672f24e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-apigateway_v1beta
2
2
 
3
+ ### v0.37.0 (2025-10-12)
4
+
5
+ * Regenerated from discovery document revision 20251001
6
+
3
7
  ### v0.36.0 (2025-09-21)
4
8
 
5
9
  * Regenerated from discovery document revision 20250910
@@ -746,6 +746,13 @@ module Google
746
746
  # @return [Array<Google::Apis::ApigatewayV1beta::ApigatewayOperation>]
747
747
  attr_accessor :operations
748
748
 
749
+ # Unordered list. Unreachable resources. Populated when the request sets `
750
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
751
+ # when attempting to list all resources across all supported locations.
752
+ # Corresponds to the JSON property `unreachable`
753
+ # @return [Array<String>]
754
+ attr_accessor :unreachable
755
+
749
756
  def initialize(**args)
750
757
  update!(**args)
751
758
  end
@@ -754,6 +761,7 @@ module Google
754
761
  def update!(**args)
755
762
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
756
763
  @operations = args[:operations] if args.key?(:operations)
764
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
757
765
  end
758
766
  end
759
767
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ApigatewayV1beta
18
18
  # Version of the google-apis-apigateway_v1beta gem
19
- GEM_VERSION = "0.36.0"
19
+ GEM_VERSION = "0.37.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 = "20250910"
25
+ REVISION = "20251001"
26
26
  end
27
27
  end
28
28
  end
@@ -368,6 +368,7 @@ module Google
368
368
  property :next_page_token, as: 'nextPageToken'
369
369
  collection :operations, as: 'operations', class: Google::Apis::ApigatewayV1beta::ApigatewayOperation, decorator: Google::Apis::ApigatewayV1beta::ApigatewayOperation::Representation
370
370
 
371
+ collection :unreachable, as: 'unreachable'
371
372
  end
372
373
  end
373
374
 
@@ -1154,6 +1154,13 @@ module Google
1154
1154
  # The standard list page size.
1155
1155
  # @param [String] page_token
1156
1156
  # The standard list page token.
1157
+ # @param [Boolean] return_partial_success
1158
+ # When set to `true`, operations that are reachable are returned as normal, and
1159
+ # those that are unreachable are returned in the [ListOperationsResponse.
1160
+ # unreachable] field. This can only be `true` when reading across collections e.
1161
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
1162
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
1163
+ # explicitly documented otherwise in service or product specific documentation.
1157
1164
  # @param [String] fields
1158
1165
  # Selector specifying which fields to include in a partial response.
1159
1166
  # @param [String] quota_user
@@ -1171,7 +1178,7 @@ module Google
1171
1178
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1172
1179
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1173
1180
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1174
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1181
+ 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)
1175
1182
  command = make_simple_command(:get, 'v1beta/{+name}/operations', options)
1176
1183
  command.response_representation = Google::Apis::ApigatewayV1beta::ApigatewayListOperationsResponse::Representation
1177
1184
  command.response_class = Google::Apis::ApigatewayV1beta::ApigatewayListOperationsResponse
@@ -1179,6 +1186,7 @@ module Google
1179
1186
  command.query['filter'] = filter unless filter.nil?
1180
1187
  command.query['pageSize'] = page_size unless page_size.nil?
1181
1188
  command.query['pageToken'] = page_token unless page_token.nil?
1189
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
1182
1190
  command.query['fields'] = fields unless fields.nil?
1183
1191
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1184
1192
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-apigateway_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.36.0
4
+ version: 0.37.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-apigateway_v1beta/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-apigateway_v1beta/v0.36.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-apigateway_v1beta/v0.37.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigateway_v1beta
62
62
  rdoc_options: []
63
63
  require_paths: