BucketObjectStorageClass enum

Storage class for google_storage_bucket_object.storage_class.

Mirrors google_storage_bucket's BucketStorageClass 1:1 (the GCS API accepts the same values) but defined as a separate Dart type to avoid cross-resource coupling per established Wave 0/1 convention.

durableReducedAvailability is the legacy class (deprecated 2018); keep for completeness, GCP still accepts it for existing objects.

Inheritance
Available extensions

Values

standard → const BucketObjectStorageClass
const BucketObjectStorageClass('STANDARD')
nearline → const BucketObjectStorageClass
const BucketObjectStorageClass('NEARLINE')
coldline → const BucketObjectStorageClass
const BucketObjectStorageClass('COLDLINE')
archive → const BucketObjectStorageClass
const BucketObjectStorageClass('ARCHIVE')
multiRegional → const BucketObjectStorageClass
const BucketObjectStorageClass('MULTI_REGIONAL')
regional → const BucketObjectStorageClass
const BucketObjectStorageClass('REGIONAL')
durableReducedAvailability → const BucketObjectStorageClass
const BucketObjectStorageClass('DURABLE_REDUCED_AVAILABILITY')

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
terraformValue String
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<BucketObjectStorageClass>
A constant List of the values in this enum, in order of their declaration.