Documentation ¶
Index ¶
- Constants
- func SetAttemptStrategy(s *util.AttemptStrategy)
- func SetListMultiMax(n int)
- func SetListPartsMax(n int)
- type ACL
- type AccessControlPolicy
- type Bucket
- func (b *Bucket) ACL() (result *AccessControlPolicy, err error)
- func (b *Bucket) CopyLargeFile(sourcePath string, destPath string, contentType string, perm ACL, ...) error
- func (b *Bucket) Del(path string) error
- func (b *Bucket) DelBucket() (err error)
- func (b *Bucket) DelMulti(objects Delete) error
- func (b *Bucket) Exists(path string) (exists bool, err error)
- func (b *Bucket) Get(path string) (data []byte, err error)
- func (b *Bucket) GetContentLength(sourcePath string) (int64, error)
- func (b *Bucket) GetReader(path string) (rc io.ReadCloser, err error)
- func (b *Bucket) GetResponse(path string) (resp *http.Response, err error)
- func (b *Bucket) GetResponseWithHeaders(path string, headers http.Header) (resp *http.Response, err error)
- func (b *Bucket) GetResponseWithParamsAndHeaders(path string, params url.Values, headers http.Header) (resp *http.Response, err error)
- func (b *Bucket) GetWithParams(path string, params url.Values) (data []byte, err error)
- func (b *Bucket) Head(path string, headers http.Header) (*http.Response, error)
- func (b *Bucket) InitMulti(key string, contType string, perm ACL, options Options) (*Multi, error)
- func (b *Bucket) List(prefix, delim, marker string, max int) (result *ListResp, err error)
- func (b *Bucket) ListMulti(prefix, delim string) (multis []*Multi, prefixes []string, err error)
- func (b *Bucket) Location() (string, error)
- func (b *Bucket) Multi(key, contType string, perm ACL, options Options) (*Multi, error)
- func (b *Bucket) Path(path string) string
- func (b *Bucket) PostFormArgs(path string, expires time.Time, redirect string) (action string, fields map[string]string)
- func (b *Bucket) PostFormArgsEx(path string, expires time.Time, redirect string, conds []string) (action string, fields map[string]string)
- func (b *Bucket) Put(path string, data []byte, contType string, perm ACL, options Options) error
- func (b *Bucket) PutBucket(perm ACL) error
- func (b *Bucket) PutBucketSubresource(subresource string, r io.Reader, length int64) error
- func (b *Bucket) PutBucketWebsite(configuration WebsiteConfiguration) error
- func (b *Bucket) PutCopy(path string, perm ACL, options CopyOptions, source string) (*CopyObjectResult, error)
- func (b *Bucket) PutFile(path string, file *os.File, perm ACL, options Options) error
- func (b *Bucket) PutReader(path string, r io.Reader, length int64, contType string, perm ACL, ...) error
- func (b *Bucket) SignedURL(path string, expires time.Time) string
- func (b *Bucket) SignedURLWithArgs(path string, expires time.Time, params url.Values, headers http.Header) string
- func (b *Bucket) SignedURLWithMethod(method, path string, expires time.Time, params url.Values, headers http.Header) string
- func (b *Bucket) URL(path string) string
- func (b *Bucket) UploadSignedURL(name, method, contentType string, expires time.Time) string
- type BucketInfo
- type Client
- type CopyObjectResult
- type CopyOptions
- type Delete
- type Error
- type ErrorDocument
- type GetLocationResp
- type GetServiceResp
- type IndexDocument
- type Key
- type ListResp
- type Multi
- func (m *Multi) Abort() error
- func (m *Multi) Complete(parts []Part) error
- func (m *Multi) ListParts() ([]Part, error)
- func (m *Multi) ListPartsFull(partNumberMarker int, maxParts int) ([]Part, error)
- func (m *Multi) PutAll(r ReaderAtSeeker, partSize int64) ([]Part, error)
- func (m *Multi) PutPart(n int, r io.ReadSeeker) (Part, error)
- func (m *Multi) PutPartCopy(n int, options CopyOptions, source string) (*CopyObjectResult, Part, error)
- func (m *Multi) PutPartWithTimeout(n int, r io.ReadSeeker, timeout time.Duration) (Part, error)
- type Object
- type Options
- type Owner
- type Part
- type ReaderAtSeeker
- type RedirectAllRequestsTo
- type Region
- type RoutingRule
- type TimeoutError
- type WebsiteConfiguration
Constants ¶
const ( Private = ACL("private") PublicRead = ACL("public-read") PublicReadWrite = ACL("public-read-write") AuthenticatedRead = ACL("authenticated-read") BucketOwnerRead = ACL("bucket-owner-read") BucketOwnerFull = ACL("bucket-owner-full-control") )
const ( Hangzhou = Region("oss-cn-hangzhou") Qingdao = Region("oss-cn-qingdao") Beijing = Region("oss-cn-beijing") Hongkong = Region("oss-cn-hongkong") Shenzhen = Region("oss-cn-shenzhen") USWest1 = Region("oss-us-west-1") APSouthEast1 = Region("oss-ap-southeast-1") Shanghai = Region("oss-cn-shanghai") DefaultRegion = Hangzhou )
Constants of region definition
const DefaultContentType = "application/octet-stream"
const HeaderOSSPrefix = "x-oss-"
Variables ¶
This section is empty.
Functions ¶
func SetAttemptStrategy ¶
func SetAttemptStrategy(s *util.AttemptStrategy)
func SetListMultiMax ¶
func SetListMultiMax(n int)
func SetListPartsMax ¶
func SetListPartsMax(n int)
Types ¶
type AccessControlPolicy ¶
type Bucket ¶
The Bucket type encapsulates operations with an bucket.
func (*Bucket) ACL ¶
func (b *Bucket) ACL() (result *AccessControlPolicy, err error)
ACL returns ACL of bucket
You can read doc at http://docs.aliyun.com/#/pub/oss/api-reference/bucket&GetBucketAcl
func (*Bucket) CopyLargeFile ¶
func (b *Bucket) CopyLargeFile(sourcePath string, destPath string, contentType string, perm ACL, options Options) error
Copy large file in the same bucket
func (*Bucket) Del ¶
Del removes an object from the bucket.
You can read doc at http://docs.aliyun.com/#/pub/oss/api-reference/object&DeleteObject
func (*Bucket) DelBucket ¶
DelBucket removes an existing bucket. All objects in the bucket must be removed before the bucket itself can be removed.
You can read doc at http://docs.aliyun.com/#/pub/oss/api-reference/bucket&DeleteBucket
func (*Bucket) DelMulti ¶
DelMulti removes up to 1000 objects from the bucket.
You can read doc at http://docs.aliyun.com/#/pub/oss/api-reference/object&DeleteMultipleObjects
func (*Bucket) Exists ¶
Exists checks whether or not an object exists on an bucket using a HEAD request.
func (*Bucket) Get ¶
Get retrieves an object from an bucket.
You can read doc at http://docs.aliyun.com/#/pub/oss/api-reference/object&GetObject
func (*Bucket) GetContentLength ¶
func (*Bucket) GetReader ¶
func (b *Bucket) GetReader(path string) (rc io.ReadCloser, err error)
GetReader retrieves an object from an bucket, returning the body of the HTTP response. It is the caller's responsibility to call Close on rc when finished reading.
func (*Bucket) GetResponse ¶
GetResponse retrieves an object from an bucket, returning the HTTP response. It is the caller's responsibility to call Close on rc when finished reading
func (*Bucket) GetResponseWithHeaders ¶
func (b *Bucket) GetResponseWithHeaders(path string, headers http.Header) (resp *http.Response, err error)
GetResponseWithHeaders retrieves an object from an bucket Accepts custom headers to be sent as the second parameter returning the body of the HTTP response. It is the caller's responsibility to call Close on rc when finished reading
func (*Bucket) GetResponseWithParamsAndHeaders ¶
func (*Bucket) GetWithParams ¶
Get retrieves an object from an bucket.
func (*Bucket) Head ¶
Head HEADs an object in the bucket, returns the response with
You can read doc at http://docs.aliyun.com/#/pub/oss/api-reference/object&HeadObject
func (*Bucket) InitMulti ¶
InitMulti initializes a new multipart upload at the provided key inside b and returns a value for manipulating it.
You can read doc at http://docs.aliyun.com/#/pub/oss/api-reference/multipart-upload&InitiateMultipartUpload
func (*Bucket) List ¶
List returns information about objects in an bucket.
The prefix parameter limits the response to keys that begin with the specified prefix.
The delim parameter causes the response to group all of the keys that share a common prefix up to the next delimiter in a single entry within the CommonPrefixes field. You can use delimiters to separate a bucket into different groupings of keys, similar to how folders would work.
The marker parameter specifies the key to start with when listing objects in a bucket. OSS lists objects in alphabetical order and will return keys alphabetically greater than the marker.
The max parameter specifies how many keys + common prefixes to return in the response, at most 1000. The default is 100.
For example, given these keys in a bucket:
index.html index2.html photos/2006/January/sample.jpg photos/2006/February/sample2.jpg photos/2006/February/sample3.jpg photos/2006/February/sample4.jpg
Listing this bucket with delimiter set to "/" would yield the following result:
&ListResp{ Name: "sample-bucket", MaxKeys: 1000, Delimiter: "/", Contents: []Key{ {Key: "index.html", "index2.html"}, }, CommonPrefixes: []string{ "photos/", }, }
Listing the same bucket with delimiter set to "/" and prefix set to "photos/2006/" would yield the following result:
&ListResp{ Name: "sample-bucket", MaxKeys: 1000, Delimiter: "/", Prefix: "photos/2006/", CommonPrefixes: []string{ "photos/2006/February/", "photos/2006/January/", }, }
You can read doc at http://docs.aliyun.com/#/pub/oss/api-reference/bucket&GetBucket
func (*Bucket) ListMulti ¶
ListMulti returns the list of unfinished multipart uploads in b.
The prefix parameter limits the response to keys that begin with the specified prefix. You can use prefixes to separate a bucket into different groupings of keys (to get the feeling of folders, for example).
The delim parameter causes the response to group all of the keys that share a common prefix up to the next delimiter in a single entry within the CommonPrefixes field. You can use delimiters to separate a bucket into different groupings of keys, similar to how folders would work.
func (*Bucket) Multi ¶
Multi returns a multipart upload handler for the provided key inside b. If a multipart upload exists for key, it is returned, otherwise a new multipart upload is initiated with contType and perm.
func (*Bucket) PostFormArgs ¶
func (b *Bucket) PostFormArgs(path string, expires time.Time, redirect string) (action string, fields map[string]string)
PostFormArgs returns the action and input fields needed to allow anonymous uploads to a bucket within the expiration limit
func (*Bucket) PostFormArgsEx ¶
func (b *Bucket) PostFormArgsEx(path string, expires time.Time, redirect string, conds []string) (action string, fields map[string]string)
PostFormArgsEx returns the action and input fields needed to allow anonymous uploads to a bucket within the expiration limit Additional conditions can be specified with conds
func (*Bucket) Put ¶
Put inserts an object into the bucket.
You can read doc at http://docs.aliyun.com/#/pub/oss/api-reference/object&PutObject
func (*Bucket) PutBucket ¶
PutBucket creates a new bucket.
You can read doc at http://docs.aliyun.com/#/pub/oss/api-reference/bucket&PutBucket
func (*Bucket) PutBucketSubresource ¶
func (*Bucket) PutBucketWebsite ¶
func (b *Bucket) PutBucketWebsite(configuration WebsiteConfiguration) error
PutBucketWebsite configures a bucket as a website.
You can read doc at http://docs.aliyun.com/#/pub/oss/api-reference/bucket&PutBucketWebsite
func (*Bucket) PutCopy ¶
func (b *Bucket) PutCopy(path string, perm ACL, options CopyOptions, source string) (*CopyObjectResult, error)
PutCopy puts a copy of an object given by the key path into bucket b using b.Path as the target key
You can read doc at http://docs.aliyun.com/#/pub/oss/api-reference/object&CopyObject
func (*Bucket) PutReader ¶
func (b *Bucket) PutReader(path string, r io.Reader, length int64, contType string, perm ACL, options Options) error
PutReader inserts an object into the bucket by consuming data from r until EOF.
func (*Bucket) SignedURL ¶
SignedURL returns a signed URL that allows anyone holding the URL to retrieve the object at path. The signature is valid until expires.
func (*Bucket) SignedURLWithArgs ¶
func (b *Bucket) SignedURLWithArgs(path string, expires time.Time, params url.Values, headers http.Header) string
SignedURLWithArgs returns a signed URL that allows anyone holding the URL to retrieve the object at path. The signature is valid until expires.
func (*Bucket) SignedURLWithMethod ¶
func (b *Bucket) SignedURLWithMethod(method, path string, expires time.Time, params url.Values, headers http.Header) string
SignedURLWithMethod returns a signed URL that allows anyone holding the URL to either retrieve the object at path or make a HEAD request against it. The signature is valid until expires.
func (*Bucket) URL ¶
URL returns a non-signed URL that allows retriving the object at path. It only works if the object is publicly readable (see SignedURL).
func (*Bucket) UploadSignedURL ¶
UploadSignedURL returns a signed URL that allows anyone holding the URL to upload the object at path. The signature is valid until expires. contenttype is a string like image/png name is the resource name in OSS terminology like images/ali.png [obviously excluding the bucket name itself]
type BucketInfo ¶
type Client ¶
type Client struct { AccessKeyId string AccessKeySecret string Region Region Internal bool Secure bool ConnectTimeout time.Duration // contains filtered or unexported fields }
The Client type encapsulates operations with an OSS region.
func NewOSSClient ¶
func (*Client) GetService ¶
func (client *Client) GetService() (*GetServiceResp, error)
GetService gets a list of all buckets owned by an account.
func (*Client) SetEndpoint ¶
override default endpoint
type CopyObjectResult ¶
CopyObjectResult is the output from a Copy request
type CopyOptions ¶
type Error ¶
type Error struct { StatusCode int // HTTP status code (200, 403, ...) Code string // OSS error code ("UnsupportedOperation", ...) Message string // The human-oriented error message BucketName string RequestId string HostId string }
Error represents an error in an operation with OSS.
type ErrorDocument ¶
type ErrorDocument struct {
Key string `xml:"Key"`
}
type GetLocationResp ¶
type GetLocationResp struct {
Location string `xml:",innerxml"`
}
type GetServiceResp ¶
type GetServiceResp struct { Owner Owner Buckets []BucketInfo `xml:">Bucket"` }
type IndexDocument ¶
type IndexDocument struct {
Suffix string `xml:"Suffix"`
}
type Key ¶
type Key struct { Key string LastModified string Type string Size int64 // ETag gives the hex-encoded MD5 sum of the contents, // surrounded with double-quotes. ETag string StorageClass string Owner Owner }
The Key type represents an item stored in an bucket.
type ListResp ¶
type ListResp struct { Name string Prefix string Delimiter string Marker string MaxKeys int // IsTruncated is true if the results have been truncated because // there are more keys and prefixes than can fit in MaxKeys. // N.B. this is the opposite sense to that documented (incorrectly) in // http://goo.gl/YjQTc IsTruncated bool Contents []Key CommonPrefixes []string `xml:">Prefix"` // if IsTruncated is true, pass NextMarker as marker argument to List() // to get the next set of keys NextMarker string }
The ListResp type holds the results of a List bucket operation.
type Multi ¶
func (*Multi) Abort ¶
Abort deletes an unifinished multipart upload and any previously uploaded parts for it.
After a multipart upload is aborted, no additional parts can be uploaded using it. However, if any part uploads are currently in progress, those part uploads might or might not succeed. As a result, it might be necessary to abort a given multipart upload multiple times in order to completely free all storage consumed by all parts.
NOTE: If the described scenario happens to you, please report back to the goamz authors with details. In the future such retrying should be handled internally, but it's not clear what happens precisely (Is an error returned? Is the issue completely undetectable?).
You can read doc at http://docs.aliyun.com/#/pub/oss/api-reference/multipart-upload&AbortMultipartUpload
func (*Multi) Complete ¶
Complete assembles the given previously uploaded parts into the final object. This operation may take several minutes.
func (*Multi) ListPartsFull ¶
ListPartsFull returns the list of previously uploaded parts in m, ordered by part number (Only parts with higher part numbers than partNumberMarker will be listed). Only up to maxParts parts will be returned.
func (*Multi) PutAll ¶
func (m *Multi) PutAll(r ReaderAtSeeker, partSize int64) ([]Part, error)
PutAll sends all of r via a multipart upload with parts no larger than partSize bytes, which must be set to at least 5MB. Parts previously uploaded are either reused if their checksum and size match the new part, or otherwise overwritten with the new content. PutAll returns all the parts of m (reused or not).
func (*Multi) PutPart ¶
PutPart sends part n of the multipart upload, reading all the content from r. Each part, except for the last one, must be at least 5MB in size.
You can read doc at http://docs.aliyun.com/#/pub/oss/api-reference/multipart-upload&UploadPart
func (*Multi) PutPartCopy ¶
func (m *Multi) PutPartCopy(n int, options CopyOptions, source string) (*CopyObjectResult, Part, error)
You can read doc at http://docs.aliyun.com/#/pub/oss/api-reference/multipart-upload&UploadPartCopy
func (*Multi) PutPartWithTimeout ¶
type Options ¶
type Options struct { ServerSideEncryption bool Meta map[string][]string ContentEncoding string CacheControl string ContentMD5 string ContentDisposition string }
Options struct
type ReaderAtSeeker ¶
type ReaderAtSeeker interface { io.ReaderAt io.ReadSeeker }
type RedirectAllRequestsTo ¶
type Region ¶
type Region string
Region represents OSS region
func (Region) GetEndpoint ¶
GetEndpoint returns endpoint of region
func (Region) GetInternalEndpoint ¶
GetInternalEndpoint returns internal endpoint of region
type RoutingRule ¶
type TimeoutError ¶
type WebsiteConfiguration ¶
type WebsiteConfiguration struct { XMLName xml.Name `xml:"http://doc.oss-cn-hangzhou.aliyuncs.com WebsiteConfiguration"` IndexDocument *IndexDocument `xml:"IndexDocument,omitempty"` ErrorDocument *ErrorDocument `xml:"ErrorDocument,omitempty"` RoutingRules *[]RoutingRule `xml:"RoutingRules>RoutingRule,omitempty"` RedirectAllRequestsTo *RedirectAllRequestsTo `xml:"RedirectAllRequestsTo,omitempty"` }