Oracle GoldenGate · Capability

Oracle GoldenGate Veridata REST API — Jobs

Oracle GoldenGate Veridata REST API — Jobs. 5 operations. Lead operation: Oracle Goldengate Retrieve All Jobs. Self-contained Naftiko capability covering one Oracle Goldengate business surface.

Run with Naftiko Oracle GoldengateJobs

What You Can Do

GET
Listjobs — Oracle Goldengate Retrieve All Jobs
/v1/services/configuration/jobs
POST
Createjob — Oracle Goldengate Create a Job
/v1/services/configuration/jobs
GET
Getjob — Oracle Goldengate Retrieve a Job
/v1/services/configuration/jobs/{id}
PUT
Replacejob — Oracle Goldengate Replace a Job
/v1/services/configuration/jobs/{id}
DELETE
Deletejob — Oracle Goldengate Delete a Job
/v1/services/configuration/jobs/{id}

MCP Tools

oracle-goldengate-retrieve-all-jobs

Oracle Goldengate Retrieve All Jobs

read-only idempotent
oracle-goldengate-create-job

Oracle Goldengate Create a Job

oracle-goldengate-retrieve-job

Oracle Goldengate Retrieve a Job

read-only idempotent
oracle-goldengate-replace-job

Oracle Goldengate Replace a Job

idempotent
oracle-goldengate-delete-job

Oracle Goldengate Delete a Job

idempotent

Capability Spec

veridata-rest-jobs.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Oracle GoldenGate Veridata REST API — Jobs
  description: 'Oracle GoldenGate Veridata REST API — Jobs. 5 operations. Lead operation: Oracle Goldengate Retrieve All Jobs.
    Self-contained Naftiko capability covering one Oracle Goldengate business surface.'
  tags:
  - Oracle Goldengate
  - Jobs
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ORACLE_GOLDENGATE_API_KEY: ORACLE_GOLDENGATE_API_KEY
capability:
  consumes:
  - type: http
    namespace: veridata-rest-jobs
    baseUri: https://{veridata-host}:{port}/veridata/v1
    description: Oracle GoldenGate Veridata REST API — Jobs business capability. Self-contained, no shared references.
    resources:
    - name: services-configuration-jobs
      path: /services/configuration/jobs
      operations:
      - name: listjobs
        method: GET
        description: Oracle Goldengate Retrieve All Jobs
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createjob
        method: POST
        description: Oracle Goldengate Create a Job
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: services-configuration-jobs-Id
      path: /services/configuration/jobs/{Id}
      operations:
      - name: getjob
        method: GET
        description: Oracle Goldengate Retrieve a Job
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: replacejob
        method: PUT
        description: Oracle Goldengate Replace a Job
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletejob
        method: DELETE
        description: Oracle Goldengate Delete a Job
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: basic
      username: '{{env.ORACLE_GOLDENGATE_USER}}'
      password: '{{env.ORACLE_GOLDENGATE_PASS}}'
  exposes:
  - type: rest
    namespace: veridata-rest-jobs-rest
    port: 8080
    description: REST adapter for Oracle GoldenGate Veridata REST API — Jobs. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/services/configuration/jobs
      name: services-configuration-jobs
      description: REST surface for services-configuration-jobs.
      operations:
      - method: GET
        name: listjobs
        description: Oracle Goldengate Retrieve All Jobs
        call: veridata-rest-jobs.listjobs
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createjob
        description: Oracle Goldengate Create a Job
        call: veridata-rest-jobs.createjob
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/services/configuration/jobs/{id}
      name: services-configuration-jobs-id
      description: REST surface for services-configuration-jobs-Id.
      operations:
      - method: GET
        name: getjob
        description: Oracle Goldengate Retrieve a Job
        call: veridata-rest-jobs.getjob
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: replacejob
        description: Oracle Goldengate Replace a Job
        call: veridata-rest-jobs.replacejob
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletejob
        description: Oracle Goldengate Delete a Job
        call: veridata-rest-jobs.deletejob
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: veridata-rest-jobs-mcp
    port: 9090
    transport: http
    description: MCP adapter for Oracle GoldenGate Veridata REST API — Jobs. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: oracle-goldengate-retrieve-all-jobs
      description: Oracle Goldengate Retrieve All Jobs
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: veridata-rest-jobs.listjobs
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-goldengate-create-job
      description: Oracle Goldengate Create a Job
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: veridata-rest-jobs.createjob
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-goldengate-retrieve-job
      description: Oracle Goldengate Retrieve a Job
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: veridata-rest-jobs.getjob
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-goldengate-replace-job
      description: Oracle Goldengate Replace a Job
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: veridata-rest-jobs.replacejob
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-goldengate-delete-job
      description: Oracle Goldengate Delete a Job
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: veridata-rest-jobs.deletejob
      outputParameters:
      - type: object
        mapping: $.