List Connections

get

/services/{version}/connections

Retrieve the list of known database connections. For each item in the credential store, a database connection of the form 'domain.alias' is created.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Collection of database connections retrieved.

Body ()
Root Schema : Oracle GoldenGate Collection
Type: object
Title: Oracle GoldenGate Collection
Show Source
Nested Schema : items
Type: array
Minimum Number of Items: 0
Maximum Number of Items: 32767
Show Source
Nested Schema : items
Type: object
Additional Properties Allowed: true
Show Source
  • Minimum Length: 1
    Maximum Length: 255
    Default Value: ogg:collectionItem
    Name of schema for collection item, defaults to this schema
  • links
  • Minimum Length: 1
    Maximum Length: 255
    Item name
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "links":[
        {
            "href":"http://localhost:11001/services/v2/connections",
            "mediaType":"application/json",
            "rel":"canonical"
        },
        {
            "href":"http://localhost:11001/services/v2/connections",
            "mediaType":"application/json",
            "rel":"self"
        },
        {
            "href":"http://localhost:11001/services/v2/metadata-catalog/connections",
            "mediaType":"application/schema+json",
            "rel":"describedby"
        }
    ],
    "messages":[
    ],
    "response":{
        "$schema":"ogg:collection",
        "items":[
            {
                "$schema":"ogg:collectionItem",
                "links":[
                    {
                        "href":"http://localhost:11001/services/v2/connections",
                        "mediaType":"application/json",
                        "rel":"parent"
                    },
                    {
                        "href":"http://localhost:11001/services/v2/connections/OracleGoldenGate.oggadmin",
                        "mediaType":"application/json",
                        "rel":"canonical"
                    }
                ],
                "name":"OracleGoldenGate.oggadmin"
            }
        ]
    }
}
Back to Top