Skip to content

Commit 2ce2c50

Browse files
feat: Automated regeneration of Notebooks client (#12713)
Auto-created at 2024-12-13 13:20:31 +0000 using the toys pull request generator.
1 parent 30d2ae5 commit 2ce2c50

File tree

7 files changed

+9
-6
lines changed

7 files changed

+9
-6
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.14"}]
14+
[{:google_api_notebooks, "~> 0.15"}]
1515
end
1616
```
1717

clients/notebooks/lib/google_api/notebooks/v1/api/projects.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2614,7 +2614,7 @@ defmodule GoogleApi.Notebooks.V1.Api.Projects do
26142614
end
26152615

26162616
@doc """
2617-
Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
2617+
Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`.
26182618
26192619
## Parameters
26202620

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

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

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

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

clients/notebooks/lib/google_api/notebooks/v2/api/projects.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1604,7 +1604,7 @@ defmodule GoogleApi.Notebooks.V2.Api.Projects do
16041604
end
16051605

16061606
@doc """
1607-
Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
1607+
Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`.
16081608
16091609
## Parameters
16101610

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 "20241106"
23+
@discovery_revision "20241204"
2424

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

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ defmodule GoogleApi.Notebooks.V2.Model.Instance do
2424
* `createTime` (*type:* `DateTime.t`, *default:* `nil`) - Output only. Instance creation time.
2525
* `creator` (*type:* `String.t`, *default:* `nil`) - Output only. Email address of entity that sent original CreateInstance request.
2626
* `disableProxyAccess` (*type:* `boolean()`, *default:* `nil`) - Optional. If true, the notebook instance will not register with the proxy.
27+
* `enableThirdPartyIdentity` (*type:* `boolean()`, *default:* `nil`) - Optional. Flag that specifies that a notebook can be accessed with third party identity provider.
2728
* `gceSetup` (*type:* `GoogleApi.Notebooks.V2.Model.GceSetup.t`, *default:* `nil`) - Optional. Compute Engine setup for the notebook. Uses notebook-defined fields.
2829
* `healthInfo` (*type:* `map()`, *default:* `nil`) - Output only. Additional information about instance health. Example: healthInfo": { "docker_proxy_agent_status": "1", "docker_status": "1", "jupyterlab_api_status": "-1", "jupyterlab_status": "-1", "updated": "2020-10-18 09:40:03.573409" }
2930
* `healthState` (*type:* `String.t`, *default:* `nil`) - Output only. Instance health_state.
@@ -46,6 +47,7 @@ defmodule GoogleApi.Notebooks.V2.Model.Instance do
4647
:createTime => DateTime.t() | nil,
4748
:creator => String.t() | nil,
4849
:disableProxyAccess => boolean() | nil,
50+
:enableThirdPartyIdentity => boolean() | nil,
4951
:gceSetup => GoogleApi.Notebooks.V2.Model.GceSetup.t() | nil,
5052
:healthInfo => map() | nil,
5153
:healthState => String.t() | nil,
@@ -65,6 +67,7 @@ defmodule GoogleApi.Notebooks.V2.Model.Instance do
6567
field(:createTime, as: DateTime)
6668
field(:creator)
6769
field(:disableProxyAccess)
70+
field(:enableThirdPartyIdentity)
6871
field(:gceSetup, as: GoogleApi.Notebooks.V2.Model.GceSetup)
6972
field(:healthInfo, type: :map)
7073
field(:healthState)

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.14.3"
21+
@version "0.15.0"
2222

2323
def project() do
2424
[

0 commit comments

Comments
 (0)