Combines multiple LifecycleRule conditions using conjunction.
Create a condition that require all the condition parameters to be met to take effect.
Example
// Affect objects that are in the STANDARD storage class, have at
// least 2 new versions, are at least 7 days old, and are alive.
LifecycleRuleCondition condition = LifecycleRule::ConditionConjunction(
LifecycleRule::NumNewerVersions(2),
LifecycleRule::MatchesStorageClassStandard(),
LifecycleRule::MaxAge(7), LifecycleRule::IsLive(true));
Parameters
Name
Description
condition
Condition &&...
typename...
Exceptions
Type
Description
std::invalid_argument
if the list of parameters is contradictory, for example, `IsLive(true)` and `IsLive(false)` are in the `condition` list.
Returns
Type
Description
LifecycleRuleCondition
a LifecycleRuleCondition that is satisfied when all the condition conditions are satisfied.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-04-02 UTC."],[[["This document outlines the `LifecycleRule` class, which is used to define rules for managing the lifecycle of objects in Google Cloud Storage."],["The class allows for setting conditions (`LifecycleRuleCondition`) and actions (`LifecycleRuleAction`) for object lifecycle management, such as automatic deletion or storage class changes."],["It supports a wide range of static methods to create various lifecycle rule conditions based on factors like object age, storage class, and whether an object is live or noncurrent."],["Static methods are also available to create actions such as `Delete` and `AbortIncompleteMultipartUpload`, as well as to set storage classes to `Standard`, `Nearline`, `Coldline`, `Archive` and other options."],["The document provides details on multiple versions of the library, from version 2.11.0 up to the latest release candidate 2.37.0-rc."]]],[]]