google-apis-vmwareengine_v1 0.13.0 → 0.14.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: d9c1000d99f71d2216ce0c7233a9ce270a94e017161f238d022ec0f32663be9a
4
- data.tar.gz: c04fa5edaa202ba1f524d45ded6e0cd24369b37cea338a581bf04b68a6571cd6
3
+ metadata.gz: 52a2287296d86fc47bd7c674e9bd338c504c119251c2fc4f069e7b6d1e9ba96f
4
+ data.tar.gz: e2caf2d795ec0aa90d0be969974179041bc0550b9ea297af83ec66000952da3b
5
5
  SHA512:
6
- metadata.gz: e7485dbcd7ab151dc924bbe955cfdc197f83aba8b11bc464d114e0986a725cbb589b2fc0a78fc2f8652e3c93ace0a1623de7226146dfa2c494f2f68aeff79a5b
7
- data.tar.gz: 0f9093a9414624f873977743562735188431620bc388e9a1977a17240c8fd498dffae6541304339c639536aad220d69e6c594ed940efde78697a6b5c6fde225e
6
+ metadata.gz: 3d1ddfa794cc468b08499ac9378df5c99e4299fa1ecab8e830c310574baf6059b01813ce96ec5dba4619b4e7e2522b24544815fcd0acb25fe0890f030ac244d9
7
+ data.tar.gz: 1418af7a2c16ef5ee26451b37f3a047c779e2099bbdbbc462e882bd5ca986d0ddfda290e322e1088cbe5649454bdd610ee609b1619cb89a4d905443974cd32f5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-vmwareengine_v1
2
2
 
3
+ ### v0.14.0 (2025-11-02)
4
+
5
+ * Regenerated from discovery document revision 20251020
6
+
3
7
  ### v0.13.0 (2025-10-05)
4
8
 
5
9
  * Regenerated from discovery document revision 20250912
@@ -1527,6 +1527,13 @@ module Google
1527
1527
  # @return [Array<Google::Apis::VmwareengineV1::Operation>]
1528
1528
  attr_accessor :operations
1529
1529
 
1530
+ # Unordered list. Unreachable resources. Populated when the request sets `
1531
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
1532
+ # when attempting to list all resources across all supported locations.
1533
+ # Corresponds to the JSON property `unreachable`
1534
+ # @return [Array<String>]
1535
+ attr_accessor :unreachable
1536
+
1530
1537
  def initialize(**args)
1531
1538
  update!(**args)
1532
1539
  end
@@ -1535,6 +1542,7 @@ module Google
1535
1542
  def update!(**args)
1536
1543
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1537
1544
  @operations = args[:operations] if args.key?(:operations)
1545
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
1538
1546
  end
1539
1547
  end
1540
1548
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module VmwareengineV1
18
18
  # Version of the google-apis-vmwareengine_v1 gem
19
- GEM_VERSION = "0.13.0"
19
+ GEM_VERSION = "0.14.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 = "20250912"
25
+ REVISION = "20251020"
26
26
  end
27
27
  end
28
28
  end
@@ -902,6 +902,7 @@ module Google
902
902
  property :next_page_token, as: 'nextPageToken'
903
903
  collection :operations, as: 'operations', class: Google::Apis::VmwareengineV1::Operation, decorator: Google::Apis::VmwareengineV1::Operation::Representation
904
904
 
905
+ collection :unreachable, as: 'unreachable'
905
906
  end
906
907
  end
907
908
 
@@ -1401,6 +1401,13 @@ module Google
1401
1401
  # The standard list page size.
1402
1402
  # @param [String] page_token
1403
1403
  # The standard list page token.
1404
+ # @param [Boolean] return_partial_success
1405
+ # When set to `true`, operations that are reachable are returned as normal, and
1406
+ # those that are unreachable are returned in the [ListOperationsResponse.
1407
+ # unreachable] field. This can only be `true` when reading across collections e.
1408
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
1409
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
1410
+ # explicitly documented otherwise in service or product specific documentation.
1404
1411
  # @param [String] fields
1405
1412
  # Selector specifying which fields to include in a partial response.
1406
1413
  # @param [String] quota_user
@@ -1418,7 +1425,7 @@ module Google
1418
1425
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1419
1426
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1420
1427
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1421
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1428
+ 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)
1422
1429
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
1423
1430
  command.response_representation = Google::Apis::VmwareengineV1::ListOperationsResponse::Representation
1424
1431
  command.response_class = Google::Apis::VmwareengineV1::ListOperationsResponse
@@ -1426,6 +1433,7 @@ module Google
1426
1433
  command.query['filter'] = filter unless filter.nil?
1427
1434
  command.query['pageSize'] = page_size unless page_size.nil?
1428
1435
  command.query['pageToken'] = page_token unless page_token.nil?
1436
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
1429
1437
  command.query['fields'] = fields unless fields.nil?
1430
1438
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1431
1439
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-vmwareengine_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.0
4
+ version: 0.14.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-vmwareengine_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-vmwareengine_v1/v0.13.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-vmwareengine_v1/v0.14.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vmwareengine_v1
62
62
  rdoc_options: []
63
63
  require_paths: