Manage Procedural Supplemental Logging
post
/services/{version}/connections/{connection}/trandata/procedure
Required Role: Administrator
Manage Supplemental Logging for Database Procedures
Request
Supported Media Types
- application/json
Path Parameters
-
connection(required): string
Minimum Length:
1
Maximum Length:61
Pattern:^[a-zA-Z][a-zA-Z0-9_#$]{1,29}([.][a-zA-Z][a-zA-Z0-9_#$]{1,29})?$
Connection name. For each alias in the credential store, a connection with the name 'domain.alias' exists.
-
version(required): string
Oracle GoldenGate Service API version.
Allowed Values:[ "v2" ]
Root Schema : Manage Supplemental Logging for Database Procedures
Type:
object
Title:
Show Source
Manage Supplemental Logging for Database Procedures
-
$schema:
Allowed Values:
[ "ogg:trandataProcedure" ]
-
operation(required):
Allowed Values:
[ "add", "delete", "info" ]
Example Request (application/json)
{
"operation":"info"
}
Response
Supported Media Types
- application/json
200 Response
Supplemental logging command completed successfully.
Root Schema : Manage Supplemental Logging for Database Procedure
Type:
object
Title:
Show Source
Manage Supplemental Logging for Database Procedure
-
$schema:
Allowed Values:
[ "ogg:trandataProcedureResponse" ]
-
enabled(required):
boolean
True if procedure supplemental logging is enabled on the connected database
-
type(required):
Allowed Values:
[ "info" ]
Example Response (application/json)
{
"$schema":"api:standardResponse",
"links":[
{
"href":"http://localhost:9012/services/v2/connections/OracleGoldenGate.ggnorth/trandata/procedure",
"mediaType":"application/json",
"rel":"canonical"
},
{
"href":"http://localhost:9012/services/v2/connections/OracleGoldenGate.ggnorth/trandata/procedure",
"mediaType":"application/json",
"rel":"self"
}
],
"messages":[
],
"response":{
"$schema":"ogg:trandataProcedureResponse",
"enabled":false,
"type":"info"
}
}