google-apis-vmmigration_v1alpha1 0.65.0 → 0.67.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: a42cb8ae63b4784ceb72a996a015f82c62c8f3635f552de5fa541e3aaab5ed45
|
|
4
|
+
data.tar.gz: 36d4a71d3161c71c64468d1099d69985f59db67be5fb0f5db9b0d48e6bc33e7c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d35bc0dedccddb39d72afe273e5464ada6d16f203165c7729422e3d4851e3a4f622e5b481866ac3864acc30dd8dc0c25e3f62b0ad201415e9c307e4f14b9b9b9
|
|
7
|
+
data.tar.gz: a5144aca3138c463e83e04e37ad65e82f3e8e12623aa8307239bd62d1bc5239f19c5f772614cd3ac9133629de8eaab92082c557fe65e53b289b3391de23d2f00
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-vmmigration_v1alpha1
|
|
2
2
|
|
|
3
|
+
### v0.67.0 (2025-11-16)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251106
|
|
6
|
+
|
|
7
|
+
### v0.66.0 (2025-11-09)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251030
|
|
10
|
+
|
|
3
11
|
### v0.65.0 (2025-11-02)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251023
|
|
@@ -1343,6 +1343,15 @@ module Google
|
|
|
1343
1343
|
# @return [String]
|
|
1344
1344
|
attr_accessor :service_account
|
|
1345
1345
|
|
|
1346
|
+
# Optional. If specified this will be the storage pool in which the disk is
|
|
1347
|
+
# created. This is the full path of the storage pool resource, for example: "
|
|
1348
|
+
# projects/my-project/zones/us-central1-a/storagePools/my-storage-pool". The
|
|
1349
|
+
# storage pool must be in the same project and zone as the target disks. The
|
|
1350
|
+
# storage pool's type must match the disk type.
|
|
1351
|
+
# Corresponds to the JSON property `storagePool`
|
|
1352
|
+
# @return [String]
|
|
1353
|
+
attr_accessor :storage_pool
|
|
1354
|
+
|
|
1346
1355
|
# The full path of the resource of type TargetProject which represents the
|
|
1347
1356
|
# Compute Engine project in which to create this VM.
|
|
1348
1357
|
# Corresponds to the JSON property `targetProject`
|
|
@@ -1386,6 +1395,7 @@ module Google
|
|
|
1386
1395
|
@network_tags = args[:network_tags] if args.key?(:network_tags)
|
|
1387
1396
|
@secure_boot = args[:secure_boot] if args.key?(:secure_boot)
|
|
1388
1397
|
@service_account = args[:service_account] if args.key?(:service_account)
|
|
1398
|
+
@storage_pool = args[:storage_pool] if args.key?(:storage_pool)
|
|
1389
1399
|
@target_project = args[:target_project] if args.key?(:target_project)
|
|
1390
1400
|
@vm_name = args[:vm_name] if args.key?(:vm_name)
|
|
1391
1401
|
@zone = args[:zone] if args.key?(:zone)
|
|
@@ -1521,6 +1531,15 @@ module Google
|
|
|
1521
1531
|
# @return [String]
|
|
1522
1532
|
attr_accessor :service_account
|
|
1523
1533
|
|
|
1534
|
+
# Optional. The storage pool used for the VM disks. If specified this will be
|
|
1535
|
+
# the storage pool in which the disk is created. This is the full path of the
|
|
1536
|
+
# storage pool resource, for example: "projects/my-project/zones/us-central1-a/
|
|
1537
|
+
# storagePools/my-storage-pool". The storage pool must be in the same project
|
|
1538
|
+
# and zone as the target disks. The storage pool's type must match the disk type.
|
|
1539
|
+
# Corresponds to the JSON property `storagePool`
|
|
1540
|
+
# @return [String]
|
|
1541
|
+
attr_accessor :storage_pool
|
|
1542
|
+
|
|
1524
1543
|
# The name of the VM to create.
|
|
1525
1544
|
# Corresponds to the JSON property `vmName`
|
|
1526
1545
|
# @return [String]
|
|
@@ -1559,6 +1578,7 @@ module Google
|
|
|
1559
1578
|
@project = args[:project] if args.key?(:project)
|
|
1560
1579
|
@secure_boot = args[:secure_boot] if args.key?(:secure_boot)
|
|
1561
1580
|
@service_account = args[:service_account] if args.key?(:service_account)
|
|
1581
|
+
@storage_pool = args[:storage_pool] if args.key?(:storage_pool)
|
|
1562
1582
|
@vm_name = args[:vm_name] if args.key?(:vm_name)
|
|
1563
1583
|
@zone = args[:zone] if args.key?(:zone)
|
|
1564
1584
|
end
|
|
@@ -1884,16 +1904,28 @@ module Google
|
|
|
1884
1904
|
end
|
|
1885
1905
|
end
|
|
1886
1906
|
|
|
1887
|
-
#
|
|
1907
|
+
# Used when the image import is not using OS adaptation process.
|
|
1888
1908
|
class DataDiskImageImport
|
|
1889
1909
|
include Google::Apis::Core::Hashable
|
|
1890
1910
|
|
|
1911
|
+
# Optional. A list of guest OS features to apply to the imported image. These
|
|
1912
|
+
# features are flags that are used by Compute Engine to enable certain
|
|
1913
|
+
# capabilities for virtual machine instances that are created from the image.
|
|
1914
|
+
# This field does not change the OS of the image; it only marks the image with
|
|
1915
|
+
# the specified features. The user must ensure that the OS is compatible with
|
|
1916
|
+
# the features. For a list of available features, see https://cloud.google.com/
|
|
1917
|
+
# compute/docs/images/create-custom#guest-os-features.
|
|
1918
|
+
# Corresponds to the JSON property `guestOsFeatures`
|
|
1919
|
+
# @return [Array<String>]
|
|
1920
|
+
attr_accessor :guest_os_features
|
|
1921
|
+
|
|
1891
1922
|
def initialize(**args)
|
|
1892
1923
|
update!(**args)
|
|
1893
1924
|
end
|
|
1894
1925
|
|
|
1895
1926
|
# Update properties of this object
|
|
1896
1927
|
def update!(**args)
|
|
1928
|
+
@guest_os_features = args[:guest_os_features] if args.key?(:guest_os_features)
|
|
1897
1929
|
end
|
|
1898
1930
|
end
|
|
1899
1931
|
|
|
@@ -2074,7 +2106,7 @@ module Google
|
|
|
2074
2106
|
# @return [Array<String>]
|
|
2075
2107
|
attr_accessor :additional_licenses
|
|
2076
2108
|
|
|
2077
|
-
#
|
|
2109
|
+
# Used when the image import is not using OS adaptation process.
|
|
2078
2110
|
# Corresponds to the JSON property `dataDiskImageImport`
|
|
2079
2111
|
# @return [Google::Apis::VmmigrationV1alpha1::DataDiskImageImport]
|
|
2080
2112
|
attr_accessor :data_disk_image_import
|
|
@@ -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.67.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
|
|
@@ -1191,6 +1191,7 @@ module Google
|
|
|
1191
1191
|
collection :network_tags, as: 'networkTags'
|
|
1192
1192
|
property :secure_boot, as: 'secureBoot'
|
|
1193
1193
|
property :service_account, as: 'serviceAccount'
|
|
1194
|
+
property :storage_pool, as: 'storagePool'
|
|
1194
1195
|
property :target_project, as: 'targetProject'
|
|
1195
1196
|
property :vm_name, as: 'vmName'
|
|
1196
1197
|
property :zone, as: 'zone'
|
|
@@ -1227,6 +1228,7 @@ module Google
|
|
|
1227
1228
|
property :project, as: 'project'
|
|
1228
1229
|
property :secure_boot, as: 'secureBoot'
|
|
1229
1230
|
property :service_account, as: 'serviceAccount'
|
|
1231
|
+
property :storage_pool, as: 'storagePool'
|
|
1230
1232
|
property :vm_name, as: 'vmName'
|
|
1231
1233
|
property :zone, as: 'zone'
|
|
1232
1234
|
end
|
|
@@ -1330,6 +1332,7 @@ module Google
|
|
|
1330
1332
|
class DataDiskImageImport
|
|
1331
1333
|
# @private
|
|
1332
1334
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1335
|
+
collection :guest_os_features, as: 'guestOsFeatures'
|
|
1333
1336
|
end
|
|
1334
1337
|
end
|
|
1335
1338
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.67.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_v1alpha1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1alpha1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1alpha1/v0.67.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vmmigration_v1alpha1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|