google-apis-vmmigration_v1 0.37.0 → 0.38.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3ea89e15bad3ec87c72e682e1e329243818a34f06d1f93d7426c289e4db2bdd9
|
4
|
+
data.tar.gz: ece0d30369f46ded756784ca35346213260b4b8471a1f104129be5ac598cc3ff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d617f6bacc29b82761c5b532f020c2a8489031e160e5d0d9f7666d08e53ae097bb4a997ebd14f916e8024189dc51817340666d2425a4c283c4c3e956af0f578e
|
7
|
+
data.tar.gz: f36b33b501b8411cdaa42e6bc8653178a44a77e69b36edc8da73d7176b9eace4ba5247caeee74151195cdfd7d4011f067fac15a22ffc4d2e6807a611f2e04f36
|
data/CHANGELOG.md
CHANGED
@@ -724,6 +724,48 @@ module Google
|
|
724
724
|
end
|
725
725
|
end
|
726
726
|
|
727
|
+
# BootDiskDefaults hold information about the boot disk of a VM.
|
728
|
+
class BootDiskDefaults
|
729
|
+
include Google::Apis::Core::Hashable
|
730
|
+
|
731
|
+
# Optional. Specifies a unique device name of your choice that is reflected into
|
732
|
+
# the /dev/disk/by-id/google-* tree of a Linux operating system running within
|
733
|
+
# the instance. If not specified, the server chooses a default device name to
|
734
|
+
# apply to this disk, in the form persistent-disk-x, where x is a number
|
735
|
+
# assigned by Google Compute Engine. This field is only applicable for
|
736
|
+
# persistent disks.
|
737
|
+
# Corresponds to the JSON property `deviceName`
|
738
|
+
# @return [String]
|
739
|
+
attr_accessor :device_name
|
740
|
+
|
741
|
+
# Optional. The name of the disk.
|
742
|
+
# Corresponds to the JSON property `diskName`
|
743
|
+
# @return [String]
|
744
|
+
attr_accessor :disk_name
|
745
|
+
|
746
|
+
# Optional. The type of disk provisioning to use for the VM.
|
747
|
+
# Corresponds to the JSON property `diskType`
|
748
|
+
# @return [String]
|
749
|
+
attr_accessor :disk_type
|
750
|
+
|
751
|
+
# Contains details about the image source used to create the disk.
|
752
|
+
# Corresponds to the JSON property `image`
|
753
|
+
# @return [Google::Apis::VmmigrationV1::DiskImageDefaults]
|
754
|
+
attr_accessor :image
|
755
|
+
|
756
|
+
def initialize(**args)
|
757
|
+
update!(**args)
|
758
|
+
end
|
759
|
+
|
760
|
+
# Update properties of this object
|
761
|
+
def update!(**args)
|
762
|
+
@device_name = args[:device_name] if args.key?(:device_name)
|
763
|
+
@disk_name = args[:disk_name] if args.key?(:disk_name)
|
764
|
+
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
765
|
+
@image = args[:image] if args.key?(:image)
|
766
|
+
end
|
767
|
+
end
|
768
|
+
|
727
769
|
# Request message for 'CancelCloneJob' request.
|
728
770
|
class CancelCloneJobRequest
|
729
771
|
include Google::Apis::Core::Hashable
|
@@ -930,12 +972,22 @@ module Google
|
|
930
972
|
# @return [Array<Google::Apis::VmmigrationV1::PersistentDiskDefaults>]
|
931
973
|
attr_accessor :disks
|
932
974
|
|
975
|
+
# Details for a disk only migration.
|
976
|
+
# Corresponds to the JSON property `disksTargetDefaults`
|
977
|
+
# @return [Google::Apis::VmmigrationV1::DisksMigrationDisksTargetDefaults]
|
978
|
+
attr_accessor :disks_target_defaults
|
979
|
+
|
933
980
|
# The full path of the resource of type TargetProject which represents the
|
934
981
|
# Compute Engine project in which to create the Persistent Disks.
|
935
982
|
# Corresponds to the JSON property `targetProject`
|
936
983
|
# @return [String]
|
937
984
|
attr_accessor :target_project
|
938
985
|
|
986
|
+
# Details for creation of a VM that migrated data disks will be attached to.
|
987
|
+
# Corresponds to the JSON property `vmTargetDefaults`
|
988
|
+
# @return [Google::Apis::VmmigrationV1::DisksMigrationVmTargetDefaults]
|
989
|
+
attr_accessor :vm_target_defaults
|
990
|
+
|
939
991
|
# The zone in which to create the Persistent Disks.
|
940
992
|
# Corresponds to the JSON property `zone`
|
941
993
|
# @return [String]
|
@@ -948,7 +1000,9 @@ module Google
|
|
948
1000
|
# Update properties of this object
|
949
1001
|
def update!(**args)
|
950
1002
|
@disks = args[:disks] if args.key?(:disks)
|
1003
|
+
@disks_target_defaults = args[:disks_target_defaults] if args.key?(:disks_target_defaults)
|
951
1004
|
@target_project = args[:target_project] if args.key?(:target_project)
|
1005
|
+
@vm_target_defaults = args[:vm_target_defaults] if args.key?(:vm_target_defaults)
|
952
1006
|
@zone = args[:zone] if args.key?(:zone)
|
953
1007
|
end
|
954
1008
|
end
|
@@ -963,6 +1017,16 @@ module Google
|
|
963
1017
|
# @return [Array<Google::Apis::VmmigrationV1::PersistentDisk>]
|
964
1018
|
attr_accessor :disks
|
965
1019
|
|
1020
|
+
# Details for a disks-only migration.
|
1021
|
+
# Corresponds to the JSON property `disksTargetDetails`
|
1022
|
+
# @return [Google::Apis::VmmigrationV1::DisksMigrationDisksTargetDetails]
|
1023
|
+
attr_accessor :disks_target_details
|
1024
|
+
|
1025
|
+
# Details for the VM created VM as part of disks migration.
|
1026
|
+
# Corresponds to the JSON property `vmTargetDetails`
|
1027
|
+
# @return [Google::Apis::VmmigrationV1::DisksMigrationVmTargetDetails]
|
1028
|
+
attr_accessor :vm_target_details
|
1029
|
+
|
966
1030
|
def initialize(**args)
|
967
1031
|
update!(**args)
|
968
1032
|
end
|
@@ -970,6 +1034,8 @@ module Google
|
|
970
1034
|
# Update properties of this object
|
971
1035
|
def update!(**args)
|
972
1036
|
@disks = args[:disks] if args.key?(:disks)
|
1037
|
+
@disks_target_details = args[:disks_target_details] if args.key?(:disks_target_details)
|
1038
|
+
@vm_target_details = args[:vm_target_details] if args.key?(:vm_target_details)
|
973
1039
|
end
|
974
1040
|
end
|
975
1041
|
|
@@ -1622,6 +1688,164 @@ module Google
|
|
1622
1688
|
end
|
1623
1689
|
end
|
1624
1690
|
|
1691
|
+
# Contains details about the image source used to create the disk.
|
1692
|
+
class DiskImageDefaults
|
1693
|
+
include Google::Apis::Core::Hashable
|
1694
|
+
|
1695
|
+
# Required. The Image resource used when creating the disk.
|
1696
|
+
# Corresponds to the JSON property `sourceImage`
|
1697
|
+
# @return [String]
|
1698
|
+
attr_accessor :source_image
|
1699
|
+
|
1700
|
+
def initialize(**args)
|
1701
|
+
update!(**args)
|
1702
|
+
end
|
1703
|
+
|
1704
|
+
# Update properties of this object
|
1705
|
+
def update!(**args)
|
1706
|
+
@source_image = args[:source_image] if args.key?(:source_image)
|
1707
|
+
end
|
1708
|
+
end
|
1709
|
+
|
1710
|
+
# Details for a disk only migration.
|
1711
|
+
class DisksMigrationDisksTargetDefaults
|
1712
|
+
include Google::Apis::Core::Hashable
|
1713
|
+
|
1714
|
+
def initialize(**args)
|
1715
|
+
update!(**args)
|
1716
|
+
end
|
1717
|
+
|
1718
|
+
# Update properties of this object
|
1719
|
+
def update!(**args)
|
1720
|
+
end
|
1721
|
+
end
|
1722
|
+
|
1723
|
+
# Details for a disks-only migration.
|
1724
|
+
class DisksMigrationDisksTargetDetails
|
1725
|
+
include Google::Apis::Core::Hashable
|
1726
|
+
|
1727
|
+
def initialize(**args)
|
1728
|
+
update!(**args)
|
1729
|
+
end
|
1730
|
+
|
1731
|
+
# Update properties of this object
|
1732
|
+
def update!(**args)
|
1733
|
+
end
|
1734
|
+
end
|
1735
|
+
|
1736
|
+
# Details for creation of a VM that migrated data disks will be attached to.
|
1737
|
+
class DisksMigrationVmTargetDefaults
|
1738
|
+
include Google::Apis::Core::Hashable
|
1739
|
+
|
1740
|
+
# Optional. Additional licenses to assign to the VM.
|
1741
|
+
# Corresponds to the JSON property `additionalLicenses`
|
1742
|
+
# @return [Array<String>]
|
1743
|
+
attr_accessor :additional_licenses
|
1744
|
+
|
1745
|
+
# BootDiskDefaults hold information about the boot disk of a VM.
|
1746
|
+
# Corresponds to the JSON property `bootDiskDefaults`
|
1747
|
+
# @return [Google::Apis::VmmigrationV1::BootDiskDefaults]
|
1748
|
+
attr_accessor :boot_disk_defaults
|
1749
|
+
|
1750
|
+
# Scheduling information for VM on maintenance/restart behaviour and node
|
1751
|
+
# allocation in sole tenant nodes.
|
1752
|
+
# Corresponds to the JSON property `computeScheduling`
|
1753
|
+
# @return [Google::Apis::VmmigrationV1::ComputeScheduling]
|
1754
|
+
attr_accessor :compute_scheduling
|
1755
|
+
|
1756
|
+
# Optional. The hostname to assign to the VM.
|
1757
|
+
# Corresponds to the JSON property `hostname`
|
1758
|
+
# @return [String]
|
1759
|
+
attr_accessor :hostname
|
1760
|
+
|
1761
|
+
# Optional. A map of labels to associate with the VM.
|
1762
|
+
# Corresponds to the JSON property `labels`
|
1763
|
+
# @return [Hash<String,String>]
|
1764
|
+
attr_accessor :labels
|
1765
|
+
|
1766
|
+
# Required. The machine type to create the VM with.
|
1767
|
+
# Corresponds to the JSON property `machineType`
|
1768
|
+
# @return [String]
|
1769
|
+
attr_accessor :machine_type
|
1770
|
+
|
1771
|
+
# Optional. The machine type series to create the VM with. For presentation only.
|
1772
|
+
# Corresponds to the JSON property `machineTypeSeries`
|
1773
|
+
# @return [String]
|
1774
|
+
attr_accessor :machine_type_series
|
1775
|
+
|
1776
|
+
# Optional. The metadata key/value pairs to assign to the VM.
|
1777
|
+
# Corresponds to the JSON property `metadata`
|
1778
|
+
# @return [Hash<String,String>]
|
1779
|
+
attr_accessor :metadata
|
1780
|
+
|
1781
|
+
# Optional. NICs to attach to the VM.
|
1782
|
+
# Corresponds to the JSON property `networkInterfaces`
|
1783
|
+
# @return [Array<Google::Apis::VmmigrationV1::NetworkInterface>]
|
1784
|
+
attr_accessor :network_interfaces
|
1785
|
+
|
1786
|
+
# Optional. A list of network tags to associate with the VM.
|
1787
|
+
# Corresponds to the JSON property `networkTags`
|
1788
|
+
# @return [Array<String>]
|
1789
|
+
attr_accessor :network_tags
|
1790
|
+
|
1791
|
+
# Optional. Defines whether the instance has Secure Boot enabled. This can be
|
1792
|
+
# set to true only if the VM boot option is EFI.
|
1793
|
+
# Corresponds to the JSON property `secureBoot`
|
1794
|
+
# @return [Boolean]
|
1795
|
+
attr_accessor :secure_boot
|
1796
|
+
alias_method :secure_boot?, :secure_boot
|
1797
|
+
|
1798
|
+
# Optional. The service account to associate the VM with.
|
1799
|
+
# Corresponds to the JSON property `serviceAccount`
|
1800
|
+
# @return [String]
|
1801
|
+
attr_accessor :service_account
|
1802
|
+
|
1803
|
+
# Required. The name of the VM to create.
|
1804
|
+
# Corresponds to the JSON property `vmName`
|
1805
|
+
# @return [String]
|
1806
|
+
attr_accessor :vm_name
|
1807
|
+
|
1808
|
+
def initialize(**args)
|
1809
|
+
update!(**args)
|
1810
|
+
end
|
1811
|
+
|
1812
|
+
# Update properties of this object
|
1813
|
+
def update!(**args)
|
1814
|
+
@additional_licenses = args[:additional_licenses] if args.key?(:additional_licenses)
|
1815
|
+
@boot_disk_defaults = args[:boot_disk_defaults] if args.key?(:boot_disk_defaults)
|
1816
|
+
@compute_scheduling = args[:compute_scheduling] if args.key?(:compute_scheduling)
|
1817
|
+
@hostname = args[:hostname] if args.key?(:hostname)
|
1818
|
+
@labels = args[:labels] if args.key?(:labels)
|
1819
|
+
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
1820
|
+
@machine_type_series = args[:machine_type_series] if args.key?(:machine_type_series)
|
1821
|
+
@metadata = args[:metadata] if args.key?(:metadata)
|
1822
|
+
@network_interfaces = args[:network_interfaces] if args.key?(:network_interfaces)
|
1823
|
+
@network_tags = args[:network_tags] if args.key?(:network_tags)
|
1824
|
+
@secure_boot = args[:secure_boot] if args.key?(:secure_boot)
|
1825
|
+
@service_account = args[:service_account] if args.key?(:service_account)
|
1826
|
+
@vm_name = args[:vm_name] if args.key?(:vm_name)
|
1827
|
+
end
|
1828
|
+
end
|
1829
|
+
|
1830
|
+
# Details for the VM created VM as part of disks migration.
|
1831
|
+
class DisksMigrationVmTargetDetails
|
1832
|
+
include Google::Apis::Core::Hashable
|
1833
|
+
|
1834
|
+
# Output only. The URI of the Compute Engine VM.
|
1835
|
+
# Corresponds to the JSON property `vmUri`
|
1836
|
+
# @return [String]
|
1837
|
+
attr_accessor :vm_uri
|
1838
|
+
|
1839
|
+
def initialize(**args)
|
1840
|
+
update!(**args)
|
1841
|
+
end
|
1842
|
+
|
1843
|
+
# Update properties of this object
|
1844
|
+
def update!(**args)
|
1845
|
+
@vm_uri = args[:vm_uri] if args.key?(:vm_uri)
|
1846
|
+
end
|
1847
|
+
end
|
1848
|
+
|
1625
1849
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
1626
1850
|
# messages in your APIs. A typical example is to use it as the request or the
|
1627
1851
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -2765,6 +2989,11 @@ module Google
|
|
2765
2989
|
# @return [Fixnum]
|
2766
2990
|
attr_accessor :source_disk_number
|
2767
2991
|
|
2992
|
+
# Details for attachment of the disk to a VM.
|
2993
|
+
# Corresponds to the JSON property `vmAttachmentDetails`
|
2994
|
+
# @return [Google::Apis::VmmigrationV1::VmAttachmentDetails]
|
2995
|
+
attr_accessor :vm_attachment_details
|
2996
|
+
|
2768
2997
|
def initialize(**args)
|
2769
2998
|
update!(**args)
|
2770
2999
|
end
|
@@ -2775,6 +3004,7 @@ module Google
|
|
2775
3004
|
@disk_name = args[:disk_name] if args.key?(:disk_name)
|
2776
3005
|
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
2777
3006
|
@source_disk_number = args[:source_disk_number] if args.key?(:source_disk_number)
|
3007
|
+
@vm_attachment_details = args[:vm_attachment_details] if args.key?(:vm_attachment_details)
|
2778
3008
|
end
|
2779
3009
|
end
|
2780
3010
|
|
@@ -3394,6 +3624,30 @@ module Google
|
|
3394
3624
|
end
|
3395
3625
|
end
|
3396
3626
|
|
3627
|
+
# Details for attachment of the disk to a VM.
|
3628
|
+
class VmAttachmentDetails
|
3629
|
+
include Google::Apis::Core::Hashable
|
3630
|
+
|
3631
|
+
# Optional. Specifies a unique device name of your choice that is reflected into
|
3632
|
+
# the /dev/disk/by-id/google-* tree of a Linux operating system running within
|
3633
|
+
# the instance. If not specified, the server chooses a default device name to
|
3634
|
+
# apply to this disk, in the form persistent-disk-x, where x is a number
|
3635
|
+
# assigned by Google Compute Engine. This field is only applicable for
|
3636
|
+
# persistent disks.
|
3637
|
+
# Corresponds to the JSON property `deviceName`
|
3638
|
+
# @return [String]
|
3639
|
+
attr_accessor :device_name
|
3640
|
+
|
3641
|
+
def initialize(**args)
|
3642
|
+
update!(**args)
|
3643
|
+
end
|
3644
|
+
|
3645
|
+
# Update properties of this object
|
3646
|
+
def update!(**args)
|
3647
|
+
@device_name = args[:device_name] if args.key?(:device_name)
|
3648
|
+
end
|
3649
|
+
end
|
3650
|
+
|
3397
3651
|
# Migrating VM source information about the VM capabilities needed for some
|
3398
3652
|
# Compute Engine features.
|
3399
3653
|
class VmCapabilities
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.38.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 = "20230914"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -124,6 +124,12 @@ module Google
|
|
124
124
|
include Google::Apis::Core::JsonObjectSupport
|
125
125
|
end
|
126
126
|
|
127
|
+
class BootDiskDefaults
|
128
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
|
+
|
130
|
+
include Google::Apis::Core::JsonObjectSupport
|
131
|
+
end
|
132
|
+
|
127
133
|
class CancelCloneJobRequest
|
128
134
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
135
|
|
@@ -226,6 +232,36 @@ module Google
|
|
226
232
|
include Google::Apis::Core::JsonObjectSupport
|
227
233
|
end
|
228
234
|
|
235
|
+
class DiskImageDefaults
|
236
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
|
+
|
238
|
+
include Google::Apis::Core::JsonObjectSupport
|
239
|
+
end
|
240
|
+
|
241
|
+
class DisksMigrationDisksTargetDefaults
|
242
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
|
+
|
244
|
+
include Google::Apis::Core::JsonObjectSupport
|
245
|
+
end
|
246
|
+
|
247
|
+
class DisksMigrationDisksTargetDetails
|
248
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
249
|
+
|
250
|
+
include Google::Apis::Core::JsonObjectSupport
|
251
|
+
end
|
252
|
+
|
253
|
+
class DisksMigrationVmTargetDefaults
|
254
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
255
|
+
|
256
|
+
include Google::Apis::Core::JsonObjectSupport
|
257
|
+
end
|
258
|
+
|
259
|
+
class DisksMigrationVmTargetDetails
|
260
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
|
+
|
262
|
+
include Google::Apis::Core::JsonObjectSupport
|
263
|
+
end
|
264
|
+
|
229
265
|
class Empty
|
230
266
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
267
|
|
@@ -520,6 +556,12 @@ module Google
|
|
520
556
|
include Google::Apis::Core::JsonObjectSupport
|
521
557
|
end
|
522
558
|
|
559
|
+
class VmAttachmentDetails
|
560
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
561
|
+
|
562
|
+
include Google::Apis::Core::JsonObjectSupport
|
563
|
+
end
|
564
|
+
|
523
565
|
class VmCapabilities
|
524
566
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
525
567
|
|
@@ -763,6 +805,17 @@ module Google
|
|
763
805
|
end
|
764
806
|
end
|
765
807
|
|
808
|
+
class BootDiskDefaults
|
809
|
+
# @private
|
810
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
811
|
+
property :device_name, as: 'deviceName'
|
812
|
+
property :disk_name, as: 'diskName'
|
813
|
+
property :disk_type, as: 'diskType'
|
814
|
+
property :image, as: 'image', class: Google::Apis::VmmigrationV1::DiskImageDefaults, decorator: Google::Apis::VmmigrationV1::DiskImageDefaults::Representation
|
815
|
+
|
816
|
+
end
|
817
|
+
end
|
818
|
+
|
766
819
|
class CancelCloneJobRequest
|
767
820
|
# @private
|
768
821
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -828,7 +881,11 @@ module Google
|
|
828
881
|
class Representation < Google::Apis::Core::JsonRepresentation
|
829
882
|
collection :disks, as: 'disks', class: Google::Apis::VmmigrationV1::PersistentDiskDefaults, decorator: Google::Apis::VmmigrationV1::PersistentDiskDefaults::Representation
|
830
883
|
|
884
|
+
property :disks_target_defaults, as: 'disksTargetDefaults', class: Google::Apis::VmmigrationV1::DisksMigrationDisksTargetDefaults, decorator: Google::Apis::VmmigrationV1::DisksMigrationDisksTargetDefaults::Representation
|
885
|
+
|
831
886
|
property :target_project, as: 'targetProject'
|
887
|
+
property :vm_target_defaults, as: 'vmTargetDefaults', class: Google::Apis::VmmigrationV1::DisksMigrationVmTargetDefaults, decorator: Google::Apis::VmmigrationV1::DisksMigrationVmTargetDefaults::Representation
|
888
|
+
|
832
889
|
property :zone, as: 'zone'
|
833
890
|
end
|
834
891
|
end
|
@@ -838,6 +895,10 @@ module Google
|
|
838
895
|
class Representation < Google::Apis::Core::JsonRepresentation
|
839
896
|
collection :disks, as: 'disks', class: Google::Apis::VmmigrationV1::PersistentDisk, decorator: Google::Apis::VmmigrationV1::PersistentDisk::Representation
|
840
897
|
|
898
|
+
property :disks_target_details, as: 'disksTargetDetails', class: Google::Apis::VmmigrationV1::DisksMigrationDisksTargetDetails, decorator: Google::Apis::VmmigrationV1::DisksMigrationDisksTargetDetails::Representation
|
899
|
+
|
900
|
+
property :vm_target_details, as: 'vmTargetDetails', class: Google::Apis::VmmigrationV1::DisksMigrationVmTargetDetails, decorator: Google::Apis::VmmigrationV1::DisksMigrationVmTargetDetails::Representation
|
901
|
+
|
841
902
|
end
|
842
903
|
end
|
843
904
|
|
@@ -998,6 +1059,54 @@ module Google
|
|
998
1059
|
end
|
999
1060
|
end
|
1000
1061
|
|
1062
|
+
class DiskImageDefaults
|
1063
|
+
# @private
|
1064
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1065
|
+
property :source_image, as: 'sourceImage'
|
1066
|
+
end
|
1067
|
+
end
|
1068
|
+
|
1069
|
+
class DisksMigrationDisksTargetDefaults
|
1070
|
+
# @private
|
1071
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1072
|
+
end
|
1073
|
+
end
|
1074
|
+
|
1075
|
+
class DisksMigrationDisksTargetDetails
|
1076
|
+
# @private
|
1077
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1078
|
+
end
|
1079
|
+
end
|
1080
|
+
|
1081
|
+
class DisksMigrationVmTargetDefaults
|
1082
|
+
# @private
|
1083
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1084
|
+
collection :additional_licenses, as: 'additionalLicenses'
|
1085
|
+
property :boot_disk_defaults, as: 'bootDiskDefaults', class: Google::Apis::VmmigrationV1::BootDiskDefaults, decorator: Google::Apis::VmmigrationV1::BootDiskDefaults::Representation
|
1086
|
+
|
1087
|
+
property :compute_scheduling, as: 'computeScheduling', class: Google::Apis::VmmigrationV1::ComputeScheduling, decorator: Google::Apis::VmmigrationV1::ComputeScheduling::Representation
|
1088
|
+
|
1089
|
+
property :hostname, as: 'hostname'
|
1090
|
+
hash :labels, as: 'labels'
|
1091
|
+
property :machine_type, as: 'machineType'
|
1092
|
+
property :machine_type_series, as: 'machineTypeSeries'
|
1093
|
+
hash :metadata, as: 'metadata'
|
1094
|
+
collection :network_interfaces, as: 'networkInterfaces', class: Google::Apis::VmmigrationV1::NetworkInterface, decorator: Google::Apis::VmmigrationV1::NetworkInterface::Representation
|
1095
|
+
|
1096
|
+
collection :network_tags, as: 'networkTags'
|
1097
|
+
property :secure_boot, as: 'secureBoot'
|
1098
|
+
property :service_account, as: 'serviceAccount'
|
1099
|
+
property :vm_name, as: 'vmName'
|
1100
|
+
end
|
1101
|
+
end
|
1102
|
+
|
1103
|
+
class DisksMigrationVmTargetDetails
|
1104
|
+
# @private
|
1105
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1106
|
+
property :vm_uri, as: 'vmUri'
|
1107
|
+
end
|
1108
|
+
end
|
1109
|
+
|
1001
1110
|
class Empty
|
1002
1111
|
# @private
|
1003
1112
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1328,6 +1437,8 @@ module Google
|
|
1328
1437
|
property :disk_name, as: 'diskName'
|
1329
1438
|
property :disk_type, as: 'diskType'
|
1330
1439
|
property :source_disk_number, as: 'sourceDiskNumber'
|
1440
|
+
property :vm_attachment_details, as: 'vmAttachmentDetails', class: Google::Apis::VmmigrationV1::VmAttachmentDetails, decorator: Google::Apis::VmmigrationV1::VmAttachmentDetails::Representation
|
1441
|
+
|
1331
1442
|
end
|
1332
1443
|
end
|
1333
1444
|
|
@@ -1503,6 +1614,13 @@ module Google
|
|
1503
1614
|
end
|
1504
1615
|
end
|
1505
1616
|
|
1617
|
+
class VmAttachmentDetails
|
1618
|
+
# @private
|
1619
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1620
|
+
property :device_name, as: 'deviceName'
|
1621
|
+
end
|
1622
|
+
end
|
1623
|
+
|
1506
1624
|
class VmCapabilities
|
1507
1625
|
# @private
|
1508
1626
|
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.
|
4
|
+
version: 0.38.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-09-
|
11
|
+
date: 2023-09-24 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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1/v0.38.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: []
|