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

Interface FlowAPI

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

Source from the content-addressed store, hash-verified

9)
10
11type FlowAPI interface {
12 // Create a new flow.
13 Create(ctx context.Context, r *management.Flow, opts ...management.RequestOption) error
14
15 // Read flow details.
16 Read(ctx context.Context, id string, opts ...management.RequestOption) (r *management.Flow, err error)
17
18 // Update an existing flow.
19 Update(ctx context.Context, id string, r *management.Flow, opts ...management.RequestOption) error
20
21 // Delete a flow.
22 Delete(ctx context.Context, id string, opts ...management.RequestOption) error
23
24 // List flow.
25 List(ctx context.Context, opts ...management.RequestOption) (r *management.FlowList, err error)
26}
27
28type FlowVaultConnectionAPI interface {
29 // CreateConnection Create a new flow vault connection.

Callers

nothing calls this directly

Implementers 15

MockTokenExchangeAPIinternal/auth0/mock/token_exchange_moc
MockTokenExchangeAPIMockRecorderinternal/auth0/mock/token_exchange_moc
MockNetworkACLAPIinternal/auth0/mock/network_acl_mock.g
MockNetworkACLAPIMockRecorderinternal/auth0/mock/network_acl_mock.g
MockActionAPIinternal/auth0/mock/action_mock.go
MockActionAPIMockRecorderinternal/auth0/mock/action_mock.go
MockClientAPIinternal/auth0/mock/client_mock.go
MockClientAPIMockRecorderinternal/auth0/mock/client_mock.go
MockCustomDomainAPIinternal/auth0/mock/custom_domain_mock
MockCustomDomainAPIMockRecorderinternal/auth0/mock/custom_domain_mock
MockFlowAPIinternal/auth0/mock/flow_mock.go
MockFlowAPIMockRecorderinternal/auth0/mock/flow_mock.go

Calls

no outgoing calls

Tested by

no test coverage detected