google-apis-vmmigration_v1alpha1 0.57.0 → 0.59.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: 244980f3618cda097abb64f937771b6fa0e6f54376770d76f3f707a1f7286fad
|
4
|
+
data.tar.gz: a79110d152973bb2b5d95f1c3b4dff73fb1de3ec68335446139a04eba577b386
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a3d81b4c6df19e9c7beb6466726b0043606e1d66bb2cd0f217eeceb7bf11b23c79829fabc1b0576a1022a9984ce8b7a41ea7573b138f49dd97a60132d723a7b3
|
7
|
+
data.tar.gz: e0c15afe233e3a1e3b86acda7d4c61ba3167aa831621e776e1062ab24cd95f3c23c2c988f104b8ad7946a650a99456004b2da998199d161a913648743bd99862
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-vmmigration_v1alpha1
|
2
2
|
|
3
|
+
### v0.59.0 (2025-07-13)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250701
|
6
|
+
|
7
|
+
### v0.58.0 (2025-06-29)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250619
|
10
|
+
|
3
11
|
### v0.57.0 (2025-06-22)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250612
|
@@ -363,7 +363,7 @@ module Google
|
|
363
363
|
# @return [Fixnum]
|
364
364
|
attr_accessor :committed_storage_mb
|
365
365
|
|
366
|
-
# The number of
|
366
|
+
# The number of CPU cores the VM has.
|
367
367
|
# Corresponds to the JSON property `cpuCount`
|
368
368
|
# @return [Fixnum]
|
369
369
|
attr_accessor :cpu_count
|
@@ -418,6 +418,12 @@ module Google
|
|
418
418
|
# @return [Hash<String,String>]
|
419
419
|
attr_accessor :tags
|
420
420
|
|
421
|
+
# The number of vCPUs the VM has. It is calculated as the number of CPU cores *
|
422
|
+
# threads per CPU the VM has.
|
423
|
+
# Corresponds to the JSON property `vcpuCount`
|
424
|
+
# @return [Fixnum]
|
425
|
+
attr_accessor :vcpu_count
|
426
|
+
|
421
427
|
# The virtualization type.
|
422
428
|
# Corresponds to the JSON property `virtualizationType`
|
423
429
|
# @return [String]
|
@@ -458,6 +464,7 @@ module Google
|
|
458
464
|
@source_description = args[:source_description] if args.key?(:source_description)
|
459
465
|
@source_id = args[:source_id] if args.key?(:source_id)
|
460
466
|
@tags = args[:tags] if args.key?(:tags)
|
467
|
+
@vcpu_count = args[:vcpu_count] if args.key?(:vcpu_count)
|
461
468
|
@virtualization_type = args[:virtualization_type] if args.key?(:virtualization_type)
|
462
469
|
@vm_id = args[:vm_id] if args.key?(:vm_id)
|
463
470
|
@vpc_id = args[:vpc_id] if args.key?(:vpc_id)
|
@@ -1124,6 +1131,17 @@ module Google
|
|
1124
1131
|
# @return [Google::Apis::VmmigrationV1alpha1::ComputeScheduling]
|
1125
1132
|
attr_accessor :compute_scheduling
|
1126
1133
|
|
1134
|
+
# Optional. Additional replica zones of the target regional disks. If this list
|
1135
|
+
# is not empty a regional disk will be created. The first supported zone would
|
1136
|
+
# be the one stated in the zone field. The rest are taken from this list. Please
|
1137
|
+
# refer to the [regional disk creation API](https://cloud.google.com/compute/
|
1138
|
+
# docs/regions-zones/global-regional-zonal-resources) for further details about
|
1139
|
+
# regional vs zonal disks. If not specified, a zonal disk will be created in the
|
1140
|
+
# same zone the VM is created.
|
1141
|
+
# Corresponds to the JSON property `diskReplicaZones`
|
1142
|
+
# @return [Array<String>]
|
1143
|
+
attr_accessor :disk_replica_zones
|
1144
|
+
|
1127
1145
|
# The disk type to use in the VM.
|
1128
1146
|
# Corresponds to the JSON property `diskType`
|
1129
1147
|
# @return [String]
|
@@ -1227,6 +1245,7 @@ module Google
|
|
1227
1245
|
@boot_conversion = args[:boot_conversion] if args.key?(:boot_conversion)
|
1228
1246
|
@boot_option = args[:boot_option] if args.key?(:boot_option)
|
1229
1247
|
@compute_scheduling = args[:compute_scheduling] if args.key?(:compute_scheduling)
|
1248
|
+
@disk_replica_zones = args[:disk_replica_zones] if args.key?(:disk_replica_zones)
|
1230
1249
|
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
1231
1250
|
@enable_integrity_monitoring = args[:enable_integrity_monitoring] if args.key?(:enable_integrity_monitoring)
|
1232
1251
|
@enable_vtpm = args[:enable_vtpm] if args.key?(:enable_vtpm)
|
@@ -1281,6 +1300,17 @@ module Google
|
|
1281
1300
|
# @return [Google::Apis::VmmigrationV1alpha1::ComputeScheduling]
|
1282
1301
|
attr_accessor :compute_scheduling
|
1283
1302
|
|
1303
|
+
# Optional. Additional replica zones of the target regional disks. If this list
|
1304
|
+
# is not empty a regional disk will be created. The first supported zone would
|
1305
|
+
# be the one stated in the zone field. The rest are taken from this list. Please
|
1306
|
+
# refer to the [regional disk creation API](https://cloud.google.com/compute/
|
1307
|
+
# docs/regions-zones/global-regional-zonal-resources) for further details about
|
1308
|
+
# regional vs zonal disks. If not specified, a zonal disk will be created in the
|
1309
|
+
# same zone the VM is created.
|
1310
|
+
# Corresponds to the JSON property `diskReplicaZones`
|
1311
|
+
# @return [Array<String>]
|
1312
|
+
attr_accessor :disk_replica_zones
|
1313
|
+
|
1284
1314
|
# The disk type to use in the VM.
|
1285
1315
|
# Corresponds to the JSON property `diskType`
|
1286
1316
|
# @return [String]
|
@@ -1381,6 +1411,7 @@ module Google
|
|
1381
1411
|
@boot_conversion = args[:boot_conversion] if args.key?(:boot_conversion)
|
1382
1412
|
@boot_option = args[:boot_option] if args.key?(:boot_option)
|
1383
1413
|
@compute_scheduling = args[:compute_scheduling] if args.key?(:compute_scheduling)
|
1414
|
+
@disk_replica_zones = args[:disk_replica_zones] if args.key?(:disk_replica_zones)
|
1384
1415
|
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
1385
1416
|
@enable_integrity_monitoring = args[:enable_integrity_monitoring] if args.key?(:enable_integrity_monitoring)
|
1386
1417
|
@enable_vtpm = args[:enable_vtpm] if args.key?(:enable_vtpm)
|
@@ -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.59.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 = "20250701"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -851,6 +851,7 @@ module Google
|
|
851
851
|
property :source_description, as: 'sourceDescription'
|
852
852
|
property :source_id, as: 'sourceId'
|
853
853
|
hash :tags, as: 'tags'
|
854
|
+
property :vcpu_count, as: 'vcpuCount'
|
854
855
|
property :virtualization_type, as: 'virtualizationType'
|
855
856
|
property :vm_id, as: 'vmId'
|
856
857
|
property :vpc_id, as: 'vpcId'
|
@@ -1053,6 +1054,7 @@ module Google
|
|
1053
1054
|
property :boot_option, as: 'bootOption'
|
1054
1055
|
property :compute_scheduling, as: 'computeScheduling', class: Google::Apis::VmmigrationV1alpha1::ComputeScheduling, decorator: Google::Apis::VmmigrationV1alpha1::ComputeScheduling::Representation
|
1055
1056
|
|
1057
|
+
collection :disk_replica_zones, as: 'diskReplicaZones'
|
1056
1058
|
property :disk_type, as: 'diskType'
|
1057
1059
|
property :enable_integrity_monitoring, as: 'enableIntegrityMonitoring'
|
1058
1060
|
property :enable_vtpm, as: 'enableVtpm'
|
@@ -1085,6 +1087,7 @@ module Google
|
|
1085
1087
|
property :boot_option, as: 'bootOption'
|
1086
1088
|
property :compute_scheduling, as: 'computeScheduling', class: Google::Apis::VmmigrationV1alpha1::ComputeScheduling, decorator: Google::Apis::VmmigrationV1alpha1::ComputeScheduling::Representation
|
1087
1089
|
|
1090
|
+
collection :disk_replica_zones, as: 'diskReplicaZones'
|
1088
1091
|
property :disk_type, as: 'diskType'
|
1089
1092
|
property :enable_integrity_monitoring, as: 'enableIntegrityMonitoring'
|
1090
1093
|
property :enable_vtpm, as: 'enableVtpm'
|
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.59.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.59.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:
|