-
Notifications
You must be signed in to change notification settings - Fork 373
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(storage): another Bucket CRUD field #12842
feat(storage): another Bucket CRUD field #12842
Conversation
/FYI @cojenco |
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #12842 +/- ##
==========================================
- Coverage 93.55% 93.55% -0.01%
==========================================
Files 2074 2074
Lines 180452 180513 +61
==========================================
+ Hits 168815 168871 +56
- Misses 11637 11642 +5
☔ View full report in Codecov by Sentry. |
This time, the `Bucket.auto_class()` gains `terminal_storage_class`, and `OUTPUT_ONLY` `terminate_storage_class_update` fields. Only interesting for completeness sake.
3aba1bd
to
3063975
Compare
auto const object_name = | ||
examples::MakeRandomObjectName(generator, "object-") + ".txt"; | ||
auto client = gcs::Client(); | ||
|
||
std::cout << "\nCreating buckets to run the example:" | ||
<< "\nEnabled Autoclass: " << bucket_name_enabled | ||
<< "\nDisabled Autoclass: " << bucket_name_disabled << std::endl; | ||
<< "\nDisabled Autoclass: " << bucket_name_disabled | ||
<< "\nArchive Autclass: " << bucket_name_archive << std::endl; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
a/Autclass/Autoclass/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed, thanks.
This time, the
Bucket.auto_class()
gainsterminal_storage_class
, andOUTPUT_ONLY
terminate_storage_class_update
fields. Only interesting for completeness sake.Fixes #12658
This change is