Skip to content

Commit 281260b

Browse files
feat: Automated regeneration of Integrations client (#12702)
Auto-created at 2024-12-13 13:14:39 +0000 using the toys pull request generator.
1 parent 0eee1b9 commit 281260b

File tree

6 files changed

+10
-4
lines changed

6 files changed

+10
-4
lines changed

clients/integrations/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_integrations, "~> 0.13"}]
14+
[{:google_api_integrations, "~> 0.14"}]
1515
end
1616
```
1717

clients/integrations/lib/google_api/integrations/v1/api/projects.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2779,7 +2779,7 @@ defmodule GoogleApi.Integrations.V1.Api.Projects do
27792779
## Parameters
27802780
27812781
* `connection` (*type:* `GoogleApi.Integrations.V1.Connection.t`) - Connection to server
2782-
* `name` (*type:* `String.t`) - Required. Next ID: 5 The execution resource name. Format: projects/{gcp_project_id}/locations/{location}/integrations/{integration}/executions/{execution_id}
2782+
* `name` (*type:* `String.t`) - Required. Next ID: 6 The execution resource name. Format: projects/{gcp_project_id}/locations/{location}/integrations/{integration}/executions/{execution_id}
27832783
* `optional_params` (*type:* `keyword()`) - Optional parameters
27842784
* `:"$.xgafv"` (*type:* `String.t`) - V1 error format.
27852785
* `:access_token` (*type:* `String.t`) - OAuth access token.

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

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

23-
@discovery_revision "20241207"
23+
@discovery_revision "20241209"
2424

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

clients/integrations/lib/google_api/integrations/v1/model/enterprise_crm_frontends_eventbus_proto_event_execution_info_replay_info.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ defmodule GoogleApi.Integrations.V1.Model.EnterpriseCrmFrontendsEventbusProtoEve
2222
## Attributes
2323
2424
* `originalExecutionInfoId` (*type:* `String.t`, *default:* `nil`) - If this execution is a replay of another execution, then this field contains the original execution id.
25+
* `replayMode` (*type:* `String.t`, *default:* `nil`) - Replay mode for the execution
2526
* `replayReason` (*type:* `String.t`, *default:* `nil`) - reason for replay
2627
* `replayedExecutionInfoIds` (*type:* `list(String.t)`, *default:* `nil`) - If this execution has been replayed, then this field contains the execution ids of the replayed executions.
2728
"""
@@ -30,11 +31,13 @@ defmodule GoogleApi.Integrations.V1.Model.EnterpriseCrmFrontendsEventbusProtoEve
3031

3132
@type t :: %__MODULE__{
3233
:originalExecutionInfoId => String.t() | nil,
34+
:replayMode => String.t() | nil,
3335
:replayReason => String.t() | nil,
3436
:replayedExecutionInfoIds => list(String.t()) | nil
3537
}
3638

3739
field(:originalExecutionInfoId)
40+
field(:replayMode)
3841
field(:replayReason)
3942
field(:replayedExecutionInfoIds, type: :list)
4043
end

clients/integrations/lib/google_api/integrations/v1/model/google_cloud_integrations_v1alpha_execution_replay_info.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ defmodule GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaExecutio
2222
## Attributes
2323
2424
* `originalExecutionInfoId` (*type:* `String.t`, *default:* `nil`) - If this execution is a replay of another execution, then this field contains the original execution id.
25+
* `replayMode` (*type:* `String.t`, *default:* `nil`) - Replay mode for the execution
2526
* `replayReason` (*type:* `String.t`, *default:* `nil`) - reason for replay
2627
* `replayedExecutionInfoIds` (*type:* `list(String.t)`, *default:* `nil`) - If this execution has been replayed, then this field contains the execution ids of the replayed executions.
2728
"""
@@ -30,11 +31,13 @@ defmodule GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaExecutio
3031

3132
@type t :: %__MODULE__{
3233
:originalExecutionInfoId => String.t() | nil,
34+
:replayMode => String.t() | nil,
3335
:replayReason => String.t() | nil,
3436
:replayedExecutionInfoIds => list(String.t()) | nil
3537
}
3638

3739
field(:originalExecutionInfoId)
40+
field(:replayMode)
3841
field(:replayReason)
3942
field(:replayedExecutionInfoIds, type: :list)
4043
end

clients/integrations/mix.exs

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

21-
@version "0.13.0"
21+
@version "0.14.0"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)