google-apis-vmmigration_v1alpha1 0.6.0 → 0.9.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 +4 -4
- data/CHANGELOG.md +12 -0
- data/lib/google/apis/vmmigration_v1alpha1/classes.rb +113 -2
- data/lib/google/apis/vmmigration_v1alpha1/gem_version.rb +2 -2
- data/lib/google/apis/vmmigration_v1alpha1/representations.rb +62 -0
- data/lib/google/apis/vmmigration_v1alpha1/service.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9f6a9bbfe4bcf1e87d7181d27d9ce75f058de342cb1afb2b8c50d9b276cbc9d2
|
4
|
+
data.tar.gz: bb7ebce51ecb6d60b0323b1de3030856f23d0c7b5ca3abce3a3551cf137fb644
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 31e8b52f1222b1b641ff58a3ef2c87589dc4f3ca460e174cabacc3ba60ae45210ea79c38152b86051e837db1fe1efe1e17c37c446a8488f71a59d955aa3d7547
|
7
|
+
data.tar.gz: a9e022a081f9e9fc23c13990997236c77f79d79de62cfec94e21b1d0da264e2dcc715077386ff54acb541a8fb71b9a715996cc47571cc96c36fc073d796e533f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-vmmigration_v1alpha1
|
2
2
|
|
3
|
+
### v0.9.0 (2022-04-08)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220401
|
6
|
+
|
7
|
+
### v0.8.0 (2022-04-02)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220327
|
10
|
+
|
11
|
+
### v0.7.0 (2022-03-12)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220306
|
14
|
+
|
3
15
|
### v0.6.0 (2022-02-10)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220203
|
@@ -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.
|
@@ -743,8 +786,7 @@ module Google
|
|
743
786
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
744
787
|
# messages in your APIs. A typical example is to use it as the request or the
|
745
788
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
746
|
-
# protobuf.Empty) returns (google.protobuf.Empty); `
|
747
|
-
# `Empty` is empty JSON object ````.
|
789
|
+
# protobuf.Empty) returns (google.protobuf.Empty); `
|
748
790
|
class Empty
|
749
791
|
include Google::Apis::Core::Hashable
|
750
792
|
|
@@ -840,6 +882,19 @@ module Google
|
|
840
882
|
end
|
841
883
|
end
|
842
884
|
|
885
|
+
# InitializingReplicationStep contains specific step details.
|
886
|
+
class InitializingReplicationStep
|
887
|
+
include Google::Apis::Core::Hashable
|
888
|
+
|
889
|
+
def initialize(**args)
|
890
|
+
update!(**args)
|
891
|
+
end
|
892
|
+
|
893
|
+
# Update properties of this object
|
894
|
+
def update!(**args)
|
895
|
+
end
|
896
|
+
end
|
897
|
+
|
843
898
|
# Describes a URL link.
|
844
899
|
class Link
|
845
900
|
include Google::Apis::Core::Hashable
|
@@ -1612,6 +1667,19 @@ module Google
|
|
1612
1667
|
end
|
1613
1668
|
end
|
1614
1669
|
|
1670
|
+
# PostProcessingStep contains specific step details.
|
1671
|
+
class PostProcessingStep
|
1672
|
+
include Google::Apis::Core::Hashable
|
1673
|
+
|
1674
|
+
def initialize(**args)
|
1675
|
+
update!(**args)
|
1676
|
+
end
|
1677
|
+
|
1678
|
+
# Update properties of this object
|
1679
|
+
def update!(**args)
|
1680
|
+
end
|
1681
|
+
end
|
1682
|
+
|
1615
1683
|
# Request message for 'RemoveMigration' request.
|
1616
1684
|
class RemoveGroupMigrationRequest
|
1617
1685
|
include Google::Apis::Core::Hashable
|
@@ -1631,6 +1699,43 @@ module Google
|
|
1631
1699
|
end
|
1632
1700
|
end
|
1633
1701
|
|
1702
|
+
# ReplicatingStep contains specific step details.
|
1703
|
+
class ReplicatingStep
|
1704
|
+
include Google::Apis::Core::Hashable
|
1705
|
+
|
1706
|
+
# The source disks replication rate for the last 30 minutes in bytes per second.
|
1707
|
+
# Corresponds to the JSON property `lastThirtyMinutesAverageBytesPerSecond`
|
1708
|
+
# @return [Fixnum]
|
1709
|
+
attr_accessor :last_thirty_minutes_average_bytes_per_second
|
1710
|
+
|
1711
|
+
# The source disks replication rate for the last 2 minutes in bytes per second.
|
1712
|
+
# Corresponds to the JSON property `lastTwoMinutesAverageBytesPerSecond`
|
1713
|
+
# @return [Fixnum]
|
1714
|
+
attr_accessor :last_two_minutes_average_bytes_per_second
|
1715
|
+
|
1716
|
+
# Replicated bytes in the step.
|
1717
|
+
# Corresponds to the JSON property `replicatedBytes`
|
1718
|
+
# @return [Fixnum]
|
1719
|
+
attr_accessor :replicated_bytes
|
1720
|
+
|
1721
|
+
# Total bytes to be handled in the step.
|
1722
|
+
# Corresponds to the JSON property `totalBytes`
|
1723
|
+
# @return [Fixnum]
|
1724
|
+
attr_accessor :total_bytes
|
1725
|
+
|
1726
|
+
def initialize(**args)
|
1727
|
+
update!(**args)
|
1728
|
+
end
|
1729
|
+
|
1730
|
+
# Update properties of this object
|
1731
|
+
def update!(**args)
|
1732
|
+
@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)
|
1733
|
+
@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)
|
1734
|
+
@replicated_bytes = args[:replicated_bytes] if args.key?(:replicated_bytes)
|
1735
|
+
@total_bytes = args[:total_bytes] if args.key?(:total_bytes)
|
1736
|
+
end
|
1737
|
+
end
|
1738
|
+
|
1634
1739
|
# ReplicationCycle contains information about the current replication cycle
|
1635
1740
|
# status.
|
1636
1741
|
class ReplicationCycle
|
@@ -1651,6 +1756,11 @@ module Google
|
|
1651
1756
|
# @return [String]
|
1652
1757
|
attr_accessor :start_time
|
1653
1758
|
|
1759
|
+
# The cycle's steps list representing its progress.
|
1760
|
+
# Corresponds to the JSON property `steps`
|
1761
|
+
# @return [Array<Google::Apis::VmmigrationV1alpha1::CycleStep>]
|
1762
|
+
attr_accessor :steps
|
1763
|
+
|
1654
1764
|
# The accumulated duration the replication cycle was paused.
|
1655
1765
|
# Corresponds to the JSON property `totalPauseDuration`
|
1656
1766
|
# @return [String]
|
@@ -1665,6 +1775,7 @@ module Google
|
|
1665
1775
|
@progress = args[:progress] if args.key?(:progress)
|
1666
1776
|
@progress_percent = args[:progress_percent] if args.key?(:progress_percent)
|
1667
1777
|
@start_time = args[:start_time] if args.key?(:start_time)
|
1778
|
+
@steps = args[:steps] if args.key?(:steps)
|
1668
1779
|
@total_pause_duration = args[:total_pause_duration] if args.key?(:total_pause_duration)
|
1669
1780
|
end
|
1670
1781
|
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.9.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 = "20220401"
|
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
|
@@ -84,8 +84,8 @@ module Google
|
|
84
84
|
# The resource that owns the locations collection, if applicable.
|
85
85
|
# @param [String] filter
|
86
86
|
# A filter to narrow down results to a preferred subset. The filtering language
|
87
|
-
# accepts strings like "displayName=tokyo"
|
88
|
-
# AIP-160](https://google.aip.dev/160).
|
87
|
+
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
88
|
+
# in [AIP-160](https://google.aip.dev/160).
|
89
89
|
# @param [Fixnum] page_size
|
90
90
|
# The maximum number of results to return. If not set, the service selects a
|
91
91
|
# default.
|
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.9.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-04-11 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.9.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: []
|