Get Authorization Profile

get

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

Required Role: Security

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

Request

Path Parameters
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
  • Allowed Values: [ "ogg:authorizationProfile" ]
  • Minimum Length: 1
    Maximum Length: 4096
    Description of the local credential store
  • Default Value: false
    Flag to show whether the profile is enabled for the deployment or not
  • Allowed Values: [ "localCredentialStore" ]
    OGG local credential store
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