Couchbase · Schema

CapellaBucketUpdateRequest

Request to update a Capella bucket

AnalyticsApp ServicesBackupCapellaCloudDatabaseDBaaSEventingFull-Text SearchGatewayJSONMobileNoSQLReplicationSQL++SyncVector SearchXDCR

Properties

Name Type Description
memoryAllocationInMb integer Memory allocation in megabytes
durabilityLevel string
replicas integer
flush boolean
timeToLiveInSeconds integer
View JSON Schema on GitHub

JSON Schema

couchbase-capellabucketupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CapellaBucketUpdateRequest",
  "title": "CapellaBucketUpdateRequest",
  "type": "object",
  "description": "Request to update a Capella bucket",
  "properties": {
    "memoryAllocationInMb": {
      "type": "integer",
      "description": "Memory allocation in megabytes"
    },
    "durabilityLevel": {
      "type": "string",
      "enum": [
        "none",
        "majority",
        "majorityAndPersistActive",
        "persistToMajority"
      ]
    },
    "replicas": {
      "type": "integer",
      "minimum": 1,
      "maximum": 3
    },
    "flush": {
      "type": "boolean"
    },
    "timeToLiveInSeconds": {
      "type": "integer"
    }
  }
}