Skip to content

Commit

Permalink
feat: Automated regeneration of Memcache client
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Jun 8, 2024
1 parent ec72cbe commit 205b57e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion clients/memcache/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_memcache, "~> 0.21"}]
[{:google_api_memcache, "~> 0.22"}]
end
```

Expand Down
2 changes: 1 addition & 1 deletion clients/memcache/lib/google_api/memcache/v1/metadata.ex
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.Memcache.V1 do
API client metadata for GoogleApi.Memcache.V1.
"""

@discovery_revision "20240307"
@discovery_revision "20240502"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.Memcache.V1beta2 do
API client metadata for GoogleApi.Memcache.V1beta2.
"""

@discovery_revision "20240307"
@discovery_revision "20240604"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ defmodule GoogleApi.Memcache.V1beta2.Model.Instance do
* `nodeCount` (*type:* `integer()`, *default:* `nil`) - Required. Number of nodes in the Memcached instance.
* `parameters` (*type:* `GoogleApi.Memcache.V1beta2.Model.MemcacheParameters.t`, *default:* `nil`) - User defined parameters to apply to the memcached process on each node.
* `reservedIpRangeId` (*type:* `list(String.t)`, *default:* `nil`) - Optional. Contains the id of allocated IP address ranges associated with the private service access connection for example, "test-default" associated with IP range 10.0.0.0/29.
* `satisfiesPzi` (*type:* `boolean()`, *default:* `nil`) - Optional. Output only. Reserved for future use.
* `satisfiesPzs` (*type:* `boolean()`, *default:* `nil`) - Optional. Output only. Reserved for future use.
* `state` (*type:* `String.t`, *default:* `nil`) - Output only. The state of this Memcached instance.
* `updateAvailable` (*type:* `boolean()`, *default:* `nil`) - Output only. Returns true if there is an update waiting to be applied
* `updateTime` (*type:* `DateTime.t`, *default:* `nil`) - Output only. The time the instance was updated.
Expand All @@ -63,6 +65,8 @@ defmodule GoogleApi.Memcache.V1beta2.Model.Instance do
:nodeCount => integer() | nil,
:parameters => GoogleApi.Memcache.V1beta2.Model.MemcacheParameters.t() | nil,
:reservedIpRangeId => list(String.t()) | nil,
:satisfiesPzi => boolean() | nil,
:satisfiesPzs => boolean() | nil,
:state => String.t() | nil,
:updateAvailable => boolean() | nil,
:updateTime => DateTime.t() | nil,
Expand All @@ -89,6 +93,8 @@ defmodule GoogleApi.Memcache.V1beta2.Model.Instance do
field(:nodeCount)
field(:parameters, as: GoogleApi.Memcache.V1beta2.Model.MemcacheParameters)
field(:reservedIpRangeId, type: :list)
field(:satisfiesPzi)
field(:satisfiesPzs)
field(:state)
field(:updateAvailable)
field(:updateTime, as: DateTime)
Expand Down
2 changes: 1 addition & 1 deletion clients/memcache/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.Memcache.Mixfile do
use Mix.Project

@version "0.21.1"
@version "0.22.0"

def project() do
[
Expand Down

0 comments on commit 205b57e

Please sign in to comment.