Skip to content

Commit 94572b8

Browse files
feat: Automated regeneration of Testing client (googleapis#13089)
Auto-created at 2025-03-05 13:13:48 +0000 using the toys pull request generator.
1 parent 57d2f88 commit 94572b8

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

clients/testing/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_testing, "~> 0.33"}]
14+
[{:google_api_testing, "~> 0.34"}]
1515
end
1616
```
1717

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

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

23-
@discovery_revision "20241231"
23+
@discovery_revision "20250304"
2424

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

clients/testing/lib/google_api/testing/v1/model/lab_info.ex

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,18 @@ defmodule GoogleApi.Testing.V1.Model.LabInfo do
2222
## Attributes
2323
2424
* `name` (*type:* `String.t`, *default:* `nil`) - Lab name where the device is hosted. If empty, the device is hosted in a Google owned lab.
25+
* `regionCode` (*type:* `String.t`, *default:* `nil`) - The Unicode country/region code (CLDR) of the lab where the device is hosted. E.g. "US" for United States, "CH" for Switzerland.
2526
"""
2627

2728
use GoogleApi.Gax.ModelBase
2829

2930
@type t :: %__MODULE__{
30-
:name => String.t() | nil
31+
:name => String.t() | nil,
32+
:regionCode => String.t() | nil
3133
}
3234

3335
field(:name)
36+
field(:regionCode)
3437
end
3538

3639
defimpl Poison.Decoder, for: GoogleApi.Testing.V1.Model.LabInfo do

clients/testing/mix.exs

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

21-
@version "0.33.1"
21+
@version "0.34.0"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)