Fastly · Arazzo Workflow

Fastly Bulk Update ACL Entries

Version 1.0.0

Resolve an ACL by name, then create, update, and delete its entries in one batch.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub CDNEdge CloudEdge ComputeWebAssemblySecurityArtificial IntelligenceObservabilityAsyncAPIStreamingWebhookLoggingArazzoWorkflows

Provider

fastly

Workflows

bulk-update-acl-entries
Look up an ACL by name and apply a batch of entry operations.
Resolves the ACL by name to get its id, then performs a bulk update that can create, update, and delete entries in the same request.
2 steps inputs: aclName, apiToken, entries, serviceId, versionId outputs: aclId, status
1
getAcl
Resolve the ACL container by name to obtain its id.
2
bulkUpdate
Apply the batch of create, update, and delete entry operations.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Fastly Bulk Update ACL Entries
  summary: Resolve an ACL by name, then create, update, and delete its entries in one batch.
  description: >-
    Reconciles the contents of an ACL in a single call. The workflow first
    resolves the ACL container by name on a service version to obtain its id,
    then submits a batch of entry operations (create, update, delete) against
    that ACL. Every step spells out its request inline so the flow can be read
    and executed without opening the underlying OpenAPI description.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-620.20
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-620.20
      capability_name: Identity & Access Management
      spec: fastly-acl-entry-api-openapi.yml
      confidence: 0.7
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: aclApi
  url: ../openapi/fastly-acl-api-openapi.yml
  type: openapi
- name: aclEntryApi
  url: ../openapi/fastly-acl-entry-api-openapi.yml
  type: openapi
workflows:
- workflowId: bulk-update-acl-entries
  summary: Look up an ACL by name and apply a batch of entry operations.
  description: >-
    Resolves the ACL by name to get its id, then performs a bulk update that can
    create, update, and delete entries in the same request.
  inputs:
    type: object
    required:
    - apiToken
    - serviceId
    - versionId
    - aclName
    - entries
    properties:
      apiToken:
        type: string
        description: The Fastly API token used to authenticate requests.
      serviceId:
        type: string
        description: The alphanumeric identifier of the service.
      versionId:
        type: integer
        description: The version number the ACL belongs to.
      aclName:
        type: string
        description: The name of the ACL to reconcile.
      entries:
        type: array
        description: A list of entry operations (op, id, ip, subnet, negated, comment).
        items:
          type: object
  steps:
  - stepId: getAcl
    description: Resolve the ACL container by name to obtain its id.
    operationId: getAcl
    parameters:
    - name: Fastly-Key
      in: header
      value: $inputs.apiToken
    - name: service_id
      in: path
      value: $inputs.serviceId
    - name: version_id
      in: path
      value: $inputs.versionId
    - name: acl_name
      in: path
      value: $inputs.aclName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      aclId: $response.body#/id
  - stepId: bulkUpdate
    description: Apply the batch of create, update, and delete entry operations.
    operationId: bulkUpdateAclEntries
    parameters:
    - name: Fastly-Key
      in: header
      value: $inputs.apiToken
    - name: service_id
      in: path
      value: $inputs.serviceId
    - name: acl_id
      in: path
      value: $steps.getAcl.outputs.aclId
    requestBody:
      contentType: application/json
      payload:
        entries: $inputs.entries
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      status: $response.body#/status
  outputs:
    aclId: $steps.getAcl.outputs.aclId
    status: $steps.bulkUpdate.outputs.status

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/fastly-bulk-update-acl-entries-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.