VictoriaMetrics/vendor/cloud.google.com/go/storage
2023-11-13 18:54:33 +01:00
..
internal vendor: run make vendor-update 2023-11-13 18:54:33 +01:00
acl.go vendor: run make vendor-update 2023-07-07 00:05:50 -07:00
bucket.go vendor: run make vendor-update 2023-10-31 20:20:07 +01:00
CHANGES.md vendor: run make vendor-update 2023-11-13 18:54:33 +01:00
client.go vendor: make vendor-update 2023-03-15 13:24:22 -07:00
copy.go vendor: make vendor-update 2022-11-10 13:47:30 +02:00
doc.go vendor: run make vendor-update 2023-10-02 21:53:35 +02:00
emulator_test.sh vendor: make vendor-update 2022-04-12 12:56:50 +03:00
grpc_client.go vendor: run make vendor-update 2023-11-13 18:54:33 +01:00
hmac.go vendor: run make vendor-update 2023-10-31 20:20:07 +01:00
http_client.go vendor: run make vendor-update 2023-10-31 20:20:07 +01:00
iam.go vendor: make vendor-update 2023-03-15 13:24:22 -07:00
invoke.go vendor: run make vendor-update 2023-10-31 20:20:07 +01:00
LICENSE app/{vmbackup,vmrestore}: add vmbackup and vmrestore tools for creating backups on s3 or gcs from instant snapshots 2019-11-07 21:26:43 +02:00
notifications.go vendor: run make vendor-update 2023-07-07 00:05:50 -07:00
option.go vendor: run make vendor-update 2023-07-07 00:05:50 -07:00
post_policy_v4.go vendor: run make vendor-update 2023-08-29 13:16:20 +02:00
reader.go vendor: run make vendor-update 2023-10-31 20:20:07 +01:00
README.md vendor: make vendor-update 2022-11-10 13:47:30 +02:00
storage.go vendor: run make vendor-update 2023-10-02 21:53:35 +02:00
storage.replay app/{vmbackup,vmrestore}: add vmbackup and vmrestore tools for creating backups on s3 or gcs from instant snapshots 2019-11-07 21:26:43 +02:00
writer.go vendor: run make vendor-update 2023-08-29 13:16:20 +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 := io.ReadAll(rc)
if err != nil {
	log.Fatal(err)
}