Skip to content

Commit 64dc6b0

Browse files
feat: Automated regeneration of vmmigration v1alpha1 client (#24942)
Auto-created at 2025-11-09 10:57:31 +0000 using the toys pull request generator.
1 parent 7ffc7b9 commit 64dc6b0

File tree

5 files changed

+32
-4
lines changed

5 files changed

+32
-4
lines changed

api_names_out.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -391726,6 +391726,7 @@
391726391726
"/vmmigration:v1alpha1/ComputeEngineTargetDefaults/networkTags/network_tag": network_tag
391727391727
"/vmmigration:v1alpha1/ComputeEngineTargetDefaults/secureBoot": secure_boot
391728391728
"/vmmigration:v1alpha1/ComputeEngineTargetDefaults/serviceAccount": service_account
391729+
"/vmmigration:v1alpha1/ComputeEngineTargetDefaults/storagePool": storage_pool
391729391730
"/vmmigration:v1alpha1/ComputeEngineTargetDefaults/targetProject": target_project
391730391731
"/vmmigration:v1alpha1/ComputeEngineTargetDefaults/vmName": vm_name
391731391732
"/vmmigration:v1alpha1/ComputeEngineTargetDefaults/zone": zone
@@ -391759,6 +391760,7 @@
391759391760
"/vmmigration:v1alpha1/ComputeEngineTargetDetails/project": project
391760391761
"/vmmigration:v1alpha1/ComputeEngineTargetDetails/secureBoot": secure_boot
391761391762
"/vmmigration:v1alpha1/ComputeEngineTargetDetails/serviceAccount": service_account
391763+
"/vmmigration:v1alpha1/ComputeEngineTargetDetails/storagePool": storage_pool
391762391764
"/vmmigration:v1alpha1/ComputeEngineTargetDetails/vmName": vm_name
391763391765
"/vmmigration:v1alpha1/ComputeEngineTargetDetails/zone": zone
391764391766
"/vmmigration:v1alpha1/ComputeScheduling": compute_scheduling

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.66.0 (2025-11-09)
4+
5+
* Regenerated from discovery document revision 20251030
6+
37
### v0.65.0 (2025-11-02)
48

59
* Regenerated from discovery document revision 20251023

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

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1343,6 +1343,15 @@ class ComputeEngineTargetDefaults
13431343
# @return [String]
13441344
attr_accessor :service_account
13451345

1346+
# Optional. If specified this will be the storage pool in which the disk is
1347+
# created. This is the full path of the storage pool resource, for example: "
1348+
# projects/my-project/zones/us-central1-a/storagePools/my-storage-pool". The
1349+
# storage pool must be in the same project and zone as the target disks. The
1350+
# storage pool's type must match the disk type.
1351+
# Corresponds to the JSON property `storagePool`
1352+
# @return [String]
1353+
attr_accessor :storage_pool
1354+
13461355
# The full path of the resource of type TargetProject which represents the
13471356
# Compute Engine project in which to create this VM.
13481357
# Corresponds to the JSON property `targetProject`
@@ -1386,6 +1395,7 @@ def update!(**args)
13861395
@network_tags = args[:network_tags] if args.key?(:network_tags)
13871396
@secure_boot = args[:secure_boot] if args.key?(:secure_boot)
13881397
@service_account = args[:service_account] if args.key?(:service_account)
1398+
@storage_pool = args[:storage_pool] if args.key?(:storage_pool)
13891399
@target_project = args[:target_project] if args.key?(:target_project)
13901400
@vm_name = args[:vm_name] if args.key?(:vm_name)
13911401
@zone = args[:zone] if args.key?(:zone)
@@ -1521,6 +1531,15 @@ class ComputeEngineTargetDetails
15211531
# @return [String]
15221532
attr_accessor :service_account
15231533

1534+
# Optional. The storage pool used for the VM disks. If specified this will be
1535+
# the storage pool in which the disk is created. This is the full path of the
1536+
# storage pool resource, for example: "projects/my-project/zones/us-central1-a/
1537+
# storagePools/my-storage-pool". The storage pool must be in the same project
1538+
# and zone as the target disks. The storage pool's type must match the disk type.
1539+
# Corresponds to the JSON property `storagePool`
1540+
# @return [String]
1541+
attr_accessor :storage_pool
1542+
15241543
# The name of the VM to create.
15251544
# Corresponds to the JSON property `vmName`
15261545
# @return [String]
@@ -1559,6 +1578,7 @@ def update!(**args)
15591578
@project = args[:project] if args.key?(:project)
15601579
@secure_boot = args[:secure_boot] if args.key?(:secure_boot)
15611580
@service_account = args[:service_account] if args.key?(:service_account)
1581+
@storage_pool = args[:storage_pool] if args.key?(:storage_pool)
15621582
@vm_name = args[:vm_name] if args.key?(:vm_name)
15631583
@zone = args[:zone] if args.key?(:zone)
15641584
end
@@ -1884,7 +1904,7 @@ def update!(**args)
18841904
end
18851905
end
18861906

1887-
# Mentions that the image import is not using OS adaptation process.
1907+
# Used when the image import is not using OS adaptation process.
18881908
class DataDiskImageImport
18891909
include Google::Apis::Core::Hashable
18901910

@@ -2074,7 +2094,7 @@ class DiskImageTargetDetails
20742094
# @return [Array<String>]
20752095
attr_accessor :additional_licenses
20762096

2077-
# Mentions that the image import is not using OS adaptation process.
2097+
# Used when the image import is not using OS adaptation process.
20782098
# Corresponds to the JSON property `dataDiskImageImport`
20792099
# @return [Google::Apis::VmmigrationV1alpha1::DataDiskImageImport]
20802100
attr_accessor :data_disk_image_import

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.65.0"
19+
GEM_VERSION = "0.66.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 = "20251023"
25+
REVISION = "20251030"
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
@@ -1191,6 +1191,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
11911191
collection :network_tags, as: 'networkTags'
11921192
property :secure_boot, as: 'secureBoot'
11931193
property :service_account, as: 'serviceAccount'
1194+
property :storage_pool, as: 'storagePool'
11941195
property :target_project, as: 'targetProject'
11951196
property :vm_name, as: 'vmName'
11961197
property :zone, as: 'zone'
@@ -1227,6 +1228,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
12271228
property :project, as: 'project'
12281229
property :secure_boot, as: 'secureBoot'
12291230
property :service_account, as: 'serviceAccount'
1231+
property :storage_pool, as: 'storagePool'
12301232
property :vm_name, as: 'vmName'
12311233
property :zone, as: 'zone'
12321234
end

0 commit comments

Comments
 (0)