Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DataUsageFileCreator ¶
type DataUsageFileCreator interface {
AddStatements(statements []Statement) error
Close()
GetStatementCount() int
}
DataUsageFileCreator describes the interface for easily creating the data usage import files to be exported from the Raito CLI.
func NewDataUsageFileCreator ¶
func NewDataUsageFileCreator(config *data_usage.DataUsageSyncConfig) (DataUsageFileCreator, error)
type Statement ¶
type Statement struct {
ExternalId string `json:"externalId"`
AccessedDataObjects []ap.Access `json:"accessedDataObjects"`
Status bool `json:"status"`
User string `json:"user"`
StartTime int64 `json:"startTime"`
EndTime int64 `json:"endTime"`
TotalTime float32 `json:"totalTime"`
BytesTransferred int `json:"bytesTransferred"`
RowsReturned int `json:"rowsReturned"`
}
Click to show internal directories.
Click to hide internal directories.