google-apis-vmmigration_v1alpha1 0.26.0 → 0.27.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: 96bedd693e862292a7d45fd87e600344188f3932a55b91c20d4c0f55f7d075e1
|
4
|
+
data.tar.gz: 5ffb05b32d5aad03931a3053dbb93110f0d29a28d8d1d606623a74254ac4e5be
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5a4a5ee5b855af08f978ce28c53394a3af57156b8d827d83a7dac7602c1f6eda949a63739745bf394a507145b47e918e2c0b15ea56b9d5910ebed39019b868c6
|
7
|
+
data.tar.gz: 18f22c3faf7779f4672571d858a55d2ee856a4d57480ef6901caf3a3605985d8fc5edebe7a4cbcb250b7b2814c5e31e647526ee087cf0cb16258221bada8b935
|
data/CHANGELOG.md
CHANGED
@@ -1858,6 +1858,12 @@ module Google
|
|
1858
1858
|
# @return [Hash<String,String>]
|
1859
1859
|
attr_accessor :labels
|
1860
1860
|
|
1861
|
+
# ReplicationCycle contains information about the current replication cycle
|
1862
|
+
# status.
|
1863
|
+
# Corresponds to the JSON property `lastReplicationCycle`
|
1864
|
+
# @return [Google::Apis::VmmigrationV1alpha1::ReplicationCycle]
|
1865
|
+
attr_accessor :last_replication_cycle
|
1866
|
+
|
1861
1867
|
# ReplicationSync contain information about the last replica sync to the cloud.
|
1862
1868
|
# Corresponds to the JSON property `lastSync`
|
1863
1869
|
# @return [Google::Apis::VmmigrationV1alpha1::ReplicationSync]
|
@@ -1933,6 +1939,7 @@ module Google
|
|
1933
1939
|
@error = args[:error] if args.key?(:error)
|
1934
1940
|
@group = args[:group] if args.key?(:group)
|
1935
1941
|
@labels = args[:labels] if args.key?(:labels)
|
1942
|
+
@last_replication_cycle = args[:last_replication_cycle] if args.key?(:last_replication_cycle)
|
1936
1943
|
@last_sync = args[:last_sync] if args.key?(:last_sync)
|
1937
1944
|
@name = args[:name] if args.key?(:name)
|
1938
1945
|
@policy = args[:policy] if args.key?(:policy)
|
@@ -1994,6 +2001,53 @@ module Google
|
|
1994
2001
|
end
|
1995
2002
|
end
|
1996
2003
|
|
2004
|
+
# Represents migration resource warning information that can be used with google.
|
2005
|
+
# rpc.Status message. MigrationWarning is used to present the user with warning
|
2006
|
+
# information in migration operations.
|
2007
|
+
class MigrationWarning
|
2008
|
+
include Google::Apis::Core::Hashable
|
2009
|
+
|
2010
|
+
# Provides a localized error message that is safe to return to the user which
|
2011
|
+
# can be attached to an RPC error.
|
2012
|
+
# Corresponds to the JSON property `actionItem`
|
2013
|
+
# @return [Google::Apis::VmmigrationV1alpha1::LocalizedMessage]
|
2014
|
+
attr_accessor :action_item
|
2015
|
+
|
2016
|
+
# The warning code.
|
2017
|
+
# Corresponds to the JSON property `code`
|
2018
|
+
# @return [String]
|
2019
|
+
attr_accessor :code
|
2020
|
+
|
2021
|
+
# URL(s) pointing to additional information on handling the current warning.
|
2022
|
+
# Corresponds to the JSON property `helpLinks`
|
2023
|
+
# @return [Array<Google::Apis::VmmigrationV1alpha1::Link>]
|
2024
|
+
attr_accessor :help_links
|
2025
|
+
|
2026
|
+
# Provides a localized error message that is safe to return to the user which
|
2027
|
+
# can be attached to an RPC error.
|
2028
|
+
# Corresponds to the JSON property `warningMessage`
|
2029
|
+
# @return [Google::Apis::VmmigrationV1alpha1::LocalizedMessage]
|
2030
|
+
attr_accessor :warning_message
|
2031
|
+
|
2032
|
+
# The time the warning occurred.
|
2033
|
+
# Corresponds to the JSON property `warningTime`
|
2034
|
+
# @return [String]
|
2035
|
+
attr_accessor :warning_time
|
2036
|
+
|
2037
|
+
def initialize(**args)
|
2038
|
+
update!(**args)
|
2039
|
+
end
|
2040
|
+
|
2041
|
+
# Update properties of this object
|
2042
|
+
def update!(**args)
|
2043
|
+
@action_item = args[:action_item] if args.key?(:action_item)
|
2044
|
+
@code = args[:code] if args.key?(:code)
|
2045
|
+
@help_links = args[:help_links] if args.key?(:help_links)
|
2046
|
+
@warning_message = args[:warning_message] if args.key?(:warning_message)
|
2047
|
+
@warning_time = args[:warning_time] if args.key?(:warning_time)
|
2048
|
+
end
|
2049
|
+
end
|
2050
|
+
|
1997
2051
|
# NetworkInterface represents a NIC of a VM.
|
1998
2052
|
class NetworkInterface
|
1999
2053
|
include Google::Apis::Core::Hashable
|
@@ -2309,6 +2363,11 @@ module Google
|
|
2309
2363
|
# @return [String]
|
2310
2364
|
attr_accessor :total_pause_duration
|
2311
2365
|
|
2366
|
+
# Output only. Warnings that occurred during the cycle.
|
2367
|
+
# Corresponds to the JSON property `warnings`
|
2368
|
+
# @return [Array<Google::Apis::VmmigrationV1alpha1::MigrationWarning>]
|
2369
|
+
attr_accessor :warnings
|
2370
|
+
|
2312
2371
|
def initialize(**args)
|
2313
2372
|
update!(**args)
|
2314
2373
|
end
|
@@ -2325,6 +2384,7 @@ module Google
|
|
2325
2384
|
@state = args[:state] if args.key?(:state)
|
2326
2385
|
@steps = args[:steps] if args.key?(:steps)
|
2327
2386
|
@total_pause_duration = args[:total_pause_duration] if args.key?(:total_pause_duration)
|
2387
|
+
@warnings = args[:warnings] if args.key?(:warnings)
|
2328
2388
|
end
|
2329
2389
|
end
|
2330
2390
|
|
@@ -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.27.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230216"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -292,6 +292,12 @@ module Google
|
|
292
292
|
include Google::Apis::Core::JsonObjectSupport
|
293
293
|
end
|
294
294
|
|
295
|
+
class MigrationWarning
|
296
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
|
+
|
298
|
+
include Google::Apis::Core::JsonObjectSupport
|
299
|
+
end
|
300
|
+
|
295
301
|
class NetworkInterface
|
296
302
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
303
|
|
@@ -973,6 +979,8 @@ module Google
|
|
973
979
|
|
974
980
|
property :group, as: 'group'
|
975
981
|
hash :labels, as: 'labels'
|
982
|
+
property :last_replication_cycle, as: 'lastReplicationCycle', class: Google::Apis::VmmigrationV1alpha1::ReplicationCycle, decorator: Google::Apis::VmmigrationV1alpha1::ReplicationCycle::Representation
|
983
|
+
|
976
984
|
property :last_sync, as: 'lastSync', class: Google::Apis::VmmigrationV1alpha1::ReplicationSync, decorator: Google::Apis::VmmigrationV1alpha1::ReplicationSync::Representation
|
977
985
|
|
978
986
|
property :name, as: 'name'
|
@@ -1005,6 +1013,20 @@ module Google
|
|
1005
1013
|
end
|
1006
1014
|
end
|
1007
1015
|
|
1016
|
+
class MigrationWarning
|
1017
|
+
# @private
|
1018
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1019
|
+
property :action_item, as: 'actionItem', class: Google::Apis::VmmigrationV1alpha1::LocalizedMessage, decorator: Google::Apis::VmmigrationV1alpha1::LocalizedMessage::Representation
|
1020
|
+
|
1021
|
+
property :code, as: 'code'
|
1022
|
+
collection :help_links, as: 'helpLinks', class: Google::Apis::VmmigrationV1alpha1::Link, decorator: Google::Apis::VmmigrationV1alpha1::Link::Representation
|
1023
|
+
|
1024
|
+
property :warning_message, as: 'warningMessage', class: Google::Apis::VmmigrationV1alpha1::LocalizedMessage, decorator: Google::Apis::VmmigrationV1alpha1::LocalizedMessage::Representation
|
1025
|
+
|
1026
|
+
property :warning_time, as: 'warningTime'
|
1027
|
+
end
|
1028
|
+
end
|
1029
|
+
|
1008
1030
|
class NetworkInterface
|
1009
1031
|
# @private
|
1010
1032
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1090,6 +1112,8 @@ module Google
|
|
1090
1112
|
collection :steps, as: 'steps', class: Google::Apis::VmmigrationV1alpha1::CycleStep, decorator: Google::Apis::VmmigrationV1alpha1::CycleStep::Representation
|
1091
1113
|
|
1092
1114
|
property :total_pause_duration, as: 'totalPauseDuration'
|
1115
|
+
collection :warnings, as: 'warnings', class: Google::Apis::VmmigrationV1alpha1::MigrationWarning, decorator: Google::Apis::VmmigrationV1alpha1::MigrationWarning::Representation
|
1116
|
+
|
1093
1117
|
end
|
1094
1118
|
end
|
1095
1119
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.27.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: 2023-
|
11
|
+
date: 2023-03-05 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_v1alpha1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1alpha1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1alpha1/v0.27.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vmmigration_v1alpha1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|