com.publicdomainrelay.temp.compute.events.vm.delete

johnandersen777.bsky.social

Documentation

Requests that the provider delete/tear down a provisioned VM — e.g. because its workflow finished, or because its policy engine never came up. Sent by the requester, since the provider treats the VM as a black box and cannot observe these conditions itself.

main record

Requests that the provider delete/tear down a provisioned VM — e.g. because its workflow finished, or because its policy engine never came up. Sent by the requester, since the provider treats the VM as a black box and cannot observe these conditions itself.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

reason string Required

Why the VM should be deleted, e.g. 'workflow_complete' or 'policy_engine_never_came_up'.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "reason",
      "createdAt"
    ],
    "properties": {
      "reason": {
        "type": "string",
        "description": "Why the VM should be deleted, e.g. 'workflow_complete' or 'policy_engine_never_came_up'."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      }
    }
  },
  "description": "Requests that the provider delete/tear down a provisioned VM — e.g. because its workflow finished, or because its policy engine never came up. Sent by the requester, since the provider treats the VM as a black box and cannot observe these conditions itself."
}

Lexicon Garden

@