Skip to content

Commit 8540c0f

Browse files
feat: Automated regeneration of SQLAdmin client (googleapis#12861)
Auto-created at 2025-01-24 13:12:13 +0000 using the toys pull request generator.
1 parent 3e0df5c commit 8540c0f

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

clients/sql_admin/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_sql_admin, "~> 0.70"}]
14+
[{:google_api_sql_admin, "~> 0.71"}]
1515
end
1616
```
1717

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

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

23-
@discovery_revision "20241210"
23+
@discovery_revision "20250117"
2424

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

clients/sql_admin/lib/google_api/sql_admin/v1/model/settings.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ defmodule GoogleApi.SQLAdmin.V1.Model.Settings do
4545
* `storageAutoResizeLimit` (*type:* `String.t`, *default:* `nil`) - The maximum size to which storage capacity can be automatically increased. The default value is 0, which specifies that there is no limit.
4646
* `collation` (*type:* `String.t`, *default:* `nil`) - The name of server Instance collation.
4747
* `tier` (*type:* `String.t`, *default:* `nil`) - The tier (or machine type) for this instance, for example `db-custom-1-3840`. WARNING: Changing this restarts the instance.
48+
* `replicationLagMaxSeconds` (*type:* `integer()`, *default:* `nil`) - Optional. Configuration value for recreation of replica after certain replication lag
4849
* `locationPreference` (*type:* `GoogleApi.SQLAdmin.V1.Model.LocationPreference.t`, *default:* `nil`) - The location preference settings. This allows the instance to be located as near as possible to either an App Engine app or Compute Engine zone for better performance. App Engine co-location was only applicable to First Generation instances.
4950
* `storageAutoResize` (*type:* `boolean()`, *default:* `nil`) - Configuration to increase storage size automatically. The default value is true.
5051
* `timeZone` (*type:* `String.t`, *default:* `nil`) - Server timezone, relevant only for Cloud SQL for SQL Server.
@@ -86,6 +87,7 @@ defmodule GoogleApi.SQLAdmin.V1.Model.Settings do
8687
:storageAutoResizeLimit => String.t() | nil,
8788
:collation => String.t() | nil,
8889
:tier => String.t() | nil,
90+
:replicationLagMaxSeconds => integer() | nil,
8991
:locationPreference => GoogleApi.SQLAdmin.V1.Model.LocationPreference.t() | nil,
9092
:storageAutoResize => boolean() | nil,
9193
:timeZone => String.t() | nil,
@@ -129,6 +131,7 @@ defmodule GoogleApi.SQLAdmin.V1.Model.Settings do
129131
field(:storageAutoResizeLimit)
130132
field(:collation)
131133
field(:tier)
134+
field(:replicationLagMaxSeconds)
132135
field(:locationPreference, as: GoogleApi.SQLAdmin.V1.Model.LocationPreference)
133136
field(:storageAutoResize)
134137
field(:timeZone)

clients/sql_admin/mix.exs

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

21-
@version "0.70.1"
21+
@version "0.71.0"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)