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 OSConfig client #11272

Merged
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 @@ -26,12 +26,12 @@ defmodule GoogleApi.OSConfig.V1.Api.Projects do
@library_version Mix.Project.config() |> Keyword.get(:version, "")

@doc """
GetProjectFeatureSettings returns the feature settings for a project
GetProjectFeatureSettings returns the VM Manager feature settings for a project.

## Parameters

* `connection` (*type:* `GoogleApi.OSConfig.V1.Connection.t`) - Connection to server
* `name` (*type:* `String.t`) - Required. Name of the billing config. "projects//locations/global/projectFeatureSettings"
* `name` (*type:* `String.t`) - Required. Name specifies the URL for the ProjectFeatureSettings resource: projects/project_id/locations/global/projectFeatureSettings.
* `optional_params` (*type:* `keyword()`) - Optional parameters
* `:"$.xgafv"` (*type:* `String.t`) - V1 error format.
* `:access_token` (*type:* `String.t`) - OAuth access token.
Expand Down Expand Up @@ -96,12 +96,12 @@ defmodule GoogleApi.OSConfig.V1.Api.Projects do
end

@doc """
UpdateProjectFeatureSettings sets the feature settings for a project.
UpdateProjectFeatureSettings sets the VM Manager features for a project.

## Parameters

* `connection` (*type:* `GoogleApi.OSConfig.V1.Connection.t`) - Connection to server
* `name` (*type:* `String.t`) - Required. Immutable. Name of the config, e.g. projects/12345/locations/global/projectFeatureSettings
* `name` (*type:* `String.t`) - Required. Immutable. Name specifies the URL for the ProjectFeatureSettings resource: projects/project_id/locations/global/projectFeatureSettings.
* `optional_params` (*type:* `keyword()`) - Optional parameters
* `:"$.xgafv"` (*type:* `String.t`) - V1 error format.
* `:access_token` (*type:* `String.t`) - OAuth access token.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.OSConfig.V1 do
API client metadata for GoogleApi.OSConfig.V1.
"""

@discovery_revision "20240314"
@discovery_revision "20240407"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@

defmodule GoogleApi.OSConfig.V1.Model.ProjectFeatureSettings do
@moduledoc """
ProjectFeatureSettings represents the features settings for the VM Manager. The project features settings can be set for a project.
ProjectFeatureSettings represents the VM Manager feature settings in a project. For more information, see Enable full VM Manager functionality.

## Attributes

* `name` (*type:* `String.t`, *default:* `nil`) - Required. Immutable. Name of the config, e.g. projects/12345/locations/global/projectFeatureSettings
* `patchAndConfigFeatureSet` (*type:* `String.t`, *default:* `nil`) - Currently set PatchAndConfigFeatureSet for name.
* `name` (*type:* `String.t`, *default:* `nil`) - Required. Immutable. Name specifies the URL for the ProjectFeatureSettings resource: projects/project_id/locations/global/projectFeatureSettings.
* `patchAndConfigFeatureSet` (*type:* `String.t`, *default:* `nil`) - Set PatchAndConfigFeatureSet for the project.
"""

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

@version "0.21.0"
@version "0.21.1"

def project() do
[
Expand Down
Loading