@Generated public class LogDeliveryAPI extends Object
Log delivery works with all account types. However, if your account is on the E2 version of the platform or on a select custom plan that allows multiple workspaces per account, you can optionally configure different storage destinations for each workspace. Log delivery status is also provided to know the latest status of log delivery attempts. The high-level flow of billable usage delivery:
1. **Create storage**: In AWS, [create a new AWS S3 bucket] with a specific bucket policy. Using Databricks APIs, call the Account API to create a [storage configuration object](:method:Storage/Create) that uses the bucket name. 2. **Create credentials**: In AWS, create the appropriate AWS IAM role. For full details, including the required IAM role policies and trust relationship, see [Billable usage log delivery]. Using Databricks APIs, call the Account API to create a [credential configuration object](:method:Credentials/Create) that uses the IAM role"s ARN. 3. **Create log delivery configuration**: Using Databricks APIs, call the Account API to [create a log delivery configuration](:method:LogDelivery/Create) that uses the credential and storage configuration objects from previous steps. You can specify if the logs should include all events of that log type in your account (_Account level_ delivery) or only events for a specific set of workspaces (_workspace level_ delivery). Account level log delivery applies to all current and future workspaces plus account level logs, while workspace level log delivery solely delivers logs related to the specified workspaces. You can create multiple types of delivery configurations per account.
For billable usage delivery: * For more information about billable usage logs, see [Billable
usage log delivery]. For the CSV schema, see the [Usage page]. * The delivery location is
` For audit log delivery: * For more information about about audit log delivery, see [Audit log
delivery], which includes information about the used JSON schema. * The delivery location is
` [Audit log delivery]:
https://docs.databricks.com/administration-guide/account-settings/audit-logs.html [Billable usage
log delivery]:
https://docs.databricks.com/administration-guide/account-settings/billable-usage-delivery.html
[Usage page]: https://docs.databricks.com/administration-guide/account-settings/usage.html
[create a new AWS S3 bucket]:
https://docs.databricks.com/administration-guide/account-api/aws-storage.html
Constructor and Description |
---|
LogDeliveryAPI(ApiClient apiClient)
Regular-use constructor
|
LogDeliveryAPI(LogDeliveryService mock)
Constructor for mocks
|
Modifier and Type | Method and Description |
---|---|
WrappedLogDeliveryConfiguration |
create(WrappedCreateLogDeliveryConfiguration request)
Create a new log delivery configuration.
|
WrappedLogDeliveryConfiguration |
get(GetLogDeliveryRequest request)
Get log delivery configuration.
|
WrappedLogDeliveryConfiguration |
get(String logDeliveryConfigurationId) |
LogDeliveryService |
impl() |
Iterable<LogDeliveryConfiguration> |
list(ListLogDeliveryRequest request)
Get all log delivery configurations.
|
void |
patchStatus(String logDeliveryConfigurationId,
LogDeliveryConfigStatus status) |
void |
patchStatus(UpdateLogDeliveryConfigurationStatusRequest request)
Enable or disable log delivery configuration.
|
public LogDeliveryAPI(ApiClient apiClient)
public LogDeliveryAPI(LogDeliveryService mock)
public WrappedLogDeliveryConfiguration create(WrappedCreateLogDeliveryConfiguration request)
Creates a new Databricks log delivery configuration to enable delivery of the specified type of logs to your storage location. This requires that you already created a [credential object](:method:Credentials/Create) (which encapsulates a cross-account service IAM role) and a [storage configuration object](:method:Storage/Create) (which encapsulates an S3 bucket).
For full details, including the required IAM role policies and bucket policies, see [Deliver and access billable usage logs] or [Configure audit logging].
**Note**: There is a limit on the number of log delivery configurations available per account (each limit applies separately to each log type including billable usage and audit logs). You can create a maximum of two enabled account-level delivery configurations (configurations without a workspace filter) per type. Additionally, you can create two enabled workspace-level delivery configurations per workspace for each log type, which means that the same workspace ID can occur in the workspace filter for no more than two delivery configurations per log type.
You cannot delete a log delivery configuration, but you can disable it (see [Enable or disable log delivery configuration](:method:LogDelivery/PatchStatus)).
[Configure audit logging]: https://docs.databricks.com/administration-guide/account-settings/audit-logs.html [Deliver and access billable usage logs]: https://docs.databricks.com/administration-guide/account-settings/billable-usage-delivery.html
public WrappedLogDeliveryConfiguration get(String logDeliveryConfigurationId)
public WrappedLogDeliveryConfiguration get(GetLogDeliveryRequest request)
Gets a Databricks log delivery configuration object for an account, both specified by ID.
public Iterable<LogDeliveryConfiguration> list(ListLogDeliveryRequest request)
Gets all Databricks log delivery configurations associated with an account specified by ID.
public void patchStatus(String logDeliveryConfigurationId, LogDeliveryConfigStatus status)
public void patchStatus(UpdateLogDeliveryConfigurationStatusRequest request)
Enables or disables a log delivery configuration. Deletion of delivery configurations is not supported, so disable log delivery configurations that are no longer needed. Note that you can't re-enable a delivery configuration if this would violate the delivery configuration limits described under [Create log delivery](:method:LogDelivery/Create).
public LogDeliveryService impl()
Copyright © 2023. All rights reserved.