Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions databricks/sdk/runtime/dbutils_stub.py
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,13 @@ def getArgument(name: str, defaultValue: typing.Optional[str] = None) -> typing.
"""
...

@staticmethod
def getAll() -> dict[str, str]:
"""Returns a dictionary of all widget names and their current values in the notebook.
:return: Dictionary of widget names and current values.
"""
...

@staticmethod
def text(name: str, defaultValue: str, label: str = None):
"""Creates a text input widget with given name, default value and optional label for
Expand Down
Loading