com.databricks.sdk.service.sql.QueryVisualizationsLegacyService Maven / Gradle / Ivy
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.
package com.databricks.sdk.service.sql;
import com.databricks.sdk.support.Generated;
/**
* This is an evolving API that facilitates the addition and removal of vizualisations from existing
* queries within the Databricks Workspace. Data structures may change over time.
*
* **Note**: A new version of the Databricks SQL API is now available. Please see the latest
* version. [Learn more]
*
*
[Learn more]: https://docs.databricks.com/en/sql/dbsql-api-latest.html
*
*
This is the high-level interface, that contains generated methods.
*
*
Evolving: this interface is under development. Method signatures may change.
*/
@Generated
public interface QueryVisualizationsLegacyService {
/**
* Add visualization to a query.
*
*
Creates visualization in the query.
*
*
**Note**: A new version of the Databricks SQL API is now available. Please use
* :method:queryvisualizations/create instead. [Learn more]
*
*
[Learn more]: https://docs.databricks.com/en/sql/dbsql-api-latest.html
*/
LegacyVisualization create(
CreateQueryVisualizationsLegacyRequest createQueryVisualizationsLegacyRequest);
/**
* Remove visualization.
*
*
Removes a visualization from the query.
*
*
**Note**: A new version of the Databricks SQL API is now available. Please use
* :method:queryvisualizations/delete instead. [Learn more]
*
*
[Learn more]: https://docs.databricks.com/en/sql/dbsql-api-latest.html
*/
void delete(DeleteQueryVisualizationsLegacyRequest deleteQueryVisualizationsLegacyRequest);
/**
* Edit existing visualization.
*
*
Updates visualization in the query.
*
*
**Note**: A new version of the Databricks SQL API is now available. Please use
* :method:queryvisualizations/update instead. [Learn more]
*
*
[Learn more]: https://docs.databricks.com/en/sql/dbsql-api-latest.html
*/
LegacyVisualization update(LegacyVisualization legacyVisualization);
}