Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Automated regeneration of MigrationCenter client #11311

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.MigrationCenter.V1 do
API client metadata for GoogleApi.MigrationCenter.V1.
"""

@discovery_revision "20240321"
@discovery_revision "20240411"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ defmodule GoogleApi.MigrationCenter.V1.Model.AggregateAssetsValuesRequest do
## Attributes

* `aggregations` (*type:* `list(GoogleApi.MigrationCenter.V1.Model.Aggregation.t)`, *default:* `nil`) - Array of aggregations to perform. Up to 25 aggregations can be defined.
* `filter` (*type:* `String.t`, *default:* `nil`) - The aggregation will be performed on assets that match the provided filter.
* `filter` (*type:* `String.t`, *default:* `nil`) - Optional. The aggregation will be performed on assets that match the provided filter.
"""

use GoogleApi.Gax.ModelBase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@

defmodule GoogleApi.MigrationCenter.V1.Model.MachineSeries do
@moduledoc """
A Compute Engine machine series.
A machine series, for a target product (e.g. Compute Engine, Google Cloud VMware Engine).

## Attributes

* `code` (*type:* `String.t`, *default:* `nil`) - Code to identify a Compute Engine machine series. Consult https://cloud.google.com/compute/docs/machine-resource#machine_type_comparison for more details on the available series.
* `code` (*type:* `String.t`, *default:* `nil`) - Code to identify a machine series. Consult this for more details on the available series for Compute Engine: https://cloud.google.com/compute/docs/machine-resource#machine_type_comparison Consult this for more details on the available series for Google Cloud VMware Engine: https://cloud.google.com/vmware-engine/pricing
"""

use GoogleApi.Gax.ModelBase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ defmodule GoogleApi.MigrationCenter.V1.Model.PreferenceSet do
* `displayName` (*type:* `String.t`, *default:* `nil`) - User-friendly display name. Maximum length is 63 characters.
* `name` (*type:* `String.t`, *default:* `nil`) - Output only. Name of the preference set.
* `updateTime` (*type:* `DateTime.t`, *default:* `nil`) - Output only. The timestamp when the preference set was last updated.
* `virtualMachinePreferences` (*type:* `GoogleApi.MigrationCenter.V1.Model.VirtualMachinePreferences.t`, *default:* `nil`) - A set of preferences that applies to all virtual machines in the context.
* `virtualMachinePreferences` (*type:* `GoogleApi.MigrationCenter.V1.Model.VirtualMachinePreferences.t`, *default:* `nil`) - Optional. A set of preferences that applies to all virtual machines in the context.
"""

use GoogleApi.Gax.ModelBase
Expand Down
2 changes: 1 addition & 1 deletion clients/migration_center/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.MigrationCenter.Mixfile do
use Mix.Project

@version "0.3.0"
@version "0.3.1"

def project() do
[
Expand Down
Loading