List Configuration Data Types

get

/services/{version}/config/types

Retrieve the collection of configuration variable data types.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Collection of configuration variable data types retrieved successfully.

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
Nested Schema : status
Item status
Match Any
Show Source
  • Allowed Values: [ "starting", "running", "stopped", "killed", "abended" ]
  • Default Value: stopped
    Allowed Values: [ "paused", "running", "stopping", "stopped", "killed", "uninitialized" ]
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "links":[
        {
            "href":"http://localhost:11001/services/v2/config/types",
            "mediaType":"application/json",
            "rel":"canonical"
        },
        {
            "href":"http://localhost:11001/services/v2/config/types",
            "mediaType":"application/json",
            "rel":"self"
        },
        {
            "href":"http://localhost:11001/services/v2/metadata-catalog/types",
            "mediaType":"application/schema+json",
            "rel":"describedby"
        }
    ],
    "messages":[
    ],
    "response":{
        "$schema":"ogg:collection",
        "items":[
            {
                "$schema":"ogg:collectionItem",
                "links":[
                    {
                        "href":"http://localhost:11001/services/v2/config/types",
                        "mediaType":"application/json",
                        "rel":"parent"
                    },
                    {
                        "href":"http://localhost:11001/services/v2/config/types/ogg:configDataDescription",
                        "mediaType":"application/json",
                        "rel":"canonical"
                    }
                ],
                "name":"ogg:configDataDescription"
            },
            {
                "$schema":"ogg:collectionItem",
                "links":[
                    {
                        "href":"http://localhost:11001/services/v2/config/types",
                        "mediaType":"application/json",
                        "rel":"parent"
                    },
                    {
                        "href":"http://localhost:11001/services/v2/config/types/ogg:managedProcessSettings",
                        "mediaType":"application/json",
                        "rel":"canonical"
                    }
                ],
                "name":"ogg:managedProcessSettings"
            },
            {
                "$schema":"ogg:collectionItem",
                "links":[
                    {
                        "href":"http://localhost:11001/services/v2/config/types",
                        "mediaType":"application/json",
                        "rel":"parent"
                    },
                    {
                        "href":"http://localhost:11001/services/v2/config/types/ogg:encryptionProfile",
                        "mediaType":"application/json",
                        "rel":"canonical"
                    }
                ],
                "name":"ogg:encryptionProfile"
            },
            {
                "$schema":"ogg:collectionItem",
                "links":[
                    {
                        "href":"http://localhost:11001/services/v2/config/types",
                        "mediaType":"application/json",
                        "rel":"parent"
                    },
                    {
                        "href":"http://localhost:11001/services/v2/config/types/ogg:authorizationProfile",
                        "mediaType":"application/json",
                        "rel":"canonical"
                    }
                ],
                "name":"ogg:authorizationProfile"
            },
            {
                "$schema":"ogg:collectionItem",
                "links":[
                    {
                        "href":"http://localhost:11001/services/v2/config/types",
                        "mediaType":"application/json",
                        "rel":"parent"
                    },
                    {
                        "href":"http://localhost:11001/services/v2/config/types/custom:config",
                        "mediaType":"application/json",
                        "rel":"canonical"
                    }
                ],
                "name":"custom:config"
            }
        ]
    }
}
Back to Top