Skip to content

Commit d96e294

Browse files
feat: Automated regeneration of DocumentAI client (googleapis#12425)
Auto-created at 2024-10-28 13:14:02 +0000 using the toys pull request generator.
1 parent f7ca4e2 commit d96e294

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

clients/document_ai/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_document_ai, "~> 0.44"}]
14+
[{:google_api_document_ai, "~> 0.45"}]
1515
end
1616
```
1717

clients/document_ai/lib/google_api/document_ai/v1beta3/metadata.ex

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

23-
@discovery_revision "20240911"
23+
@discovery_revision "20241025"
2424

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

clients/document_ai/lib/google_api/document_ai/v1beta3/model/google_cloud_documentai_v1beta3_dataset_schema.ex

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ defmodule GoogleApi.DocumentAI.V1beta3.Model.GoogleCloudDocumentaiV1beta3Dataset
2323
2424
* `documentSchema` (*type:* `GoogleApi.DocumentAI.V1beta3.Model.GoogleCloudDocumentaiV1beta3DocumentSchema.t`, *default:* `nil`) - Optional. Schema of the dataset.
2525
* `name` (*type:* `String.t`, *default:* `nil`) - Dataset schema resource name. Format: `projects/{project}/locations/{location}/processors/{processor}/dataset/datasetSchema`
26+
* `satisfiesPzi` (*type:* `boolean()`, *default:* `nil`) - Output only. Reserved for future use.
27+
* `satisfiesPzs` (*type:* `boolean()`, *default:* `nil`) - Output only. Reserved for future use.
2628
"""
2729

2830
use GoogleApi.Gax.ModelBase
@@ -31,14 +33,18 @@ defmodule GoogleApi.DocumentAI.V1beta3.Model.GoogleCloudDocumentaiV1beta3Dataset
3133
:documentSchema =>
3234
GoogleApi.DocumentAI.V1beta3.Model.GoogleCloudDocumentaiV1beta3DocumentSchema.t()
3335
| nil,
34-
:name => String.t() | nil
36+
:name => String.t() | nil,
37+
:satisfiesPzi => boolean() | nil,
38+
:satisfiesPzs => boolean() | nil
3539
}
3640

3741
field(:documentSchema,
3842
as: GoogleApi.DocumentAI.V1beta3.Model.GoogleCloudDocumentaiV1beta3DocumentSchema
3943
)
4044

4145
field(:name)
46+
field(:satisfiesPzi)
47+
field(:satisfiesPzs)
4248
end
4349

4450
defimpl Poison.Decoder,

clients/document_ai/mix.exs

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

21-
@version "0.44.0"
21+
@version "0.45.0"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)