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 Run client #12444

Merged
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
2 changes: 1 addition & 1 deletion clients/run/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Install this package from [Hex](https://hex.pm) by adding

```elixir
def deps do
[{:google_api_run, "~> 0.38"}]
[{:google_api_run, "~> 0.39"}]
end
```

Expand Down
2 changes: 1 addition & 1 deletion clients/run/lib/google_api/run/v2/metadata.ex
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.Run.V2 do
API client metadata for GoogleApi.Run.V2.
"""

@discovery_revision "20241011"
@discovery_revision "20241025"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,20 @@ defmodule GoogleApi.Run.V2.Model.GoogleCloudRunV2GCSVolumeSource do
## Attributes

* `bucket` (*type:* `String.t`, *default:* `nil`) - Cloud Storage Bucket name.
* `mountOptions` (*type:* `list(String.t)`, *default:* `nil`) - A list of additional flags to pass to the gcsfuse CLI. Options should be specified without the leading "--".
* `readOnly` (*type:* `boolean()`, *default:* `nil`) - If true, the volume will be mounted as read only for all mounts.
"""

use GoogleApi.Gax.ModelBase

@type t :: %__MODULE__{
:bucket => String.t() | nil,
:mountOptions => list(String.t()) | nil,
:readOnly => boolean() | nil
}

field(:bucket)
field(:mountOptions, type: :list)
field(:readOnly)
end

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

@version "0.38.2"
@version "0.39.0"

def project() do
[
Expand Down
Loading