1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
package directories
import (
"context"
"github.com/Azure/go-autorest/autorest"
)
type StorageDirectory interface {
Delete(ctx context.Context, accountName, shareName, path string) (result autorest.Response, err error)
GetMetaData(ctx context.Context, accountName, shareName, path string) (result GetMetaDataResult, err error)
SetMetaData(ctx context.Context, accountName, shareName, path string, metaData map[string]string) (result autorest.Response, err error)
Create(ctx context.Context, accountName, shareName, path string, metaData map[string]string) (result autorest.Response, err error)
GetResourceID(accountName, shareName, directoryName string) string
Get(ctx context.Context, accountName, shareName, path string) (result GetResult, err error)
}
|