google-apis-vmmigration_v1 0.60.0 → 0.61.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: 5f968194a07c8d2549846c42573b8e745becada67b48de7d74e7ab59e7215327
|
4
|
+
data.tar.gz: f63fc908e2116fc737b0924ddfba978f8341aa54bc66513cd5d3d9482898474d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7430607df82b7c3f1ac303723611e9fc864bc392b1919e1627b033e31e875cd1e2695f0e48fb7f7acce6150e0ca987939b7acdef5fca121dbf96504ef285f986
|
7
|
+
data.tar.gz: 0ad104662c3110e2b15953e8bdba1ac1419ea1224608df07decae853d77753fd4aef84e8d66043968cb832501026bfc1627c0413604a4628951c8ca9624a7919
|
data/CHANGELOG.md
CHANGED
@@ -1110,6 +1110,17 @@ module Google
|
|
1110
1110
|
# @return [Google::Apis::VmmigrationV1::ComputeScheduling]
|
1111
1111
|
attr_accessor :compute_scheduling
|
1112
1112
|
|
1113
|
+
# Optional. Additional replica zones of the target regional disks. If this list
|
1114
|
+
# is not empty a regional disk will be created. The first supported zone would
|
1115
|
+
# be the one stated in the zone field. The rest are taken from this list. Please
|
1116
|
+
# refer to the [regional disk creation API](https://cloud.google.com/compute/
|
1117
|
+
# docs/regions-zones/global-regional-zonal-resources) for further details about
|
1118
|
+
# regional vs zonal disks. If not specified, a zonal disk will be created in the
|
1119
|
+
# same zone the VM is created.
|
1120
|
+
# Corresponds to the JSON property `diskReplicaZones`
|
1121
|
+
# @return [Array<String>]
|
1122
|
+
attr_accessor :disk_replica_zones
|
1123
|
+
|
1113
1124
|
# The disk type to use in the VM.
|
1114
1125
|
# Corresponds to the JSON property `diskType`
|
1115
1126
|
# @return [String]
|
@@ -1213,6 +1224,7 @@ module Google
|
|
1213
1224
|
@boot_conversion = args[:boot_conversion] if args.key?(:boot_conversion)
|
1214
1225
|
@boot_option = args[:boot_option] if args.key?(:boot_option)
|
1215
1226
|
@compute_scheduling = args[:compute_scheduling] if args.key?(:compute_scheduling)
|
1227
|
+
@disk_replica_zones = args[:disk_replica_zones] if args.key?(:disk_replica_zones)
|
1216
1228
|
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
1217
1229
|
@enable_integrity_monitoring = args[:enable_integrity_monitoring] if args.key?(:enable_integrity_monitoring)
|
1218
1230
|
@enable_vtpm = args[:enable_vtpm] if args.key?(:enable_vtpm)
|
@@ -1267,6 +1279,17 @@ module Google
|
|
1267
1279
|
# @return [Google::Apis::VmmigrationV1::ComputeScheduling]
|
1268
1280
|
attr_accessor :compute_scheduling
|
1269
1281
|
|
1282
|
+
# Optional. Additional replica zones of the target regional disks. If this list
|
1283
|
+
# is not empty a regional disk will be created. The first supported zone would
|
1284
|
+
# be the one stated in the zone field. The rest are taken from this list. Please
|
1285
|
+
# refer to the [regional disk creation API](https://cloud.google.com/compute/
|
1286
|
+
# docs/regions-zones/global-regional-zonal-resources) for further details about
|
1287
|
+
# regional vs zonal disks. If not specified, a zonal disk will be created in the
|
1288
|
+
# same zone the VM is created.
|
1289
|
+
# Corresponds to the JSON property `diskReplicaZones`
|
1290
|
+
# @return [Array<String>]
|
1291
|
+
attr_accessor :disk_replica_zones
|
1292
|
+
|
1270
1293
|
# The disk type to use in the VM.
|
1271
1294
|
# Corresponds to the JSON property `diskType`
|
1272
1295
|
# @return [String]
|
@@ -1367,6 +1390,7 @@ module Google
|
|
1367
1390
|
@boot_conversion = args[:boot_conversion] if args.key?(:boot_conversion)
|
1368
1391
|
@boot_option = args[:boot_option] if args.key?(:boot_option)
|
1369
1392
|
@compute_scheduling = args[:compute_scheduling] if args.key?(:compute_scheduling)
|
1393
|
+
@disk_replica_zones = args[:disk_replica_zones] if args.key?(:disk_replica_zones)
|
1370
1394
|
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
1371
1395
|
@enable_integrity_monitoring = args[:enable_integrity_monitoring] if args.key?(:enable_integrity_monitoring)
|
1372
1396
|
@enable_vtpm = args[:enable_vtpm] if args.key?(:enable_vtpm)
|
@@ -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.61.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 = "20250619"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1043,6 +1043,7 @@ module Google
|
|
1043
1043
|
property :boot_option, as: 'bootOption'
|
1044
1044
|
property :compute_scheduling, as: 'computeScheduling', class: Google::Apis::VmmigrationV1::ComputeScheduling, decorator: Google::Apis::VmmigrationV1::ComputeScheduling::Representation
|
1045
1045
|
|
1046
|
+
collection :disk_replica_zones, as: 'diskReplicaZones'
|
1046
1047
|
property :disk_type, as: 'diskType'
|
1047
1048
|
property :enable_integrity_monitoring, as: 'enableIntegrityMonitoring'
|
1048
1049
|
property :enable_vtpm, as: 'enableVtpm'
|
@@ -1075,6 +1076,7 @@ module Google
|
|
1075
1076
|
property :boot_option, as: 'bootOption'
|
1076
1077
|
property :compute_scheduling, as: 'computeScheduling', class: Google::Apis::VmmigrationV1::ComputeScheduling, decorator: Google::Apis::VmmigrationV1::ComputeScheduling::Representation
|
1077
1078
|
|
1079
|
+
collection :disk_replica_zones, as: 'diskReplicaZones'
|
1078
1080
|
property :disk_type, as: 'diskType'
|
1079
1081
|
property :enable_integrity_monitoring, as: 'enableIntegrityMonitoring'
|
1080
1082
|
property :enable_vtpm, as: 'enableVtpm'
|
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.61.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.61.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:
|