Skip to content

Commit ffe54d2

Browse files
feat: Automated regeneration of Metastore client (googleapis#13116)
Auto-created at 2025-03-07 13:17:28 +0000 using the toys pull request generator.
1 parent 3941dcb commit ffe54d2

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ defmodule GoogleApi.Metastore.V1beta do
2020
API client metadata for GoogleApi.Metastore.V1beta.
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/v1beta/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.V1beta.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.V1beta.Model.MultiRegionMetadata do

0 commit comments

Comments
 (0)