Temporal · Arazzo Workflow
Temporal Delete a Namespace and Confirm Removal
Version 1.0.0
Verify a Namespace exists, delete it, then confirm it is gone.
Provider
Workflows
delete-namespace
Confirm, delete, and verify removal of a Namespace.
Chains getNamespace (confirm it exists), deleteNamespace (remove it), and a final getNamespace that branches on the 404 status to verify deletion.
1
confirmExists
getNamespace
Read the Namespace to confirm it exists before deleting and capture its current state for the record.
2
deleteNamespace
deleteNamespace
Delete the Namespace. A 200 indicates the control plane accepted the deletion request.
3
verifyGone
getNamespace
Re-read the Namespace expecting a 404 Not Found, which confirms the Namespace has been removed from the account.