Package storage
Overview ▹
Index ▹
Constants
const ( // ScopeFullControl grants permissions to manage your // data and permissions in Google Cloud Storage. ScopeFullControl = raw.DevstorageFullControlScope // ScopeReadOnly grants permissions to // view your data in Google Cloud Storage. ScopeReadOnly = raw.DevstorageReadOnlyScope // ScopeReadWrite grants permissions to manage your // data in Google Cloud Storage. ScopeReadWrite = raw.DevstorageReadWriteScope )
Variables
var ( ErrBucketNotExist = errors.New("storage: bucket doesn't exist") ErrObjectNotExist = errors.New("storage: object doesn't exist") )
func SignedURL ¶
func SignedURL(bucket, name string, opts *SignedURLOptions) (string, error)
SignedURL returns a URL for the specified object. Signed URLs allow the users access to a restricted resource for a limited time without having a Google account or signing in. For more information about the signed URLs, see https://cloud.google.com/storage/docs/accesscontrol#Signed-URLs.
▹ Example
type ACLEntity ¶
ACLEntity refers to a user or group. They are sometimes referred to as grantees.
It could be in the form of: "user-<userId>", "user-<email>", "group-<groupId>", "group-<email>", "domain-<domain>" and "project-team-<projectId>".
Or one of the predefined constants: AllUsers, AllAuthenticatedUsers.
type ACLEntity string
const ( AllUsers ACLEntity = "allUsers" AllAuthenticatedUsers ACLEntity = "allAuthenticatedUsers" )
type ACLHandle ¶
ACLHandle provides operations on an access control list for a Google Cloud Storage bucket or object.
type ACLHandle struct {
// contains filtered or unexported fields
}
func (*ACLHandle) Delete ¶
func (a *ACLHandle) Delete(ctx context.Context, entity ACLEntity) error
Delete permanently deletes the ACL entry for the given entity.
▹ Example
func (*ACLHandle) List ¶
func (a *ACLHandle) List(ctx context.Context) ([]ACLRule, error)
List retrieves ACL entries.
▹ Example
func (*ACLHandle) Set ¶
func (a *ACLHandle) Set(ctx context.Context, entity ACLEntity, role ACLRole) error
Set sets the permission level for the given entity.
▹ Example
type ACLRole ¶
ACLRole is the level of access to grant.
type ACLRole string
const ( RoleOwner ACLRole = "OWNER" RoleReader ACLRole = "READER" RoleWriter ACLRole = "WRITER" )
type ACLRule ¶
ACLRule represents a grant for a role to an entity (user, group or team) for a Google Cloud Storage object or bucket.
type ACLRule struct { Entity ACLEntity Role ACLRole }
type BucketAttrs ¶
BucketAttrs represents the metadata for a Google Cloud Storage bucket.
type BucketAttrs struct { // Name is the name of the bucket. Name string // ACL is the list of access control rules on the bucket. ACL []ACLRule // DefaultObjectACL is the list of access controls to // apply to new objects when no object ACL is provided. DefaultObjectACL []ACLRule // Location is the location of the bucket. It defaults to "US". Location string // MetaGeneration is the metadata generation of the bucket. MetaGeneration int64 // StorageClass is the default storage class of the bucket. This defines // how objects in the bucket are stored and determines the SLA // and the cost of storage. Typical values are "MULTI_REGIONAL", // "REGIONAL", "NEARLINE", "COLDLINE", "STANDARD" and // "DURABLE_REDUCED_AVAILABILITY". Defaults to "STANDARD", which // is equivalent to "MULTI_REGIONAL" or "REGIONAL" depending on // the bucket's location settings. StorageClass string // Created is the creation time of the bucket. Created time.Time // VersioningEnabled reports whether this bucket has versioning enabled. // This field is read-only. VersioningEnabled bool // Labels are the bucket's labels. Labels map[string]string }
type BucketAttrsToUpdate ¶
type BucketAttrsToUpdate struct { // VersioningEnabled, if set, updates whether the bucket uses versioning. VersioningEnabled optional.Bool // contains filtered or unexported fields }
func (*BucketAttrsToUpdate) DeleteLabel ¶
func (ua *BucketAttrsToUpdate) DeleteLabel(name string)
DeleteLabel causes a label to be deleted when ua is used in a call to Bucket.Update.
func (*BucketAttrsToUpdate) SetLabel ¶
func (ua *BucketAttrsToUpdate) SetLabel(name, value string)
SetLabel causes a label to be added or modified when ua is used in a call to Bucket.Update.
type BucketConditions ¶
BucketConditions constrain bucket methods to act on specific metagenerations.
The zero value is an empty set of constraints.
type BucketConditions struct { // MetagenerationMatch specifies that the bucket must have the given // metageneration for the operation to occur. // If MetagenerationMatch is zero, it has no effect. MetagenerationMatch int64 // MetagenerationNotMatch specifies that the bucket must not have the given // metageneration for the operation to occur. // If MetagenerationNotMatch is zero, it has no effect. MetagenerationNotMatch int64 }
type BucketHandle ¶
BucketHandle provides operations on a Google Cloud Storage bucket. Use Client.Bucket to get a handle.
type BucketHandle struct {
// contains filtered or unexported fields
}
func (*BucketHandle) ACL ¶
func (b *BucketHandle) ACL() *ACLHandle
ACL returns an ACLHandle, which provides access to the bucket's access control list. This controls who can list, create or overwrite the objects in a bucket. This call does not perform any network operations.
func (*BucketHandle) Attrs ¶
func (b *BucketHandle) Attrs(ctx context.Context) (*BucketAttrs, error)
Attrs returns the metadata for the bucket.
▹ Example
func (*BucketHandle) Create ¶
func (b *BucketHandle) Create(ctx context.Context, projectID string, attrs *BucketAttrs) error
Create creates the Bucket in the project. If attrs is nil the API defaults will be used.
▹ Example
func (*BucketHandle) DefaultObjectACL ¶
func (b *BucketHandle) DefaultObjectACL() *ACLHandle
DefaultObjectACL returns an ACLHandle, which provides access to the bucket's default object ACLs. These ACLs are applied to newly created objects in this bucket that do not have a defined ACL. This call does not perform any network operations.
func (*BucketHandle) Delete ¶
func (b *BucketHandle) Delete(ctx context.Context) error
Delete deletes the Bucket.
▹ Example
func (*BucketHandle) IAM ¶
func (b *BucketHandle) IAM() *iam.Handle
IAM provides access to IAM access control for the bucket.
func (*BucketHandle) If ¶
func (b *BucketHandle) If(conds BucketConditions) *BucketHandle
If returns a new BucketHandle that applies a set of preconditions. Preconditions already set on the BucketHandle are ignored. Operations on the new handle will only occur if the preconditions are satisfied. The only valid preconditions for buckets are MetagenerationMatch and MetagenerationNotMatch.
func (*BucketHandle) Object ¶
func (b *BucketHandle) Object(name string) *ObjectHandle
Object returns an ObjectHandle, which provides operations on the named object. This call does not perform any network operations.
name must consist entirely of valid UTF-8-encoded runes. The full specification for valid object names can be found at:
https://cloud.google.com/storage/docs/bucket-naming
func (*BucketHandle) Objects ¶
func (b *BucketHandle) Objects(ctx context.Context, q *Query) *ObjectIterator
Objects returns an iterator over the objects in the bucket that match the Query q. If q is nil, no filtering is done.
▹ Example
func (*BucketHandle) Update ¶
func (b *BucketHandle) Update(ctx context.Context, uattrs BucketAttrsToUpdate) (*BucketAttrs, error)
▹ Example
▹ Example (ReadModifyWrite)
type BucketIterator ¶
A BucketIterator is an iterator over BucketAttrs.
type BucketIterator struct { // Prefix restricts the iterator to buckets whose names begin with it. Prefix string // contains filtered or unexported fields }
func (*BucketIterator) Next ¶
func (it *BucketIterator) Next() (*BucketAttrs, error)
Next returns the next result. Its second return value is iterator.Done if there are no more results. Once Next returns iterator.Done, all subsequent calls will return iterator.Done.
▹ Example
func (*BucketIterator) PageInfo ¶
func (it *BucketIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.
type Client ¶
Client is a client for interacting with Google Cloud Storage.
Clients should be reused instead of created as needed. The methods of Client are safe for concurrent use by multiple goroutines.
type Client struct {
// contains filtered or unexported fields
}
func NewClient ¶
func NewClient(ctx context.Context, opts ...option.ClientOption) (*Client, error)
NewClient creates a new Google Cloud Storage client. The default scope is ScopeFullControl. To use a different scope, like ScopeReadOnly, use option.WithScopes.
▹ Example
▹ Example (Auth)
func (*Client) Bucket ¶
func (c *Client) Bucket(name string) *BucketHandle
Bucket returns a BucketHandle, which provides operations on the named bucket. This call does not perform any network operations.
The supplied name must contain only lowercase letters, numbers, dashes, underscores, and dots. The full specification for valid bucket names can be found at:
https://cloud.google.com/storage/docs/bucket-naming
func (*Client) Buckets ¶
func (c *Client) Buckets(ctx context.Context, projectID string) *BucketIterator
Buckets returns an iterator over the buckets in the project. You may optionally set the iterator's Prefix field to restrict the list to buckets whose names begin with the prefix. By default, all buckets in the project are returned.
▹ Example
func (*Client) Close ¶
func (c *Client) Close() error
Close closes the Client.
Close need not be called at program exit.
type Composer ¶
A Composer composes source objects into a destination object.
type Composer struct { // ObjectAttrs are optional attributes to set on the destination object. // Any attributes must be initialized before any calls on the Composer. Nil // or zero-valued attributes are ignored. ObjectAttrs // contains filtered or unexported fields }
func (*Composer) Run ¶
func (c *Composer) Run(ctx context.Context) (*ObjectAttrs, error)
Run performs the compose operation.
▹ Example
type Conditions ¶
Conditions constrain methods to act on specific generations of objects.
The zero value is an empty set of constraints. Not all conditions or combinations of conditions are applicable to all methods. See https://cloud.google.com/storage/docs/generations-preconditions for details on how these operate.
type Conditions struct { // GenerationMatch specifies that the object must have the given generation // for the operation to occur. // If GenerationMatch is zero, it has no effect. // Use DoesNotExist to specify that the object does not exist in the bucket. GenerationMatch int64 // GenerationNotMatch specifies that the object must not have the given // generation for the operation to occur. // If GenerationNotMatch is zero, it has no effect. GenerationNotMatch int64 // DoesNotExist specifies that the object must not exist in the bucket for // the operation to occur. // If DoesNotExist is false, it has no effect. DoesNotExist bool // MetagenerationMatch specifies that the object must have the given // metageneration for the operation to occur. // If MetagenerationMatch is zero, it has no effect. MetagenerationMatch int64 // MetagenerationNotMatch specifies that the object must not have the given // metageneration for the operation to occur. // If MetagenerationNotMatch is zero, it has no effect. MetagenerationNotMatch int64 }
type Copier ¶
A Copier copies a source object to a destination.
type Copier struct { // ObjectAttrs are optional attributes to set on the destination object. // Any attributes must be initialized before any calls on the Copier. Nil // or zero-valued attributes are ignored. ObjectAttrs // RewriteToken can be set before calling Run to resume a copy // operation. After Run returns a non-nil error, RewriteToken will // have been updated to contain the value needed to resume the copy. RewriteToken string // ProgressFunc can be used to monitor the progress of a multi-RPC copy // operation. If ProgressFunc is not nil and CopyFrom requires multiple // calls to the underlying service (see // https://cloud.google.com/storage/docs/json_api/v1/objects/rewrite), then // ProgressFunc will be invoked after each call with the number of bytes of // content copied so far and the total size in bytes of the source object. // // ProgressFunc is intended to make upload progress available to the // application. For example, the implementation of ProgressFunc may update // a progress bar in the application's UI, or log the result of // float64(copiedBytes)/float64(totalBytes). // // ProgressFunc should return quickly without blocking. ProgressFunc func(copiedBytes, totalBytes uint64) // contains filtered or unexported fields }
func (*Copier) Run ¶
func (c *Copier) Run(ctx context.Context) (*ObjectAttrs, error)
Run performs the copy.
▹ Example
▹ Example (Progress)
type ObjectAttrs ¶
ObjectAttrs represents the metadata for a Google Cloud Storage (GCS) object.
type ObjectAttrs struct { // Bucket is the name of the bucket containing this GCS object. // This field is read-only. Bucket string // Name is the name of the object within the bucket. // This field is read-only. Name string // ContentType is the MIME type of the object's content. ContentType string // ContentLanguage is the content language of the object's content. ContentLanguage string // CacheControl is the Cache-Control header to be sent in the response // headers when serving the object data. CacheControl string // ACL is the list of access control rules for the object. ACL []ACLRule // Owner is the owner of the object. This field is read-only. // // If non-zero, it is in the form of "user-<userId>". Owner string // Size is the length of the object's content. This field is read-only. Size int64 // ContentEncoding is the encoding of the object's content. ContentEncoding string // ContentDisposition is the optional Content-Disposition header of the object // sent in the response headers. ContentDisposition string // MD5 is the MD5 hash of the object's content. This field is read-only. MD5 []byte // CRC32C is the CRC32 checksum of the object's content using // the Castagnoli93 polynomial. This field is read-only. CRC32C uint32 // MediaLink is an URL to the object's content. This field is read-only. MediaLink string // Metadata represents user-provided metadata, in key/value pairs. // It can be nil if no metadata is provided. Metadata map[string]string // Generation is the generation number of the object's content. // This field is read-only. Generation int64 // Metageneration is the version of the metadata for this // object at this generation. This field is used for preconditions // and for detecting changes in metadata. A metageneration number // is only meaningful in the context of a particular generation // of a particular object. This field is read-only. Metageneration int64 // StorageClass is the storage class of the object. // This value defines how objects in the bucket are stored and // determines the SLA and the cost of storage. Typical values are // "MULTI_REGIONAL", "REGIONAL", "NEARLINE", "COLDLINE", "STANDARD" // and "DURABLE_REDUCED_AVAILABILITY". // It defaults to "STANDARD", which is equivalent to "MULTI_REGIONAL" // or "REGIONAL" depending on the bucket's location settings. StorageClass string // Created is the time the object was created. This field is read-only. Created time.Time // Deleted is the time the object was deleted. // If not deleted, it is the zero value. This field is read-only. Deleted time.Time // Updated is the creation or modification time of the object. // For buckets with versioning enabled, changing an object's // metadata does not change this property. This field is read-only. Updated time.Time // CustomerKeySHA256 is the base64-encoded SHA-256 hash of the // customer-supplied encryption key for the object. It is empty if there is // no customer-supplied encryption key. // See // https://cloud.google.com/storage/docs/encryption for more about // encryption in Google Cloud Storage. CustomerKeySHA256 string // Prefix is set only for ObjectAttrs which represent synthetic "directory // entries" when iterating over buckets using Query.Delimiter. See // ObjectIterator.Next. When set, no other fields in ObjectAttrs will be // populated. Prefix string }
type ObjectAttrsToUpdate ¶
ObjectAttrsToUpdate is used to update the attributes of an object. Only fields set to non-nil values will be updated. Set a field to its zero value to delete it.
For example, to change ContentType and delete ContentEncoding and Metadata, use
ObjectAttrsToUpdate{ ContentType: "text/html", ContentEncoding: "", Metadata: map[string]string{}, }
type ObjectAttrsToUpdate struct {
ContentType optional.String
ContentLanguage optional.String
ContentEncoding optional.String
ContentDisposition optional.String
CacheControl optional.String
Metadata map[string]string // set to map[string]string{} to delete
ACL []ACLRule
}
type ObjectHandle ¶
ObjectHandle provides operations on an object in a Google Cloud Storage bucket. Use BucketHandle.Object to get a handle.
type ObjectHandle struct {
// contains filtered or unexported fields
}
func (*ObjectHandle) ACL ¶
func (o *ObjectHandle) ACL() *ACLHandle
ACL provides access to the object's access control list. This controls who can read and write this object. This call does not perform any network operations.
func (*ObjectHandle) Attrs ¶
func (o *ObjectHandle) Attrs(ctx context.Context) (*ObjectAttrs, error)
Attrs returns meta information about the object. ErrObjectNotExist will be returned if the object is not found.
▹ Example
▹ Example (WithConditions)
func (*ObjectHandle) ComposerFrom ¶
func (dst *ObjectHandle) ComposerFrom(srcs ...*ObjectHandle) *Composer
ComposerFrom creates a Composer that can compose srcs into dst. You can immediately call Run on the returned Composer, or you can configure it first.
The encryption key for the destination object will be used to decrypt all source objects and encrypt the destination object. It is an error to specify an encryption key for any of the source objects.
func (*ObjectHandle) CopierFrom ¶
func (dst *ObjectHandle) CopierFrom(src *ObjectHandle) *Copier
CopierFrom creates a Copier that can copy src to dst. You can immediately call Run on the returned Copier, or you can configure it first.
▹ Example (RotateEncryptionKeys)
func (*ObjectHandle) Delete ¶
func (o *ObjectHandle) Delete(ctx context.Context) error
Delete deletes the single specified object.
▹ Example
func (*ObjectHandle) Generation ¶
func (o *ObjectHandle) Generation(gen int64) *ObjectHandle
Generation returns a new ObjectHandle that operates on a specific generation of the object. By default, the handle operates on the latest generation. Not all operations work when given a specific generation; check the API endpoints at https://cloud.google.com/storage/docs/json_api/ for details.
▹ Example
func (*ObjectHandle) If ¶
func (o *ObjectHandle) If(conds Conditions) *ObjectHandle
If returns a new ObjectHandle that applies a set of preconditions. Preconditions already set on the ObjectHandle are ignored. Operations on the new handle will only occur if the preconditions are satisfied. See https://cloud.google.com/storage/docs/generations-preconditions for more details.
▹ Example
func (*ObjectHandle) Key ¶
func (o *ObjectHandle) Key(encryptionKey []byte) *ObjectHandle
Key returns a new ObjectHandle that uses the supplied encryption key to encrypt and decrypt the object's contents.
Encryption key must be a 32-byte AES-256 key. See https://cloud.google.com/storage/docs/encryption for details.
▹ Example
func (*ObjectHandle) NewRangeReader ¶
func (o *ObjectHandle) NewRangeReader(ctx context.Context, offset, length int64) (*Reader, error)
NewRangeReader reads part of an object, reading at most length bytes starting at the given offset. If length is negative, the object is read until the end.
▹ Example
func (*ObjectHandle) NewReader ¶
func (o *ObjectHandle) NewReader(ctx context.Context) (*Reader, error)
NewReader creates a new Reader to read the contents of the object. ErrObjectNotExist will be returned if the object is not found.
The caller must call Close on the returned Reader when done reading.
▹ Example
func (*ObjectHandle) NewWriter ¶
func (o *ObjectHandle) NewWriter(ctx context.Context) *Writer
NewWriter returns a storage Writer that writes to the GCS object associated with this ObjectHandle.
A new object will be created unless an object with this name already exists. Otherwise any previous object with the same name will be replaced. The object will not be available (and any previous object will remain) until Close has been called.
Attributes can be set on the object by modifying the returned Writer's ObjectAttrs field before the first call to Write. If no ContentType attribute is specified, the content type will be automatically sniffed using net/http.DetectContentType.
It is the caller's responsibility to call Close when writing is done.
▹ Example
func (*ObjectHandle) Update ¶
func (o *ObjectHandle) Update(ctx context.Context, uattrs ObjectAttrsToUpdate) (*ObjectAttrs, error)
Update updates an object with the provided attributes. All zero-value attributes are ignored. ErrObjectNotExist will be returned if the object is not found.
▹ Example
type ObjectIterator ¶
An ObjectIterator is an iterator over ObjectAttrs.
type ObjectIterator struct {
// contains filtered or unexported fields
}
func (*ObjectIterator) Next ¶
func (it *ObjectIterator) Next() (*ObjectAttrs, error)
Next returns the next result. Its second return value is iterator.Done if there are no more results. Once Next returns iterator.Done, all subsequent calls will return iterator.Done.
If Query.Delimiter is non-empty, some of the ObjectAttrs returned by Next will have a non-empty Prefix field, and a zero value for all other fields. These represent prefixes.
▹ Example
func (*ObjectIterator) PageInfo ¶
func (it *ObjectIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.
type Query ¶
Query represents a query to filter objects from a bucket.
type Query struct { // Delimiter returns results in a directory-like fashion. // Results will contain only objects whose names, aside from the // prefix, do not contain delimiter. Objects whose names, // aside from the prefix, contain delimiter will have their name, // truncated after the delimiter, returned in prefixes. // Duplicate prefixes are omitted. // Optional. Delimiter string // Prefix is the prefix filter to query objects // whose names begin with this prefix. // Optional. Prefix string // Versions indicates whether multiple versions of the same // object will be included in the results. Versions bool }
type Reader ¶
Reader reads a Cloud Storage object. It implements io.Reader.
type Reader struct {
// contains filtered or unexported fields
}
func (*Reader) Close ¶
func (r *Reader) Close() error
Close closes the Reader. It must be called when done reading.
func (*Reader) ContentType ¶
func (r *Reader) ContentType() string
ContentType returns the content type of the object.
func (*Reader) Read ¶
func (r *Reader) Read(p []byte) (int, error)
func (*Reader) Remain ¶
func (r *Reader) Remain() int64
Remain returns the number of bytes left to read, or -1 if unknown.
func (*Reader) Size ¶
func (r *Reader) Size() int64
Size returns the size of the object in bytes. The returned value is always the same and is not affected by calls to Read or Close.
type SignedURLOptions ¶
SignedURLOptions allows you to restrict the access to the signed URL.
type SignedURLOptions struct { // GoogleAccessID represents the authorizer of the signed URL generation. // It is typically the Google service account client email address from // the Google Developers Console in the form of "xxx@developer.gserviceaccount.com". // Required. GoogleAccessID string // PrivateKey is the Google service account private key. It is obtainable // from the Google Developers Console. // At https://console.developers.google.com/project/<your-project-id>/apiui/credential, // create a service account client ID or reuse one of your existing service account // credentials. Click on the "Generate new P12 key" to generate and download // a new private key. Once you download the P12 file, use the following command // to convert it into a PEM file. // // $ openssl pkcs12 -in key.p12 -passin pass:notasecret -out key.pem -nodes // // Provide the contents of the PEM file as a byte slice. // Exactly one of PrivateKey or SignBytes must be non-nil. PrivateKey []byte // SignBytes is a function for implementing custom signing. // If your application is running on Google App Engine, you can use appengine's internal signing function: // ctx := appengine.NewContext(request) // acc, _ := appengine.ServiceAccount(ctx) // url, err := SignedURL("bucket", "object", &SignedURLOptions{ // GoogleAccessID: acc, // SignBytes: func(b []byte) ([]byte, error) { // _, signedBytes, err := appengine.SignBytes(ctx, b) // return signedBytes, err // }, // // etc. // }) // // Exactly one of PrivateKey or SignBytes must be non-nil. SignBytes func([]byte) ([]byte, error) // Method is the HTTP method to be used with the signed URL. // Signed URLs can be used with GET, HEAD, PUT, and DELETE requests. // Required. Method string // Expires is the expiration time on the signed URL. It must be // a datetime in the future. // Required. Expires time.Time // ContentType is the content type header the client must provide // to use the generated signed URL. // Optional. ContentType string // Headers is a list of extention headers the client must provide // in order to use the generated signed URL. // Optional. Headers []string // MD5 is the base64 encoded MD5 checksum of the file. // If provided, the client should provide the exact value on the request // header in order to use the signed URL. // Optional. MD5 string }
type Writer ¶
A Writer writes a Cloud Storage object.
type Writer struct { // ObjectAttrs are optional attributes to set on the object. Any attributes // must be initialized before the first Write call. Nil or zero-valued // attributes are ignored. ObjectAttrs // SendCRC specifies whether to transmit a CRC32C field. It should be set // to true in addition to setting the Writer's CRC32C field, because zero // is a valid CRC and normally a zero would not be transmitted. SendCRC32C bool // ChunkSize controls the maximum number of bytes of the object that the // Writer will attempt to send to the server in a single request. Objects // smaller than the size will be sent in a single request, while larger // objects will be split over multiple requests. The size will be rounded up // to the nearest multiple of 256K. If zero, chunking will be disabled and // the object will be uploaded in a single request. // // ChunkSize will default to a reasonable value. Any custom configuration // must be done before the first Write call. ChunkSize int // ProgressFunc can be used to monitor the progress of a large write. // operation. If ProgressFunc is not nil and writing requires multiple // calls to the underlying service (see // https://cloud.google.com/storage/docs/json_api/v1/how-tos/resumable-upload), // then ProgressFunc will be invoked after each call with the number of bytes of // content copied so far. // // ProgressFunc should return quickly without blocking. ProgressFunc func(int64) // contains filtered or unexported fields }
func (*Writer) Attrs ¶
func (w *Writer) Attrs() *ObjectAttrs
Attrs returns metadata about a successfully-written object. It's only valid to call it after Close returns nil.
func (*Writer) Close ¶
func (w *Writer) Close() error
Close completes the write operation and flushes any buffered data. If Close doesn't return an error, metadata about the written object can be retrieved by calling Attrs.
func (*Writer) CloseWithError ¶
func (w *Writer) CloseWithError(err error) error
CloseWithError aborts the write operation with the provided error. CloseWithError always returns nil.
func (*Writer) Write ¶
func (w *Writer) Write(p []byte) (n int, err error)
Write appends to w. It implements the io.Writer interface.
Since writes happen asynchronously, Write may return a nil error even though the write failed (or will fail). Always use the error returned from Writer.Close to determine if the upload was successful.
▹ Example