Tessell Compute Resource API

The Compute Resource API from Tessell — 13 operation(s) for compute resource.

Operations 17

GET /compute-resources/dbservers View a list of available Compute Resources #
GET /compute-resources/dbservers/{id} Get a Compute Resource by ID #
DELETE /compute-resources/dbservers/{id} Delete a Database Server #
PATCH /compute-resources/dbservers/{id} Update a DB server #
GET /compute-resources/dbservers/sharing-enabled View a list of available Compute Resources that can be used for newer provisioning #
PATCH /compute-resources/dbservers/{id}/enable-compute-sharing Enable compute resource sharing #
PATCH /compute-resources/dbservers/{id}/owner Update compute resource owner #
PATCH /compute-resources/dbservers/owner/{email-id} Update owner for all compute resources of a given owner #
GET /compute-resources/dbservers/{id}/timeline Get a Compute Resource by ID #
PATCH /compute-resources/dbservers/{id}/resize Resize a Database Server Compute Resource #
PATCH /compute-resources/dbservers/{id}/start Starts Database Server Compute Resource #
PATCH /compute-resources/dbservers/{id}/stop Stops the DB Service #
PATCH /compute-resources/dbservers/{id}/maintenance-windows Patch request for compute resource maintenance window #
GET /compute-resources/dbservers/{id}/tags View tags for the DB Server #
PATCH /compute-resources/dbservers/{id}/tags Create/update (override) tags for the DB Server #
DELETE /compute-resources/dbservers/{id}/tags Delete tags for a DB Server #
PATCH /compute-resources/dbservers/{id}/integrations Add/update an integration for the DB Server #

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/tessell-compute-resource-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

tessell-compute-resource-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Tessell APIs activity-center Compute Resource API
  contact:
    email: support@tessell.com
    name: Tessell Inc
    url: https://www.tessell.com
  description: Tessell API Documentation
  termsOfService: https://www.tessell.com/terms
  version: '1.0'
servers:
- url: '{server}'
  variables:
    server:
      default: console.tessell.com
tags:
- name: Compute Resource
paths:
  /compute-resources/dbservers:
    get:
      tags:
      - Compute Resource
      summary: View a list of available Compute Resources
      operationId: getDbserverComputeResources
      parameters:
      - name: name
        in: query
        description: Filter Compute Resource based on name
        required: false
        style: form
        schema:
          type: string
          minLength: 1
          maxLength: 128
      - name: load-db-services
        in: query
        description: Flag to load DB Service instances hosted on the DB Servers
        required: false
        style: form
        schema:
          type: boolean
          default: false
      - name: machine-type
        in: query
        description: machine-type
        required: false
        style: form
        schema:
          $ref: '#/components/schemas/MachineType'
      - name: providerAccountId
        in: query
        description: Filter Compute Resource provider Id
        required: false
        style: form
        schema:
          type: string
          format: uuid
      - name: providerSubAcctId
        in: query
        description: Filter Compute Resource provider sub account Id
        style: form
        schema:
          type: string
          format: uuid
      - name: load-updates-info
        in: query
        description: Include update availability information for each DB Server
        required: false
        style: form
        schema:
          type: boolean
          default: false
      - $ref: '#/components/parameters/pageSize'
      - $ref: '#/components/parameters/pageOffset'
      - $ref: '#/components/parameters/timeZone'
      - name: Authorization
        in: header
        description: Authorization Token
        required: true
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TessellDbserverComputeResourceListResponse'
        default:
          description: API error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
  /compute-resources/dbservers/{id}:
    get:
      tags:
      - Compute Resource
      summary: Get a Compute Resource by ID
      operationId: getDbserverComputeResource
      parameters:
      - name: id
        in: path
        description: The ID of the Compute Resource
        required: true
        style: simple
        schema:
          type: string
          format: uuid
      - name: load-updates-info
        in: query
        description: Include update availability information for the DB Server
        required: false
        style: form
        schema:
          type: boolean
          default: false
      - $ref: '#/components/parameters/timeZone'
      - name: Authorization
        in: header
        description: Authorization Token
        required: true
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TessellDbserverComputeResourceDTO'
        default:
          description: API error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
    delete:
      tags:
      - Compute Resource
      summary: Delete a Database Server
      operationId: deleteDbserverComputeResource
      parameters:
      - name: id
        in: path
        description: id
        required: true
        style: simple
        schema:
          type: string
          format: uuid
      - name: Authorization
        in: header
        description: Authorization Token
        required: true
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/taskSummary'
        '204':
          description: No Content
        default:
          description: API error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
    patch:
      tags:
      - Compute Resource
      summary: Update a DB server
      operationId: updateDbServer
      x-terraform-resource: DBServer
      x-terraform-operation: Update
      parameters:
      - name: id
        in: path
        description: The ID of the DB Server
        required: true
        style: simple
        schema:
          type: string
          format: uuid
      - name: Authorization
        in: header
        description: Authorization Token
        required: true
        style: simple
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateDbServerPayload'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TessellDbserverComputeResourceDTO'
        '201':
          description: Created
        default:
          description: API error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
  /compute-resources/dbservers/sharing-enabled:
    get:
      tags:
      - Compute Resource
      summary: View a list of available Compute Resources that can be used for newer provisioning
      operationId: getSharingEnabledDbserverComputeResources
      parameters:
      - name: subscription-id
        in: query
        description: Filter Compute Resources based on subscription ID
        required: false
        style: form
        schema:
          type: string
          format: uuid
      - name: engine-type
        in: query
        description: Filter Compute Resources based on engine type
        required: false
        style: form
        schema:
          $ref: '#/components/schemas/databaseEngineType'
      - name: cloud
        in: query
        description: Filter Compute Resources based on cloud type
        required: false
        style: form
        schema:
          $ref: '#/components/schemas/cloudType'
      - name: region
        in: query
        description: Filter Compute Resources based on cloud region
        required: false
        style: form
        schema:
          type: string
          minLength: 1
          maxLength: 128
      - name: load-updates-info
        in: query
        description: Include update availability information for each DB Server
        required: false
        style: form
        schema:
          type: boolean
          default: false
      - $ref: '#/components/parameters/pageSize'
      - $ref: '#/components/parameters/pageOffset'
      - $ref: '#/components/parameters/timeZone'
      - name: Authorization
        in: header
        description: Authorization Token
        required: true
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SharableDbserverComputeResourceListResponse'
        default:
          description: API error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
  /compute-resources/dbservers/{id}/enable-compute-sharing:
    patch:
      tags:
      - Compute Resource
      summary: Enable compute resource sharing
      operationId: enableComputeResourceSharing
      parameters:
      - $ref: '#/components/parameters/id'
      - name: Authorization
        in: header
        description: Authorization Token
        required: true
        style: simple
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EnableComputeSharingPayload'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/apiStatus'
        default:
          description: API error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
  /compute-resources/dbservers/{id}/owner:
    patch:
      tags:
      - Compute Resource
      summary: Update compute resource owner
      operationId: updateComputeResourceOwner
      parameters:
      - $ref: '#/components/parameters/id'
      - name: Authorization
        in: header
        description: Authorization Token
        required: true
        style: simple
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateComputeResourceOwnerPayload'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/apiStatus'
        default:
          description: API error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
  /compute-resources/dbservers/owner/{email-id}:
    patch:
      tags:
      - Compute Resource
      summary: Update owner for all compute resources of a given owner
      description: Bulk update the owner for all compute resources currently owned by the specified user
      operationId: bulkUpdateComputeResourceOwner
      parameters:
      - name: email-id
        in: path
        description: Id of the owner
        required: true
        style: simple
        schema:
          type: string
      - name: Authorization
        in: header
        description: Authorization Token
        required: true
        style: simple
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateComputeResourceOwnerPayload'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/apiStatus'
        default:
          description: API error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
  /compute-resources/dbservers/{id}/timeline:
    get:
      tags:
      - Compute Resource
      summary: Get a Compute Resource by ID
      operationId: getDbServerTimeline
      parameters:
      - $ref: '#/components/parameters/id'
      - $ref: '#/components/parameters/timeZone'
      - name: Authorization
        in: header
        description: Authorization Token
        required: true
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DbServerTimelineResponse'
        default:
          description: API error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
  /compute-resources/dbservers/{id}/resize:
    patch:
      tags:
      - Compute Resource
      summary: Resize a Database Server Compute Resource
      operationId: resizeDbServerComputeResource
      parameters:
      - $ref: '#/components/parameters/id'
      - name: Authorization
        in: header
        description: Authorization Token
        required: true
        style: simple
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ResizeDbServerComputeResourceRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/taskSummary'
        default:
          description: API error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
  /compute-resources/dbservers/{id}/start:
    patch:
      tags:
      - Compute Resource
      summary: Starts Database Server Compute Resource
      operationId: startDbServer
      parameters:
      - $ref: '#/components/parameters/id'
      - name: Authorization
        in: header
        description: Authorization Token
        required: true
        style: simple
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/StartDbServerPayload'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/taskSummary'
              examples:
                generic:
                  $ref: '#/components/examples/StartDbServerSummary'
        '201':
          description: Created
        default:
          description: API error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
  /compute-resources/dbservers/{id}/stop:
    patch:
      tags:
      - Compute Resource
      summary: Stops the DB Service
      operationId: stopDbServer
      parameters:
      - $ref: '#/components/parameters/id'
      - name: Authorization
        in: header
        description: Authorization Token
        required: true
        style: simple
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/StopDbServerPayload'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/taskSummary'
              examples:
                generic:
                  $ref: '#/components/examples/StopDbServerSummary'
        '201':
          description: Created
        default:
          description: API error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
  /compute-resources/dbservers/{id}/maintenance-windows:
    patch:
      tags:
      - Compute Resource
      summary: Patch request for compute resource maintenance window
      operationId: updateMaintenanceWindowForDbServer
      parameters:
      - $ref: '#/components/parameters/id'
      - name: Authorization
        in: header
        description: Authorization Token
        required: true
        style: simple
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ComputeResourceMaintenanceWindow'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ComputeResourceMaintenanceWindow'
        '201':
          description: Created
        default:
          description: API error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
  /compute-resources/dbservers/{id}/tags:
    get:
      tags:
      - Compute Resource
      summary: View tags for the DB Server
      operationId: getDbServerTags
      parameters:
      - $ref: '#/components/parameters/id'
      - name: Authorization
        in: header
        description: Authorization Token
        required: true
        style: simple
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TessellTag'
        default:
          description: API error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
    patch:
      tags:
      - Compute Resource
      summary: Create/update (override) tags for the DB Server
      operationId: upsertDbServerTags
      parameters:
      - name: id
        in: path
        description: The ID of the DB Server
        required: true
        style: simple
        schema:
          type: string
          format: uuid
      - name: Authorization
        in: header
        description: Authorization Token
        required: true
        style: simple
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateUpdateTessellTagPayload'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TessellTag'
        '201':
          description: Created
        default:
          description: API error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
    delete:
      tags:
      - Compute Resource
      summary: Delete tags for a DB Server
      operationId: deleteDbServerTags
      parameters:
      - name: id
        in: path
        description: The ID of the DB Server
        required: true
        style: simple
        schema:
          type: string
          format: uuid
      - name: Authorization
        in: header
        description: Authorization Token
        required: true
        style: simple
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DeleteTagPayload'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/apiStatus'
        default:
          description: API error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
  /compute-resources/dbservers/{id}/integrations:
    patch:
      tags:
      - Compute Resource
      summary: Add/update an integration for the DB Server
      operationId: updateComputeResourceIntegration
      parameters:
      - $ref: '#/components/parameters/id'
      - name: Authorization
        in: header
        description: Authorization Token
        required: true
        style: simple
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/TessellUpdateDatabaseIntegrationDTO'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/taskSummary'
        default:
          description: API error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
components:
  schemas:
    DbServerStorageConfig:
      type: object
      properties:
        provider:
          $ref: '#/components/schemas/StorageProviderType'
    AvailableUpdatesSimple:
      type: object
      description: Simple boolean flags indicating available updates
      properties:
        osPatch:
          type: boolean
          description: Whether an OS patch update is available
          example: true
        dbPatch:
          type: boolean
          description: Whether a DB patch update is available
          example: true
    AzureNetAppEncryptionKeyInfo:
      description: Details of encryption key
      type: object
      properties:
        id:
          type: string
          description: Id of the encryption key
          format: uuid
        name:
          type: string
          description: name of the encryption key
        keyVaultCloudResourceId:
          type: string
          description: name of the encryption key vault in cloud
        keySource:
          $ref: '#/components/schemas/AzureNetAppEncryptionKeySource'
    apiResponse:
      example:
        metadata:
          pagination:
            pageOffset: 0
            pageSize: 6
          records: 1
          timeZone: timeZone
        response: '{}'
      properties:
        metadata:
          $ref: '#/components/schemas/apiMetadata'
        response:
          type: object
      title: ApiResponse
      type: object
    SharableDbserverComputeResourceDTO:
      required:
      - name
      type: object
      description: This is a definition for compute resource
      properties:
        id:
          type: string
          format: uuid
          description: The ID of the Compute Resource
        name:
          type: string
          minLength: 1
          maxLength: 128
          description: The name of the Compute Resource
        subscription:
          type: string
          minLength: 1
          maxLength: 128
          description: The subscription under which this resource is created
        owner:
          type: string
          minLength: 0
          maxLength: 512
          description: The email address of the owner of the Compute Resource
        engineType:
          $ref: '#/components/schemas/databaseEngineType'
        cloud:
          $ref: '#/components/schemas/cloudType'
        region:
          type: string
          minLength: 1
          maxLength: 128
          description: The region where the Compute Resource is hosted
        availabilityZone:
          type: string
          minLength: 1
          maxLength: 128
          description: The availability zone where the Compute Resource is hosted
        availabilitySet:
          type: string
          description: The availability set to which the Compute Resource belongs
          minLength: 1
          maxLength: 80
        computeType:
          type: string
          minLength: 1
          maxLength: 128
          description: The compute type to be used for provisioning the DB Service
        vpc:
          type: string
          minLength: 1
          maxLength: 128
          description: The VPC which is used for provisioning the compute resource
        privateSubnet:
          type: string
          description: The private subnet which is used for provisioning the compute resource
        publicSubnet:
          type: string
          description: The public subnet which is used for provisioning the compute resource, we return public subnet only when public access is enabled
        encryptionKey:
          type: string
          minLength: 0
          maxLength: 512
          description: The encryption key which is used to encrypt the data at rest
        servicePort:
          type: integer
          format: int32
          minimum: 0
        optimizedVcpus:
          type: integer
          description: vcpus usable by the db service(s)
        hostedDbServices:
          type: array
          items:
            type: object
            title: HostedDbServiceOnCr
            properties:
              dbServiceId:
                type: string
                format: uuid
              databases:
                type: array
                uniqueItems: true
                items:
                  type: string
        reservedMemory:
          type: integer
          format: int64
          default: 0
          minimum: 0
          description: The memory (in bytes) that has been reserved for other DB Services
        enablePublicAccess:
          type: boolean
          description: Whether public access is enabled for the Compute Resource
        enableSSL:
          type: boolean
          description: Whether SSL is enabled for the Compute Resource
        timezone:
          $ref: '#/components/schemas/TimeZone'
        softwareImageInfo:
          type: object
          properties:
            softwareImage:
              type: string
              minLength: 1
              maxLength: 128
            softwareImageVersions:
              type: array
              items:
                type: string
                minLength: 1
                maxLength: 128
        computeConfig:
          $ref: '#/components/schemas/ComputeConfig'
        restrictProvision:
          type: boolean
        storageConfig:
          $ref: '#/components/schemas/DbServerStorageConfig'
        securityConfig:
          $ref: '#/components/schemas/SecurityConfigOps'
        maintenanceWindow:
          $ref: '#/components/schemas/ComputeResourceMaintenanceWindow'
        isHostingHAService:
          type: boolean
          description: Whether the Compute Resource is hosting HA service
        updatesInfo:
          $ref: '#/components/schemas/DbServerUpdates'
          description: Information about available updates for this DB Server. Only populated when load-updates-info=true in the request.
    TessellIntegrationRequestType:
      type: string
      description: Request type enum for the addition/removal/updation of the Integration for the DB Service.
      enum:
      - ADD
      - UPDATE
      - REMOVE
    TessellServiceInstanceStatus:
      type: string
      description: DB Service instance status
      enum:
      - CREATING
      - DELETING
      - UP
      - DOWN
      - STOPPED
      - REBUILDING
      - REBUILD_FAILED
      - PATCHING
      - PATCH_FAILED
      - UPDATING_PARAMETER_PROFILE
      - UPDATING_OPTION_PROFILE
      - UPDATING_SECURITY_CONFIG
      - OPTION_PROFILE_UPDATE_FAILED
      - PARAMETER_PROFILE_UPDATE_FAILED
      - SECURITY_CONFIG_UPDATE_FAILED
      - REFRESHING
    SecurityProfileSyncStatus:
      type: string
      description: Sync status of the security profile applied on an instance/server
      enum:
      - IN_SYNC
      - UPDATING
      - OUT_OF_SYNC
    DeleteTagPayload:
      title: DeleteTagPayload
      description: Delete Tessell tag Payload
      properties:
        tagNames:
          description: List of tag names to be deleted
          type: array
          items:
            type: string
    ComputeResourceContextInfo:
      type: object
      description: Provide more context of DB Server state
      properties:
        subStatus:
          $ref: '#/components/schemas/ComputeResourceSubStatus'
        description:
          type: string
    StopDbServerPayload:
      allOf:
      - $ref: '#/components/schemas/ActionWithCommentPayload'
    SecurityProfileInfoOps:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: Id of the Security Profile
        versionId:
          type: string
          format: uuid
          description: Version Id of the Security Profile
        status:
          $ref: '#/components/schemas/SecurityProfileSyncStatus'
    InstanceAzureNetAppConfig:
      description: Service instance level Azure NetApp config
      type: object
      properties:
        azureNetAppName:
          type: string
        capacityPoolName:
          type: string
        volumeName:
          type: string
        azureNetAppId:
          description: Azure NetApp Id registered with Tessell
          type: string
          format: uuid
        capacityPoolId:
          description: Capacity Pool Id of the Azure NetApp registered with Tessell
          type: string
          format: uuid
        delegatedSubnetId:
          description: Delegated Subnet name registered with Tessell for the Azure NetApp volume
          type: string
          format: uuid
        delegatedSubnetName:
          description: Delegated Subnet Id registered with Tessell for the Azure NetApp volume
          type: string
        encryptionKeyInfo:
          $ref: '#/components/schemas/AzureNetAppEncryptionKeyInfo'
        networkFeatures:
          $ref: '#/components/schemas/AzureNetAppNetworkFeature'
        serviceLevel:
          $ref: '#/components/schemas/AzureNetAppCapacityPoolServiceLevel'
    CreateUpdateTessellTagPayload:
      title: CreateUpdateTessellTagPayload
      description: Create or update Tessell tag Payload
      properties:
        tags:
          description: List of tags
          type: array
          items:
            $ref: '#/components/schemas/TessellTag'
    TessellUpdateDatabaseIntegrationDTO:
      title: TessellUpdateDatabaseIntegrationDTO
      type: object
      properties:
        request:
          $ref: '#/components/schemas/TessellIntegrationRequestType'
        id:
          type: string
          format: uuid
          description: ID of the integration to add/remove/update from database
        tenantId:
          type: string
          minLength: 1
          maxLength: 128
          description: Tenant ID of the integration to add/remove/update from database
    UpdateComputeResourceOwnerPayload:
      type: object
      properties:
        owner:
          type: string
    ComputeConfig:
      type: object
      properties:
        provider:
          $ref: '#/components/schemas/ComputeProviderType'
        exadataConfig:
          $ref: '#/components/schemas/ExadataComputeConfig'
    ComputeResourceMaintenanceWindow:
      title: ComputeResourceMaintenanceWindow
      type: object
      description: 'Base class for compute resource maintenance window configurations.

        Supports multiple preferences: Weekly, Monthly, Quarterly, and No Preference.

        Use concrete subclasses: CrWeeklyMaintenanceWindow, CrMonthlyMaintenanceWindow, CrQuarterlyMaintenanceWindow, CrNoPreferenceMaintenanceWindow.'
      required:
      - preference
      - time
      - duration
      properties:
        preference:
          $ref: '#/components/schemas/CrMaintenanceWindowPreference'
        time:
          type: string
          description: Time value in (hh:mm) format. ex. "02:00"
          pattern: ^([0-1][0-9]|2[0-3]):[0-5][0-9]$
          example: 02:00
        duration:
          type: integer
          format: int32
          minimum: 30
          description: The duration during which the maintenance window will be allowed to trigger (in minutes)
        autoMinorVersionUpgrade:
          type: boolean
          description: Enable automatic minor version upgrades during maintenance window
        preScriptInfo:
          $ref: '#/components/schemas/ScriptInfo'
          description: Pre-script to run before patching
        postScriptInfo:
          $ref: '#/components/schemas/ScriptInfo'
          description: Post-script to run after patching
        ignorePreScriptFailure:
          type: boolean
          default: false
          description: Ignore pre-script failure and continue with patching
        ignorePostScriptFailure:
          type: boolean
          default: false
          description: Ignore post-script failure and mark patching as successful
      discriminator:
        propertyName: preference
        mapping:
          WEEKLY: '#/components/schemas/CrWeeklyMaintenanceWindow'
          MONTHLY: '#/components/schemas/CrMonthlyMaintenanceWindow'
          QUARTERLY: '#/components/schemas/CrQuarterlyMaintenanceWindow'
          NO_PREFERENCE: '#/components/schemas/CrNoPreferenceMaintenanceWindow'
    ParameterProfileStatus:
      type: string
      description: Association status of the instance to the parameter profile
      en

# --- truncated at 32 KB (58 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/tessell/refs/heads/main/openapi/tessell-compute-resource-api-openapi.yml