com.databricks.sdk.service.settings.DisableLegacyDbfsService Maven / Gradle / Ivy
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.
package com.databricks.sdk.service.settings;
import com.databricks.sdk.support.Generated;
/**
* When this setting is on, access to DBFS root and DBFS mounts is disallowed (as well as creation
* of new mounts). When the setting is off, all DBFS functionality is enabled
*
* This is the high-level interface, that contains generated methods.
*
*
Evolving: this interface is under development. Method signatures may change.
*/
@Generated
public interface DisableLegacyDbfsService {
/**
* Delete the disable legacy DBFS setting.
*
*
Deletes the disable legacy DBFS setting for a workspace, reverting back to the default.
*/
DeleteDisableLegacyDbfsResponse delete(
DeleteDisableLegacyDbfsRequest deleteDisableLegacyDbfsRequest);
/**
* Get the disable legacy DBFS setting.
*
*
Gets the disable legacy DBFS setting.
*/
DisableLegacyDbfs get(GetDisableLegacyDbfsRequest getDisableLegacyDbfsRequest);
/**
* Update the disable legacy DBFS setting.
*
*
Updates the disable legacy DBFS setting for the workspace.
*/
DisableLegacyDbfs update(UpdateDisableLegacyDbfsRequest updateDisableLegacyDbfsRequest);
}