Skip to content

Commit 3c3707a

Browse files
feat: Automated regeneration of Workflows client (#12708)
Auto-created at 2024-12-13 13:18:06 +0000 using the toys pull request generator.
1 parent 7b1b88e commit 3c3707a

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

clients/workflows/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_workflows, "~> 0.8"}]
14+
[{:google_api_workflows, "~> 0.9"}]
1515
end
1616
```
1717

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

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

23-
@discovery_revision "20240925"
23+
@discovery_revision "20241204"
2424

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

clients/workflows/lib/google_api/workflows/v1/model/workflow.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ defmodule GoogleApi.Workflows.V1.Model.Workflow do
3737
* `sourceContents` (*type:* `String.t`, *default:* `nil`) - Workflow code to be executed. The size limit is 128KB.
3838
* `state` (*type:* `String.t`, *default:* `nil`) - Output only. State of the workflow deployment.
3939
* `stateError` (*type:* `GoogleApi.Workflows.V1.Model.StateError.t`, *default:* `nil`) - Output only. Error regarding the state of the workflow. For example, this field will have error details if the execution data is unavailable due to revoked KMS key permissions.
40+
* `tags` (*type:* `map()`, *default:* `nil`) - Optional. Input only. Immutable. Tags associated with this workflow.
4041
* `updateTime` (*type:* `DateTime.t`, *default:* `nil`) - Output only. The timestamp for when the workflow was last updated. This is a workflow-wide field and is not tied to a specific revision.
4142
* `userEnvVars` (*type:* `map()`, *default:* `nil`) - Optional. User-defined environment variables associated with this workflow revision. This map has a maximum length of 20. Each string can take up to 4KiB. Keys cannot be empty strings and cannot start with "GOOGLE" or "WORKFLOWS".
4243
"""
@@ -60,6 +61,7 @@ defmodule GoogleApi.Workflows.V1.Model.Workflow do
6061
:sourceContents => String.t() | nil,
6162
:state => String.t() | nil,
6263
:stateError => GoogleApi.Workflows.V1.Model.StateError.t() | nil,
64+
:tags => map() | nil,
6365
:updateTime => DateTime.t() | nil,
6466
:userEnvVars => map() | nil
6567
}
@@ -80,6 +82,7 @@ defmodule GoogleApi.Workflows.V1.Model.Workflow do
8082
field(:sourceContents)
8183
field(:state)
8284
field(:stateError, as: GoogleApi.Workflows.V1.Model.StateError)
85+
field(:tags, type: :map)
8386
field(:updateTime, as: DateTime)
8487
field(:userEnvVars, type: :map)
8588
end

clients/workflows/mix.exs

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

21-
@version "0.8.1"
21+
@version "0.9.0"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)