Skip to content
This repository has been archived by the owner on Jul 6, 2023. It is now read-only.

Commit

Permalink
chore: rename warm_pool_enabled to fast_startup_enabled (#102)
Browse files Browse the repository at this point in the history
* chore: rename warm_pool_enabled to fast_startup_enabled

While this would normally be a breaking change, libraries haven't been released yet with the old value warm_pool_enabled.

PiperOrigin-RevId: 479215286

Source-Link: googleapis/googleapis@767dc45

Source-Link: googleapis/googleapis-gen@d497faa
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZDQ5N2ZhYWE0NjBhZTY4ZWI5ZTg3ZjE0NzFmMmVhMzAwZDQyNjE0NSJ9

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
gcf-owl-bot[bot] and gcf-owl-bot[bot] committed Oct 6, 2022
1 parent 64d9c48 commit cb0adf1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
8 changes: 5 additions & 3 deletions google/cloud/dataplex_v1/types/logs.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,8 +340,10 @@ class SessionEvent(proto.Message):
This field is a member of `oneof`_ ``detail``.
event_succeeded (bool):
The status of the event.
warm_pool_enabled (bool):
If the session is a warm pooled session.
fast_startup_enabled (bool):
If the session is associated with an
Environment with fast startup enabled, and was
pre-created before being assigned to a user.
unassigned_duration (google.protobuf.duration_pb2.Duration):
The idle duration of a warm pooled session
before it is assigned to user.
Expand Down Expand Up @@ -433,7 +435,7 @@ class Engine(proto.Enum):
proto.BOOL,
number=6,
)
warm_pool_enabled = proto.Field(
fast_startup_enabled = proto.Field(
proto.BOOL,
number=7,
)
Expand Down
17 changes: 9 additions & 8 deletions google/cloud/dataplex_v1/types/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -460,19 +460,20 @@ class NotebookTaskConfig(proto.Message):
Attributes:
notebook (str):
Required. Path to input notebook. This can be the GCS URI of
the notebook file or the path to a Notebook Content. The
execution args are accessible as environment variables
(``TASK_key=value``).
Required. Path to input notebook. This can be the Cloud
Storage URI of the notebook file or the path to a Notebook
Content. The execution args are accessible as environment
variables (``TASK_key=value``).
infrastructure_spec (google.cloud.dataplex_v1.types.Task.InfrastructureSpec):
Optional. Infrastructure specification for
the execution.
file_uris (Sequence[str]):
Optional. GCS URIs of files to be placed in
the working directory of each executor.
Optional. Cloud Storage URIs of files to be
placed in the working directory of each
executor.
archive_uris (Sequence[str]):
Optional. GCS URIs of archives to be
extracted into the working directory of each
Optional. Cloud Storage URIs of archives to
be extracted into the working directory of each
executor. Supported file types: .jar, .tar,
.tar.gz, .tgz, and .zip.
"""
Expand Down

0 comments on commit cb0adf1

Please sign in to comment.