Couchbase · Schema

BackupRepositoryCreateRequest

Request to create a backup repository

AnalyticsApp ServicesBackupCapellaCloudDatabaseDBaaSEventingFull-Text SearchGatewayJSONMobileNoSQLReplicationSQL++SyncVector SearchXDCR

Properties

Name Type Description
plan string Name of the backup plan to use
archive string Path to the backup archive location
bucket_name string Cloud storage bucket name (for cloud backups)
View JSON Schema on GitHub

JSON Schema

couchbase-backuprepositorycreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BackupRepositoryCreateRequest",
  "title": "BackupRepositoryCreateRequest",
  "type": "object",
  "description": "Request to create a backup repository",
  "required": [
    "plan",
    "archive"
  ],
  "properties": {
    "plan": {
      "type": "string",
      "description": "Name of the backup plan to use"
    },
    "archive": {
      "type": "string",
      "description": "Path to the backup archive location"
    },
    "bucket_name": {
      "type": "string",
      "description": "Cloud storage bucket name (for cloud backups)"
    }
  }
}