Skip to content

Commit 004dc20

Browse files
feat: Automated regeneration of ServiceNetworking client (googleapis#12530)
Auto-created at 2024-11-15 13:11:38 +0000 using the toys pull request generator.
1 parent 4f5df19 commit 004dc20

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

clients/service_networking/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_networking, "~> 0.37"}]
14+
[{:google_api_service_networking, "~> 0.38"}]
1515
end
1616
```
1717

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

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

23-
@discovery_revision "20241105"
23+
@discovery_revision "20241113"
2424

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

clients/service_networking/lib/google_api/service_networking/v1/model/go_settings.ex

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,18 @@ defmodule GoogleApi.ServiceNetworking.V1.Model.GoSettings do
2222
## Attributes
2323
2424
* `common` (*type:* `GoogleApi.ServiceNetworking.V1.Model.CommonLanguageSettings.t`, *default:* `nil`) - Some settings.
25+
* `renamedServices` (*type:* `map()`, *default:* `nil`) - Map of service names to renamed services. Keys are the package relative service names and values are the name to be used for the service client and call options. publishing: go_settings: renamed_services: Publisher: TopicAdmin
2526
"""
2627

2728
use GoogleApi.Gax.ModelBase
2829

2930
@type t :: %__MODULE__{
30-
:common => GoogleApi.ServiceNetworking.V1.Model.CommonLanguageSettings.t() | nil
31+
:common => GoogleApi.ServiceNetworking.V1.Model.CommonLanguageSettings.t() | nil,
32+
:renamedServices => map() | nil
3133
}
3234

3335
field(:common, as: GoogleApi.ServiceNetworking.V1.Model.CommonLanguageSettings)
36+
field(:renamedServices, type: :map)
3437
end
3538

3639
defimpl Poison.Decoder, for: GoogleApi.ServiceNetworking.V1.Model.GoSettings do

clients/service_networking/mix.exs

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

21-
@version "0.37.0"
21+
@version "0.38.0"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)