@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
11 lines • 663 B
TypeScript
import { LifecycleRuleTransitionStorageClassEnum } from './storage/LifecycleRuleTransitionStorageClassEnum';
/** Specifies when an object transitions to a specified storage class. */
export interface StorageLifecycleRuleTransition {
/** Indicates when objects are transitioned to the specified storage class */
date?: string;
/** Indicates the number of days after creation when objects are transitioned to the specified storage class */
days?: number;
/** The storage class to which you want the object to transition. */
storageClass: LifecycleRuleTransitionStorageClassEnum;
}
//# sourceMappingURL=StorageLifecycleRuleTransition.d.ts.map