Skip to content

Commit

Permalink
feat: Automated regeneration of ServiceControl client (#12726)
Browse files Browse the repository at this point in the history
Auto-created at 2024-12-15 13:16:06 +0000 using the toys pull request generator.
  • Loading branch information
yoshi-code-bot authored Dec 15, 2024
1 parent 9fd0db9 commit bb5db3e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion clients/service_control/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_service_control, "~> 0.43"}]
[{:google_api_service_control, "~> 0.44"}]
end
```

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

@discovery_revision "20240802"
@discovery_revision "20241205"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,20 @@ defmodule GoogleApi.ServiceControl.V2.Model.CheckResponse do
## Attributes
* `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.
* `headers` (*type:* `map()`, *default:* `nil`) - Returns a set of request contexts generated from the `CheckRequest`.
* `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.
"""

use GoogleApi.Gax.ModelBase

@type t :: %__MODULE__{
:dynamicMetadata => map() | nil,
:headers => map() | nil,
:status => GoogleApi.ServiceControl.V2.Model.Status.t() | nil
}

field(:dynamicMetadata, type: :map)
field(:headers, type: :map)
field(:status, as: GoogleApi.ServiceControl.V2.Model.Status)
end
Expand Down
2 changes: 1 addition & 1 deletion clients/service_control/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.ServiceControl.Mixfile do
use Mix.Project

@version "0.43.0"
@version "0.44.0"

def project() do
[
Expand Down

0 comments on commit bb5db3e

Please sign in to comment.