Skip to content

Commit 13d5adf

Browse files
feat: Automated regeneration of DataMigration client (#12729)
Auto-created at 2024-12-16 13:17:22 +0000 using the toys pull request generator.
1 parent 45a4f81 commit 13d5adf

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.20"}]
14+
[{:google_api_data_migration, "~> 0.21"}]
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 "20241202"
23+
@discovery_revision "20241211"
2424

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

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,20 @@ defmodule GoogleApi.DataMigration.V1.Model.RestartMigrationJobRequest do
2222
## Attributes
2323
2424
* `objectsFilter` (*type:* `GoogleApi.DataMigration.V1.Model.MigrationJobObjectsConfig.t`, *default:* `nil`) - Optional. The object filter to apply to the migration job.
25+
* `restartFailedObjects` (*type:* `boolean()`, *default:* `nil`) - Optional. If true, only failed objects will be restarted.
2526
* `skipValidation` (*type:* `boolean()`, *default:* `nil`) - Optional. Restart the migration job without running prior configuration verification. Defaults to `false`.
2627
"""
2728

2829
use GoogleApi.Gax.ModelBase
2930

3031
@type t :: %__MODULE__{
3132
:objectsFilter => GoogleApi.DataMigration.V1.Model.MigrationJobObjectsConfig.t() | nil,
33+
:restartFailedObjects => boolean() | nil,
3234
:skipValidation => boolean() | nil
3335
}
3436

3537
field(:objectsFilter, as: GoogleApi.DataMigration.V1.Model.MigrationJobObjectsConfig)
38+
field(:restartFailedObjects)
3639
field(:skipValidation)
3740
end
3841

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.20.1"
21+
@version "0.21.0"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)