google-apis-vmmigration_v1alpha1 0.6.0 → 0.7.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: 339639b23c3b6ac612f1900464d22bd4f260b0ed78a64e4522be337ce0724061
|
4
|
+
data.tar.gz: 8cc7b61c454d464a058b1de7b0852bb2a4f027acec714a627eecf2231a356ccd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ed4954fa5355b8a130744d159a4e502a7cc2cf27b36c83b94215985e507bae64bda30eaa3a9c0610906613996b24038c95a28bacea064339c9e189fbf162ad6
|
7
|
+
data.tar.gz: 81ec6c97c0cbd853c6123c74fd4ad272281142adb005a56f2ade249562facbaf6eeead0f49bbb6227ae3038a23bbf85abf205bef6c8d544a663018cd0f2b518f
|
data/CHANGELOG.md
CHANGED
@@ -627,6 +627,49 @@ module Google
|
|
627
627
|
end
|
628
628
|
end
|
629
629
|
|
630
|
+
# CycleStep hold information about a step progress.
|
631
|
+
class CycleStep
|
632
|
+
include Google::Apis::Core::Hashable
|
633
|
+
|
634
|
+
# The time the cycle step has ended.
|
635
|
+
# Corresponds to the JSON property `endTime`
|
636
|
+
# @return [String]
|
637
|
+
attr_accessor :end_time
|
638
|
+
|
639
|
+
# InitializingReplicationStep contains specific step details.
|
640
|
+
# Corresponds to the JSON property `initializingReplication`
|
641
|
+
# @return [Google::Apis::VmmigrationV1alpha1::InitializingReplicationStep]
|
642
|
+
attr_accessor :initializing_replication
|
643
|
+
|
644
|
+
# PostProcessingStep contains specific step details.
|
645
|
+
# Corresponds to the JSON property `postProcessing`
|
646
|
+
# @return [Google::Apis::VmmigrationV1alpha1::PostProcessingStep]
|
647
|
+
attr_accessor :post_processing
|
648
|
+
|
649
|
+
# ReplicatingStep contains specific step details.
|
650
|
+
# Corresponds to the JSON property `replicating`
|
651
|
+
# @return [Google::Apis::VmmigrationV1alpha1::ReplicatingStep]
|
652
|
+
attr_accessor :replicating
|
653
|
+
|
654
|
+
# The time the cycle step has started.
|
655
|
+
# Corresponds to the JSON property `startTime`
|
656
|
+
# @return [String]
|
657
|
+
attr_accessor :start_time
|
658
|
+
|
659
|
+
def initialize(**args)
|
660
|
+
update!(**args)
|
661
|
+
end
|
662
|
+
|
663
|
+
# Update properties of this object
|
664
|
+
def update!(**args)
|
665
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
666
|
+
@initializing_replication = args[:initializing_replication] if args.key?(:initializing_replication)
|
667
|
+
@post_processing = args[:post_processing] if args.key?(:post_processing)
|
668
|
+
@replicating = args[:replicating] if args.key?(:replicating)
|
669
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
670
|
+
end
|
671
|
+
end
|
672
|
+
|
630
673
|
# DatacenterConnector message describes a connector between the Source and GCP,
|
631
674
|
# which is installed on a vmware datacenter (an OVA vm installed by the user) to
|
632
675
|
# connect the Datacenter to GCP and support vm migration data transfer.
|
@@ -840,6 +883,19 @@ module Google
|
|
840
883
|
end
|
841
884
|
end
|
842
885
|
|
886
|
+
# InitializingReplicationStep contains specific step details.
|
887
|
+
class InitializingReplicationStep
|
888
|
+
include Google::Apis::Core::Hashable
|
889
|
+
|
890
|
+
def initialize(**args)
|
891
|
+
update!(**args)
|
892
|
+
end
|
893
|
+
|
894
|
+
# Update properties of this object
|
895
|
+
def update!(**args)
|
896
|
+
end
|
897
|
+
end
|
898
|
+
|
843
899
|
# Describes a URL link.
|
844
900
|
class Link
|
845
901
|
include Google::Apis::Core::Hashable
|
@@ -1612,6 +1668,19 @@ module Google
|
|
1612
1668
|
end
|
1613
1669
|
end
|
1614
1670
|
|
1671
|
+
# PostProcessingStep contains specific step details.
|
1672
|
+
class PostProcessingStep
|
1673
|
+
include Google::Apis::Core::Hashable
|
1674
|
+
|
1675
|
+
def initialize(**args)
|
1676
|
+
update!(**args)
|
1677
|
+
end
|
1678
|
+
|
1679
|
+
# Update properties of this object
|
1680
|
+
def update!(**args)
|
1681
|
+
end
|
1682
|
+
end
|
1683
|
+
|
1615
1684
|
# Request message for 'RemoveMigration' request.
|
1616
1685
|
class RemoveGroupMigrationRequest
|
1617
1686
|
include Google::Apis::Core::Hashable
|
@@ -1631,6 +1700,43 @@ module Google
|
|
1631
1700
|
end
|
1632
1701
|
end
|
1633
1702
|
|
1703
|
+
# ReplicatingStep contains specific step details.
|
1704
|
+
class ReplicatingStep
|
1705
|
+
include Google::Apis::Core::Hashable
|
1706
|
+
|
1707
|
+
# The source disks replication rate for the last 30 minutes in bytes per second.
|
1708
|
+
# Corresponds to the JSON property `lastThirtyMinutesAverageBytesPerSecond`
|
1709
|
+
# @return [Fixnum]
|
1710
|
+
attr_accessor :last_thirty_minutes_average_bytes_per_second
|
1711
|
+
|
1712
|
+
# The source disks replication rate for the last 2 minutes in bytes per second.
|
1713
|
+
# Corresponds to the JSON property `lastTwoMinutesAverageBytesPerSecond`
|
1714
|
+
# @return [Fixnum]
|
1715
|
+
attr_accessor :last_two_minutes_average_bytes_per_second
|
1716
|
+
|
1717
|
+
# Replicated bytes in the step.
|
1718
|
+
# Corresponds to the JSON property `replicatedBytes`
|
1719
|
+
# @return [Fixnum]
|
1720
|
+
attr_accessor :replicated_bytes
|
1721
|
+
|
1722
|
+
# Total bytes to be handled in the step.
|
1723
|
+
# Corresponds to the JSON property `totalBytes`
|
1724
|
+
# @return [Fixnum]
|
1725
|
+
attr_accessor :total_bytes
|
1726
|
+
|
1727
|
+
def initialize(**args)
|
1728
|
+
update!(**args)
|
1729
|
+
end
|
1730
|
+
|
1731
|
+
# Update properties of this object
|
1732
|
+
def update!(**args)
|
1733
|
+
@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)
|
1734
|
+
@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)
|
1735
|
+
@replicated_bytes = args[:replicated_bytes] if args.key?(:replicated_bytes)
|
1736
|
+
@total_bytes = args[:total_bytes] if args.key?(:total_bytes)
|
1737
|
+
end
|
1738
|
+
end
|
1739
|
+
|
1634
1740
|
# ReplicationCycle contains information about the current replication cycle
|
1635
1741
|
# status.
|
1636
1742
|
class ReplicationCycle
|
@@ -1651,6 +1757,11 @@ module Google
|
|
1651
1757
|
# @return [String]
|
1652
1758
|
attr_accessor :start_time
|
1653
1759
|
|
1760
|
+
# The cycle's steps list reflecting its progress.
|
1761
|
+
# Corresponds to the JSON property `steps`
|
1762
|
+
# @return [Array<Google::Apis::VmmigrationV1alpha1::CycleStep>]
|
1763
|
+
attr_accessor :steps
|
1764
|
+
|
1654
1765
|
# The accumulated duration the replication cycle was paused.
|
1655
1766
|
# Corresponds to the JSON property `totalPauseDuration`
|
1656
1767
|
# @return [String]
|
@@ -1665,6 +1776,7 @@ module Google
|
|
1665
1776
|
@progress = args[:progress] if args.key?(:progress)
|
1666
1777
|
@progress_percent = args[:progress_percent] if args.key?(:progress_percent)
|
1667
1778
|
@start_time = args[:start_time] if args.key?(:start_time)
|
1779
|
+
@steps = args[:steps] if args.key?(:steps)
|
1668
1780
|
@total_pause_duration = args[:total_pause_duration] if args.key?(:total_pause_duration)
|
1669
1781
|
end
|
1670
1782
|
end
|
@@ -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.7.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220306"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -94,6 +94,12 @@ module Google
|
|
94
94
|
include Google::Apis::Core::JsonObjectSupport
|
95
95
|
end
|
96
96
|
|
97
|
+
class CycleStep
|
98
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
|
+
|
100
|
+
include Google::Apis::Core::JsonObjectSupport
|
101
|
+
end
|
102
|
+
|
97
103
|
class DatacenterConnector
|
98
104
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
105
|
|
@@ -124,6 +130,12 @@ module Google
|
|
124
130
|
include Google::Apis::Core::JsonObjectSupport
|
125
131
|
end
|
126
132
|
|
133
|
+
class InitializingReplicationStep
|
134
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
|
+
|
136
|
+
include Google::Apis::Core::JsonObjectSupport
|
137
|
+
end
|
138
|
+
|
127
139
|
class Link
|
128
140
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
141
|
|
@@ -238,12 +250,24 @@ module Google
|
|
238
250
|
include Google::Apis::Core::JsonObjectSupport
|
239
251
|
end
|
240
252
|
|
253
|
+
class PostProcessingStep
|
254
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
255
|
+
|
256
|
+
include Google::Apis::Core::JsonObjectSupport
|
257
|
+
end
|
258
|
+
|
241
259
|
class RemoveGroupMigrationRequest
|
242
260
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
261
|
|
244
262
|
include Google::Apis::Core::JsonObjectSupport
|
245
263
|
end
|
246
264
|
|
265
|
+
class ReplicatingStep
|
266
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
|
+
|
268
|
+
include Google::Apis::Core::JsonObjectSupport
|
269
|
+
end
|
270
|
+
|
247
271
|
class ReplicationCycle
|
248
272
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
249
273
|
|
@@ -508,6 +532,20 @@ module Google
|
|
508
532
|
end
|
509
533
|
end
|
510
534
|
|
535
|
+
class CycleStep
|
536
|
+
# @private
|
537
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
538
|
+
property :end_time, as: 'endTime'
|
539
|
+
property :initializing_replication, as: 'initializingReplication', class: Google::Apis::VmmigrationV1alpha1::InitializingReplicationStep, decorator: Google::Apis::VmmigrationV1alpha1::InitializingReplicationStep::Representation
|
540
|
+
|
541
|
+
property :post_processing, as: 'postProcessing', class: Google::Apis::VmmigrationV1alpha1::PostProcessingStep, decorator: Google::Apis::VmmigrationV1alpha1::PostProcessingStep::Representation
|
542
|
+
|
543
|
+
property :replicating, as: 'replicating', class: Google::Apis::VmmigrationV1alpha1::ReplicatingStep, decorator: Google::Apis::VmmigrationV1alpha1::ReplicatingStep::Representation
|
544
|
+
|
545
|
+
property :start_time, as: 'startTime'
|
546
|
+
end
|
547
|
+
end
|
548
|
+
|
511
549
|
class DatacenterConnector
|
512
550
|
# @private
|
513
551
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -563,6 +601,12 @@ module Google
|
|
563
601
|
end
|
564
602
|
end
|
565
603
|
|
604
|
+
class InitializingReplicationStep
|
605
|
+
# @private
|
606
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
607
|
+
end
|
608
|
+
end
|
609
|
+
|
566
610
|
class Link
|
567
611
|
# @private
|
568
612
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -777,6 +821,12 @@ module Google
|
|
777
821
|
end
|
778
822
|
end
|
779
823
|
|
824
|
+
class PostProcessingStep
|
825
|
+
# @private
|
826
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
827
|
+
end
|
828
|
+
end
|
829
|
+
|
780
830
|
class RemoveGroupMigrationRequest
|
781
831
|
# @private
|
782
832
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -784,12 +834,24 @@ module Google
|
|
784
834
|
end
|
785
835
|
end
|
786
836
|
|
837
|
+
class ReplicatingStep
|
838
|
+
# @private
|
839
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
840
|
+
property :last_thirty_minutes_average_bytes_per_second, :numeric_string => true, as: 'lastThirtyMinutesAverageBytesPerSecond'
|
841
|
+
property :last_two_minutes_average_bytes_per_second, :numeric_string => true, as: 'lastTwoMinutesAverageBytesPerSecond'
|
842
|
+
property :replicated_bytes, :numeric_string => true, as: 'replicatedBytes'
|
843
|
+
property :total_bytes, :numeric_string => true, as: 'totalBytes'
|
844
|
+
end
|
845
|
+
end
|
846
|
+
|
787
847
|
class ReplicationCycle
|
788
848
|
# @private
|
789
849
|
class Representation < Google::Apis::Core::JsonRepresentation
|
790
850
|
property :progress, as: 'progress'
|
791
851
|
property :progress_percent, as: 'progressPercent'
|
792
852
|
property :start_time, as: 'startTime'
|
853
|
+
collection :steps, as: 'steps', class: Google::Apis::VmmigrationV1alpha1::CycleStep, decorator: Google::Apis::VmmigrationV1alpha1::CycleStep::Representation
|
854
|
+
|
793
855
|
property :total_pause_duration, as: 'totalPauseDuration'
|
794
856
|
end
|
795
857
|
end
|
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.7.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-03-14 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.7.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: []
|