diff --git a/clients/run/README.md b/clients/run/README.md index bb2c58b1fe..1b1588fa2a 100644 --- a/clients/run/README.md +++ b/clients/run/README.md @@ -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 ``` diff --git a/clients/run/lib/google_api/run/v2/metadata.ex b/clients/run/lib/google_api/run/v2/metadata.ex index 89e90caba9..dc8f0346a8 100644 --- a/clients/run/lib/google_api/run/v2/metadata.ex +++ b/clients/run/lib/google_api/run/v2/metadata.ex @@ -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 diff --git a/clients/run/lib/google_api/run/v2/model/google_cloud_run_v2_gcs_volume_source.ex b/clients/run/lib/google_api/run/v2/model/google_cloud_run_v2_gcs_volume_source.ex index 57b3712627..020bce59ca 100644 --- a/clients/run/lib/google_api/run/v2/model/google_cloud_run_v2_gcs_volume_source.ex +++ b/clients/run/lib/google_api/run/v2/model/google_cloud_run_v2_gcs_volume_source.ex @@ -22,6 +22,7 @@ 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. """ @@ -29,10 +30,12 @@ defmodule GoogleApi.Run.V2.Model.GoogleCloudRunV2GCSVolumeSource do @type t :: %__MODULE__{ :bucket => String.t() | nil, + :mountOptions => list(String.t()) | nil, :readOnly => boolean() | nil } field(:bucket) + field(:mountOptions, type: :list) field(:readOnly) end diff --git a/clients/run/mix.exs b/clients/run/mix.exs index e774a230e8..4c43545967 100644 --- a/clients/run/mix.exs +++ b/clients/run/mix.exs @@ -18,7 +18,7 @@ defmodule GoogleApi.Run.Mixfile do use Mix.Project - @version "0.38.2" + @version "0.39.0" def project() do [