View Source GoogleApi.Storage.V1.Model.BucketLifecycleRuleCondition (google_api_storage v0.45.0)
The condition(s) under which the action will be taken.
Attributes
-
age
(type:integer()
, default:nil
) - Age of an object (in days). This condition is satisfied when an object reaches the specified age. -
createdBefore
(type:Date.t
, default:nil
) - A date in RFC 3339 format with only the date part (for instance, "2013-01-15"). This condition is satisfied when an object is created before midnight of the specified date in UTC. -
customTimeBefore
(type:Date.t
, default:nil
) - A date in RFC 3339 format with only the date part (for instance, "2013-01-15"). This condition is satisfied when the custom time on an object is before this date in UTC. -
daysSinceCustomTime
(type:integer()
, default:nil
) - Number of days elapsed since the user-specified timestamp set on an object. The condition is satisfied if the days elapsed is at least this number. If no custom timestamp is specified on an object, the condition does not apply. -
daysSinceNoncurrentTime
(type:integer()
, default:nil
) - Number of days elapsed since the noncurrent timestamp of an object. The condition is satisfied if the days elapsed is at least this number. This condition is relevant only for versioned objects. The value of the field must be a nonnegative integer. If it's zero, the object version will become eligible for Lifecycle action as soon as it becomes noncurrent. -
isLive
(type:boolean()
, default:nil
) - Relevant only for versioned objects. If the value is true, this condition matches live objects; if the value is false, it matches archived objects. -
matchesPattern
(type:String.t
, default:nil
) - A regular expression that satisfies the RE2 syntax. This condition is satisfied when the name of the object matches the RE2 pattern. Note: This feature is currently in the "Early Access" launch stage and is only available to a whitelisted set of users; that means that this feature may be changed in backward-incompatible ways and that it is not guaranteed to be released. -
matchesPrefix
(type:list(String.t)
, default:nil
) - List of object name prefixes. This condition will be satisfied when at least one of the prefixes exactly matches the beginning of the object name. -
matchesStorageClass
(type:list(String.t)
, default:nil
) - Objects having any of the storage classes specified by this condition will be matched. Values include MULTI_REGIONAL, REGIONAL, NEARLINE, COLDLINE, ARCHIVE, STANDARD, and DURABLE_REDUCED_AVAILABILITY. -
matchesSuffix
(type:list(String.t)
, default:nil
) - List of object name suffixes. This condition will be satisfied when at least one of the suffixes exactly matches the end of the object name. -
noncurrentTimeBefore
(type:Date.t
, default:nil
) - A date in RFC 3339 format with only the date part (for instance, "2013-01-15"). This condition is satisfied when the noncurrent time on an object is before this date in UTC. This condition is relevant only for versioned objects. -
numNewerVersions
(type:integer()
, default:nil
) - Relevant only for versioned objects. If the value is N, this condition is satisfied when there are at least N versions (including the live version) newer than this version of the object.
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.Storage.V1.Model.BucketLifecycleRuleCondition{ age: integer() | nil, createdBefore: Date.t() | nil, customTimeBefore: Date.t() | nil, daysSinceCustomTime: integer() | nil, daysSinceNoncurrentTime: integer() | nil, isLive: boolean() | nil, matchesPattern: String.t() | nil, matchesPrefix: [String.t()] | nil, matchesStorageClass: [String.t()] | nil, matchesSuffix: [String.t()] | nil, noncurrentTimeBefore: Date.t() | nil, numNewerVersions: integer() | nil }
Functions
Unwrap a decoded JSON object into its complex fields.