Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Automated regeneration of BigtableAdmin client #12674

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.BigtableAdmin.V2 do
API client metadata for GoogleApi.BigtableAdmin.V2.
"""

@discovery_revision "20241008"
@discovery_revision "20241203"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ defmodule GoogleApi.BigtableAdmin.V2.Model.AutomatedBackupPolicy do
## Attributes

* `frequency` (*type:* `String.t`, *default:* `nil`) - How frequently automated backups should occur. The only supported value at this time is 24 hours. An undefined frequency is treated as 24 hours.
* `retentionPeriod` (*type:* `String.t`, *default:* `nil`) - Required. How long the automated backups should be retained. The only supported value at this time is 3 days.
* `retentionPeriod` (*type:* `String.t`, *default:* `nil`) - Required. How long the automated backups should be retained. Values must be at least 3 days and at most 90 days.
"""

use GoogleApi.Gax.ModelBase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ defmodule GoogleApi.BigtableAdmin.V2.Model.RestoreTableMetadata do

* `backupInfo` (*type:* `GoogleApi.BigtableAdmin.V2.Model.BackupInfo.t`, *default:* `nil`) -
* `name` (*type:* `String.t`, *default:* `nil`) - Name of the table being created and restored to.
* `optimizeTableOperationName` (*type:* `String.t`, *default:* `nil`) - If exists, the name of the long-running operation that will be used to track the post-restore optimization process to optimize the performance of the restored table. The metadata type of the long-running operation is OptimizeRestoreTableMetadata. The response type is Empty. This long-running operation may be automatically created by the system if applicable after the RestoreTable long-running operation completes successfully. This operation may not be created if the table is already optimized or the restore was not successful.
* `optimizeTableOperationName` (*type:* `String.t`, *default:* `nil`) - If exists, the name of the long-running operation that will be used to track the post-restore optimization process to optimize the performance of the restored table. The metadata type of the long-running operation is OptimizeRestoredTableMetadata. The response type is Empty. This long-running operation may be automatically created by the system if applicable after the RestoreTable long-running operation completes successfully. This operation may not be created if the table is already optimized or the restore was not successful.
* `progress` (*type:* `GoogleApi.BigtableAdmin.V2.Model.OperationProgress.t`, *default:* `nil`) - The progress of the RestoreTable operation.
* `sourceType` (*type:* `String.t`, *default:* `nil`) - The type of the restore source.
"""
Expand Down
2 changes: 1 addition & 1 deletion clients/bigtable_admin/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.BigtableAdmin.Mixfile do
use Mix.Project

@version "0.30.1"
@version "0.30.2"

def project() do
[
Expand Down
Loading