Skip to content

Commit 37a6e40

Browse files
feat: Automated regeneration of AppEngine client (googleapis#12881)
Auto-created at 2025-01-28 13:11:19 +0000 using the toys pull request generator.
1 parent 2e313ce commit 37a6e40

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

clients/app_engine/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Install this package from [Hex](https://hex.pm) by adding
1111

1212
```elixir
1313
def deps do
14-
[{:google_api_app_engine, "~> 0.43"}]
14+
[{:google_api_app_engine, "~> 0.44"}]
1515
end
1616
```
1717

clients/app_engine/lib/google_api/app_engine/v1/metadata.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ defmodule GoogleApi.AppEngine.V1 do
2020
API client metadata for GoogleApi.AppEngine.V1.
2121
"""
2222

23-
@discovery_revision "20241205"
23+
@discovery_revision "20250127"
2424

2525
def discovery_revision(), do: @discovery_revision
2626
end

clients/app_engine/lib/google_api/app_engine/v1/model/application.ex

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ defmodule GoogleApi.AppEngine.V1.Model.Application do
3737
* `name` (*type:* `String.t`, *default:* `nil`) - Output only. Full path to the Application resource in the API. Example: apps/myapp.@OutputOnly
3838
* `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.
3939
* `servingStatus` (*type:* `String.t`, *default:* `nil`) - Serving status of this application.
40+
* `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
4041
"""
4142

4243
use GoogleApi.Gax.ModelBase
@@ -57,7 +58,8 @@ defmodule GoogleApi.AppEngine.V1.Model.Application do
5758
:locationId => String.t() | nil,
5859
:name => String.t() | nil,
5960
:serviceAccount => String.t() | nil,
60-
:servingStatus => String.t() | nil
61+
:servingStatus => String.t() | nil,
62+
:sslPolicy => String.t() | nil
6163
}
6264

6365
field(:authDomain)
@@ -76,6 +78,7 @@ defmodule GoogleApi.AppEngine.V1.Model.Application do
7678
field(:name)
7779
field(:serviceAccount)
7880
field(:servingStatus)
81+
field(:sslPolicy)
7982
end
8083

8184
defimpl Poison.Decoder, for: GoogleApi.AppEngine.V1.Model.Application do

clients/app_engine/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
defmodule GoogleApi.AppEngine.Mixfile do
1919
use Mix.Project
2020

21-
@version "0.43.0"
21+
@version "0.44.0"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)