class Fastly::ACL

def create_entry(opts = {})


Create an ACL entry and add it to the ACL
#
def create_entry(opts = {})
  fetcher.create_acl_entry(
    service_id: service_id,
    acl_id: id,
    ip: opts[:ip],
    negated: opts[:negated],
    subnet: opts[:subnet],
    comment: opts[:comment]
  )
end