ConnectorInfo

Create Connector Info for hyperscale compliance.

SecurityApiKeyAuth
Request
Request Body schema: application/json
required

The parameters to create a connector info.

connectorName
string

The name of the connector. This should be unique.

required
object

The source used for specify connection details of the source system.

required
object

The target used for specify connection details of the target system.

Responses
201

Created

400

Invalid Input provided.

500

Internal Service Unavailable.

post/connector-info
Request samples
application/json
{
  • "connectorName": "Oracle_Connector",
  • "source": {
    },
  • "target": {
    }
}
Response samples
application/json
{
  • "connectorName": "Oracle_Connector",
  • "source": {
    },
  • "target": {
    }
}

Returns a list of connector info.

SecurityApiKeyAuth
Responses
200

OK

500

Internal Service Unavailable.

get/connector-info
Response samples
application/json
{
  • "connectorName": "Oracle_Connector",
  • "source": {
    },
  • "target": {
    }
}

Returns a connector info by ID.

SecurityApiKeyAuth
Request
path Parameters
connectorInfoId
required
integer <int64> >= 1

Numeric ID of the connector info.

Responses
200

OK

404

Object Not Found.

500

Internal Service Unavailable.

get/connector-info/{connectorInfoId}
Response samples
application/json
{
  • "connectorName": "Oracle_Connector",
  • "source": {
    },
  • "target": {
    }
}

Update an existing Connector Info.

SecurityApiKeyAuth
Request
path Parameters
connectorInfoId
required
integer <int64> >= 1

Numeric ID of the connector info.

Request Body schema: application/json
required

The updated connector info information.

connectorName
string

The name of the connector. This should be unique.

required
object

The source used for specify connection details of the source system.

required
object

The target used for specify connection details of the target system.

Responses
200

OK

400

Invalid Input provided.

404

Object Not Found.

500

Internal Service Unavailable.

put/connector-info/{connectorInfoId}
Request samples
application/json
{
  • "connectorName": "Oracle_Connector",
  • "source": {
    },
  • "target": {
    }
}
Response samples
application/json
{
  • "connectorName": "Oracle_Connector",
  • "source": {
    },
  • "target": {
    }
}

Delete an existing connector info.

SecurityApiKeyAuth
Request
path Parameters
connectorInfoId
required
integer <int64> >= 1

Numeric ID of the connector info.

Responses
200

OK

404

Object Not Found.

500

Internal Service Unavailable.

delete/connector-info/{connectorInfoId}