google-apis-vmmigration_v1alpha1 0.63.0 → 0.64.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/vmmigration_v1alpha1/classes.rb +8 -0
- data/lib/google/apis/vmmigration_v1alpha1/gem_version.rb +2 -2
- data/lib/google/apis/vmmigration_v1alpha1/representations.rb +1 -0
- data/lib/google/apis/vmmigration_v1alpha1/service.rb +9 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a7a86905c2187936e98c800a5fc8ec47bdf47b9b5e42f67de368a9dfb22d9ee5
|
4
|
+
data.tar.gz: 42cabcfadd7a0979fb5b692179fce00a3354f06df60af1cdde274cf2fff5edf7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f7992b6c3bbe94f572353b6c2fa5f5417bf4cd3c013af0540d798421741f2eac79088d644aaf973d4e468b5a4a240a0bfd76f997e7d2c126ca39c174f33a423e
|
7
|
+
data.tar.gz: 751dc588dad6a311f337d92a3999538a1225c1ae9bbd5d342399c1ecc9317f02aa571ec8c60036a80d859a89bb212529b1cbfc83fff543077f2b77d250cf5f67
|
data/CHANGELOG.md
CHANGED
@@ -3264,6 +3264,13 @@ module Google
|
|
3264
3264
|
# @return [Array<Google::Apis::VmmigrationV1alpha1::Operation>]
|
3265
3265
|
attr_accessor :operations
|
3266
3266
|
|
3267
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
3268
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
3269
|
+
# when attempting to list all resources across all supported locations.
|
3270
|
+
# Corresponds to the JSON property `unreachable`
|
3271
|
+
# @return [Array<String>]
|
3272
|
+
attr_accessor :unreachable
|
3273
|
+
|
3267
3274
|
def initialize(**args)
|
3268
3275
|
update!(**args)
|
3269
3276
|
end
|
@@ -3272,6 +3279,7 @@ module Google
|
|
3272
3279
|
def update!(**args)
|
3273
3280
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
3274
3281
|
@operations = args[:operations] if args.key?(:operations)
|
3282
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
3275
3283
|
end
|
3276
3284
|
end
|
3277
3285
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module VmmigrationV1alpha1
|
18
18
|
# Version of the google-apis-vmmigration_v1alpha1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.64.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 = "
|
25
|
+
REVISION = "20251002"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1737,6 +1737,7 @@ module Google
|
|
1737
1737
|
property :next_page_token, as: 'nextPageToken'
|
1738
1738
|
collection :operations, as: 'operations', class: Google::Apis::VmmigrationV1alpha1::Operation, decorator: Google::Apis::VmmigrationV1alpha1::Operation::Representation
|
1739
1739
|
|
1740
|
+
collection :unreachable, as: 'unreachable'
|
1740
1741
|
end
|
1741
1742
|
end
|
1742
1743
|
|
@@ -807,6 +807,13 @@ module Google
|
|
807
807
|
# The standard list page size.
|
808
808
|
# @param [String] page_token
|
809
809
|
# The standard list page token.
|
810
|
+
# @param [Boolean] return_partial_success
|
811
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
812
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
813
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
814
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
815
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
816
|
+
# explicitly documented otherwise in service or product specific documentation.
|
810
817
|
# @param [String] fields
|
811
818
|
# Selector specifying which fields to include in a partial response.
|
812
819
|
# @param [String] quota_user
|
@@ -824,7 +831,7 @@ module Google
|
|
824
831
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
825
832
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
826
833
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
827
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
834
|
+
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)
|
828
835
|
command = make_simple_command(:get, 'v1alpha1/{+name}/operations', options)
|
829
836
|
command.response_representation = Google::Apis::VmmigrationV1alpha1::ListOperationsResponse::Representation
|
830
837
|
command.response_class = Google::Apis::VmmigrationV1alpha1::ListOperationsResponse
|
@@ -832,6 +839,7 @@ module Google
|
|
832
839
|
command.query['filter'] = filter unless filter.nil?
|
833
840
|
command.query['pageSize'] = page_size unless page_size.nil?
|
834
841
|
command.query['pageToken'] = page_token unless page_token.nil?
|
842
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
835
843
|
command.query['fields'] = fields unless fields.nil?
|
836
844
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
837
845
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-vmmigration_v1alpha1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.64.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-vmmigration_v1alpha1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1alpha1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1alpha1/v0.64.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vmmigration_v1alpha1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|