kaniko/vendor/cloud.google.com/go/storage
dependabot[bot] 2ca4d61819
chore(deps): bump cloud.google.com/go/storage from 1.37.0 to 1.38.0 (#3015)
Bumps [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) from 1.37.0 to 1.38.0.
- [Release notes](https://github.com/googleapis/google-cloud-go/releases)
- [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md)
- [Commits](https://github.com/googleapis/google-cloud-go/compare/spanner/v1.37.0...spanner/v1.38.0)

---
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>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-02-19 19:58:11 -08:00
..
internal chore(deps): bump cloud.google.com/go/storage from 1.37.0 to 1.38.0 (#3015) 2024-02-19 19:58:11 -08:00
CHANGES.md chore(deps): bump cloud.google.com/go/storage from 1.37.0 to 1.38.0 (#3015) 2024-02-19 19:58:11 -08:00
LICENSE bump go-containerregistry dep 2020-08-04 19:41:26 -07:00
README.md fix(executor): make pax tar builds reproducible again (#2384) 2023-03-21 18:08:29 -04:00
acl.go chore(deps): bump cloud.google.com/go/storage from 1.30.1 to 1.31.0 (#2611) 2023-07-04 11:59:22 -07:00
bucket.go chore(deps): bump cloud.google.com/go/storage from 1.37.0 to 1.38.0 (#3015) 2024-02-19 19:58:11 -08:00
client.go chore(deps): bump cloud.google.com/go/storage from 1.35.1 to 1.36.0 (#2913) 2023-12-19 08:34:19 -08:00
copy.go fix(executor): make pax tar builds reproducible again (#2384) 2023-03-21 18:08:29 -04:00
doc.go chore(deps): bump cloud.google.com/go/storage from 1.32.0 to 1.33.0 (#2740) 2023-09-12 10:00:21 -07:00
emulator_test.sh Bump cloud.google.com/go/storage from 1.21.0 to 1.22.0 (#2041) 2022-04-11 10:26:23 -04:00
grpc_client.go chore(deps): bump cloud.google.com/go/storage from 1.36.0 to 1.37.0 (#2998) 2024-02-12 09:29:30 -08:00
hmac.go chore(deps): bump github.com/spf13/afero from 1.10.0 to 1.11.0 (#2891) 2023-12-04 10:05:01 -05:00
http_client.go chore(deps): bump cloud.google.com/go/storage from 1.37.0 to 1.38.0 (#3015) 2024-02-19 19:58:11 -08:00
iam.go chore(deps): bump cloud.google.com/go/storage from 1.29.0 to 1.30.1 (#2439) 2023-05-29 17:07:45 -07:00
invoke.go chore(deps): bump cloud.google.com/go/storage from 1.36.0 to 1.37.0 (#2998) 2024-02-12 09:29:30 -08:00
notifications.go chore(deps): bump cloud.google.com/go/storage from 1.30.1 to 1.31.0 (#2611) 2023-07-04 11:59:22 -07:00
option.go chore(deps): bump cloud.google.com/go/storage from 1.30.1 to 1.31.0 (#2611) 2023-07-04 11:59:22 -07:00
post_policy_v4.go chore(deps): bump cloud.google.com/go/storage from 1.31.0 to 1.32.0 (#2692) 2023-08-21 09:55:14 -07:00
reader.go chore(deps): bump github.com/spf13/afero from 1.10.0 to 1.11.0 (#2891) 2023-12-04 10:05:01 -05:00
storage.go chore(deps): bump cloud.google.com/go/storage from 1.37.0 to 1.38.0 (#3015) 2024-02-19 19:58:11 -08:00
storage.replay bump go-containerregistry dep 2020-08-04 19:41:26 -07:00
writer.go chore(deps): bump cloud.google.com/go/storage from 1.31.0 to 1.32.0 (#2692) 2023-08-21 09:55:14 -07:00

README.md

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 := io.ReadAll(rc)
if err != nil {
	log.Fatal(err)
}