Oracle GoldenGate · Schema

UpdateConnectionRequest

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
name string
description string
host string
port integer
username string
password string
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-updateconnectionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateConnectionRequest",
  "title": "UpdateConnectionRequest",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "description": {
      "type": "string",
      "example": "A sample description."
    },
    "host": {
      "type": "string",
      "example": "example_value"
    },
    "port": {
      "type": "integer",
      "example": 10
    },
    "username": {
      "type": "string",
      "example": "example_value"
    },
    "password": {
      "type": "string",
      "format": "password",
      "example": "example_value"
    }
  }
}