File tree Expand file tree Collapse file tree 8 files changed +18
-3
lines changed
lib/google_api/vm_migration/v1 Expand file tree Collapse file tree 8 files changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ Install this package from [Hex](https://hex.pm) by adding
1111
1212``` elixir
1313def deps do
14- [{:google_api_vm_migration , " ~> 0.9 " }]
14+ [{:google_api_vm_migration , " ~> 0.10 " }]
1515end
1616```
1717
Original file line number Diff line number Diff 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
2626end
Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff line change 1818defmodule 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 [
You can’t perform that action at this time.
0 commit comments