Get Authorization Profile

get

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

Get the content of a specific Authorization profile in a given deployment

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 Authorization profile was queried successfully

Body ()
Root Schema : Oracle GoldenGate Authorization Profile definition
Type: object
Title: Oracle GoldenGate Authorization Profile definition
Describes the which type of authorization OGG should use.
Match One
Show Source
Nested Schema : Oracle GoldenGate Authorization Profile definition-x-oneOf[0]
Type: object
Profile for using the deployment's credential store
Show Source
Nested Schema : Oracle GoldenGate Authorization Profile definition-x-oneOf[1]
Type: object
Profile for using an IDCS as an Identity Provider
Show Source
Nested Schema : groupToRoles
Type: object
User mapping for IDCS groups to OGG roles
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",
            "mediaType":"application/json"
        },
        {
            "rel":"self",
            "href":"https://slc11xmb.us.oracle.com:9000/services/v2/deployments/sourceDeployment/authorization/profiles/sourceProfile",
            "mediaType":"application/json"
        },
        {
            "rel":"describedby",
            "href":"https://slc11xmb.us.oracle.com:9000/services/v2/metadata-catalog/profile",
            "mediaType":"application/schema+json"
        }
    ],
    "messages":[
    ],
    "response":{
        "type":"idcs",
        "clientID":"4a33ef81bf1642689ac83742a27b8a94",
        "groupToRoles":{
            "securityGroup":"Demo-source-security"
        },
        "tenantDiscoveryURI":"https://idcs-17eca02d31a645e78710ad52ac01dd40.identity.c9dev2.oc9qadev.com/.well-known/openid-configuration",
        "description":"",
        "enabled":true,
        "clientSecret":"*****",
        "$schema":"ogg:authorizationProfile"
    }
}
Back to Top