debian-forge-composer/vendor/cloud.google.com/go/storage
dependabot[bot] 9075dbc61d build(deps): bump cloud.google.com/go/storage from 1.16.1 to 1.18.1
Bumps [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) from 1.16.1 to 1.18.1.
- [Release notes](https://github.com/googleapis/google-cloud-go/releases)
- [Changelog](https://github.com/googleapis/google-cloud-go/blob/master/CHANGES.md)
- [Commits](https://github.com/googleapis/google-cloud-go/compare/storage/v1.16.1...storage/v1.18.1)

---
updated-dependencies:
- dependency-name: cloud.google.com/go/storage
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-10-18 07:54:09 +01:00
..
internal/apiv2 build(deps): bump cloud.google.com/go/storage from 1.16.1 to 1.18.1 2021-10-18 07:54:09 +01:00
acl.go build(deps): bump cloud.google.com/go/storage from 1.16.1 to 1.18.1 2021-10-18 07:54:09 +01:00
bucket.go build(deps): bump cloud.google.com/go/storage from 1.16.1 to 1.18.1 2021-10-18 07:54:09 +01:00
CHANGES.md build(deps): bump cloud.google.com/go/storage from 1.16.1 to 1.18.1 2021-10-18 07:54:09 +01:00
copy.go internal/upload: Add support for upload to GCP and CLI tool using it 2021-02-25 18:44:21 +00:00
doc.go build(deps): bump cloud.google.com/go/storage from 1.16.1 to 1.18.1 2021-10-18 07:54:09 +01:00
go.mod build(deps): bump cloud.google.com/go/storage from 1.16.1 to 1.18.1 2021-10-18 07:54:09 +01:00
go.sum build(deps): bump cloud.google.com/go/storage from 1.16.1 to 1.18.1 2021-10-18 07:54:09 +01:00
go_mod_tidy_hack.go go: update most dependencies to the latest version 2021-09-05 12:50:02 +01:00
hmac.go build(deps): bump cloud.google.com/go/storage from 1.16.1 to 1.18.1 2021-10-18 07:54:09 +01:00
iam.go internal/upload: Add support for upload to GCP and CLI tool using it 2021-02-25 18:44:21 +00:00
invoke.go build(deps): bump cloud.google.com/go/storage from 1.16.1 to 1.18.1 2021-10-18 07:54:09 +01:00
LICENSE internal/upload: Add support for upload to GCP and CLI tool using it 2021-02-25 18:44:21 +00:00
notifications.go build(deps): bump cloud.google.com/go/storage from 1.16.1 to 1.18.1 2021-10-18 07:54:09 +01:00
post_policy_v4.go go: update most dependencies to the latest version 2021-09-05 12:50:02 +01:00
reader.go build(deps): bump cloud.google.com/go/storage from 1.16.1 to 1.18.1 2021-10-18 07:54:09 +01:00
README.md go: update most dependencies to the latest version 2021-09-05 12:50:02 +01:00
storage.go build(deps): bump cloud.google.com/go/storage from 1.16.1 to 1.18.1 2021-10-18 07:54:09 +01:00
storage.replay internal/upload: Add support for upload to GCP and CLI tool using it 2021-02-25 18:44:21 +00:00
writer.go build(deps): bump cloud.google.com/go/storage from 1.16.1 to 1.18.1 2021-10-18 07:54:09 +01:00

Cloud Storage Go Reference

Example Usage

First create a storage.Client to use throughout your application:

client, err := storage.NewClient(ctx)
if err != nil {
	log.Fatal(err)
}
// Read the object1 from bucket.
rc, err := client.Bucket("bucket").Object("object1").NewReader(ctx)
if err != nil {
	log.Fatal(err)
}
defer rc.Close()
body, err := ioutil.ReadAll(rc)
if err != nil {
	log.Fatal(err)
}