diff --git a/databricks/sdk/runtime/dbutils_stub.py b/databricks/sdk/runtime/dbutils_stub.py index 47eb6eca7..f80f0353a 100644 --- a/databricks/sdk/runtime/dbutils_stub.py +++ b/databricks/sdk/runtime/dbutils_stub.py @@ -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