google-apis-vmmigration_v1 0.20.0 → 0.22.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: bd8cd5677614e22859339a0ed50dfc7b9406349c08f773a62d6673fc6ae6171e
4
- data.tar.gz: ca2b1f4055486ec7bbfbf1a5a50bd9cc2c85427208cf3af4d8c18e4f00539aee
3
+ metadata.gz: 79b312be1ca57d5181a2dbb8a53b0e8c60e2c5cfe58c9846519386f134056af5
4
+ data.tar.gz: 3dfb536d07541e5e03dc71ba443f9d9343fc54bdfe0a712ca798b8614ed39e42
5
5
  SHA512:
6
- metadata.gz: aa3d3c13810ee1f02f87cdc4c40e4070190eff1dd8ce925fdf244578a62cfae24ff6fe09829640338fdba0a88e3da0e1311581253ae502f8317fb843bea6b96f
7
- data.tar.gz: feb3b7b9ab7ad44b1efb1595a4257419f2af0dd4182e914b3c7950373229ab40f54681f75880acd7675727eedb6e28dde1c672882c5177b188bd41bb98815fa7
6
+ metadata.gz: 1d7bf0a11098e3d847dfb894b8c79bfbf789ad95eb61aefcc28648fe01ad6a08a3e016794100629faa0a8ff933b909d01af85d7813599ff82cfaa3f101471d93
7
+ data.tar.gz: 4303eeb5f7847b3c9ee949061ca84c88358834fbe15a72bfe01ceda990e7a765d59b27f111250f22cd35fa3927254fa9b26b9803fb887a323cec61c84422992b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-vmmigration_v1
2
2
 
3
+ ### v0.22.0 (2022-11-07)
4
+
5
+ * Regenerated from discovery document revision 20221103
6
+
7
+ ### v0.21.0 (2022-10-28)
8
+
9
+ * Regenerated using generator version 0.11.0
10
+
3
11
  ### v0.20.0 (2022-09-29)
4
12
 
5
13
  * Regenerated from discovery document revision 20220922
@@ -22,6 +22,19 @@ module Google
22
22
  module Apis
23
23
  module VmmigrationV1
24
24
 
25
+ # AdaptingOSStep contains specific step details.
26
+ class AdaptingOsStep
27
+ include Google::Apis::Core::Hashable
28
+
29
+ def initialize(**args)
30
+ update!(**args)
31
+ end
32
+
33
+ # Update properties of this object
34
+ def update!(**args)
35
+ end
36
+ end
37
+
25
38
  # Request message for 'AddGroupMigration' request.
26
39
  class AddGroupMigrationRequest
27
40
  include Google::Apis::Core::Hashable
@@ -222,6 +235,11 @@ module Google
222
235
  # @return [String]
223
236
  attr_accessor :state_time
224
237
 
238
+ # Output only. The clone steps list representing its progress.
239
+ # Corresponds to the JSON property `steps`
240
+ # @return [Array<Google::Apis::VmmigrationV1::CloneStep>]
241
+ attr_accessor :steps
242
+
225
243
  def initialize(**args)
226
244
  update!(**args)
227
245
  end
@@ -235,6 +253,50 @@ module Google
235
253
  @name = args[:name] if args.key?(:name)
236
254
  @state = args[:state] if args.key?(:state)
237
255
  @state_time = args[:state_time] if args.key?(:state_time)
256
+ @steps = args[:steps] if args.key?(:steps)
257
+ end
258
+ end
259
+
260
+ # CloneStep holds information about the clone step progress.
261
+ class CloneStep
262
+ include Google::Apis::Core::Hashable
263
+
264
+ # AdaptingOSStep contains specific step details.
265
+ # Corresponds to the JSON property `adaptingOs`
266
+ # @return [Google::Apis::VmmigrationV1::AdaptingOsStep]
267
+ attr_accessor :adapting_os
268
+
269
+ # The time the step has ended.
270
+ # Corresponds to the JSON property `endTime`
271
+ # @return [String]
272
+ attr_accessor :end_time
273
+
274
+ # InstantiatingMigratedVMStep contains specific step details.
275
+ # Corresponds to the JSON property `instantiatingMigratedVm`
276
+ # @return [Google::Apis::VmmigrationV1::InstantiatingMigratedVmStep]
277
+ attr_accessor :instantiating_migrated_vm
278
+
279
+ # PreparingVMDisksStep contains specific step details.
280
+ # Corresponds to the JSON property `preparingVmDisks`
281
+ # @return [Google::Apis::VmmigrationV1::PreparingVmDisksStep]
282
+ attr_accessor :preparing_vm_disks
283
+
284
+ # The time the step has started.
285
+ # Corresponds to the JSON property `startTime`
286
+ # @return [String]
287
+ attr_accessor :start_time
288
+
289
+ def initialize(**args)
290
+ update!(**args)
291
+ end
292
+
293
+ # Update properties of this object
294
+ def update!(**args)
295
+ @adapting_os = args[:adapting_os] if args.key?(:adapting_os)
296
+ @end_time = args[:end_time] if args.key?(:end_time)
297
+ @instantiating_migrated_vm = args[:instantiating_migrated_vm] if args.key?(:instantiating_migrated_vm)
298
+ @preparing_vm_disks = args[:preparing_vm_disks] if args.key?(:preparing_vm_disks)
299
+ @start_time = args[:start_time] if args.key?(:start_time)
238
300
  end
239
301
  end
240
302
 
@@ -592,6 +654,11 @@ module Google
592
654
  # @return [String]
593
655
  attr_accessor :state_time
594
656
 
657
+ # Output only. The cutover steps list representing its progress.
658
+ # Corresponds to the JSON property `steps`
659
+ # @return [Array<Google::Apis::VmmigrationV1::CutoverStep>]
660
+ attr_accessor :steps
661
+
595
662
  def initialize(**args)
596
663
  update!(**args)
597
664
  end
@@ -607,6 +674,107 @@ module Google
607
674
  @state = args[:state] if args.key?(:state)
608
675
  @state_message = args[:state_message] if args.key?(:state_message)
609
676
  @state_time = args[:state_time] if args.key?(:state_time)
677
+ @steps = args[:steps] if args.key?(:steps)
678
+ end
679
+ end
680
+
681
+ # CutoverStep holds information about the cutover step progress.
682
+ class CutoverStep
683
+ include Google::Apis::Core::Hashable
684
+
685
+ # The time the step has ended.
686
+ # Corresponds to the JSON property `endTime`
687
+ # @return [String]
688
+ attr_accessor :end_time
689
+
690
+ # ReplicationCycle contains information about the current replication cycle
691
+ # status.
692
+ # Corresponds to the JSON property `finalSync`
693
+ # @return [Google::Apis::VmmigrationV1::ReplicationCycle]
694
+ attr_accessor :final_sync
695
+
696
+ # InstantiatingMigratedVMStep contains specific step details.
697
+ # Corresponds to the JSON property `instantiatingMigratedVm`
698
+ # @return [Google::Apis::VmmigrationV1::InstantiatingMigratedVmStep]
699
+ attr_accessor :instantiating_migrated_vm
700
+
701
+ # PreparingVMDisksStep contains specific step details.
702
+ # Corresponds to the JSON property `preparingVmDisks`
703
+ # @return [Google::Apis::VmmigrationV1::PreparingVmDisksStep]
704
+ attr_accessor :preparing_vm_disks
705
+
706
+ # ReplicationCycle contains information about the current replication cycle
707
+ # status.
708
+ # Corresponds to the JSON property `previousReplicationCycle`
709
+ # @return [Google::Apis::VmmigrationV1::ReplicationCycle]
710
+ attr_accessor :previous_replication_cycle
711
+
712
+ # ShuttingDownSourceVMStep contains specific step details.
713
+ # Corresponds to the JSON property `shuttingDownSourceVm`
714
+ # @return [Google::Apis::VmmigrationV1::ShuttingDownSourceVmStep]
715
+ attr_accessor :shutting_down_source_vm
716
+
717
+ # The time the step has started.
718
+ # Corresponds to the JSON property `startTime`
719
+ # @return [String]
720
+ attr_accessor :start_time
721
+
722
+ def initialize(**args)
723
+ update!(**args)
724
+ end
725
+
726
+ # Update properties of this object
727
+ def update!(**args)
728
+ @end_time = args[:end_time] if args.key?(:end_time)
729
+ @final_sync = args[:final_sync] if args.key?(:final_sync)
730
+ @instantiating_migrated_vm = args[:instantiating_migrated_vm] if args.key?(:instantiating_migrated_vm)
731
+ @preparing_vm_disks = args[:preparing_vm_disks] if args.key?(:preparing_vm_disks)
732
+ @previous_replication_cycle = args[:previous_replication_cycle] if args.key?(:previous_replication_cycle)
733
+ @shutting_down_source_vm = args[:shutting_down_source_vm] if args.key?(:shutting_down_source_vm)
734
+ @start_time = args[:start_time] if args.key?(:start_time)
735
+ end
736
+ end
737
+
738
+ # CycleStep holds information about a step progress.
739
+ class CycleStep
740
+ include Google::Apis::Core::Hashable
741
+
742
+ # The time the cycle step has ended.
743
+ # Corresponds to the JSON property `endTime`
744
+ # @return [String]
745
+ attr_accessor :end_time
746
+
747
+ # InitializingReplicationStep contains specific step details.
748
+ # Corresponds to the JSON property `initializingReplication`
749
+ # @return [Google::Apis::VmmigrationV1::InitializingReplicationStep]
750
+ attr_accessor :initializing_replication
751
+
752
+ # PostProcessingStep contains specific step details.
753
+ # Corresponds to the JSON property `postProcessing`
754
+ # @return [Google::Apis::VmmigrationV1::PostProcessingStep]
755
+ attr_accessor :post_processing
756
+
757
+ # ReplicatingStep contains specific step details.
758
+ # Corresponds to the JSON property `replicating`
759
+ # @return [Google::Apis::VmmigrationV1::ReplicatingStep]
760
+ attr_accessor :replicating
761
+
762
+ # The time the cycle step has started.
763
+ # Corresponds to the JSON property `startTime`
764
+ # @return [String]
765
+ attr_accessor :start_time
766
+
767
+ def initialize(**args)
768
+ update!(**args)
769
+ end
770
+
771
+ # Update properties of this object
772
+ def update!(**args)
773
+ @end_time = args[:end_time] if args.key?(:end_time)
774
+ @initializing_replication = args[:initializing_replication] if args.key?(:initializing_replication)
775
+ @post_processing = args[:post_processing] if args.key?(:post_processing)
776
+ @replicating = args[:replicating] if args.key?(:replicating)
777
+ @start_time = args[:start_time] if args.key?(:start_time)
610
778
  end
611
779
  end
612
780
 
@@ -829,6 +997,32 @@ module Google
829
997
  end
830
998
  end
831
999
 
1000
+ # InitializingReplicationStep contains specific step details.
1001
+ class InitializingReplicationStep
1002
+ include Google::Apis::Core::Hashable
1003
+
1004
+ def initialize(**args)
1005
+ update!(**args)
1006
+ end
1007
+
1008
+ # Update properties of this object
1009
+ def update!(**args)
1010
+ end
1011
+ end
1012
+
1013
+ # InstantiatingMigratedVMStep contains specific step details.
1014
+ class InstantiatingMigratedVmStep
1015
+ include Google::Apis::Core::Hashable
1016
+
1017
+ def initialize(**args)
1018
+ update!(**args)
1019
+ end
1020
+
1021
+ # Update properties of this object
1022
+ def update!(**args)
1023
+ end
1024
+ end
1025
+
832
1026
  # Describes a URL link.
833
1027
  class Link
834
1028
  include Google::Apis::Core::Hashable
@@ -1619,6 +1813,32 @@ module Google
1619
1813
  end
1620
1814
  end
1621
1815
 
1816
+ # PostProcessingStep contains specific step details.
1817
+ class PostProcessingStep
1818
+ include Google::Apis::Core::Hashable
1819
+
1820
+ def initialize(**args)
1821
+ update!(**args)
1822
+ end
1823
+
1824
+ # Update properties of this object
1825
+ def update!(**args)
1826
+ end
1827
+ end
1828
+
1829
+ # PreparingVMDisksStep contains specific step details.
1830
+ class PreparingVmDisksStep
1831
+ include Google::Apis::Core::Hashable
1832
+
1833
+ def initialize(**args)
1834
+ update!(**args)
1835
+ end
1836
+
1837
+ # Update properties of this object
1838
+ def update!(**args)
1839
+ end
1840
+ end
1841
+
1622
1842
  # Request message for 'RemoveMigration' request.
1623
1843
  class RemoveGroupMigrationRequest
1624
1844
  include Google::Apis::Core::Hashable
@@ -1638,12 +1858,75 @@ module Google
1638
1858
  end
1639
1859
  end
1640
1860
 
1861
+ # ReplicatingStep contains specific step details.
1862
+ class ReplicatingStep
1863
+ include Google::Apis::Core::Hashable
1864
+
1865
+ # The source disks replication rate for the last 30 minutes in bytes per second.
1866
+ # Corresponds to the JSON property `lastThirtyMinutesAverageBytesPerSecond`
1867
+ # @return [Fixnum]
1868
+ attr_accessor :last_thirty_minutes_average_bytes_per_second
1869
+
1870
+ # The source disks replication rate for the last 2 minutes in bytes per second.
1871
+ # Corresponds to the JSON property `lastTwoMinutesAverageBytesPerSecond`
1872
+ # @return [Fixnum]
1873
+ attr_accessor :last_two_minutes_average_bytes_per_second
1874
+
1875
+ # Replicated bytes in the step.
1876
+ # Corresponds to the JSON property `replicatedBytes`
1877
+ # @return [Fixnum]
1878
+ attr_accessor :replicated_bytes
1879
+
1880
+ # Total bytes to be handled in the step.
1881
+ # Corresponds to the JSON property `totalBytes`
1882
+ # @return [Fixnum]
1883
+ attr_accessor :total_bytes
1884
+
1885
+ def initialize(**args)
1886
+ update!(**args)
1887
+ end
1888
+
1889
+ # Update properties of this object
1890
+ def update!(**args)
1891
+ @last_thirty_minutes_average_bytes_per_second = args[:last_thirty_minutes_average_bytes_per_second] if args.key?(:last_thirty_minutes_average_bytes_per_second)
1892
+ @last_two_minutes_average_bytes_per_second = args[:last_two_minutes_average_bytes_per_second] if args.key?(:last_two_minutes_average_bytes_per_second)
1893
+ @replicated_bytes = args[:replicated_bytes] if args.key?(:replicated_bytes)
1894
+ @total_bytes = args[:total_bytes] if args.key?(:total_bytes)
1895
+ end
1896
+ end
1897
+
1641
1898
  # ReplicationCycle contains information about the current replication cycle
1642
1899
  # status.
1643
1900
  class ReplicationCycle
1644
1901
  include Google::Apis::Core::Hashable
1645
1902
 
1646
- # The current progress in percentage of this cycle.
1903
+ # The cycle's ordinal number.
1904
+ # Corresponds to the JSON property `cycleNumber`
1905
+ # @return [Fixnum]
1906
+ attr_accessor :cycle_number
1907
+
1908
+ # The time the replication cycle has ended.
1909
+ # Corresponds to the JSON property `endTime`
1910
+ # @return [String]
1911
+ attr_accessor :end_time
1912
+
1913
+ # The `Status` type defines a logical error model that is suitable for different
1914
+ # programming environments, including REST APIs and RPC APIs. It is used by [
1915
+ # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
1916
+ # data: error code, error message, and error details. You can find out more
1917
+ # about this error model and how to work with it in the [API Design Guide](https:
1918
+ # //cloud.google.com/apis/design/errors).
1919
+ # Corresponds to the JSON property `error`
1920
+ # @return [Google::Apis::VmmigrationV1::Status]
1921
+ attr_accessor :error
1922
+
1923
+ # The identifier of the ReplicationCycle.
1924
+ # Corresponds to the JSON property `name`
1925
+ # @return [String]
1926
+ attr_accessor :name
1927
+
1928
+ # The current progress in percentage of this cycle. Was replaced by 'steps'
1929
+ # field, which breaks down the cycle progression more accurately.
1647
1930
  # Corresponds to the JSON property `progressPercent`
1648
1931
  # @return [Fixnum]
1649
1932
  attr_accessor :progress_percent
@@ -1653,14 +1936,36 @@ module Google
1653
1936
  # @return [String]
1654
1937
  attr_accessor :start_time
1655
1938
 
1939
+ # State of the ReplicationCycle.
1940
+ # Corresponds to the JSON property `state`
1941
+ # @return [String]
1942
+ attr_accessor :state
1943
+
1944
+ # The cycle's steps list representing its progress.
1945
+ # Corresponds to the JSON property `steps`
1946
+ # @return [Array<Google::Apis::VmmigrationV1::CycleStep>]
1947
+ attr_accessor :steps
1948
+
1949
+ # The accumulated duration the replication cycle was paused.
1950
+ # Corresponds to the JSON property `totalPauseDuration`
1951
+ # @return [String]
1952
+ attr_accessor :total_pause_duration
1953
+
1656
1954
  def initialize(**args)
1657
1955
  update!(**args)
1658
1956
  end
1659
1957
 
1660
1958
  # Update properties of this object
1661
1959
  def update!(**args)
1960
+ @cycle_number = args[:cycle_number] if args.key?(:cycle_number)
1961
+ @end_time = args[:end_time] if args.key?(:end_time)
1962
+ @error = args[:error] if args.key?(:error)
1963
+ @name = args[:name] if args.key?(:name)
1662
1964
  @progress_percent = args[:progress_percent] if args.key?(:progress_percent)
1663
1965
  @start_time = args[:start_time] if args.key?(:start_time)
1966
+ @state = args[:state] if args.key?(:state)
1967
+ @steps = args[:steps] if args.key?(:steps)
1968
+ @total_pause_duration = args[:total_pause_duration] if args.key?(:total_pause_duration)
1664
1969
  end
1665
1970
  end
1666
1971
 
@@ -1757,6 +2062,19 @@ module Google
1757
2062
  end
1758
2063
  end
1759
2064
 
2065
+ # ShuttingDownSourceVMStep contains specific step details.
2066
+ class ShuttingDownSourceVmStep
2067
+ include Google::Apis::Core::Hashable
2068
+
2069
+ def initialize(**args)
2070
+ update!(**args)
2071
+ end
2072
+
2073
+ # Update properties of this object
2074
+ def update!(**args)
2075
+ end
2076
+ end
2077
+
1760
2078
  # Source message describes a specific vm migration Source resource. It contains
1761
2079
  # the source environment information.
1762
2080
  class Source
@@ -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.20.0"
19
+ GEM_VERSION = "0.22.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.10.0"
22
+ GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220922"
25
+ REVISION = "20221103"
26
26
  end
27
27
  end
28
28
  end
@@ -22,6 +22,12 @@ module Google
22
22
  module Apis
23
23
  module VmmigrationV1
24
24
 
25
+ class AdaptingOsStep
26
+ class Representation < Google::Apis::Core::JsonRepresentation; end
27
+
28
+ include Google::Apis::Core::JsonObjectSupport
29
+ end
30
+
25
31
  class AddGroupMigrationRequest
26
32
  class Representation < Google::Apis::Core::JsonRepresentation; end
27
33
 
@@ -70,6 +76,12 @@ module Google
70
76
  include Google::Apis::Core::JsonObjectSupport
71
77
  end
72
78
 
79
+ class CloneStep
80
+ class Representation < Google::Apis::Core::JsonRepresentation; end
81
+
82
+ include Google::Apis::Core::JsonObjectSupport
83
+ end
84
+
73
85
  class ComputeEngineTargetDefaults
74
86
  class Representation < Google::Apis::Core::JsonRepresentation; end
75
87
 
@@ -94,6 +106,18 @@ module Google
94
106
  include Google::Apis::Core::JsonObjectSupport
95
107
  end
96
108
 
109
+ class CutoverStep
110
+ class Representation < Google::Apis::Core::JsonRepresentation; end
111
+
112
+ include Google::Apis::Core::JsonObjectSupport
113
+ end
114
+
115
+ class CycleStep
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
97
121
  class DatacenterConnector
98
122
  class Representation < Google::Apis::Core::JsonRepresentation; end
99
123
 
@@ -124,6 +148,18 @@ module Google
124
148
  include Google::Apis::Core::JsonObjectSupport
125
149
  end
126
150
 
151
+ class InitializingReplicationStep
152
+ class Representation < Google::Apis::Core::JsonRepresentation; end
153
+
154
+ include Google::Apis::Core::JsonObjectSupport
155
+ end
156
+
157
+ class InstantiatingMigratedVmStep
158
+ class Representation < Google::Apis::Core::JsonRepresentation; end
159
+
160
+ include Google::Apis::Core::JsonObjectSupport
161
+ end
162
+
127
163
  class Link
128
164
  class Representation < Google::Apis::Core::JsonRepresentation; end
129
165
 
@@ -244,12 +280,30 @@ module Google
244
280
  include Google::Apis::Core::JsonObjectSupport
245
281
  end
246
282
 
283
+ class PostProcessingStep
284
+ class Representation < Google::Apis::Core::JsonRepresentation; end
285
+
286
+ include Google::Apis::Core::JsonObjectSupport
287
+ end
288
+
289
+ class PreparingVmDisksStep
290
+ class Representation < Google::Apis::Core::JsonRepresentation; end
291
+
292
+ include Google::Apis::Core::JsonObjectSupport
293
+ end
294
+
247
295
  class RemoveGroupMigrationRequest
248
296
  class Representation < Google::Apis::Core::JsonRepresentation; end
249
297
 
250
298
  include Google::Apis::Core::JsonObjectSupport
251
299
  end
252
300
 
301
+ class ReplicatingStep
302
+ class Representation < Google::Apis::Core::JsonRepresentation; end
303
+
304
+ include Google::Apis::Core::JsonObjectSupport
305
+ end
306
+
253
307
  class ReplicationCycle
254
308
  class Representation < Google::Apis::Core::JsonRepresentation; end
255
309
 
@@ -280,6 +334,12 @@ module Google
280
334
  include Google::Apis::Core::JsonObjectSupport
281
335
  end
282
336
 
337
+ class ShuttingDownSourceVmStep
338
+ class Representation < Google::Apis::Core::JsonRepresentation; end
339
+
340
+ include Google::Apis::Core::JsonObjectSupport
341
+ end
342
+
283
343
  class Source
284
344
  class Representation < Google::Apis::Core::JsonRepresentation; end
285
345
 
@@ -352,6 +412,12 @@ module Google
352
412
  include Google::Apis::Core::JsonObjectSupport
353
413
  end
354
414
 
415
+ class AdaptingOsStep
416
+ # @private
417
+ class Representation < Google::Apis::Core::JsonRepresentation
418
+ end
419
+ end
420
+
355
421
  class AddGroupMigrationRequest
356
422
  # @private
357
423
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -417,6 +483,22 @@ module Google
417
483
  property :name, as: 'name'
418
484
  property :state, as: 'state'
419
485
  property :state_time, as: 'stateTime'
486
+ collection :steps, as: 'steps', class: Google::Apis::VmmigrationV1::CloneStep, decorator: Google::Apis::VmmigrationV1::CloneStep::Representation
487
+
488
+ end
489
+ end
490
+
491
+ class CloneStep
492
+ # @private
493
+ class Representation < Google::Apis::Core::JsonRepresentation
494
+ property :adapting_os, as: 'adaptingOs', class: Google::Apis::VmmigrationV1::AdaptingOsStep, decorator: Google::Apis::VmmigrationV1::AdaptingOsStep::Representation
495
+
496
+ property :end_time, as: 'endTime'
497
+ property :instantiating_migrated_vm, as: 'instantiatingMigratedVm', class: Google::Apis::VmmigrationV1::InstantiatingMigratedVmStep, decorator: Google::Apis::VmmigrationV1::InstantiatingMigratedVmStep::Representation
498
+
499
+ property :preparing_vm_disks, as: 'preparingVmDisks', class: Google::Apis::VmmigrationV1::PreparingVmDisksStep, decorator: Google::Apis::VmmigrationV1::PreparingVmDisksStep::Representation
500
+
501
+ property :start_time, as: 'startTime'
420
502
  end
421
503
  end
422
504
 
@@ -499,6 +581,40 @@ module Google
499
581
  property :state, as: 'state'
500
582
  property :state_message, as: 'stateMessage'
501
583
  property :state_time, as: 'stateTime'
584
+ collection :steps, as: 'steps', class: Google::Apis::VmmigrationV1::CutoverStep, decorator: Google::Apis::VmmigrationV1::CutoverStep::Representation
585
+
586
+ end
587
+ end
588
+
589
+ class CutoverStep
590
+ # @private
591
+ class Representation < Google::Apis::Core::JsonRepresentation
592
+ property :end_time, as: 'endTime'
593
+ property :final_sync, as: 'finalSync', class: Google::Apis::VmmigrationV1::ReplicationCycle, decorator: Google::Apis::VmmigrationV1::ReplicationCycle::Representation
594
+
595
+ property :instantiating_migrated_vm, as: 'instantiatingMigratedVm', class: Google::Apis::VmmigrationV1::InstantiatingMigratedVmStep, decorator: Google::Apis::VmmigrationV1::InstantiatingMigratedVmStep::Representation
596
+
597
+ property :preparing_vm_disks, as: 'preparingVmDisks', class: Google::Apis::VmmigrationV1::PreparingVmDisksStep, decorator: Google::Apis::VmmigrationV1::PreparingVmDisksStep::Representation
598
+
599
+ property :previous_replication_cycle, as: 'previousReplicationCycle', class: Google::Apis::VmmigrationV1::ReplicationCycle, decorator: Google::Apis::VmmigrationV1::ReplicationCycle::Representation
600
+
601
+ property :shutting_down_source_vm, as: 'shuttingDownSourceVm', class: Google::Apis::VmmigrationV1::ShuttingDownSourceVmStep, decorator: Google::Apis::VmmigrationV1::ShuttingDownSourceVmStep::Representation
602
+
603
+ property :start_time, as: 'startTime'
604
+ end
605
+ end
606
+
607
+ class CycleStep
608
+ # @private
609
+ class Representation < Google::Apis::Core::JsonRepresentation
610
+ property :end_time, as: 'endTime'
611
+ property :initializing_replication, as: 'initializingReplication', class: Google::Apis::VmmigrationV1::InitializingReplicationStep, decorator: Google::Apis::VmmigrationV1::InitializingReplicationStep::Representation
612
+
613
+ property :post_processing, as: 'postProcessing', class: Google::Apis::VmmigrationV1::PostProcessingStep, decorator: Google::Apis::VmmigrationV1::PostProcessingStep::Representation
614
+
615
+ property :replicating, as: 'replicating', class: Google::Apis::VmmigrationV1::ReplicatingStep, decorator: Google::Apis::VmmigrationV1::ReplicatingStep::Representation
616
+
617
+ property :start_time, as: 'startTime'
502
618
  end
503
619
  end
504
620
 
@@ -558,6 +674,18 @@ module Google
558
674
  end
559
675
  end
560
676
 
677
+ class InitializingReplicationStep
678
+ # @private
679
+ class Representation < Google::Apis::Core::JsonRepresentation
680
+ end
681
+ end
682
+
683
+ class InstantiatingMigratedVmStep
684
+ # @private
685
+ class Representation < Google::Apis::Core::JsonRepresentation
686
+ end
687
+ end
688
+
561
689
  class Link
562
690
  # @private
563
691
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -778,6 +906,18 @@ module Google
778
906
  end
779
907
  end
780
908
 
909
+ class PostProcessingStep
910
+ # @private
911
+ class Representation < Google::Apis::Core::JsonRepresentation
912
+ end
913
+ end
914
+
915
+ class PreparingVmDisksStep
916
+ # @private
917
+ class Representation < Google::Apis::Core::JsonRepresentation
918
+ end
919
+ end
920
+
781
921
  class RemoveGroupMigrationRequest
782
922
  # @private
783
923
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -785,11 +925,30 @@ module Google
785
925
  end
786
926
  end
787
927
 
928
+ class ReplicatingStep
929
+ # @private
930
+ class Representation < Google::Apis::Core::JsonRepresentation
931
+ property :last_thirty_minutes_average_bytes_per_second, :numeric_string => true, as: 'lastThirtyMinutesAverageBytesPerSecond'
932
+ property :last_two_minutes_average_bytes_per_second, :numeric_string => true, as: 'lastTwoMinutesAverageBytesPerSecond'
933
+ property :replicated_bytes, :numeric_string => true, as: 'replicatedBytes'
934
+ property :total_bytes, :numeric_string => true, as: 'totalBytes'
935
+ end
936
+ end
937
+
788
938
  class ReplicationCycle
789
939
  # @private
790
940
  class Representation < Google::Apis::Core::JsonRepresentation
941
+ property :cycle_number, as: 'cycleNumber'
942
+ property :end_time, as: 'endTime'
943
+ property :error, as: 'error', class: Google::Apis::VmmigrationV1::Status, decorator: Google::Apis::VmmigrationV1::Status::Representation
944
+
945
+ property :name, as: 'name'
791
946
  property :progress_percent, as: 'progressPercent'
792
947
  property :start_time, as: 'startTime'
948
+ property :state, as: 'state'
949
+ collection :steps, as: 'steps', class: Google::Apis::VmmigrationV1::CycleStep, decorator: Google::Apis::VmmigrationV1::CycleStep::Representation
950
+
951
+ property :total_pause_duration, as: 'totalPauseDuration'
793
952
  end
794
953
  end
795
954
 
@@ -823,6 +982,12 @@ module Google
823
982
  end
824
983
  end
825
984
 
985
+ class ShuttingDownSourceVmStep
986
+ # @private
987
+ class Representation < Google::Apis::Core::JsonRepresentation
988
+ end
989
+ end
990
+
826
991
  class Source
827
992
  # @private
828
993
  class Representation < Google::Apis::Core::JsonRepresentation
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.20.0
4
+ version: 0.22.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-10-03 00:00:00.000000000 Z
11
+ date: 2022-11-14 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.0
19
+ version: 0.9.1
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.0
29
+ version: 0.9.1
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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1/v0.20.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1/v0.22.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: []