Get Execution Details

Use this API to get details of Exadata Scale Up or Scale Down execution.

API

/exadata/v1/customers/{customerId}/instances/{instanceId}/executions/{executionId}

Scope and AuthZ

  • You must have mcs:oci:api:User scope to access this API.
  • You can get Exadata Scale Up or Scale Down execution details only for your customer.
  • You can use Exadata Scale Up or Scale Down API only if customer has opted-in for Exadata Scale Up or Scale Down functionality.

Headers

  • Authorization: Bearer <Token>

    Where <Token> is the OAUTH token returned by the Authorization Server (JWT Token).

  • Identifier: <JWKS Identifier>

    Where <JWKS Identifier> is the GUID generated when JWKS URI is set by customer admin in self-service platform.

Base Path

/exadata/v1/

Functionality

  • This API can Get Exadata execution details.
  • id is the execution ID.
  • createdBy is email ID of person who created the execution.
  • customerId is customer ID of customer.
  • instance is instance against which execution was created.
  • ticketingDetails.rfcNumber is RFC number (Ticket ID).

Verb

GET

Parameters

Name Type Description Mandatory
customerId Path parameter Customer ID Yes
instanceId Path parameter Instance ID of instance against which execution is created Yes
executionId Path parameter Execution ID Yes

Sample response

{
    "createdBy": "<email ID>",
    "createdOn": "2021-10-11T09:52:52Z",
    "id": 779,
    "ticketingDetails": {
        "rfcNumber": "3-BLEH3J5"
    },
    "customerId": "4165",
    "dbSystem": {
        "databases": [
            {
                "name": "DWHPRD",
                "ocpuCountNew": 15,
                "ocpuCountOld": 0
            }
        ],
        "name": "avvaexa01pr",
        "nodes": [
            {
                "name": "avvaexa01pr-bqaab4"
            },
            {
                "name": " avvaexa01pr-bqaab1"
            },
            {
                "name": "avvaexa01pr-bqaab3"
            },
            {
                "name": "avvaexa01pr-bqaab2"
            }
        ],
        "ocpuCountNew": 14,
        "ocpuCountOld": 84,
        "shape": "Exadata.Half2.184",
        "tenancy": {
            "name": "avva01",
            "region": "uk-london-1"
        }
    },
    "instance": "OMCEBSOR3"
}