class documentation
class ISecretProvider(abc.ABC): (source)
Known subclasses: fiftyone.internal.secrets.providers.local.EnvSecretProvider
Undocumented
Async Method | get |
Get a secret by key. |
Async Method | get |
Get multiple secrets by key. |
Method | get |
Get a secret by key in a synchronous context. |
Async Method | search |
Get secrets with keys matching regex |
@abc.abstractmethod
async def get_multiple(self, keys:
async def get_multiple(self, keys:
list[str]
, **kwargs) -> dict[str, ISecret | None]
:
(source)
¶
Get multiple secrets by key.