MCPcopy Index your code
hub / github.com/docker/cli / SecretInspect

Method SecretInspect

cli/command/secret/client_test.go:24–29  ·  view source on GitHub ↗
(ctx context.Context, id string, options client.SecretInspectOptions)

Source from the content-addressed store, hash-verified

22}
23
24func (c *fakeClient) SecretInspect(ctx context.Context, id string, options client.SecretInspectOptions) (client.SecretInspectResult, error) {
25 if c.secretInspectFunc != nil {
26 return c.secretInspectFunc(ctx, id, options)
27 }
28 return client.SecretInspectResult{}, nil
29}
30
31func (c *fakeClient) SecretList(ctx context.Context, options client.SecretListOptions) (client.SecretListResult, error) {
32 if c.secretListFunc != nil {

Callers 3

createSecretsFunction · 0.45
inspectSecretFunction · 0.45
runSecretInspectFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected