GetAllMetadata retrieves all the credentials from the store. Credentials retrieved will only call [Secret.SetMetadata] so that the underlying store does not get queried for each secret's sensitive data. This could be very taxing on the underlying store and cause a poor User Experience.
(ctx context.Context)
| 84 | // This could be very taxing on the underlying store and cause a poor User |
| 85 | // Experience. |
| 86 | GetAllMetadata(ctx context.Context) (map[ID]Secret, error) |
| 87 | // Save persists credentials from the store. |
| 88 | Save(ctx context.Context, id ID, secret Secret) error |
| 89 | // Upsert atomically replaces an existing credential or inserts a new one. |
no outgoing calls