databricks-cli icon indicating copy to clipboard operation
databricks-cli copied to clipboard

Not documented parameter on python API

Open Gabrielllopes opened this issue 3 years ago • 0 comments

I was trying to use the python secrets API to create a secret, but there is no mention anywhere (that I could found, at least) of the 'bytes_value'.

File: https://github.com/databricks/databricks-cli/blob/main/databricks_cli/secrets/api.py Line: 42

def put_secret(self, scope, key, string_value, bytes_value):
        return self.client.put_secret(scope, key, string_value, bytes_value)

Gabrielllopes avatar Jan 25 '23 09:01 Gabrielllopes