Retrieve Encryption Profile

get

/services/{version}/encryption/profiles/{profile}

Retrieve details for an Encryption Profile.

Request

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

    Name of the Encryption Profile.

  • Oracle GoldenGate Service API version.

    Allowed Values: [ "v2" ]
Back to Top

Response

Supported Media Types

200 Response

A description of the profile is retrieved.

Body ()
Root Schema : Oracle GoldenGate Encryption Profile definition
Type: object
Title: Oracle GoldenGate Encryption Profile definition
This schema describes the configuration and properties of data encryption in OGG
Match One
Show Source
Nested Schema : Oracle GoldenGate Encryption Profile definition-x-oneOf[0]
Type: object
Show Source
Nested Schema : Oracle GoldenGate Encryption Profile definition-x-oneOf[1]
Type: object
Show Source
Nested Schema : Oracle GoldenGate Encryption Profile definition-x-oneOf[2]
Type: object
Show Source
Nested Schema : masterkey
Type: object
Specify the masterkey options.
Show Source
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "links":[
        {
            "href":"http://localhost:11001/services/v2/encryption/profiles/Default",
            "mediaType":"application/json",
            "rel":"canonical"
        },
        {
            "href":"http://localhost:11001/services/v2/encryption/profiles/Default",
            "mediaType":"application/json",
            "rel":"self"
        },
        {
            "href":"http://localhost:11001/services/v2/metadata-catalog/profile",
            "mediaType":"application/schema+json",
            "rel":"describedby"
        }
    ],
    "messages":[
    ],
    "response":{
        "$schema":"ogg:encryptionProfile",
        "isDefault":true,
        "keyNameAttribute":"x-OGG-KeyName",
        "keyVersionAttribute":"x-OGG-KeyVersion",
        "masterkey":{
            "name":"OGGMK2",
            "ttl":86400,
            "version":"LATEST"
        },
        "okvPath":"/tmp/okvSample",
        "okvVersion":"18.1",
        "type":"okv"
    }
}
Back to Top