Skip to content

Commit f1a70f1

Browse files
feat: Automated regeneration of vmmigration v1alpha1 client (googleapis#23579)
Auto-created at 2025-06-29 10:33:08 +0000 using the toys pull request generator.
1 parent e861b49 commit f1a70f1

File tree

5 files changed

+36
-2
lines changed

5 files changed

+36
-2
lines changed

api_names_out.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -369470,6 +369470,8 @@
369470369470
"/vmmigration:v1alpha1/ComputeEngineTargetDefaults/bootConversion": boot_conversion
369471369471
"/vmmigration:v1alpha1/ComputeEngineTargetDefaults/bootOption": boot_option
369472369472
"/vmmigration:v1alpha1/ComputeEngineTargetDefaults/computeScheduling": compute_scheduling
369473+
"/vmmigration:v1alpha1/ComputeEngineTargetDefaults/diskReplicaZones": disk_replica_zones
369474+
"/vmmigration:v1alpha1/ComputeEngineTargetDefaults/diskReplicaZones/disk_replica_zone": disk_replica_zone
369473369475
"/vmmigration:v1alpha1/ComputeEngineTargetDefaults/diskType": disk_type
369474369476
"/vmmigration:v1alpha1/ComputeEngineTargetDefaults/enableIntegrityMonitoring": enable_integrity_monitoring
369475369477
"/vmmigration:v1alpha1/ComputeEngineTargetDefaults/enableVtpm": enable_vtpm
@@ -369498,6 +369500,8 @@
369498369500
"/vmmigration:v1alpha1/ComputeEngineTargetDetails/bootConversion": boot_conversion
369499369501
"/vmmigration:v1alpha1/ComputeEngineTargetDetails/bootOption": boot_option
369500369502
"/vmmigration:v1alpha1/ComputeEngineTargetDetails/computeScheduling": compute_scheduling
369503+
"/vmmigration:v1alpha1/ComputeEngineTargetDetails/diskReplicaZones": disk_replica_zones
369504+
"/vmmigration:v1alpha1/ComputeEngineTargetDetails/diskReplicaZones/disk_replica_zone": disk_replica_zone
369501369505
"/vmmigration:v1alpha1/ComputeEngineTargetDetails/diskType": disk_type
369502369506
"/vmmigration:v1alpha1/ComputeEngineTargetDetails/enableIntegrityMonitoring": enable_integrity_monitoring
369503369507
"/vmmigration:v1alpha1/ComputeEngineTargetDetails/enableVtpm": enable_vtpm

generated/google-apis-vmmigration_v1alpha1/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-vmmigration_v1alpha1
22

3+
### v0.58.0 (2025-06-29)
4+
5+
* Regenerated from discovery document revision 20250619
6+
37
### v0.57.0 (2025-06-22)
48

59
* Regenerated from discovery document revision 20250612

generated/google-apis-vmmigration_v1alpha1/lib/google/apis/vmmigration_v1alpha1/classes.rb

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1124,6 +1124,17 @@ class ComputeEngineTargetDefaults
11241124
# @return [Google::Apis::VmmigrationV1alpha1::ComputeScheduling]
11251125
attr_accessor :compute_scheduling
11261126

1127+
# Optional. Additional replica zones of the target regional disks. If this list
1128+
# is not empty a regional disk will be created. The first supported zone would
1129+
# be the one stated in the zone field. The rest are taken from this list. Please
1130+
# refer to the [regional disk creation API](https://cloud.google.com/compute/
1131+
# docs/regions-zones/global-regional-zonal-resources) for further details about
1132+
# regional vs zonal disks. If not specified, a zonal disk will be created in the
1133+
# same zone the VM is created.
1134+
# Corresponds to the JSON property `diskReplicaZones`
1135+
# @return [Array<String>]
1136+
attr_accessor :disk_replica_zones
1137+
11271138
# The disk type to use in the VM.
11281139
# Corresponds to the JSON property `diskType`
11291140
# @return [String]
@@ -1227,6 +1238,7 @@ def update!(**args)
12271238
@boot_conversion = args[:boot_conversion] if args.key?(:boot_conversion)
12281239
@boot_option = args[:boot_option] if args.key?(:boot_option)
12291240
@compute_scheduling = args[:compute_scheduling] if args.key?(:compute_scheduling)
1241+
@disk_replica_zones = args[:disk_replica_zones] if args.key?(:disk_replica_zones)
12301242
@disk_type = args[:disk_type] if args.key?(:disk_type)
12311243
@enable_integrity_monitoring = args[:enable_integrity_monitoring] if args.key?(:enable_integrity_monitoring)
12321244
@enable_vtpm = args[:enable_vtpm] if args.key?(:enable_vtpm)
@@ -1281,6 +1293,17 @@ class ComputeEngineTargetDetails
12811293
# @return [Google::Apis::VmmigrationV1alpha1::ComputeScheduling]
12821294
attr_accessor :compute_scheduling
12831295

1296+
# Optional. Additional replica zones of the target regional disks. If this list
1297+
# is not empty a regional disk will be created. The first supported zone would
1298+
# be the one stated in the zone field. The rest are taken from this list. Please
1299+
# refer to the [regional disk creation API](https://cloud.google.com/compute/
1300+
# docs/regions-zones/global-regional-zonal-resources) for further details about
1301+
# regional vs zonal disks. If not specified, a zonal disk will be created in the
1302+
# same zone the VM is created.
1303+
# Corresponds to the JSON property `diskReplicaZones`
1304+
# @return [Array<String>]
1305+
attr_accessor :disk_replica_zones
1306+
12841307
# The disk type to use in the VM.
12851308
# Corresponds to the JSON property `diskType`
12861309
# @return [String]
@@ -1381,6 +1404,7 @@ def update!(**args)
13811404
@boot_conversion = args[:boot_conversion] if args.key?(:boot_conversion)
13821405
@boot_option = args[:boot_option] if args.key?(:boot_option)
13831406
@compute_scheduling = args[:compute_scheduling] if args.key?(:compute_scheduling)
1407+
@disk_replica_zones = args[:disk_replica_zones] if args.key?(:disk_replica_zones)
13841408
@disk_type = args[:disk_type] if args.key?(:disk_type)
13851409
@enable_integrity_monitoring = args[:enable_integrity_monitoring] if args.key?(:enable_integrity_monitoring)
13861410
@enable_vtpm = args[:enable_vtpm] if args.key?(:enable_vtpm)

generated/google-apis-vmmigration_v1alpha1/lib/google/apis/vmmigration_v1alpha1/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module VmmigrationV1alpha1
1818
# Version of the google-apis-vmmigration_v1alpha1 gem
19-
GEM_VERSION = "0.57.0"
19+
GEM_VERSION = "0.58.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.18.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250612"
25+
REVISION = "20250619"
2626
end
2727
end
2828
end

generated/google-apis-vmmigration_v1alpha1/lib/google/apis/vmmigration_v1alpha1/representations.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1053,6 +1053,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
10531053
property :boot_option, as: 'bootOption'
10541054
property :compute_scheduling, as: 'computeScheduling', class: Google::Apis::VmmigrationV1alpha1::ComputeScheduling, decorator: Google::Apis::VmmigrationV1alpha1::ComputeScheduling::Representation
10551055

1056+
collection :disk_replica_zones, as: 'diskReplicaZones'
10561057
property :disk_type, as: 'diskType'
10571058
property :enable_integrity_monitoring, as: 'enableIntegrityMonitoring'
10581059
property :enable_vtpm, as: 'enableVtpm'
@@ -1085,6 +1086,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
10851086
property :boot_option, as: 'bootOption'
10861087
property :compute_scheduling, as: 'computeScheduling', class: Google::Apis::VmmigrationV1alpha1::ComputeScheduling, decorator: Google::Apis::VmmigrationV1alpha1::ComputeScheduling::Representation
10871088

1089+
collection :disk_replica_zones, as: 'diskReplicaZones'
10881090
property :disk_type, as: 'diskType'
10891091
property :enable_integrity_monitoring, as: 'enableIntegrityMonitoring'
10901092
property :enable_vtpm, as: 'enableVtpm'

0 commit comments

Comments
 (0)