Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Automated regeneration of TagManager client #11435

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion clients/tag_manager/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_tag_manager, "~> 0.20"}]
[{:google_api_tag_manager, "~> 0.21"}]
end
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ defmodule GoogleApi.TagManager.V2.Api.Accounts do
end

@doc """
Looks up a Container by destination ID.
Looks up a Container by destination ID or tag ID.

## Parameters

Expand All @@ -549,7 +549,8 @@ defmodule GoogleApi.TagManager.V2.Api.Accounts do
* `:quotaUser` (*type:* `String.t`) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
* `:uploadType` (*type:* `String.t`) - Legacy upload protocol for media (e.g. "media", "multipart").
* `:upload_protocol` (*type:* `String.t`) - Upload protocol for media (e.g. "raw", "multipart").
* `:destinationId` (*type:* `String.t`) - Destination ID linked to a GTM Container, e.g. AW-123456789. Example: accounts/containers:lookup?destination_id={destination_id}.
* `:destinationId` (*type:* `String.t`) - Destination ID linked to a GTM Container, e.g. AW-123456789. Example: accounts/containers:lookup?destination_id={destination_id}. Only one of destination_id or tag_id should be set.
* `:tagId` (*type:* `String.t`) - Tag ID for a GTM Container, e.g. GTM-123456789. Example: accounts/containers:lookup?tag_id={tag_id}. Only one of destination_id or tag_id should be set.
* `opts` (*type:* `keyword()`) - Call options

## Returns
Expand All @@ -575,7 +576,8 @@ defmodule GoogleApi.TagManager.V2.Api.Accounts do
:quotaUser => :query,
:uploadType => :query,
:upload_protocol => :query,
:destinationId => :query
:destinationId => :query,
:tagId => :query
}

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

@discovery_revision "20240306"
@discovery_revision "20240701"

def discovery_revision(), do: @discovery_revision
end
2 changes: 1 addition & 1 deletion clients/tag_manager/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.TagManager.Mixfile do
use Mix.Project

@version "0.20.0"
@version "0.21.0"

def project() do
[
Expand Down
Loading