google-apis-netapp_v1 0.17.0 → 0.18.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: 84ea8ccfefbdf2eade5e7081a26ee076cc9aded6fe78a9ca85dc8027c324093c
4
- data.tar.gz: e1ead05b08ed7076af0e9ad608e2bf17559d78aba842b9b509ac239a900852a7
3
+ metadata.gz: 49e390d4897922bc6f6823a7044498777b1c299dd5c9aed90b43002e9fffbe0d
4
+ data.tar.gz: 99e3cfe3aecdb91fab80de84f5892d1ce7c099a6fa5cf441dde329d52c686b12
5
5
  SHA512:
6
- metadata.gz: be148d0be4acdfff602630e20cf8cba53cae669441896bfd544c1a55ea542ac4de49622d8bcbcd5c63a2c3f3e89a34f94d6c4a22dd42138cae8a7e76f42d804e
7
- data.tar.gz: 77bb9d4dec4bf46af2760b4b8021095559882287c83fda3ee1d81be7c00d0eb55eacdad333078a0cb6b5269bcc27327c519c057818ca5d5cdb1eb137624ea3c1
6
+ metadata.gz: 70057a166d97b5e1a723ee71da94118e60bdd1288d3585fc55937ca700ef78f8f3e87e828c0e96bc6f8137f424042c57058c71755b66acb2e337a9177255ba76
7
+ data.tar.gz: 402c84eb2a0824ef2f81dab584f6018cfc222910272502cf21a4974683900df8d930cff4c3fc1561f8ea6f6834af8ef2cbcf456de09b47d606b02957952a1ccb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-netapp_v1
2
2
 
3
+ ### v0.18.0 (2025-10-12)
4
+
5
+ * Regenerated from discovery document revision 20251009
6
+
3
7
  ### v0.17.0 (2025-09-21)
4
8
 
5
9
  * Regenerated from discovery document revision 20250917
@@ -1276,6 +1276,13 @@ module Google
1276
1276
  # @return [Array<Google::Apis::NetappV1::Operation>]
1277
1277
  attr_accessor :operations
1278
1278
 
1279
+ # Unordered list. Unreachable resources. Populated when the request sets `
1280
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
1281
+ # when attempting to list all resources across all supported locations.
1282
+ # Corresponds to the JSON property `unreachable`
1283
+ # @return [Array<String>]
1284
+ attr_accessor :unreachable
1285
+
1279
1286
  def initialize(**args)
1280
1287
  update!(**args)
1281
1288
  end
@@ -1284,6 +1291,7 @@ module Google
1284
1291
  def update!(**args)
1285
1292
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1286
1293
  @operations = args[:operations] if args.key?(:operations)
1294
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
1287
1295
  end
1288
1296
  end
1289
1297
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module NetappV1
18
18
  # Version of the google-apis-netapp_v1 gem
19
- GEM_VERSION = "0.17.0"
19
+ GEM_VERSION = "0.18.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 = "20250917"
25
+ REVISION = "20251009"
26
26
  end
27
27
  end
28
28
  end
@@ -686,6 +686,7 @@ module Google
686
686
  property :next_page_token, as: 'nextPageToken'
687
687
  collection :operations, as: 'operations', class: Google::Apis::NetappV1::Operation, decorator: Google::Apis::NetappV1::Operation::Representation
688
688
 
689
+ collection :unreachable, as: 'unreachable'
689
690
  end
690
691
  end
691
692
 
@@ -1245,6 +1245,13 @@ module Google
1245
1245
  # The standard list page size.
1246
1246
  # @param [String] page_token
1247
1247
  # The standard list page token.
1248
+ # @param [Boolean] return_partial_success
1249
+ # When set to `true`, operations that are reachable are returned as normal, and
1250
+ # those that are unreachable are returned in the [ListOperationsResponse.
1251
+ # unreachable] field. This can only be `true` when reading across collections e.
1252
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
1253
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
1254
+ # explicitly documented otherwise in service or product specific documentation.
1248
1255
  # @param [String] fields
1249
1256
  # Selector specifying which fields to include in a partial response.
1250
1257
  # @param [String] quota_user
@@ -1262,7 +1269,7 @@ module Google
1262
1269
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1263
1270
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1264
1271
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1265
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1272
+ 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)
1266
1273
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
1267
1274
  command.response_representation = Google::Apis::NetappV1::ListOperationsResponse::Representation
1268
1275
  command.response_class = Google::Apis::NetappV1::ListOperationsResponse
@@ -1270,6 +1277,7 @@ module Google
1270
1277
  command.query['filter'] = filter unless filter.nil?
1271
1278
  command.query['pageSize'] = page_size unless page_size.nil?
1272
1279
  command.query['pageToken'] = page_token unless page_token.nil?
1280
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
1273
1281
  command.query['fields'] = fields unless fields.nil?
1274
1282
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1275
1283
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-netapp_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.0
4
+ version: 0.18.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-netapp_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-netapp_v1/v0.17.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-netapp_v1/v0.18.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-netapp_v1
62
62
  rdoc_options: []
63
63
  require_paths: