@Generated public class LakehouseMonitorsAPI extends Object
Most write operations require the user to be the owner of the table (or its parent schema or parent catalog). Viewing the dashboard, computed metrics, or monitor configuration only requires the user to have **SELECT** privileges on the table (along with **USE_SCHEMA** and **USE_CATALOG**).
| Constructor and Description |
|---|
LakehouseMonitorsAPI(ApiClient apiClient)
Regular-use constructor
|
LakehouseMonitorsAPI(LakehouseMonitorsService mock)
Constructor for mocks
|
| Modifier and Type | Method and Description |
|---|---|
MonitorInfo |
create(CreateMonitor request)
Create a table monitor.
|
MonitorInfo |
create(String fullName,
String assetsDir,
String outputSchemaName) |
void |
delete(DeleteLakehouseMonitorRequest request)
Delete a table monitor.
|
void |
delete(String fullName) |
MonitorInfo |
get(GetLakehouseMonitorRequest request)
Get a table monitor.
|
MonitorInfo |
get(String fullName) |
LakehouseMonitorsService |
impl() |
MonitorInfo |
update(String fullName,
String assetsDir,
String outputSchemaName) |
MonitorInfo |
update(UpdateMonitor request)
Update a table monitor.
|
public LakehouseMonitorsAPI(ApiClient apiClient)
public LakehouseMonitorsAPI(LakehouseMonitorsService mock)
public MonitorInfo create(String fullName, String assetsDir, String outputSchemaName)
public MonitorInfo create(CreateMonitor request)
Creates a new monitor for the specified table.
The caller must either: 1. be an owner of the table's parent catalog, have **USE_SCHEMA** on the table's parent schema, and have **SELECT** access on the table 2. have **USE_CATALOG** on the table's parent catalog, be an owner of the table's parent schema, and have **SELECT** access on the table. 3. have the following permissions: - **USE_CATALOG** on the table's parent catalog - **USE_SCHEMA** on the table's parent schema - be an owner of the table.
Workspace assets, such as the dashboard, will be created in the workspace where this call was made.
public void delete(String fullName)
public void delete(DeleteLakehouseMonitorRequest request)
Deletes a monitor for the specified table.
The caller must either: 1. be an owner of the table's parent catalog 2. have **USE_CATALOG** on the table's parent catalog and be an owner of the table's parent schema 3. have the following permissions: - **USE_CATALOG** on the table's parent catalog - **USE_SCHEMA** on the table's parent schema - be an owner of the table.
Additionally, the call must be made from the workspace where the monitor was created.
Note that the metric tables and dashboard will not be deleted as part of this call; those assets must be manually cleaned up (if desired).
public MonitorInfo get(String fullName)
public MonitorInfo get(GetLakehouseMonitorRequest request)
Gets a monitor for the specified table.
The caller must either: 1. be an owner of the table's parent catalog 2. have **USE_CATALOG** on the table's parent catalog and be an owner of the table's parent schema. 3. have the following permissions: - **USE_CATALOG** on the table's parent catalog - **USE_SCHEMA** on the table's parent schema - **SELECT** privilege on the table.
The returned information includes configuration values, as well as information on assets created by the monitor. Some information (e.g., dashboard) may be filtered out if the caller is in a different workspace than where the monitor was created.
public MonitorInfo update(String fullName, String assetsDir, String outputSchemaName)
public MonitorInfo update(UpdateMonitor request)
Updates a monitor for the specified table.
The caller must either: 1. be an owner of the table's parent catalog 2. have **USE_CATALOG** on the table's parent catalog and be an owner of the table's parent schema 3. have the following permissions: - **USE_CATALOG** on the table's parent catalog - **USE_SCHEMA** on the table's parent schema - be an owner of the table.
Additionally, the call must be made from the workspace where the monitor was created, and the caller must be the original creator of the monitor.
Certain configuration fields, such as output asset identifiers, cannot be updated.
public LakehouseMonitorsService impl()
Copyright © 2024. All rights reserved.