google-apis-apigateway_v1 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: ef11c188520cba3d2eb506974d1a5ca2453ef4e553bd7591924ec6c02051239a
4
- data.tar.gz: 15b8bb9105656bd024f5fa79bbd294ceb71922edc8f6d5a1eeb8594bdffd2f0c
3
+ metadata.gz: ace6481318b50231f6edc5074392212f615603eb44ccf892772a0b7a5d6531f8
4
+ data.tar.gz: 49d21f1e9d8c279de6808b663fded15c843dbd3106c01026fbd391af215de4e2
5
5
  SHA512:
6
- metadata.gz: 8a8cae759ac1e9d1e7846fc62891c2d58ea6fde93c368463cc97ed1768c8e6999e22817074f2c34760cc4b15e111cb55327bbd8d38ca49d91bec39ba5c697f47
7
- data.tar.gz: 705e0c1cde6d9d2bc8df6026e9bfa150a5b8615f126703a63e80f3bd29e24a5ace947df5533cf6168f329779590db800e87849b2706d6ea7067e163a68b6fbe9
6
+ metadata.gz: b1bee0da988ab66dde223f6364ca41a0c0260deedf5a41b257cac6e8a27e2a21b2b8fe32d618b54d24c74b5255332104bcfbeca2429f98473d80cc9ab2e1e597
7
+ data.tar.gz: 3b969a97eafc13f18f2bfc15d6d67ae4dbfab35e10c2cfda931aa460a52bfce502a6e687937df8028983d5b6c12464d48e4c9eefbbcc3209473291904db4db5c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-apigateway_v1
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
@@ -692,6 +692,13 @@ module Google
692
692
  # @return [Array<Google::Apis::ApigatewayV1::ApigatewayOperation>]
693
693
  attr_accessor :operations
694
694
 
695
+ # Unordered list. Unreachable resources. Populated when the request sets `
696
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
697
+ # when attempting to list all resources across all supported locations.
698
+ # Corresponds to the JSON property `unreachable`
699
+ # @return [Array<String>]
700
+ attr_accessor :unreachable
701
+
695
702
  def initialize(**args)
696
703
  update!(**args)
697
704
  end
@@ -700,6 +707,7 @@ module Google
700
707
  def update!(**args)
701
708
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
702
709
  @operations = args[:operations] if args.key?(:operations)
710
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
703
711
  end
704
712
  end
705
713
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ApigatewayV1
18
18
  # Version of the google-apis-apigateway_v1 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
@@ -339,6 +339,7 @@ module Google
339
339
  property :next_page_token, as: 'nextPageToken'
340
340
  collection :operations, as: 'operations', class: Google::Apis::ApigatewayV1::ApigatewayOperation, decorator: Google::Apis::ApigatewayV1::ApigatewayOperation::Representation
341
341
 
342
+ collection :unreachable, as: 'unreachable'
342
343
  end
343
344
  end
344
345
 
@@ -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, 'v1/{+name}/operations', options)
1176
1183
  command.response_representation = Google::Apis::ApigatewayV1::ApigatewayListOperationsResponse::Representation
1177
1184
  command.response_class = Google::Apis::ApigatewayV1::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_v1
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_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-apigateway_v1/v0.36.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-apigateway_v1/v0.37.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigateway_v1
62
62
  rdoc_options: []
63
63
  require_paths: