Oracle GoldenGate · Capability

Oracle GoldenGate for Big Data REST API — Credentials

Oracle GoldenGate for Big Data REST API — Credentials. 5 operations. Lead operation: Oracle Goldengate List Credential Domains. Self-contained Naftiko capability covering one Oracle Goldengate business surface.

Run with Naftiko Oracle GoldengateCredentials

What You Can Do

GET
Listcredentialdomains — Oracle Goldengate List Credential Domains
/v1/services/v2/credentials
GET
Getcredentialalias — Oracle Goldengate Retrieve a Credential Alias
/v1/services/v2/credentials/{domain}/{alias}
POST
Createcredentialalias — Oracle Goldengate Create a Credential Alias
/v1/services/v2/credentials/{domain}/{alias}
PUT
Replacecredentialalias — Oracle Goldengate Replace a Credential Alias
/v1/services/v2/credentials/{domain}/{alias}
DELETE
Deletecredentialalias — Oracle Goldengate Delete a Credential Alias
/v1/services/v2/credentials/{domain}/{alias}

MCP Tools

oracle-goldengate-list-credential-domains

Oracle Goldengate List Credential Domains

read-only idempotent
oracle-goldengate-retrieve-credential-alias

Oracle Goldengate Retrieve a Credential Alias

read-only idempotent
oracle-goldengate-create-credential-alias

Oracle Goldengate Create a Credential Alias

oracle-goldengate-replace-credential-alias

Oracle Goldengate Replace a Credential Alias

idempotent
oracle-goldengate-delete-credential-alias

Oracle Goldengate Delete a Credential Alias

idempotent

Capability Spec

big-data-rest-credentials.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Oracle GoldenGate for Big Data REST API — Credentials
  description: 'Oracle GoldenGate for Big Data REST API — Credentials. 5 operations. Lead operation: Oracle Goldengate List
    Credential Domains. Self-contained Naftiko capability covering one Oracle Goldengate business surface.'
  tags:
  - Oracle Goldengate
  - Credentials
  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: big-data-rest-credentials
    baseUri: https://{goldengate-host}:{port}
    description: Oracle GoldenGate for Big Data REST API — Credentials business capability. Self-contained, no shared references.
    resources:
    - name: services-v2-credentials
      path: /services/v2/credentials
      operations:
      - name: listcredentialdomains
        method: GET
        description: Oracle Goldengate List Credential Domains
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: services-v2-credentials-domain-alias
      path: /services/v2/credentials/{domain}/{alias}
      operations:
      - name: getcredentialalias
        method: GET
        description: Oracle Goldengate Retrieve a Credential Alias
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createcredentialalias
        method: POST
        description: Oracle Goldengate Create a Credential Alias
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: replacecredentialalias
        method: PUT
        description: Oracle Goldengate Replace a Credential Alias
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletecredentialalias
        method: DELETE
        description: Oracle Goldengate Delete a Credential Alias
        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: big-data-rest-credentials-rest
    port: 8080
    description: REST adapter for Oracle GoldenGate for Big Data REST API — Credentials. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/services/v2/credentials
      name: services-v2-credentials
      description: REST surface for services-v2-credentials.
      operations:
      - method: GET
        name: listcredentialdomains
        description: Oracle Goldengate List Credential Domains
        call: big-data-rest-credentials.listcredentialdomains
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/services/v2/credentials/{domain}/{alias}
      name: services-v2-credentials-domain-alias
      description: REST surface for services-v2-credentials-domain-alias.
      operations:
      - method: GET
        name: getcredentialalias
        description: Oracle Goldengate Retrieve a Credential Alias
        call: big-data-rest-credentials.getcredentialalias
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createcredentialalias
        description: Oracle Goldengate Create a Credential Alias
        call: big-data-rest-credentials.createcredentialalias
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: replacecredentialalias
        description: Oracle Goldengate Replace a Credential Alias
        call: big-data-rest-credentials.replacecredentialalias
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletecredentialalias
        description: Oracle Goldengate Delete a Credential Alias
        call: big-data-rest-credentials.deletecredentialalias
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: big-data-rest-credentials-mcp
    port: 9090
    transport: http
    description: MCP adapter for Oracle GoldenGate for Big Data REST API — Credentials. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: oracle-goldengate-list-credential-domains
      description: Oracle Goldengate List Credential Domains
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: big-data-rest-credentials.listcredentialdomains
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-goldengate-retrieve-credential-alias
      description: Oracle Goldengate Retrieve a Credential Alias
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: big-data-rest-credentials.getcredentialalias
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-goldengate-create-credential-alias
      description: Oracle Goldengate Create a Credential Alias
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: big-data-rest-credentials.createcredentialalias
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-goldengate-replace-credential-alias
      description: Oracle Goldengate Replace a Credential Alias
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: big-data-rest-credentials.replacecredentialalias
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-goldengate-delete-credential-alias
      description: Oracle Goldengate Delete a Credential Alias
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: big-data-rest-credentials.deletecredentialalias
      outputParameters:
      - type: object
        mapping: $.