Get Plugin Template

get

/services/{version}/deployments/{deployment}/plugin/templates/{plugin}

Required Role: Security

Get the content of a specific plugin template in a given deployment

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

The plugin template was queried successfully

Body ()
Root Schema : Oracle GoldenGate Plugin Metadata
Type: object
Title: Oracle GoldenGate Plugin Metadata
Show Source
Nested Schema : metadata
Type: array
Minimum Number of Items: 0
Maximum Number of Items: 255
Array of metadata key/value pairs
Show Source
Nested Schema : items
Type: object
Show Source
Example Response (application/json)
{
    "$schema":"api:standardResponse",
    "links":[
        {
            "href":"http://127.0.0.1:9011/services/v2/deployments/PluginTests/plugin/templates/libEncryption-OCIVault",
            "mediaType":"application/json",
            "rel":"canonical"
        },
        {
            "href":"http://127.0.0.1:9011/services/v2/deployments/PluginTests/plugin/templates/libEncryption-OCIVault",
            "mediaType":"application/json",
            "rel":"self"
        },
        {
            "href":"http://127.0.0.1:9011/services/v2/metadata-catalog/templatesPlugin",
            "mediaType":"application/schema+json",
            "rel":"describedby"
        }
    ],
    "messages":[
    ],
    "response":{
        "$schema":"ogg:pluginMetadata",
        "metadata":[
            {
                "name":"OCI_VAULTKEY_OCID",
                "value":"OCI Vault Key OCID"
            },
            {
                "name":"OCI_CRYPTO_ENDPOINT",
                "value":"Cryptographic endpoint to use"
            },
            {
                "name":"OCI_AUTH",
                "value":"OCI authentication method"
            }
        ]
    }
}
Back to Top