Class BucketInfo.AgeDeleteRule (2.36.1)

public static class BucketInfo.AgeDeleteRule extends BucketInfo.DeleteRule

Deprecated. Use a LifecycleRule with a DeleteLifecycleAction and use LifecycleCondition.Builder.setAge instead.

For example, new DeleteLifecycleAction(1) is equivalent to new LifecycleRule( LifecycleAction.newDeleteAction(), LifecycleCondition.newBuilder().setAge(1).build()))

Delete rule class that sets a Time To Live for blobs in the bucket. See Also: Object Lifecycle Management

Inheritance

java.lang.Object > BucketInfo.DeleteRule > BucketInfo.AgeDeleteRule

Constructors

AgeDeleteRule(int daysToLive) (deprecated)

public AgeDeleteRule(int daysToLive)

Creates an AgeDeleteRule object.

Parameter
NameDescription
daysToLiveint

blobs' Time To Live expressed in days. The time when the age condition is considered to be satisfied is computed by adding daysToLive days to the midnight following blob's creation time in UTC.

Methods

getDaysToLive() (deprecated)

public int getDaysToLive()
Returns
TypeDescription
int