azure

package
v3.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 2, 2025 License: Apache-2.0 Imports: 31 Imported by: 8

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"
	CredentialsTypeSharedKey    = "shared_key"
	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.

func New

func New(ctx context.Context, params *DriverParameters) (*Driver, error)

New constructs a new Driver from parameters

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

type PolicyFunc func(*policy.Request) (*http.Response, error)

PolicyFunc is a type that implements the Policy interface. Use this type when implementing a stateless policy as a first-class function.

func (PolicyFunc) Do

func (pf PolicyFunc) Do(req *policy.Request) (*http.Response, error)

Do implements the Policy interface on policyFunc.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL