Couchbase · Schema

AllowedCIDRCreateRequest

Request to add an allowed CIDR

AnalyticsApp ServicesBackupCapellaCloudDatabaseDBaaSEventingFull-Text SearchGatewayJSONMobileNoSQLReplicationSQL++SyncVector SearchXDCR

Properties

Name Type Description
cidr string IP address or CIDR range to allow
comment string Optional comment describing the entry
expiresAt string Optional expiration for temporary access
View JSON Schema on GitHub

JSON Schema

couchbase-allowedcidrcreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AllowedCIDRCreateRequest",
  "title": "AllowedCIDRCreateRequest",
  "type": "object",
  "description": "Request to add an allowed CIDR",
  "required": [
    "cidr"
  ],
  "properties": {
    "cidr": {
      "type": "string",
      "description": "IP address or CIDR range to allow"
    },
    "comment": {
      "type": "string",
      "description": "Optional comment describing the entry"
    },
    "expiresAt": {
      "type": "string",
      "format": "date-time",
      "description": "Optional expiration for temporary access"
    }
  }
}