Packages

c

com.couchbase.client.scala.manager.bucket

CreateBucketSettings

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, historyRetentionCollectionDefault: Option[Boolean] = None, historyRetentionBytes: Option[Long] = None, historyRetentionDuration: Option[Duration] = None) extends Product with Serializable

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

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, historyRetentionCollectionDefault: Option[Boolean] = None, historyRetentionBytes: Option[Long] = None, historyRetentionDuration: Option[Duration] = 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 historyRetentionBytes(value: Long): CreateBucketSettings
  7. def historyRetentionCollectionDefault(value: Boolean): CreateBucketSettings
  8. def historyRetentionDuration(value: Duration): CreateBucketSettings
  9. def maxTTL(value: Int): CreateBucketSettings
  10. def minimumDurabilityLevel(value: Durability): CreateBucketSettings
  11. def numReplicas(value: Int): CreateBucketSettings
  12. def productElementNames: Iterator[String]
    Definition Classes
    Product
  13. def ramQuotaMB(value: Int): CreateBucketSettings
  14. def replicaIndexes(value: Boolean): CreateBucketSettings
  15. 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.