google-apis-vmmigration_v1alpha1 0.71.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: 6074b6149a71b8df04b4353d3cb383e2a064ff926566d86b481e2c059e040657
|
|
4
|
+
data.tar.gz: a1d04a6786b0d0fc0f9c288414a8e352ec906c60a4fdd86130e1f2219319f9f4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0bbce9d25044d4733f153bbc3b62765aa22e4d7cafb98a4aa2b2a5747887fc3ca26d7373a57d9192afdf27a81d976f164bde123d24be835656861eb56119b240
|
|
7
|
+
data.tar.gz: 711071356e4bd59830aa5821251b76717d5db86d0bb67a9c10240bde60a248b46c7d8aa0e1c08e0ab471e816aace30d56dc06d88144999192ec937bd77aff6b0
|
data/CHANGELOG.md
CHANGED
|
@@ -1272,6 +1272,11 @@ module Google
|
|
|
1272
1272
|
# @return [String]
|
|
1273
1273
|
attr_accessor :disk_type
|
|
1274
1274
|
|
|
1275
|
+
# Optional. The details of each disk to create.
|
|
1276
|
+
# Corresponds to the JSON property `disks`
|
|
1277
|
+
# @return [Array<Google::Apis::VmmigrationV1alpha1::PersistentDiskDefaults>]
|
|
1278
|
+
attr_accessor :disks
|
|
1279
|
+
|
|
1275
1280
|
# Optional. Defines whether the instance has integrity monitoring enabled. This
|
|
1276
1281
|
# can be set to true only if the VM boot option is EFI, and vTPM is enabled.
|
|
1277
1282
|
# Corresponds to the JSON property `enableIntegrityMonitoring`
|
|
@@ -1382,6 +1387,7 @@ module Google
|
|
|
1382
1387
|
@compute_scheduling = args[:compute_scheduling] if args.key?(:compute_scheduling)
|
|
1383
1388
|
@disk_replica_zones = args[:disk_replica_zones] if args.key?(:disk_replica_zones)
|
|
1384
1389
|
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
|
1390
|
+
@disks = args[:disks] if args.key?(:disks)
|
|
1385
1391
|
@enable_integrity_monitoring = args[:enable_integrity_monitoring] if args.key?(:enable_integrity_monitoring)
|
|
1386
1392
|
@enable_vtpm = args[:enable_vtpm] if args.key?(:enable_vtpm)
|
|
1387
1393
|
@encryption = args[:encryption] if args.key?(:encryption)
|
|
@@ -4201,12 +4207,12 @@ module Google
|
|
|
4201
4207
|
class PersistentDisk
|
|
4202
4208
|
include Google::Apis::Core::Hashable
|
|
4203
4209
|
|
|
4204
|
-
# The URI of the Persistent Disk.
|
|
4210
|
+
# Output only. The URI of the Persistent Disk.
|
|
4205
4211
|
# Corresponds to the JSON property `diskUri`
|
|
4206
4212
|
# @return [String]
|
|
4207
4213
|
attr_accessor :disk_uri
|
|
4208
4214
|
|
|
4209
|
-
# The ordinal number of the source VM disk.
|
|
4215
|
+
# Output only. The ordinal number of the source VM disk.
|
|
4210
4216
|
# Corresponds to the JSON property `sourceDiskNumber`
|
|
4211
4217
|
# @return [Fixnum]
|
|
4212
4218
|
attr_accessor :source_disk_number
|
|
@@ -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.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 = "20260521"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1176,6 +1176,8 @@ module Google
|
|
|
1176
1176
|
|
|
1177
1177
|
collection :disk_replica_zones, as: 'diskReplicaZones'
|
|
1178
1178
|
property :disk_type, as: 'diskType'
|
|
1179
|
+
collection :disks, as: 'disks', class: Google::Apis::VmmigrationV1alpha1::PersistentDiskDefaults, decorator: Google::Apis::VmmigrationV1alpha1::PersistentDiskDefaults::Representation
|
|
1180
|
+
|
|
1179
1181
|
property :enable_integrity_monitoring, as: 'enableIntegrityMonitoring'
|
|
1180
1182
|
property :enable_vtpm, as: 'enableVtpm'
|
|
1181
1183
|
property :encryption, as: 'encryption', class: Google::Apis::VmmigrationV1alpha1::Encryption, decorator: Google::Apis::VmmigrationV1alpha1::Encryption::Representation
|
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.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_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.72.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:
|