A Rust client library for interacting with most facets of the Fastly API.
⚠️ This client library (
1.1.0
) is an early-access release. Features may change without notice. Use at your own risk.
We strongly recommend that you do not install alpha and beta releases on live production services. No official support is provided for such releases. Please try out the library in a test environment, see what breaks without worrying about consequences, and give us feedback.
Read about the Fastly Product Lifecycle.
Rust 2021 Edition
Add the following to Cargo.toml
under [dependencies]
:
toml
fastly-api = "1.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* | 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 ContactApi | deletecontact | DELETE /customer/{customerid}/contact/{contactid} | Delete a contact *ContactApi* | listcontacts | GET /customer/{customerid}/contacts | List contacts *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 | 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 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 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 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 | 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 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 *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 *InvitationsApi* | createinvitation | POST /invitations | Create an invitation InvitationsApi | deleteinvitation | DELETE /invitations/{invitationid} | Delete an invitation InvitationsApi | listinvitations | GET /invitations | List invitations *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 *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 *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 *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 ObjectStoreApi | createstore | POST /resources/stores/object | Create an object store. *ObjectStoreApi* | deletekeyfromstore | DELETE /resources/stores/object/{storeid}/keys/{keyname} | Delete object store key. ObjectStoreApi | deletestore | DELETE /resources/stores/object/{storeid} | Delete an object store. ObjectStoreApi | getkeys | GET /resources/stores/object/{storeid}/keys | List object store keys. ObjectStoreApi | getstore | GET /resources/stores/object/{storeid} | Describe an object store. ObjectStoreApi | getstores | GET /resources/stores/object | List object stores. *ObjectStoreApi* | getvalueforkey | GET /resources/stores/object/{storeid}/keys/{keyname} | Get object store key value. ObjectStoreApi | setvalueforkey | PUT /resources/stores/object/{storeid}/keys/{keyname} | Insert object store key-value. *PackageApi* | getpackage | GET /service/{serviceid}/version/{versionid}/package | Get details of the service's 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* | 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 *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 ResourceApi | deleteresource | DELETE /service/{serviceid}/version/{versionid}/resource/{resourceid} | Delete a resource ResourceApi | getresource | GET /service/{serviceid}/version/{versionid}/resource/{resourceid} | Display a resource ResourceApi | listresources | GET /service/{serviceid}/version/{versionid}/resource | List resources *ResourceApi* | updateresource | PUT /service/{serviceid}/version/{versionid}/resource/{resourceid} | Update a resource *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 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 | 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 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 | 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 *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 *TlsCsrsApi* | createcsr | POST /tls/certificatesigningrequests | Create CSR 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* | 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 *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* | 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
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.