-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
samples(storage): create HNS bucket sample (#4177)
* samples(storage): create HNS bucket sample Adds a sample to create a bucket with HierachicalNamespace features enabled. Updates googleapis/google-cloud-go#10294 * go mod tidy
- Loading branch information
Showing
4 changed files
with
173 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
// Copyright 2024 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package buckets | ||
|
||
// [START storage_create_bucket_hierarchical_namespace] | ||
import ( | ||
"context" | ||
"fmt" | ||
"io" | ||
"time" | ||
|
||
"cloud.google.com/go/storage" | ||
) | ||
|
||
// createBucketHierarchicalNamespace creates a new bucket with hierarchical | ||
// namespace features enabled. | ||
func createBucketHierarchicalNamespace(w io.Writer, projectID, bucketName string) error { | ||
// projectID := "my-project-id" | ||
// bucketName := "bucket-name" | ||
|
||
ctx := context.Background() | ||
client, err := storage.NewClient(ctx) | ||
if err != nil { | ||
return fmt.Errorf("storage.NewClient: %w", err) | ||
} | ||
defer client.Close() | ||
|
||
ctx, cancel := context.WithTimeout(ctx, time.Second*30) | ||
defer cancel() | ||
|
||
attrs := &storage.BucketAttrs{ | ||
HierarchicalNamespace: &storage.HierarchicalNamespace{ | ||
Enabled: true, | ||
}, | ||
// Hierarchical namespace buckets must use uniform bucket-level access. | ||
UniformBucketLevelAccess: storage.UniformBucketLevelAccess{ | ||
Enabled: true, | ||
}, | ||
} | ||
bucket := client.Bucket(bucketName) | ||
if err := bucket.Create(ctx, projectID, attrs); err != nil { | ||
return fmt.Errorf("Bucket(%q).Create: %w", bucketName, err) | ||
} | ||
fmt.Fprintf(w, "Created bucket %v with hierarchical namespace enabled\n", bucketName) | ||
return nil | ||
} | ||
|
||
// [END storage_create_bucket_hierarchical_namespace] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.