google-apis-vmmigration_v1alpha1 0.25.0 → 0.27.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d097c3437423c8215a631b8e254ec53c0ef82d5735b93811a57c3f42b7494dce
4
- data.tar.gz: 1774cc590478fdd44e86955b24efd8ef9400e815892ae4754aee6d6c3fa41e73
3
+ metadata.gz: 96bedd693e862292a7d45fd87e600344188f3932a55b91c20d4c0f55f7d075e1
4
+ data.tar.gz: 5ffb05b32d5aad03931a3053dbb93110f0d29a28d8d1d606623a74254ac4e5be
5
5
  SHA512:
6
- metadata.gz: dc3ed34cc99d6d31fa0400dfbc0259e27c4be81ac0d918adc498523ea89f696087cc00f54e217dc13488ecb712344681f2efee2b53a0be3f77c79543b78fcb6b
7
- data.tar.gz: fcf92b8822683e0e88058e605a5a64106364fe667ca031a7ab725fd9256149715dce8eec745375dceec51364cb67cad56da1478778178b1207e87645f612eb1b
6
+ metadata.gz: 5a4a5ee5b855af08f978ce28c53394a3af57156b8d827d83a7dac7602c1f6eda949a63739745bf394a507145b47e918e2c0b15ea56b9d5910ebed39019b868c6
7
+ data.tar.gz: 18f22c3faf7779f4672571d858a55d2ee856a4d57480ef6901caf3a3605985d8fc5edebe7a4cbcb250b7b2814c5e31e647526ee087cf0cb16258221bada8b935
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-vmmigration_v1alpha1
2
2
 
3
+ ### v0.27.0 (2023-03-05)
4
+
5
+ * Regenerated from discovery document revision 20230216
6
+
7
+ ### v0.26.0 (2023-02-15)
8
+
9
+ * Regenerated from discovery document revision 20230209
10
+ * Regenerated using generator version 0.12.0
11
+
3
12
  ### v0.25.0 (2023-01-15)
4
13
 
5
14
  * Regenerated from discovery document revision 20230105
@@ -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
 
@@ -2778,7 +2838,7 @@ module Google
2778
2838
  # must retry your request, the server will know to ignore the request if it has
2779
2839
  # already been completed. The server will guarantee that for at least 60 minutes
2780
2840
  # after the first request. For example, consider a situation where you make an
2781
- # initial request and t he request times out. If you make the request again with
2841
+ # initial request and the request times out. If you make the request again with
2782
2842
  # the same request ID, the server can check if original operation with the same
2783
2843
  # request ID was received, and if so, will ignore the second request. This
2784
2844
  # prevents clients from accidentally creating duplicate commitments. The request
@@ -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.25.0"
19
+ GEM_VERSION = "0.27.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.1"
22
+ GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230105"
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
 
@@ -166,7 +166,7 @@ module Google
166
166
  # must retry your request, the server will know to ignore the request if it has
167
167
  # already been completed. The server will guarantee that for at least 60 minutes
168
168
  # since the first request. For example, consider a situation where you make an
169
- # initial request and t he request times out. If you make the request again with
169
+ # initial request and the request times out. If you make the request again with
170
170
  # the same request ID, the server can check if original operation with the same
171
171
  # request ID was received, and if so, will ignore the second request. This
172
172
  # prevents clients from accidentally creating duplicate commitments. The request
@@ -211,7 +211,7 @@ module Google
211
211
  # that if you must retry your request, the server will know to ignore the
212
212
  # request if it has already been completed. The server will guarantee that for
213
213
  # at least 60 minutes after the first request. For example, consider a situation
214
- # where you make an initial request and t he request times out. If you make the
214
+ # where you make an initial request and the request times out. If you make the
215
215
  # request again with the same request ID, the server can check if original
216
216
  # operation with the same request ID was received, and if so, will ignore the
217
217
  # second request. This prevents clients from accidentally creating duplicate
@@ -330,7 +330,7 @@ module Google
330
330
  # must retry your request, the server will know to ignore the request if it has
331
331
  # already been completed. The server will guarantee that for at least 60 minutes
332
332
  # since the first request. For example, consider a situation where you make an
333
- # initial request and t he request times out. If you make the request again with
333
+ # initial request and the request times out. If you make the request again with
334
334
  # the same request ID, the server can check if original operation with the same
335
335
  # request ID was received, and if so, will ignore the second request. This
336
336
  # prevents clients from accidentally creating duplicate commitments. The request
@@ -565,7 +565,7 @@ module Google
565
565
  # must retry your request, the server will know to ignore the request if it has
566
566
  # already been completed. The server will guarantee that for at least 60 minutes
567
567
  # since the first request. For example, consider a situation where you make an
568
- # initial request and t he request times out. If you make the request again with
568
+ # initial request and the request times out. If you make the request again with
569
569
  # the same request ID, the server can check if original operation with the same
570
570
  # request ID was received, and if so, will ignore the second request. This
571
571
  # prevents clients from accidentally creating duplicate commitments. The request
@@ -612,7 +612,7 @@ module Google
612
612
  # that if you must retry your request, the server will know to ignore the
613
613
  # request if it has already been completed. The server will guarantee that for
614
614
  # at least 60 minutes after the first request. For example, consider a situation
615
- # where you make an initial request and t he request times out. If you make the
615
+ # where you make an initial request and the request times out. If you make the
616
616
  # request again with the same request ID, the server can check if original
617
617
  # operation with the same request ID was received, and if so, will ignore the
618
618
  # second request. This prevents clients from accidentally creating duplicate
@@ -781,7 +781,7 @@ module Google
781
781
  # must retry your request, the server will know to ignore the request if it has
782
782
  # already been completed. The server will guarantee that for at least 60 minutes
783
783
  # since the first request. For example, consider a situation where you make an
784
- # initial request and t he request times out. If you make the request again with
784
+ # initial request and the request times out. If you make the request again with
785
785
  # the same request ID, the server can check if original operation with the same
786
786
  # request ID was received, and if so, will ignore the second request. This
787
787
  # prevents clients from accidentally creating duplicate commitments. The request
@@ -837,7 +837,7 @@ module Google
837
837
  # must retry your request, the server will know to ignore the request if it has
838
838
  # already been completed. The server will guarantee that for at least 60 minutes
839
839
  # since the first request. For example, consider a situation where you make an
840
- # initial request and t he request times out. If you make the request again with
840
+ # initial request and the request times out. If you make the request again with
841
841
  # the same request ID, the server can check if original operation with the same
842
842
  # request ID was received, and if so, will ignore the second request. This
843
843
  # prevents clients from accidentally creating duplicate commitments. The request
@@ -882,7 +882,7 @@ module Google
882
882
  # must retry your request, the server will know to ignore the request if it has
883
883
  # already been completed. The server will guarantee that for at least 60 minutes
884
884
  # after the first request. For example, consider a situation where you make an
885
- # initial request and t he request times out. If you make the request again with
885
+ # initial request and the request times out. If you make the request again with
886
886
  # the same request ID, the server can check if original operation with the same
887
887
  # request ID was received, and if so, will ignore the second request. This
888
888
  # prevents clients from accidentally creating duplicate commitments. The request
@@ -1038,7 +1038,7 @@ module Google
1038
1038
  # must retry your request, the server will know to ignore the request if it has
1039
1039
  # already been completed. The server will guarantee that for at least 60 minutes
1040
1040
  # since the first request. For example, consider a situation where you make an
1041
- # initial request and t he request times out. If you make the request again with
1041
+ # initial request and the request times out. If you make the request again with
1042
1042
  # the same request ID, the server can check if original operation with the same
1043
1043
  # request ID was received, and if so, will ignore the second request. This
1044
1044
  # prevents clients from accidentally creating duplicate commitments. The request
@@ -1232,7 +1232,7 @@ module Google
1232
1232
  # must retry your request, the server will know to ignore the request if it has
1233
1233
  # already been completed. The server will guarantee that for at least 60 minutes
1234
1234
  # since the first request. For example, consider a situation where you make an
1235
- # initial request and t he request times out. If you make the request again with
1235
+ # initial request and the request times out. If you make the request again with
1236
1236
  # the same request ID, the server can check if original operation with the same
1237
1237
  # request ID was received, and if so, will ignore the second request. This
1238
1238
  # prevents clients from accidentally creating duplicate commitments. The request
@@ -1424,7 +1424,7 @@ module Google
1424
1424
  # must retry your request, the server will know to ignore the request if it has
1425
1425
  # already been completed. The server will guarantee that for at least 60 minutes
1426
1426
  # since the first request. For example, consider a situation where you make an
1427
- # initial request and t he request times out. If you make the request again with
1427
+ # initial request and the request times out. If you make the request again with
1428
1428
  # the same request ID, the server can check if original operation with the same
1429
1429
  # request ID was received, and if so, will ignore the second request. This
1430
1430
  # prevents clients from accidentally creating duplicate commitments. The request
@@ -1582,7 +1582,7 @@ module Google
1582
1582
  # must retry your request, the server will know to ignore the request if it has
1583
1583
  # already been completed. The server will guarantee that for at least 60 minutes
1584
1584
  # since the first request. For example, consider a situation where you make an
1585
- # initial request and t he request times out. If you make the request again with
1585
+ # initial request and the request times out. If you make the request again with
1586
1586
  # the same request ID, the server can check if original operation with the same
1587
1587
  # request ID was received, and if so, will ignore the second request. This
1588
1588
  # prevents clients from accidentally creating duplicate commitments. The request
@@ -1782,7 +1782,7 @@ module Google
1782
1782
  # must retry your request, the server will know to ignore the request if it has
1783
1783
  # already been completed. The server will guarantee that for at least 60 minutes
1784
1784
  # since the first request. For example, consider a situation where you make an
1785
- # initial request and t he request times out. If you make the request again with
1785
+ # initial request and the request times out. If you make the request again with
1786
1786
  # the same request ID, the server can check if original operation with the same
1787
1787
  # request ID was received, and if so, will ignore the second request. This
1788
1788
  # prevents clients from accidentally creating duplicate commitments. The request
@@ -1832,7 +1832,7 @@ module Google
1832
1832
  # that if you must retry your request, the server will know to ignore the
1833
1833
  # request if it has already been completed. The server will guarantee that for
1834
1834
  # at least 60 minutes after the first request. For example, consider a situation
1835
- # where you make an initial request and t he request times out. If you make the
1835
+ # where you make an initial request and the request times out. If you make the
1836
1836
  # request again with the same request ID, the server can check if original
1837
1837
  # operation with the same request ID was received, and if so, will ignore the
1838
1838
  # second request. This prevents clients from accidentally creating duplicate
@@ -1959,7 +1959,7 @@ module Google
1959
1959
  # must retry your request, the server will know to ignore the request if it has
1960
1960
  # already been completed. The server will guarantee that for at least 60 minutes
1961
1961
  # since the first request. For example, consider a situation where you make an
1962
- # initial request and t he request times out. If you make the request again with
1962
+ # initial request and the request times out. If you make the request again with
1963
1963
  # the same request ID, the server can check if original operation with the same
1964
1964
  # request ID was received, and if so, will ignore the second request. This
1965
1965
  # prevents clients from accidentally creating duplicate commitments. The request
@@ -2007,7 +2007,7 @@ module Google
2007
2007
  # that if you must retry your request, the server will know to ignore the
2008
2008
  # request if it has already been completed. The server will guarantee that for
2009
2009
  # at least 60 minutes after the first request. For example, consider a situation
2010
- # where you make an initial request and t he request times out. If you make the
2010
+ # where you make an initial request and the request times out. If you make the
2011
2011
  # request again with the same request ID, the server can check if original
2012
2012
  # operation with the same request ID was received, and if so, will ignore the
2013
2013
  # second request. This prevents clients from accidentally creating duplicate
@@ -2129,7 +2129,7 @@ module Google
2129
2129
  # must retry your request, the server will know to ignore the request if it has
2130
2130
  # already been completed. The server will guarantee that for at least 60 minutes
2131
2131
  # since the first request. For example, consider a situation where you make an
2132
- # initial request and t he request times out. If you make the request again with
2132
+ # initial request and the request times out. If you make the request again with
2133
2133
  # the same request ID, the server can check if original operation with the same
2134
2134
  # request ID was received, and if so, will ignore the second request. This
2135
2135
  # prevents clients from accidentally creating duplicate commitments. The request
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.25.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-01-15 00:00:00.000000000 Z
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
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.9.1
19
+ version: 0.11.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.9.1
29
+ version: 0.11.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.25.0
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: []