Skip to content

Commit 17b3a5e

Browse files
feat: Automated regeneration of Dataflow client (#13135)
Auto-created at 2025-03-11 13:19:48 +0000 using the toys pull request generator.
1 parent ed66669 commit 17b3a5e

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

clients/dataflow/lib/google_api/dataflow/v1b3/metadata.ex

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

23-
@discovery_revision "20250131"
23+
@discovery_revision "20250310"
2424

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

clients/dataflow/lib/google_api/dataflow/v1b3/model/flex_template_runtime_environment.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ defmodule GoogleApi.Dataflow.V1b3.Model.FlexTemplateRuntimeEnvironment do
2222
## Attributes
2323
2424
* `additionalExperiments` (*type:* `list(String.t)`, *default:* `nil`) - Additional experiment flags for the job.
25+
* `additionalPipelineOptions` (*type:* `list(String.t)`, *default:* `nil`) - Optional. Additional pipeline option flags for the job.
2526
* `additionalUserLabels` (*type:* `map()`, *default:* `nil`) - Additional user labels to be specified for the job. Keys and values must follow the restrictions specified in the [labeling restrictions](https://cloud.google.com/compute/docs/labeling-resources#restrictions) page. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1kg", "count": "3" }.
2627
* `autoscalingAlgorithm` (*type:* `String.t`, *default:* `nil`) - The algorithm to use for autoscaling
2728
* `diskSizeGb` (*type:* `integer()`, *default:* `nil`) - Worker disk size, in gigabytes.
@@ -52,6 +53,7 @@ defmodule GoogleApi.Dataflow.V1b3.Model.FlexTemplateRuntimeEnvironment do
5253

5354
@type t :: %__MODULE__{
5455
:additionalExperiments => list(String.t()) | nil,
56+
:additionalPipelineOptions => list(String.t()) | nil,
5557
:additionalUserLabels => map() | nil,
5658
:autoscalingAlgorithm => String.t() | nil,
5759
:diskSizeGb => integer() | nil,
@@ -79,6 +81,7 @@ defmodule GoogleApi.Dataflow.V1b3.Model.FlexTemplateRuntimeEnvironment do
7981
}
8082

8183
field(:additionalExperiments, type: :list)
84+
field(:additionalPipelineOptions, type: :list)
8285
field(:additionalUserLabels, type: :map)
8386
field(:autoscalingAlgorithm)
8487
field(:diskSizeGb)

clients/dataflow/lib/google_api/dataflow/v1b3/model/metric_update.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
defmodule GoogleApi.Dataflow.V1b3.Model.MetricUpdate do
1919
@moduledoc """
20-
Describes the state of a metric. Next ID: 14
20+
Describes the state of a metric.
2121
2222
## Attributes
2323

clients/dataflow/lib/google_api/dataflow/v1b3/model/runtime_environment.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ defmodule GoogleApi.Dataflow.V1b3.Model.RuntimeEnvironment do
2222
## Attributes
2323
2424
* `additionalExperiments` (*type:* `list(String.t)`, *default:* `nil`) - Optional. Additional experiment flags for the job, specified with the `--experiments` option.
25+
* `additionalPipelineOptions` (*type:* `list(String.t)`, *default:* `nil`) - Optional. Additional pipeline option flags for the job.
2526
* `additionalUserLabels` (*type:* `map()`, *default:* `nil`) - Optional. Additional user labels to be specified for the job. Keys and values should follow the restrictions specified in the [labeling restrictions](https://cloud.google.com/compute/docs/labeling-resources#restrictions) page. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1kg", "count": "3" }.
2627
* `bypassTempDirValidation` (*type:* `boolean()`, *default:* `nil`) - Optional. Whether to bypass the safety checks for the job's temporary directory. Use with caution.
2728
* `diskSizeGb` (*type:* `integer()`, *default:* `nil`) - Optional. The disk size, in gigabytes, to use on each remote Compute Engine worker instance.
@@ -45,6 +46,7 @@ defmodule GoogleApi.Dataflow.V1b3.Model.RuntimeEnvironment do
4546

4647
@type t :: %__MODULE__{
4748
:additionalExperiments => list(String.t()) | nil,
49+
:additionalPipelineOptions => list(String.t()) | nil,
4850
:additionalUserLabels => map() | nil,
4951
:bypassTempDirValidation => boolean() | nil,
5052
:diskSizeGb => integer() | nil,
@@ -65,6 +67,7 @@ defmodule GoogleApi.Dataflow.V1b3.Model.RuntimeEnvironment do
6567
}
6668

6769
field(:additionalExperiments, type: :list)
70+
field(:additionalPipelineOptions, type: :list)
6871
field(:additionalUserLabels, type: :map)
6972
field(:bypassTempDirValidation)
7073
field(:diskSizeGb)

0 commit comments

Comments
 (0)