The internal GCP package used `pkg.go.dev/google.golang.org/api` [1] to interact with Compute Engine API. Modify the package to use the new and idiomatic `pkg.go.dev/cloud.google.com/go` [2] library for interacting with the Compute Engine API. The new library have been already used to interact with the Cloudbuild and Storage APIs. The new library was not used for Compute Engine since the beginning, because at that time, it didn't support Compute Engine. Update go.mod and vendored packages. [1] https://github.com/googleapis/google-api-go-client [2] https://github.com/googleapis/google-cloud-go Signed-off-by: Tomas Hozza <thozza@redhat.com> |
||
|---|---|---|
| .. | ||
| internal/apiv2 | ||
| acl.go | ||
| bucket.go | ||
| CHANGES.md | ||
| copy.go | ||
| doc.go | ||
| go.mod | ||
| go.sum | ||
| go_mod_tidy_hack.go | ||
| hmac.go | ||
| iam.go | ||
| invoke.go | ||
| LICENSE | ||
| notifications.go | ||
| post_policy_v4.go | ||
| reader.go | ||
| README.md | ||
| storage.go | ||
| storage.replay | ||
| writer.go | ||
Cloud Storage 
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)
}