Skip to content

Commit 8e5cef0

Browse files
feat: Automated regeneration of Metastore client (googleapis#13090)
Auto-created at 2025-03-05 13:14:07 +0000 using the toys pull request generator.
1 parent 83cef09 commit 8e5cef0

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

clients/metastore/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_metastore, "~> 0.11"}]
14+
[{:google_api_metastore, "~> 0.12"}]
1515
end
1616
```
1717

clients/metastore/lib/google_api/metastore/v1/metadata.ex

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

23-
@discovery_revision "20250121"
23+
@discovery_revision "20250227"
2424

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

clients/metastore/lib/google_api/metastore/v1/model/multi_region_metadata.ex

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,21 @@ defmodule GoogleApi.Metastore.V1.Model.MultiRegionMetadata do
2222
## Attributes
2323
2424
* `constituentRegions` (*type:* `list(String.t)`, *default:* `nil`) - The regions constituting the multi-region.
25+
* `continent` (*type:* `String.t`, *default:* `nil`) - The continent for this multi-region.
26+
* `witnessRegion` (*type:* `String.t`, *default:* `nil`) - The Spanner witness region for this multi-region.
2527
"""
2628

2729
use GoogleApi.Gax.ModelBase
2830

2931
@type t :: %__MODULE__{
30-
:constituentRegions => list(String.t()) | nil
32+
:constituentRegions => list(String.t()) | nil,
33+
:continent => String.t() | nil,
34+
:witnessRegion => String.t() | nil
3135
}
3236

3337
field(:constituentRegions, type: :list)
38+
field(:continent)
39+
field(:witnessRegion)
3440
end
3541

3642
defimpl Poison.Decoder, for: GoogleApi.Metastore.V1.Model.MultiRegionMetadata do

clients/metastore/mix.exs

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

21-
@version "0.11.2"
21+
@version "0.12.0"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)