google-apis-vmmigration_v1 0.76.0 → 0.77.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: 754098440bded4dbecc1608660925f77bba5cc7b1306abe6201950d982f1a55c
|
|
4
|
+
data.tar.gz: eb6647ca1fa17d4510f52581367fe556641abc6eea101835901c81e21ea47a50
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3863652501378da75535ff038893e619f5626076f8a7747f19946ca0498239b16b7519a70c4400e5d7a22c9ce162b4b9cf09fd6de210296a89fa3b65126176b8
|
|
7
|
+
data.tar.gz: dc28d5fdc7c99ce30314100b76be7e4b945fedef7f39f4683f501154a71684b35a804f26e2dbf5f38bdef3b6fd87dde74ee5549ba37afe9e5e36c24b21184c9b
|
data/CHANGELOG.md
CHANGED
|
@@ -1258,6 +1258,11 @@ module Google
|
|
|
1258
1258
|
# @return [String]
|
|
1259
1259
|
attr_accessor :disk_type
|
|
1260
1260
|
|
|
1261
|
+
# Optional. The details of each disk to create.
|
|
1262
|
+
# Corresponds to the JSON property `disks`
|
|
1263
|
+
# @return [Array<Google::Apis::VmmigrationV1::PersistentDiskDefaults>]
|
|
1264
|
+
attr_accessor :disks
|
|
1265
|
+
|
|
1261
1266
|
# Optional. Defines whether the instance has integrity monitoring enabled. This
|
|
1262
1267
|
# can be set to true only if the VM boot option is EFI, and vTPM is enabled.
|
|
1263
1268
|
# Corresponds to the JSON property `enableIntegrityMonitoring`
|
|
@@ -1368,6 +1373,7 @@ module Google
|
|
|
1368
1373
|
@compute_scheduling = args[:compute_scheduling] if args.key?(:compute_scheduling)
|
|
1369
1374
|
@disk_replica_zones = args[:disk_replica_zones] if args.key?(:disk_replica_zones)
|
|
1370
1375
|
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
|
1376
|
+
@disks = args[:disks] if args.key?(:disks)
|
|
1371
1377
|
@enable_integrity_monitoring = args[:enable_integrity_monitoring] if args.key?(:enable_integrity_monitoring)
|
|
1372
1378
|
@enable_vtpm = args[:enable_vtpm] if args.key?(:enable_vtpm)
|
|
1373
1379
|
@encryption = args[:encryption] if args.key?(:encryption)
|
|
@@ -4146,12 +4152,12 @@ module Google
|
|
|
4146
4152
|
class PersistentDisk
|
|
4147
4153
|
include Google::Apis::Core::Hashable
|
|
4148
4154
|
|
|
4149
|
-
# The URI of the Persistent Disk.
|
|
4155
|
+
# Output only. The URI of the Persistent Disk.
|
|
4150
4156
|
# Corresponds to the JSON property `diskUri`
|
|
4151
4157
|
# @return [String]
|
|
4152
4158
|
attr_accessor :disk_uri
|
|
4153
4159
|
|
|
4154
|
-
# The ordinal number of the source VM disk.
|
|
4160
|
+
# Output only. The ordinal number of the source VM disk.
|
|
4155
4161
|
# Corresponds to the JSON property `sourceDiskNumber`
|
|
4156
4162
|
# @return [Fixnum]
|
|
4157
4163
|
attr_accessor :source_disk_number
|
|
@@ -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.77.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
|
|
@@ -1166,6 +1166,8 @@ module Google
|
|
|
1166
1166
|
|
|
1167
1167
|
collection :disk_replica_zones, as: 'diskReplicaZones'
|
|
1168
1168
|
property :disk_type, as: 'diskType'
|
|
1169
|
+
collection :disks, as: 'disks', class: Google::Apis::VmmigrationV1::PersistentDiskDefaults, decorator: Google::Apis::VmmigrationV1::PersistentDiskDefaults::Representation
|
|
1170
|
+
|
|
1169
1171
|
property :enable_integrity_monitoring, as: 'enableIntegrityMonitoring'
|
|
1170
1172
|
property :enable_vtpm, as: 'enableVtpm'
|
|
1171
1173
|
property :encryption, as: 'encryption', class: Google::Apis::VmmigrationV1::Encryption, decorator: Google::Apis::VmmigrationV1::Encryption::Representation
|
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.77.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.77.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:
|