google-apis-vmmigration_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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f23f04ce99a775bc15679795af7d99f058f3ad2c643c1d493263a04d3a25e691
|
4
|
+
data.tar.gz: 2f8d5c3069b773083e79475cff1241a5d340e348b55b0efcfef60a70015a98d0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b97b32af791537505df3e8bb5ef76d819f46389530b3531f556b7d3d9d98b518facdc0cf6554f0a62e038fd23236342653bbf2864a80a625fa60881292b0d487
|
7
|
+
data.tar.gz: c47236242f17a7aed1ffd98845a07849bcf898803e979471ebf58c5e585385a65c21914cf900724e935b80b6b6f88a097f5cc8ffa6511a36e5f6ff6c1f92854d
|
data/CHANGELOG.md
CHANGED
@@ -1064,6 +1064,38 @@ module Google
|
|
1064
1064
|
end
|
1065
1065
|
end
|
1066
1066
|
|
1067
|
+
# Response message for 'ListReplicationCycles' request.
|
1068
|
+
class ListReplicationCyclesResponse
|
1069
|
+
include Google::Apis::Core::Hashable
|
1070
|
+
|
1071
|
+
# Output only. A token, which can be sent as `page_token` to retrieve the next
|
1072
|
+
# page. If this field is omitted, there are no subsequent pages.
|
1073
|
+
# Corresponds to the JSON property `nextPageToken`
|
1074
|
+
# @return [String]
|
1075
|
+
attr_accessor :next_page_token
|
1076
|
+
|
1077
|
+
# Output only. The list of replication cycles response.
|
1078
|
+
# Corresponds to the JSON property `replicationCycles`
|
1079
|
+
# @return [Array<Google::Apis::VmmigrationV1::ReplicationCycle>]
|
1080
|
+
attr_accessor :replication_cycles
|
1081
|
+
|
1082
|
+
# Output only. Locations that could not be reached.
|
1083
|
+
# Corresponds to the JSON property `unreachable`
|
1084
|
+
# @return [Array<String>]
|
1085
|
+
attr_accessor :unreachable
|
1086
|
+
|
1087
|
+
def initialize(**args)
|
1088
|
+
update!(**args)
|
1089
|
+
end
|
1090
|
+
|
1091
|
+
# Update properties of this object
|
1092
|
+
def update!(**args)
|
1093
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1094
|
+
@replication_cycles = args[:replication_cycles] if args.key?(:replication_cycles)
|
1095
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
1096
|
+
end
|
1097
|
+
end
|
1098
|
+
|
1067
1099
|
# Response message for 'ListSources' request.
|
1068
1100
|
class ListSourcesResponse
|
1069
1101
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module VmmigrationV1
|
18
18
|
# Version of the google-apis-vmmigration_v1 gem
|
19
|
-
GEM_VERSION = "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.9.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220908"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -172,6 +172,12 @@ module Google
|
|
172
172
|
include Google::Apis::Core::JsonObjectSupport
|
173
173
|
end
|
174
174
|
|
175
|
+
class ListReplicationCyclesResponse
|
176
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
|
+
|
178
|
+
include Google::Apis::Core::JsonObjectSupport
|
179
|
+
end
|
180
|
+
|
175
181
|
class ListSourcesResponse
|
176
182
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
183
|
|
@@ -628,6 +634,16 @@ module Google
|
|
628
634
|
end
|
629
635
|
end
|
630
636
|
|
637
|
+
class ListReplicationCyclesResponse
|
638
|
+
# @private
|
639
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
640
|
+
property :next_page_token, as: 'nextPageToken'
|
641
|
+
collection :replication_cycles, as: 'replicationCycles', class: Google::Apis::VmmigrationV1::ReplicationCycle, decorator: Google::Apis::VmmigrationV1::ReplicationCycle::Representation
|
642
|
+
|
643
|
+
collection :unreachable, as: 'unreachable'
|
644
|
+
end
|
645
|
+
end
|
646
|
+
|
631
647
|
class ListSourcesResponse
|
632
648
|
# @private
|
633
649
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1696,6 +1696,83 @@ module Google
|
|
1696
1696
|
execute_or_queue_command(command, &block)
|
1697
1697
|
end
|
1698
1698
|
|
1699
|
+
# Gets details of a single ReplicationCycle.
|
1700
|
+
# @param [String] name
|
1701
|
+
# Required. The name of the ReplicationCycle.
|
1702
|
+
# @param [String] fields
|
1703
|
+
# Selector specifying which fields to include in a partial response.
|
1704
|
+
# @param [String] quota_user
|
1705
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1706
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1707
|
+
# @param [Google::Apis::RequestOptions] options
|
1708
|
+
# Request-specific options
|
1709
|
+
#
|
1710
|
+
# @yield [result, err] Result & error if block supplied
|
1711
|
+
# @yieldparam result [Google::Apis::VmmigrationV1::ReplicationCycle] parsed result object
|
1712
|
+
# @yieldparam err [StandardError] error object if request failed
|
1713
|
+
#
|
1714
|
+
# @return [Google::Apis::VmmigrationV1::ReplicationCycle]
|
1715
|
+
#
|
1716
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1717
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1718
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1719
|
+
def get_project_location_source_migrating_vm_replication_cycle(name, fields: nil, quota_user: nil, options: nil, &block)
|
1720
|
+
command = make_simple_command(:get, 'v1/{+name}', options)
|
1721
|
+
command.response_representation = Google::Apis::VmmigrationV1::ReplicationCycle::Representation
|
1722
|
+
command.response_class = Google::Apis::VmmigrationV1::ReplicationCycle
|
1723
|
+
command.params['name'] = name unless name.nil?
|
1724
|
+
command.query['fields'] = fields unless fields.nil?
|
1725
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1726
|
+
execute_or_queue_command(command, &block)
|
1727
|
+
end
|
1728
|
+
|
1729
|
+
# Lists ReplicationCycles in a given MigratingVM.
|
1730
|
+
# @param [String] parent
|
1731
|
+
# Required. The parent, which owns this collection of ReplicationCycles.
|
1732
|
+
# @param [String] filter
|
1733
|
+
# Optional. The filter request.
|
1734
|
+
# @param [String] order_by
|
1735
|
+
# Optional. the order by fields for the result.
|
1736
|
+
# @param [Fixnum] page_size
|
1737
|
+
# Optional. The maximum number of replication cycles to return. The service may
|
1738
|
+
# return fewer than this value. If unspecified, at most 100 migrating VMs will
|
1739
|
+
# be returned. The maximum value is 100; values above 100 will be coerced to 100.
|
1740
|
+
# @param [String] page_token
|
1741
|
+
# Required. A page token, received from a previous `ListReplicationCycles` call.
|
1742
|
+
# Provide this to retrieve the subsequent page. When paginating, all other
|
1743
|
+
# parameters provided to `ListReplicationCycles` must match the call that
|
1744
|
+
# provided the page token.
|
1745
|
+
# @param [String] fields
|
1746
|
+
# Selector specifying which fields to include in a partial response.
|
1747
|
+
# @param [String] quota_user
|
1748
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1749
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1750
|
+
# @param [Google::Apis::RequestOptions] options
|
1751
|
+
# Request-specific options
|
1752
|
+
#
|
1753
|
+
# @yield [result, err] Result & error if block supplied
|
1754
|
+
# @yieldparam result [Google::Apis::VmmigrationV1::ListReplicationCyclesResponse] parsed result object
|
1755
|
+
# @yieldparam err [StandardError] error object if request failed
|
1756
|
+
#
|
1757
|
+
# @return [Google::Apis::VmmigrationV1::ListReplicationCyclesResponse]
|
1758
|
+
#
|
1759
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1760
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1761
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1762
|
+
def list_project_location_source_migrating_vm_replication_cycles(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1763
|
+
command = make_simple_command(:get, 'v1/{+parent}/replicationCycles', options)
|
1764
|
+
command.response_representation = Google::Apis::VmmigrationV1::ListReplicationCyclesResponse::Representation
|
1765
|
+
command.response_class = Google::Apis::VmmigrationV1::ListReplicationCyclesResponse
|
1766
|
+
command.params['parent'] = parent unless parent.nil?
|
1767
|
+
command.query['filter'] = filter unless filter.nil?
|
1768
|
+
command.query['orderBy'] = order_by unless order_by.nil?
|
1769
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
1770
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
1771
|
+
command.query['fields'] = fields unless fields.nil?
|
1772
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1773
|
+
execute_or_queue_command(command, &block)
|
1774
|
+
end
|
1775
|
+
|
1699
1776
|
# Creates a new UtilizationReport.
|
1700
1777
|
# @param [String] parent
|
1701
1778
|
# Required. The Utilization Report's parent.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-vmmigration_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.18.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-09-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vmmigration_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1/v0.18.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vmmigration_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|