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 AlloyDB client #12796

Merged
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
2 changes: 1 addition & 1 deletion clients/alloy_db/lib/google_api/alloy_db/v1/metadata.ex
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.AlloyDB.V1 do
API client metadata for GoogleApi.AlloyDB.V1.
"""

@discovery_revision "20241204"
@discovery_revision "20241228"

def discovery_revision(), do: @discovery_revision
end
8 changes: 4 additions & 4 deletions clients/alloy_db/lib/google_api/alloy_db/v1/model/node.ex
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ defmodule GoogleApi.AlloyDB.V1.Model.Node do

## Attributes

* `id` (*type:* `String.t`, *default:* `nil`) - The identifier of the VM e.g. "test-read-0601-407e52be-ms3l".
* `ip` (*type:* `String.t`, *default:* `nil`) - The private IP address of the VM e.g. "10.57.0.34".
* `state` (*type:* `String.t`, *default:* `nil`) - Determined by state of the compute VM and postgres-service health. Compute VM state can have values listed in https://cloud.google.com/compute/docs/instances/instance-life-cycle and postgres-service health can have values: HEALTHY and UNHEALTHY.
* `zoneId` (*type:* `String.t`, *default:* `nil`) - The Compute Engine zone of the VM e.g. "us-central1-b".
* `id` (*type:* `String.t`, *default:* `nil`) - Output only. The identifier of the VM e.g. "test-read-0601-407e52be-ms3l".
* `ip` (*type:* `String.t`, *default:* `nil`) - Output only. The private IP address of the VM e.g. "10.57.0.34".
* `state` (*type:* `String.t`, *default:* `nil`) - Output only. Determined by state of the compute VM and postgres-service health. Compute VM state can have values listed in https://cloud.google.com/compute/docs/instances/instance-life-cycle and postgres-service health can have values: HEALTHY and UNHEALTHY.
* `zoneId` (*type:* `String.t`, *default:* `nil`) - Output only. The Compute Engine zone of the VM e.g. "us-central1-b".
"""

use GoogleApi.Gax.ModelBase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ defmodule GoogleApi.AlloyDB.V1.Model.StorageDatabasecenterPartnerapiV1mainMachin

## Attributes

* `cpuCount` (*type:* `integer()`, *default:* `nil`) - The number of CPUs. TODO(b/342344482, b/342346271) add proto validations again after bug fix.
* `cpuCount` (*type:* `integer()`, *default:* `nil`) - The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482, b/342346271) add proto validations again after bug fix.
* `memorySizeInBytes` (*type:* `String.t`, *default:* `nil`) - Memory size in bytes. TODO(b/342344482, b/342346271) add proto validations again after bug fix.
* `shardCount` (*type:* `integer()`, *default:* `nil`) - Optional. Number of shards (if applicable).
* `vcpuCount` (*type:* `float()`, *default:* `nil`) - Optional. The number of vCPUs. TODO(b/342344482, b/342346271) add proto validations again after bug fix.
Expand Down
2 changes: 1 addition & 1 deletion clients/alloy_db/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.AlloyDB.Mixfile do
use Mix.Project

@version "0.15.0"
@version "0.15.1"

def project() do
[
Expand Down
Loading