Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Credential ¶
type StorageVault ¶
type StorageVault interface { // HeadObject a boolean value whether object name existing in storage. HeadObject(key string) (bool, string, error) // PutObject stores the data to the storage backend. PutObject(key string, data []byte) error // GetObject downloads the object by name in storage. GetObject(key string) ([]byte, error) // SetCredential sets a new credential with backend credential not constant. RefreshCredential(credential Credential) error // ID return id of storage vault ID() (string, string) // Type Type() Type }
storageVault ...
Click to show internal directories.
Click to hide internal directories.