Skip to content

Commit e3256c9

Browse files
feat: Automated regeneration of DataMigration client (googleapis#12557)
Auto-created at 2024-11-18 13:13:05 +0000 using the toys pull request generator.
1 parent 004dc20 commit e3256c9

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

clients/data_migration/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_data_migration, "~> 0.18"}]
14+
[{:google_api_data_migration, "~> 0.19"}]
1515
end
1616
```
1717

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

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

23-
@discovery_revision "20241015"
23+
@discovery_revision "20241109"
2424

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

clients/data_migration/lib/google_api/data_migration/v1/model/postgre_sql_connection_profile.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ defmodule GoogleApi.DataMigration.V1.Model.PostgreSqlConnectionProfile do
2323
2424
* `alloydbClusterId` (*type:* `String.t`, *default:* `nil`) - Optional. If the destination is an AlloyDB database, use this field to provide the AlloyDB cluster ID.
2525
* `cloudSqlId` (*type:* `String.t`, *default:* `nil`) - If the source is a Cloud SQL database, use this field to provide the Cloud SQL instance ID of the source.
26+
* `database` (*type:* `String.t`, *default:* `nil`) - Optional. The name of the specific database within the host.
2627
* `host` (*type:* `String.t`, *default:* `nil`) - Required. The IP or hostname of the source PostgreSQL database.
2728
* `networkArchitecture` (*type:* `String.t`, *default:* `nil`) - Output only. If the source is a Cloud SQL database, this field indicates the network architecture it's associated with.
2829
* `password` (*type:* `String.t`, *default:* `nil`) - Required. Input only. The password for the user that Database Migration Service will be using to connect to the database. This field is not returned on request, and the value is encrypted when stored in Database Migration Service.
@@ -39,6 +40,7 @@ defmodule GoogleApi.DataMigration.V1.Model.PostgreSqlConnectionProfile do
3940
@type t :: %__MODULE__{
4041
:alloydbClusterId => String.t() | nil,
4142
:cloudSqlId => String.t() | nil,
43+
:database => String.t() | nil,
4244
:host => String.t() | nil,
4345
:networkArchitecture => String.t() | nil,
4446
:password => String.t() | nil,
@@ -54,6 +56,7 @@ defmodule GoogleApi.DataMigration.V1.Model.PostgreSqlConnectionProfile do
5456

5557
field(:alloydbClusterId)
5658
field(:cloudSqlId)
59+
field(:database)
5760
field(:host)
5861
field(:networkArchitecture)
5962
field(:password)

clients/data_migration/mix.exs

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

21-
@version "0.18.0"
21+
@version "0.19.0"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)