anthropic.archiveEnvironment archives an environment so it cannot start sessions.
Example
automations/anthropic-archive-environment.automation.ts
Inputs
RequiresenvironmentId. Inputs use public camelCase names and accept signals.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Archives an environment so it cannot start sessions.
anthropic.archiveEnvironment archives an environment so it cannot start sessions.
import { automation, onInvocation, withPrerequisites } from "automate.ax"
import { anthropic } from "automate.ax/anthropic"
export default automation("Archive environment", () => {
withPrerequisites(onInvocation(), () => {
anthropic.archiveEnvironment({ environmentId: "environment-id" })
})
})
environmentId. Inputs use public camelCase names and accept signals.