google-apis-servicenetworking_v1 0.83.0 → 0.84.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: c09f3db1e7bdacbfa3f8b1abb64afb8a1e09381c2cb79b959ccd99154ebd787e
4
- data.tar.gz: b8124be46b5b2c7c520e733a0a9b4db1b2d8ee19f68f1644834e89f7704a6dec
3
+ metadata.gz: 987f0e3ac7d4f7dfeca4f04e3720b5f4632f0b834e52273cf95a80b7ab894060
4
+ data.tar.gz: 84ffc2dc536a3b395f3109fcb5125c674a09c9922d2b1c4d979b421948431ac8
5
5
  SHA512:
6
- metadata.gz: 4d997be90eb6c4c3dfa68576072075d8c31a0e1b3450b962246adba3fb3b3f0cc9cac177e0e72fa6a045630b1ef0da88b9e134335b40dee4f64394eb204545b4
7
- data.tar.gz: 819313fe4236a76781508e46d37dd733fea5365ec8881ee8d6d3afe2b1244ac833ee358e1a8d681444d7f1cc8f2a31b06793d8e6a5c4392717bd4d439612d4c3
6
+ metadata.gz: 41e739638b34591a37016fa128974fd40a8cd98854c249bc0f50cd8dd194d294d3a8f23c9d7e0a75ebba502d850c2edd046496248867720b58c0b83779f5c4ae
7
+ data.tar.gz: e29bb099fc36365544bc4f90a09c35f6cb4f4f6c80b44f254ae3be25fc9559c572f59e6c29714f4892f657adc448f380b0192cc387ca4ea834b4e29396a2e97b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-servicenetworking_v1
2
2
 
3
+ ### v0.84.0 (2025-10-05)
4
+
5
+ * Regenerated from discovery document revision 20250929
6
+
3
7
  ### v0.83.0 (2025-07-27)
4
8
 
5
9
  * Regenerated from discovery document revision 20250722
@@ -2944,6 +2944,13 @@ module Google
2944
2944
  # @return [Array<Google::Apis::ServicenetworkingV1::Operation>]
2945
2945
  attr_accessor :operations
2946
2946
 
2947
+ # Unordered list. Unreachable resources. Populated when the request sets `
2948
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
2949
+ # when attempting to list all resources across all supported locations.
2950
+ # Corresponds to the JSON property `unreachable`
2951
+ # @return [Array<String>]
2952
+ attr_accessor :unreachable
2953
+
2947
2954
  def initialize(**args)
2948
2955
  update!(**args)
2949
2956
  end
@@ -2952,6 +2959,7 @@ module Google
2952
2959
  def update!(**args)
2953
2960
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2954
2961
  @operations = args[:operations] if args.key?(:operations)
2962
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
2955
2963
  end
2956
2964
  end
2957
2965
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServicenetworkingV1
18
18
  # Version of the google-apis-servicenetworking_v1 gem
19
- GEM_VERSION = "0.83.0"
19
+ GEM_VERSION = "0.84.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 = "20250722"
25
+ REVISION = "20250929"
26
26
  end
27
27
  end
28
28
  end
@@ -1509,6 +1509,7 @@ module Google
1509
1509
  property :next_page_token, as: 'nextPageToken'
1510
1510
  collection :operations, as: 'operations', class: Google::Apis::ServicenetworkingV1::Operation, decorator: Google::Apis::ServicenetworkingV1::Operation::Representation
1511
1511
 
1512
+ collection :unreachable, as: 'unreachable'
1512
1513
  end
1513
1514
  end
1514
1515
 
@@ -166,6 +166,13 @@ module Google
166
166
  # The standard list page size.
167
167
  # @param [String] page_token
168
168
  # The standard list page token.
169
+ # @param [Boolean] return_partial_success
170
+ # When set to `true`, operations that are reachable are returned as normal, and
171
+ # those that are unreachable are returned in the [ListOperationsResponse.
172
+ # unreachable] field. This can only be `true` when reading across collections e.
173
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
174
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
175
+ # explicitly documented otherwise in service or product specific documentation.
169
176
  # @param [String] fields
170
177
  # Selector specifying which fields to include in a partial response.
171
178
  # @param [String] quota_user
@@ -183,7 +190,7 @@ module Google
183
190
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
184
191
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
185
192
  # @raise [Google::Apis::AuthorizationError] Authorization is required
186
- def list_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
193
+ def list_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
187
194
  command = make_simple_command(:get, 'v1/{+name}', options)
188
195
  command.response_representation = Google::Apis::ServicenetworkingV1::ListOperationsResponse::Representation
189
196
  command.response_class = Google::Apis::ServicenetworkingV1::ListOperationsResponse
@@ -191,6 +198,7 @@ module Google
191
198
  command.query['filter'] = filter unless filter.nil?
192
199
  command.query['pageSize'] = page_size unless page_size.nil?
193
200
  command.query['pageToken'] = page_token unless page_token.nil?
201
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
194
202
  command.query['fields'] = fields unless fields.nil?
195
203
  command.query['quotaUser'] = quota_user unless quota_user.nil?
196
204
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-servicenetworking_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.83.0
4
+ version: 0.84.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-servicenetworking_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1/v0.83.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1/v0.84.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicenetworking_v1
62
62
  rdoc_options: []
63
63
  require_paths: