Retrieve Deployment List

get

/services/{version}/installation/deployments

Retrieve a list of all Oracle GoldenGate deployments for the installation.

Request

Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

200 Response

The deployment list was retrieved successfully.

Body ()
Root Schema : Oracle GoldenGate Deployments for the Installation
Type: object
Title: Oracle GoldenGate Deployments for the Installation
List of all Oracle GoldenGate deployments for the installation
Show Source
Nested Schema : deployments
Type: array
Minimum Number of Items: 1
Maximum Number of Items: 65535
Array of deployments for the installation
Show Source
Nested Schema : items
Type: object
Deployment characteristics
Show Source
  • Minimum Length: 36
    Maximum Length: 36
    Pattern: ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[89ABab][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$
    The unique identifier for the deployment
  • Minimum Length: 1
    Maximum Length: 32
    Pattern: ^[A-Za-z][A-Za-z0-9-_.]*$
    The name for the deployment
  • Indicates the deployment is managed by the Service Manager
  • Default Value: stopped
    Allowed Values: [ "running", "stopped", "restart", "killed", "abended" ]
    Indicates the status of the deployment
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "links":[
        {
            "href":"http://localhost:11001/services/v2/installation/deployments",
            "mediaType":"application/json",
            "rel":"canonical"
        },
        {
            "href":"http://localhost:11001/services/v2/installation/deployments",
            "mediaType":"application/json",
            "rel":"self"
        },
        {
            "href":"http://localhost:11001/services/v2/metadata-catalog/deployments",
            "mediaType":"application/schema+json",
            "rel":"describedby"
        }
    ],
    "messages":[
    ],
    "response":{
        "$schema":"ogg:installationDeployments",
        "deployments":[
            {
                "deploymentId":"0e9b899b-6f49-4165-ad3b-403a0dc1677e",
                "deploymentName":"Certificates",
                "enabled":true,
                "status":"stopped"
            },
            {
                "deploymentId":"808bf044-02df-4234-aaf3-3c1b649b8bc6",
                "deploymentName":"Local",
                "enabled":true,
                "status":"running"
            },
            {
                "deploymentId":"a21f8f5a-3ca5-4e04-9772-a98e675e84b3",
                "deploymentName":"ServiceManager",
                "enabled":true,
                "status":"running"
            }
        ],
        "xagEnabled":false
    }
}
Back to Top