Skip to content

Commit ea5b6f0

Browse files
feat: Automated regeneration of ServiceManagement client (googleapis#12654)
Auto-created at 2024-12-07 13:11:19 +0000 using the toys pull request generator.
1 parent e7d4137 commit ea5b6f0

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

clients/service_management/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_management, "~> 0.64"}]
14+
[{:google_api_service_management, "~> 0.65"}]
1515
end
1616
```
1717

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

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

23-
@discovery_revision "20241106"
23+
@discovery_revision "20241202"
2424

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

clients/service_management/lib/google_api/service_management/v1/model/documentation.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ defmodule GoogleApi.ServiceManagement.V1.Model.Documentation do
2121
2222
## Attributes
2323
24+
* `additionalIamInfo` (*type:* `String.t`, *default:* `nil`) - Optional information about the IAM configuration. This is typically used to link to documentation about a product's IAM roles and permissions.
2425
* `documentationRootUrl` (*type:* `String.t`, *default:* `nil`) - The URL to the root of documentation.
2526
* `overview` (*type:* `String.t`, *default:* `nil`) - Declares a single overview page. For example: documentation: summary: ... overview: (== include overview.md ==) This is a shortcut for the following declaration (using pages style): documentation: summary: ... pages: - name: Overview content: (== include overview.md ==) Note: you cannot specify both `overview` field and `pages` field.
2627
* `pages` (*type:* `list(GoogleApi.ServiceManagement.V1.Model.Page.t)`, *default:* `nil`) - The top level pages for the documentation set.
@@ -33,6 +34,7 @@ defmodule GoogleApi.ServiceManagement.V1.Model.Documentation do
3334
use GoogleApi.Gax.ModelBase
3435

3536
@type t :: %__MODULE__{
37+
:additionalIamInfo => String.t() | nil,
3638
:documentationRootUrl => String.t() | nil,
3739
:overview => String.t() | nil,
3840
:pages => list(GoogleApi.ServiceManagement.V1.Model.Page.t()) | nil,
@@ -42,6 +44,7 @@ defmodule GoogleApi.ServiceManagement.V1.Model.Documentation do
4244
:summary => String.t() | nil
4345
}
4446

47+
field(:additionalIamInfo)
4548
field(:documentationRootUrl)
4649
field(:overview)
4750
field(:pages, as: GoogleApi.ServiceManagement.V1.Model.Page, type: :list)

clients/service_management/lib/google_api/service_management/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.ServiceManagement.V1.Model.GoSettings do
2222
## Attributes
2323
2424
* `common` (*type:* `GoogleApi.ServiceManagement.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.ServiceManagement.V1.Model.CommonLanguageSettings.t() | nil
31+
:common => GoogleApi.ServiceManagement.V1.Model.CommonLanguageSettings.t() | nil,
32+
:renamedServices => map() | nil
3133
}
3234

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

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

clients/service_management/mix.exs

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

21-
@version "0.64.0"
21+
@version "0.65.0"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)