Class SystemSchemasAPI
- java.lang.Object
-
- com.databricks.sdk.service.catalog.SystemSchemasAPI
-
@Generated public class SystemSchemasAPI extends Object
A system schema is a schema that lives within the system catalog. A system schema may contain information about customer usage of Unity Catalog such as audit-logs, billing-logs, lineage information, etc.
-
-
Constructor Summary
Constructors Constructor Description SystemSchemasAPI(ApiClient apiClient)Regular-use constructorSystemSchemasAPI(SystemSchemasService mock)Constructor for mocks
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddisable(DisableRequest request)Disable a system schema.voiddisable(String metastoreId, DisableSchemaName schemaName)voidenable(EnableRequest request)Enable a system schema.voidenable(String metastoreId, EnableSchemaName schemaName)SystemSchemasServiceimpl()Iterable<SystemSchemaInfo>list(ListSystemSchemasRequest request)List system schemas.Iterable<SystemSchemaInfo>list(String metastoreId)
-
-
-
Constructor Detail
-
SystemSchemasAPI
public SystemSchemasAPI(ApiClient apiClient)
Regular-use constructor
-
SystemSchemasAPI
public SystemSchemasAPI(SystemSchemasService mock)
Constructor for mocks
-
-
Method Detail
-
disable
public void disable(String metastoreId, DisableSchemaName schemaName)
-
disable
public void disable(DisableRequest request)
Disable a system schema.Disables the system schema and removes it from the system catalog. The caller must be an account admin or a metastore admin.
-
enable
public void enable(String metastoreId, EnableSchemaName schemaName)
-
enable
public void enable(EnableRequest request)
Enable a system schema.Enables the system schema and adds it to the system catalog. The caller must be an account admin or a metastore admin.
-
list
public Iterable<SystemSchemaInfo> list(String metastoreId)
-
list
public Iterable<SystemSchemaInfo> list(ListSystemSchemasRequest request)
List system schemas.Gets an array of system schemas for a metastore. The caller must be an account admin or a metastore admin.
-
impl
public SystemSchemasService impl()
-
-