google-apis-vmmigration_v1 0.70.0 → 0.72.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: 2a1e9a8ed0a8cddd37d2374d7010c54eefc79389c017148ce73ff18f89ce24fb
|
|
4
|
+
data.tar.gz: f0f6eb181a586296e51a54b93da1bcdcbcdb28731b5652dd05dfceb4230125e4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c15740c486596c447df42f59b0f576915bf99216b056e61afb50d05069069d76146f76c8e6a2eb7547b0da66b47e61c50ef17915623a466c35dc61d318bfbac5
|
|
7
|
+
data.tar.gz: 6a2eddb322deb763a86f821306d0e15269d776fbed4320141613f0104de6419c23980f4737e8e51fec23b06be841b6b5a314f177d46a9c24d102ed0123c5d849
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-vmmigration_v1
|
|
2
2
|
|
|
3
|
+
### v0.72.0 (2025-11-16)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251106
|
|
6
|
+
|
|
7
|
+
### v0.71.0 (2025-11-09)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251030
|
|
10
|
+
|
|
3
11
|
### v0.70.0 (2025-11-02)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251023
|
|
@@ -1329,6 +1329,15 @@ module Google
|
|
|
1329
1329
|
# @return [String]
|
|
1330
1330
|
attr_accessor :service_account
|
|
1331
1331
|
|
|
1332
|
+
# Optional. If specified this will be the storage pool in which the disk is
|
|
1333
|
+
# created. This is the full path of the storage pool resource, for example: "
|
|
1334
|
+
# projects/my-project/zones/us-central1-a/storagePools/my-storage-pool". The
|
|
1335
|
+
# storage pool must be in the same project and zone as the target disks. The
|
|
1336
|
+
# storage pool's type must match the disk type.
|
|
1337
|
+
# Corresponds to the JSON property `storagePool`
|
|
1338
|
+
# @return [String]
|
|
1339
|
+
attr_accessor :storage_pool
|
|
1340
|
+
|
|
1332
1341
|
# The full path of the resource of type TargetProject which represents the
|
|
1333
1342
|
# Compute Engine project in which to create this VM.
|
|
1334
1343
|
# Corresponds to the JSON property `targetProject`
|
|
@@ -1372,6 +1381,7 @@ module Google
|
|
|
1372
1381
|
@network_tags = args[:network_tags] if args.key?(:network_tags)
|
|
1373
1382
|
@secure_boot = args[:secure_boot] if args.key?(:secure_boot)
|
|
1374
1383
|
@service_account = args[:service_account] if args.key?(:service_account)
|
|
1384
|
+
@storage_pool = args[:storage_pool] if args.key?(:storage_pool)
|
|
1375
1385
|
@target_project = args[:target_project] if args.key?(:target_project)
|
|
1376
1386
|
@vm_name = args[:vm_name] if args.key?(:vm_name)
|
|
1377
1387
|
@zone = args[:zone] if args.key?(:zone)
|
|
@@ -1507,6 +1517,15 @@ module Google
|
|
|
1507
1517
|
# @return [String]
|
|
1508
1518
|
attr_accessor :service_account
|
|
1509
1519
|
|
|
1520
|
+
# Optional. The storage pool used for the VM disks. If specified this will be
|
|
1521
|
+
# the storage pool in which the disk is created. This is the full path of the
|
|
1522
|
+
# storage pool resource, for example: "projects/my-project/zones/us-central1-a/
|
|
1523
|
+
# storagePools/my-storage-pool". The storage pool must be in the same project
|
|
1524
|
+
# and zone as the target disks. The storage pool's type must match the disk type.
|
|
1525
|
+
# Corresponds to the JSON property `storagePool`
|
|
1526
|
+
# @return [String]
|
|
1527
|
+
attr_accessor :storage_pool
|
|
1528
|
+
|
|
1510
1529
|
# The name of the VM to create.
|
|
1511
1530
|
# Corresponds to the JSON property `vmName`
|
|
1512
1531
|
# @return [String]
|
|
@@ -1545,6 +1564,7 @@ module Google
|
|
|
1545
1564
|
@project = args[:project] if args.key?(:project)
|
|
1546
1565
|
@secure_boot = args[:secure_boot] if args.key?(:secure_boot)
|
|
1547
1566
|
@service_account = args[:service_account] if args.key?(:service_account)
|
|
1567
|
+
@storage_pool = args[:storage_pool] if args.key?(:storage_pool)
|
|
1548
1568
|
@vm_name = args[:vm_name] if args.key?(:vm_name)
|
|
1549
1569
|
@zone = args[:zone] if args.key?(:zone)
|
|
1550
1570
|
end
|
|
@@ -1843,16 +1863,28 @@ module Google
|
|
|
1843
1863
|
end
|
|
1844
1864
|
end
|
|
1845
1865
|
|
|
1846
|
-
#
|
|
1866
|
+
# Used when the image import is not using OS adaptation process.
|
|
1847
1867
|
class DataDiskImageImport
|
|
1848
1868
|
include Google::Apis::Core::Hashable
|
|
1849
1869
|
|
|
1870
|
+
# Optional. A list of guest OS features to apply to the imported image. These
|
|
1871
|
+
# features are flags that are used by Compute Engine to enable certain
|
|
1872
|
+
# capabilities for virtual machine instances that are created from the image.
|
|
1873
|
+
# This field does not change the OS of the image; it only marks the image with
|
|
1874
|
+
# the specified features. The user must ensure that the OS is compatible with
|
|
1875
|
+
# the features. For a list of available features, see https://cloud.google.com/
|
|
1876
|
+
# compute/docs/images/create-custom#guest-os-features.
|
|
1877
|
+
# Corresponds to the JSON property `guestOsFeatures`
|
|
1878
|
+
# @return [Array<String>]
|
|
1879
|
+
attr_accessor :guest_os_features
|
|
1880
|
+
|
|
1850
1881
|
def initialize(**args)
|
|
1851
1882
|
update!(**args)
|
|
1852
1883
|
end
|
|
1853
1884
|
|
|
1854
1885
|
# Update properties of this object
|
|
1855
1886
|
def update!(**args)
|
|
1887
|
+
@guest_os_features = args[:guest_os_features] if args.key?(:guest_os_features)
|
|
1856
1888
|
end
|
|
1857
1889
|
end
|
|
1858
1890
|
|
|
@@ -2033,7 +2065,7 @@ module Google
|
|
|
2033
2065
|
# @return [Array<String>]
|
|
2034
2066
|
attr_accessor :additional_licenses
|
|
2035
2067
|
|
|
2036
|
-
#
|
|
2068
|
+
# Used when the image import is not using OS adaptation process.
|
|
2037
2069
|
# Corresponds to the JSON property `dataDiskImageImport`
|
|
2038
2070
|
# @return [Google::Apis::VmmigrationV1::DataDiskImageImport]
|
|
2039
2071
|
attr_accessor :data_disk_image_import
|
|
@@ -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.72.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251106"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1181,6 +1181,7 @@ module Google
|
|
|
1181
1181
|
collection :network_tags, as: 'networkTags'
|
|
1182
1182
|
property :secure_boot, as: 'secureBoot'
|
|
1183
1183
|
property :service_account, as: 'serviceAccount'
|
|
1184
|
+
property :storage_pool, as: 'storagePool'
|
|
1184
1185
|
property :target_project, as: 'targetProject'
|
|
1185
1186
|
property :vm_name, as: 'vmName'
|
|
1186
1187
|
property :zone, as: 'zone'
|
|
@@ -1217,6 +1218,7 @@ module Google
|
|
|
1217
1218
|
property :project, as: 'project'
|
|
1218
1219
|
property :secure_boot, as: 'secureBoot'
|
|
1219
1220
|
property :service_account, as: 'serviceAccount'
|
|
1221
|
+
property :storage_pool, as: 'storagePool'
|
|
1220
1222
|
property :vm_name, as: 'vmName'
|
|
1221
1223
|
property :zone, as: 'zone'
|
|
1222
1224
|
end
|
|
@@ -1314,6 +1316,7 @@ module Google
|
|
|
1314
1316
|
class DataDiskImageImport
|
|
1315
1317
|
# @private
|
|
1316
1318
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1319
|
+
collection :guest_os_features, as: 'guestOsFeatures'
|
|
1317
1320
|
end
|
|
1318
1321
|
end
|
|
1319
1322
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.72.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vmmigration_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1/v0.72.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vmmigration_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|