A Rust client library for interacting with most facets of the Fastly API.
NOTE: This API client is auto-generated from Fastly's OpenAPI specification and may not function correctly when used on the Compute@Edge platform. Support for Compute@Edge is on the roadmap but has not yet been prioritised.
Rust 2021 Edition
Add the following to Cargo.toml
under [dependencies]
:
toml
fastly-api = "4.1.0"
```rust use anyhow::Result; use fastlyapi::apis::configuration::{ApiKey, Configuration}; use fastlyapi::apis::serviceapi::{createservice, CreateServiceParams}; use std::env;
async fn main() -> Result<()> { let cfg = &Configuration { apikey: Some(ApiKey { prefix: None, key: "YOURAPIKEY", }), ..Default::default() }; let servicename = "fastly-rust-service";
let customer_id = env::var("FASTLY_CUSTOMER_ID")?;
let params = CreateServiceParams {
name: Some(service_name.to_string()),
customer_id: Some(customer_id),
..Default::default()
};
create_service(cfg, params).await?
} ```
The Fastly API requires an API token for most operations. Set it by assigning api_key
to a configuration as shown:
rust
let cfg = &Configuration {
api_key: Some(ApiKey {
prefix: None,
key: "YOUR_API_KEY",
}),
..Default::default()
};
Alternatively, set the FASTLY_API_TOKEN
environment variable and use the default constructor:
rust
let cfg = &Configuration::default();
All URIs are relative to https://api.fastly.com
Class | Method | HTTP request | Description ------------ | ------------- | ------------- | ------------- AclApi | createacl | POST /service/{serviceid}/version/{versionid}/acl | Create a new ACL *AclApi* | deleteacl | DELETE /service/{serviceid}/version/{versionid}/acl/{aclname} | Delete an ACL *AclApi* | getacl | GET /service/{serviceid}/version/{versionid}/acl/{aclname} | Describe an ACL *AclApi* | listacls | GET /service/{serviceid}/version/{versionid}/acl | List ACLs AclApi | updateacl | PUT /service/{serviceid}/version/{versionid}/acl/{aclname} | Update an ACL AclEntryApi | bulkupdateaclentries | PATCH /service/{serviceid}/acl/{aclid}/entries | Update multiple ACL entries *AclEntryApi* | createaclentry | POST /service/{serviceid}/acl/{aclid}/entry | Create an ACL entry *AclEntryApi* | deleteaclentry | DELETE /service/{serviceid}/acl/{aclid}/entry/{aclentryid} | Delete an ACL entry *AclEntryApi* | getaclentry | GET /service/{serviceid}/acl/{aclid}/entry/{aclentryid} | Describe an ACL entry *AclEntryApi* | listaclentries | GET /service/{serviceid}/acl/{aclid}/entries | List ACL entries *AclEntryApi* | updateaclentry | PATCH /service/{serviceid}/acl/{aclid}/entry/{aclentryid} | Update an ACL entry *ApexRedirectApi* | createapexredirect | POST /service/{serviceid}/version/{versionid}/apex-redirects | Create an apex redirect *ApexRedirectApi* | deleteapexredirect | DELETE /apex-redirects/{apexredirectid} | Delete an apex redirect *ApexRedirectApi* | getapexredirect | GET /apex-redirects/{apexredirectid} | Get an apex redirect *ApexRedirectApi* | listapexredirects | GET /service/{serviceid}/version/{versionid}/apex-redirects | List apex redirects *ApexRedirectApi* | updateapexredirect | PUT /apex-redirects/{apexredirectid} | Update an apex redirect *AutomationTokensApi* | createautomationtoken | POST /automation-tokens | Create Automation Token *AutomationTokensApi* | getautomationtokenid | GET /automation-tokens/{id} | Retrieve an Automation Token by ID AutomationTokensApi | getautomationtokensidservices | GET /automation-tokens/{id}/services | List Automation Token Services AutomationTokensApi | listautomationtokens | GET /automation-tokens | List Customer Automation Tokens AutomationTokensApi | revokeautomationtokenid | DELETE /automation-tokens/{id} | Revoke an Automation Token by ID *BackendApi* | createbackend | POST /service/{serviceid}/version/{versionid}/backend | Create a backend BackendApi | deletebackend | DELETE /service/{serviceid}/version/{versionid}/backend/{backendname} | Delete a backend BackendApi | getbackend | GET /service/{serviceid}/version/{versionid}/backend/{backendname} | Describe a backend BackendApi | listbackends | GET /service/{serviceid}/version/{versionid}/backend | List backends *BackendApi* | updatebackend | PUT /service/{serviceid}/version/{versionid}/backend/{backendname} | Update a backend *BillingApi* | getinvoice | GET /billing/v2/year/{year}/month/{month} | Get an invoice BillingApi | getinvoicebyid | GET /billing/v2/accountcustomers/{customerid}/invoices/{invoiceid} | Get an invoice BillingApi | getinvoicemtd | GET /billing/v2/accountcustomers/{customerid}/mtdinvoice | Get month-to-date billing estimate *BillingAddressApi* | addbillingaddr | POST /customer/{customerid}/billingaddress | Add a billing address to a customer *BillingAddressApi* | deletebillingaddr | DELETE /customer/{customerid}/billingaddress | Delete a billing address *BillingAddressApi* | getbillingaddr | GET /customer/{customerid}/billingaddress | Get a billing address *BillingAddressApi* | updatebillingaddr | PATCH /customer/{customerid}/billingaddress | Update a billing address *CacheSettingsApi* | createcachesettings | POST /service/{serviceid}/version/{versionid}/cachesettings | Create a cache settings object CacheSettingsApi | deletecachesettings | DELETE /service/{serviceid}/version/{versionid}/cachesettings/{cachesettingsname} | Delete a cache settings object *CacheSettingsApi* | getcachesettings | GET /service/{serviceid}/version/{versionid}/cachesettings/{cachesettingsname} | Get a cache settings object CacheSettingsApi | listcachesettings | GET /service/{serviceid}/version/{versionid}/cachesettings | List cache settings objects *CacheSettingsApi* | updatecachesettings | PUT /service/{serviceid}/version/{versionid}/cachesettings/{cachesettingsname} | Update a cache settings object ConditionApi | createcondition | POST /service/{serviceid}/version/{versionid}/condition | Create a condition *ConditionApi* | deletecondition | DELETE /service/{serviceid}/version/{versionid}/condition/{conditionname} | Delete a condition *ConditionApi* | getcondition | GET /service/{serviceid}/version/{versionid}/condition/{conditionname} | Describe a condition *ConditionApi* | listconditions | GET /service/{serviceid}/version/{versionid}/condition | List conditions ConditionApi | updatecondition | PUT /service/{serviceid}/version/{versionid}/condition/{conditionname} | Update a condition ConfigStoreApi | createconfigstore | POST /resources/stores/config | Create a config store ConfigStoreApi | deleteconfigstore | DELETE /resources/stores/config/{configstoreid} | Delete a config store ConfigStoreApi | getconfigstore | GET /resources/stores/config/{configstoreid} | Describe a config store ConfigStoreApi | getconfigstoreinfo | GET /resources/stores/config/{configstoreid}/info | Get config store metadata *ConfigStoreApi* | listconfigstoreservices | GET /resources/stores/config/{configstoreid}/services | List linked services ConfigStoreApi | listconfigstores | GET /resources/stores/config | List config stores ConfigStoreApi | updateconfigstore | PUT /resources/stores/config/{configstoreid} | Update a config store ConfigStoreItemApi | bulkupdateconfigstoreitem | PATCH /resources/stores/config/{configstoreid}/items | Update multiple entries in a config store ConfigStoreItemApi | createconfigstoreitem | POST /resources/stores/config/{configstoreid}/item | Create an entry in a config store *ConfigStoreItemApi* | deleteconfigstoreitem | DELETE /resources/stores/config/{configstoreid}/item/{configstoreitemkey} | Delete an item from a config store *ConfigStoreItemApi* | getconfigstoreitem | GET /resources/stores/config/{configstoreid}/item/{configstoreitemkey} | Get an item from a config store *ConfigStoreItemApi* | listconfigstoreitems | GET /resources/stores/config/{configstoreid}/items | List items in a config store ConfigStoreItemApi | updateconfigstoreitem | PATCH /resources/stores/config/{configstoreid}/item/{configstoreitemkey} | Update an entry in a config store ConfigStoreItemApi | upsertconfigstoreitem | PUT /resources/stores/config/{configstoreid}/item/{configstoreitemkey} | Insert or update an entry in a config store ContactApi | createcontacts | POST /customer/{customerid}/contacts | Add a new customer contact ContactApi | deletecontact | DELETE /customer/{customerid}/contact/{contactid} | Delete a contact *ContactApi* | listcontacts | GET /customer/{customerid}/contacts | List contacts *ContentApi* | contentcheck | GET /content/edgecheck | Check status of content in each POP's cache *CustomerApi* | deletecustomer | DELETE /customer/{customerid} | Delete a customer *CustomerApi* | getcustomer | GET /customer/{customerid} | Get a customer *CustomerApi* | getloggedincustomer | GET /currentcustomer | Get the logged in customer *CustomerApi* | listusers | GET /customer/{customerid}/users | List users *CustomerApi* | updatecustomer | PUT /customer/{customerid} | Update a customer *DictionaryApi* | createdictionary | POST /service/{serviceid}/version/{versionid}/dictionary | Create an edge dictionary DictionaryApi | deletedictionary | DELETE /service/{serviceid}/version/{versionid}/dictionary/{dictionaryname} | Delete an edge dictionary DictionaryApi | getdictionary | GET /service/{serviceid}/version/{versionid}/dictionary/{dictionaryname} | Get an edge dictionary DictionaryApi | listdictionaries | GET /service/{serviceid}/version/{versionid}/dictionary | List edge dictionaries *DictionaryApi* | updatedictionary | PUT /service/{serviceid}/version/{versionid}/dictionary/{dictionaryname} | Update an edge dictionary *DictionaryInfoApi* | getdictionaryinfo | GET /service/{serviceid}/version/{versionid}/dictionary/{dictionaryid}/info | Get edge dictionary metadata DictionaryItemApi | bulkupdatedictionaryitem | PATCH /service/{serviceid}/dictionary/{dictionaryid}/items | Update multiple entries in an edge dictionary *DictionaryItemApi* | createdictionaryitem | POST /service/{serviceid}/dictionary/{dictionaryid}/item | Create an entry in an edge dictionary *DictionaryItemApi* | deletedictionaryitem | DELETE /service/{serviceid}/dictionary/{dictionaryid}/item/{dictionaryitemkey} | Delete an item from an edge dictionary *DictionaryItemApi* | getdictionaryitem | GET /service/{serviceid}/dictionary/{dictionaryid}/item/{dictionaryitemkey} | Get an item from an edge dictionary *DictionaryItemApi* | listdictionaryitems | GET /service/{serviceid}/dictionary/{dictionaryid}/items | List items in an edge dictionary *DictionaryItemApi* | updatedictionaryitem | PATCH /service/{serviceid}/dictionary/{dictionaryid}/item/{dictionaryitemkey} | Update an entry in an edge dictionary *DictionaryItemApi* | upsertdictionaryitem | PUT /service/{serviceid}/dictionary/{dictionaryid}/item/{dictionaryitemkey} | Insert or update an entry in an edge dictionary *DiffApi* | diffserviceversions | GET /service/{serviceid}/diff/from/{fromversionid}/to/{toversionid} | Diff two service versions DirectorApi | deletedirector | DELETE /service/{serviceid}/version/{versionid}/director/{directorname} | Delete a director DirectorApi | getdirector | GET /service/{serviceid}/version/{versionid}/director/{directorname} | Get a director DirectorApi | listdirectors | GET /service/{serviceid}/version/{versionid}/director | List directors *DirectorApi* | updatedirector | PUT /service/{serviceid}/version/{versionid}/director/{directorname} | Update a director *DirectorBackendApi* | createdirectorbackend | POST /service/{serviceid}/version/{versionid}/director/{directorname}/backend/{backendname} | Create a director-backend relationship *DirectorBackendApi* | deletedirectorbackend | DELETE /service/{serviceid}/version/{versionid}/director/{directorname}/backend/{backendname} | Delete a director-backend relationship *DirectorBackendApi* | getdirectorbackend | GET /service/{serviceid}/version/{versionid}/director/{directorname}/backend/{backendname} | Get a director-backend relationship *DomainApi* | checkdomain | GET /service/{serviceid}/version/{versionid}/domain/{domainname}/check | Validate DNS configuration for a single domain on a service *DomainApi* | createdomain | POST /service/{serviceid}/version/{versionid}/domain | Add a domain name to a service DomainApi | deletedomain | DELETE /service/{serviceid}/version/{versionid}/domain/{domainname} | Remove a domain from a service DomainApi | getdomain | GET /service/{serviceid}/version/{versionid}/domain/{domainname} | Describe a domain DomainApi | listdomains | GET /service/{serviceid}/version/{versionid}/domain | List domains *DomainApi* | updatedomain | PUT /service/{serviceid}/version/{versionid}/domain/{domainname} | Update a domain *DomainInspectorHistoricalApi* | getdomaininspectorhistorical | GET /metrics/domains/services/{serviceid} | Get historical domain data for a service *DomainInspectorRealtimeApi* | getdomaininspectorlast120seconds | GET /v1/domains/{serviceid}/ts/h | Get real-time domain data for the last 120 seconds DomainInspectorRealtimeApi | getdomaininspectorlastmaxentries | GET /v1/domains/{serviceid}/ts/h/limit/{maxentries} | Get a limited number of real-time domain data entries *DomainInspectorRealtimeApi* | getdomaininspectorlastsecond | GET /v1/domains/{serviceid}/ts/{starttimestamp} | Get real-time domain data from a specified time *DomainOwnershipsApi* | listdomainownerships | GET /domain-ownerships | List domain-ownerships *EnabledProductsApi* | disableproduct | DELETE /enabled-products/{productid}/services/{serviceid} | Disable a product EnabledProductsApi | enableproduct | PUT /enabled-products/{productid}/services/{serviceid} | Enable a product *EnabledProductsApi* | getenabledproduct | GET /enabled-products/{productid}/services/{serviceid} | Get enabled product *EventsApi* | getevent | GET /events/{eventid} | Get an event *EventsApi* | listevents | GET /events | List events GzipApi | creategzipconfig | POST /service/{serviceid}/version/{versionid}/gzip | Create a gzip configuration GzipApi | deletegzipconfig | DELETE /service/{serviceid}/version/{versionid}/gzip/{gzipname} | Delete a gzip configuration *GzipApi* | getgzipconfigs | GET /service/{serviceid}/version/{versionid}/gzip/{gzipname} | Get a gzip configuration GzipApi | listgzipconfigs | GET /service/{serviceid}/version/{versionid}/gzip | List gzip configurations GzipApi | updategzipconfig | PUT /service/{serviceid}/version/{versionid}/gzip/{gzipname} | Update a gzip configuration *HeaderApi* | createheaderobject | POST /service/{serviceid}/version/{versionid}/header | Create a Header object *HeaderApi* | deleteheaderobject | DELETE /service/{serviceid}/version/{versionid}/header/{headername} | Delete a Header object HeaderApi | getheaderobject | GET /service/{serviceid}/version/{versionid}/header/{headername} | Get a Header object *HeaderApi* | listheaderobjects | GET /service/{serviceid}/version/{versionid}/header | List Header objects *HeaderApi* | updateheaderobject | PUT /service/{serviceid}/version/{versionid}/header/{headername} | Update a Header object HealthcheckApi | createhealthcheck | POST /service/{serviceid}/version/{versionid}/healthcheck | Create a health check *HealthcheckApi* | deletehealthcheck | DELETE /service/{serviceid}/version/{versionid}/healthcheck/{healthcheckname} | Delete a health check *HealthcheckApi* | gethealthcheck | GET /service/{serviceid}/version/{versionid}/healthcheck/{healthcheckname} | Get a health check *HealthcheckApi* | listhealthchecks | GET /service/{serviceid}/version/{versionid}/healthcheck | List health checks HealthcheckApi | updatehealthcheck | PUT /service/{serviceid}/version/{versionid}/healthcheck/{healthcheckname} | Update a health check Http3Api | createhttp3 | POST /service/{serviceid}/version/{versionid}/http3 | Enable support for HTTP/3 *Http3Api* | deletehttp3 | DELETE /service/{serviceid}/version/{versionid}/http3 | Disable support for HTTP/3 Http3Api | gethttp3 | GET /service/{serviceid}/version/{versionid}/http3 | Get HTTP/3 status *IamPermissionsApi* | listpermissions | GET /permissions | List permissions IamRolesApi | addrolepermissions | POST /roles/{roleid}/permissions | Add permissions to a role *IamRolesApi* | createarole | POST /roles | Create a role *IamRolesApi* | deletearole | DELETE /roles/{roleid} | Delete a role IamRolesApi | getarole | GET /roles/{roleid} | Get a role *IamRolesApi* | listrolepermissions | GET /roles/{roleid}/permissions | List permissions in a role IamRolesApi | listroles | GET /roles | List roles *IamRolesApi* | removerolepermissions | DELETE /roles/{roleid}/permissions | Remove permissions from a role IamRolesApi | updatearole | PATCH /roles/{roleid} | Update a role *IamServiceGroupsApi* | addservicegroupservices | POST /service-groups/{servicegroupid}/services | Add services in a service group IamServiceGroupsApi | createaservicegroup | POST /service-groups | Create a service group *IamServiceGroupsApi* | deleteaservicegroup | DELETE /service-groups/{servicegroupid} | Delete a service group IamServiceGroupsApi | getaservicegroup | GET /service-groups/{servicegroupid} | Get a service group *IamServiceGroupsApi* | listservicegroupservices | GET /service-groups/{servicegroupid}/services | List services to a service group IamServiceGroupsApi | listservicegroups | GET /service-groups | List service groups IamServiceGroupsApi | removeservicegroupservices | DELETE /service-groups/{servicegroupid}/services | Remove services from a service group *IamServiceGroupsApi* | updateaservicegroup | PATCH /service-groups/{servicegroupid} | Update a service group IamUserGroupsApi | addusergroupmembers | POST /user-groups/{usergroupid}/members | Add members to a user group *IamUserGroupsApi* | addusergrouproles | POST /user-groups/{usergroupid}/roles | Add roles to a user group IamUserGroupsApi | addusergroupservicegroups | POST /user-groups/{usergroupid}/service-groups | Add service groups to a user group IamUserGroupsApi | createausergroup | POST /user-groups | Create a user group *IamUserGroupsApi* | deleteausergroup | DELETE /user-groups/{usergroupid} | Delete a user group IamUserGroupsApi | getausergroup | GET /user-groups/{usergroupid} | Get a user group *IamUserGroupsApi* | listusergroupmembers | GET /user-groups/{usergroupid}/members | List members of a user group IamUserGroupsApi | listusergrouproles | GET /user-groups/{usergroupid}/roles | List roles in a user group *IamUserGroupsApi* | listusergroupservicegroups | GET /user-groups/{usergroupid}/service-groups | List service groups in a user group *IamUserGroupsApi* | listusergroups | GET /user-groups | List user groups *IamUserGroupsApi* | removeusergroupmembers | DELETE /user-groups/{usergroupid}/members | Remove members of a user group IamUserGroupsApi | removeusergrouproles | DELETE /user-groups/{usergroupid}/roles | Remove roles from a user group *IamUserGroupsApi* | removeusergroupservicegroups | DELETE /user-groups/{usergroupid}/service-groups | Remove service groups from a user group *IamUserGroupsApi* | updateausergroup | PATCH /user-groups/{usergroupid} | Update a user group InvitationsApi | createinvitation | POST /invitations | Create an invitation *InvitationsApi* | deleteinvitation | DELETE /invitations/{invitationid} | Delete an invitation *InvitationsApi* | listinvitations | GET /invitations | List invitations KvStoreApi | createstore | POST /resources/stores/kv | Create an kv store. *KvStoreApi* | deletestore | DELETE /resources/stores/kv/{storeid} | Delete an kv store. *KvStoreApi* | getstore | GET /resources/stores/kv/{storeid} | Describe an kv store. *KvStoreApi* | getstores | GET /resources/stores/kv | List kv stores. KvStoreItemApi | deletekeyfromstore | DELETE /resources/stores/kv/{storeid}/keys/{keyname} | Delete kv store item. *KvStoreItemApi* | getkeys | GET /resources/stores/kv/{storeid}/keys | List kv store keys. *KvStoreItemApi* | getvalueforkey | GET /resources/stores/kv/{storeid}/keys/{keyname} | Get the value of an kv store item KvStoreItemApi | setvalueforkey | PUT /resources/stores/kv/{storeid}/keys/{keyname} | Insert an item into an kv store *LegacyWafConfigurationSetsApi* | listwafconfigsets | GET /wafs/configurationsets | List configuration sets *LegacyWafConfigurationSetsApi* | listwafsconfigset | GET /wafs/configurationsets/{configurationsetid}/relationships/wafs | List WAFs currently using a configuration set *LegacyWafConfigurationSetsApi* | usewafconfigset | PATCH /wafs/configurationsets/{configurationsetid}/relationships/wafs | Apply a configuration set to a WAF *LegacyWafFirewallApi* | createlegacywaffirewallservice | POST /service/{serviceid}/version/{versionid}/wafs | Create a firewall *LegacyWafFirewallApi* | disablelegacywaffirewall | PATCH /wafs/{firewallid}/disable | Disable a firewall *LegacyWafFirewallApi* | enablelegacywaffirewall | PATCH /wafs/{firewallid}/enable | Enable a firewall *LegacyWafFirewallApi* | getlegacywaffirewall | GET /wafs/{firewallid} | Get a firewall object *LegacyWafFirewallApi* | getlegacywaffirewallservice | GET /service/{serviceid}/version/{versionid}/wafs/{firewallid} | Get a firewall LegacyWafFirewallApi | listlegacywaffirewalls | GET /wafs | List active firewalls *LegacyWafFirewallApi* | listlegacywaffirewallsservice | GET /service/{serviceid}/version/{versionid}/wafs | List firewalls *LegacyWafFirewallApi* | updatelegacywaffirewallservice | PATCH /service/{serviceid}/version/{versionid}/wafs/{firewallid} | Update a firewall LegacyWafOwaspApi | createowaspsettings | POST /service/{serviceid}/wafs/{firewallid}/owasp | Create an OWASP settings object LegacyWafOwaspApi | getowaspsettings | GET /service/{serviceid}/wafs/{firewallid}/owasp | Get the OWASP settings object LegacyWafOwaspApi | updateowaspsettings | PATCH /service/{serviceid}/wafs/{firewallid}/owasp | Update the OWASP settings object LegacyWafRuleApi | getlegacywaffirewallrulevcl | GET /wafs/{firewallid}/rules/{wafruleid}/vcl | Get VCL for a rule associated with a firewall LegacyWafRuleApi | getlegacywafrule | GET /wafs/rules/{wafruleid} | Get a rule *LegacyWafRuleApi* | getlegacywafrulevcl | GET /wafs/rules/{wafruleid}/vcl | Get VCL for a rule *LegacyWafRuleApi* | listlegacywafrules | GET /wafs/rules | List rules in the latest configuration set LegacyWafRuleStatusApi | getwaffirewallrulestatus | GET /service/{serviceid}/wafs/{firewallid}/rules/{wafruleid}/rulestatus | Get the status of a rule on a firewall *LegacyWafRuleStatusApi* | listwaffirewallrulestatuses | GET /service/{serviceid}/wafs/{firewallid}/rulestatuses | List rule statuses LegacyWafRuleStatusApi | updatewaffirewallrulestatus | PATCH /service/{serviceid}/wafs/{firewallid}/rules/{wafruleid}/rulestatus | Update the status of a rule *LegacyWafRuleStatusApi* | updatewaffirewallrulestatusestag | POST /service/{serviceid}/wafs/{firewallid}/rulestatuses | Create or update status of a tagged group of rules *LegacyWafRulesetApi* | getwafruleset | GET /service/{serviceid}/wafs/{firewallid}/ruleset | Get a WAF ruleset *LegacyWafRulesetApi* | getwafrulesetvcl | GET /service/{serviceid}/wafs/{firewallid}/ruleset/preview | Generate WAF ruleset VCL LegacyWafRulesetApi | updatewafruleset | PATCH /service/{serviceid}/wafs/{firewallid}/ruleset | Update a WAF ruleset LegacyWafTagApi | listlegacywaftags | GET /wafs/tags | List WAF tags *LegacyWafUpdateStatusApi* | getwafupdatestatus | GET /service/{serviceid}/wafs/{firewallid}/updatestatuses/{updatestatusid} | Get the status of a WAF update *LegacyWafUpdateStatusApi* | listwafupdatestatuses | GET /service/{serviceid}/wafs/{firewallid}/updatestatuses | List update statuses *LoggingAzureblobApi* | createlogazure | POST /service/{serviceid}/version/{versionid}/logging/azureblob | Create an Azure Blob Storage log endpoint *LoggingAzureblobApi* | deletelogazure | DELETE /service/{serviceid}/version/{versionid}/logging/azureblob/{loggingazureblobname} | Delete the Azure Blob Storage log endpoint *LoggingAzureblobApi* | getlogazure | GET /service/{serviceid}/version/{versionid}/logging/azureblob/{loggingazureblobname} | Get an Azure Blob Storage log endpoint *LoggingAzureblobApi* | listlogazure | GET /service/{serviceid}/version/{versionid}/logging/azureblob | List Azure Blob Storage log endpoints *LoggingAzureblobApi* | updatelogazure | PUT /service/{serviceid}/version/{versionid}/logging/azureblob/{loggingazureblobname} | Update an Azure Blob Storage log endpoint *LoggingBigqueryApi* | createlogbigquery | POST /service/{serviceid}/version/{versionid}/logging/bigquery | Create a BigQuery log endpoint *LoggingBigqueryApi* | deletelogbigquery | DELETE /service/{serviceid}/version/{versionid}/logging/bigquery/{loggingbigqueryname} | Delete a BigQuery log endpoint *LoggingBigqueryApi* | getlogbigquery | GET /service/{serviceid}/version/{versionid}/logging/bigquery/{loggingbigqueryname} | Get a BigQuery log endpoint *LoggingBigqueryApi* | listlogbigquery | GET /service/{serviceid}/version/{versionid}/logging/bigquery | List BigQuery log endpoints *LoggingBigqueryApi* | updatelogbigquery | PUT /service/{serviceid}/version/{versionid}/logging/bigquery/{loggingbigqueryname} | Update a BigQuery log endpoint *LoggingCloudfilesApi* | createlogcloudfiles | POST /service/{serviceid}/version/{versionid}/logging/cloudfiles | Create a Cloud Files log endpoint *LoggingCloudfilesApi* | deletelogcloudfiles | DELETE /service/{serviceid}/version/{versionid}/logging/cloudfiles/{loggingcloudfilesname} | Delete the Cloud Files log endpoint *LoggingCloudfilesApi* | getlogcloudfiles | GET /service/{serviceid}/version/{versionid}/logging/cloudfiles/{loggingcloudfilesname} | Get a Cloud Files log endpoint *LoggingCloudfilesApi* | listlogcloudfiles | GET /service/{serviceid}/version/{versionid}/logging/cloudfiles | List Cloud Files log endpoints *LoggingCloudfilesApi* | updatelogcloudfiles | PUT /service/{serviceid}/version/{versionid}/logging/cloudfiles/{loggingcloudfilesname} | Update the Cloud Files log endpoint *LoggingDatadogApi* | createlogdatadog | POST /service/{serviceid}/version/{versionid}/logging/datadog | Create a Datadog log endpoint *LoggingDatadogApi* | deletelogdatadog | DELETE /service/{serviceid}/version/{versionid}/logging/datadog/{loggingdatadogname} | Delete a Datadog log endpoint *LoggingDatadogApi* | getlogdatadog | GET /service/{serviceid}/version/{versionid}/logging/datadog/{loggingdatadogname} | Get a Datadog log endpoint *LoggingDatadogApi* | listlogdatadog | GET /service/{serviceid}/version/{versionid}/logging/datadog | List Datadog log endpoints *LoggingDatadogApi* | updatelogdatadog | PUT /service/{serviceid}/version/{versionid}/logging/datadog/{loggingdatadogname} | Update a Datadog log endpoint *LoggingDigitaloceanApi* | createlogdigocean | POST /service/{serviceid}/version/{versionid}/logging/digitalocean | Create a DigitalOcean Spaces log endpoint *LoggingDigitaloceanApi* | deletelogdigocean | DELETE /service/{serviceid}/version/{versionid}/logging/digitalocean/{loggingdigitaloceanname} | Delete a DigitalOcean Spaces log endpoint *LoggingDigitaloceanApi* | getlogdigocean | GET /service/{serviceid}/version/{versionid}/logging/digitalocean/{loggingdigitaloceanname} | Get a DigitalOcean Spaces log endpoint *LoggingDigitaloceanApi* | listlogdigocean | GET /service/{serviceid}/version/{versionid}/logging/digitalocean | List DigitalOcean Spaces log endpoints *LoggingDigitaloceanApi* | updatelogdigocean | PUT /service/{serviceid}/version/{versionid}/logging/digitalocean/{loggingdigitaloceanname} | Update a DigitalOcean Spaces log endpoint *LoggingElasticsearchApi* | createlogelasticsearch | POST /service/{serviceid}/version/{versionid}/logging/elasticsearch | Create an Elasticsearch log endpoint *LoggingElasticsearchApi* | deletelogelasticsearch | DELETE /service/{serviceid}/version/{versionid}/logging/elasticsearch/{loggingelasticsearchname} | Delete an Elasticsearch log endpoint *LoggingElasticsearchApi* | getlogelasticsearch | GET /service/{serviceid}/version/{versionid}/logging/elasticsearch/{loggingelasticsearchname} | Get an Elasticsearch log endpoint *LoggingElasticsearchApi* | listlogelasticsearch | GET /service/{serviceid}/version/{versionid}/logging/elasticsearch | List Elasticsearch log endpoints *LoggingElasticsearchApi* | updatelogelasticsearch | PUT /service/{serviceid}/version/{versionid}/logging/elasticsearch/{loggingelasticsearchname} | Update an Elasticsearch log endpoint *LoggingFtpApi* | createlogftp | POST /service/{serviceid}/version/{versionid}/logging/ftp | Create an FTP log endpoint *LoggingFtpApi* | deletelogftp | DELETE /service/{serviceid}/version/{versionid}/logging/ftp/{loggingftpname} | Delete an FTP log endpoint *LoggingFtpApi* | getlogftp | GET /service/{serviceid}/version/{versionid}/logging/ftp/{loggingftpname} | Get an FTP log endpoint *LoggingFtpApi* | listlogftp | GET /service/{serviceid}/version/{versionid}/logging/ftp | List FTP log endpoints *LoggingFtpApi* | updatelogftp | PUT /service/{serviceid}/version/{versionid}/logging/ftp/{loggingftpname} | Update an FTP log endpoint *LoggingGcsApi* | createloggcs | POST /service/{serviceid}/version/{versionid}/logging/gcs | Create a GCS log endpoint *LoggingGcsApi* | deleteloggcs | DELETE /service/{serviceid}/version/{versionid}/logging/gcs/{logginggcsname} | Delete a GCS log endpoint *LoggingGcsApi* | getloggcs | GET /service/{serviceid}/version/{versionid}/logging/gcs/{logginggcsname} | Get a GCS log endpoint *LoggingGcsApi* | listloggcs | GET /service/{serviceid}/version/{versionid}/logging/gcs | List GCS log endpoints *LoggingGcsApi* | updateloggcs | PUT /service/{serviceid}/version/{versionid}/logging/gcs/{logginggcsname} | Update a GCS log endpoint *LoggingHerokuApi* | createlogheroku | POST /service/{serviceid}/version/{versionid}/logging/heroku | Create a Heroku log endpoint *LoggingHerokuApi* | deletelogheroku | DELETE /service/{serviceid}/version/{versionid}/logging/heroku/{loggingherokuname} | Delete the Heroku log endpoint *LoggingHerokuApi* | getlogheroku | GET /service/{serviceid}/version/{versionid}/logging/heroku/{loggingherokuname} | Get a Heroku log endpoint *LoggingHerokuApi* | listlogheroku | GET /service/{serviceid}/version/{versionid}/logging/heroku | List Heroku log endpoints *LoggingHerokuApi* | updatelogheroku | PUT /service/{serviceid}/version/{versionid}/logging/heroku/{loggingherokuname} | Update the Heroku log endpoint *LoggingHoneycombApi* | createloghoneycomb | POST /service/{serviceid}/version/{versionid}/logging/honeycomb | Create a Honeycomb log endpoint *LoggingHoneycombApi* | deleteloghoneycomb | DELETE /service/{serviceid}/version/{versionid}/logging/honeycomb/{logginghoneycombname} | Delete the Honeycomb log endpoint *LoggingHoneycombApi* | getloghoneycomb | GET /service/{serviceid}/version/{versionid}/logging/honeycomb/{logginghoneycombname} | Get a Honeycomb log endpoint *LoggingHoneycombApi* | listloghoneycomb | GET /service/{serviceid}/version/{versionid}/logging/honeycomb | List Honeycomb log endpoints *LoggingHoneycombApi* | updateloghoneycomb | PUT /service/{serviceid}/version/{versionid}/logging/honeycomb/{logginghoneycombname} | Update a Honeycomb log endpoint *LoggingHttpsApi* | createloghttps | POST /service/{serviceid}/version/{versionid}/logging/https | Create an HTTPS log endpoint *LoggingHttpsApi* | deleteloghttps | DELETE /service/{serviceid}/version/{versionid}/logging/https/{logginghttpsname} | Delete an HTTPS log endpoint *LoggingHttpsApi* | getloghttps | GET /service/{serviceid}/version/{versionid}/logging/https/{logginghttpsname} | Get an HTTPS log endpoint *LoggingHttpsApi* | listloghttps | GET /service/{serviceid}/version/{versionid}/logging/https | List HTTPS log endpoints *LoggingHttpsApi* | updateloghttps | PUT /service/{serviceid}/version/{versionid}/logging/https/{logginghttpsname} | Update an HTTPS log endpoint *LoggingKafkaApi* | createlogkafka | POST /service/{serviceid}/version/{versionid}/logging/kafka | Create a Kafka log endpoint *LoggingKafkaApi* | deletelogkafka | DELETE /service/{serviceid}/version/{versionid}/logging/kafka/{loggingkafkaname} | Delete the Kafka log endpoint *LoggingKafkaApi* | getlogkafka | GET /service/{serviceid}/version/{versionid}/logging/kafka/{loggingkafkaname} | Get a Kafka log endpoint *LoggingKafkaApi* | listlogkafka | GET /service/{serviceid}/version/{versionid}/logging/kafka | List Kafka log endpoints *LoggingKafkaApi* | updatelogkafka | PUT /service/{serviceid}/version/{versionid}/logging/kafka/{loggingkafkaname} | Update the Kafka log endpoint *LoggingKinesisApi* | createlogkinesis | POST /service/{serviceid}/version/{versionid}/logging/kinesis | Create an Amazon Kinesis log endpoint *LoggingKinesisApi* | deletelogkinesis | DELETE /service/{serviceid}/version/{versionid}/logging/kinesis/{loggingkinesisname} | Delete the Amazon Kinesis log endpoint *LoggingKinesisApi* | getlogkinesis | GET /service/{serviceid}/version/{versionid}/logging/kinesis/{loggingkinesisname} | Get an Amazon Kinesis log endpoint *LoggingKinesisApi* | listlogkinesis | GET /service/{serviceid}/version/{versionid}/logging/kinesis | List Amazon Kinesis log endpoints *LoggingKinesisApi* | updatelogkinesis | PUT /service/{serviceid}/version/{versionid}/logging/kinesis/{loggingkinesisname} | Update the Amazon Kinesis log endpoint *LoggingLogentriesApi* | createloglogentries | POST /service/{serviceid}/version/{versionid}/logging/logentries | Create a Logentries log endpoint *LoggingLogentriesApi* | deleteloglogentries | DELETE /service/{serviceid}/version/{versionid}/logging/logentries/{logginglogentriesname} | Delete a Logentries log endpoint *LoggingLogentriesApi* | getloglogentries | GET /service/{serviceid}/version/{versionid}/logging/logentries/{logginglogentriesname} | Get a Logentries log endpoint *LoggingLogentriesApi* | listloglogentries | GET /service/{serviceid}/version/{versionid}/logging/logentries | List Logentries log endpoints *LoggingLogentriesApi* | updateloglogentries | PUT /service/{serviceid}/version/{versionid}/logging/logentries/{logginglogentriesname} | Update a Logentries log endpoint *LoggingLogglyApi* | createlogloggly | POST /service/{serviceid}/version/{versionid}/logging/loggly | Create a Loggly log endpoint *LoggingLogglyApi* | deletelogloggly | DELETE /service/{serviceid}/version/{versionid}/logging/loggly/{logginglogglyname} | Delete a Loggly log endpoint *LoggingLogglyApi* | getlogloggly | GET /service/{serviceid}/version/{versionid}/logging/loggly/{logginglogglyname} | Get a Loggly log endpoint *LoggingLogglyApi* | listlogloggly | GET /service/{serviceid}/version/{versionid}/logging/loggly | List Loggly log endpoints *LoggingLogglyApi* | updatelogloggly | PUT /service/{serviceid}/version/{versionid}/logging/loggly/{logginglogglyname} | Update a Loggly log endpoint *LoggingLogshuttleApi* | createloglogshuttle | POST /service/{serviceid}/version/{versionid}/logging/logshuttle | Create a Log Shuttle log endpoint *LoggingLogshuttleApi* | deleteloglogshuttle | DELETE /service/{serviceid}/version/{versionid}/logging/logshuttle/{logginglogshuttlename} | Delete a Log Shuttle log endpoint *LoggingLogshuttleApi* | getloglogshuttle | GET /service/{serviceid}/version/{versionid}/logging/logshuttle/{logginglogshuttlename} | Get a Log Shuttle log endpoint *LoggingLogshuttleApi* | listloglogshuttle | GET /service/{serviceid}/version/{versionid}/logging/logshuttle | List Log Shuttle log endpoints *LoggingLogshuttleApi* | updateloglogshuttle | PUT /service/{serviceid}/version/{versionid}/logging/logshuttle/{logginglogshuttlename} | Update a Log Shuttle log endpoint *LoggingNewrelicApi* | createlognewrelic | POST /service/{serviceid}/version/{versionid}/logging/newrelic | Create a New Relic log endpoint *LoggingNewrelicApi* | deletelognewrelic | DELETE /service/{serviceid}/version/{versionid}/logging/newrelic/{loggingnewrelicname} | Delete a New Relic log endpoint *LoggingNewrelicApi* | getlognewrelic | GET /service/{serviceid}/version/{versionid}/logging/newrelic/{loggingnewrelicname} | Get a New Relic log endpoint *LoggingNewrelicApi* | listlognewrelic | GET /service/{serviceid}/version/{versionid}/logging/newrelic | List New Relic log endpoints *LoggingNewrelicApi* | updatelognewrelic | PUT /service/{serviceid}/version/{versionid}/logging/newrelic/{loggingnewrelicname} | Update a New Relic log endpoint *LoggingNewrelicotlpApi* | createlognewrelicotlp | POST /service/{serviceid}/version/{versionid}/logging/newrelicotlp | Create a New Relic OTLP endpoint *LoggingNewrelicotlpApi* | deletelognewrelicotlp | DELETE /service/{serviceid}/version/{versionid}/logging/newrelicotlp/{loggingnewrelicotlpname} | Delete a New Relic OTLP endpoint *LoggingNewrelicotlpApi* | getlognewrelicotlp | GET /service/{serviceid}/version/{versionid}/logging/newrelicotlp/{loggingnewrelicotlpname} | Get a New Relic OTLP endpoint *LoggingNewrelicotlpApi* | listlognewrelicotlp | GET /service/{serviceid}/version/{versionid}/logging/newrelicotlp | List New Relic OTLP endpoints *LoggingNewrelicotlpApi* | updatelognewrelicotlp | PUT /service/{serviceid}/version/{versionid}/logging/newrelicotlp/{loggingnewrelicotlpname} | Update a New Relic log endpoint *LoggingOpenstackApi* | createlogopenstack | POST /service/{serviceid}/version/{versionid}/logging/openstack | Create an OpenStack log endpoint *LoggingOpenstackApi* | deletelogopenstack | DELETE /service/{serviceid}/version/{versionid}/logging/openstack/{loggingopenstackname} | Delete an OpenStack log endpoint *LoggingOpenstackApi* | getlogopenstack | GET /service/{serviceid}/version/{versionid}/logging/openstack/{loggingopenstackname} | Get an OpenStack log endpoint *LoggingOpenstackApi* | listlogopenstack | GET /service/{serviceid}/version/{versionid}/logging/openstack | List OpenStack log endpoints *LoggingOpenstackApi* | updatelogopenstack | PUT /service/{serviceid}/version/{versionid}/logging/openstack/{loggingopenstackname} | Update an OpenStack log endpoint *LoggingPapertrailApi* | createlogpapertrail | POST /service/{serviceid}/version/{versionid}/logging/papertrail | Create a Papertrail log endpoint *LoggingPapertrailApi* | deletelogpapertrail | DELETE /service/{serviceid}/version/{versionid}/logging/papertrail/{loggingpapertrailname} | Delete a Papertrail log endpoint *LoggingPapertrailApi* | getlogpapertrail | GET /service/{serviceid}/version/{versionid}/logging/papertrail/{loggingpapertrailname} | Get a Papertrail log endpoint *LoggingPapertrailApi* | listlogpapertrail | GET /service/{serviceid}/version/{versionid}/logging/papertrail | List Papertrail log endpoints *LoggingPapertrailApi* | updatelogpapertrail | PUT /service/{serviceid}/version/{versionid}/logging/papertrail/{loggingpapertrailname} | Update a Papertrail log endpoint *LoggingPubsubApi* | createloggcppubsub | POST /service/{serviceid}/version/{versionid}/logging/pubsub | Create a GCP Cloud Pub/Sub log endpoint LoggingPubsubApi | deleteloggcppubsub | DELETE /service/{serviceid}/version/{versionid}/logging/pubsub/{logginggooglepubsubname} | Delete a GCP Cloud Pub/Sub log endpoint LoggingPubsubApi | getloggcppubsub | GET /service/{serviceid}/version/{versionid}/logging/pubsub/{logginggooglepubsubname} | Get a GCP Cloud Pub/Sub log endpoint LoggingPubsubApi | listloggcppubsub | GET /service/{serviceid}/version/{versionid}/logging/pubsub | List GCP Cloud Pub/Sub log endpoints *LoggingPubsubApi* | updateloggcppubsub | PUT /service/{serviceid}/version/{versionid}/logging/pubsub/{logginggooglepubsubname} | Update a GCP Cloud Pub/Sub log endpoint *LoggingS3Api* | createlogawss3 | POST /service/{serviceid}/version/{versionid}/logging/s3 | Create an AWS S3 log endpoint LoggingS3Api | deletelogawss3 | DELETE /service/{serviceid}/version/{versionid}/logging/s3/{loggings3name} | Delete an AWS S3 log endpoint *LoggingS3Api* | getlogawss3 | GET /service/{serviceid}/version/{versionid}/logging/s3/{loggings3name} | Get an AWS S3 log endpoint LoggingS3Api | listlogawss3 | GET /service/{serviceid}/version/{versionid}/logging/s3 | List AWS S3 log endpoints *LoggingS3Api* | updatelogawss3 | PUT /service/{serviceid}/version/{versionid}/logging/s3/{loggings3name} | Update an AWS S3 log endpoint LoggingScalyrApi | createlogscalyr | POST /service/{serviceid}/version/{versionid}/logging/scalyr | Create a Scalyr log endpoint LoggingScalyrApi | deletelogscalyr | DELETE /service/{serviceid}/version/{versionid}/logging/scalyr/{loggingscalyrname} | Delete the Scalyr log endpoint LoggingScalyrApi | getlogscalyr | GET /service/{serviceid}/version/{versionid}/logging/scalyr/{loggingscalyrname} | Get a Scalyr log endpoint LoggingScalyrApi | listlogscalyr | GET /service/{serviceid}/version/{versionid}/logging/scalyr | List Scalyr log endpoints LoggingScalyrApi | updatelogscalyr | PUT /service/{serviceid}/version/{versionid}/logging/scalyr/{loggingscalyrname} | Update the Scalyr log endpoint LoggingSftpApi | createlogsftp | POST /service/{serviceid}/version/{versionid}/logging/sftp | Create an SFTP log endpoint LoggingSftpApi | deletelogsftp | DELETE /service/{serviceid}/version/{versionid}/logging/sftp/{loggingsftpname} | Delete an SFTP log endpoint LoggingSftpApi | getlogsftp | GET /service/{serviceid}/version/{versionid}/logging/sftp/{loggingsftpname} | Get an SFTP log endpoint LoggingSftpApi | listlogsftp | GET /service/{serviceid}/version/{versionid}/logging/sftp | List SFTP log endpoints LoggingSftpApi | updatelogsftp | PUT /service/{serviceid}/version/{versionid}/logging/sftp/{loggingsftpname} | Update an SFTP log endpoint LoggingSplunkApi | createlogsplunk | POST /service/{serviceid}/version/{versionid}/logging/splunk | Create a Splunk log endpoint LoggingSplunkApi | deletelogsplunk | DELETE /service/{serviceid}/version/{versionid}/logging/splunk/{loggingsplunkname} | Delete a Splunk log endpoint LoggingSplunkApi | getlogsplunk | GET /service/{serviceid}/version/{versionid}/logging/splunk/{loggingsplunkname} | Get a Splunk log endpoint LoggingSplunkApi | listlogsplunk | GET /service/{serviceid}/version/{versionid}/logging/splunk | List Splunk log endpoints LoggingSplunkApi | updatelogsplunk | PUT /service/{serviceid}/version/{versionid}/logging/splunk/{loggingsplunkname} | Update a Splunk log endpoint LoggingSumologicApi | createlogsumologic | POST /service/{serviceid}/version/{versionid}/logging/sumologic | Create a Sumologic log endpoint LoggingSumologicApi | deletelogsumologic | DELETE /service/{serviceid}/version/{versionid}/logging/sumologic/{loggingsumologicname} | Delete a Sumologic log endpoint LoggingSumologicApi | getlogsumologic | GET /service/{serviceid}/version/{versionid}/logging/sumologic/{loggingsumologicname} | Get a Sumologic log endpoint LoggingSumologicApi | listlogsumologic | GET /service/{serviceid}/version/{versionid}/logging/sumologic | List Sumologic log endpoints LoggingSumologicApi | updatelogsumologic | PUT /service/{serviceid}/version/{versionid}/logging/sumologic/{loggingsumologicname} | Update a Sumologic log endpoint LoggingSyslogApi | createlogsyslog | POST /service/{serviceid}/version/{versionid}/logging/syslog | Create a syslog log endpoint LoggingSyslogApi | deletelogsyslog | DELETE /service/{serviceid}/version/{versionid}/logging/syslog/{loggingsyslogname} | Delete a syslog log endpoint LoggingSyslogApi | getlogsyslog | GET /service/{serviceid}/version/{versionid}/logging/syslog/{loggingsyslogname} | Get a syslog log endpoint LoggingSyslogApi | listlogsyslog | GET /service/{serviceid}/version/{versionid}/logging/syslog | List Syslog log endpoints LoggingSyslogApi | updatelogsyslog | PUT /service/{serviceid}/version/{versionid}/logging/syslog/{loggingsyslogname} | Update a syslog log endpoint MutualAuthenticationApi | createmutualtlsauthentication | POST /tls/mutualauthentications | Create a Mutual Authentication MutualAuthenticationApi | deletemutualtls | DELETE /tls/mutualauthentications/{mutualauthenticationid} | Delete a Mutual TLS *MutualAuthenticationApi* | getmutualauthentication | GET /tls/mutualauthentications/{mutualauthenticationid} | Get a Mutual Authentication MutualAuthenticationApi | listmutualauthentications | GET /tls/mutualauthentications | List Mutual Authentications *MutualAuthenticationApi* | patchmutualauthentication | PATCH /tls/mutualauthentications/{mutualauthenticationid} | Update a Mutual Authentication OriginInspectorHistoricalApi | getorigininspectorhistorical | GET /metrics/origins/services/{serviceid} | Get historical origin data for a service OriginInspectorRealtimeApi | getorigininspectorlast120seconds | GET /v1/origins/{serviceid}/ts/h | Get real-time origin data for the last 120 seconds *OriginInspectorRealtimeApi* | getorigininspectorlastmaxentries | GET /v1/origins/{serviceid}/ts/h/limit/{maxentries} | Get a limited number of real-time origin data entries OriginInspectorRealtimeApi | getorigininspectorlastsecond | GET /v1/origins/{serviceid}/ts/{starttimestamp} | Get real-time origin data from specific time. PackageApi | getpackage | GET /service/{serviceid}/version/{versionid}/package | Get details of the service's Compute@Edge package. *PackageApi* | putpackage | PUT /service/{serviceid}/version/{versionid}/package | Upload a Compute@Edge package. PoolApi | createserverpool | POST /service/{serviceid}/version/{versionid}/pool | Create a server pool PoolApi | deleteserverpool | DELETE /service/{serviceid}/version/{versionid}/pool/{poolname} | Delete a server pool *PoolApi* | getserverpool | GET /service/{serviceid}/version/{versionid}/pool/{poolname} | Get a server pool PoolApi | listserverpools | GET /service/{serviceid}/version/{versionid}/pool | List server pools PoolApi | updateserverpool | PUT /service/{serviceid}/version/{versionid}/pool/{poolname} | Update a server pool *PopApi* | listpops | GET /datacenters | List Fastly POPs PublicIpListApi | listfastlyips | GET /public-ip-list | List Fastly's public IPs PublishApi | publish | POST /service/{serviceid}/publish/ | Send messages to Fanout subscribers *PurgeApi* | bulkpurgetag | POST /service/{serviceid}/purge | Purge multiple surrogate key tags PurgeApi | purgeall | POST /service/{serviceid}/purgeall | Purge everything from a service *PurgeApi* | purgesingleurl | POST /purge/{cachedurl} | Purge a URL PurgeApi | purgetag | POST /service/{serviceid}/purge/{surrogatekey} | Purge by surrogate key tag *RateLimiterApi* | createratelimiter | POST /service/{serviceid}/version/{versionid}/rate-limiters | Create a rate limiter *RateLimiterApi* | deleteratelimiter | DELETE /rate-limiters/{ratelimiterid} | Delete a rate limiter *RateLimiterApi* | getratelimiter | GET /rate-limiters/{ratelimiterid} | Get a rate limiter *RateLimiterApi* | listratelimiters | GET /service/{serviceid}/version/{versionid}/rate-limiters | List rate limiters *RateLimiterApi* | updateratelimiter | PUT /rate-limiters/{ratelimiterid} | Update a rate limiter *RealtimeApi* | getstatslast120seconds | GET /v1/channel/{serviceid}/ts/h | Get real-time data for the last 120 seconds *RealtimeApi* | getstatslast120secondslimitentries | GET /v1/channel/{serviceid}/ts/h/limit/{maxentries} | Get a limited number of real-time data entries RealtimeApi | getstatslastsecond | GET /v1/channel/{serviceid}/ts/{timestampinseconds} | Get real-time data from specified time RequestSettingsApi | createrequestsettings | POST /service/{serviceid}/version/{versionid}/requestsettings | Create a Request Settings object *RequestSettingsApi* | deleterequestsettings | DELETE /service/{serviceid}/version/{versionid}/requestsettings/{requestsettingsname} | Delete a Request Settings object RequestSettingsApi | getrequestsettings | GET /service/{serviceid}/version/{versionid}/requestsettings/{requestsettingsname} | Get a Request Settings object *RequestSettingsApi* | listrequestsettings | GET /service/{serviceid}/version/{versionid}/requestsettings | List Request Settings objects RequestSettingsApi | updaterequestsettings | PUT /service/{serviceid}/version/{versionid}/requestsettings/{requestsettingsname} | Update a Request Settings object *ResourceApi* | createresource | POST /service/{serviceid}/version/{versionid}/resource | Create a resource link ResourceApi | deleteresource | DELETE /service/{serviceid}/version/{versionid}/resource/{id} | Delete a resource link *ResourceApi* | getresource | GET /service/{serviceid}/version/{versionid}/resource/{id} | Display a resource link ResourceApi | listresources | GET /service/{serviceid}/version/{versionid}/resource | List resource links *ResourceApi* | updateresource | PUT /service/{serviceid}/version/{versionid}/resource/{id} | Update a resource link ResponseObjectApi | createresponseobject | POST /service/{serviceid}/version/{versionid}/responseobject | Create a Response object *ResponseObjectApi* | deleteresponseobject | DELETE /service/{serviceid}/version/{versionid}/responseobject/{responseobjectname} | Delete a Response Object ResponseObjectApi | getresponseobject | GET /service/{serviceid}/version/{versionid}/responseobject/{responseobjectname} | Get a Response object *ResponseObjectApi* | listresponseobjects | GET /service/{serviceid}/version/{versionid}/responseobject | List Response objects ResponseObjectApi | updateresponseobject | PUT /service/{serviceid}/version/{versionid}/responseobject/{responseobjectname} | Update a Response object *SecretStoreApi* | clientkey | POST /resources/stores/secret/client-key | Create new client key SecretStoreApi | createsecretstore | POST /resources/stores/secret | Create new secret store SecretStoreApi | deletesecretstore | DELETE /resources/stores/secret/{storeid} | Delete secret store *SecretStoreApi* | getsecretstore | GET /resources/stores/secret/{storeid} | Get secret store by ID SecretStoreApi | getsecretstores | GET /resources/stores/secret | Get all secret stores SecretStoreApi | signingkey | GET /resources/stores/secret/signing-key | Get public key *SecretStoreItemApi* | createsecret | POST /resources/stores/secret/{storeid}/secrets | Create a new secret in a store. *SecretStoreItemApi* | deletesecret | DELETE /resources/stores/secret/{storeid}/secrets/{secretname} | Delete a secret from a store. SecretStoreItemApi | getsecret | GET /resources/stores/secret/{storeid}/secrets/{secretname} | Get secret metadata. *SecretStoreItemApi* | getsecrets | GET /resources/stores/secret/{storeid}/secrets | List secrets within a store. *SecretStoreItemApi* | mustrecreatesecret | PATCH /resources/stores/secret/{storeid}/secrets | Recreate a secret in a store. SecretStoreItemApi | recreatesecret | PUT /resources/stores/secret/{storeid}/secrets | Create or recreate a secret in a store. ServerApi | createpoolserver | POST /service/{serviceid}/pool/{poolid}/server | Add a server to a pool ServerApi | deletepoolserver | DELETE /service/{serviceid}/pool/{poolid}/server/{serverid} | Delete a server from a pool *ServerApi* | getpoolserver | GET /service/{serviceid}/pool/{poolid}/server/{serverid} | Get a pool server ServerApi | listpoolservers | GET /service/{serviceid}/pool/{poolid}/servers | List servers in a pool ServerApi | updatepoolserver | PUT /service/{serviceid}/pool/{poolid}/server/{serverid} | Update a server *ServiceApi* | createservice | POST /service | Create a service ServiceApi | deleteservice | DELETE /service/{serviceid} | Delete a service ServiceApi | getservice | GET /service/{serviceid} | Get a service ServiceApi | getservicedetail | GET /service/{serviceid}/details | Get service details *ServiceApi* | listservicedomains | GET /service/{serviceid}/domain | List the domains within a service ServiceApi | listservices | GET /service | List services *ServiceApi* | searchservice | GET /service/search | Search for a service by name ServiceApi | updateservice | PUT /service/{serviceid} | Update a service ServiceAuthorizationsApi | createserviceauthorization | POST /service-authorizations | Create service authorization ServiceAuthorizationsApi | deleteserviceauthorization | DELETE /service-authorizations/{serviceauthorizationid} | Delete service authorization ServiceAuthorizationsApi | deleteserviceauthorization2 | DELETE /service-authorizations | Delete service authorizations ServiceAuthorizationsApi | listserviceauthorization | GET /service-authorizations | List service authorizations ServiceAuthorizationsApi | showserviceauthorization | GET /service-authorizations/{serviceauthorizationid} | Show service authorization ServiceAuthorizationsApi | updateserviceauthorization | PATCH /service-authorizations/{serviceauthorizationid} | Update service authorization ServiceAuthorizationsApi | updateserviceauthorization2 | PATCH /service-authorizations | Update service authorizations SettingsApi | getservicesettings | GET /service/{serviceid}/version/{versionid}/settings | Get service settings SettingsApi | updateservicesettings | PUT /service/{serviceid}/version/{versionid}/settings | Update service settings SnippetApi | createsnippet | POST /service/{serviceid}/version/{versionid}/snippet | Create a snippet *SnippetApi* | deletesnippet | DELETE /service/{serviceid}/version/{versionid}/snippet/{snippetname} | Delete a snippet *SnippetApi* | getsnippet | GET /service/{serviceid}/version/{versionid}/snippet/{snippetname} | Get a versioned snippet *SnippetApi* | getsnippetdynamic | GET /service/{serviceid}/snippet/{snippetid} | Get a dynamic snippet *SnippetApi* | listsnippets | GET /service/{serviceid}/version/{versionid}/snippet | List snippets SnippetApi | updatesnippet | PUT /service/{serviceid}/version/{versionid}/snippet/{snippetname} | Update a versioned snippet SnippetApi | updatesnippetdynamic | PUT /service/{serviceid}/snippet/{snippetid} | Update a dynamic snippet StarApi | createservicestar | POST /stars | Create a star StarApi | deleteservicestar | DELETE /stars/{starid} | Delete a star *StarApi* | getservicestar | GET /stars/{starid} | Get a star StarApi | listservicestars | GET /stars | List stars StatsApi | getservicestats | GET /service/{serviceid}/stats/summary | Get stats for a service *SudoApi* | requestsudoaccess | POST /sudo | Request Sudo access *TlsActivationsApi* | createtlsactivation | POST /tls/activations | Enable TLS for a domain using a custom certificate *TlsActivationsApi* | deletetlsactivation | DELETE /tls/activations/{tlsactivationid} | Disable TLS on a domain *TlsActivationsApi* | gettlsactivation | GET /tls/activations/{tlsactivationid} | Get a TLS activation *TlsActivationsApi* | listtlsactivations | GET /tls/activations | List TLS activations *TlsActivationsApi* | updatetlsactivation | PATCH /tls/activations/{tlsactivationid} | Update a certificate *TlsBulkCertificatesApi* | deletebulktlscert | DELETE /tls/bulk/certificates/{certificateid} | Delete a certificate *TlsBulkCertificatesApi* | gettlsbulkcert | GET /tls/bulk/certificates/{certificateid} | Get a certificate *TlsBulkCertificatesApi* | listtlsbulkcerts | GET /tls/bulk/certificates | List certificates TlsBulkCertificatesApi | updatebulktlscert | PATCH /tls/bulk/certificates/{certificateid} | Update a certificate TlsBulkCertificatesApi | uploadtlsbulkcert | POST /tls/bulk/certificates | Upload a certificate *TlsCertificatesApi* | createtlscert | POST /tls/certificates | Create a TLS certificate *TlsCertificatesApi* | deletetlscert | DELETE /tls/certificates/{tlscertificateid} | Delete a TLS certificate *TlsCertificatesApi* | gettlscert | GET /tls/certificates/{tlscertificateid} | Get a TLS certificate *TlsCertificatesApi* | listtlscerts | GET /tls/certificates | List TLS certificates *TlsCertificatesApi* | updatetlscert | PATCH /tls/certificates/{tlscertificateid} | Update a TLS certificate *TlsConfigurationsApi* | gettlsconfig | GET /tls/configurations/{tlsconfigurationid} | Get a TLS configuration *TlsConfigurationsApi* | listtlsconfigs | GET /tls/configurations | List TLS configurations *TlsConfigurationsApi* | updatetlsconfig | PATCH /tls/configurations/{tlsconfigurationid} | Update a TLS configuration *TlsDomainsApi* | listtlsdomains | GET /tls/domains | List TLS domains *TlsPrivateKeysApi* | createtlskey | POST /tls/privatekeys | Create a TLS private key TlsPrivateKeysApi | deletetlskey | DELETE /tls/privatekeys/{tlsprivatekeyid} | Delete a TLS private key TlsPrivateKeysApi | gettlskey | GET /tls/privatekeys/{tlsprivatekeyid} | Get a TLS private key TlsPrivateKeysApi | listtlskeys | GET /tls/privatekeys | List TLS private keys *TlsSubscriptionsApi* | createglobalsignemailchallenge | POST /tls/subscriptions/{tlssubscriptionid}/authorizations/{tlsauthorizationid}/globalsignemailchallenges | Creates a GlobalSign email challenge. TlsSubscriptionsApi | createtlssub | POST /tls/subscriptions | Create a TLS subscription TlsSubscriptionsApi | deleteglobalsignemailchallenge | DELETE /tls/subscriptions/{tlssubscriptionid}/authorizations/{tlsauthorizationid}/globalsignemailchallenges/{globalsignemailchallengeid} | Delete a GlobalSign email challenge TlsSubscriptionsApi | deletetlssub | DELETE /tls/subscriptions/{tlssubscriptionid} | Delete a TLS subscription TlsSubscriptionsApi | gettlssub | GET /tls/subscriptions/{tlssubscriptionid} | Get a TLS subscription TlsSubscriptionsApi | listtlssubs | GET /tls/subscriptions | List TLS subscriptions TlsSubscriptionsApi | patchtlssub | PATCH /tls/subscriptions/{tlssubscriptionid} | Update a TLS subscription TokensApi | bulkrevoketokens | DELETE /tokens | Revoke multiple tokens TokensApi | createtoken | POST /tokens | Create a token *TokensApi* | gettoken | GET /tokens/{tokenid} | Get a token *TokensApi* | gettokencurrent | GET /tokens/self | Get the current token *TokensApi* | listtokenscustomer | GET /customer/{customerid}/tokens | List tokens for a customer TokensApi | listtokensuser | GET /tokens | List tokens for the authenticated user TokensApi | revoketoken | DELETE /tokens/{tokenid} | Revoke a token TokensApi | revoketokencurrent | DELETE /tokens/self | Revoke the current token UserApi | createuser | POST /user | Create a user *UserApi* | deleteuser | DELETE /user/{userid} | Delete a user *UserApi* | getcurrentuser | GET /currentuser | Get the current user UserApi | getuser | GET /user/{userid} | Get a user UserApi | requestpasswordreset | POST /user/{userlogin}/password/requestreset | Request a password reset UserApi | updateuser | PUT /user/{userid} | Update a user UserApi | updateuserpassword | POST /currentuser/password | Update the user's password *VclApi* | createcustomvcl | POST /service/{serviceid}/version/{versionid}/vcl | Create a custom VCL file *VclApi* | deletecustomvcl | DELETE /service/{serviceid}/version/{versionid}/vcl/{vclname} | Delete a custom VCL file VclApi | getcustomvcl | GET /service/{serviceid}/version/{versionid}/vcl/{vclname} | Get a custom VCL file *VclApi* | getcustomvclboilerplate | GET /service/{serviceid}/version/{versionid}/boilerplate | Get boilerplate VCL VclApi | getcustomvclgenerated | GET /service/{serviceid}/version/{versionid}/generatedvcl | Get the generated VCL for a service VclApi | getcustomvclgeneratedhighlighted | GET /service/{serviceid}/version/{versionid}/generatedvcl/content | Get the generated VCL with syntax highlighting *VclApi* | getcustomvclhighlighted | GET /service/{serviceid}/version/{versionid}/vcl/{vclname}/content | Get a custom VCL file with syntax highlighting *VclApi* | getcustomvclraw | GET /service/{serviceid}/version/{versionid}/vcl/{vclname}/download | Download a custom VCL file *VclApi* | lintvcldefault | POST /vcllint | Lint (validate) VCL using a default set of flags. VclApi | lintvclforservice | POST /service/{serviceid}/lint | Lint (validate) VCL using flags set for the service. VclApi | listcustomvcl | GET /service/{serviceid}/version/{versionid}/vcl | List custom VCL files VclApi | setcustomvclmain | PUT /service/{serviceid}/version/{versionid}/vcl/{vclname}/main | Set a custom VCL file as main VclApi | updatecustomvcl | PUT /service/{serviceid}/version/{versionid}/vcl/{vclname} | Update a custom VCL file *VclDiffApi* | vcldiffserviceversions | GET /service/{serviceid}/vcl/diff/from/{fromversionid}/to/{toversionid} | Get a comparison of the VCL changes between two service versions *VersionApi* | activateserviceversion | PUT /service/{serviceid}/version/{versionid}/activate | Activate a service version *VersionApi* | cloneserviceversion | PUT /service/{serviceid}/version/{versionid}/clone | Clone a service version *VersionApi* | createserviceversion | POST /service/{serviceid}/version | Create a service version VersionApi | deactivateserviceversion | PUT /service/{serviceid}/version/{versionid}/deactivate | Deactivate a service version VersionApi | getserviceversion | GET /service/{serviceid}/version/{versionid} | Get a version of a service VersionApi | listserviceversions | GET /service/{serviceid}/version | List versions of a service *VersionApi* | lockserviceversion | PUT /service/{serviceid}/version/{versionid}/lock | Lock a service version *VersionApi* | updateserviceversion | PUT /service/{serviceid}/version/{versionid} | Update a service version *VersionApi* | validateserviceversion | GET /service/{serviceid}/version/{versionid}/validate | Validate a service version *WafActiveRulesApi* | bulkdeletewafactiverules | DELETE /waf/firewalls/{firewallid}/versions/{versionid}/active-rules | Delete multiple active rules from a WAF *WafActiveRulesApi* | bulkupdatewafactiverules | PATCH /waf/firewalls/{firewallid}/versions/{versionid}/active-rules/bulk | Update multiple active rules *WafActiveRulesApi* | createwafactiverule | POST /waf/firewalls/{firewallid}/versions/{versionid}/active-rules | Add a rule to a WAF as an active rule WafActiveRulesApi | createwafactiverulestag | POST /waf/firewalls/{firewallid}/versions/{versionid}/tags/{waftagname}/active-rules | Create active rules by tag WafActiveRulesApi | deletewafactiverule | DELETE /waf/firewalls/{firewallid}/versions/{versionid}/active-rules/{wafruleid} | Delete an active rule *WafActiveRulesApi* | getwafactiverule | GET /waf/firewalls/{firewallid}/versions/{versionid}/active-rules/{wafruleid} | Get an active WAF rule object WafActiveRulesApi | listwafactiverules | GET /waf/firewalls/{firewallid}/versions/{versionid}/active-rules | List active rules on a WAF *WafActiveRulesApi* | updatewafactiverule | PATCH /waf/firewalls/{firewallid}/versions/{versionid}/active-rules/{wafruleid} | Update an active rule WafExclusionsApi | createwafruleexclusion | POST /waf/firewalls/{firewallid}/versions/{firewallversionnumber}/exclusions | Create a WAF rule exclusion WafExclusionsApi | deletewafruleexclusion | DELETE /waf/firewalls/{firewallid}/versions/{firewallversionnumber}/exclusions/{exclusionnumber} | Delete a WAF rule exclusion *WafExclusionsApi* | getwafruleexclusion | GET /waf/firewalls/{firewallid}/versions/{firewallversionnumber}/exclusions/{exclusionnumber} | Get a WAF rule exclusion WafExclusionsApi | listwafruleexclusions | GET /waf/firewalls/{firewallid}/versions/{firewallversionnumber}/exclusions | List WAF rule exclusions WafExclusionsApi | updatewafruleexclusion | PATCH /waf/firewalls/{firewallid}/versions/{firewallversionnumber}/exclusions/{exclusionnumber} | Update a WAF rule exclusion *WafFirewallVersionsApi* | clonewaffirewallversion | PUT /waf/firewalls/{firewallid}/versions/{firewallversionnumber}/clone | Clone a firewall version *WafFirewallVersionsApi* | createwaffirewallversion | POST /waf/firewalls/{firewallid}/versions | Create a firewall version *WafFirewallVersionsApi* | deployactivatewaffirewallversion | PUT /waf/firewalls/{firewallid}/versions/{firewallversionnumber}/activate | Deploy or activate a firewall version WafFirewallVersionsApi | getwaffirewallversion | GET /waf/firewalls/{firewallid}/versions/{firewallversionnumber} | Get a firewall version WafFirewallVersionsApi | listwaffirewallversions | GET /waf/firewalls/{firewallid}/versions | List firewall versions WafFirewallVersionsApi | updatewaffirewallversion | PATCH /waf/firewalls/{firewallid}/versions/{firewallversionnumber} | Update a firewall version WafFirewallsApi | createwaffirewall | POST /waf/firewalls | Create a firewall WafFirewallsApi | deletewaffirewall | DELETE /waf/firewalls/{firewallid} | Delete a firewall *WafFirewallsApi* | getwaffirewall | GET /waf/firewalls/{firewallid} | Get a firewall WafFirewallsApi | listwaffirewalls | GET /waf/firewalls | List firewalls WafFirewallsApi | updatewaffirewall | PATCH /waf/firewalls/{firewallid} | Update a firewall *WafRuleRevisionsApi* | getwafrulerevision | GET /waf/rules/{wafruleid}/revisions/{wafrulerevisionnumber} | Get a revision of a rule *WafRuleRevisionsApi* | listwafrulerevisions | GET /waf/rules/{wafruleid}/revisions | List revisions for a rule WafRulesApi | getwafrule | GET /waf/rules/{wafruleid} | Get a rule WafRulesApi | listwafrules | GET /waf/rules | List available WAF rules WafTagsApi | listwaftags | GET /waf/tags | List tags
The fastly-rust API client currently does not support the following endpoints:
/resources/stores/kv/{store_id}/batch
(PUT)/service/{service_id}/version/{version_id}/director
(POST)/stats/aggregate
(GET)/stats/field/{field}
(GET)/stats/regions
(GET)/stats/service/{service_id}/field/{field}
(GET)/stats/service/{service_id}
(GET)/stats/usage_by_month
(GET)/stats/usage_by_service
(GET)/stats/usage
(GET)/stats
(GET)/tls/activations/{tls_activation_id}
(GET, PATCH)/tls/activations
(GET)/v1/channel/{service_id}/ts/h/limit/{max_entries}
(GET)/v1/channel/{service_id}/ts/h
(GET)/v1/channel/{service_id}/ts/{start_timestamp}
(GET)If you encounter any non-security-related bug or unexpected behavior, please file an issue using the bug report template.
Please see our SECURITY.md for guidance on reporting security-related issues.
MIT.