(tags, keyIds []string, provider string)
| 28 | |
| 29 | type KeyManager interface { |
| 30 | GetKeys(tags, keyIds []string, provider string) ([]*key.ResponseKey, error) |
| 31 | GetKeysV2(tags, keyIds []string, revoked *bool, limit, offset int, name, order string, returnCount bool) (*key.GetKeysResponse, error) |
| 32 | UpdateKey(id string, key *key.UpdateKey) (*key.ResponseKey, error) |
| 33 | CreateKey(key *key.RequestKey) (*key.ResponseKey, error) |