Skip to content

Commit

Permalink
feat: Automated regeneration of DataMigration client
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Dec 16, 2024
1 parent bb5db3e commit b03f648
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion clients/data_migration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Install this package from [Hex](https://hex.pm) by adding

```elixir
def deps do
[{:google_api_data_migration, "~> 0.20"}]
[{:google_api_data_migration, "~> 0.21"}]
end
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.DataMigration.V1 do
API client metadata for GoogleApi.DataMigration.V1.
"""

@discovery_revision "20241202"
@discovery_revision "20241211"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,20 @@ defmodule GoogleApi.DataMigration.V1.Model.RestartMigrationJobRequest do
## Attributes
* `objectsFilter` (*type:* `GoogleApi.DataMigration.V1.Model.MigrationJobObjectsConfig.t`, *default:* `nil`) - Optional. The object filter to apply to the migration job.
* `restartFailedObjects` (*type:* `boolean()`, *default:* `nil`) - Optional. If true, only failed objects will be restarted.
* `skipValidation` (*type:* `boolean()`, *default:* `nil`) - Optional. Restart the migration job without running prior configuration verification. Defaults to `false`.
"""

use GoogleApi.Gax.ModelBase

@type t :: %__MODULE__{
:objectsFilter => GoogleApi.DataMigration.V1.Model.MigrationJobObjectsConfig.t() | nil,
:restartFailedObjects => boolean() | nil,
:skipValidation => boolean() | nil
}

field(:objectsFilter, as: GoogleApi.DataMigration.V1.Model.MigrationJobObjectsConfig)
field(:restartFailedObjects)
field(:skipValidation)
end

Expand Down
2 changes: 1 addition & 1 deletion clients/data_migration/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.DataMigration.Mixfile do
use Mix.Project

@version "0.20.1"
@version "0.21.0"

def project() do
[
Expand Down

0 comments on commit b03f648

Please sign in to comment.