MCPcopy Create free account
hub / github.com/auth0/auth0-cli / LogAPI

Interface LogAPI

internal/auth0/log.go:11–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9)
10
11type 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}

Callers 17

listLogsCmdFunction · 0.65
fetchTemplateDataMethod · 0.65
TestActionsDeployCmdFunction · 0.65
showNetworkACLCmdFunction · 0.65
tailLogsCmdFunction · 0.65
getLatestLogsFunction · 0.65
fetchTemplateDataMethod · 0.65

Implementers 4

MockLogAPIinternal/auth0/mock/log_mock.go
MockLogAPIMockRecorderinternal/auth0/mock/log_mock.go
MockUserAPIinternal/auth0/mock/user_mock.go
MockUserAPIMockRecorderinternal/auth0/mock/user_mock.go

Calls

no outgoing calls

Tested by

no test coverage detected