Test Authorization Profile

get

/services/{version}/deployments/{deployment}/authorization/profiles/{profile}/valid

Test the connection to the Authorization Tenant

Request

Path Parameters
  • Minimum Length: 1
    Maximum Length: 32
    Pattern: ^[A-Za-z][A-Za-z0-9-_.]*$

    Name for the Oracle GoldenGate deployment.

  • Minimum Length: 1
    Maximum Length: 32
    Pattern: ^[A-Za-z][A-Za-z0-9-_.]*$

    Name of Authorization profile.

  • Oracle GoldenGate Service API version.

    Allowed Values: [ "v2" ]
Back to Top

Response

Supported Media Types

200 Response

The connection test passed

Body ()
Root Schema : Oracle GoldenGate Authorization Profile Test Response definition
Type: object
Title: Oracle GoldenGate Authorization Profile Test Response definition
Describes the response to test an Authorization Profile
Show Source
Nested Schema : testReport
Type: object
Shows each specific test and whether they passed or not.
Show Source
Nested Schema : incorrectProfileInformation
Type: array
Minimum Number of Items: 0
Maximum Number of Items: 10
Lists out all the information that failed internal test
Show Source
  • items
    A value has a difference between its expected and obtained value. If obtained is empty, the value did not exist but was expected
Nested Schema : items
Type: object
A value has a difference between its expected and obtained value. If obtained is empty, the value did not exist but was expected
Show Source
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "links":[
        {
            "rel":"canonical",
            "href":"https://slc11xmb.us.oracle.com:9000/services/v2/deployments/sourceDeployment/authorization/profiles/sourceProfile/valid",
            "mediaType":"application/json"
        },
        {
            "rel":"self",
            "href":"https://slc11xmb.us.oracle.com:9000/services/v2/deployments/sourceDeployment/authorization/profiles/sourceProfile/valid",
            "mediaType":"application/json"
        },
        {
            "rel":"describedby",
            "href":"https://slc11xmb.us.oracle.com:9000/services/v2/metadata-catalog/valid",
            "mediaType":"application/schema+json"
        }
    ],
    "messages":[
    ],
    "response":{
        "$schema":"ogg:authorizationProfileTestResponse",
        "testPassed":true,
        "testReport":{
            "tokenGetPossible":true,
            "tenantUriValidOpenIdDiscoveryDocs":true,
            "tenantUriReachable":true
        }
    }
}
Back to Top