google-apis-vmmigration_v1alpha1 0.38.0 → 0.40.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: 4abae339d49ef44c132222508743a33462f2165d147e62f957feabfe1d9fdc0c
|
4
|
+
data.tar.gz: 16fe18409cb0ce30120b82674c7cff1ba84249f28164fa66ad83a93aaf847c46
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7c06e4db90c2d187977e0cfa1319eb29dc42fb2559bc9b36dd9d53356fac67237177a1d05fabfffdf203d1df16130b0ae2eaa0f357d7f0d50edca4b99e4aa083
|
7
|
+
data.tar.gz: c820db10e7e6db73f1bea2aa5fa4b769ccd2064eb66d07adfbdb28d3a6d540c7ede51b1ce4f814383ebcf5eaeee72032fcbf656be03b9451fbffe7975a1d97ed
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-vmmigration_v1alpha1
|
2
2
|
|
3
|
+
### v0.40.0 (2023-10-22)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231012
|
6
|
+
|
7
|
+
### v0.39.0 (2023-09-24)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230914
|
10
|
+
|
3
11
|
### v0.38.0 (2023-09-10)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230831
|
@@ -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::VmmigrationV1alpha1::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
|
@@ -944,12 +986,22 @@ module Google
|
|
944
986
|
# @return [Array<Google::Apis::VmmigrationV1alpha1::PersistentDiskDefaults>]
|
945
987
|
attr_accessor :disks
|
946
988
|
|
989
|
+
# Details for a disk only migration.
|
990
|
+
# Corresponds to the JSON property `disksTargetDefaults`
|
991
|
+
# @return [Google::Apis::VmmigrationV1alpha1::DisksMigrationDisksTargetDefaults]
|
992
|
+
attr_accessor :disks_target_defaults
|
993
|
+
|
947
994
|
# The full path of the resource of type TargetProject which represents the
|
948
995
|
# Compute Engine project in which to create the Persistent Disks.
|
949
996
|
# Corresponds to the JSON property `targetProject`
|
950
997
|
# @return [String]
|
951
998
|
attr_accessor :target_project
|
952
999
|
|
1000
|
+
# Details for creation of a VM that migrated data disks will be attached to.
|
1001
|
+
# Corresponds to the JSON property `vmTargetDefaults`
|
1002
|
+
# @return [Google::Apis::VmmigrationV1alpha1::DisksMigrationVmTargetDefaults]
|
1003
|
+
attr_accessor :vm_target_defaults
|
1004
|
+
|
953
1005
|
# The zone in which to create the Persistent Disks.
|
954
1006
|
# Corresponds to the JSON property `zone`
|
955
1007
|
# @return [String]
|
@@ -962,7 +1014,9 @@ module Google
|
|
962
1014
|
# Update properties of this object
|
963
1015
|
def update!(**args)
|
964
1016
|
@disks = args[:disks] if args.key?(:disks)
|
1017
|
+
@disks_target_defaults = args[:disks_target_defaults] if args.key?(:disks_target_defaults)
|
965
1018
|
@target_project = args[:target_project] if args.key?(:target_project)
|
1019
|
+
@vm_target_defaults = args[:vm_target_defaults] if args.key?(:vm_target_defaults)
|
966
1020
|
@zone = args[:zone] if args.key?(:zone)
|
967
1021
|
end
|
968
1022
|
end
|
@@ -977,6 +1031,16 @@ module Google
|
|
977
1031
|
# @return [Array<Google::Apis::VmmigrationV1alpha1::PersistentDisk>]
|
978
1032
|
attr_accessor :disks
|
979
1033
|
|
1034
|
+
# Details for a disks-only migration.
|
1035
|
+
# Corresponds to the JSON property `disksTargetDetails`
|
1036
|
+
# @return [Google::Apis::VmmigrationV1alpha1::DisksMigrationDisksTargetDetails]
|
1037
|
+
attr_accessor :disks_target_details
|
1038
|
+
|
1039
|
+
# Details for the VM created VM as part of disks migration.
|
1040
|
+
# Corresponds to the JSON property `vmTargetDetails`
|
1041
|
+
# @return [Google::Apis::VmmigrationV1alpha1::DisksMigrationVmTargetDetails]
|
1042
|
+
attr_accessor :vm_target_details
|
1043
|
+
|
980
1044
|
def initialize(**args)
|
981
1045
|
update!(**args)
|
982
1046
|
end
|
@@ -984,6 +1048,8 @@ module Google
|
|
984
1048
|
# Update properties of this object
|
985
1049
|
def update!(**args)
|
986
1050
|
@disks = args[:disks] if args.key?(:disks)
|
1051
|
+
@disks_target_details = args[:disks_target_details] if args.key?(:disks_target_details)
|
1052
|
+
@vm_target_details = args[:vm_target_details] if args.key?(:vm_target_details)
|
987
1053
|
end
|
988
1054
|
end
|
989
1055
|
|
@@ -1663,6 +1729,164 @@ module Google
|
|
1663
1729
|
end
|
1664
1730
|
end
|
1665
1731
|
|
1732
|
+
# Contains details about the image source used to create the disk.
|
1733
|
+
class DiskImageDefaults
|
1734
|
+
include Google::Apis::Core::Hashable
|
1735
|
+
|
1736
|
+
# Required. The Image resource used when creating the disk.
|
1737
|
+
# Corresponds to the JSON property `sourceImage`
|
1738
|
+
# @return [String]
|
1739
|
+
attr_accessor :source_image
|
1740
|
+
|
1741
|
+
def initialize(**args)
|
1742
|
+
update!(**args)
|
1743
|
+
end
|
1744
|
+
|
1745
|
+
# Update properties of this object
|
1746
|
+
def update!(**args)
|
1747
|
+
@source_image = args[:source_image] if args.key?(:source_image)
|
1748
|
+
end
|
1749
|
+
end
|
1750
|
+
|
1751
|
+
# Details for a disk only migration.
|
1752
|
+
class DisksMigrationDisksTargetDefaults
|
1753
|
+
include Google::Apis::Core::Hashable
|
1754
|
+
|
1755
|
+
def initialize(**args)
|
1756
|
+
update!(**args)
|
1757
|
+
end
|
1758
|
+
|
1759
|
+
# Update properties of this object
|
1760
|
+
def update!(**args)
|
1761
|
+
end
|
1762
|
+
end
|
1763
|
+
|
1764
|
+
# Details for a disks-only migration.
|
1765
|
+
class DisksMigrationDisksTargetDetails
|
1766
|
+
include Google::Apis::Core::Hashable
|
1767
|
+
|
1768
|
+
def initialize(**args)
|
1769
|
+
update!(**args)
|
1770
|
+
end
|
1771
|
+
|
1772
|
+
# Update properties of this object
|
1773
|
+
def update!(**args)
|
1774
|
+
end
|
1775
|
+
end
|
1776
|
+
|
1777
|
+
# Details for creation of a VM that migrated data disks will be attached to.
|
1778
|
+
class DisksMigrationVmTargetDefaults
|
1779
|
+
include Google::Apis::Core::Hashable
|
1780
|
+
|
1781
|
+
# Optional. Additional licenses to assign to the VM.
|
1782
|
+
# Corresponds to the JSON property `additionalLicenses`
|
1783
|
+
# @return [Array<String>]
|
1784
|
+
attr_accessor :additional_licenses
|
1785
|
+
|
1786
|
+
# BootDiskDefaults hold information about the boot disk of a VM.
|
1787
|
+
# Corresponds to the JSON property `bootDiskDefaults`
|
1788
|
+
# @return [Google::Apis::VmmigrationV1alpha1::BootDiskDefaults]
|
1789
|
+
attr_accessor :boot_disk_defaults
|
1790
|
+
|
1791
|
+
# Scheduling information for VM on maintenance/restart behaviour and node
|
1792
|
+
# allocation in sole tenant nodes.
|
1793
|
+
# Corresponds to the JSON property `computeScheduling`
|
1794
|
+
# @return [Google::Apis::VmmigrationV1alpha1::ComputeScheduling]
|
1795
|
+
attr_accessor :compute_scheduling
|
1796
|
+
|
1797
|
+
# Optional. The hostname to assign to the VM.
|
1798
|
+
# Corresponds to the JSON property `hostname`
|
1799
|
+
# @return [String]
|
1800
|
+
attr_accessor :hostname
|
1801
|
+
|
1802
|
+
# Optional. A map of labels to associate with the VM.
|
1803
|
+
# Corresponds to the JSON property `labels`
|
1804
|
+
# @return [Hash<String,String>]
|
1805
|
+
attr_accessor :labels
|
1806
|
+
|
1807
|
+
# Required. The machine type to create the VM with.
|
1808
|
+
# Corresponds to the JSON property `machineType`
|
1809
|
+
# @return [String]
|
1810
|
+
attr_accessor :machine_type
|
1811
|
+
|
1812
|
+
# Optional. The machine type series to create the VM with. For presentation only.
|
1813
|
+
# Corresponds to the JSON property `machineTypeSeries`
|
1814
|
+
# @return [String]
|
1815
|
+
attr_accessor :machine_type_series
|
1816
|
+
|
1817
|
+
# Optional. The metadata key/value pairs to assign to the VM.
|
1818
|
+
# Corresponds to the JSON property `metadata`
|
1819
|
+
# @return [Hash<String,String>]
|
1820
|
+
attr_accessor :metadata
|
1821
|
+
|
1822
|
+
# Optional. NICs to attach to the VM.
|
1823
|
+
# Corresponds to the JSON property `networkInterfaces`
|
1824
|
+
# @return [Array<Google::Apis::VmmigrationV1alpha1::NetworkInterface>]
|
1825
|
+
attr_accessor :network_interfaces
|
1826
|
+
|
1827
|
+
# Optional. A list of network tags to associate with the VM.
|
1828
|
+
# Corresponds to the JSON property `networkTags`
|
1829
|
+
# @return [Array<String>]
|
1830
|
+
attr_accessor :network_tags
|
1831
|
+
|
1832
|
+
# Optional. Defines whether the instance has Secure Boot enabled. This can be
|
1833
|
+
# set to true only if the VM boot option is EFI.
|
1834
|
+
# Corresponds to the JSON property `secureBoot`
|
1835
|
+
# @return [Boolean]
|
1836
|
+
attr_accessor :secure_boot
|
1837
|
+
alias_method :secure_boot?, :secure_boot
|
1838
|
+
|
1839
|
+
# Optional. The service account to associate the VM with.
|
1840
|
+
# Corresponds to the JSON property `serviceAccount`
|
1841
|
+
# @return [String]
|
1842
|
+
attr_accessor :service_account
|
1843
|
+
|
1844
|
+
# Required. The name of the VM to create.
|
1845
|
+
# Corresponds to the JSON property `vmName`
|
1846
|
+
# @return [String]
|
1847
|
+
attr_accessor :vm_name
|
1848
|
+
|
1849
|
+
def initialize(**args)
|
1850
|
+
update!(**args)
|
1851
|
+
end
|
1852
|
+
|
1853
|
+
# Update properties of this object
|
1854
|
+
def update!(**args)
|
1855
|
+
@additional_licenses = args[:additional_licenses] if args.key?(:additional_licenses)
|
1856
|
+
@boot_disk_defaults = args[:boot_disk_defaults] if args.key?(:boot_disk_defaults)
|
1857
|
+
@compute_scheduling = args[:compute_scheduling] if args.key?(:compute_scheduling)
|
1858
|
+
@hostname = args[:hostname] if args.key?(:hostname)
|
1859
|
+
@labels = args[:labels] if args.key?(:labels)
|
1860
|
+
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
1861
|
+
@machine_type_series = args[:machine_type_series] if args.key?(:machine_type_series)
|
1862
|
+
@metadata = args[:metadata] if args.key?(:metadata)
|
1863
|
+
@network_interfaces = args[:network_interfaces] if args.key?(:network_interfaces)
|
1864
|
+
@network_tags = args[:network_tags] if args.key?(:network_tags)
|
1865
|
+
@secure_boot = args[:secure_boot] if args.key?(:secure_boot)
|
1866
|
+
@service_account = args[:service_account] if args.key?(:service_account)
|
1867
|
+
@vm_name = args[:vm_name] if args.key?(:vm_name)
|
1868
|
+
end
|
1869
|
+
end
|
1870
|
+
|
1871
|
+
# Details for the VM created VM as part of disks migration.
|
1872
|
+
class DisksMigrationVmTargetDetails
|
1873
|
+
include Google::Apis::Core::Hashable
|
1874
|
+
|
1875
|
+
# Output only. The URI of the Compute Engine VM.
|
1876
|
+
# Corresponds to the JSON property `vmUri`
|
1877
|
+
# @return [String]
|
1878
|
+
attr_accessor :vm_uri
|
1879
|
+
|
1880
|
+
def initialize(**args)
|
1881
|
+
update!(**args)
|
1882
|
+
end
|
1883
|
+
|
1884
|
+
# Update properties of this object
|
1885
|
+
def update!(**args)
|
1886
|
+
@vm_uri = args[:vm_uri] if args.key?(:vm_uri)
|
1887
|
+
end
|
1888
|
+
end
|
1889
|
+
|
1666
1890
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
1667
1891
|
# messages in your APIs. A typical example is to use it as the request or the
|
1668
1892
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -2820,6 +3044,11 @@ module Google
|
|
2820
3044
|
# @return [Fixnum]
|
2821
3045
|
attr_accessor :source_disk_number
|
2822
3046
|
|
3047
|
+
# Details for attachment of the disk to a VM.
|
3048
|
+
# Corresponds to the JSON property `vmAttachmentDetails`
|
3049
|
+
# @return [Google::Apis::VmmigrationV1alpha1::VmAttachmentDetails]
|
3050
|
+
attr_accessor :vm_attachment_details
|
3051
|
+
|
2823
3052
|
def initialize(**args)
|
2824
3053
|
update!(**args)
|
2825
3054
|
end
|
@@ -2830,6 +3059,7 @@ module Google
|
|
2830
3059
|
@disk_name = args[:disk_name] if args.key?(:disk_name)
|
2831
3060
|
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
2832
3061
|
@source_disk_number = args[:source_disk_number] if args.key?(:source_disk_number)
|
3062
|
+
@vm_attachment_details = args[:vm_attachment_details] if args.key?(:vm_attachment_details)
|
2833
3063
|
end
|
2834
3064
|
end
|
2835
3065
|
|
@@ -3281,7 +3511,7 @@ module Google
|
|
3281
3511
|
# @return [String]
|
3282
3512
|
attr_accessor :name
|
3283
3513
|
|
3284
|
-
# The target project ID (number) or project name.
|
3514
|
+
# Required. The target project ID (number) or project name.
|
3285
3515
|
# Corresponds to the JSON property `project`
|
3286
3516
|
# @return [String]
|
3287
3517
|
attr_accessor :project
|
@@ -3617,6 +3847,30 @@ module Google
|
|
3617
3847
|
end
|
3618
3848
|
end
|
3619
3849
|
|
3850
|
+
# Details for attachment of the disk to a VM.
|
3851
|
+
class VmAttachmentDetails
|
3852
|
+
include Google::Apis::Core::Hashable
|
3853
|
+
|
3854
|
+
# Optional. Specifies a unique device name of your choice that is reflected into
|
3855
|
+
# the /dev/disk/by-id/google-* tree of a Linux operating system running within
|
3856
|
+
# the instance. If not specified, the server chooses a default device name to
|
3857
|
+
# apply to this disk, in the form persistent-disk-x, where x is a number
|
3858
|
+
# assigned by Google Compute Engine. This field is only applicable for
|
3859
|
+
# persistent disks.
|
3860
|
+
# Corresponds to the JSON property `deviceName`
|
3861
|
+
# @return [String]
|
3862
|
+
attr_accessor :device_name
|
3863
|
+
|
3864
|
+
def initialize(**args)
|
3865
|
+
update!(**args)
|
3866
|
+
end
|
3867
|
+
|
3868
|
+
# Update properties of this object
|
3869
|
+
def update!(**args)
|
3870
|
+
@device_name = args[:device_name] if args.key?(:device_name)
|
3871
|
+
end
|
3872
|
+
end
|
3873
|
+
|
3620
3874
|
# Migrating VM source information about the VM capabilities needed for some
|
3621
3875
|
# Compute Engine features.
|
3622
3876
|
class VmCapabilities
|
@@ -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.40.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 = "20231012"
|
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
|
|
@@ -526,6 +562,12 @@ module Google
|
|
526
562
|
include Google::Apis::Core::JsonObjectSupport
|
527
563
|
end
|
528
564
|
|
565
|
+
class VmAttachmentDetails
|
566
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
567
|
+
|
568
|
+
include Google::Apis::Core::JsonObjectSupport
|
569
|
+
end
|
570
|
+
|
529
571
|
class VmCapabilities
|
530
572
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
531
573
|
|
@@ -769,6 +811,17 @@ module Google
|
|
769
811
|
end
|
770
812
|
end
|
771
813
|
|
814
|
+
class BootDiskDefaults
|
815
|
+
# @private
|
816
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
817
|
+
property :device_name, as: 'deviceName'
|
818
|
+
property :disk_name, as: 'diskName'
|
819
|
+
property :disk_type, as: 'diskType'
|
820
|
+
property :image, as: 'image', class: Google::Apis::VmmigrationV1alpha1::DiskImageDefaults, decorator: Google::Apis::VmmigrationV1alpha1::DiskImageDefaults::Representation
|
821
|
+
|
822
|
+
end
|
823
|
+
end
|
824
|
+
|
772
825
|
class CancelCloneJobRequest
|
773
826
|
# @private
|
774
827
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -838,7 +891,11 @@ module Google
|
|
838
891
|
class Representation < Google::Apis::Core::JsonRepresentation
|
839
892
|
collection :disks, as: 'disks', class: Google::Apis::VmmigrationV1alpha1::PersistentDiskDefaults, decorator: Google::Apis::VmmigrationV1alpha1::PersistentDiskDefaults::Representation
|
840
893
|
|
894
|
+
property :disks_target_defaults, as: 'disksTargetDefaults', class: Google::Apis::VmmigrationV1alpha1::DisksMigrationDisksTargetDefaults, decorator: Google::Apis::VmmigrationV1alpha1::DisksMigrationDisksTargetDefaults::Representation
|
895
|
+
|
841
896
|
property :target_project, as: 'targetProject'
|
897
|
+
property :vm_target_defaults, as: 'vmTargetDefaults', class: Google::Apis::VmmigrationV1alpha1::DisksMigrationVmTargetDefaults, decorator: Google::Apis::VmmigrationV1alpha1::DisksMigrationVmTargetDefaults::Representation
|
898
|
+
|
842
899
|
property :zone, as: 'zone'
|
843
900
|
end
|
844
901
|
end
|
@@ -848,6 +905,10 @@ module Google
|
|
848
905
|
class Representation < Google::Apis::Core::JsonRepresentation
|
849
906
|
collection :disks, as: 'disks', class: Google::Apis::VmmigrationV1alpha1::PersistentDisk, decorator: Google::Apis::VmmigrationV1alpha1::PersistentDisk::Representation
|
850
907
|
|
908
|
+
property :disks_target_details, as: 'disksTargetDetails', class: Google::Apis::VmmigrationV1alpha1::DisksMigrationDisksTargetDetails, decorator: Google::Apis::VmmigrationV1alpha1::DisksMigrationDisksTargetDetails::Representation
|
909
|
+
|
910
|
+
property :vm_target_details, as: 'vmTargetDetails', class: Google::Apis::VmmigrationV1alpha1::DisksMigrationVmTargetDetails, decorator: Google::Apis::VmmigrationV1alpha1::DisksMigrationVmTargetDetails::Representation
|
911
|
+
|
851
912
|
end
|
852
913
|
end
|
853
914
|
|
@@ -1014,6 +1075,54 @@ module Google
|
|
1014
1075
|
end
|
1015
1076
|
end
|
1016
1077
|
|
1078
|
+
class DiskImageDefaults
|
1079
|
+
# @private
|
1080
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1081
|
+
property :source_image, as: 'sourceImage'
|
1082
|
+
end
|
1083
|
+
end
|
1084
|
+
|
1085
|
+
class DisksMigrationDisksTargetDefaults
|
1086
|
+
# @private
|
1087
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1088
|
+
end
|
1089
|
+
end
|
1090
|
+
|
1091
|
+
class DisksMigrationDisksTargetDetails
|
1092
|
+
# @private
|
1093
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1094
|
+
end
|
1095
|
+
end
|
1096
|
+
|
1097
|
+
class DisksMigrationVmTargetDefaults
|
1098
|
+
# @private
|
1099
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1100
|
+
collection :additional_licenses, as: 'additionalLicenses'
|
1101
|
+
property :boot_disk_defaults, as: 'bootDiskDefaults', class: Google::Apis::VmmigrationV1alpha1::BootDiskDefaults, decorator: Google::Apis::VmmigrationV1alpha1::BootDiskDefaults::Representation
|
1102
|
+
|
1103
|
+
property :compute_scheduling, as: 'computeScheduling', class: Google::Apis::VmmigrationV1alpha1::ComputeScheduling, decorator: Google::Apis::VmmigrationV1alpha1::ComputeScheduling::Representation
|
1104
|
+
|
1105
|
+
property :hostname, as: 'hostname'
|
1106
|
+
hash :labels, as: 'labels'
|
1107
|
+
property :machine_type, as: 'machineType'
|
1108
|
+
property :machine_type_series, as: 'machineTypeSeries'
|
1109
|
+
hash :metadata, as: 'metadata'
|
1110
|
+
collection :network_interfaces, as: 'networkInterfaces', class: Google::Apis::VmmigrationV1alpha1::NetworkInterface, decorator: Google::Apis::VmmigrationV1alpha1::NetworkInterface::Representation
|
1111
|
+
|
1112
|
+
collection :network_tags, as: 'networkTags'
|
1113
|
+
property :secure_boot, as: 'secureBoot'
|
1114
|
+
property :service_account, as: 'serviceAccount'
|
1115
|
+
property :vm_name, as: 'vmName'
|
1116
|
+
end
|
1117
|
+
end
|
1118
|
+
|
1119
|
+
class DisksMigrationVmTargetDetails
|
1120
|
+
# @private
|
1121
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1122
|
+
property :vm_uri, as: 'vmUri'
|
1123
|
+
end
|
1124
|
+
end
|
1125
|
+
|
1017
1126
|
class Empty
|
1018
1127
|
# @private
|
1019
1128
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1348,6 +1457,8 @@ module Google
|
|
1348
1457
|
property :disk_name, as: 'diskName'
|
1349
1458
|
property :disk_type, as: 'diskType'
|
1350
1459
|
property :source_disk_number, as: 'sourceDiskNumber'
|
1460
|
+
property :vm_attachment_details, as: 'vmAttachmentDetails', class: Google::Apis::VmmigrationV1alpha1::VmAttachmentDetails, decorator: Google::Apis::VmmigrationV1alpha1::VmAttachmentDetails::Representation
|
1461
|
+
|
1351
1462
|
end
|
1352
1463
|
end
|
1353
1464
|
|
@@ -1557,6 +1668,13 @@ module Google
|
|
1557
1668
|
end
|
1558
1669
|
end
|
1559
1670
|
|
1671
|
+
class VmAttachmentDetails
|
1672
|
+
# @private
|
1673
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1674
|
+
property :device_name, as: 'deviceName'
|
1675
|
+
end
|
1676
|
+
end
|
1677
|
+
|
1560
1678
|
class VmCapabilities
|
1561
1679
|
# @private
|
1562
1680
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.40.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-
|
11
|
+
date: 2023-10-22 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.40.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: []
|