Skip to content

Commit a9c5d91

Browse files
feat: Automated regeneration of Integrations client (googleapis#12912)
Auto-created at 2025-02-02 13:11:27 +0000 using the toys pull request generator.
1 parent 77e47a7 commit a9c5d91

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
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 "20250113"
23+
@discovery_revision "20250128"
2424

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

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

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,34 @@ defmodule GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaReplayEx
2121
2222
## Attributes
2323
24+
* `modifiedParameters` (*type:* `%{optional(String.t) => GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaValueType.t}`, *default:* `nil`) - Optional. The modified input parameters for replay. - Provide values for all the fields in the 'update_mask'. Any field not present in the 'update_mask' will be ignored and its value will be taken from the original execution. - If the 'update_mask' is not specified, all the parameters from original execution will be ignored and only the `modified_parameters` will be used.
25+
* `replayMode` (*type:* `String.t`, *default:* `nil`) - Optional. The mode of the replay.
2426
* `replayReason` (*type:* `String.t`, *default:* `nil`) - Required. The user provided reason for replaying the execution.
27+
* `updateMask` (*type:* `String.t`, *default:* `nil`) - Optional. The list of parameters to be updated. - If the `update_mask` is not specified, all the parameters from original execution will be ignored and only the `modified_parameters` will be used. - It is an error to include a parameter in `update_mask` but not in `modified_parameters`. - Updating nested fields in a JSON parameter is not supported, please provide the complete JSON in the `modified_parameters`.
2528
"""
2629

2730
use GoogleApi.Gax.ModelBase
2831

2932
@type t :: %__MODULE__{
30-
:replayReason => String.t() | nil
33+
:modifiedParameters =>
34+
%{
35+
optional(String.t()) =>
36+
GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaValueType.t()
37+
}
38+
| nil,
39+
:replayMode => String.t() | nil,
40+
:replayReason => String.t() | nil,
41+
:updateMask => String.t() | nil
3142
}
3243

44+
field(:modifiedParameters,
45+
as: GoogleApi.Integrations.V1.Model.GoogleCloudIntegrationsV1alphaValueType,
46+
type: :map
47+
)
48+
49+
field(:replayMode)
3350
field(:replayReason)
51+
field(:updateMask)
3452
end
3553

3654
defimpl Poison.Decoder,

0 commit comments

Comments
 (0)