Copy copies the object associated with srcKey to dstKey. If the source object does not exist, Copy must return an error for which ErrorCode returns gcerrors.NotFound. If the destination object already exists, it should be overwritten. opts is guaranteed to be non-nil.
(ctx context.Context, dstKey, srcKey string, opts *CopyOptions)
| 321 | // |
| 322 | // opts is guaranteed to be non-nil. |
| 323 | Copy(ctx context.Context, dstKey, srcKey string, opts *CopyOptions) error |
| 324 | |
| 325 | // Delete deletes the object associated with key. If the specified object does |
| 326 | // not exist, Delete must return an error for which ErrorCode returns |
no outgoing calls