VictoriaMetrics/vendor/cloud.google.com/go/storage
2022-02-21 13:59:00 +02:00
..
internal vendor: make vendor-update 2022-02-21 13:59:00 +02:00
acl.go vendor: make vendor-update 2022-01-27 13:16:33 +02:00
bucket.go vendor: make vendor-update 2022-01-27 13:16:33 +02:00
CHANGES.md vendor: make vendor-update 2022-02-21 13:59:00 +02:00
copy.go vendor: make vendor-update 2022-01-27 13:16:33 +02:00
doc.go vendor: make vendor-update 2022-01-27 13:16:33 +02:00
emulator_test.sh vendor: make vendor-update 2022-01-27 13:16:33 +02:00
go_mod_tidy_hack.go build(deps): bump cloud.google.com/go/storage from 1.16.0 to 1.16.1 (#1589) 2021-09-01 12:51:42 +03:00
hmac.go vendor: make vendor-update 2022-01-27 13:16:33 +02:00
iam.go vendor: make vendor-update 2022-01-27 13:16:33 +02:00
invoke.go vendor: make vendor-update 2022-01-27 13:16:33 +02:00
LICENSE app/{vmbackup,vmrestore}: add vmbackup and vmrestore tools for creating backups on s3 or gcs from instant snapshots 2019-11-08 21:21:07 +02:00
notifications.go vendor: make vendor-update 2022-01-27 13:16:33 +02:00
post_policy_v4.go vendor: make vendor-update 2022-01-27 13:16:33 +02:00
reader.go vendor: make vendor-update 2022-01-27 13:16:33 +02:00
README.md vendor: make vendor-update 2022-01-27 13:16:33 +02:00
storage.go vendor: make vendor-update 2022-02-21 13:59:00 +02:00
storage.replay app/{vmbackup,vmrestore}: add vmbackup and vmrestore tools for creating backups on s3 or gcs from instant snapshots 2019-11-08 21:21:07 +02:00
writer.go vendor: make vendor-update 2022-02-21 13:59:00 +02: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)
}