Fastly · Schema

Acl

An ACL container that holds a list of IP address and CIDR range entries used for access control at the edge.

CDNEdge CloudEdge ComputeWebAssemblySecurityAIObservabilityAsyncAPIStreamingWebhooksLogging

Properties

Name Type Description
id string The alphanumeric string identifying the ACL.
name string The name of the ACL.
service_id string The alphanumeric string identifying the service.
version integer The version number the ACL is associated with.
created_at string The date and time the ACL was created.
updated_at string The date and time the ACL was last updated.
deleted_at string The date and time the ACL was deleted.
View JSON Schema on GitHub

JSON Schema

fastly-acl-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Acl",
  "title": "Acl",
  "type": "object",
  "description": "An ACL container that holds a list of IP address and CIDR range entries used for access control at the edge.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The alphanumeric string identifying the ACL."
    },
    "name": {
      "type": "string",
      "description": "The name of the ACL."
    },
    "service_id": {
      "type": "string",
      "description": "The alphanumeric string identifying the service."
    },
    "version": {
      "type": "integer",
      "description": "The version number the ACL is associated with."
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time the ACL was created."
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time the ACL was last updated."
    },
    "deleted_at": {
      "type": "string",
      "format": "date-time",
      "nullable": true,
      "description": "The date and time the ACL was deleted."
    }
  }
}