data
Fastly Lua API for KosmoKrator Agents
Agent-facing Lua documentation and function reference for the Fastly KosmoKrator integration.Lua Namespace
Agents call this integration through app.integrations.fastly.*.
Use lua_read_doc("integrations.fastly") inside KosmoKrator to discover the same reference at runtime.
Call Lua from the Headless CLI
Use kosmo integrations:lua when a shell script, CI job, cron job, or another coding CLI should run a deterministic
Fastly workflow without starting an interactive agent session.
kosmo integrations:lua --eval 'dump(app.integrations.fastly.create_new_acl({}))' --json kosmo integrations:lua --eval 'print(docs.read("fastly"))' --json
kosmo integrations:lua --eval 'print(docs.read("fastly.create_new_acl"))' --json Workflow file
Put repeatable logic in a Lua file, then execute it with JSON output for the calling process.
local fastly = app.integrations.fastly
local result = fastly.create_new_acl({})
dump(result) kosmo integrations:lua workflow.lua --json
kosmo integrations:lua workflow.lua --force --json integrations:lua exposes app.integrations.fastly, app.mcp.*, docs.*, json.*, and regex.*. Use app.integrations.fastly.default.* or app.integrations.fastly.work.* when you configured named credential accounts.
MCP-only Lua
If the script only needs configured MCP servers and does not need Fastly, use the narrower mcp:lua command.
# Use mcp:lua for MCP-only scripts; use integrations:lua for this integration namespace.
kosmo mcp:lua --eval 'dump(mcp.servers())' --json Agent-Facing Lua Docs
This is the rendered version of the full Lua documentation exposed to agents when they inspect the integration namespace.
Fastly
Lua namespace: fastly
This integration exposes Fastly API operations derived from Fastly’s maintained generated PHP client and public API reference. It covers services, versions, domains, VCL, dictionaries, ACLs, config stores, secret stores, logging endpoints, purge, TLS, stats, IAM, product controls, and observability endpoints.
Authentication
Configure api_token with a Fastly API token. The integration sends it as the Fastly-Key header. Most endpoints use https://api.fastly.com; realtime stats endpoints use https://rt.fastly.com. Override api_url or rt_url only for a deliberate proxy or test host.
Payload Notes
Fastly’s generated client uses path, query, header, form, and JSON body parameters. Tool parameters preserve generated client names such as service_id, version_id, page_number, and filter_tls_domains_id. Form-backed endpoints send form-urlencoded data. JSON body-backed endpoints accept either the generated body parameter name or body.
Common Workflows
- List and inspect services with
fastly_service_list_services,fastly_service_get_service, andfastly_service_get_service_detail. - Manage versions with
fastly_version_*, then activate or validate changes. - Purge content with
fastly_purge_*tools. - Manage dictionaries, ACLs, config stores, secret stores, logging endpoints, domains, TLS, and VCL with their generated tool families.
- Query usage and realtime metrics with
fastly_stats_*,fastly_realtime_*, and observability tools.
Raw agent markdown
# Fastly
Lua namespace: `fastly`
This integration exposes Fastly API operations derived from Fastly's maintained generated PHP client and public API reference. It covers services, versions, domains, VCL, dictionaries, ACLs, config stores, secret stores, logging endpoints, purge, TLS, stats, IAM, product controls, and observability endpoints.
## Authentication
Configure `api_token` with a Fastly API token. The integration sends it as the `Fastly-Key` header. Most endpoints use `https://api.fastly.com`; realtime stats endpoints use `https://rt.fastly.com`. Override `api_url` or `rt_url` only for a deliberate proxy or test host.
## Payload Notes
Fastly's generated client uses path, query, header, form, and JSON body parameters. Tool parameters preserve generated client names such as `service_id`, `version_id`, `page_number`, and `filter_tls_domains_id`. Form-backed endpoints send form-urlencoded data. JSON body-backed endpoints accept either the generated body parameter name or `body`.
## Common Workflows
- List and inspect services with `fastly_service_list_services`, `fastly_service_get_service`, and `fastly_service_get_service_detail`.
- Manage versions with `fastly_version_*`, then activate or validate changes.
- Purge content with `fastly_purge_*` tools.
- Manage dictionaries, ACLs, config stores, secret stores, logging endpoints, domains, TLS, and VCL with their generated tool families.
- Query usage and realtime metrics with `fastly_stats_*`, `fastly_realtime_*`, and observability tools. local result = app.integrations.fastly.create_new_acl({})
print(result) Functions
create_new_acl Write
Create a new ACL
- Lua path
app.integrations.fastly.create_new_acl- Full name
fastly.fastly_acl_create_acl
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_acl Write
Delete an ACL
- Lua path
app.integrations.fastly.delete_acl- Full name
fastly.fastly_acl_delete_acl
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_multiple_acl_entries Write
Update multiple ACL entries
- Lua path
app.integrations.fastly.update_multiple_acl_entries- Full name
fastly.fastly_acl_entry_bulk_update_acl_entries
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_acl_entry Write
Create an ACL entry
- Lua path
app.integrations.fastly.create_acl_entry- Full name
fastly.fastly_acl_entry_create_acl_entry
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_acl_entry Write
Delete an ACL entry
- Lua path
app.integrations.fastly.delete_acl_entry- Full name
fastly.fastly_acl_entry_delete_acl_entry
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
describe_acl_entry Read
Describe an ACL entry
- Lua path
app.integrations.fastly.describe_acl_entry- Full name
fastly.fastly_acl_entry_get_acl_entry
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_acl_entries Read
List ACL entries
- Lua path
app.integrations.fastly.list_acl_entries- Full name
fastly.fastly_acl_entry_list_acl_entries
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_acl_entry Write
Update an ACL entry
- Lua path
app.integrations.fastly.update_acl_entry- Full name
fastly.fastly_acl_entry_update_acl_entry
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
describe_acl Read
Describe an ACL
- Lua path
app.integrations.fastly.describe_acl- Full name
fastly.fastly_acl_get_acl
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_acls Read
List ACLs
- Lua path
app.integrations.fastly.list_acls- Full name
fastly.fastly_acl_list_acls
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_acl Write
Update an ACL
- Lua path
app.integrations.fastly.update_acl- Full name
fastly.fastly_acl_update_acl
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_new_acl Write
Create a new ACL
- Lua path
app.integrations.fastly.create_new_acl- Full name
fastly.fastly_acls_in_compute_compute_acl_create_acls
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_acl Write
Delete an ACL
- Lua path
app.integrations.fastly.delete_acl- Full name
fastly.fastly_acls_in_compute_compute_acl_delete_sacl_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_acl Read
List an ACL
- Lua path
app.integrations.fastly.list_acl- Full name
fastly.fastly_acls_in_compute_compute_acl_list_acl_entries
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_acls Read
List ACLs
- Lua path
app.integrations.fastly.list_acls- Full name
fastly.fastly_acls_in_compute_compute_acl_list_acls
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
describe_acl Read
Describe an ACL
- Lua path
app.integrations.fastly.describe_acl- Full name
fastly.fastly_acls_in_compute_compute_acl_list_acls_sacl_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
lookup_acl Read
Lookup an ACL
- Lua path
app.integrations.fastly.lookup_acl- Full name
fastly.fastly_acls_in_compute_compute_acl_lookup_acls
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_acl Write
Update an ACL
- Lua path
app.integrations.fastly.update_acl- Full name
fastly.fastly_acls_in_compute_compute_acl_update_acls
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_apex_redirect Write
Create an apex redirect
- Lua path
app.integrations.fastly.create_apex_redirect- Full name
fastly.fastly_apex_redirect_create_apex_redirect
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_apex_redirect Write
Delete an apex redirect
- Lua path
app.integrations.fastly.delete_apex_redirect- Full name
fastly.fastly_apex_redirect_delete_apex_redirect
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_apex_redirect Read
Get an apex redirect
- Lua path
app.integrations.fastly.get_apex_redirect- Full name
fastly.fastly_apex_redirect_get_apex_redirect
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_apex_redirects Read
List apex redirects
- Lua path
app.integrations.fastly.list_apex_redirects- Full name
fastly.fastly_apex_redirect_list_apex_redirects
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_apex_redirect Write
Update an apex redirect
- Lua path
app.integrations.fastly.update_apex_redirect- Full name
fastly.fastly_apex_redirect_update_apex_redirect
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bulk_add_tags_operations Write
Bulk add tags to operations
- Lua path
app.integrations.fastly.bulk_add_tags_operations- Full name
fastly.fastly_apisecurity_operations_api_security_bulk_add_tags_to_operations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bulk_create_operations Write
Bulk create operations
- Lua path
app.integrations.fastly.bulk_create_operations- Full name
fastly.fastly_apisecurity_operations_api_security_bulk_create_operations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
bulk_delete_operations Write
Bulk delete operations
- Lua path
app.integrations.fastly.bulk_delete_operations- Full name
fastly.fastly_apisecurity_operations_api_security_bulk_delete_operations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_operation Write
Create operation
- Lua path
app.integrations.fastly.create_operation- Full name
fastly.fastly_apisecurity_operations_api_security_create_operation
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_operation_tag Write
Create operation tag
- Lua path
app.integrations.fastly.create_operation_tag- Full name
fastly.fastly_apisecurity_operations_api_security_create_operation_tag
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_operation Write
Delete operation
- Lua path
app.integrations.fastly.delete_operation- Full name
fastly.fastly_apisecurity_operations_api_security_delete_operation
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_operation_tag Write
Delete operation tag
- Lua path
app.integrations.fastly.delete_operation_tag- Full name
fastly.fastly_apisecurity_operations_api_security_delete_operation_tag
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieve_operation Read
Retrieve operation
- Lua path
app.integrations.fastly.retrieve_operation- Full name
fastly.fastly_apisecurity_operations_api_security_get_operation
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieve_operation_tag Read
Retrieve operation tag
- Lua path
app.integrations.fastly.retrieve_operation_tag- Full name
fastly.fastly_apisecurity_operations_api_security_get_operation_tag
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_discovered_operations Read
List discovered operations
- Lua path
app.integrations.fastly.list_discovered_operations- Full name
fastly.fastly_apisecurity_operations_api_security_list_discovered_operations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_operation_tags Read
List operation tags
- Lua path
app.integrations.fastly.list_operation_tags- Full name
fastly.fastly_apisecurity_operations_api_security_list_operation_tags
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_operations Read
List operations
- Lua path
app.integrations.fastly.list_operations- Full name
fastly.fastly_apisecurity_operations_api_security_list_operations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_operation Write
Update operation
- Lua path
app.integrations.fastly.update_operation- Full name
fastly.fastly_apisecurity_operations_api_security_update_operation
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_operation_tag Write
Update operation tag
- Lua path
app.integrations.fastly.update_operation_tag- Full name
fastly.fastly_apisecurity_operations_api_security_update_operation_tag
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_automation_token Write
Create Automation Token
- Lua path
app.integrations.fastly.create_automation_token- Full name
fastly.fastly_automation_tokens_create_automation_token
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieve_automation_token_by_id Read
Retrieve an Automation Token by ID
- Lua path
app.integrations.fastly.retrieve_automation_token_by_id- Full name
fastly.fastly_automation_tokens_get_automation_token_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_automation_token_services Read
List Automation Token Services
- Lua path
app.integrations.fastly.list_automation_token_services- Full name
fastly.fastly_automation_tokens_get_automation_tokens_id_services
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_customer_automation_tokens Read
List Customer Automation Tokens
- Lua path
app.integrations.fastly.list_customer_automation_tokens- Full name
fastly.fastly_automation_tokens_list_automation_tokens
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
revoke_automation_token_by_id Write
Revoke an Automation Token by ID
- Lua path
app.integrations.fastly.revoke_automation_token_by_id- Full name
fastly.fastly_automation_tokens_revoke_automation_token_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_backend Write
Create a backend
- Lua path
app.integrations.fastly.create_backend- Full name
fastly.fastly_backend_create_backend
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_backend Write
Delete a backend
- Lua path
app.integrations.fastly.delete_backend- Full name
fastly.fastly_backend_delete_backend
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
describe_backend Read
Describe a backend
- Lua path
app.integrations.fastly.describe_backend- Full name
fastly.fastly_backend_get_backend
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_backends Read
List backends
- Lua path
app.integrations.fastly.list_backends- Full name
fastly.fastly_backend_list_backends
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_backend Write
Update a backend
- Lua path
app.integrations.fastly.update_backend- Full name
fastly.fastly_backend_update_backend
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
add_billing_address_customer Write
Add a billing address to a customer
- Lua path
app.integrations.fastly.add_billing_address_customer- Full name
fastly.fastly_billing_address_add_billing_addr
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_billing_address Write
Delete a billing address
- Lua path
app.integrations.fastly.delete_billing_address- Full name
fastly.fastly_billing_address_delete_billing_addr
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_billing_address Read
Get a billing address
- Lua path
app.integrations.fastly.get_billing_address- Full name
fastly.fastly_billing_address_get_billing_addr
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_billing_address Write
Update a billing address
- Lua path
app.integrations.fastly.update_billing_address- Full name
fastly.fastly_billing_address_update_billing_addr
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_invoice_by_id Read
Get invoice by ID.
- Lua path
app.integrations.fastly.get_invoice_by_id- Full name
fastly.fastly_billing_invoices_get_invoice_by_invoice_id
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_month_date_invoice Read
Get month-to-date invoice.
- Lua path
app.integrations.fastly.get_month_date_invoice- Full name
fastly.fastly_billing_invoices_get_month_to_date_invoice
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_invoices Read
List of invoices.
- Lua path
app.integrations.fastly.list_invoices- Full name
fastly.fastly_billing_invoices_list_invoices
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieve_service_level_usage_metrics_services_with_non_zero_usage_units Read
Retrieve service-level usage metrics for services with non-zero usage units.
- Lua path
app.integrations.fastly.retrieve_service_level_usage_metrics_services_with_non_zero_usage_units- Full name
fastly.fastly_billing_usage_metrics_get_service_level_usage
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_monthly_usage_metrics Read
Get monthly usage metrics
- Lua path
app.integrations.fastly.get_monthly_usage_metrics- Full name
fastly.fastly_billing_usage_metrics_get_usage_metrics
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_cache_settings_object Write
Create a cache settings object
- Lua path
app.integrations.fastly.create_cache_settings_object- Full name
fastly.fastly_cache_settings_create_cache_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_cache_settings_object Write
Delete a cache settings object
- Lua path
app.integrations.fastly.delete_cache_settings_object- Full name
fastly.fastly_cache_settings_delete_cache_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_cache_settings_object Read
Get a cache settings object
- Lua path
app.integrations.fastly.get_cache_settings_object- Full name
fastly.fastly_cache_settings_get_cache_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_cache_settings_objects Read
List cache settings objects
- Lua path
app.integrations.fastly.list_cache_settings_objects- Full name
fastly.fastly_cache_settings_list_cache_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_cache_settings_object Write
Update a cache settings object
- Lua path
app.integrations.fastly.update_cache_settings_object- Full name
fastly.fastly_cache_settings_update_cache_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_condition Write
Create a condition
- Lua path
app.integrations.fastly.create_condition- Full name
fastly.fastly_condition_create_condition
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_condition Write
Delete a condition
- Lua path
app.integrations.fastly.delete_condition- Full name
fastly.fastly_condition_delete_condition
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
describe_condition Read
Describe a condition
- Lua path
app.integrations.fastly.describe_condition- Full name
fastly.fastly_condition_get_condition
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_conditions Read
List conditions
- Lua path
app.integrations.fastly.list_conditions- Full name
fastly.fastly_condition_list_conditions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_condition Write
Update a condition
- Lua path
app.integrations.fastly.update_condition- Full name
fastly.fastly_condition_update_condition
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_config_store Write
Create a config store
- Lua path
app.integrations.fastly.create_config_store- Full name
fastly.fastly_config_store_create_config_store
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_config_store Write
Delete a config store
- Lua path
app.integrations.fastly.delete_config_store- Full name
fastly.fastly_config_store_delete_config_store
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
describe_config_store Read
Describe a config store
- Lua path
app.integrations.fastly.describe_config_store- Full name
fastly.fastly_config_store_get_config_store
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_config_store_metadata Read
Get config store metadata
- Lua path
app.integrations.fastly.get_config_store_metadata- Full name
fastly.fastly_config_store_get_config_store_info
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_multiple_entries_config_store Write
Update multiple entries in a config store
- Lua path
app.integrations.fastly.update_multiple_entries_config_store- Full name
fastly.fastly_config_store_item_bulk_update_config_store_item
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_entry_config_store Write
Create an entry in a config store
- Lua path
app.integrations.fastly.create_entry_config_store- Full name
fastly.fastly_config_store_item_create_config_store_item
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_item_from_config_store Write
Delete an item from a config store
- Lua path
app.integrations.fastly.delete_item_from_config_store- Full name
fastly.fastly_config_store_item_delete_config_store_item
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_item_from_config_store Read
Get an item from a config store
- Lua path
app.integrations.fastly.get_item_from_config_store- Full name
fastly.fastly_config_store_item_get_config_store_item
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_items_config_store Read
List items in a config store
- Lua path
app.integrations.fastly.list_items_config_store- Full name
fastly.fastly_config_store_item_list_config_store_items
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_entry_config_store Write
Update an entry in a config store
- Lua path
app.integrations.fastly.update_entry_config_store- Full name
fastly.fastly_config_store_item_update_config_store_item
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insert_or_update_entry_config_store Write
Insert or update an entry in a config store
- Lua path
app.integrations.fastly.insert_or_update_entry_config_store- Full name
fastly.fastly_config_store_item_upsert_config_store_item
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_linked_services Read
List linked services
- Lua path
app.integrations.fastly.list_linked_services- Full name
fastly.fastly_config_store_list_config_store_services
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_config_stores Read
List config stores
- Lua path
app.integrations.fastly.list_config_stores- Full name
fastly.fastly_config_store_list_config_stores
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_config_store Write
Update a config store
- Lua path
app.integrations.fastly.update_config_store- Full name
fastly.fastly_config_store_update_config_store
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
add_new_customer_contact Write
Add a new customer contact
- Lua path
app.integrations.fastly.add_new_customer_contact- Full name
fastly.fastly_contact_create_contacts
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_contact Write
Delete a contact
- Lua path
app.integrations.fastly.delete_contact- Full name
fastly.fastly_contact_delete_contact
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_contacts Read
List contacts
- Lua path
app.integrations.fastly.list_contacts- Full name
fastly.fastly_contact_list_contacts
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
check_status_content_each_pop_cache Read
Check status of content in each POP's cache
- Lua path
app.integrations.fastly.check_status_content_each_pop_cache- Full name
fastly.fastly_content_content_check
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_address_associated_with_customer_account Write
Creates an address associated with a customer account.
- Lua path
app.integrations.fastly.creates_address_associated_with_customer_account- Full name
fastly.fastly_customer_addresses_create_customer_address
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
return_list_addresses_associated_with_customer_account Read
Return the list of addresses associated with a customer account.
- Lua path
app.integrations.fastly.return_list_addresses_associated_with_customer_account- Full name
fastly.fastly_customer_addresses_list_customer_addresses
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
updates_address_associated_with_customer_account Write
Updates an address associated with a customer account.
- Lua path
app.integrations.fastly.updates_address_associated_with_customer_account- Full name
fastly.fastly_customer_addresses_update_customer_address
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_customer Write
Delete a customer
- Lua path
app.integrations.fastly.delete_customer- Full name
fastly.fastly_customer_delete_customer
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_customer Read
Get a customer
- Lua path
app.integrations.fastly.get_customer- Full name
fastly.fastly_customer_get_customer
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_logged_customer Read
Get the logged in customer
- Lua path
app.integrations.fastly.get_logged_customer- Full name
fastly.fastly_customer_get_logged_in_customer
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_users Read
List users
- Lua path
app.integrations.fastly.list_users- Full name
fastly.fastly_customer_list_users
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_customer Write
Update a customer
- Lua path
app.integrations.fastly.update_customer- Full name
fastly.fastly_customer_update_customer
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_event_by_id Read
Get event by ID
- Lua path
app.integrations.fastly.get_event_by_id- Full name
fastly.fastly_ddos_protection_ddos_protection_event_get
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_events Read
Get events
- Lua path
app.integrations.fastly.get_events- Full name
fastly.fastly_ddos_protection_ddos_protection_event_list
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_all_rules_event Read
Get all rules for an event
- Lua path
app.integrations.fastly.get_all_rules_event- Full name
fastly.fastly_ddos_protection_ddos_protection_event_rule_list
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_rule_by_id Read
Get a rule by ID
- Lua path
app.integrations.fastly.get_rule_by_id- Full name
fastly.fastly_ddos_protection_ddos_protection_rule_get
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_rule Write
Update rule
- Lua path
app.integrations.fastly.update_rule- Full name
fastly.fastly_ddos_protection_ddos_protection_rule_patch
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_traffic_stats_rule Read
Get traffic stats for a rule
- Lua path
app.integrations.fastly.get_traffic_stats_rule- Full name
fastly.fastly_ddos_protection_ddos_protection_traffic_stats_rule_get
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_dictionary Write
Create a dictionary
- Lua path
app.integrations.fastly.create_dictionary- Full name
fastly.fastly_dictionary_create_dictionary
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_dictionary Write
Delete a dictionary
- Lua path
app.integrations.fastly.delete_dictionary- Full name
fastly.fastly_dictionary_delete_dictionary
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_dictionary Read
Get a dictionary
- Lua path
app.integrations.fastly.get_dictionary- Full name
fastly.fastly_dictionary_get_dictionary
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_dictionary_metadata Read
Get dictionary metadata
- Lua path
app.integrations.fastly.get_dictionary_metadata- Full name
fastly.fastly_dictionary_info_get_dictionary_info
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_multiple_entries_dictionary Write
Update multiple entries in a dictionary
- Lua path
app.integrations.fastly.update_multiple_entries_dictionary- Full name
fastly.fastly_dictionary_item_bulk_update_dictionary_item
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_entry_dictionary Write
Create an entry in a dictionary
- Lua path
app.integrations.fastly.create_entry_dictionary- Full name
fastly.fastly_dictionary_item_create_dictionary_item
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_item_from_dictionary Write
Delete an item from a dictionary
- Lua path
app.integrations.fastly.delete_item_from_dictionary- Full name
fastly.fastly_dictionary_item_delete_dictionary_item
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_item_from_dictionary Read
Get an item from a dictionary
- Lua path
app.integrations.fastly.get_item_from_dictionary- Full name
fastly.fastly_dictionary_item_get_dictionary_item
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_items_dictionary Read
List items in a dictionary
- Lua path
app.integrations.fastly.list_items_dictionary- Full name
fastly.fastly_dictionary_item_list_dictionary_items
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_entry_dictionary Write
Update an entry in a dictionary
- Lua path
app.integrations.fastly.update_entry_dictionary- Full name
fastly.fastly_dictionary_item_update_dictionary_item
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insert_or_update_entry_dictionary Write
Insert or update an entry in a dictionary
- Lua path
app.integrations.fastly.insert_or_update_entry_dictionary- Full name
fastly.fastly_dictionary_item_upsert_dictionary_item
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_dictionaries Read
List dictionaries
- Lua path
app.integrations.fastly.list_dictionaries- Full name
fastly.fastly_dictionary_list_dictionaries
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_dictionary Write
Update a dictionary
- Lua path
app.integrations.fastly.update_dictionary- Full name
fastly.fastly_dictionary_update_dictionary
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
diff_two_service_versions Read
Diff two service versions
- Lua path
app.integrations.fastly.diff_two_service_versions- Full name
fastly.fastly_diff_diff_service_versions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_director_backend_relationship Write
Create a director-backend relationship
- Lua path
app.integrations.fastly.create_director_backend_relationship- Full name
fastly.fastly_director_backend_create_director_backend
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_director_backend_relationship Write
Delete a director-backend relationship
- Lua path
app.integrations.fastly.delete_director_backend_relationship- Full name
fastly.fastly_director_backend_delete_director_backend
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_director_backend_relationship Read
Get a director-backend relationship
- Lua path
app.integrations.fastly.get_director_backend_relationship- Full name
fastly.fastly_director_backend_get_director_backend
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_director Write
Create a director
- Lua path
app.integrations.fastly.create_director- Full name
fastly.fastly_director_create_director
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_director Write
Delete a director
- Lua path
app.integrations.fastly.delete_director- Full name
fastly.fastly_director_delete_director
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_director Read
Get a director
- Lua path
app.integrations.fastly.get_director- Full name
fastly.fastly_director_get_director
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_directors Read
List directors
- Lua path
app.integrations.fastly.list_directors- Full name
fastly.fastly_director_list_directors
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_director Write
Update a director
- Lua path
app.integrations.fastly.update_director- Full name
fastly.fastly_director_update_director
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_domain Write
Create a domain
- Lua path
app.integrations.fastly.create_domain- Full name
fastly.fastly_dm_domains_create_dm_domain
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_domain Write
Delete a domain
- Lua path
app.integrations.fastly.delete_domain- Full name
fastly.fastly_dm_domains_delete_dm_domain
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_domain Read
Get a domain
- Lua path
app.integrations.fastly.get_domain- Full name
fastly.fastly_dm_domains_get_dm_domain
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_domains Read
List domains
- Lua path
app.integrations.fastly.list_domains- Full name
fastly.fastly_dm_domains_list_dm_domains
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_domain Write
Update a domain
- Lua path
app.integrations.fastly.update_domain- Full name
fastly.fastly_dm_domains_update_dm_domain
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
validate_dns_configuration_single_domain_service Read
Validate DNS configuration for a single domain on a service
- Lua path
app.integrations.fastly.validate_dns_configuration_single_domain_service- Full name
fastly.fastly_domain_check_domain
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
validate_dns_configuration_all_domains_service Read
Validate DNS configuration for all domains on a service
- Lua path
app.integrations.fastly.validate_dns_configuration_all_domains_service- Full name
fastly.fastly_domain_check_domains
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
add_domain_name_service Write
Add a domain name to a service
- Lua path
app.integrations.fastly.add_domain_name_service- Full name
fastly.fastly_domain_create_domain
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
remove_domain_from_service Write
Remove a domain from a service
- Lua path
app.integrations.fastly.remove_domain_from_service- Full name
fastly.fastly_domain_delete_domain
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
describe_domain Read
Describe a domain
- Lua path
app.integrations.fastly.describe_domain- Full name
fastly.fastly_domain_get_domain
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_historical_domain_data_service Read
Get historical domain data for a service
- Lua path
app.integrations.fastly.get_historical_domain_data_service- Full name
fastly.fastly_domain_inspector_historical_get_domain_inspector_historical
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_real_time_domain_data_last_120_seconds Read
Get real-time domain data for the last 120 seconds
- Lua path
app.integrations.fastly.get_real_time_domain_data_last_120_seconds- Full name
fastly.fastly_domain_inspector_realtime_get_domain_inspector_last120_seconds
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_limited_number_real_time_domain_data_entries Read
Get a limited number of real-time domain data entries
- Lua path
app.integrations.fastly.get_limited_number_real_time_domain_data_entries- Full name
fastly.fastly_domain_inspector_realtime_get_domain_inspector_last_max_entries
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_real_time_domain_data_from_specified_time Read
Get real-time domain data from a specified time
- Lua path
app.integrations.fastly.get_real_time_domain_data_from_specified_time- Full name
fastly.fastly_domain_inspector_realtime_get_domain_inspector_last_second
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_domains Read
List domains
- Lua path
app.integrations.fastly.list_domains- Full name
fastly.fastly_domain_list_domains
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_domain_ownerships Read
List domain-ownerships
- Lua path
app.integrations.fastly.list_domain_ownerships- Full name
fastly.fastly_domain_ownerships_list_domain_ownerships
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
domain_status Read
Domain status
- Lua path
app.integrations.fastly.domain_status- Full name
fastly.fastly_domain_research_domain_status
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
suggest_domains Read
Suggest domains
- Lua path
app.integrations.fastly.suggest_domains- Full name
fastly.fastly_domain_research_suggest_domains
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_domain Write
Update a domain
- Lua path
app.integrations.fastly.update_domain- Full name
fastly.fastly_domain_update_domain
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_event Read
Get an event
- Lua path
app.integrations.fastly.get_event- Full name
fastly.fastly_events_get_event
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_events Read
List events
- Lua path
app.integrations.fastly.list_events- Full name
fastly.fastly_events_list_events
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_gzip_configuration Write
Create a gzip configuration
- Lua path
app.integrations.fastly.create_gzip_configuration- Full name
fastly.fastly_gzip_create_gzip_config
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_gzip_configuration Write
Delete a gzip configuration
- Lua path
app.integrations.fastly.delete_gzip_configuration- Full name
fastly.fastly_gzip_delete_gzip_config
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_gzip_configuration Read
Get a gzip configuration
- Lua path
app.integrations.fastly.get_gzip_configuration- Full name
fastly.fastly_gzip_get_gzip_configs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_gzip_configurations Read
List gzip configurations
- Lua path
app.integrations.fastly.list_gzip_configurations- Full name
fastly.fastly_gzip_list_gzip_configs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_gzip_configuration Write
Update a gzip configuration
- Lua path
app.integrations.fastly.update_gzip_configuration- Full name
fastly.fastly_gzip_update_gzip_config
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_header_object Write
Create a Header object
- Lua path
app.integrations.fastly.create_header_object- Full name
fastly.fastly_header_create_header_object
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_header_object Write
Delete a Header object
- Lua path
app.integrations.fastly.delete_header_object- Full name
fastly.fastly_header_delete_header_object
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_header_object Read
Get a Header object
- Lua path
app.integrations.fastly.get_header_object- Full name
fastly.fastly_header_get_header_object
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_header_objects Read
List Header objects
- Lua path
app.integrations.fastly.list_header_objects- Full name
fastly.fastly_header_list_header_objects
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_header_object Write
Update a Header object
- Lua path
app.integrations.fastly.update_header_object- Full name
fastly.fastly_header_update_header_object
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_health_check Write
Create a health check
- Lua path
app.integrations.fastly.create_health_check- Full name
fastly.fastly_healthcheck_create_healthcheck
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_health_check Write
Delete a health check
- Lua path
app.integrations.fastly.delete_health_check- Full name
fastly.fastly_healthcheck_delete_healthcheck
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_health_check Read
Get a health check
- Lua path
app.integrations.fastly.get_health_check- Full name
fastly.fastly_healthcheck_get_healthcheck
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_health_checks Read
List health checks
- Lua path
app.integrations.fastly.list_health_checks- Full name
fastly.fastly_healthcheck_list_healthchecks
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_health_check Write
Update a health check
- Lua path
app.integrations.fastly.update_health_check- Full name
fastly.fastly_healthcheck_update_healthcheck
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_historical_stats Read
Get historical stats
- Lua path
app.integrations.fastly.get_historical_stats- Full name
fastly.fastly_historical_get_hist_stats
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_aggregated_historical_stats Read
Get aggregated historical stats
- Lua path
app.integrations.fastly.get_aggregated_historical_stats- Full name
fastly.fastly_historical_get_hist_stats_aggregated
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_historical_stats_single_field Read
Get historical stats for a single field
- Lua path
app.integrations.fastly.get_historical_stats_single_field- Full name
fastly.fastly_historical_get_hist_stats_field
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_historical_stats_single_service Read
Get historical stats for a single service
- Lua path
app.integrations.fastly.get_historical_stats_single_service- Full name
fastly.fastly_historical_get_hist_stats_service
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_historical_stats_single_service_field_combination Read
Get historical stats for a single service/field combination
- Lua path
app.integrations.fastly.get_historical_stats_single_service_field_combination- Full name
fastly.fastly_historical_get_hist_stats_service_field
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_region_codes Read
Get region codes
- Lua path
app.integrations.fastly.get_region_codes- Full name
fastly.fastly_historical_get_regions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_usage_statistics Read
Get usage statistics
- Lua path
app.integrations.fastly.get_usage_statistics- Full name
fastly.fastly_historical_get_usage
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_month_date_usage_statistics Read
Get month-to-date usage statistics
- Lua path
app.integrations.fastly.get_month_date_usage_statistics- Full name
fastly.fastly_historical_get_usage_month
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_usage_statistics_per_service Read
Get usage statistics per service
- Lua path
app.integrations.fastly.get_usage_statistics_per_service- Full name
fastly.fastly_historical_get_usage_service
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
enable_support_http_3 Write
Enable support for HTTP/3
- Lua path
app.integrations.fastly.enable_support_http_3- Full name
fastly.fastly_http3_create_http3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
disable_support_http_3 Write
Disable support for HTTP/3
- Lua path
app.integrations.fastly.disable_support_http_3- Full name
fastly.fastly_http3_delete_http3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_http_3_status Read
Get HTTP/3 status
- Lua path
app.integrations.fastly.get_http_3_status- Full name
fastly.fastly_http3_get_http3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_permissions Read
List permissions
- Lua path
app.integrations.fastly.list_permissions- Full name
fastly.fastly_iam_permissions_list_permissions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_iam_role_by_id Read
Get IAM role by ID
- Lua path
app.integrations.fastly.get_iam_role_by_id- Full name
fastly.fastly_iam_roles_iam_v1_roles_get
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_iam_roles Read
List IAM roles
- Lua path
app.integrations.fastly.list_iam_roles- Full name
fastly.fastly_iam_roles_iam_v1_roles_list
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
add_services_service_group Write
Add services in a service group
- Lua path
app.integrations.fastly.add_services_service_group- Full name
fastly.fastly_iam_service_groups_add_service_group_services
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_service_group Write
Create a service group
- Lua path
app.integrations.fastly.create_service_group- Full name
fastly.fastly_iam_service_groups_create_aservice_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_service_group Write
Delete a service group
- Lua path
app.integrations.fastly.delete_service_group- Full name
fastly.fastly_iam_service_groups_delete_aservice_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_service_group Read
Get a service group
- Lua path
app.integrations.fastly.get_service_group- Full name
fastly.fastly_iam_service_groups_get_aservice_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_services_service_group Read
List services to a service group
- Lua path
app.integrations.fastly.list_services_service_group- Full name
fastly.fastly_iam_service_groups_list_service_group_services
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_service_groups Read
List service groups
- Lua path
app.integrations.fastly.list_service_groups- Full name
fastly.fastly_iam_service_groups_list_service_groups
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
remove_services_from_service_group Write
Remove services from a service group
- Lua path
app.integrations.fastly.remove_services_from_service_group- Full name
fastly.fastly_iam_service_groups_remove_service_group_services
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_service_group Write
Update a service group
- Lua path
app.integrations.fastly.update_service_group- Full name
fastly.fastly_iam_service_groups_update_aservice_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
add_members_user_group Write
Add members to a user group
- Lua path
app.integrations.fastly.add_members_user_group- Full name
fastly.fastly_iam_user_groups_add_user_group_members
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
add_roles_user_group Write
Add roles to a user group
- Lua path
app.integrations.fastly.add_roles_user_group- Full name
fastly.fastly_iam_user_groups_add_user_group_roles
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
add_service_groups_user_group Write
Add service groups to a user group
- Lua path
app.integrations.fastly.add_service_groups_user_group- Full name
fastly.fastly_iam_user_groups_add_user_group_service_groups
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_user_group Write
Create a user group
- Lua path
app.integrations.fastly.create_user_group- Full name
fastly.fastly_iam_user_groups_create_auser_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_user_group Write
Delete a user group
- Lua path
app.integrations.fastly.delete_user_group- Full name
fastly.fastly_iam_user_groups_delete_auser_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_user_group Read
Get a user group
- Lua path
app.integrations.fastly.get_user_group- Full name
fastly.fastly_iam_user_groups_get_auser_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_members_user_group Read
List members of a user group
- Lua path
app.integrations.fastly.list_members_user_group- Full name
fastly.fastly_iam_user_groups_list_user_group_members
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_roles_user_group Read
List roles in a user group
- Lua path
app.integrations.fastly.list_roles_user_group- Full name
fastly.fastly_iam_user_groups_list_user_group_roles
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_service_groups_user_group Read
List service groups in a user group
- Lua path
app.integrations.fastly.list_service_groups_user_group- Full name
fastly.fastly_iam_user_groups_list_user_group_service_groups
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_user_groups Read
List user groups
- Lua path
app.integrations.fastly.list_user_groups- Full name
fastly.fastly_iam_user_groups_list_user_groups
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
remove_members_user_group Write
Remove members of a user group
- Lua path
app.integrations.fastly.remove_members_user_group- Full name
fastly.fastly_iam_user_groups_remove_user_group_members
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
remove_roles_from_user_group Write
Remove roles from a user group
- Lua path
app.integrations.fastly.remove_roles_from_user_group- Full name
fastly.fastly_iam_user_groups_remove_user_group_roles
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
remove_service_groups_from_user_group Write
Remove service groups from a user group
- Lua path
app.integrations.fastly.remove_service_groups_from_user_group- Full name
fastly.fastly_iam_user_groups_remove_user_group_service_groups
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_user_group Write
Update a user group
- Lua path
app.integrations.fastly.update_user_group- Full name
fastly.fastly_iam_user_groups_update_auser_group
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_current_image_optimizer_default_settings Read
Get current Image Optimizer Default Settings
- Lua path
app.integrations.fastly.get_current_image_optimizer_default_settings- Full name
fastly.fastly_image_optimizer_default_settings_get_default_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_image_optimizer_default_settings Write
Update Image Optimizer Default Settings
- Lua path
app.integrations.fastly.update_image_optimizer_default_settings- Full name
fastly.fastly_image_optimizer_default_settings_update_default_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieve_log_insights Read
Retrieve log insights
- Lua path
app.integrations.fastly.retrieve_log_insights- Full name
fastly.fastly_insights_get_log_insights
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_invitation Write
Create an invitation
- Lua path
app.integrations.fastly.create_invitation- Full name
fastly.fastly_invitations_create_invitation
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_invitation Write
Delete an invitation
- Lua path
app.integrations.fastly.delete_invitation- Full name
fastly.fastly_invitations_delete_invitation
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_invitations Read
List invitations
- Lua path
app.integrations.fastly.list_invitations- Full name
fastly.fastly_invitations_list_invitations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_item Write
Delete an item.
- Lua path
app.integrations.fastly.delete_item- Full name
fastly.fastly_kv_store_item_kv_store_delete_item
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_item Read
Get an item.
- Lua path
app.integrations.fastly.get_item- Full name
fastly.fastly_kv_store_item_kv_store_get_item
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_item_keys Read
List item keys.
- Lua path
app.integrations.fastly.list_item_keys- Full name
fastly.fastly_kv_store_item_kv_store_list_item_keys
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
insert_or_update_item Write
Insert or update an item.
- Lua path
app.integrations.fastly.insert_or_update_item- Full name
fastly.fastly_kv_store_item_kv_store_upsert_item
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_kv_store Write
Create a KV store.
- Lua path
app.integrations.fastly.create_kv_store- Full name
fastly.fastly_kv_store_kv_store_create
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_kv_store Write
Delete a KV store.
- Lua path
app.integrations.fastly.delete_kv_store- Full name
fastly.fastly_kv_store_kv_store_delete
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
describe_kv_store Read
Describe a KV store.
- Lua path
app.integrations.fastly.describe_kv_store- Full name
fastly.fastly_kv_store_kv_store_get
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_all_kv_stores Read
List all KV stores.
- Lua path
app.integrations.fastly.list_all_kv_stores- Full name
fastly.fastly_kv_store_kv_store_list
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_kv_store Write
Update a KV store.
- Lua path
app.integrations.fastly.update_kv_store- Full name
fastly.fastly_kv_store_kv_store_put
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieve_log_records Read
Retrieve log records
- Lua path
app.integrations.fastly.retrieve_log_records- Full name
fastly.fastly_log_explorer_get_log_records
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_azure_blob_storage_log_endpoint Write
Create an Azure Blob Storage log endpoint
- Lua path
app.integrations.fastly.create_azure_blob_storage_log_endpoint- Full name
fastly.fastly_logging_azureblob_create_log_azure
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_azure_blob_storage_log_endpoint Write
Delete the Azure Blob Storage log endpoint
- Lua path
app.integrations.fastly.delete_azure_blob_storage_log_endpoint- Full name
fastly.fastly_logging_azureblob_delete_log_azure
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_azure_blob_storage_log_endpoint Read
Get an Azure Blob Storage log endpoint
- Lua path
app.integrations.fastly.get_azure_blob_storage_log_endpoint- Full name
fastly.fastly_logging_azureblob_get_log_azure
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_azure_blob_storage_log_endpoints Read
List Azure Blob Storage log endpoints
- Lua path
app.integrations.fastly.list_azure_blob_storage_log_endpoints- Full name
fastly.fastly_logging_azureblob_list_log_azure
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_azure_blob_storage_log_endpoint Write
Update an Azure Blob Storage log endpoint
- Lua path
app.integrations.fastly.update_azure_blob_storage_log_endpoint- Full name
fastly.fastly_logging_azureblob_update_log_azure
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_bigquery_log_endpoint Write
Create a BigQuery log endpoint
- Lua path
app.integrations.fastly.create_bigquery_log_endpoint- Full name
fastly.fastly_logging_bigquery_create_log_bigquery
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_bigquery_log_endpoint Write
Delete a BigQuery log endpoint
- Lua path
app.integrations.fastly.delete_bigquery_log_endpoint- Full name
fastly.fastly_logging_bigquery_delete_log_bigquery
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_bigquery_log_endpoint Read
Get a BigQuery log endpoint
- Lua path
app.integrations.fastly.get_bigquery_log_endpoint- Full name
fastly.fastly_logging_bigquery_get_log_bigquery
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_bigquery_log_endpoints Read
List BigQuery log endpoints
- Lua path
app.integrations.fastly.list_bigquery_log_endpoints- Full name
fastly.fastly_logging_bigquery_list_log_bigquery
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_bigquery_log_endpoint Write
Update a BigQuery log endpoint
- Lua path
app.integrations.fastly.update_bigquery_log_endpoint- Full name
fastly.fastly_logging_bigquery_update_log_bigquery
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_cloud_files_log_endpoint Write
Create a Cloud Files log endpoint
- Lua path
app.integrations.fastly.create_cloud_files_log_endpoint- Full name
fastly.fastly_logging_cloudfiles_create_log_cloudfiles
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_cloud_files_log_endpoint Write
Delete the Cloud Files log endpoint
- Lua path
app.integrations.fastly.delete_cloud_files_log_endpoint- Full name
fastly.fastly_logging_cloudfiles_delete_log_cloudfiles
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_cloud_files_log_endpoint Read
Get a Cloud Files log endpoint
- Lua path
app.integrations.fastly.get_cloud_files_log_endpoint- Full name
fastly.fastly_logging_cloudfiles_get_log_cloudfiles
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_cloud_files_log_endpoints Read
List Cloud Files log endpoints
- Lua path
app.integrations.fastly.list_cloud_files_log_endpoints- Full name
fastly.fastly_logging_cloudfiles_list_log_cloudfiles
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_cloud_files_log_endpoint Write
Update the Cloud Files log endpoint
- Lua path
app.integrations.fastly.update_cloud_files_log_endpoint- Full name
fastly.fastly_logging_cloudfiles_update_log_cloudfiles
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_datadog_log_endpoint Write
Create a Datadog log endpoint
- Lua path
app.integrations.fastly.create_datadog_log_endpoint- Full name
fastly.fastly_logging_datadog_create_log_datadog
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_datadog_log_endpoint Write
Delete a Datadog log endpoint
- Lua path
app.integrations.fastly.delete_datadog_log_endpoint- Full name
fastly.fastly_logging_datadog_delete_log_datadog
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_datadog_log_endpoint Read
Get a Datadog log endpoint
- Lua path
app.integrations.fastly.get_datadog_log_endpoint- Full name
fastly.fastly_logging_datadog_get_log_datadog
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_datadog_log_endpoints Read
List Datadog log endpoints
- Lua path
app.integrations.fastly.list_datadog_log_endpoints- Full name
fastly.fastly_logging_datadog_list_log_datadog
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_datadog_log_endpoint Write
Update a Datadog log endpoint
- Lua path
app.integrations.fastly.update_datadog_log_endpoint- Full name
fastly.fastly_logging_datadog_update_log_datadog
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_digitalocean_spaces_log_endpoint Write
Create a DigitalOcean Spaces log endpoint
- Lua path
app.integrations.fastly.create_digitalocean_spaces_log_endpoint- Full name
fastly.fastly_logging_digitalocean_create_log_digocean
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_digitalocean_spaces_log_endpoint Write
Delete a DigitalOcean Spaces log endpoint
- Lua path
app.integrations.fastly.delete_digitalocean_spaces_log_endpoint- Full name
fastly.fastly_logging_digitalocean_delete_log_digocean
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_digitalocean_spaces_log_endpoint Read
Get a DigitalOcean Spaces log endpoint
- Lua path
app.integrations.fastly.get_digitalocean_spaces_log_endpoint- Full name
fastly.fastly_logging_digitalocean_get_log_digocean
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_digitalocean_spaces_log_endpoints Read
List DigitalOcean Spaces log endpoints
- Lua path
app.integrations.fastly.list_digitalocean_spaces_log_endpoints- Full name
fastly.fastly_logging_digitalocean_list_log_digocean
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_digitalocean_spaces_log_endpoint Write
Update a DigitalOcean Spaces log endpoint
- Lua path
app.integrations.fastly.update_digitalocean_spaces_log_endpoint- Full name
fastly.fastly_logging_digitalocean_update_log_digocean
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_elasticsearch_log_endpoint Write
Create an Elasticsearch log endpoint
- Lua path
app.integrations.fastly.create_elasticsearch_log_endpoint- Full name
fastly.fastly_logging_elasticsearch_create_log_elasticsearch
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_elasticsearch_log_endpoint Write
Delete an Elasticsearch log endpoint
- Lua path
app.integrations.fastly.delete_elasticsearch_log_endpoint- Full name
fastly.fastly_logging_elasticsearch_delete_log_elasticsearch
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_elasticsearch_log_endpoint Read
Get an Elasticsearch log endpoint
- Lua path
app.integrations.fastly.get_elasticsearch_log_endpoint- Full name
fastly.fastly_logging_elasticsearch_get_log_elasticsearch
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_elasticsearch_log_endpoints Read
List Elasticsearch log endpoints
- Lua path
app.integrations.fastly.list_elasticsearch_log_endpoints- Full name
fastly.fastly_logging_elasticsearch_list_log_elasticsearch
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_elasticsearch_log_endpoint Write
Update an Elasticsearch log endpoint
- Lua path
app.integrations.fastly.update_elasticsearch_log_endpoint- Full name
fastly.fastly_logging_elasticsearch_update_log_elasticsearch
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_ftp_log_endpoint Write
Create an FTP log endpoint
- Lua path
app.integrations.fastly.create_ftp_log_endpoint- Full name
fastly.fastly_logging_ftp_create_log_ftp
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_ftp_log_endpoint Write
Delete an FTP log endpoint
- Lua path
app.integrations.fastly.delete_ftp_log_endpoint- Full name
fastly.fastly_logging_ftp_delete_log_ftp
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_ftp_log_endpoint Read
Get an FTP log endpoint
- Lua path
app.integrations.fastly.get_ftp_log_endpoint- Full name
fastly.fastly_logging_ftp_get_log_ftp
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_ftp_log_endpoints Read
List FTP log endpoints
- Lua path
app.integrations.fastly.list_ftp_log_endpoints- Full name
fastly.fastly_logging_ftp_list_log_ftp
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_ftp_log_endpoint Write
Update an FTP log endpoint
- Lua path
app.integrations.fastly.update_ftp_log_endpoint- Full name
fastly.fastly_logging_ftp_update_log_ftp
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_gcs_log_endpoint Write
Create a GCS log endpoint
- Lua path
app.integrations.fastly.create_gcs_log_endpoint- Full name
fastly.fastly_logging_gcs_create_log_gcs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_gcs_log_endpoint Write
Delete a GCS log endpoint
- Lua path
app.integrations.fastly.delete_gcs_log_endpoint- Full name
fastly.fastly_logging_gcs_delete_log_gcs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_gcs_log_endpoint Read
Get a GCS log endpoint
- Lua path
app.integrations.fastly.get_gcs_log_endpoint- Full name
fastly.fastly_logging_gcs_get_log_gcs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_gcs_log_endpoints Read
List GCS log endpoints
- Lua path
app.integrations.fastly.list_gcs_log_endpoints- Full name
fastly.fastly_logging_gcs_list_log_gcs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_gcs_log_endpoint Write
Update a GCS log endpoint
- Lua path
app.integrations.fastly.update_gcs_log_endpoint- Full name
fastly.fastly_logging_gcs_update_log_gcs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_grafana_cloud_logs_log_endpoint Write
Create a Grafana Cloud Logs log endpoint
- Lua path
app.integrations.fastly.create_grafana_cloud_logs_log_endpoint- Full name
fastly.fastly_logging_grafanacloudlogs_create_log_grafanacloudlogs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_grafana_cloud_logs_log_endpoint Write
Delete the Grafana Cloud Logs log endpoint
- Lua path
app.integrations.fastly.delete_grafana_cloud_logs_log_endpoint- Full name
fastly.fastly_logging_grafanacloudlogs_delete_log_grafanacloudlogs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_grafana_cloud_logs_log_endpoint Read
Get a Grafana Cloud Logs log endpoint
- Lua path
app.integrations.fastly.get_grafana_cloud_logs_log_endpoint- Full name
fastly.fastly_logging_grafanacloudlogs_get_log_grafanacloudlogs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_grafana_cloud_logs_log_endpoints Read
List Grafana Cloud Logs log endpoints
- Lua path
app.integrations.fastly.list_grafana_cloud_logs_log_endpoints- Full name
fastly.fastly_logging_grafanacloudlogs_list_log_grafanacloudlogs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_grafana_cloud_logs_log_endpoint Write
Update a Grafana Cloud Logs log endpoint
- Lua path
app.integrations.fastly.update_grafana_cloud_logs_log_endpoint- Full name
fastly.fastly_logging_grafanacloudlogs_update_log_grafanacloudlogs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_heroku_log_endpoint Write
Create a Heroku log endpoint
- Lua path
app.integrations.fastly.create_heroku_log_endpoint- Full name
fastly.fastly_logging_heroku_create_log_heroku
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_heroku_log_endpoint Write
Delete the Heroku log endpoint
- Lua path
app.integrations.fastly.delete_heroku_log_endpoint- Full name
fastly.fastly_logging_heroku_delete_log_heroku
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_heroku_log_endpoint Read
Get a Heroku log endpoint
- Lua path
app.integrations.fastly.get_heroku_log_endpoint- Full name
fastly.fastly_logging_heroku_get_log_heroku
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_heroku_log_endpoints Read
List Heroku log endpoints
- Lua path
app.integrations.fastly.list_heroku_log_endpoints- Full name
fastly.fastly_logging_heroku_list_log_heroku
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_heroku_log_endpoint Write
Update the Heroku log endpoint
- Lua path
app.integrations.fastly.update_heroku_log_endpoint- Full name
fastly.fastly_logging_heroku_update_log_heroku
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_honeycomb_log_endpoint Write
Create a Honeycomb log endpoint
- Lua path
app.integrations.fastly.create_honeycomb_log_endpoint- Full name
fastly.fastly_logging_honeycomb_create_log_honeycomb
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_honeycomb_log_endpoint Write
Delete the Honeycomb log endpoint
- Lua path
app.integrations.fastly.delete_honeycomb_log_endpoint- Full name
fastly.fastly_logging_honeycomb_delete_log_honeycomb
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_honeycomb_log_endpoint Read
Get a Honeycomb log endpoint
- Lua path
app.integrations.fastly.get_honeycomb_log_endpoint- Full name
fastly.fastly_logging_honeycomb_get_log_honeycomb
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_honeycomb_log_endpoints Read
List Honeycomb log endpoints
- Lua path
app.integrations.fastly.list_honeycomb_log_endpoints- Full name
fastly.fastly_logging_honeycomb_list_log_honeycomb
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_honeycomb_log_endpoint Write
Update a Honeycomb log endpoint
- Lua path
app.integrations.fastly.update_honeycomb_log_endpoint- Full name
fastly.fastly_logging_honeycomb_update_log_honeycomb
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_https_log_endpoint Write
Create an HTTPS log endpoint
- Lua path
app.integrations.fastly.create_https_log_endpoint- Full name
fastly.fastly_logging_https_create_log_https
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_https_log_endpoint Write
Delete an HTTPS log endpoint
- Lua path
app.integrations.fastly.delete_https_log_endpoint- Full name
fastly.fastly_logging_https_delete_log_https
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_https_log_endpoint Read
Get an HTTPS log endpoint
- Lua path
app.integrations.fastly.get_https_log_endpoint- Full name
fastly.fastly_logging_https_get_log_https
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_https_log_endpoints Read
List HTTPS log endpoints
- Lua path
app.integrations.fastly.list_https_log_endpoints- Full name
fastly.fastly_logging_https_list_log_https
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_https_log_endpoint Write
Update an HTTPS log endpoint
- Lua path
app.integrations.fastly.update_https_log_endpoint- Full name
fastly.fastly_logging_https_update_log_https
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_kafka_log_endpoint Write
Create a Kafka log endpoint
- Lua path
app.integrations.fastly.create_kafka_log_endpoint- Full name
fastly.fastly_logging_kafka_create_log_kafka
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_kafka_log_endpoint Write
Delete the Kafka log endpoint
- Lua path
app.integrations.fastly.delete_kafka_log_endpoint- Full name
fastly.fastly_logging_kafka_delete_log_kafka
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_kafka_log_endpoint Read
Get a Kafka log endpoint
- Lua path
app.integrations.fastly.get_kafka_log_endpoint- Full name
fastly.fastly_logging_kafka_get_log_kafka
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_kafka_log_endpoints Read
List Kafka log endpoints
- Lua path
app.integrations.fastly.list_kafka_log_endpoints- Full name
fastly.fastly_logging_kafka_list_log_kafka
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_kafka_log_endpoint Write
Update the Kafka log endpoint
- Lua path
app.integrations.fastly.update_kafka_log_endpoint- Full name
fastly.fastly_logging_kafka_update_log_kafka
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_amazon_kinesis_log_endpoint Write
Create an Amazon Kinesis log endpoint
- Lua path
app.integrations.fastly.create_amazon_kinesis_log_endpoint- Full name
fastly.fastly_logging_kinesis_create_log_kinesis
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_amazon_kinesis_log_endpoint Write
Delete the Amazon Kinesis log endpoint
- Lua path
app.integrations.fastly.delete_amazon_kinesis_log_endpoint- Full name
fastly.fastly_logging_kinesis_delete_log_kinesis
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_amazon_kinesis_log_endpoint Read
Get an Amazon Kinesis log endpoint
- Lua path
app.integrations.fastly.get_amazon_kinesis_log_endpoint- Full name
fastly.fastly_logging_kinesis_get_log_kinesis
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_amazon_kinesis_log_endpoints Read
List Amazon Kinesis log endpoints
- Lua path
app.integrations.fastly.list_amazon_kinesis_log_endpoints- Full name
fastly.fastly_logging_kinesis_list_log_kinesis
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_amazon_kinesis_log_endpoint Write
Update the Amazon Kinesis log endpoint
- Lua path
app.integrations.fastly.update_amazon_kinesis_log_endpoint- Full name
fastly.fastly_logging_kinesis_update_log_kinesis
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_logentries_log_endpoint Write
Create a Logentries log endpoint
- Lua path
app.integrations.fastly.create_logentries_log_endpoint- Full name
fastly.fastly_logging_logentries_create_log_logentries
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_logentries_log_endpoint Write
Delete a Logentries log endpoint
- Lua path
app.integrations.fastly.delete_logentries_log_endpoint- Full name
fastly.fastly_logging_logentries_delete_log_logentries
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_logentries_log_endpoint Read
Get a Logentries log endpoint
- Lua path
app.integrations.fastly.get_logentries_log_endpoint- Full name
fastly.fastly_logging_logentries_get_log_logentries
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_logentries_log_endpoints Read
List Logentries log endpoints
- Lua path
app.integrations.fastly.list_logentries_log_endpoints- Full name
fastly.fastly_logging_logentries_list_log_logentries
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_logentries_log_endpoint Write
Update a Logentries log endpoint
- Lua path
app.integrations.fastly.update_logentries_log_endpoint- Full name
fastly.fastly_logging_logentries_update_log_logentries
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_loggly_log_endpoint Write
Create a Loggly log endpoint
- Lua path
app.integrations.fastly.create_loggly_log_endpoint- Full name
fastly.fastly_logging_loggly_create_log_loggly
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_loggly_log_endpoint Write
Delete a Loggly log endpoint
- Lua path
app.integrations.fastly.delete_loggly_log_endpoint- Full name
fastly.fastly_logging_loggly_delete_log_loggly
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_loggly_log_endpoint Read
Get a Loggly log endpoint
- Lua path
app.integrations.fastly.get_loggly_log_endpoint- Full name
fastly.fastly_logging_loggly_get_log_loggly
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_loggly_log_endpoints Read
List Loggly log endpoints
- Lua path
app.integrations.fastly.list_loggly_log_endpoints- Full name
fastly.fastly_logging_loggly_list_log_loggly
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_loggly_log_endpoint Write
Update a Loggly log endpoint
- Lua path
app.integrations.fastly.update_loggly_log_endpoint- Full name
fastly.fastly_logging_loggly_update_log_loggly
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_log_shuttle_log_endpoint Write
Create a Log Shuttle log endpoint
- Lua path
app.integrations.fastly.create_log_shuttle_log_endpoint- Full name
fastly.fastly_logging_logshuttle_create_log_logshuttle
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_log_shuttle_log_endpoint Write
Delete a Log Shuttle log endpoint
- Lua path
app.integrations.fastly.delete_log_shuttle_log_endpoint- Full name
fastly.fastly_logging_logshuttle_delete_log_logshuttle
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_log_shuttle_log_endpoint Read
Get a Log Shuttle log endpoint
- Lua path
app.integrations.fastly.get_log_shuttle_log_endpoint- Full name
fastly.fastly_logging_logshuttle_get_log_logshuttle
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_log_shuttle_log_endpoints Read
List Log Shuttle log endpoints
- Lua path
app.integrations.fastly.list_log_shuttle_log_endpoints- Full name
fastly.fastly_logging_logshuttle_list_log_logshuttle
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_log_shuttle_log_endpoint Write
Update a Log Shuttle log endpoint
- Lua path
app.integrations.fastly.update_log_shuttle_log_endpoint- Full name
fastly.fastly_logging_logshuttle_update_log_logshuttle
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_new_relic_log_endpoint Write
Create a New Relic log endpoint
- Lua path
app.integrations.fastly.create_new_relic_log_endpoint- Full name
fastly.fastly_logging_newrelic_create_log_newrelic
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_new_relic_log_endpoint Write
Delete a New Relic log endpoint
- Lua path
app.integrations.fastly.delete_new_relic_log_endpoint- Full name
fastly.fastly_logging_newrelic_delete_log_newrelic
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_new_relic_log_endpoint Read
Get a New Relic log endpoint
- Lua path
app.integrations.fastly.get_new_relic_log_endpoint- Full name
fastly.fastly_logging_newrelic_get_log_newrelic
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_new_relic_log_endpoints Read
List New Relic log endpoints
- Lua path
app.integrations.fastly.list_new_relic_log_endpoints- Full name
fastly.fastly_logging_newrelic_list_log_newrelic
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_new_relic_log_endpoint Write
Update a New Relic log endpoint
- Lua path
app.integrations.fastly.update_new_relic_log_endpoint- Full name
fastly.fastly_logging_newrelic_update_log_newrelic
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_new_relic_otlp_endpoint Write
Create a New Relic OTLP endpoint
- Lua path
app.integrations.fastly.create_new_relic_otlp_endpoint- Full name
fastly.fastly_logging_newrelicotlp_create_log_newrelicotlp
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_new_relic_otlp_endpoint Write
Delete a New Relic OTLP endpoint
- Lua path
app.integrations.fastly.delete_new_relic_otlp_endpoint- Full name
fastly.fastly_logging_newrelicotlp_delete_log_newrelicotlp
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_new_relic_otlp_endpoint Read
Get a New Relic OTLP endpoint
- Lua path
app.integrations.fastly.get_new_relic_otlp_endpoint- Full name
fastly.fastly_logging_newrelicotlp_get_log_newrelicotlp
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_new_relic_otlp_endpoints Read
List New Relic OTLP endpoints
- Lua path
app.integrations.fastly.list_new_relic_otlp_endpoints- Full name
fastly.fastly_logging_newrelicotlp_list_log_newrelicotlp
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_new_relic_log_endpoint Write
Update a New Relic log endpoint
- Lua path
app.integrations.fastly.update_new_relic_log_endpoint- Full name
fastly.fastly_logging_newrelicotlp_update_log_newrelicotlp
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_openstack_log_endpoint Write
Create an OpenStack log endpoint
- Lua path
app.integrations.fastly.create_openstack_log_endpoint- Full name
fastly.fastly_logging_openstack_create_log_openstack
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_openstack_log_endpoint Write
Delete an OpenStack log endpoint
- Lua path
app.integrations.fastly.delete_openstack_log_endpoint- Full name
fastly.fastly_logging_openstack_delete_log_openstack
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_openstack_log_endpoint Read
Get an OpenStack log endpoint
- Lua path
app.integrations.fastly.get_openstack_log_endpoint- Full name
fastly.fastly_logging_openstack_get_log_openstack
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_openstack_log_endpoints Read
List OpenStack log endpoints
- Lua path
app.integrations.fastly.list_openstack_log_endpoints- Full name
fastly.fastly_logging_openstack_list_log_openstack
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_openstack_log_endpoint Write
Update an OpenStack log endpoint
- Lua path
app.integrations.fastly.update_openstack_log_endpoint- Full name
fastly.fastly_logging_openstack_update_log_openstack
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_papertrail_log_endpoint Write
Create a Papertrail log endpoint
- Lua path
app.integrations.fastly.create_papertrail_log_endpoint- Full name
fastly.fastly_logging_papertrail_create_log_papertrail
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_papertrail_log_endpoint Write
Delete a Papertrail log endpoint
- Lua path
app.integrations.fastly.delete_papertrail_log_endpoint- Full name
fastly.fastly_logging_papertrail_delete_log_papertrail
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_papertrail_log_endpoint Read
Get a Papertrail log endpoint
- Lua path
app.integrations.fastly.get_papertrail_log_endpoint- Full name
fastly.fastly_logging_papertrail_get_log_papertrail
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_papertrail_log_endpoints Read
List Papertrail log endpoints
- Lua path
app.integrations.fastly.list_papertrail_log_endpoints- Full name
fastly.fastly_logging_papertrail_list_log_papertrail
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_papertrail_log_endpoint Write
Update a Papertrail log endpoint
- Lua path
app.integrations.fastly.update_papertrail_log_endpoint- Full name
fastly.fastly_logging_papertrail_update_log_papertrail
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_gcp_cloud_pub_sub_log_endpoint Write
Create a GCP Cloud Pub/Sub log endpoint
- Lua path
app.integrations.fastly.create_gcp_cloud_pub_sub_log_endpoint- Full name
fastly.fastly_logging_pubsub_create_log_gcp_pubsub
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_gcp_cloud_pub_sub_log_endpoint Write
Delete a GCP Cloud Pub/Sub log endpoint
- Lua path
app.integrations.fastly.delete_gcp_cloud_pub_sub_log_endpoint- Full name
fastly.fastly_logging_pubsub_delete_log_gcp_pubsub
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_gcp_cloud_pub_sub_log_endpoint Read
Get a GCP Cloud Pub/Sub log endpoint
- Lua path
app.integrations.fastly.get_gcp_cloud_pub_sub_log_endpoint- Full name
fastly.fastly_logging_pubsub_get_log_gcp_pubsub
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_gcp_cloud_pub_sub_log_endpoints Read
List GCP Cloud Pub/Sub log endpoints
- Lua path
app.integrations.fastly.list_gcp_cloud_pub_sub_log_endpoints- Full name
fastly.fastly_logging_pubsub_list_log_gcp_pubsub
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_gcp_cloud_pub_sub_log_endpoint Write
Update a GCP Cloud Pub/Sub log endpoint
- Lua path
app.integrations.fastly.update_gcp_cloud_pub_sub_log_endpoint- Full name
fastly.fastly_logging_pubsub_update_log_gcp_pubsub
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_aws_s3_log_endpoint Write
Create an AWS S3 log endpoint
- Lua path
app.integrations.fastly.create_aws_s3_log_endpoint- Full name
fastly.fastly_logging_s3_create_log_aws_s3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_aws_s3_log_endpoint Write
Delete an AWS S3 log endpoint
- Lua path
app.integrations.fastly.delete_aws_s3_log_endpoint- Full name
fastly.fastly_logging_s3_delete_log_aws_s3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_aws_s3_log_endpoint Read
Get an AWS S3 log endpoint
- Lua path
app.integrations.fastly.get_aws_s3_log_endpoint- Full name
fastly.fastly_logging_s3_get_log_aws_s3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_aws_s3_log_endpoints Read
List AWS S3 log endpoints
- Lua path
app.integrations.fastly.list_aws_s3_log_endpoints- Full name
fastly.fastly_logging_s3_list_log_aws_s3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_aws_s3_log_endpoint Write
Update an AWS S3 log endpoint
- Lua path
app.integrations.fastly.update_aws_s3_log_endpoint- Full name
fastly.fastly_logging_s3_update_log_aws_s3
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_scalyr_log_endpoint Write
Create a Scalyr log endpoint
- Lua path
app.integrations.fastly.create_scalyr_log_endpoint- Full name
fastly.fastly_logging_scalyr_create_log_scalyr
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_scalyr_log_endpoint Write
Delete the Scalyr log endpoint
- Lua path
app.integrations.fastly.delete_scalyr_log_endpoint- Full name
fastly.fastly_logging_scalyr_delete_log_scalyr
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_scalyr_log_endpoint Read
Get a Scalyr log endpoint
- Lua path
app.integrations.fastly.get_scalyr_log_endpoint- Full name
fastly.fastly_logging_scalyr_get_log_scalyr
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_scalyr_log_endpoints Read
List Scalyr log endpoints
- Lua path
app.integrations.fastly.list_scalyr_log_endpoints- Full name
fastly.fastly_logging_scalyr_list_log_scalyr
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_scalyr_log_endpoint Write
Update the Scalyr log endpoint
- Lua path
app.integrations.fastly.update_scalyr_log_endpoint- Full name
fastly.fastly_logging_scalyr_update_log_scalyr
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_sftp_log_endpoint Write
Create an SFTP log endpoint
- Lua path
app.integrations.fastly.create_sftp_log_endpoint- Full name
fastly.fastly_logging_sftp_create_log_sftp
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_sftp_log_endpoint Write
Delete an SFTP log endpoint
- Lua path
app.integrations.fastly.delete_sftp_log_endpoint- Full name
fastly.fastly_logging_sftp_delete_log_sftp
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_sftp_log_endpoint Read
Get an SFTP log endpoint
- Lua path
app.integrations.fastly.get_sftp_log_endpoint- Full name
fastly.fastly_logging_sftp_get_log_sftp
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_sftp_log_endpoints Read
List SFTP log endpoints
- Lua path
app.integrations.fastly.list_sftp_log_endpoints- Full name
fastly.fastly_logging_sftp_list_log_sftp
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_sftp_log_endpoint Write
Update an SFTP log endpoint
- Lua path
app.integrations.fastly.update_sftp_log_endpoint- Full name
fastly.fastly_logging_sftp_update_log_sftp
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_splunk_log_endpoint Write
Create a Splunk log endpoint
- Lua path
app.integrations.fastly.create_splunk_log_endpoint- Full name
fastly.fastly_logging_splunk_create_log_splunk
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_splunk_log_endpoint Write
Delete a Splunk log endpoint
- Lua path
app.integrations.fastly.delete_splunk_log_endpoint- Full name
fastly.fastly_logging_splunk_delete_log_splunk
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_splunk_log_endpoint Read
Get a Splunk log endpoint
- Lua path
app.integrations.fastly.get_splunk_log_endpoint- Full name
fastly.fastly_logging_splunk_get_log_splunk
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_splunk_log_endpoints Read
List Splunk log endpoints
- Lua path
app.integrations.fastly.list_splunk_log_endpoints- Full name
fastly.fastly_logging_splunk_list_log_splunk
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_splunk_log_endpoint Write
Update a Splunk log endpoint
- Lua path
app.integrations.fastly.update_splunk_log_endpoint- Full name
fastly.fastly_logging_splunk_update_log_splunk
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_sumologic_log_endpoint Write
Create a Sumologic log endpoint
- Lua path
app.integrations.fastly.create_sumologic_log_endpoint- Full name
fastly.fastly_logging_sumologic_create_log_sumologic
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_sumologic_log_endpoint Write
Delete a Sumologic log endpoint
- Lua path
app.integrations.fastly.delete_sumologic_log_endpoint- Full name
fastly.fastly_logging_sumologic_delete_log_sumologic
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_sumologic_log_endpoint Read
Get a Sumologic log endpoint
- Lua path
app.integrations.fastly.get_sumologic_log_endpoint- Full name
fastly.fastly_logging_sumologic_get_log_sumologic
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_sumologic_log_endpoints Read
List Sumologic log endpoints
- Lua path
app.integrations.fastly.list_sumologic_log_endpoints- Full name
fastly.fastly_logging_sumologic_list_log_sumologic
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_sumologic_log_endpoint Write
Update a Sumologic log endpoint
- Lua path
app.integrations.fastly.update_sumologic_log_endpoint- Full name
fastly.fastly_logging_sumologic_update_log_sumologic
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_syslog_log_endpoint Write
Create a syslog log endpoint
- Lua path
app.integrations.fastly.create_syslog_log_endpoint- Full name
fastly.fastly_logging_syslog_create_log_syslog
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_syslog_log_endpoint Write
Delete a syslog log endpoint
- Lua path
app.integrations.fastly.delete_syslog_log_endpoint- Full name
fastly.fastly_logging_syslog_delete_log_syslog
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_syslog_log_endpoint Read
Get a syslog log endpoint
- Lua path
app.integrations.fastly.get_syslog_log_endpoint- Full name
fastly.fastly_logging_syslog_get_log_syslog
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_syslog_log_endpoints Read
List Syslog log endpoints
- Lua path
app.integrations.fastly.list_syslog_log_endpoints- Full name
fastly.fastly_logging_syslog_list_log_syslog
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_syslog_log_endpoint Write
Update a syslog log endpoint
- Lua path
app.integrations.fastly.update_syslog_log_endpoint- Full name
fastly.fastly_logging_syslog_update_log_syslog
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_historical_time_series_metrics_single_service Read
Get historical time series metrics for a single service
- Lua path
app.integrations.fastly.get_historical_time_series_metrics_single_service- Full name
fastly.fastly_metrics_platform_get_platform_metrics_service_historical
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_mutual_authentication Write
Create a Mutual Authentication
- Lua path
app.integrations.fastly.create_mutual_authentication- Full name
fastly.fastly_mutual_authentication_create_mutual_tls_authentication
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_mutual Write
Delete a Mutual TLS
- Lua path
app.integrations.fastly.delete_mutual- Full name
fastly.fastly_mutual_authentication_delete_mutual_tls
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_mutual_authentication Read
Get a Mutual Authentication
- Lua path
app.integrations.fastly.get_mutual_authentication- Full name
fastly.fastly_mutual_authentication_get_mutual_authentication
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_mutual_authentications Read
List Mutual Authentications
- Lua path
app.integrations.fastly.list_mutual_authentications- Full name
fastly.fastly_mutual_authentication_list_mutual_authentications
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_mutual_authentication Write
Update a Mutual Authentication
- Lua path
app.integrations.fastly.update_mutual_authentication- Full name
fastly.fastly_mutual_authentication_patch_mutual_authentication
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_attacks_report Read
Get attacks report
- Lua path
app.integrations.fastly.get_attacks_report- Full name
fastly.fastly_ngwaf_reports_get_attacks_report
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_signals_report Read
Get signals report
- Lua path
app.integrations.fastly.get_signals_report- Full name
fastly.fastly_ngwaf_reports_get_signals_report
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_access_key Write
Create an access key
- Lua path
app.integrations.fastly.create_access_key- Full name
fastly.fastly_object_storage_access_keys_create_access_key
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_access_key Write
Delete an access key
- Lua path
app.integrations.fastly.delete_access_key- Full name
fastly.fastly_object_storage_access_keys_delete_access_key
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_access_key Read
Get an access key
- Lua path
app.integrations.fastly.get_access_key- Full name
fastly.fastly_object_storage_access_keys_get_access_key
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_access_keys Read
List access keys
- Lua path
app.integrations.fastly.list_access_keys- Full name
fastly.fastly_object_storage_access_keys_list_access_keys
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieve_aggregated_log_results Read
Retrieve aggregated log results
- Lua path
app.integrations.fastly.retrieve_aggregated_log_results- Full name
fastly.fastly_observability_aggregations_for_logs_log_aggregations_get
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_new_dashboard Write
Create a new dashboard
- Lua path
app.integrations.fastly.create_new_dashboard- Full name
fastly.fastly_observability_custom_dashboards_create_dashboard
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_existing_dashboard Write
Delete an existing dashboard
- Lua path
app.integrations.fastly.delete_existing_dashboard- Full name
fastly.fastly_observability_custom_dashboards_delete_dashboard
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieve_dashboard_by_id Read
Retrieve a dashboard by ID
- Lua path
app.integrations.fastly.retrieve_dashboard_by_id- Full name
fastly.fastly_observability_custom_dashboards_get_dashboard
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_all_custom_dashboards Read
List all custom dashboards
- Lua path
app.integrations.fastly.list_all_custom_dashboards- Full name
fastly.fastly_observability_custom_dashboards_list_dashboards
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_existing_dashboard Write
Update an existing dashboard
- Lua path
app.integrations.fastly.update_existing_dashboard- Full name
fastly.fastly_observability_custom_dashboards_update_dashboard
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
retrieve_observability_data_time_series Read
Retrieve observability data as a time series
- Lua path
app.integrations.fastly.retrieve_observability_data_time_series- Full name
fastly.fastly_observability_timeseries_timeseries_get
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_historical_origin_data_service Read
Get historical origin data for a service
- Lua path
app.integrations.fastly.get_historical_origin_data_service- Full name
fastly.fastly_origin_inspector_historical_get_origin_inspector_historical
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_real_time_origin_data_last_120_seconds Read
Get real-time origin data for the last 120 seconds
- Lua path
app.integrations.fastly.get_real_time_origin_data_last_120_seconds- Full name
fastly.fastly_origin_inspector_realtime_get_origin_inspector_last120_seconds
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_limited_number_real_time_origin_data_entries Read
Get a limited number of real-time origin data entries
- Lua path
app.integrations.fastly.get_limited_number_real_time_origin_data_entries- Full name
fastly.fastly_origin_inspector_realtime_get_origin_inspector_last_max_entries
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_real_time_origin_data_from_specific_time Read
Get real-time origin data from specific time.
- Lua path
app.integrations.fastly.get_real_time_origin_data_from_specific_time- Full name
fastly.fastly_origin_inspector_realtime_get_origin_inspector_last_second
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_details_service_compute_package Read
Get details of the service's Compute package.
- Lua path
app.integrations.fastly.get_details_service_compute_package- Full name
fastly.fastly_package_get_package
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
upload_compute_package Write
Upload a Compute package.
- Lua path
app.integrations.fastly.upload_compute_package- Full name
fastly.fastly_package_put_package
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_server_pool Write
Create a server pool
- Lua path
app.integrations.fastly.create_server_pool- Full name
fastly.fastly_pool_create_server_pool
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_server_pool Write
Delete a server pool
- Lua path
app.integrations.fastly.delete_server_pool- Full name
fastly.fastly_pool_delete_server_pool
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_server_pool Read
Get a server pool
- Lua path
app.integrations.fastly.get_server_pool- Full name
fastly.fastly_pool_get_server_pool
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_server_pools Read
List server pools
- Lua path
app.integrations.fastly.list_server_pools- Full name
fastly.fastly_pool_list_server_pools
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_server_pool Write
Update a server pool
- Lua path
app.integrations.fastly.update_server_pool- Full name
fastly.fastly_pool_update_server_pool
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_pops Read
List Fastly POPs
- Lua path
app.integrations.fastly.list_pops- Full name
fastly.fastly_pop_list_pops
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
disable_product Write
Disable product
- Lua path
app.integrations.fastly.disable_product- Full name
fastly.fastly_product_ai_accelerator_disable_product_ai_accelerator
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
enable_product Write
Enable product
- Lua path
app.integrations.fastly.enable_product- Full name
fastly.fastly_product_ai_accelerator_enable_ai_accelerator
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_product_enablement_status Read
Get product enablement status
- Lua path
app.integrations.fastly.get_product_enablement_status- Full name
fastly.fastly_product_ai_accelerator_get_ai_accelerator
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
disable_product Write
Disable product
- Lua path
app.integrations.fastly.disable_product- Full name
fastly.fastly_product_api_discovery_disable_product_api_discovery
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
enable_product Write
Enable product
- Lua path
app.integrations.fastly.enable_product- Full name
fastly.fastly_product_api_discovery_enable_product_api_discovery
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_product_enablement_status Read
Get product enablement status
- Lua path
app.integrations.fastly.get_product_enablement_status- Full name
fastly.fastly_product_api_discovery_get_product_api_discovery
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_services_with_product_enabled Read
Get services with product enabled
- Lua path
app.integrations.fastly.get_services_with_product_enabled- Full name
fastly.fastly_product_api_discovery_get_services_product_api_discovery
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
disable_product Write
Disable product
- Lua path
app.integrations.fastly.disable_product- Full name
fastly.fastly_product_bot_management_disable_product_bot_management
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
enable_product Write
Enable product
- Lua path
app.integrations.fastly.enable_product- Full name
fastly.fastly_product_bot_management_enable_product_bot_management
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_product_enablement_status Read
Get product enablement status
- Lua path
app.integrations.fastly.get_product_enablement_status- Full name
fastly.fastly_product_bot_management_get_product_bot_management
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_services_with_product_enabled Read
Get services with product enabled
- Lua path
app.integrations.fastly.get_services_with_product_enabled- Full name
fastly.fastly_product_bot_management_get_services_product_bot_management
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
disable_product Write
Disable product
- Lua path
app.integrations.fastly.disable_product- Full name
fastly.fastly_product_brotli_compression_disable_product_brotli_compression
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
enable_product Write
Enable product
- Lua path
app.integrations.fastly.enable_product- Full name
fastly.fastly_product_brotli_compression_enable_product_brotli_compression
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_product_enablement_status Read
Get product enablement status
- Lua path
app.integrations.fastly.get_product_enablement_status- Full name
fastly.fastly_product_brotli_compression_get_product_brotli_compression
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_services_with_product_enabled Read
Get services with product enabled
- Lua path
app.integrations.fastly.get_services_with_product_enabled- Full name
fastly.fastly_product_brotli_compression_get_services_product_brotli_compression
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
disable_product Write
Disable product
- Lua path
app.integrations.fastly.disable_product- Full name
fastly.fastly_product_ddos_protection_disable_product_ddos_protection
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
enable_product Write
Enable product
- Lua path
app.integrations.fastly.enable_product- Full name
fastly.fastly_product_ddos_protection_enable_product_ddos_protection
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_product_enablement_status Read
Get product enablement status
- Lua path
app.integrations.fastly.get_product_enablement_status- Full name
fastly.fastly_product_ddos_protection_get_product_ddos_protection
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_configuration Read
Get configuration
- Lua path
app.integrations.fastly.get_configuration- Full name
fastly.fastly_product_ddos_protection_get_product_ddos_protection_configuration
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_services_with_product_enabled Read
Get services with product enabled
- Lua path
app.integrations.fastly.get_services_with_product_enabled- Full name
fastly.fastly_product_ddos_protection_get_services_product_ddos_protection
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_configuration Write
Update configuration
- Lua path
app.integrations.fastly.update_configuration- Full name
fastly.fastly_product_ddos_protection_set_product_ddos_protection_configuration
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
disable_product Write
Disable product
- Lua path
app.integrations.fastly.disable_product- Full name
fastly.fastly_product_domain_inspector_disable_product_domain_inspector
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
enable_product Write
Enable product
- Lua path
app.integrations.fastly.enable_product- Full name
fastly.fastly_product_domain_inspector_enable_product_domain_inspector
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_product_enablement_status Read
Get product enablement status
- Lua path
app.integrations.fastly.get_product_enablement_status- Full name
fastly.fastly_product_domain_inspector_get_product_domain_inspector
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_services_with_product_enabled Read
Get services with product enabled
- Lua path
app.integrations.fastly.get_services_with_product_enabled- Full name
fastly.fastly_product_domain_inspector_get_services_product_domain_inspector
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
disable_product Write
Disable product
- Lua path
app.integrations.fastly.disable_product- Full name
fastly.fastly_product_domain_research_disable_product_domain_research
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
enable_product Write
Enable product
- Lua path
app.integrations.fastly.enable_product- Full name
fastly.fastly_product_domain_research_enable_domain_research
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_product_enablement_status Read
Get product enablement status
- Lua path
app.integrations.fastly.get_product_enablement_status- Full name
fastly.fastly_product_domain_research_get_domain_research
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
disable_product Write
Disable product
- Lua path
app.integrations.fastly.disable_product- Full name
fastly.fastly_product_fanout_disable_product_fanout
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
enable_product Write
Enable product
- Lua path
app.integrations.fastly.enable_product- Full name
fastly.fastly_product_fanout_enable_product_fanout
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_product_enablement_status Read
Get product enablement status
- Lua path
app.integrations.fastly.get_product_enablement_status- Full name
fastly.fastly_product_fanout_get_product_fanout
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_services_with_product_enabled Read
Get services with product enabled
- Lua path
app.integrations.fastly.get_services_with_product_enabled- Full name
fastly.fastly_product_fanout_get_services_product_fanout
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
disable_product Write
Disable product
- Lua path
app.integrations.fastly.disable_product- Full name
fastly.fastly_product_image_optimizer_disable_product_image_optimizer
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
enable_product Write
Enable product
- Lua path
app.integrations.fastly.enable_product- Full name
fastly.fastly_product_image_optimizer_enable_product_image_optimizer
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_product_enablement_status Read
Get product enablement status
- Lua path
app.integrations.fastly.get_product_enablement_status- Full name
fastly.fastly_product_image_optimizer_get_product_image_optimizer
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_services_with_product_enabled Read
Get services with product enabled
- Lua path
app.integrations.fastly.get_services_with_product_enabled- Full name
fastly.fastly_product_image_optimizer_get_services_product_image_optimizer
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
disable_product Write
Disable product
- Lua path
app.integrations.fastly.disable_product- Full name
fastly.fastly_product_log_explorer_insights_disable_product_log_explorer_insights
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
enable_product Write
Enable product
- Lua path
app.integrations.fastly.enable_product- Full name
fastly.fastly_product_log_explorer_insights_enable_product_log_explorer_insights
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_product_enablement_status Read
Get product enablement status
- Lua path
app.integrations.fastly.get_product_enablement_status- Full name
fastly.fastly_product_log_explorer_insights_get_product_log_explorer_insights
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_services_with_product_enabled Read
Get services with product enabled
- Lua path
app.integrations.fastly.get_services_with_product_enabled- Full name
fastly.fastly_product_log_explorer_insights_get_services_product_log_explorer_insights
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
disable_product Write
Disable product
- Lua path
app.integrations.fastly.disable_product- Full name
fastly.fastly_product_ngwaf_disable_product_ngwaf
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
enable_product Write
Enable product
- Lua path
app.integrations.fastly.enable_product- Full name
fastly.fastly_product_ngwaf_enable_product_ngwaf
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_product_enablement_status Read
Get product enablement status
- Lua path
app.integrations.fastly.get_product_enablement_status- Full name
fastly.fastly_product_ngwaf_get_product_ngwaf
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_configuration Read
Get configuration
- Lua path
app.integrations.fastly.get_configuration- Full name
fastly.fastly_product_ngwaf_get_product_ngwaf_configuration
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_services_with_product_enabled Read
Get services with product enabled
- Lua path
app.integrations.fastly.get_services_with_product_enabled- Full name
fastly.fastly_product_ngwaf_get_services_product_ngwaf
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_configuration Write
Update configuration
- Lua path
app.integrations.fastly.update_configuration- Full name
fastly.fastly_product_ngwaf_set_product_ngwaf_configuration
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
disable_product Write
Disable product
- Lua path
app.integrations.fastly.disable_product- Full name
fastly.fastly_product_object_storage_disable_product_object_storage
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
enable_product Write
Enable product
- Lua path
app.integrations.fastly.enable_product- Full name
fastly.fastly_product_object_storage_enable_object_storage
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_product_enablement_status Read
Get product enablement status
- Lua path
app.integrations.fastly.get_product_enablement_status- Full name
fastly.fastly_product_object_storage_get_object_storage
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
disable_product Write
Disable product
- Lua path
app.integrations.fastly.disable_product- Full name
fastly.fastly_product_origin_inspector_disable_product_origin_inspector
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
enable_product Write
Enable product
- Lua path
app.integrations.fastly.enable_product- Full name
fastly.fastly_product_origin_inspector_enable_product_origin_inspector
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_product_enablement_status Read
Get product enablement status
- Lua path
app.integrations.fastly.get_product_enablement_status- Full name
fastly.fastly_product_origin_inspector_get_product_origin_inspector
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_services_with_product_enabled Read
Get services with product enabled
- Lua path
app.integrations.fastly.get_services_with_product_enabled- Full name
fastly.fastly_product_origin_inspector_get_services_product_origin_inspector
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
disable_product Write
Disable product
- Lua path
app.integrations.fastly.disable_product- Full name
fastly.fastly_product_websockets_disable_product_websockets
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
enable_product Write
Enable product
- Lua path
app.integrations.fastly.enable_product- Full name
fastly.fastly_product_websockets_enable_product_websockets
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_product_enablement_status Read
Get product enablement status
- Lua path
app.integrations.fastly.get_product_enablement_status- Full name
fastly.fastly_product_websockets_get_product_websockets
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_services_with_product_enabled Read
Get services with product enabled
- Lua path
app.integrations.fastly.get_services_with_product_enabled- Full name
fastly.fastly_product_websockets_get_services_product_websockets
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_public_ips Read
List Fastly's public IPs
- Lua path
app.integrations.fastly.list_public_ips- Full name
fastly.fastly_public_ip_list_list_fastly_ips
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
send_messages_fanout_subscribers Write
Send messages to Fanout subscribers
- Lua path
app.integrations.fastly.send_messages_fanout_subscribers- Full name
fastly.fastly_publish_publish
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
purge_multiple_surrogate_key_tags Write
Purge multiple surrogate key tags
- Lua path
app.integrations.fastly.purge_multiple_surrogate_key_tags- Full name
fastly.fastly_purge_bulk_purge_tag
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
purge_everything_from_service Write
Purge everything from a service
- Lua path
app.integrations.fastly.purge_everything_from_service- Full name
fastly.fastly_purge_purge_all
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
purge_url Write
Purge a URL
- Lua path
app.integrations.fastly.purge_url- Full name
fastly.fastly_purge_purge_single_url
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
purge_by_surrogate_key_tag Write
Purge by surrogate key tag
- Lua path
app.integrations.fastly.purge_by_surrogate_key_tag- Full name
fastly.fastly_purge_purge_tag
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_rate_limiter Write
Create a rate limiter
- Lua path
app.integrations.fastly.create_rate_limiter- Full name
fastly.fastly_rate_limiter_create_rate_limiter
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_rate_limiter Write
Delete a rate limiter
- Lua path
app.integrations.fastly.delete_rate_limiter- Full name
fastly.fastly_rate_limiter_delete_rate_limiter
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_rate_limiter Read
Get a rate limiter
- Lua path
app.integrations.fastly.get_rate_limiter- Full name
fastly.fastly_rate_limiter_get_rate_limiter
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_rate_limiters Read
List rate limiters
- Lua path
app.integrations.fastly.list_rate_limiters- Full name
fastly.fastly_rate_limiter_list_rate_limiters
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_rate_limiter Write
Update a rate limiter
- Lua path
app.integrations.fastly.update_rate_limiter- Full name
fastly.fastly_rate_limiter_update_rate_limiter
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_real_time_data_last_120_seconds Read
Get real-time data for the last 120 seconds
- Lua path
app.integrations.fastly.get_real_time_data_last_120_seconds- Full name
fastly.fastly_realtime_get_stats_last120_seconds
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_limited_number_real_time_data_entries Read
Get a limited number of real-time data entries
- Lua path
app.integrations.fastly.get_limited_number_real_time_data_entries- Full name
fastly.fastly_realtime_get_stats_last120_seconds_limit_entries
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_real_time_data_from_specified_time Read
Get real-time data from specified time
- Lua path
app.integrations.fastly.get_real_time_data_from_specified_time- Full name
fastly.fastly_realtime_get_stats_last_second
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_request_settings_object Write
Create a Request Settings object
- Lua path
app.integrations.fastly.create_request_settings_object- Full name
fastly.fastly_request_settings_create_request_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_request_settings_object Write
Delete a Request Settings object
- Lua path
app.integrations.fastly.delete_request_settings_object- Full name
fastly.fastly_request_settings_delete_request_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_request_settings_object Read
Get a Request Settings object
- Lua path
app.integrations.fastly.get_request_settings_object- Full name
fastly.fastly_request_settings_get_request_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_request_settings_objects Read
List Request Settings objects
- Lua path
app.integrations.fastly.list_request_settings_objects- Full name
fastly.fastly_request_settings_list_request_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_request_settings_object Write
Update a Request Settings object
- Lua path
app.integrations.fastly.update_request_settings_object- Full name
fastly.fastly_request_settings_update_request_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_resource_link Write
Create a resource link
- Lua path
app.integrations.fastly.create_resource_link- Full name
fastly.fastly_resource_create_resource
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_resource_link Write
Delete a resource link
- Lua path
app.integrations.fastly.delete_resource_link- Full name
fastly.fastly_resource_delete_resource
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
display_resource_link Read
Display a resource link
- Lua path
app.integrations.fastly.display_resource_link- Full name
fastly.fastly_resource_get_resource
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_resource_links Read
List resource links
- Lua path
app.integrations.fastly.list_resource_links- Full name
fastly.fastly_resource_list_resources
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_resource_link Write
Update a resource link
- Lua path
app.integrations.fastly.update_resource_link- Full name
fastly.fastly_resource_update_resource
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_response_object Write
Create a Response object
- Lua path
app.integrations.fastly.create_response_object- Full name
fastly.fastly_response_object_create_response_object
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_response_object Write
Delete a Response Object
- Lua path
app.integrations.fastly.delete_response_object- Full name
fastly.fastly_response_object_delete_response_object
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_response_object Read
Get a Response object
- Lua path
app.integrations.fastly.get_response_object- Full name
fastly.fastly_response_object_get_response_object
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_response_objects Read
List Response objects
- Lua path
app.integrations.fastly.list_response_objects- Full name
fastly.fastly_response_object_list_response_objects
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_response_object Write
Update a Response object
- Lua path
app.integrations.fastly.update_response_object- Full name
fastly.fastly_response_object_update_response_object
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_new_client_key Write
Create new client key
- Lua path
app.integrations.fastly.create_new_client_key- Full name
fastly.fastly_secret_store_client_key
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_new_secret_store Write
Create new secret store
- Lua path
app.integrations.fastly.create_new_secret_store- Full name
fastly.fastly_secret_store_create_secret_store
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_secret_store Write
Delete secret store
- Lua path
app.integrations.fastly.delete_secret_store- Full name
fastly.fastly_secret_store_delete_secret_store
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_secret_store_by_id Read
Get secret store by ID
- Lua path
app.integrations.fastly.get_secret_store_by_id- Full name
fastly.fastly_secret_store_get_secret_store
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_all_secret_stores Read
Get all secret stores
- Lua path
app.integrations.fastly.get_all_secret_stores- Full name
fastly.fastly_secret_store_get_secret_stores
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_new_secret_store Write
Create a new secret in a store.
- Lua path
app.integrations.fastly.create_new_secret_store- Full name
fastly.fastly_secret_store_item_create_secret
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_secret_from_store Write
Delete a secret from a store.
- Lua path
app.integrations.fastly.delete_secret_from_store- Full name
fastly.fastly_secret_store_item_delete_secret
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_secret_metadata Read
Get secret metadata.
- Lua path
app.integrations.fastly.get_secret_metadata- Full name
fastly.fastly_secret_store_item_get_secret
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_secrets_within_store Read
List secrets within a store.
- Lua path
app.integrations.fastly.list_secrets_within_store- Full name
fastly.fastly_secret_store_item_get_secrets
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
recreate_secret_store Write
Recreate a secret in a store.
- Lua path
app.integrations.fastly.recreate_secret_store- Full name
fastly.fastly_secret_store_item_must_recreate_secret
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_or_recreate_secret_store Write
Create or recreate a secret in a store.
- Lua path
app.integrations.fastly.create_or_recreate_secret_store- Full name
fastly.fastly_secret_store_item_recreate_secret
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_public_key Read
Get public key
- Lua path
app.integrations.fastly.get_public_key- Full name
fastly.fastly_secret_store_signing_key
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
add_server_pool Write
Add a server to a pool
- Lua path
app.integrations.fastly.add_server_pool- Full name
fastly.fastly_server_create_pool_server
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_server_from_pool Write
Delete a server from a pool
- Lua path
app.integrations.fastly.delete_server_from_pool- Full name
fastly.fastly_server_delete_pool_server
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_pool_server Read
Get a pool server
- Lua path
app.integrations.fastly.get_pool_server- Full name
fastly.fastly_server_get_pool_server
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_servers_pool Read
List servers in a pool
- Lua path
app.integrations.fastly.list_servers_pool- Full name
fastly.fastly_server_list_pool_servers
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_server Write
Update a server
- Lua path
app.integrations.fastly.update_server- Full name
fastly.fastly_server_update_pool_server
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_service_authorization Write
Create service authorization
- Lua path
app.integrations.fastly.create_service_authorization- Full name
fastly.fastly_service_authorizations_create_service_authorization
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_service_authorization Write
Delete service authorization
- Lua path
app.integrations.fastly.delete_service_authorization- Full name
fastly.fastly_service_authorizations_delete_service_authorization
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_service_authorizations Write
Delete service authorizations
- Lua path
app.integrations.fastly.delete_service_authorizations- Full name
fastly.fastly_service_authorizations_delete_service_authorization2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_service_authorizations Read
List service authorizations
- Lua path
app.integrations.fastly.list_service_authorizations- Full name
fastly.fastly_service_authorizations_list_service_authorization
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
show_service_authorization Read
Show service authorization
- Lua path
app.integrations.fastly.show_service_authorization- Full name
fastly.fastly_service_authorizations_show_service_authorization
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_service_authorization Write
Update service authorization
- Lua path
app.integrations.fastly.update_service_authorization- Full name
fastly.fastly_service_authorizations_update_service_authorization
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_service_authorizations Write
Update service authorizations
- Lua path
app.integrations.fastly.update_service_authorizations- Full name
fastly.fastly_service_authorizations_update_service_authorization2
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_service Write
Create a service
- Lua path
app.integrations.fastly.create_service- Full name
fastly.fastly_service_create_service
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_service Write
Delete a service
- Lua path
app.integrations.fastly.delete_service- Full name
fastly.fastly_service_delete_service
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_service Read
Get a service
- Lua path
app.integrations.fastly.get_service- Full name
fastly.fastly_service_get_service
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_service_details Read
Get service details
- Lua path
app.integrations.fastly.get_service_details- Full name
fastly.fastly_service_get_service_detail
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_domains_within_service Read
List the domains within a service
- Lua path
app.integrations.fastly.list_domains_within_service- Full name
fastly.fastly_service_list_service_domains
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_services Read
List services
- Lua path
app.integrations.fastly.list_services- Full name
fastly.fastly_service_list_services
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
search_service_by_name Read
Search for a service by name
- Lua path
app.integrations.fastly.search_service_by_name- Full name
fastly.fastly_service_search_service
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_service Write
Update a service
- Lua path
app.integrations.fastly.update_service- Full name
fastly.fastly_service_update_service
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_service_settings Read
Get service settings
- Lua path
app.integrations.fastly.get_service_settings- Full name
fastly.fastly_settings_get_service_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_service_settings Write
Update service settings
- Lua path
app.integrations.fastly.update_service_settings- Full name
fastly.fastly_settings_update_service_settings
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_snippet Write
Create a snippet
- Lua path
app.integrations.fastly.create_snippet- Full name
fastly.fastly_snippet_create_snippet
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_snippet Write
Delete a snippet
- Lua path
app.integrations.fastly.delete_snippet- Full name
fastly.fastly_snippet_delete_snippet
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_versioned_snippet Read
Get a versioned snippet
- Lua path
app.integrations.fastly.get_versioned_snippet- Full name
fastly.fastly_snippet_get_snippet
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_dynamic_snippet Read
Get a dynamic snippet
- Lua path
app.integrations.fastly.get_dynamic_snippet- Full name
fastly.fastly_snippet_get_snippet_dynamic
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_snippets Read
List snippets
- Lua path
app.integrations.fastly.list_snippets- Full name
fastly.fastly_snippet_list_snippets
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_versioned_snippet Write
Update a versioned snippet
- Lua path
app.integrations.fastly.update_versioned_snippet- Full name
fastly.fastly_snippet_update_snippet
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_dynamic_snippet Write
Update a dynamic snippet
- Lua path
app.integrations.fastly.update_dynamic_snippet- Full name
fastly.fastly_snippet_update_snippet_dynamic
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_star Write
Create a star
- Lua path
app.integrations.fastly.create_star- Full name
fastly.fastly_star_create_service_star
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_star Write
Delete a star
- Lua path
app.integrations.fastly.delete_star- Full name
fastly.fastly_star_delete_service_star
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_star Read
Get a star
- Lua path
app.integrations.fastly.get_star- Full name
fastly.fastly_star_get_service_star
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_stars Read
List stars
- Lua path
app.integrations.fastly.list_stars- Full name
fastly.fastly_star_list_service_stars
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_stats_service Read
Get stats for a service
- Lua path
app.integrations.fastly.get_stats_service- Full name
fastly.fastly_stats_get_service_stats
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
request_sudo_access Write
Request Sudo access
- Lua path
app.integrations.fastly.request_sudo_access- Full name
fastly.fastly_sudo_request_sudo_access
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
enable_domain_using_custom_certificate Write
Enable TLS for a domain using a custom certificate
- Lua path
app.integrations.fastly.enable_domain_using_custom_certificate- Full name
fastly.fastly_tls_activations_create_tls_activation
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
disable_domain Write
Disable TLS on a domain
- Lua path
app.integrations.fastly.disable_domain- Full name
fastly.fastly_tls_activations_delete_tls_activation
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_activation Read
Get a TLS activation
- Lua path
app.integrations.fastly.get_activation- Full name
fastly.fastly_tls_activations_get_tls_activation
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_activations Read
List TLS activations
- Lua path
app.integrations.fastly.list_activations- Full name
fastly.fastly_tls_activations_list_tls_activations
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_certificate Write
Update a certificate
- Lua path
app.integrations.fastly.update_certificate- Full name
fastly.fastly_tls_activations_update_tls_activation
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_certificate Write
Delete a certificate
- Lua path
app.integrations.fastly.delete_certificate- Full name
fastly.fastly_tls_bulk_certificates_delete_bulk_tls_cert
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_certificate Read
Get a certificate
- Lua path
app.integrations.fastly.get_certificate- Full name
fastly.fastly_tls_bulk_certificates_get_tls_bulk_cert
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_certificates Read
List certificates
- Lua path
app.integrations.fastly.list_certificates- Full name
fastly.fastly_tls_bulk_certificates_list_tls_bulk_certs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_certificate Write
Update a certificate
- Lua path
app.integrations.fastly.update_certificate- Full name
fastly.fastly_tls_bulk_certificates_update_bulk_tls_cert
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
upload_certificate Write
Upload a certificate
- Lua path
app.integrations.fastly.upload_certificate- Full name
fastly.fastly_tls_bulk_certificates_upload_tls_bulk_cert
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_certificate Write
Create a TLS certificate
- Lua path
app.integrations.fastly.create_certificate- Full name
fastly.fastly_tls_certificates_create_tls_cert
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_certificate Write
Delete a TLS certificate
- Lua path
app.integrations.fastly.delete_certificate- Full name
fastly.fastly_tls_certificates_delete_tls_cert
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_certificate Read
Get a TLS certificate
- Lua path
app.integrations.fastly.get_certificate- Full name
fastly.fastly_tls_certificates_get_tls_cert
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_certificate_blob_limited_availability Read
Get a TLS certificate blob (Limited Availability)
- Lua path
app.integrations.fastly.get_certificate_blob_limited_availability- Full name
fastly.fastly_tls_certificates_get_tls_cert_blob
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_certificates Read
List TLS certificates
- Lua path
app.integrations.fastly.list_certificates- Full name
fastly.fastly_tls_certificates_list_tls_certs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_certificate Write
Update a TLS certificate
- Lua path
app.integrations.fastly.update_certificate- Full name
fastly.fastly_tls_certificates_update_tls_cert
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_configuration Read
Get a TLS configuration
- Lua path
app.integrations.fastly.get_configuration- Full name
fastly.fastly_tls_configurations_get_tls_config
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_configurations Read
List TLS configurations
- Lua path
app.integrations.fastly.list_configurations- Full name
fastly.fastly_tls_configurations_list_tls_configs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_configuration Write
Update a TLS configuration
- Lua path
app.integrations.fastly.update_configuration- Full name
fastly.fastly_tls_configurations_update_tls_config
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_csr Write
Create CSR
- Lua path
app.integrations.fastly.create_csr- Full name
fastly.fastly_tls_csrs_create_csr
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_domains Read
List TLS domains
- Lua path
app.integrations.fastly.list_domains- Full name
fastly.fastly_tls_domains_list_tls_domains
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_private_key Write
Create a TLS private key
- Lua path
app.integrations.fastly.create_private_key- Full name
fastly.fastly_tls_private_keys_create_tls_key
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_private_key Write
Delete a TLS private key
- Lua path
app.integrations.fastly.delete_private_key- Full name
fastly.fastly_tls_private_keys_delete_tls_key
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_private_key Read
Get a TLS private key
- Lua path
app.integrations.fastly.get_private_key- Full name
fastly.fastly_tls_private_keys_get_tls_key
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_private_keys Read
List TLS private keys
- Lua path
app.integrations.fastly.list_private_keys- Full name
fastly.fastly_tls_private_keys_list_tls_keys
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
creates_globalsign_email_challenge Write
Creates a GlobalSign email challenge.
- Lua path
app.integrations.fastly.creates_globalsign_email_challenge- Full name
fastly.fastly_tls_subscriptions_create_globalsign_email_challenge
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_subscription Write
Create a TLS subscription
- Lua path
app.integrations.fastly.create_subscription- Full name
fastly.fastly_tls_subscriptions_create_tls_sub
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_globalsign_email_challenge Write
Delete a GlobalSign email challenge
- Lua path
app.integrations.fastly.delete_globalsign_email_challenge- Full name
fastly.fastly_tls_subscriptions_delete_globalsign_email_challenge
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_subscription Write
Delete a TLS subscription
- Lua path
app.integrations.fastly.delete_subscription- Full name
fastly.fastly_tls_subscriptions_delete_tls_sub
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_subscription Read
Get a TLS subscription
- Lua path
app.integrations.fastly.get_subscription- Full name
fastly.fastly_tls_subscriptions_get_tls_sub
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_subscriptions Read
List TLS subscriptions
- Lua path
app.integrations.fastly.list_subscriptions- Full name
fastly.fastly_tls_subscriptions_list_tls_subs
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_subscription Write
Update a TLS subscription
- Lua path
app.integrations.fastly.update_subscription- Full name
fastly.fastly_tls_subscriptions_patch_tls_sub
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
revoke_multiple_tokens Write
Revoke multiple tokens
- Lua path
app.integrations.fastly.revoke_multiple_tokens- Full name
fastly.fastly_tokens_bulk_revoke_tokens
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_token Write
Create a token
- Lua path
app.integrations.fastly.create_token- Full name
fastly.fastly_tokens_create_token
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_token Read
Get a token
- Lua path
app.integrations.fastly.get_token- Full name
fastly.fastly_tokens_get_token
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_current_token Read
Get the current token
- Lua path
app.integrations.fastly.get_current_token- Full name
fastly.fastly_tokens_get_token_current
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_tokens_customer Read
List tokens for a customer
- Lua path
app.integrations.fastly.list_tokens_customer- Full name
fastly.fastly_tokens_list_tokens_customer
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_tokens_authenticated_user Read
List tokens for the authenticated user
- Lua path
app.integrations.fastly.list_tokens_authenticated_user- Full name
fastly.fastly_tokens_list_tokens_user
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
revoke_token Write
Revoke a token
- Lua path
app.integrations.fastly.revoke_token- Full name
fastly.fastly_tokens_revoke_token
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
revoke_current_token Write
Revoke the current token
- Lua path
app.integrations.fastly.revoke_current_token- Full name
fastly.fastly_tokens_revoke_token_current
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_user Write
Create a user
- Lua path
app.integrations.fastly.create_user- Full name
fastly.fastly_user_create_user
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_user Write
Delete a user
- Lua path
app.integrations.fastly.delete_user- Full name
fastly.fastly_user_delete_user
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_current_user Read
Get the current user
- Lua path
app.integrations.fastly.get_current_user- Full name
fastly.fastly_user_get_current_user
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_user Read
Get a user
- Lua path
app.integrations.fastly.get_user- Full name
fastly.fastly_user_get_user
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
request_password_reset Write
Request a password reset
- Lua path
app.integrations.fastly.request_password_reset- Full name
fastly.fastly_user_request_password_reset
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_user Write
Update a user
- Lua path
app.integrations.fastly.update_user- Full name
fastly.fastly_user_update_user
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_user_password Write
Update the user's password
- Lua path
app.integrations.fastly.update_user_password- Full name
fastly.fastly_user_update_user_password
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_custom_vcl_file Write
Create a custom VCL file
- Lua path
app.integrations.fastly.create_custom_vcl_file- Full name
fastly.fastly_vcl_create_custom_vcl
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
delete_custom_vcl_file Write
Delete a custom VCL file
- Lua path
app.integrations.fastly.delete_custom_vcl_file- Full name
fastly.fastly_vcl_delete_custom_vcl
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_comparison_vcl_changes_between_two_service_versions Read
Get a comparison of the VCL changes between two service versions
- Lua path
app.integrations.fastly.get_comparison_vcl_changes_between_two_service_versions- Full name
fastly.fastly_vcl_diff_vcl_diff_service_versions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_custom_vcl_file Read
Get a custom VCL file
- Lua path
app.integrations.fastly.get_custom_vcl_file- Full name
fastly.fastly_vcl_get_custom_vcl
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_boilerplate_vcl Read
Get boilerplate VCL
- Lua path
app.integrations.fastly.get_boilerplate_vcl- Full name
fastly.fastly_vcl_get_custom_vcl_boilerplate
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_generated_vcl_service Read
Get the generated VCL for a service
- Lua path
app.integrations.fastly.get_generated_vcl_service- Full name
fastly.fastly_vcl_get_custom_vcl_generated
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_generated_vcl_with_syntax_highlighting Read
Get the generated VCL with syntax highlighting
- Lua path
app.integrations.fastly.get_generated_vcl_with_syntax_highlighting- Full name
fastly.fastly_vcl_get_custom_vcl_generated_highlighted
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_custom_vcl_file_with_syntax_highlighting Read
Get a custom VCL file with syntax highlighting
- Lua path
app.integrations.fastly.get_custom_vcl_file_with_syntax_highlighting- Full name
fastly.fastly_vcl_get_custom_vcl_highlighted
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
download_custom_vcl_file Read
Download a custom VCL file
- Lua path
app.integrations.fastly.download_custom_vcl_file- Full name
fastly.fastly_vcl_get_custom_vcl_raw
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
lint_validate_vcl_using_default_set_flags Write
Lint (validate) VCL using a default set of flags.
- Lua path
app.integrations.fastly.lint_validate_vcl_using_default_set_flags- Full name
fastly.fastly_vcl_lint_vcl_default
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
lint_validate_vcl_using_flags_set_service Write
Lint (validate) VCL using flags set for the service.
- Lua path
app.integrations.fastly.lint_validate_vcl_using_flags_set_service- Full name
fastly.fastly_vcl_lint_vcl_for_service
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_custom_vcl_files Read
List custom VCL files
- Lua path
app.integrations.fastly.list_custom_vcl_files- Full name
fastly.fastly_vcl_list_custom_vcl
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
set_custom_vcl_file_main Write
Set a custom VCL file as main
- Lua path
app.integrations.fastly.set_custom_vcl_file_main- Full name
fastly.fastly_vcl_set_custom_vcl_main
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_custom_vcl_file Write
Update a custom VCL file
- Lua path
app.integrations.fastly.update_custom_vcl_file- Full name
fastly.fastly_vcl_update_custom_vcl
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
activate_service_version Write
Activate a service version
- Lua path
app.integrations.fastly.activate_service_version- Full name
fastly.fastly_version_activate_service_version
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
activate_service_version_specified_environment Write
Activate a service version on the specified environment
- Lua path
app.integrations.fastly.activate_service_version_specified_environment- Full name
fastly.fastly_version_activate_service_version_environment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
clone_service_version Write
Clone a service version
- Lua path
app.integrations.fastly.clone_service_version- Full name
fastly.fastly_version_clone_service_version
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
create_service_version Write
Create a service version
- Lua path
app.integrations.fastly.create_service_version- Full name
fastly.fastly_version_create_service_version
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
deactivate_service_version Write
Deactivate a service version
- Lua path
app.integrations.fastly.deactivate_service_version- Full name
fastly.fastly_version_deactivate_service_version
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
deactivate_service_version_environment Write
Deactivate a service version on an environment
- Lua path
app.integrations.fastly.deactivate_service_version_environment- Full name
fastly.fastly_version_deactivate_service_version_environment
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_version_service Read
Get a version of a service
- Lua path
app.integrations.fastly.get_version_service- Full name
fastly.fastly_version_get_service_version
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
list_versions_service Read
List versions of a service
- Lua path
app.integrations.fastly.list_versions_service- Full name
fastly.fastly_version_list_service_versions
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
lock_service_version Write
Lock a service version
- Lua path
app.integrations.fastly.lock_service_version- Full name
fastly.fastly_version_lock_service_version
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
update_service_version Write
Update a service version
- Lua path
app.integrations.fastly.update_service_version- Full name
fastly.fastly_version_update_service_version
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
validate_service_version Read
Validate a service version
- Lua path
app.integrations.fastly.validate_service_version- Full name
fastly.fastly_version_validate_service_version
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
get_historical_ddos_metrics_entire_platform Read
Get historical DDoS metrics for the entire Fastly platform
- Lua path
app.integrations.fastly.get_historical_ddos_metrics_entire_platform- Full name
fastly.fastly_whole_platform_ddos_historical_get_platform_ddos_historical
| Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||