| 9 | ) |
| 10 | |
| 11 | type LogAPI interface { |
| 12 | // Read the data related to the log entry identified by id. This returns a |
| 13 | // single log entry representation as specified in the schema. |
| 14 | Read(ctx context.Context, id string, opts ...management.RequestOption) (l *management.Log, err error) |
| 15 | |
| 16 | // List all log entries that match the specified search criteria (or lists all |
| 17 | // log entries if no criteria are used). Set custom search criteria using the |
| 18 | // `q` parameter, or search from a specific log id ("search from checkpoint"). |
| 19 | // |
| 20 | // For more information on all possible event types, their respective acronyms |
| 21 | // and descriptions, Log Data Event Listing. |
| 22 | List(ctx context.Context, opts ...management.RequestOption) (l []*management.Log, err error) |
| 23 | |
| 24 | // Search is an alias for List. |
| 25 | Search(ctx context.Context, opts ...management.RequestOption) ([]*management.Log, error) |
| 26 | } |
no outgoing calls
no test coverage detected