Skip to content

Commit 0e3280e

Browse files
feat: Automated regeneration of VMMigration client (googleapis#12361)
Auto-created at 2024-10-18 13:16:33 +0000 using the toys pull request generator.
1 parent aa57a94 commit 0e3280e

File tree

8 files changed

+18
-3
lines changed

8 files changed

+18
-3
lines changed

clients/vm_migration/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Install this package from [Hex](https://hex.pm) by adding
1111

1212
```elixir
1313
def deps do
14-
[{:google_api_vm_migration, "~> 0.9"}]
14+
[{:google_api_vm_migration, "~> 0.10"}]
1515
end
1616
```
1717

clients/vm_migration/lib/google_api/vm_migration/v1/metadata.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ defmodule GoogleApi.VMMigration.V1 do
2020
API client metadata for GoogleApi.VMMigration.V1.
2121
"""
2222

23-
@discovery_revision "20240912"
23+
@discovery_revision "20241013"
2424

2525
def discovery_revision(), do: @discovery_revision
2626
end

clients/vm_migration/lib/google_api/vm_migration/v1/model/aws_source_vm_details.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ defmodule GoogleApi.VMMigration.V1.Model.AwsSourceVmDetails do
2121
2222
## Attributes
2323
24+
* `architecture` (*type:* `String.t`, *default:* `nil`) - Output only. The VM architecture.
2425
* `committedStorageBytes` (*type:* `String.t`, *default:* `nil`) - Output only. The total size of the disks being migrated in bytes.
2526
* `disks` (*type:* `list(GoogleApi.VMMigration.V1.Model.AwsDiskDetails.t)`, *default:* `nil`) - Output only. The disks attached to the source VM.
2627
* `firmware` (*type:* `String.t`, *default:* `nil`) - Output only. The firmware type of the source VM.
@@ -30,12 +31,14 @@ defmodule GoogleApi.VMMigration.V1.Model.AwsSourceVmDetails do
3031
use GoogleApi.Gax.ModelBase
3132

3233
@type t :: %__MODULE__{
34+
:architecture => String.t() | nil,
3335
:committedStorageBytes => String.t() | nil,
3436
:disks => list(GoogleApi.VMMigration.V1.Model.AwsDiskDetails.t()) | nil,
3537
:firmware => String.t() | nil,
3638
:vmCapabilitiesInfo => GoogleApi.VMMigration.V1.Model.VmCapabilities.t() | nil
3739
}
3840

41+
field(:architecture)
3942
field(:committedStorageBytes)
4043
field(:disks, as: GoogleApi.VMMigration.V1.Model.AwsDiskDetails, type: :list)
4144
field(:firmware)

clients/vm_migration/lib/google_api/vm_migration/v1/model/azure_source_vm_details.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ defmodule GoogleApi.VMMigration.V1.Model.AzureSourceVmDetails do
2121
2222
## Attributes
2323
24+
* `architecture` (*type:* `String.t`, *default:* `nil`) - Output only. The VM architecture.
2425
* `committedStorageBytes` (*type:* `String.t`, *default:* `nil`) - Output only. The total size of the disks being migrated in bytes.
2526
* `disks` (*type:* `list(GoogleApi.VMMigration.V1.Model.AzureDiskDetails.t)`, *default:* `nil`) - Output only. The disks attached to the source VM.
2627
* `firmware` (*type:* `String.t`, *default:* `nil`) - Output only. The firmware type of the source VM.
@@ -30,12 +31,14 @@ defmodule GoogleApi.VMMigration.V1.Model.AzureSourceVmDetails do
3031
use GoogleApi.Gax.ModelBase
3132

3233
@type t :: %__MODULE__{
34+
:architecture => String.t() | nil,
3335
:committedStorageBytes => String.t() | nil,
3436
:disks => list(GoogleApi.VMMigration.V1.Model.AzureDiskDetails.t()) | nil,
3537
:firmware => String.t() | nil,
3638
:vmCapabilitiesInfo => GoogleApi.VMMigration.V1.Model.VmCapabilities.t() | nil
3739
}
3840

41+
field(:architecture)
3942
field(:committedStorageBytes)
4043
field(:disks, as: GoogleApi.VMMigration.V1.Model.AzureDiskDetails, type: :list)
4144
field(:firmware)

clients/vm_migration/lib/google_api/vm_migration/v1/model/azure_vm_details.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ defmodule GoogleApi.VMMigration.V1.Model.AzureVmDetails do
2121
2222
## Attributes
2323
24+
* `architecture` (*type:* `String.t`, *default:* `nil`) - The CPU architecture.
2425
* `bootOption` (*type:* `String.t`, *default:* `nil`) - The VM Boot Option.
2526
* `committedStorageMb` (*type:* `String.t`, *default:* `nil`) - The total size of the storage allocated to the VM in MB.
2627
* `computerName` (*type:* `String.t`, *default:* `nil`) - The VM's ComputerName.
@@ -39,6 +40,7 @@ defmodule GoogleApi.VMMigration.V1.Model.AzureVmDetails do
3940
use GoogleApi.Gax.ModelBase
4041

4142
@type t :: %__MODULE__{
43+
:architecture => String.t() | nil,
4244
:bootOption => String.t() | nil,
4345
:committedStorageMb => String.t() | nil,
4446
:computerName => String.t() | nil,
@@ -54,6 +56,7 @@ defmodule GoogleApi.VMMigration.V1.Model.AzureVmDetails do
5456
:vmSize => String.t() | nil
5557
}
5658

59+
field(:architecture)
5760
field(:bootOption)
5861
field(:committedStorageMb)
5962
field(:computerName)

clients/vm_migration/lib/google_api/vm_migration/v1/model/vmware_source_vm_details.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ defmodule GoogleApi.VMMigration.V1.Model.VmwareSourceVmDetails do
2121
2222
## Attributes
2323
24+
* `architecture` (*type:* `String.t`, *default:* `nil`) - Output only. The VM architecture.
2425
* `committedStorageBytes` (*type:* `String.t`, *default:* `nil`) - Output only. The total size of the disks being migrated in bytes.
2526
* `disks` (*type:* `list(GoogleApi.VMMigration.V1.Model.VmwareDiskDetails.t)`, *default:* `nil`) - Output only. The disks attached to the source VM.
2627
* `firmware` (*type:* `String.t`, *default:* `nil`) - Output only. The firmware type of the source VM.
@@ -30,12 +31,14 @@ defmodule GoogleApi.VMMigration.V1.Model.VmwareSourceVmDetails do
3031
use GoogleApi.Gax.ModelBase
3132

3233
@type t :: %__MODULE__{
34+
:architecture => String.t() | nil,
3335
:committedStorageBytes => String.t() | nil,
3436
:disks => list(GoogleApi.VMMigration.V1.Model.VmwareDiskDetails.t()) | nil,
3537
:firmware => String.t() | nil,
3638
:vmCapabilitiesInfo => GoogleApi.VMMigration.V1.Model.VmCapabilities.t() | nil
3739
}
3840

41+
field(:architecture)
3942
field(:committedStorageBytes)
4043
field(:disks, as: GoogleApi.VMMigration.V1.Model.VmwareDiskDetails, type: :list)
4144
field(:firmware)

clients/vm_migration/lib/google_api/vm_migration/v1/model/vmware_vm_details.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ defmodule GoogleApi.VMMigration.V1.Model.VmwareVmDetails do
2121
2222
## Attributes
2323
24+
* `architecture` (*type:* `String.t`, *default:* `nil`) - Output only. The CPU architecture.
2425
* `bootOption` (*type:* `String.t`, *default:* `nil`) - Output only. The VM Boot Option.
2526
* `committedStorageMb` (*type:* `String.t`, *default:* `nil`) - The total size of the storage allocated to the VM in MB.
2627
* `cpuCount` (*type:* `integer()`, *default:* `nil`) - The number of cpus in the VM.
@@ -38,6 +39,7 @@ defmodule GoogleApi.VMMigration.V1.Model.VmwareVmDetails do
3839
use GoogleApi.Gax.ModelBase
3940

4041
@type t :: %__MODULE__{
42+
:architecture => String.t() | nil,
4143
:bootOption => String.t() | nil,
4244
:committedStorageMb => String.t() | nil,
4345
:cpuCount => integer() | nil,
@@ -52,6 +54,7 @@ defmodule GoogleApi.VMMigration.V1.Model.VmwareVmDetails do
5254
:vmId => String.t() | nil
5355
}
5456

57+
field(:architecture)
5558
field(:bootOption)
5659
field(:committedStorageMb)
5760
field(:cpuCount)

clients/vm_migration/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
defmodule GoogleApi.VMMigration.Mixfile do
1919
use Mix.Project
2020

21-
@version "0.9.2"
21+
@version "0.10.0"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)