Skip to content

Commit c81e848

Browse files
feat: Automated regeneration of Notebooks client (googleapis#13179)
Auto-created at 2025-03-19 13:16:40 +0000 using the toys pull request generator.
1 parent bcf3398 commit c81e848

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

clients/notebooks/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_notebooks, "~> 0.15"}]
14+
[{:google_api_notebooks, "~> 0.16"}]
1515
end
1616
```
1717

clients/notebooks/lib/google_api/notebooks/v2/metadata.ex

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

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

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

clients/notebooks/lib/google_api/notebooks/v2/model/config.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ defmodule GoogleApi.Notebooks.V2.Model.Config do
2323
2424
* `availableImages` (*type:* `list(GoogleApi.Notebooks.V2.Model.ImageRelease.t)`, *default:* `nil`) - Output only. The list of available images to create a WbI.
2525
* `defaultValues` (*type:* `GoogleApi.Notebooks.V2.Model.DefaultValues.t`, *default:* `nil`) - Output only. The default values for configuration.
26+
* `disableWorkbenchLegacyCreation` (*type:* `boolean()`, *default:* `nil`) - Output only. Flag to disable the creation of legacy Workbench notebooks (User-managed notebooks and Google-managed notebooks).
2627
* `supportedValues` (*type:* `GoogleApi.Notebooks.V2.Model.SupportedValues.t`, *default:* `nil`) - Output only. The supported values for configuration.
2728
"""
2829

@@ -31,11 +32,13 @@ defmodule GoogleApi.Notebooks.V2.Model.Config do
3132
@type t :: %__MODULE__{
3233
:availableImages => list(GoogleApi.Notebooks.V2.Model.ImageRelease.t()) | nil,
3334
:defaultValues => GoogleApi.Notebooks.V2.Model.DefaultValues.t() | nil,
35+
:disableWorkbenchLegacyCreation => boolean() | nil,
3436
:supportedValues => GoogleApi.Notebooks.V2.Model.SupportedValues.t() | nil
3537
}
3638

3739
field(:availableImages, as: GoogleApi.Notebooks.V2.Model.ImageRelease, type: :list)
3840
field(:defaultValues, as: GoogleApi.Notebooks.V2.Model.DefaultValues)
41+
field(:disableWorkbenchLegacyCreation)
3942
field(:supportedValues, as: GoogleApi.Notebooks.V2.Model.SupportedValues)
4043
end
4144

clients/notebooks/mix.exs

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

21-
@version "0.15.0"
21+
@version "0.16.0"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)