Skip to content

Commit 4cc5e48

Browse files
feat: Automated regeneration of VMMigration client (googleapis#13225)
Auto-created at 2025-03-27 13:13:15 +0000 using the toys pull request generator.
1 parent 7c8d47b commit 4cc5e48

File tree

5 files changed

+8
-3
lines changed

5 files changed

+8
-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.10"}]
14+
[{:google_api_vm_migration, "~> 0.11"}]
1515
end
1616
```
1717

clients/vm_migration/lib/google_api/vm_migration/v1/api/projects.ex

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ defmodule GoogleApi.VMMigration.V1.Api.Projects do
104104
* `:quotaUser` (*type:* `String.t`) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
105105
* `:uploadType` (*type:* `String.t`) - Legacy upload protocol for media (e.g. "media", "multipart").
106106
* `:upload_protocol` (*type:* `String.t`) - Upload protocol for media (e.g. "raw", "multipart").
107+
* `:extraLocationTypes` (*type:* `list(String.t)`) - Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.
107108
* `:filter` (*type:* `String.t`) - A filter to narrow down results to a preferred subset. The filtering language accepts strings like `"displayName=tokyo"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160).
108109
* `:pageSize` (*type:* `integer()`) - The maximum number of results to return. If not set, the service selects a default.
109110
* `:pageToken` (*type:* `String.t`) - A page token received from the `next_page_token` field in the response. Send that page token to receive the subsequent page.
@@ -132,6 +133,7 @@ defmodule GoogleApi.VMMigration.V1.Api.Projects do
132133
:quotaUser => :query,
133134
:uploadType => :query,
134135
:upload_protocol => :query,
136+
:extraLocationTypes => :query,
135137
:filter => :query,
136138
:pageSize => :query,
137139
:pageToken => :query

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 "20250213"
23+
@discovery_revision "20250321"
2424

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

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,20 @@ defmodule GoogleApi.VMMigration.V1.Model.ImageImportOsAdaptationParameters do
2121
2222
## Attributes
2323
24+
* `bootConversion` (*type:* `String.t`, *default:* `nil`) - Optional. By default the image will keep its existing boot option. Setting this property will trigger an internal process which will convert the image from using the existing boot option to another. The size of the boot disk might be increased to allow the conversion
2425
* `generalize` (*type:* `boolean()`, *default:* `nil`) - Optional. Set to true in order to generalize the imported image. The generalization process enables co-existence of multiple VMs created from the same image. For Windows, generalizing the image removes computer-specific information such as installed drivers and the computer security identifier (SID).
2526
* `licenseType` (*type:* `String.t`, *default:* `nil`) - Optional. Choose which type of license to apply to the imported image.
2627
"""
2728

2829
use GoogleApi.Gax.ModelBase
2930

3031
@type t :: %__MODULE__{
32+
:bootConversion => String.t() | nil,
3133
:generalize => boolean() | nil,
3234
:licenseType => String.t() | nil
3335
}
3436

37+
field(:bootConversion)
3538
field(:generalize)
3639
field(:licenseType)
3740
end

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.10.2"
21+
@version "0.11.0"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)