Code Studios#
The API offers methods to:
Create and list code studios
Start/stop them and trigger file synchronizations
For code studio templates, the API offers methods to:
list code studio templates
build them
Build a code studio template#
client = dataiku.api_client()
template_id = "my_template_id"
# Obtain a handle on the code studio template
my_template = client.get_code_studio_template(template_id)
# Build the template. This operation is asynchronous
build_template = my_template.build()
build_template.wait_for_result()
Reference documentation#
Classes#
An item in a list of code studio templates. |
|
A handle to interact with a code studio template on the DSS instance |
|
The settings of a code studio template |
|
A handle to manage a code studio in a project |
|
Summary of the conflicts on zones of a code studio. |
|
An item in a list of code studios. |
|
Settings for a code studio |
|
Handle to inspect the status of a code studio |
|
|
A future represents a long-running task on a DSS instance. |
Functions#
|
Build or rebuild the template. |
|
Get a handle to interact with a specific code studio template |
Waits for the completion of the long-running task, and returns its result. |
