VictoriaMetrics/vendor/cloud.google.com/go/storage
2024-06-24 23:09:16 +02:00
..
internal vendor: run make vendor-update 2024-06-24 23:09:16 +02:00
acl.go vendor: run make vendor-update 2024-06-24 23:09:16 +02:00
bucket.go vendor: run make vendor-update 2024-06-24 23:09:16 +02:00
CHANGES.md vendor: run make vendor-update 2024-06-24 23:09:16 +02:00
client.go vendor: run make vendor-update 2024-05-22 21:58:53 +02:00
copy.go
doc.go vendor: run make vendor-update 2024-05-22 21:58:53 +02:00
emulator_test.sh
grpc_client.go vendor: run make vendor-update 2024-05-22 21:58:53 +02:00
hmac.go vendor: run make vendor-update 2024-06-24 23:09:16 +02:00
http_client.go vendor: run make vendor-update 2024-06-24 23:09:16 +02:00
iam.go
invoke.go vendor: run make vendor-update 2024-06-24 23:09:16 +02:00
LICENSE
notifications.go vendor: run make vendor-update 2024-05-22 21:58:53 +02:00
option.go vendor: run make vendor-update 2024-06-24 23:09:16 +02:00
post_policy_v4.go
reader.go vendor: run make vendor-update 2024-06-24 23:09:16 +02:00
README.md
storage.go vendor: run make vendor-update 2024-06-24 23:09:16 +02:00
storage.replay
writer.go vendor: run make vendor-update 2024-03-01 00:55:54 +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)
}