(target string)
| 36 | } |
| 37 | |
| 38 | func WithTarget(target string) ListOption { |
| 39 | return func(opts *listOptions) { |
| 40 | opts.target = target |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | // WithKind match credentials with the given kind. Can be specified multiple times. |
| 45 | func WithKind(kind CredentialKind) ListOption { |
no outgoing calls