YugabyteDB Instance types API

The Instance types API from YugabyteDB — 5 operation(s) for instance types.

Operations 7

GET /api/v1/customers/{cUUID}/providers/{pUUID}/instance_types List a provider's instance types #
POST /api/v1/customers/{cUUID}/providers/{pUUID}/instance_types Create an instance type #
DELETE /api/v1/customers/{cUUID}/providers/{pUUID}/instance_types/{code} Delete an instance type #
GET /api/v1/customers/{cUUID}/providers/{pUUID}/instance_types/{code} Get details of an instance type #
GET /api/v1/metadata/azu_types List supported Azure disk types #
GET /api/v1/metadata/ebs_types List supported EBS volume types #
GET /api/v1/metadata/gcp_types List supported GCP disk types #

Documentation

Specifications

Other Resources

🔗
CLI
https://github.com/yugabyte/ybm-cli
🔗
Integrations
https://github.com/yugabyte/terraform-provider-ybm
🔗
TermsOfService
https://www.yugabyte.com/yugabytedb-managed-service-terms/
🔗
SDKs
https://github.com/yugabyte/platform-go-client
🔗
Integrations
https://github.com/yugabyte/terraform-provider-yba
🔗
Integrations
https://github.com/yugabyte/yugabyte-k8s-operator
🔗
KubernetesCRD
https://raw.githubusercontent.com/api-evangelist/yugabytedb/refs/heads/main/crd/yugabytedb-ybuniverse.yaml
🔗
KubernetesCRD
https://raw.githubusercontent.com/api-evangelist/yugabytedb/refs/heads/main/crd/yugabytedb-backup.yaml
🔗
KubernetesCRD
https://raw.githubusercontent.com/api-evangelist/yugabytedb/refs/heads/main/crd/yugabytedb-backup-schedule.yaml
🔗
KubernetesCRD
https://raw.githubusercontent.com/api-evangelist/yugabytedb/refs/heads/main/crd/yugabytedb-restore-job.yaml
🔗
KubernetesCRD
https://raw.githubusercontent.com/api-evangelist/yugabytedb/refs/heads/main/crd/yugabytedb-storage-config.yaml
🔗
KubernetesCRD
https://raw.githubusercontent.com/api-evangelist/yugabytedb/refs/heads/main/crd/yugabytedb-dr-config.yaml
🔗
KubernetesCRD
https://raw.githubusercontent.com/api-evangelist/yugabytedb/refs/heads/main/crd/yugabytedb-pitr-config.yaml
🔗
KubernetesCRD
https://raw.githubusercontent.com/api-evangelist/yugabytedb/refs/heads/main/crd/yugabytedb-release.yaml
🔗
KubernetesCRD
https://raw.githubusercontent.com/api-evangelist/yugabytedb/refs/heads/main/crd/yugabytedb-support-bundle.yaml
🔗
KubernetesCRD
https://raw.githubusercontent.com/api-evangelist/yugabytedb/refs/heads/main/crd/yugabytedb-ybcertificate.yaml
🔗
KubernetesCRD
https://raw.githubusercontent.com/api-evangelist/yugabytedb/refs/heads/main/crd/yugabytedb-ybprovider.yaml
🔗
KubernetesCRD
https://raw.githubusercontent.com/api-evangelist/yugabytedb/refs/heads/main/crd/yugabytedb-ybplatform.yaml

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/yugabytedb-instance-types-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

yugabytedb-instance-types-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Yugabytedb Instance types API
  version: v1
  contact:
    name: https://docs.yugabyte.com
  license:
    name: Polyform Free Trial License 1.0.0
    url: https://github.com/yugabyte/yugabyte-db/blob/master/licenses/POLYFORM-FREE-TRIAL-LICENSE-1.0.0.txt
  termsOfService: TODO(chirag)
  x-refined-note:
  - x-source differs across the merged source definitions and was not carried
  - x-split-from differs across the merged source definitions and was not carried
  description: 'Operations tagged Instance types across 4 of this provider''s published API definitions: openapi_2.yaml, platform.swagger.json, yugabytedb-anywhere-v1-full.yaml, yugabytedb-anywhere-v1-providers-infra.yaml. Each path carries the servers of the definition it was published in.'
servers:
- url: /
tags:
- name: Instance types
paths:
  /api/v1/customers/{cUUID}/providers/{pUUID}/instance_types:
    get:
      operationId: listOfInstanceType
      parameters:
      - in: path
        name: cUUID
        required: true
        schema:
          format: uuid
          type: string
      - in: path
        name: pUUID
        required: true
        schema:
          format: uuid
          type: string
      - explode: true
        in: query
        name: zone
        schema:
          items:
            type: string
          type: array
        style: form
      - in: query
        name: arch
        schema:
          default: 'null'
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/InstanceTypeResp'
                type: array
          description: successful operation
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/YBPError'
          description: If there was a server or database issue when listing the instance types
      security:
      - apiKeyAuth: []
      summary: List a provider's instance types
      tags:
      - Instance types
    post:
      operationId: createInstanceType
      parameters:
      - in: path
        name: cUUID
        required: true
        schema:
          format: uuid
          type: string
      - in: path
        name: pUUID
        required: true
        schema:
          format: uuid
          type: string
      - in: query
        name: request
        schema: {}
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/InstanceType'
        description: Instance type data of the instance to be stored
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InstanceTypeResp'
          description: successful operation
      security:
      - apiKeyAuth: []
      summary: Create an instance type
      tags:
      - Instance types
      x-codegen-request-body-name: Instance type
    servers:
    - url: /
  /api/v1/customers/{cUUID}/providers/{pUUID}/instance_types/{code}:
    delete:
      operationId: deleteInstanceType
      parameters:
      - in: path
        name: cUUID
        required: true
        schema:
          format: uuid
          type: string
      - in: path
        name: pUUID
        required: true
        schema:
          format: uuid
          type: string
      - in: path
        name: code
        required: true
        schema:
          type: string
      - in: query
        name: request
        schema: {}
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/YBPSuccess'
          description: successful operation
      security:
      - apiKeyAuth: []
      summary: Delete an instance type
      tags:
      - Instance types
    get:
      operationId: instanceTypeDetail
      parameters:
      - in: path
        name: cUUID
        required: true
        schema:
          format: uuid
          type: string
      - in: path
        name: pUUID
        required: true
        schema:
          format: uuid
          type: string
      - in: path
        name: code
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InstanceTypeResp'
          description: successful operation
      security:
      - apiKeyAuth: []
      summary: Get details of an instance type
      tags:
      - Instance types
    servers:
    - url: /
  /api/v1/metadata/azu_types:
    get:
      operationId: getAZUTypes
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  enum:
                  - IO1
                  - IO2
                  - GP2
                  - GP3
                  - Scratch
                  - Persistent
                  - Hyperdisk_Balanced
                  - Hyperdisk_Extreme
                  - StandardSSD_LRS
                  - Premium_LRS
                  - PremiumV2_LRS
                  - UltraSSD_LRS
                  - Local
                  type: string
                type: array
          description: successful operation
      security:
      - apiKeyAuth: []
      summary: List supported Azure disk types
      tags:
      - Instance types
    servers:
    - url: /
  /api/v1/metadata/ebs_types:
    get:
      operationId: getEBSTypes
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  enum:
                  - IO1
                  - IO2
                  - GP2
                  - GP3
                  - Scratch
                  - Persistent
                  - Hyperdisk_Balanced
                  - Hyperdisk_Extreme
                  - StandardSSD_LRS
                  - Premium_LRS
                  - PremiumV2_LRS
                  - UltraSSD_LRS
                  - Local
                  type: string
                type: array
          description: successful operation
      security:
      - apiKeyAuth: []
      summary: List supported EBS volume types
      tags:
      - Instance types
    servers:
    - url: /
  /api/v1/metadata/gcp_types:
    get:
      operationId: getGCPTypes
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  enum:
                  - IO1
                  - IO2
                  - GP2
                  - GP3
                  - Scratch
                  - Persistent
                  - Hyperdisk_Balanced
                  - Hyperdisk_Extreme
                  - StandardSSD_LRS
                  - Premium_LRS
                  - PremiumV2_LRS
                  - UltraSSD_LRS
                  - Local
                  type: string
                type: array
          description: successful operation
      security:
      - apiKeyAuth: []
      summary: List supported GCP disk types
      tags:
      - Instance types
    servers:
    - url: /
components:
  schemas:
    InstanceTypeKey:
      example:
        instanceTypeCode: instanceTypeCode
        providerUuid: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
      properties:
        instanceTypeCode:
          type: string
        providerUuid:
          format: uuid
          type: string
      required:
      - instanceTypeCode
      - providerUuid
      type: object
    InstanceTypeDetails:
      example:
        tenancy: Shared
        arch: x86_64
        volumeDetailsList:
        - volumeSizeGB: 0
          volumeType: EBS
          mountPath: mountPath
        - volumeSizeGB: 0
          volumeType: EBS
          mountPath: mountPath
      properties:
        arch:
          description: Architecture for the instance.
          enum:
          - x86_64
          - aarch64
          type: string
        tenancy:
          description: Tenancy for the instance.
          enum:
          - Shared
          - Dedicated
          - Host
          type: string
        volumeDetailsList:
          description: Volume Details for the instance.
          items:
            $ref: '#/components/schemas/VolumeDetails'
          type: array
      type: object
    InstanceTypeResp:
      description: Details of a cloud instance type
      example:
        numCores: 1.4658129805029452
        idKey:
          instanceTypeCode: instanceTypeCode
          providerUuid: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
        providerCode: providerCode
        memSizeGB: 6.027456183070403
        instanceTypeCode: instanceTypeCode
        instanceTypeDetails:
          tenancy: Shared
          arch: x86_64
          volumeDetailsList:
          - volumeSizeGB: 0
            volumeType: EBS
            mountPath: mountPath
          - volumeSizeGB: 0
            volumeType: EBS
            mountPath: mountPath
        active: true
        providerUuid: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
      properties:
        active:
          description: True if the instance is active
          readOnly: true
          type: boolean
        idKey:
          $ref: '#/components/schemas/InstanceTypeKey'
        instanceTypeCode:
          description: Instance type code
          readOnly: true
          type: string
        instanceTypeDetails:
          $ref: '#/components/schemas/InstanceTypeDetails'
        memSizeGB:
          description: The instance's memory size, in gigabytes
          format: double
          type: number
        numCores:
          description: The instance's number of CPU cores
          format: double
          type: number
        providerCode:
          description: Cloud provider code
          readOnly: true
          type: string
        providerUuid:
          description: Provider UUID
          format: uuid
          readOnly: true
          type: string
      required:
      - idKey
      type: object
    InstanceType:
      description: Information about an instance
      example:
        numCores: 6.027456183070403
        idKey:
          instanceTypeCode: instanceTypeCode
          providerUuid: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
        memSizeGB: 0.8008281904610115
        instanceTypeCode: instanceTypeCode
        instanceTypeDetails:
          tenancy: Shared
          arch: x86_64
          volumeDetailsList:
          - volumeSizeGB: 0
            volumeType: EBS
            mountPath: mountPath
          - volumeSizeGB: 0
            volumeType: EBS
            mountPath: mountPath
        active: true
      properties:
        active:
          description: True if the instance is active
          readOnly: true
          type: boolean
        idKey:
          $ref: '#/components/schemas/InstanceTypeKey'
        instanceTypeCode:
          description: Instance type code
          readOnly: true
          type: string
        instanceTypeDetails:
          $ref: '#/components/schemas/InstanceTypeDetails'
        memSizeGB:
          description: The instance's memory size, in gigabytes
          format: double
          type: number
        numCores:
          description: The instance's number of CPU cores
          format: double
          type: number
      required:
      - idKey
      type: object
    YBPError:
      description: Generic error response from the YugabyteDB Anywhere API
      example:
        success: false
        requestUri: /customers/8918921-af3782-633de/universe/8173ab-fd2453/create
        error: There was a problem creating the universe
        httpMethod: POST
        errorJson: '{ "foo" : "bar", "baz" : [1, 2, 3] }'
        requestJson: '{ "foo" : "bar", "baz" : [1, 2, 3] }'
      properties:
        error:
          description: User-visible unstructured error message
          example: There was a problem creating the universe
          type: string
        errorJson:
          description: User visible structured error message as json object
          example: '{ "foo" : "bar", "baz" : [1, 2, 3] }'
          properties: {}
          type: object
        httpMethod:
          description: Method for HTTP call that resulted in this error
          example: POST
          type: string
        requestJson:
          description: User request JSON object
          example: '{ "foo" : "bar", "baz" : [1, 2, 3] }'
          properties: {}
          type: object
        requestUri:
          description: URI for HTTP request that resulted in this error
          example: /customers/8918921-af3782-633de/universe/8173ab-fd2453/create
          type: string
        success:
          description: Always set to false to indicate failure
          example: false
          type: boolean
      type: object
    YBPSuccess:
      example:
        success: true
        message: message
      properties:
        message:
          description: API response message.
          readOnly: true
          type: string
        success:
          description: API operation status. A value of true indicates the operation was successful.
          readOnly: true
          type: boolean
      type: object
    VolumeDetails:
      example:
        volumeSizeGB: 0
        volumeType: EBS
        mountPath: mountPath
      properties:
        mountPath:
          type: string
        volumeSizeGB:
          format: int32
          type: integer
        volumeType:
          enum:
          - EBS
          - SSD
          - HDD
          - NVME
          type: string
      required:
      - mountPath
      - volumeSizeGB
      - volumeType
      type: object
    AvailabilityZone:
      description: Availability zone (AZ) for a region
      properties:
        active:
          description: AZ status. This value is `true` for an active AZ.
          readOnly: true
          type: boolean
        code:
          description: AZ code
          example: us-west1-a
          type: string
        config:
          additionalProperties:
            type: string
          description: AZ configuration values
          type: object
        kubeconfigPath:
          description: Path to Kubernetes configuration file
          readOnly: true
          type: string
        name:
          description: AZ name
          example: us-west1-a
          type: string
        secondarySubnet:
          description: AZ secondary subnet
          example: secondary subnet id
          type: string
        subnet:
          description: AZ subnet
          example: subnet id
          type: string
        uuid:
          description: AZ UUID
          format: uuid
          readOnly: true
          type: string
      required:
      - name
      type: object
    InstanceTypeKey_2:
      properties:
        instanceTypeCode:
          type: string
        providerUuid:
          format: uuid
          type: string
      required:
      - instanceTypeCode
      - providerUuid
      type: object
    InstanceTypeDetails_2:
      properties:
        tenancy:
          enum:
          - Shared
          - Dedicated
          - Host
          type: string
        volumeDetailsList:
          items:
            $ref: '#/components/schemas/VolumeDetails_2'
          type: array
      required:
      - tenancy
      - volumeDetailsList
      type: object
    InstanceType_2:
      description: Information about an instance
      properties:
        active:
          description: True if the instance is active
          readOnly: true
          type: boolean
        idKey:
          $ref: '#/components/schemas/InstanceTypeKey_2'
        instanceTypeCode:
          type: string
        instanceTypeDetails:
          $ref: '#/components/schemas/InstanceTypeDetails_2'
        memSizeGB:
          description: The instance's memory size, in gigabytes
          format: double
          type: number
        numCores:
          description: The instance's number of CPU cores
          format: double
          type: number
        provider:
          $ref: '#/components/schemas/Provider'
        providerCode:
          type: string
        providerUuid:
          format: uuid
          type: string
      required:
      - idKey
      - instanceTypeCode
      - instanceTypeDetails
      - provider
      - providerCode
      - providerUuid
      type: object
    Region:
      description: Region within a given provider. Typically, this maps to a single cloud provider region.
      properties:
        active:
          readOnly: true
          type: boolean
        architecture:
          enum:
          - x86_64
          - arm64
          type: string
        code:
          description: Cloud provider region code
          example: us-west-2
          type: string
        config:
          additionalProperties:
            type: string
          type: object
        latitude:
          description: The region's latitude
          example: 37.22
          format: double
          readOnly: true
          type: number
        longitude:
          description: The region's longitude
          example: -120.01
          format: double
          readOnly: true
          type: number
        name:
          description: Cloud provider region name
          example: US West (Oregon)
          readOnly: true
          type: string
        securityGroupId:
          type: string
        uuid:
          description: Region UUID
          format: uuid
          readOnly: true
          type: string
        vnetName:
          type: string
        ybImage:
          description: The AMI to be used in this region.
          example: TODO
          type: string
        zones:
          items:
            $ref: '#/components/schemas/AvailabilityZone'
          type: array
      required:
      - zones
      type: object
    YBPError_2:
      description: Generic error response from the YugabyteDB Anywhere API
      properties:
        error:
          description: User-visible unstructured error message
          example: There was a problem creating the universe
          type: string
        errorJson:
          description: User visible error message as json object
          example: '{ "foo" : "bar", "baz" : [1, 2, 3] }'
          type: object
        success:
          description: Always set to false to indicate failure
          example: false
          type: boolean
      type: object
    YBPSuccess_2:
      properties:
        message:
          description: API response message.
          readOnly: true
          type: string
        success:
          description: API operation status. A value of true indicates the operation was successful.
          readOnly: true
          type: boolean
      type: object
    VolumeDetails_2:
      properties:
        mountPath:
          type: string
        volumeSizeGB:
          format: int32
          type: integer
        volumeType:
          enum:
          - EBS
          - SSD
          - HDD
          - NVME
          type: string
      required:
      - mountPath
      - volumeSizeGB
      - volumeType
      type: object
    Provider:
      properties:
        active:
          description: Provider active status
          readOnly: true
          type: boolean
        airGapInstall:
          description: Transient property - only present in mutate API request
          type: boolean
        code:
          description: Provider cloud code
          type: string
        config:
          additionalProperties:
            type: string
          type: object
        customHostCidrs:
          description: Transient property - only present in mutate API request
          items:
            type: string
          type: array
        customerUUID:
          description: Customer uuid
          format: uuid
          readOnly: true
          type: string
        destVpcId:
          description: Transient property - only present in mutate API request
          type: string
        hostVpcId:
          description: Transient property - only present in mutate API request
          type: string
        hostVpcRegion:
          description: Transient property - only present in mutate API request
          type: string
        hostedZoneId:
          type: string
        hostedZoneName:
          type: string
        keyPairName:
          description: Transient property - only present in mutate API request
          type: string
        name:
          description: Provider name
          type: string
        ntpServers:
          description: Transient property - only present in mutate API request
          items:
            type: string
          type: array
        overrideKeyValidate:
          description: Transient property - only present in mutate API request
          type: boolean
        regions:
          items:
            $ref: '#/components/schemas/Region'
          type: array
        setUpChrony:
          description: Transient property - only present in mutate API request
          type: boolean
        showSetUpChrony:
          description: Transient property - only present in mutate API request
          type: boolean
        sshPort:
          description: Transient property - only present in mutate API request
          format: int32
          type: integer
        sshPrivateKeyContent:
          description: Transient property - only present in mutate API request
          type: string
        sshUser:
          description: Transient property - only present in mutate API request
          type: string
        uuid:
          description: Provider uuid
          format: uuid
          readOnly: true
          type: string
      required:
      - regions
      type: object
    InstanceTypeKey_3:
      example:
        instanceTypeCode: instanceTypeCode
        providerUuid: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
      properties:
        instanceTypeCode:
          type: string
          example: OK
        providerUuid:
          format: uuid
          type: string
          example: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
      required:
      - instanceTypeCode
      - providerUuid
      type: object
    InstanceTypeDetails_3:
      example:
        tenancy: Shared
        arch: x86_64
        volumeDetailsList:
        - volumeSizeGB: 0
          volumeType: EBS
          mountPath: mountPath
        - volumeSizeGB: 0
          volumeType: EBS
          mountPath: mountPath
      properties:
        arch:
          description: Architecture for the instance.
          enum:
          - x86_64
          - aarch64
          type: string
          example: x86_64
        tenancy:
          description: Tenancy for the instance.
          enum:
          - Shared
          - Dedicated
          - Host
          type: string
          example: Shared
        volumeDetailsList:
          description: Volume Details for the instance.
          items:
            $ref: '#/components/schemas/VolumeDetails_3'
          type: array
          example:
          - volumeSizeGB: 0
            volumeType: EBS
            mountPath: mountPath
      type: object
    InstanceTypeResp_2:
      description: Details of a cloud instance type
      example:
        numCores: 1.4658129805029452
        idKey:
          instanceTypeCode: instanceTypeCode
          providerUuid: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
        providerCode: providerCode
        memSizeGB: 6.027456183070403
        instanceTypeCode: instanceTypeCode
        instanceTypeDetails:
          tenancy: Shared
          arch: x86_64
          volumeDetailsList:
          - volumeSizeGB: 0
            volumeType: EBS
            mountPath: mountPath
          - volumeSizeGB: 0
            volumeType: EBS
            mountPath: mountPath
        active: true
        providerUuid: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
      properties:
        active:
          description: True if the instance is active
          readOnly: true
          type: boolean
          example: true
        idKey:
          $ref: '#/components/schemas/InstanceTypeKey_3'
        instanceTypeCode:
          description: Instance type code
          readOnly: true
          type: string
          example: OK
        instanceTypeDetails:
          $ref: '#/components/schemas/InstanceTypeDetails_3'
        memSizeGB:
          description: The instance's memory size, in gigabytes
          format: double
          type: number
          example: 1.5
        numCores:
          description: The instance's number of CPU cores
          format: double
          type: number
          example: 1.5
        providerCode:
          description: Cloud provider code
          readOnly: true
          type: string
          example: OK
        providerUuid:
          description: Provider UUID
          format: uuid
          readOnly: true
          type: string
          example: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
      required:
      - idKey
      type: object
    InstanceType_3:
      description: Information about an instance
      example:
        numCores: 6.027456183070403
        idKey:
          instanceTypeCode: instanceTypeCode
          providerUuid: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
        memSizeGB: 0.8008281904610115
        instanceTypeCode: instanceTypeCode
        instanceTypeDetails:
          tenancy: Shared
          arch: x86_64
          volumeDetailsList:
          - volumeSizeGB: 0
            volumeType: EBS
            mountPath: mountPath
          - volumeSizeGB: 0
            volumeType: EBS
            mountPath: mountPath
        active: true
      properties:
        active:
          description: True if the instance is active
          readOnly: true
          type: boolean
          example: true
        idKey:
          $ref: '#/components/schemas/InstanceTypeKey_3'
        instanceTypeCode:
          description: Instance type code
          readOnly: true
          type: string
          example: OK
        instanceTypeDetails:
          $ref: '#/components/schemas/InstanceTypeDetails_3'
        memSizeGB:
          description: The instance's memory size, in gigabytes
          format: double
          type: number
          example: 1.5
        numCores:
          description: The instance's number of CPU cores
          format: double
          type: number
          example: 1.5
      required:
      - idKey
      type: object
    YBPSuccess_3:
      example:
        success: true
        message: message
      properties:
        message:
          description: API response message.
          readOnly: true
          type: string
          example: Example message
        success:
          description: API operation status. A value of true indicates the operation was successful.
          readOnly: true
          type: boolean
          example: true
      type: object
    VolumeDetails_3:
      example:
        volumeSizeGB: 0
        volumeType: EBS
        mountPath: mountPath
      properties:
        mountPath:
          type: string
          example: /var/lib/yugabyte/example
        volumeSizeGB:
          format: int32
          type: integer
          example: 10
        volumeType:
          enum:
          - EBS
          - SSD
          - HDD
          - NVME
          type: string
          example: EBS
      required:
      - mountPath
      - volumeSizeGB
      - volumeType
      type: object
    InstanceTypeKey_4:
      example:
        instanceTypeCode: instanceTypeCode
        providerUuid: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
      properties:
        instanceTypeCode:
          type: string
          example: OK
        providerUuid:
          format: uuid
          type: string
          example: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
      required:
      - instanceTypeCode
      - providerUuid
      type: object
    InstanceTypeDetails_4:
      example:
        tenancy: Shared
        arch: x86_64
        volumeDetailsList:
        - volumeSizeGB: 0
          volumeType: EBS
          mountPath: mountPath
        - volumeSizeGB: 0
          volumeType: EBS
          mountPath: mountPath
      properties:
        arch:
          description: Architecture for the instance.
          enum:
          - x86_64
          - aarch64
          type: string
          example: x86_64
        tenancy:
          description: Tenancy for the instance.
          enum:
          - Shared
          - Dedicated
          - Host
          type: string
          example: Shared
        volumeDetailsList:
          description: Volume Details for the instance.
          items:
            $ref: '#/components/schemas/VolumeDetails_4'
          type: array
          example:
          - volumeSizeGB: 0
            volumeType: EBS
            mountPath: mountPath
      type: object
    InstanceTypeResp_3:
      description: Details of a cloud instance type
      example:
        numCores: 1.4658129805029452
        idKey:
          instanceTypeCode: instanceTypeCode
          providerUuid: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
        providerCode: providerCode
        memSizeGB: 6.027456183070403
        instanceTypeCode: instanceTypeCode
        instanceTypeDetails:
          tenancy: Shared
          arch: x86_64
          volumeDetailsList:
          - volumeSizeGB: 0
            volumeType: EBS
            mountPath: mountPath
          - volumeSizeGB: 0
            volumeType: EBS
            mountPath: mountPath
        active: true
        providerUuid: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
      properties:
        active:
          description: True if the instance is active
          readOnly: true
          type: boolean
          example: true
        idKey:
          $ref: '#/components/schemas/InstanceTypeKey_4'
        instanceTypeCode:
          description: Instance type code
          readOnly: true
          type: string
          example: OK
        instanceTypeDetails:
          $ref: '#/components/schemas/InstanceTypeDetails_4'
        memSizeGB:
          description: The instance's memory size, in gigabytes
          format: double
          type: number
          example: 1.5
        numCores:
          description: The instance's number of CPU cores
          format: double
          type: number
          example: 1.5
        providerCode:
          description: Cloud provider code
          readOnly: true
          type: string
          example: OK
        providerUuid:
          description: Provider UUID
          format: uuid
          readOnly: true
          type: string
          example: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
      required:
      - idKey
      type: object
    InstanceType_4:
      description: Information about an instance
      example:
        numCores: 6.027456183070403
        idKey:
          instanceTypeCode: instanceTypeCode
          providerUuid: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
        memSizeGB: 0.8008281904610115
        instanceTypeCode: instanceTypeCode
        instanceTypeDetails:
          tenancy: Shared
          arch: x86_64
          volumeDetailsList:
          - volumeSizeGB: 0
            volumeType: EBS
            mountPath: mountPath
          - volumeSizeGB: 0
            volumeType: EBS
            mountPath: mountPath
        active: true
      properties:
        active:
          description: True if the instance is active
          readOnly: true
          type: boolean
          example: true
        idKey:
          $ref: '#/components/schemas/InstanceTypeKey_4'
        instanceTypeCode:
          description: Instance type code
          readOnly: true
          type: string
          example: OK
        instanceTypeDetails:
          $ref: '#/components/schemas/InstanceTypeDetails_4'
        memSizeGB:
          description: The instance's memory size, in gigabytes
          format: double
          type: number
          example: 1.5
        numCores:
          description: The instance's number of CPU cores
          format: double
          type: number
          example: 1.5
      required:
      - idKey
      type: object
    YBPSuccess_4:
      example:
        success: true
        message: message
      properties:
        message:
          description: API response message.
          readOnly: true
          type: string
          example: Example message
        success:
          description: API operation status. A value of true indicates the operation was successful.
          readOnly: true
          type: boolean
          example: true
      type: object
    VolumeDetails_4:
      ex

# --- truncated at 32 KB (32 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/yugabytedb/refs/heads/main/openapi/yugabytedb-instance-types-api-openapi.yml