w.apps_settings: Apps Settings¶
- class databricks.sdk.service.apps.AppsSettingsAPI¶
Apps Settings manage the settings for the Apps service on a customer’s Databricks instance.
- create_custom_template(template: CustomTemplate) CustomTemplate¶
Creates a custom template.
- Parameters:
template –
CustomTemplate- Returns:
- delete_custom_template(name: str) CustomTemplate¶
Deletes the custom template with the specified name.
- Parameters:
name – str The name of the custom template.
- Returns:
- get_custom_template(name: str) CustomTemplate¶
Gets the custom template with the specified name.
- Parameters:
name – str The name of the custom template.
- Returns:
- list_custom_templates([, page_size: Optional[int], page_token: Optional[str]]) Iterator[CustomTemplate]¶
Lists all custom templates in the workspace.
- Parameters:
page_size – int (optional) Upper bound for items returned.
page_token – str (optional) Pagination token to go to the next page of custom templates. Requests first page if absent.
- Returns:
Iterator over
CustomTemplate
- update_custom_template(name: str, template: CustomTemplate) CustomTemplate¶
Updates the custom template with the specified name. Note that the template name cannot be updated.
- Parameters:
name – str The name of the template. It must contain only alphanumeric characters, hyphens, underscores, and whitespaces. It must be unique within the workspace.
template –
CustomTemplate
- Returns: