class documentation
class AbstractSecret(ISecret, abc.ABC): (source)
Known subclasses: fiftyone.internal.secrets.secret.UnencryptedSecret
Constructor: AbstractSecret(key, value)
Abstract secret.
Method | __bool__ |
Undocumented |
Method | __eq__ |
Secrets are equal if their values are equal. |
Method | __init__ |
Undocumented |
Method | __repr__ |
Undocumented |
Method | __str__ |
Undocumented |
Property | is |
Whether the secret is encrypted. |
Property | key |
The secret's string identifier. |
Property | value |
The secret's value. |
Instance Variable | _key |
Undocumented |
Instance Variable | _value |
Undocumented |