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 Integrations client #12702

Merged
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/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
Loading