GCPolicyMaxAge

data class GCPolicyMaxAge(val days: Int? = null, val duration: String? = null)

Constructors

Link copied to clipboard
constructor(days: Int? = null, duration: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val days: Int? = null

Number of days before applying GC policy.

Link copied to clipboard
val duration: String? = null

Duration before applying GC policy (ex. "8h"). This is required when days isn't set

-----