File tree Expand file tree Collapse file tree 4 files changed +10
-4
lines changed
lib/google_api/metastore/v1 Expand file tree Collapse file tree 4 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ Install this package from [Hex](https://hex.pm) by adding
1111
1212``` elixir
1313def deps do
14- [{:google_api_metastore , " ~> 0.11 " }]
14+ [{:google_api_metastore , " ~> 0.12 " }]
1515end
1616```
1717
Original file line number Diff line number Diff 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
2626end
Original file line number Diff line number Diff 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 )
3440end
3541
3642defimpl Poison.Decoder , for: GoogleApi.Metastore.V1.Model.MultiRegionMetadata do
Original file line number Diff line number Diff line change 1818defmodule 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 [
You can’t perform that action at this time.
0 commit comments