Googly.CloudStorage.Model.BucketAutoclass (googly_cloud_storage v0.1.0)

Copy Markdown View Source

The bucket's Autoclass configuration.

Attributes

  • enabled (type: boolean()) - Whether or not Autoclass is enabled on this bucket
  • terminal_storage_class (type: String.t()) - The storage class that objects in the bucket eventually transition to if they are not read for a certain length of time. Valid values are NEARLINE and ARCHIVE.
  • terminal_storage_class_update_time (type: DateTime.t()) - A date and time in RFC 3339 format representing the time of the most recent update to "terminalStorageClass".
  • toggle_time (type: DateTime.t()) - A date and time in RFC 3339 format representing the instant at which "enabled" was last toggled.

Summary

Types

t()

@type t() :: %Googly.CloudStorage.Model.BucketAutoclass{
  enabled: boolean() | nil,
  terminal_storage_class: String.t() | nil,
  terminal_storage_class_update_time: DateTime.t() | nil,
  toggle_time: DateTime.t() | nil
}