Oracle Database · Schema

CreateDataGuardConfigRequest

CloudDatabaseEnterpriseOracleREST APISQL

Properties

Name Type Description
configuration_name string
protection_mode string
View JSON Schema on GitHub

JSON Schema

oracle-database-createdataguardconfigrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateDataGuardConfigRequest",
  "title": "CreateDataGuardConfigRequest",
  "type": "object",
  "required": [
    "configuration_name"
  ],
  "properties": {
    "configuration_name": {
      "type": "string"
    },
    "protection_mode": {
      "type": "string",
      "enum": [
        "MAXIMUM_AVAILABILITY",
        "MAXIMUM_PERFORMANCE",
        "MAXIMUM_PROTECTION"
      ]
    }
  }
}