Skip to content

Commit 51a8814

Browse files
feat: Automated regeneration of DataMigration client (googleapis#12373)
Auto-created at 2024-10-21 13:17:14 +0000 using the toys pull request generator.
1 parent 676ddb0 commit 51a8814

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.17"}]
14+
[{:google_api_data_migration, "~> 0.18"}]
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 "20241006"
23+
@discovery_revision "20241015"
2424

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

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ defmodule GoogleApi.DataMigration.V1.Model.ConnectionProfile do
3232
* `oracle` (*type:* `GoogleApi.DataMigration.V1.Model.OracleConnectionProfile.t`, *default:* `nil`) - An Oracle database connection profile.
3333
* `postgresql` (*type:* `GoogleApi.DataMigration.V1.Model.PostgreSqlConnectionProfile.t`, *default:* `nil`) - A PostgreSQL database connection profile.
3434
* `provider` (*type:* `String.t`, *default:* `nil`) - The database provider.
35+
* `role` (*type:* `String.t`, *default:* `nil`) - Optional. The connection profile role.
3536
* `sqlserver` (*type:* `GoogleApi.DataMigration.V1.Model.SqlServerConnectionProfile.t`, *default:* `nil`) - Connection profile for a SQL Server data source.
3637
* `state` (*type:* `String.t`, *default:* `nil`) - The current connection profile state (e.g. DRAFT, READY, or FAILED).
3738
* `updateTime` (*type:* `DateTime.t`, *default:* `nil`) - Output only. The timestamp when the resource was last updated. A timestamp in RFC3339 UTC "Zulu" format, accurate to nanoseconds. Example: "2014-10-02T15:01:23.045123456Z".
@@ -51,6 +52,7 @@ defmodule GoogleApi.DataMigration.V1.Model.ConnectionProfile do
5152
:oracle => GoogleApi.DataMigration.V1.Model.OracleConnectionProfile.t() | nil,
5253
:postgresql => GoogleApi.DataMigration.V1.Model.PostgreSqlConnectionProfile.t() | nil,
5354
:provider => String.t() | nil,
55+
:role => String.t() | nil,
5456
:sqlserver => GoogleApi.DataMigration.V1.Model.SqlServerConnectionProfile.t() | nil,
5557
:state => String.t() | nil,
5658
:updateTime => DateTime.t() | nil
@@ -67,6 +69,7 @@ defmodule GoogleApi.DataMigration.V1.Model.ConnectionProfile do
6769
field(:oracle, as: GoogleApi.DataMigration.V1.Model.OracleConnectionProfile)
6870
field(:postgresql, as: GoogleApi.DataMigration.V1.Model.PostgreSqlConnectionProfile)
6971
field(:provider)
72+
field(:role)
7073
field(:sqlserver, as: GoogleApi.DataMigration.V1.Model.SqlServerConnectionProfile)
7174
field(:state)
7275
field(:updateTime, as: DateTime)

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.17.1"
21+
@version "0.18.0"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)