> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mountthor.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete bare metal machine

> DeleteBareMetalMachine deletes one BareMetalMachine by name (Foreground propagation); teardown wipes the host before any new claim.



## OpenAPI

````yaml /api-reference/compute-public.v1.openapi.json delete /compute/v1/baremetalmachines/{name}
openapi: 3.0.3
info:
  title: Mount Thor Compute — friendly public compute API
  description: >-
    ComputeService is the friendly public compute API: lifecycle (create / get /
    list / delete / power) for VirtualMachines and BareMetalMachines expressed
    in high-level terms, plus the catalog/discovery surface that supplies the
    valid images and machine classes a caller may pick from. There is
    deliberately no Update RPC: the CR spec is whole-spec CEL-immutable, so an
    "edit" is delete + recreate.
  version: 0.1.0
servers: []
security: []
tags:
  - name: ComputeService
paths:
  /compute/v1/baremetalmachines/{name}:
    delete:
      tags:
        - ComputeService
      summary: Delete bare metal machine
      description: >-
        DeleteBareMetalMachine deletes one BareMetalMachine by name (Foreground
        propagation); teardown wipes the host before any new claim.
      operationId: ComputeService_DeleteBareMetalMachine
      parameters:
        - name: name
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteBareMetalMachineResponse'
components:
  schemas:
    DeleteBareMetalMachineResponse:
      type: object
      properties: {}

````