Packages

case class CreateBucketSettings(name: String, ramQuotaMB: Int, flushEnabled: Option[Boolean] = None, numReplicas: Option[Int] = None, replicaIndexes: Option[Boolean] = None, bucketType: Option[BucketType] = None, ejectionMethod: Option[EjectionMethod] = None, maxTTL: Option[Int] = None, compressionMode: Option[CompressionMode] = None, conflictResolutionType: Option[ConflictResolutionType] = None, minimumDurabilityLevel: Option[Durability] = None, storageBackend: Option[StorageBackend] = None) extends Product with Serializable

Annotations
@Volatile()
Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CreateBucketSettings
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new CreateBucketSettings(name: String, ramQuotaMB: Int, flushEnabled: Option[Boolean] = None, numReplicas: Option[Int] = None, replicaIndexes: Option[Boolean] = None, bucketType: Option[BucketType] = None, ejectionMethod: Option[EjectionMethod] = None, maxTTL: Option[Int] = None, compressionMode: Option[CompressionMode] = None, conflictResolutionType: Option[ConflictResolutionType] = None, minimumDurabilityLevel: Option[Durability] = None, storageBackend: Option[StorageBackend] = None)

Value Members

  1. def bucketType(value: BucketType): CreateBucketSettings
  2. def compressionMode(value: CompressionMode): CreateBucketSettings
  3. def conflictResolutionType(value: ConflictResolutionType): CreateBucketSettings
  4. def ejectionMethod(value: EjectionMethod): CreateBucketSettings
  5. def flushEnabled(value: Boolean): CreateBucketSettings
  6. def maxTTL(value: Int): CreateBucketSettings
  7. def minimumDurabilityLevel(value: Durability): CreateBucketSettings
  8. def numReplicas(value: Int): CreateBucketSettings
  9. def ramQuotaMB(value: Int): CreateBucketSettings
  10. def replicaIndexes(value: Boolean): CreateBucketSettings
  11. def storageBackend(value: StorageBackend): CreateBucketSettings

    Specifies the storage backend to use for this bucket.

    Specifies the storage backend to use for this bucket.

    value

    the storage backend the new bucket will use.

    returns

    this, for chaining.