Oracle GoldenGate · Schema

CreateCredentialAliasRequest

CDCData IntegrationData SynchronizationDatabaseEnterpriseReal-Time Replication

Properties

Name Type Description
userid string Database user ID including connect string
password string Password for the user
View JSON Schema on GitHub

JSON Schema

oracle-goldengate-createcredentialaliasrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateCredentialAliasRequest",
  "title": "CreateCredentialAliasRequest",
  "type": "object",
  "required": [
    "userid",
    "password"
  ],
  "properties": {
    "userid": {
      "type": "string",
      "description": "Database user ID including connect string",
      "example": "500123"
    },
    "password": {
      "type": "string",
      "description": "Password for the user",
      "format": "password",
      "example": "example_value"
    }
  }
}