stop_instance
Stop Oracle Cloud Infrastructure compute instances to manage costs, perform maintenance, or handle resource scaling. Supports both graceful shutdown and forced termination options.
Instructions
Stop an instance.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| force | No | ||
| instance_id | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "force": {
      "default": false,
      "title": "Force",
      "type": "boolean"
    },
    "instance_id": {
      "title": "Instance Id",
      "type": "string"
    }
  },
  "required": [
    "instance_id"
  ],
  "type": "object"
}