google-apis-migrationcenter_v1alpha1 0.48.0 → 0.49.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/migrationcenter_v1alpha1/classes.rb +8 -0
- data/lib/google/apis/migrationcenter_v1alpha1/gem_version.rb +2 -2
- data/lib/google/apis/migrationcenter_v1alpha1/representations.rb +1 -0
- data/lib/google/apis/migrationcenter_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: 432d6346cbf0af62dbbd4ec7dd8c3b6c11bd8a9a869f36087798cc4e487f48d6
|
4
|
+
data.tar.gz: 83d96713d41fe37f2018bd6672b5d6c2769e4ccdddbdeef3b045740b5d9b2518
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '08273fa466e6bc4f428bf1a2ce319210b918872cd4b46ceb75ea2394d35d457c8e3b31d58cde2e2b6701f39949ed2ee72b58ddf97e10a12a8d36cfe92091974c'
|
7
|
+
data.tar.gz: d0639ef1ba53813fae2a96c00a8c10c144d31773006613587dedf93d11f8e52da8fc9590830b1c829e0a958776603e4ad198ec95c66791c728580dff65c37ec3
|
data/CHANGELOG.md
CHANGED
@@ -4625,6 +4625,13 @@ module Google
|
|
4625
4625
|
# @return [Array<Google::Apis::MigrationcenterV1alpha1::Operation>]
|
4626
4626
|
attr_accessor :operations
|
4627
4627
|
|
4628
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
4629
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
4630
|
+
# when attempting to list all resources across all supported locations.
|
4631
|
+
# Corresponds to the JSON property `unreachable`
|
4632
|
+
# @return [Array<String>]
|
4633
|
+
attr_accessor :unreachable
|
4634
|
+
|
4628
4635
|
def initialize(**args)
|
4629
4636
|
update!(**args)
|
4630
4637
|
end
|
@@ -4633,6 +4640,7 @@ module Google
|
|
4633
4640
|
def update!(**args)
|
4634
4641
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
4635
4642
|
@operations = args[:operations] if args.key?(:operations)
|
4643
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
4636
4644
|
end
|
4637
4645
|
end
|
4638
4646
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module MigrationcenterV1alpha1
|
18
18
|
# Version of the google-apis-migrationcenter_v1alpha1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.49.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 = "20250928"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2935,6 +2935,7 @@ module Google
|
|
2935
2935
|
property :next_page_token, as: 'nextPageToken'
|
2936
2936
|
collection :operations, as: 'operations', class: Google::Apis::MigrationcenterV1alpha1::Operation, decorator: Google::Apis::MigrationcenterV1alpha1::Operation::Representation
|
2937
2937
|
|
2938
|
+
collection :unreachable, as: 'unreachable'
|
2938
2939
|
end
|
2939
2940
|
end
|
2940
2941
|
|
@@ -1815,6 +1815,13 @@ module Google
|
|
1815
1815
|
# The standard list page size.
|
1816
1816
|
# @param [String] page_token
|
1817
1817
|
# The standard list page token.
|
1818
|
+
# @param [Boolean] return_partial_success
|
1819
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
1820
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
1821
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
1822
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
1823
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
1824
|
+
# explicitly documented otherwise in service or product specific documentation.
|
1818
1825
|
# @param [String] fields
|
1819
1826
|
# Selector specifying which fields to include in a partial response.
|
1820
1827
|
# @param [String] quota_user
|
@@ -1832,7 +1839,7 @@ module Google
|
|
1832
1839
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1833
1840
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1834
1841
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1835
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1842
|
+
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)
|
1836
1843
|
command = make_simple_command(:get, 'v1alpha1/{+name}/operations', options)
|
1837
1844
|
command.response_representation = Google::Apis::MigrationcenterV1alpha1::ListOperationsResponse::Representation
|
1838
1845
|
command.response_class = Google::Apis::MigrationcenterV1alpha1::ListOperationsResponse
|
@@ -1840,6 +1847,7 @@ module Google
|
|
1840
1847
|
command.query['filter'] = filter unless filter.nil?
|
1841
1848
|
command.query['pageSize'] = page_size unless page_size.nil?
|
1842
1849
|
command.query['pageToken'] = page_token unless page_token.nil?
|
1850
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
1843
1851
|
command.query['fields'] = fields unless fields.nil?
|
1844
1852
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1845
1853
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-migrationcenter_v1alpha1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.49.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-migrationcenter_v1alpha1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1alpha1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1alpha1/v0.49.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-migrationcenter_v1alpha1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|