Skip to content

Commit 4dd9fa5

Browse files
feat: Automated regeneration of Run client (googleapis#12444)
Auto-created at 2024-10-30 13:18:52 +0000 using the toys pull request generator.
1 parent c882bdb commit 4dd9fa5

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

clients/run/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_run, "~> 0.38"}]
14+
[{:google_api_run, "~> 0.39"}]
1515
end
1616
```
1717

clients/run/lib/google_api/run/v2/metadata.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ defmodule GoogleApi.Run.V2 do
2020
API client metadata for GoogleApi.Run.V2.
2121
"""
2222

23-
@discovery_revision "20241011"
23+
@discovery_revision "20241025"
2424

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

clients/run/lib/google_api/run/v2/model/google_cloud_run_v2_gcs_volume_source.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,20 @@ defmodule GoogleApi.Run.V2.Model.GoogleCloudRunV2GCSVolumeSource do
2222
## Attributes
2323
2424
* `bucket` (*type:* `String.t`, *default:* `nil`) - Cloud Storage Bucket name.
25+
* `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 "--".
2526
* `readOnly` (*type:* `boolean()`, *default:* `nil`) - If true, the volume will be mounted as read only for all mounts.
2627
"""
2728

2829
use GoogleApi.Gax.ModelBase
2930

3031
@type t :: %__MODULE__{
3132
:bucket => String.t() | nil,
33+
:mountOptions => list(String.t()) | nil,
3234
:readOnly => boolean() | nil
3335
}
3436

3537
field(:bucket)
38+
field(:mountOptions, type: :list)
3639
field(:readOnly)
3740
end
3841

clients/run/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
defmodule GoogleApi.Run.Mixfile do
1919
use Mix.Project
2020

21-
@version "0.38.2"
21+
@version "0.39.0"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)