Skip to content

Commit bb5db3e

Browse files
feat: Automated regeneration of ServiceControl client (#12726)
Auto-created at 2024-12-15 13:16:06 +0000 using the toys pull request generator.
1 parent 9fd0db9 commit bb5db3e

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

clients/service_control/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_service_control, "~> 0.43"}]
14+
[{:google_api_service_control, "~> 0.44"}]
1515
end
1616
```
1717

clients/service_control/lib/google_api/service_control/v2/metadata.ex

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

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

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

clients/service_control/lib/google_api/service_control/v2/model/check_response.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,20 @@ defmodule GoogleApi.ServiceControl.V2.Model.CheckResponse do
2121
2222
## Attributes
2323
24+
* `dynamicMetadata` (*type:* `map()`, *default:* `nil`) - Optional response metadata that will be emitted as dynamic metadata to be consumed by the caller of ServiceController. For compatibility with the ext_authz interface.
2425
* `headers` (*type:* `map()`, *default:* `nil`) - Returns a set of request contexts generated from the `CheckRequest`.
2526
* `status` (*type:* `GoogleApi.ServiceControl.V2.Model.Status.t`, *default:* `nil`) - Operation is allowed when this field is not set. Any non-'OK' status indicates a denial; google.rpc.Status.details would contain additional details about the denial.
2627
"""
2728

2829
use GoogleApi.Gax.ModelBase
2930

3031
@type t :: %__MODULE__{
32+
:dynamicMetadata => map() | nil,
3133
:headers => map() | nil,
3234
:status => GoogleApi.ServiceControl.V2.Model.Status.t() | nil
3335
}
3436

37+
field(:dynamicMetadata, type: :map)
3538
field(:headers, type: :map)
3639
field(:status, as: GoogleApi.ServiceControl.V2.Model.Status)
3740
end

clients/service_control/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
defmodule GoogleApi.ServiceControl.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)