Skip to content

Commit 838936d

Browse files
feat: Automated regeneration of Integrations client (googleapis#13045)
Auto-created at 2025-02-28 13:11:18 +0000 using the toys pull request generator.
1 parent 506e9c8 commit 838936d

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

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 "20250206"
23+
@discovery_revision "20250223"
2424

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

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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ defmodule GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaExecuteI
2626
* `executionId` (*type:* `String.t`, *default:* `nil`) - The id of the execution corresponding to this run of integration.
2727
* `outputParameters` (*type:* `map()`, *default:* `nil`) - OUTPUT parameters in format of Map. Where Key is the name of the parameter. Note: Name of the system generated parameters are wrapped by backtick(`) to distinguish them from the user defined parameters.
2828
* `parameterEntries` (*type:* `list(GoogleApi.Integrations.V1.Model.EnterpriseCrmFrontendsEventbusProtoParameterEntry.t)`, *default:* `nil`) - Parameters are a part of Event and can be used to communicate between different tasks that are part of the same integration execution.
29+
* `parameters` (*type:* `%{optional(String.t) => GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaValueType.t}`, *default:* `nil`) - Optional. OUTPUT parameters from integration execution.
2930
"""
3031

3132
use GoogleApi.Gax.ModelBase
@@ -41,6 +42,12 @@ defmodule GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaExecuteI
4142
list(
4243
GoogleApi.Integrations.V1.Model.EnterpriseCrmFrontendsEventbusProtoParameterEntry.t()
4344
)
45+
| nil,
46+
:parameters =>
47+
%{
48+
optional(String.t()) =>
49+
GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaValueType.t()
50+
}
4451
| nil
4552
}
4653

@@ -56,6 +63,11 @@ defmodule GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaExecuteI
5663
as: GoogleApi.Integrations.V1.Model.EnterpriseCrmFrontendsEventbusProtoParameterEntry,
5764
type: :list
5865
)
66+
67+
field(:parameters,
68+
as: GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaValueType,
69+
type: :map
70+
)
5971
end
6072

6173
defimpl Poison.Decoder,

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

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,14 @@ defmodule GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaImportTe
2121
2222
## Attributes
2323
24-
* `integration` (*type:* `String.t`, *default:* `nil`) - Required. Name of the integration where template needs to be imported.
25-
* `integrationRegion` (*type:* `String.t`, *default:* `nil`) - Required. The region of the Integration to be created.
24+
* `integration` (*type:* `String.t`, *default:* `nil`) - Required. Resource Name of the integration where template needs to be imported/inserted.
2625
* `subIntegrations` (*type:* `%{optional(String.t) => GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaUseTemplateRequestIntegrationDetails.t}`, *default:* `nil`) - Optional. Sub Integration which would be created via templates.
2726
"""
2827

2928
use GoogleApi.Gax.ModelBase
3029

3130
@type t :: %__MODULE__{
3231
:integration => String.t() | nil,
33-
:integrationRegion => String.t() | nil,
3432
:subIntegrations =>
3533
%{
3634
optional(String.t()) =>
@@ -40,7 +38,6 @@ defmodule GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaImportTe
4038
}
4139

4240
field(:integration)
43-
field(:integrationRegion)
4441

4542
field(:subIntegrations,
4643
as:

0 commit comments

Comments
 (0)