Global

Type Definitions


AuthSchema

Type:
  • object
Properties:
Name Type Description
username String The username used for authentication purposes.
password String The password used for authentication purposes.

ConnectionSchema

Type:
  • object
Properties:
Name Type Description
prefix String For connection-strings there is a prefix in the url. Example: jdbc or odbc.
hostname String The hostname for the connection.
port Number The port used by the service.
path String The path is a string that can reference a specific resource like an api endpoint or a database.
secure Boolean Whether or not the connection you are parsing is secured via TLS/SSL.

ConnectionSchema

Type:
  • object
Properties:
Name Type Description
url String For connection-strings there is a prefix in the url. Example: jdbc or odbc.
auth Object Contains the username and password for the connection..
Properties
Name Type Description
username String The connection username that was supplied.
password String The connection password that was supplied.

UnifiedConnectionSchema


UnifiedConnectionShema

Type:
  • object
Properties:
Name Type Description
connection ConnectionSchema
auth AuthSchema