Skip to content

Commit

Permalink
feat: Automated regeneration of Integrations client (#12702)
Browse files Browse the repository at this point in the history
Auto-created at 2024-12-13 13:14:39 +0000 using the toys pull request generator.
  • Loading branch information
yoshi-code-bot authored Dec 13, 2024
1 parent 0eee1b9 commit 281260b
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion clients/integrations/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_integrations, "~> 0.13"}]
[{:google_api_integrations, "~> 0.14"}]
end
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2779,7 +2779,7 @@ defmodule GoogleApi.Integrations.V1.Api.Projects do
## Parameters
* `connection` (*type:* `GoogleApi.Integrations.V1.Connection.t`) - Connection to server
* `name` (*type:* `String.t`) - Required. Next ID: 5 The execution resource name. Format: projects/{gcp_project_id}/locations/{location}/integrations/{integration}/executions/{execution_id}
* `name` (*type:* `String.t`) - Required. Next ID: 6 The execution resource name. Format: projects/{gcp_project_id}/locations/{location}/integrations/{integration}/executions/{execution_id}
* `optional_params` (*type:* `keyword()`) - Optional parameters
* `:"$.xgafv"` (*type:* `String.t`) - V1 error format.
* `:access_token` (*type:* `String.t`) - OAuth access token.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule GoogleApi.Integrations.V1 do
API client metadata for GoogleApi.Integrations.V1.
"""

@discovery_revision "20241207"
@discovery_revision "20241209"

def discovery_revision(), do: @discovery_revision
end
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ defmodule GoogleApi.Integrations.V1.Model.EnterpriseCrmFrontendsEventbusProtoEve
## Attributes
* `originalExecutionInfoId` (*type:* `String.t`, *default:* `nil`) - If this execution is a replay of another execution, then this field contains the original execution id.
* `replayMode` (*type:* `String.t`, *default:* `nil`) - Replay mode for the execution
* `replayReason` (*type:* `String.t`, *default:* `nil`) - reason for replay
* `replayedExecutionInfoIds` (*type:* `list(String.t)`, *default:* `nil`) - If this execution has been replayed, then this field contains the execution ids of the replayed executions.
"""
Expand All @@ -30,11 +31,13 @@ defmodule GoogleApi.Integrations.V1.Model.EnterpriseCrmFrontendsEventbusProtoEve

@type t :: %__MODULE__{
:originalExecutionInfoId => String.t() | nil,
:replayMode => String.t() | nil,
:replayReason => String.t() | nil,
:replayedExecutionInfoIds => list(String.t()) | nil
}

field(:originalExecutionInfoId)
field(:replayMode)
field(:replayReason)
field(:replayedExecutionInfoIds, type: :list)
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ defmodule GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaExecutio
## Attributes
* `originalExecutionInfoId` (*type:* `String.t`, *default:* `nil`) - If this execution is a replay of another execution, then this field contains the original execution id.
* `replayMode` (*type:* `String.t`, *default:* `nil`) - Replay mode for the execution
* `replayReason` (*type:* `String.t`, *default:* `nil`) - reason for replay
* `replayedExecutionInfoIds` (*type:* `list(String.t)`, *default:* `nil`) - If this execution has been replayed, then this field contains the execution ids of the replayed executions.
"""
Expand All @@ -30,11 +31,13 @@ defmodule GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaExecutio

@type t :: %__MODULE__{
:originalExecutionInfoId => String.t() | nil,
:replayMode => String.t() | nil,
:replayReason => String.t() | nil,
:replayedExecutionInfoIds => list(String.t()) | nil
}

field(:originalExecutionInfoId)
field(:replayMode)
field(:replayReason)
field(:replayedExecutionInfoIds, type: :list)
end
Expand Down
2 changes: 1 addition & 1 deletion clients/integrations/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
defmodule GoogleApi.Integrations.Mixfile do
use Mix.Project

@version "0.13.0"
@version "0.14.0"

def project() do
[
Expand Down

0 comments on commit 281260b

Please sign in to comment.