Skip to content

Commit 2bf3f5a

Browse files
feat: Automated regeneration of vmmigration v1 client (googleapis#20426)
Auto-created at 2024-10-20 09:43:26 +0000 using the toys pull request generator.
1 parent b3d2b7d commit 2bf3f5a

File tree

5 files changed

+46
-2
lines changed

5 files changed

+46
-2
lines changed

api_names_out.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -333928,6 +333928,7 @@
333928333928
"/vmmigration:v1/AwsSourceDetails/publicIp": public_ip
333929333929
"/vmmigration:v1/AwsSourceDetails/state": state
333930333930
"/vmmigration:v1/AwsSourceVmDetails": aws_source_vm_details
333931+
"/vmmigration:v1/AwsSourceVmDetails/architecture": architecture
333931333932
"/vmmigration:v1/AwsSourceVmDetails/committedStorageBytes": committed_storage_bytes
333932333933
"/vmmigration:v1/AwsSourceVmDetails/disks": disks
333933333934
"/vmmigration:v1/AwsSourceVmDetails/disks/disk": disk
@@ -333973,12 +333974,14 @@
333973333974
"/vmmigration:v1/AzureSourceDetails/state": state
333974333975
"/vmmigration:v1/AzureSourceDetails/subscriptionId": subscription_id
333975333976
"/vmmigration:v1/AzureSourceVmDetails": azure_source_vm_details
333977+
"/vmmigration:v1/AzureSourceVmDetails/architecture": architecture
333976333978
"/vmmigration:v1/AzureSourceVmDetails/committedStorageBytes": committed_storage_bytes
333977333979
"/vmmigration:v1/AzureSourceVmDetails/disks": disks
333978333980
"/vmmigration:v1/AzureSourceVmDetails/disks/disk": disk
333979333981
"/vmmigration:v1/AzureSourceVmDetails/firmware": firmware
333980333982
"/vmmigration:v1/AzureSourceVmDetails/vmCapabilitiesInfo": vm_capabilities_info
333981333983
"/vmmigration:v1/AzureVmDetails": azure_vm_details
333984+
"/vmmigration:v1/AzureVmDetails/architecture": architecture
333982333985
"/vmmigration:v1/AzureVmDetails/bootOption": boot_option
333983333986
"/vmmigration:v1/AzureVmDetails/committedStorageMb": committed_storage_mb
333984333987
"/vmmigration:v1/AzureVmDetails/computerName": computer_name
@@ -334598,12 +334601,14 @@
334598334601
"/vmmigration:v1/VmwareSourceDetails/username": username
334599334602
"/vmmigration:v1/VmwareSourceDetails/vcenterIp": vcenter_ip
334600334603
"/vmmigration:v1/VmwareSourceVmDetails": vmware_source_vm_details
334604+
"/vmmigration:v1/VmwareSourceVmDetails/architecture": architecture
334601334605
"/vmmigration:v1/VmwareSourceVmDetails/committedStorageBytes": committed_storage_bytes
334602334606
"/vmmigration:v1/VmwareSourceVmDetails/disks": disks
334603334607
"/vmmigration:v1/VmwareSourceVmDetails/disks/disk": disk
334604334608
"/vmmigration:v1/VmwareSourceVmDetails/firmware": firmware
334605334609
"/vmmigration:v1/VmwareSourceVmDetails/vmCapabilitiesInfo": vm_capabilities_info
334606334610
"/vmmigration:v1/VmwareVmDetails": vmware_vm_details
334611+
"/vmmigration:v1/VmwareVmDetails/architecture": architecture
334607334612
"/vmmigration:v1/VmwareVmDetails/bootOption": boot_option
334608334613
"/vmmigration:v1/VmwareVmDetails/committedStorageMb": committed_storage_mb
334609334614
"/vmmigration:v1/VmwareVmDetails/cpuCount": cpu_count

generated/google-apis-vmmigration_v1/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_v1
22

3+
### v0.54.0 (2024-10-20)
4+
5+
* Regenerated from discovery document revision 20241013
6+
37
### v0.53.0 (2024-09-22)
48

59
* Regenerated from discovery document revision 20240912

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,11 @@ def update!(**args)
304304
class AwsSourceVmDetails
305305
include Google::Apis::Core::Hashable
306306

307+
# Output only. The VM architecture.
308+
# Corresponds to the JSON property `architecture`
309+
# @return [String]
310+
attr_accessor :architecture
311+
307312
# Output only. The total size of the disks being migrated in bytes.
308313
# Corresponds to the JSON property `committedStorageBytes`
309314
# @return [Fixnum]
@@ -331,6 +336,7 @@ def initialize(**args)
331336

332337
# Update properties of this object
333338
def update!(**args)
339+
@architecture = args[:architecture] if args.key?(:architecture)
334340
@committed_storage_bytes = args[:committed_storage_bytes] if args.key?(:committed_storage_bytes)
335341
@disks = args[:disks] if args.key?(:disks)
336342
@firmware = args[:firmware] if args.key?(:firmware)
@@ -579,6 +585,11 @@ def update!(**args)
579585
class AzureSourceVmDetails
580586
include Google::Apis::Core::Hashable
581587

588+
# Output only. The VM architecture.
589+
# Corresponds to the JSON property `architecture`
590+
# @return [String]
591+
attr_accessor :architecture
592+
582593
# Output only. The total size of the disks being migrated in bytes.
583594
# Corresponds to the JSON property `committedStorageBytes`
584595
# @return [Fixnum]
@@ -606,6 +617,7 @@ def initialize(**args)
606617

607618
# Update properties of this object
608619
def update!(**args)
620+
@architecture = args[:architecture] if args.key?(:architecture)
609621
@committed_storage_bytes = args[:committed_storage_bytes] if args.key?(:committed_storage_bytes)
610622
@disks = args[:disks] if args.key?(:disks)
611623
@firmware = args[:firmware] if args.key?(:firmware)
@@ -617,6 +629,11 @@ def update!(**args)
617629
class AzureVmDetails
618630
include Google::Apis::Core::Hashable
619631

632+
# The CPU architecture.
633+
# Corresponds to the JSON property `architecture`
634+
# @return [String]
635+
attr_accessor :architecture
636+
620637
# The VM Boot Option.
621638
# Corresponds to the JSON property `bootOption`
622639
# @return [String]
@@ -689,6 +706,7 @@ def initialize(**args)
689706

690707
# Update properties of this object
691708
def update!(**args)
709+
@architecture = args[:architecture] if args.key?(:architecture)
692710
@boot_option = args[:boot_option] if args.key?(:boot_option)
693711
@committed_storage_mb = args[:committed_storage_mb] if args.key?(:committed_storage_mb)
694712
@computer_name = args[:computer_name] if args.key?(:computer_name)
@@ -4614,6 +4632,11 @@ def update!(**args)
46144632
class VmwareSourceVmDetails
46154633
include Google::Apis::Core::Hashable
46164634

4635+
# Output only. The VM architecture.
4636+
# Corresponds to the JSON property `architecture`
4637+
# @return [String]
4638+
attr_accessor :architecture
4639+
46174640
# Output only. The total size of the disks being migrated in bytes.
46184641
# Corresponds to the JSON property `committedStorageBytes`
46194642
# @return [Fixnum]
@@ -4641,6 +4664,7 @@ def initialize(**args)
46414664

46424665
# Update properties of this object
46434666
def update!(**args)
4667+
@architecture = args[:architecture] if args.key?(:architecture)
46444668
@committed_storage_bytes = args[:committed_storage_bytes] if args.key?(:committed_storage_bytes)
46454669
@disks = args[:disks] if args.key?(:disks)
46464670
@firmware = args[:firmware] if args.key?(:firmware)
@@ -4652,6 +4676,11 @@ def update!(**args)
46524676
class VmwareVmDetails
46534677
include Google::Apis::Core::Hashable
46544678

4679+
# Output only. The CPU architecture.
4680+
# Corresponds to the JSON property `architecture`
4681+
# @return [String]
4682+
attr_accessor :architecture
4683+
46554684
# Output only. The VM Boot Option.
46564685
# Corresponds to the JSON property `bootOption`
46574686
# @return [String]
@@ -4722,6 +4751,7 @@ def initialize(**args)
47224751

47234752
# Update properties of this object
47244753
def update!(**args)
4754+
@architecture = args[:architecture] if args.key?(:architecture)
47254755
@boot_option = args[:boot_option] if args.key?(:boot_option)
47264756
@committed_storage_mb = args[:committed_storage_mb] if args.key?(:committed_storage_mb)
47274757
@cpu_count = args[:cpu_count] if args.key?(:cpu_count)

generated/google-apis-vmmigration_v1/lib/google/apis/vmmigration_v1/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 VmmigrationV1
1818
# Version of the google-apis-vmmigration_v1 gem
19-
GEM_VERSION = "0.53.0"
19+
GEM_VERSION = "0.54.0"
2020

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

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

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -805,6 +805,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
805805
class AwsSourceVmDetails
806806
# @private
807807
class Representation < Google::Apis::Core::JsonRepresentation
808+
property :architecture, as: 'architecture'
808809
property :committed_storage_bytes, :numeric_string => true, as: 'committedStorageBytes'
809810
collection :disks, as: 'disks', class: Google::Apis::VmmigrationV1::AwsDiskDetails, decorator: Google::Apis::VmmigrationV1::AwsDiskDetails::Representation
810811

@@ -874,6 +875,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
874875
class AzureSourceVmDetails
875876
# @private
876877
class Representation < Google::Apis::Core::JsonRepresentation
878+
property :architecture, as: 'architecture'
877879
property :committed_storage_bytes, :numeric_string => true, as: 'committedStorageBytes'
878880
collection :disks, as: 'disks', class: Google::Apis::VmmigrationV1::AzureDiskDetails, decorator: Google::Apis::VmmigrationV1::AzureDiskDetails::Representation
879881

@@ -886,6 +888,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
886888
class AzureVmDetails
887889
# @private
888890
class Representation < Google::Apis::Core::JsonRepresentation
891+
property :architecture, as: 'architecture'
889892
property :boot_option, as: 'bootOption'
890893
property :committed_storage_mb, :numeric_string => true, as: 'committedStorageMb'
891894
property :computer_name, as: 'computerName'
@@ -2002,6 +2005,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
20022005
class VmwareSourceVmDetails
20032006
# @private
20042007
class Representation < Google::Apis::Core::JsonRepresentation
2008+
property :architecture, as: 'architecture'
20052009
property :committed_storage_bytes, :numeric_string => true, as: 'committedStorageBytes'
20062010
collection :disks, as: 'disks', class: Google::Apis::VmmigrationV1::VmwareDiskDetails, decorator: Google::Apis::VmmigrationV1::VmwareDiskDetails::Representation
20072011

@@ -2014,6 +2018,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
20142018
class VmwareVmDetails
20152019
# @private
20162020
class Representation < Google::Apis::Core::JsonRepresentation
2021+
property :architecture, as: 'architecture'
20172022
property :boot_option, as: 'bootOption'
20182023
property :committed_storage_mb, :numeric_string => true, as: 'committedStorageMb'
20192024
property :cpu_count, as: 'cpuCount'

0 commit comments

Comments
 (0)