-
Notifications
You must be signed in to change notification settings - Fork 93
Support daysSinceNoncurrentTime and noncurrentTimeBefore OLM options #332
Copy link
Copy link
Closed
Labels
api: storageIssues related to the googleapis/java-storage API.Issues related to the googleapis/java-storage API.type: feature request‘Nice-to-have’ improvement, new feature or different behavior or design.‘Nice-to-have’ improvement, new feature or different behavior or design.
Description
bucket
.toBuilder()
.setLifecycleRules(
ImmutableList.of(
new LifecycleRule(
LifecycleRule.LifecycleAction.newDeleteAction(),
LifecycleRule.LifecycleCondition.newBuilder()
.setDaysSinceNoncurrentTime(30)
.setNoncurrentTimeBefore(/* Date object */)
.build())))
.build()
.update();Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
api: storageIssues related to the googleapis/java-storage API.Issues related to the googleapis/java-storage API.type: feature request‘Nice-to-have’ improvement, new feature or different behavior or design.‘Nice-to-have’ improvement, new feature or different behavior or design.