Documentation
¶
Overview ¶
Package azure provides a storagedriver.StorageDriver implementation to store blobs in Microsoft Azure Blob Storage Service.
Index ¶
Constants ¶
View Source
const ( UDCGracePeriod = 30.0 * time.Minute UDCExpiryTime = 48.0 * time.Hour )
View Source
const ( CredentialsTypeClientSecret = "client_secret" CredentialsTypeDefault = "default_credentials" )
Variables ¶
View Source
var ErrCorruptedData = errors.New("corrupted data found in the uploaded data")
Functions ¶
This section is empty.
Types ¶
type Credentials ¶
type Credentials struct { Type CredentialsType `mapstructure:"type"` ClientID string `mapstructure:"clientid"` TenantID string `mapstructure:"tenantid"` Secret string `mapstructure:"secret"` }
type CredentialsType ¶
type CredentialsType string
type Driver ¶
type Driver struct {
// contains filtered or unexported fields
}
Driver is a storagedriver.StorageDriver implementation backed by Microsoft Azure Blob Storage Service.
type DriverParameters ¶
type DriverParameters struct { Credentials Credentials `mapstructure:"credentials"` Container string `mapstructure:"container"` AccountName string `mapstructure:"accountname"` AccountKey string `mapstructure:"accountkey"` ConnectionString string `mapstructure:"connectionstring"` Realm string `mapstructure:"realm"` RootDirectory string `mapstructure:"rootdirectory"` ServiceURL string `mapstructure:"serviceurl"` MaxRetries int `mapstructure:"max_retries"` RetryDelay string `mapstructure:"retry_delay"` SkipVerify bool `mapstructure:"skipverify"` }
func NewParameters ¶
func NewParameters(parameters map[string]interface{}) (*DriverParameters, error)
type PolicyFunc ¶
PolicyFunc is a type that implements the Policy interface. Use this type when implementing a stateless policy as a first-class function.
Click to show internal directories.
Click to hide internal directories.