Couchbase · Schema

AllowedCIDR

Allowed IP/CIDR for cluster access

AnalyticsApp ServicesBackupCapellaCloudDatabaseDBaaSEventingFull-Text SearchGatewayJSONMobileNoSQLReplicationSQL++SyncVector SearchXDCR

Properties

Name Type Description
id string Allowed CIDR UUID
cidr string IP address or CIDR range
comment string Optional comment
expiresAt string Expiration date for temporary access
status string Status of the allowed CIDR
audit object
View JSON Schema on GitHub

JSON Schema

couchbase-allowedcidr-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AllowedCIDR",
  "title": "AllowedCIDR",
  "type": "object",
  "description": "Allowed IP/CIDR for cluster access",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "Allowed CIDR UUID"
    },
    "cidr": {
      "type": "string",
      "description": "IP address or CIDR range"
    },
    "comment": {
      "type": "string",
      "description": "Optional comment"
    },
    "expiresAt": {
      "type": "string",
      "format": "date-time",
      "description": "Expiration date for temporary access"
    },
    "status": {
      "type": "string",
      "description": "Status of the allowed CIDR"
    },
    "audit": {
      "$ref": "#/components/schemas/AuditInfo"
    }
  }
}