Oracle Container Engine for Kubernetes Node Pools API

Worker node pool management

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/oracle-container-engine-node-pools-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

oracle-container-engine-node-pools-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Oracle Container Engine for Kubernetes (OKE) Add-ons Node Pools API
  description: Oracle Container Engine for Kubernetes (OKE) is a managed Kubernetes service on Oracle Cloud Infrastructure. The API exposes endpoints for managing Kubernetes clusters, node pools, virtual node pools, add-ons, work requests, and cluster credentials within OCI compartments.
  version: 20180222
  contact:
    name: Oracle Cloud Infrastructure Support
    url: https://support.oracle.com
  license:
    name: Oracle Cloud Services Agreement
    url: https://www.oracle.com/cloud/cloud-services-agreements/
servers:
- url: https://containerengine.{region}.oci.oraclecloud.com/20180222
  description: OCI Container Engine regional endpoint
  variables:
    region:
      default: us-ashburn-1
      description: OCI region identifier
security:
- ociAuth: []
tags:
- name: Node Pools
  description: Worker node pool management
paths:
  /nodePools:
    get:
      tags:
      - Node Pools
      summary: List node pools
      operationId: listNodePools
      parameters:
      - $ref: '#/components/parameters/CompartmentId'
      - name: clusterId
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Node pool list
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/NodePoolSummary'
    post:
      tags:
      - Node Pools
      summary: Create a node pool
      operationId: createNodePool
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateNodePoolDetails'
      responses:
        '202':
          description: Node pool creation accepted
  /nodePools/{nodePoolId}:
    get:
      tags:
      - Node Pools
      summary: Get a node pool
      operationId: getNodePool
      parameters:
      - name: nodePoolId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Node pool details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NodePool'
    delete:
      tags:
      - Node Pools
      summary: Delete a node pool
      operationId: deleteNodePool
      parameters:
      - name: nodePoolId
        in: path
        required: true
        schema:
          type: string
      responses:
        '202':
          description: Deletion accepted
components:
  schemas:
    NodePool:
      allOf:
      - $ref: '#/components/schemas/NodePoolSummary'
      - type: object
        properties:
          nodeImageId:
            type: string
          nodeSource:
            type: object
            additionalProperties: true
          quantityPerSubnet:
            type: integer
          subnetIds:
            type: array
            items:
              type: string
          nodeConfigDetails:
            type: object
            properties:
              size:
                type: integer
              placementConfigs:
                type: array
                items:
                  type: object
                  properties:
                    availabilityDomain:
                      type: string
                    subnetId:
                      type: string
    NodePoolSummary:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        clusterId:
          type: string
        compartmentId:
          type: string
        kubernetesVersion:
          type: string
        nodeShape:
          type: string
        lifecycleState:
          type: string
    CreateNodePoolDetails:
      type: object
      required:
      - name
      - clusterId
      - compartmentId
      - nodeShape
      - kubernetesVersion
      properties:
        name:
          type: string
        clusterId:
          type: string
        compartmentId:
          type: string
        kubernetesVersion:
          type: string
        nodeShape:
          type: string
        nodeImageId:
          type: string
  parameters:
    CompartmentId:
      name: compartmentId
      in: query
      required: true
      schema:
        type: string
      description: OCID of the compartment
  securitySchemes:
    ociAuth:
      type: apiKey
      in: header
      name: Authorization
      description: OCI request signing (RFC 7615) using API key pair
externalDocs:
  description: OCI Container Engine API Reference
  url: https://docs.oracle.com/en-us/iaas/api/#/en/containerengine/