Skip to content

Commit

Permalink
feat: Automated regeneration of AppEngine client (#12881)
Browse files Browse the repository at this point in the history
Auto-created at 2025-01-28 13:11:19 +0000 using the toys pull request generator.
  • Loading branch information
yoshi-code-bot authored Jan 28, 2025
1 parent 2e313ce commit 37a6e40
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion clients/app_engine/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_app_engine, "~> 0.43"}]
[{:google_api_app_engine, "~> 0.44"}]
end
```

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

@discovery_revision "20241205"
@discovery_revision "20250127"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ defmodule GoogleApi.AppEngine.V1.Model.Application do
* `name` (*type:* `String.t`, *default:* `nil`) - Output only. Full path to the Application resource in the API. Example: apps/myapp.@OutputOnly
* `serviceAccount` (*type:* `String.t`, *default:* `nil`) - The service account associated with the application. This is the app-level default identity. If no identity provided during create version, Admin API will fallback to this one.
* `servingStatus` (*type:* `String.t`, *default:* `nil`) - Serving status of this application.
* `sslPolicy` (*type:* `String.t`, *default:* `nil`) - The SSL policy that will be applied to the application. If set to Modern it will restrict traffic with TLS < 1.2 and allow only Modern Ciphers suite
"""

use GoogleApi.Gax.ModelBase
Expand All @@ -57,7 +58,8 @@ defmodule GoogleApi.AppEngine.V1.Model.Application do
:locationId => String.t() | nil,
:name => String.t() | nil,
:serviceAccount => String.t() | nil,
:servingStatus => String.t() | nil
:servingStatus => String.t() | nil,
:sslPolicy => String.t() | nil
}

field(:authDomain)
Expand All @@ -76,6 +78,7 @@ defmodule GoogleApi.AppEngine.V1.Model.Application do
field(:name)
field(:serviceAccount)
field(:servingStatus)
field(:sslPolicy)
end

defimpl Poison.Decoder, for: GoogleApi.AppEngine.V1.Model.Application do
Expand Down
2 changes: 1 addition & 1 deletion clients/app_engine/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.AppEngine.Mixfile do
use Mix.Project

@version "0.43.0"
@version "0.44.0"

def project() do
[
Expand Down

0 comments on commit 37a6e40

Please sign in to comment.