diff --git a/CHANGELOG.md b/CHANGELOG.md index 507e4c1..f906bf7 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [vv1.0.0-beta.29](https://github.com/fastly/fastly-go/releases/tag/release/vv1.0.0-beta.29) (2024-05-24) + +**Bug fixes:** + +- fix(backend): Correct tcp_keepalive_enable to be nullable +- bugfix(resource): Correct `resourceTyperesource` accepted values +- bugfix(sudo): Mark API to require authentication token + +**Enhancements:** + +- feat(image-optimizer-default-settings): Add Image Optimizer Default Settings APIs +- feat(tls-subscriptions): Add `certificate_authority` filter parameter + +**Documentation:** + +- docs(generator): Update links in docs and comments with unified docs site URL structure +- docs(generator): Clean up README by using GitHub alert icons and collapsible sections +- doc(logging-kinesis): Update description of `format` field. +- doc(tls-subscriptions): Update descriptions of `certificate_authority` and `tls_subscription_include` fields. + ## [vv1.0.0-beta.28](https://github.com/fastly/fastly-go/releases/tag/release/vv1.0.0-beta.28) (2024-04-25) **Bug fixes:** diff --git a/README.md b/README.md index 52891bd..ed1d29a 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,12 @@ # fastly-go -A Go client library for interacting with most facets of the [Fastly API](https://developer.fastly.com/reference/api). +A Go client library for interacting with most facets of the [Fastly API](https://www.fastly.com/documentation/reference/api/). -> **NOTE:** This API client is auto-generated from Fastly's OpenAPI specification and may not function correctly when used on the Compute platform. Support for Compute is on the roadmap but has not yet been prioritised. +> [!WARNING] +> This API client is auto-generated from Fastly's OpenAPI specification and may not function correctly when used on the Compute platform. Support for Compute is on the roadmap but has not yet been prioritized. + +> [!TIP] +> If you'd like to use the hand-written API client instead, see [go-fastly](https://github.com/fastly/go-fastly). ## Requirements @@ -14,13 +18,14 @@ Add the following to your project's `go.mod`: ```go.mod require ( - github.com/fastly/fastly-go v1.0.0-beta.28 + github.com/fastly/fastly-go v1.0.0-beta.29 ) ``` ## Usage -> **NOTE**: The Fastly API requires an [API token](https://developer.fastly.com/reference/api/#authentication) for most operations. +> [!NOTE] +> The Fastly API requires an [API token](https://www.fastly.com/documentation/reference/api/#authentication) for most operations. ```go package main @@ -54,546 +59,554 @@ func main() { } ``` -## Documentation for API Endpoints - -All URIs are relative to *https://api.fastly.com* - -Class | Method | HTTP request | Description ------------- | ------------- | ------------- | ------------- -*ACLAPI* | [**CreateACL**](docs/AclAPI.md#createacl) | **POST** `/service/{service_id}/version/{version_id}/acl` | Create a new ACL -*ACLAPI* | [**DeleteACL**](docs/AclAPI.md#deleteacl) | **DELETE** `/service/{service_id}/version/{version_id}/acl/{acl_name}` | Delete an ACL -*ACLAPI* | [**GetACL**](docs/AclAPI.md#getacl) | **GET** `/service/{service_id}/version/{version_id}/acl/{acl_name}` | Describe an ACL -*ACLAPI* | [**ListACLs**](docs/AclAPI.md#listacls) | **GET** `/service/{service_id}/version/{version_id}/acl` | List ACLs -*ACLAPI* | [**UpdateACL**](docs/AclAPI.md#updateacl) | **PUT** `/service/{service_id}/version/{version_id}/acl/{acl_name}` | Update an ACL -*ACLEntryAPI* | [**BulkUpdateACLEntries**](docs/AclEntryAPI.md#bulkupdateaclentries) | **PATCH** `/service/{service_id}/acl/{acl_id}/entries` | Update multiple ACL entries -*ACLEntryAPI* | [**CreateACLEntry**](docs/AclEntryAPI.md#createaclentry) | **POST** `/service/{service_id}/acl/{acl_id}/entry` | Create an ACL entry -*ACLEntryAPI* | [**DeleteACLEntry**](docs/AclEntryAPI.md#deleteaclentry) | **DELETE** `/service/{service_id}/acl/{acl_id}/entry/{acl_entry_id}` | Delete an ACL entry -*ACLEntryAPI* | [**GetACLEntry**](docs/AclEntryAPI.md#getaclentry) | **GET** `/service/{service_id}/acl/{acl_id}/entry/{acl_entry_id}` | Describe an ACL entry -*ACLEntryAPI* | [**ListACLEntries**](docs/AclEntryAPI.md#listaclentries) | **GET** `/service/{service_id}/acl/{acl_id}/entries` | List ACL entries -*ACLEntryAPI* | [**UpdateACLEntry**](docs/AclEntryAPI.md#updateaclentry) | **PATCH** `/service/{service_id}/acl/{acl_id}/entry/{acl_entry_id}` | Update an ACL entry -*ApexRedirectAPI* | [**CreateApexRedirect**](docs/ApexRedirectAPI.md#createapexredirect) | **POST** `/service/{service_id}/version/{version_id}/apex-redirects` | Create an apex redirect -*ApexRedirectAPI* | [**DeleteApexRedirect**](docs/ApexRedirectAPI.md#deleteapexredirect) | **DELETE** `/apex-redirects/{apex_redirect_id}` | Delete an apex redirect -*ApexRedirectAPI* | [**GetApexRedirect**](docs/ApexRedirectAPI.md#getapexredirect) | **GET** `/apex-redirects/{apex_redirect_id}` | Get an apex redirect -*ApexRedirectAPI* | [**ListApexRedirects**](docs/ApexRedirectAPI.md#listapexredirects) | **GET** `/service/{service_id}/version/{version_id}/apex-redirects` | List apex redirects -*ApexRedirectAPI* | [**UpdateApexRedirect**](docs/ApexRedirectAPI.md#updateapexredirect) | **PUT** `/apex-redirects/{apex_redirect_id}` | Update an apex redirect -*AutomationTokensAPI* | [**CreateAutomationToken**](docs/AutomationTokensAPI.md#createautomationtoken) | **POST** `/automation-tokens` | Create Automation Token -*AutomationTokensAPI* | [**GetAutomationTokenID**](docs/AutomationTokensAPI.md#getautomationtokenid) | **GET** `/automation-tokens/{id}` | Retrieve an Automation Token by ID -*AutomationTokensAPI* | [**GetAutomationTokensIDServices**](docs/AutomationTokensAPI.md#getautomationtokensidservices) | **GET** `/automation-tokens/{id}/services` | List Automation Token Services -*AutomationTokensAPI* | [**ListAutomationTokens**](docs/AutomationTokensAPI.md#listautomationtokens) | **GET** `/automation-tokens` | List Customer Automation Tokens -*AutomationTokensAPI* | [**RevokeAutomationTokenID**](docs/AutomationTokensAPI.md#revokeautomationtokenid) | **DELETE** `/automation-tokens/{id}` | Revoke an Automation Token by ID -*BackendAPI* | [**CreateBackend**](docs/BackendAPI.md#createbackend) | **POST** `/service/{service_id}/version/{version_id}/backend` | Create a backend -*BackendAPI* | [**DeleteBackend**](docs/BackendAPI.md#deletebackend) | **DELETE** `/service/{service_id}/version/{version_id}/backend/{backend_name}` | Delete a backend -*BackendAPI* | [**GetBackend**](docs/BackendAPI.md#getbackend) | **GET** `/service/{service_id}/version/{version_id}/backend/{backend_name}` | Describe a backend -*BackendAPI* | [**ListBackends**](docs/BackendAPI.md#listbackends) | **GET** `/service/{service_id}/version/{version_id}/backend` | List backends -*BackendAPI* | [**UpdateBackend**](docs/BackendAPI.md#updatebackend) | **PUT** `/service/{service_id}/version/{version_id}/backend/{backend_name}` | Update a backend -*BillingAPI* | [**GetInvoice**](docs/BillingAPI.md#getinvoice) | **GET** `/billing/v2/year/{year}/month/{month}` | Get an invoice -*BillingAPI* | [**GetInvoiceByID**](docs/BillingAPI.md#getinvoicebyid) | **GET** `/billing/v2/account_customers/{customer_id}/invoices/{invoice_id}` | Get an invoice -*BillingAPI* | [**GetInvoiceMtd**](docs/BillingAPI.md#getinvoicemtd) | **GET** `/billing/v2/account_customers/{customer_id}/mtd_invoice` | Get month-to-date billing estimate -*BillingAddressAPI* | [**AddBillingAddr**](docs/BillingAddressAPI.md#addbillingaddr) | **POST** `/customer/{customer_id}/billing_address` | Add a billing address to a customer -*BillingAddressAPI* | [**DeleteBillingAddr**](docs/BillingAddressAPI.md#deletebillingaddr) | **DELETE** `/customer/{customer_id}/billing_address` | Delete a billing address -*BillingAddressAPI* | [**GetBillingAddr**](docs/BillingAddressAPI.md#getbillingaddr) | **GET** `/customer/{customer_id}/billing_address` | Get a billing address -*BillingAddressAPI* | [**UpdateBillingAddr**](docs/BillingAddressAPI.md#updatebillingaddr) | **PATCH** `/customer/{customer_id}/billing_address` | Update a billing address -*BillingInvoicesAPI* | [**GetInvoiceByInvoiceID**](docs/BillingInvoicesAPI.md#getinvoicebyinvoiceid) | **GET** `/billing/v3/invoices/{invoice_id}` | Get invoice by ID. -*BillingInvoicesAPI* | [**ListInvoices**](docs/BillingInvoicesAPI.md#listinvoices) | **GET** `/billing/v3/invoices` | List of invoices. -*CacheSettingsAPI* | [**CreateCacheSettings**](docs/CacheSettingsAPI.md#createcachesettings) | **POST** `/service/{service_id}/version/{version_id}/cache_settings` | Create a cache settings object -*CacheSettingsAPI* | [**DeleteCacheSettings**](docs/CacheSettingsAPI.md#deletecachesettings) | **DELETE** `/service/{service_id}/version/{version_id}/cache_settings/{cache_settings_name}` | Delete a cache settings object -*CacheSettingsAPI* | [**GetCacheSettings**](docs/CacheSettingsAPI.md#getcachesettings) | **GET** `/service/{service_id}/version/{version_id}/cache_settings/{cache_settings_name}` | Get a cache settings object -*CacheSettingsAPI* | [**ListCacheSettings**](docs/CacheSettingsAPI.md#listcachesettings) | **GET** `/service/{service_id}/version/{version_id}/cache_settings` | List cache settings objects -*CacheSettingsAPI* | [**UpdateCacheSettings**](docs/CacheSettingsAPI.md#updatecachesettings) | **PUT** `/service/{service_id}/version/{version_id}/cache_settings/{cache_settings_name}` | Update a cache settings object -*ConditionAPI* | [**CreateCondition**](docs/ConditionAPI.md#createcondition) | **POST** `/service/{service_id}/version/{version_id}/condition` | Create a condition -*ConditionAPI* | [**DeleteCondition**](docs/ConditionAPI.md#deletecondition) | **DELETE** `/service/{service_id}/version/{version_id}/condition/{condition_name}` | Delete a condition -*ConditionAPI* | [**GetCondition**](docs/ConditionAPI.md#getcondition) | **GET** `/service/{service_id}/version/{version_id}/condition/{condition_name}` | Describe a condition -*ConditionAPI* | [**ListConditions**](docs/ConditionAPI.md#listconditions) | **GET** `/service/{service_id}/version/{version_id}/condition` | List conditions -*ConditionAPI* | [**UpdateCondition**](docs/ConditionAPI.md#updatecondition) | **PUT** `/service/{service_id}/version/{version_id}/condition/{condition_name}` | Update a condition -*ConfigStoreAPI* | [**CreateConfigStore**](docs/ConfigStoreAPI.md#createconfigstore) | **POST** `/resources/stores/config` | Create a config store -*ConfigStoreAPI* | [**DeleteConfigStore**](docs/ConfigStoreAPI.md#deleteconfigstore) | **DELETE** `/resources/stores/config/{config_store_id}` | Delete a config store -*ConfigStoreAPI* | [**GetConfigStore**](docs/ConfigStoreAPI.md#getconfigstore) | **GET** `/resources/stores/config/{config_store_id}` | Describe a config store -*ConfigStoreAPI* | [**GetConfigStoreInfo**](docs/ConfigStoreAPI.md#getconfigstoreinfo) | **GET** `/resources/stores/config/{config_store_id}/info` | Get config store metadata -*ConfigStoreAPI* | [**ListConfigStoreServices**](docs/ConfigStoreAPI.md#listconfigstoreservices) | **GET** `/resources/stores/config/{config_store_id}/services` | List linked services -*ConfigStoreAPI* | [**ListConfigStores**](docs/ConfigStoreAPI.md#listconfigstores) | **GET** `/resources/stores/config` | List config stores -*ConfigStoreAPI* | [**UpdateConfigStore**](docs/ConfigStoreAPI.md#updateconfigstore) | **PUT** `/resources/stores/config/{config_store_id}` | Update a config store -*ConfigStoreItemAPI* | [**BulkUpdateConfigStoreItem**](docs/ConfigStoreItemAPI.md#bulkupdateconfigstoreitem) | **PATCH** `/resources/stores/config/{config_store_id}/items` | Update multiple entries in a config store -*ConfigStoreItemAPI* | [**CreateConfigStoreItem**](docs/ConfigStoreItemAPI.md#createconfigstoreitem) | **POST** `/resources/stores/config/{config_store_id}/item` | Create an entry in a config store -*ConfigStoreItemAPI* | [**DeleteConfigStoreItem**](docs/ConfigStoreItemAPI.md#deleteconfigstoreitem) | **DELETE** `/resources/stores/config/{config_store_id}/item/{config_store_item_key}` | Delete an item from a config store -*ConfigStoreItemAPI* | [**GetConfigStoreItem**](docs/ConfigStoreItemAPI.md#getconfigstoreitem) | **GET** `/resources/stores/config/{config_store_id}/item/{config_store_item_key}` | Get an item from a config store -*ConfigStoreItemAPI* | [**ListConfigStoreItems**](docs/ConfigStoreItemAPI.md#listconfigstoreitems) | **GET** `/resources/stores/config/{config_store_id}/items` | List items in a config store -*ConfigStoreItemAPI* | [**UpdateConfigStoreItem**](docs/ConfigStoreItemAPI.md#updateconfigstoreitem) | **PATCH** `/resources/stores/config/{config_store_id}/item/{config_store_item_key}` | Update an entry in a config store -*ConfigStoreItemAPI* | [**UpsertConfigStoreItem**](docs/ConfigStoreItemAPI.md#upsertconfigstoreitem) | **PUT** `/resources/stores/config/{config_store_id}/item/{config_store_item_key}` | Insert or update an entry in a config store -*ContactAPI* | [**CreateContacts**](docs/ContactAPI.md#createcontacts) | **POST** `/customer/{customer_id}/contacts` | Add a new customer contact -*ContactAPI* | [**DeleteContact**](docs/ContactAPI.md#deletecontact) | **DELETE** `/customer/{customer_id}/contact/{contact_id}` | Delete a contact -*ContactAPI* | [**ListContacts**](docs/ContactAPI.md#listcontacts) | **GET** `/customer/{customer_id}/contacts` | List contacts -*ContentAPI* | [**ContentCheck**](docs/ContentAPI.md#contentcheck) | **GET** `/content/edge_check` | Check status of content in each POP's cache -*CustomerAPI* | [**DeleteCustomer**](docs/CustomerAPI.md#deletecustomer) | **DELETE** `/customer/{customer_id}` | Delete a customer -*CustomerAPI* | [**GetCustomer**](docs/CustomerAPI.md#getcustomer) | **GET** `/customer/{customer_id}` | Get a customer -*CustomerAPI* | [**GetLoggedInCustomer**](docs/CustomerAPI.md#getloggedincustomer) | **GET** `/current_customer` | Get the logged in customer -*CustomerAPI* | [**ListUsers**](docs/CustomerAPI.md#listusers) | **GET** `/customer/{customer_id}/users` | List users -*CustomerAPI* | [**UpdateCustomer**](docs/CustomerAPI.md#updatecustomer) | **PUT** `/customer/{customer_id}` | Update a customer -*DictionaryAPI* | [**CreateDictionary**](docs/DictionaryAPI.md#createdictionary) | **POST** `/service/{service_id}/version/{version_id}/dictionary` | Create an edge dictionary -*DictionaryAPI* | [**DeleteDictionary**](docs/DictionaryAPI.md#deletedictionary) | **DELETE** `/service/{service_id}/version/{version_id}/dictionary/{dictionary_name}` | Delete an edge dictionary -*DictionaryAPI* | [**GetDictionary**](docs/DictionaryAPI.md#getdictionary) | **GET** `/service/{service_id}/version/{version_id}/dictionary/{dictionary_name}` | Get an edge dictionary -*DictionaryAPI* | [**ListDictionaries**](docs/DictionaryAPI.md#listdictionaries) | **GET** `/service/{service_id}/version/{version_id}/dictionary` | List edge dictionaries -*DictionaryAPI* | [**UpdateDictionary**](docs/DictionaryAPI.md#updatedictionary) | **PUT** `/service/{service_id}/version/{version_id}/dictionary/{dictionary_name}` | Update an edge dictionary -*DictionaryInfoAPI* | [**GetDictionaryInfo**](docs/DictionaryInfoAPI.md#getdictionaryinfo) | **GET** `/service/{service_id}/version/{version_id}/dictionary/{dictionary_id}/info` | Get edge dictionary metadata -*DictionaryItemAPI* | [**BulkUpdateDictionaryItem**](docs/DictionaryItemAPI.md#bulkupdatedictionaryitem) | **PATCH** `/service/{service_id}/dictionary/{dictionary_id}/items` | Update multiple entries in an edge dictionary -*DictionaryItemAPI* | [**CreateDictionaryItem**](docs/DictionaryItemAPI.md#createdictionaryitem) | **POST** `/service/{service_id}/dictionary/{dictionary_id}/item` | Create an entry in an edge dictionary -*DictionaryItemAPI* | [**DeleteDictionaryItem**](docs/DictionaryItemAPI.md#deletedictionaryitem) | **DELETE** `/service/{service_id}/dictionary/{dictionary_id}/item/{dictionary_item_key}` | Delete an item from an edge dictionary -*DictionaryItemAPI* | [**GetDictionaryItem**](docs/DictionaryItemAPI.md#getdictionaryitem) | **GET** `/service/{service_id}/dictionary/{dictionary_id}/item/{dictionary_item_key}` | Get an item from an edge dictionary -*DictionaryItemAPI* | [**ListDictionaryItems**](docs/DictionaryItemAPI.md#listdictionaryitems) | **GET** `/service/{service_id}/dictionary/{dictionary_id}/items` | List items in an edge dictionary -*DictionaryItemAPI* | [**UpdateDictionaryItem**](docs/DictionaryItemAPI.md#updatedictionaryitem) | **PATCH** `/service/{service_id}/dictionary/{dictionary_id}/item/{dictionary_item_key}` | Update an entry in an edge dictionary -*DictionaryItemAPI* | [**UpsertDictionaryItem**](docs/DictionaryItemAPI.md#upsertdictionaryitem) | **PUT** `/service/{service_id}/dictionary/{dictionary_id}/item/{dictionary_item_key}` | Insert or update an entry in an edge dictionary -*DiffAPI* | [**DiffServiceVersions**](docs/DiffAPI.md#diffserviceversions) | **GET** `/service/{service_id}/diff/from/{from_version_id}/to/{to_version_id}` | Diff two service versions -*DirectorAPI* | [**CreateDirector**](docs/DirectorAPI.md#createdirector) | **POST** `/service/{service_id}/version/{version_id}/director` | Create a director -*DirectorAPI* | [**DeleteDirector**](docs/DirectorAPI.md#deletedirector) | **DELETE** `/service/{service_id}/version/{version_id}/director/{director_name}` | Delete a director -*DirectorAPI* | [**GetDirector**](docs/DirectorAPI.md#getdirector) | **GET** `/service/{service_id}/version/{version_id}/director/{director_name}` | Get a director -*DirectorAPI* | [**ListDirectors**](docs/DirectorAPI.md#listdirectors) | **GET** `/service/{service_id}/version/{version_id}/director` | List directors -*DirectorAPI* | [**UpdateDirector**](docs/DirectorAPI.md#updatedirector) | **PUT** `/service/{service_id}/version/{version_id}/director/{director_name}` | Update a director -*DirectorBackendAPI* | [**CreateDirectorBackend**](docs/DirectorBackendAPI.md#createdirectorbackend) | **POST** `/service/{service_id}/version/{version_id}/director/{director_name}/backend/{backend_name}` | Create a director-backend relationship -*DirectorBackendAPI* | [**DeleteDirectorBackend**](docs/DirectorBackendAPI.md#deletedirectorbackend) | **DELETE** `/service/{service_id}/version/{version_id}/director/{director_name}/backend/{backend_name}` | Delete a director-backend relationship -*DirectorBackendAPI* | [**GetDirectorBackend**](docs/DirectorBackendAPI.md#getdirectorbackend) | **GET** `/service/{service_id}/version/{version_id}/director/{director_name}/backend/{backend_name}` | Get a director-backend relationship -*DomainAPI* | [**CheckDomain**](docs/DomainAPI.md#checkdomain) | **GET** `/service/{service_id}/version/{version_id}/domain/{domain_name}/check` | Validate DNS configuration for a single domain on a service -*DomainAPI* | [**CheckDomains**](docs/DomainAPI.md#checkdomains) | **GET** `/service/{service_id}/version/{version_id}/domain/check_all` | Validate DNS configuration for all domains on a service -*DomainAPI* | [**CreateDomain**](docs/DomainAPI.md#createdomain) | **POST** `/service/{service_id}/version/{version_id}/domain` | Add a domain name to a service -*DomainAPI* | [**DeleteDomain**](docs/DomainAPI.md#deletedomain) | **DELETE** `/service/{service_id}/version/{version_id}/domain/{domain_name}` | Remove a domain from a service -*DomainAPI* | [**GetDomain**](docs/DomainAPI.md#getdomain) | **GET** `/service/{service_id}/version/{version_id}/domain/{domain_name}` | Describe a domain -*DomainAPI* | [**ListDomains**](docs/DomainAPI.md#listdomains) | **GET** `/service/{service_id}/version/{version_id}/domain` | List domains -*DomainAPI* | [**UpdateDomain**](docs/DomainAPI.md#updatedomain) | **PUT** `/service/{service_id}/version/{version_id}/domain/{domain_name}` | Update a domain -*DomainInspectorHistoricalAPI* | [**GetDomainInspectorHistorical**](docs/DomainInspectorHistoricalAPI.md#getdomaininspectorhistorical) | **GET** `/metrics/domains/services/{service_id}` | Get historical domain data for a service -*DomainInspectorRealtimeAPI* | [**GetDomainInspectorLast120Seconds**](docs/DomainInspectorRealtimeAPI.md#getdomaininspectorlast120seconds) | **GET** `/v1/domains/{service_id}/ts/h` | Get real-time domain data for the last 120 seconds -*DomainInspectorRealtimeAPI* | [**GetDomainInspectorLastMaxEntries**](docs/DomainInspectorRealtimeAPI.md#getdomaininspectorlastmaxentries) | **GET** `/v1/domains/{service_id}/ts/h/limit/{max_entries}` | Get a limited number of real-time domain data entries -*DomainInspectorRealtimeAPI* | [**GetDomainInspectorLastSecond**](docs/DomainInspectorRealtimeAPI.md#getdomaininspectorlastsecond) | **GET** `/v1/domains/{service_id}/ts/{start_timestamp}` | Get real-time domain data from a specified time -*DomainOwnershipsAPI* | [**ListDomainOwnerships**](docs/DomainOwnershipsAPI.md#listdomainownerships) | **GET** `/domain-ownerships` | List domain-ownerships -*EnabledProductsAPI* | [**DisableProduct**](docs/EnabledProductsAPI.md#disableproduct) | **DELETE** `/enabled-products/{product_id}/services/{service_id}` | Disable a product -*EnabledProductsAPI* | [**EnableProduct**](docs/EnabledProductsAPI.md#enableproduct) | **PUT** `/enabled-products/{product_id}/services/{service_id}` | Enable a product -*EnabledProductsAPI* | [**GetEnabledProduct**](docs/EnabledProductsAPI.md#getenabledproduct) | **GET** `/enabled-products/{product_id}/services/{service_id}` | Get enabled product -*EventsAPI* | [**GetEvent**](docs/EventsAPI.md#getevent) | **GET** `/events/{event_id}` | Get an event -*EventsAPI* | [**ListEvents**](docs/EventsAPI.md#listevents) | **GET** `/events` | List events -*GzipAPI* | [**CreateGzipConfig**](docs/GzipAPI.md#creategzipconfig) | **POST** `/service/{service_id}/version/{version_id}/gzip` | Create a gzip configuration -*GzipAPI* | [**DeleteGzipConfig**](docs/GzipAPI.md#deletegzipconfig) | **DELETE** `/service/{service_id}/version/{version_id}/gzip/{gzip_name}` | Delete a gzip configuration -*GzipAPI* | [**GetGzipConfigs**](docs/GzipAPI.md#getgzipconfigs) | **GET** `/service/{service_id}/version/{version_id}/gzip/{gzip_name}` | Get a gzip configuration -*GzipAPI* | [**ListGzipConfigs**](docs/GzipAPI.md#listgzipconfigs) | **GET** `/service/{service_id}/version/{version_id}/gzip` | List gzip configurations -*GzipAPI* | [**UpdateGzipConfig**](docs/GzipAPI.md#updategzipconfig) | **PUT** `/service/{service_id}/version/{version_id}/gzip/{gzip_name}` | Update a gzip configuration -*HeaderAPI* | [**CreateHeaderObject**](docs/HeaderAPI.md#createheaderobject) | **POST** `/service/{service_id}/version/{version_id}/header` | Create a Header object -*HeaderAPI* | [**DeleteHeaderObject**](docs/HeaderAPI.md#deleteheaderobject) | **DELETE** `/service/{service_id}/version/{version_id}/header/{header_name}` | Delete a Header object -*HeaderAPI* | [**GetHeaderObject**](docs/HeaderAPI.md#getheaderobject) | **GET** `/service/{service_id}/version/{version_id}/header/{header_name}` | Get a Header object -*HeaderAPI* | [**ListHeaderObjects**](docs/HeaderAPI.md#listheaderobjects) | **GET** `/service/{service_id}/version/{version_id}/header` | List Header objects -*HeaderAPI* | [**UpdateHeaderObject**](docs/HeaderAPI.md#updateheaderobject) | **PUT** `/service/{service_id}/version/{version_id}/header/{header_name}` | Update a Header object -*HealthcheckAPI* | [**CreateHealthcheck**](docs/HealthcheckAPI.md#createhealthcheck) | **POST** `/service/{service_id}/version/{version_id}/healthcheck` | Create a health check -*HealthcheckAPI* | [**DeleteHealthcheck**](docs/HealthcheckAPI.md#deletehealthcheck) | **DELETE** `/service/{service_id}/version/{version_id}/healthcheck/{healthcheck_name}` | Delete a health check -*HealthcheckAPI* | [**GetHealthcheck**](docs/HealthcheckAPI.md#gethealthcheck) | **GET** `/service/{service_id}/version/{version_id}/healthcheck/{healthcheck_name}` | Get a health check -*HealthcheckAPI* | [**ListHealthchecks**](docs/HealthcheckAPI.md#listhealthchecks) | **GET** `/service/{service_id}/version/{version_id}/healthcheck` | List health checks -*HealthcheckAPI* | [**UpdateHealthcheck**](docs/HealthcheckAPI.md#updatehealthcheck) | **PUT** `/service/{service_id}/version/{version_id}/healthcheck/{healthcheck_name}` | Update a health check -*HistoricalAPI* | [**GetHistStats**](docs/HistoricalAPI.md#gethiststats) | **GET** `/stats` | Get historical stats -*HistoricalAPI* | [**GetHistStatsAggregated**](docs/HistoricalAPI.md#gethiststatsaggregated) | **GET** `/stats/aggregate` | Get aggregated historical stats -*HistoricalAPI* | [**GetHistStatsField**](docs/HistoricalAPI.md#gethiststatsfield) | **GET** `/stats/field/{field}` | Get historical stats for a single field -*HistoricalAPI* | [**GetHistStatsService**](docs/HistoricalAPI.md#gethiststatsservice) | **GET** `/stats/service/{service_id}` | Get historical stats for a single service -*HistoricalAPI* | [**GetHistStatsServiceField**](docs/HistoricalAPI.md#gethiststatsservicefield) | **GET** `/stats/service/{service_id}/field/{field}` | Get historical stats for a single service/field combination -*HistoricalAPI* | [**GetRegions**](docs/HistoricalAPI.md#getregions) | **GET** `/stats/regions` | Get region codes -*HistoricalAPI* | [**GetUsage**](docs/HistoricalAPI.md#getusage) | **GET** `/stats/usage` | Get usage statistics -*HistoricalAPI* | [**GetUsageMonth**](docs/HistoricalAPI.md#getusagemonth) | **GET** `/stats/usage_by_month` | Get month-to-date usage statistics -*HistoricalAPI* | [**GetUsageService**](docs/HistoricalAPI.md#getusageservice) | **GET** `/stats/usage_by_service` | Get usage statistics per service -*HTTP3API* | [**CreateHTTP3**](docs/Http3API.md#createhttp3) | **POST** `/service/{service_id}/version/{version_id}/http3` | Enable support for HTTP/3 -*HTTP3API* | [**DeleteHTTP3**](docs/Http3API.md#deletehttp3) | **DELETE** `/service/{service_id}/version/{version_id}/http3` | Disable support for HTTP/3 -*HTTP3API* | [**GetHTTP3**](docs/Http3API.md#gethttp3) | **GET** `/service/{service_id}/version/{version_id}/http3` | Get HTTP/3 status -*IamPermissionsAPI* | [**ListPermissions**](docs/IamPermissionsAPI.md#listpermissions) | **GET** `/permissions` | List permissions -*IamRolesAPI* | [**AddRolePermissions**](docs/IamRolesAPI.md#addrolepermissions) | **POST** `/roles/{role_id}/permissions` | Add permissions to a role -*IamRolesAPI* | [**CreateARole**](docs/IamRolesAPI.md#createarole) | **POST** `/roles` | Create a role -*IamRolesAPI* | [**DeleteARole**](docs/IamRolesAPI.md#deletearole) | **DELETE** `/roles/{role_id}` | Delete a role -*IamRolesAPI* | [**GetARole**](docs/IamRolesAPI.md#getarole) | **GET** `/roles/{role_id}` | Get a role -*IamRolesAPI* | [**ListRolePermissions**](docs/IamRolesAPI.md#listrolepermissions) | **GET** `/roles/{role_id}/permissions` | List permissions in a role -*IamRolesAPI* | [**ListRoles**](docs/IamRolesAPI.md#listroles) | **GET** `/roles` | List roles -*IamRolesAPI* | [**RemoveRolePermissions**](docs/IamRolesAPI.md#removerolepermissions) | **DELETE** `/roles/{role_id}/permissions` | Remove permissions from a role -*IamRolesAPI* | [**UpdateARole**](docs/IamRolesAPI.md#updatearole) | **PATCH** `/roles/{role_id}` | Update a role -*IamServiceGroupsAPI* | [**AddServiceGroupServices**](docs/IamServiceGroupsAPI.md#addservicegroupservices) | **POST** `/service-groups/{service_group_id}/services` | Add services in a service group -*IamServiceGroupsAPI* | [**CreateAServiceGroup**](docs/IamServiceGroupsAPI.md#createaservicegroup) | **POST** `/service-groups` | Create a service group -*IamServiceGroupsAPI* | [**DeleteAServiceGroup**](docs/IamServiceGroupsAPI.md#deleteaservicegroup) | **DELETE** `/service-groups/{service_group_id}` | Delete a service group -*IamServiceGroupsAPI* | [**GetAServiceGroup**](docs/IamServiceGroupsAPI.md#getaservicegroup) | **GET** `/service-groups/{service_group_id}` | Get a service group -*IamServiceGroupsAPI* | [**ListServiceGroupServices**](docs/IamServiceGroupsAPI.md#listservicegroupservices) | **GET** `/service-groups/{service_group_id}/services` | List services to a service group -*IamServiceGroupsAPI* | [**ListServiceGroups**](docs/IamServiceGroupsAPI.md#listservicegroups) | **GET** `/service-groups` | List service groups -*IamServiceGroupsAPI* | [**RemoveServiceGroupServices**](docs/IamServiceGroupsAPI.md#removeservicegroupservices) | **DELETE** `/service-groups/{service_group_id}/services` | Remove services from a service group -*IamServiceGroupsAPI* | [**UpdateAServiceGroup**](docs/IamServiceGroupsAPI.md#updateaservicegroup) | **PATCH** `/service-groups/{service_group_id}` | Update a service group -*IamUserGroupsAPI* | [**AddUserGroupMembers**](docs/IamUserGroupsAPI.md#addusergroupmembers) | **POST** `/user-groups/{user_group_id}/members` | Add members to a user group -*IamUserGroupsAPI* | [**AddUserGroupRoles**](docs/IamUserGroupsAPI.md#addusergrouproles) | **POST** `/user-groups/{user_group_id}/roles` | Add roles to a user group -*IamUserGroupsAPI* | [**AddUserGroupServiceGroups**](docs/IamUserGroupsAPI.md#addusergroupservicegroups) | **POST** `/user-groups/{user_group_id}/service-groups` | Add service groups to a user group -*IamUserGroupsAPI* | [**CreateAUserGroup**](docs/IamUserGroupsAPI.md#createausergroup) | **POST** `/user-groups` | Create a user group -*IamUserGroupsAPI* | [**DeleteAUserGroup**](docs/IamUserGroupsAPI.md#deleteausergroup) | **DELETE** `/user-groups/{user_group_id}` | Delete a user group -*IamUserGroupsAPI* | [**GetAUserGroup**](docs/IamUserGroupsAPI.md#getausergroup) | **GET** `/user-groups/{user_group_id}` | Get a user group -*IamUserGroupsAPI* | [**ListUserGroupMembers**](docs/IamUserGroupsAPI.md#listusergroupmembers) | **GET** `/user-groups/{user_group_id}/members` | List members of a user group -*IamUserGroupsAPI* | [**ListUserGroupRoles**](docs/IamUserGroupsAPI.md#listusergrouproles) | **GET** `/user-groups/{user_group_id}/roles` | List roles in a user group -*IamUserGroupsAPI* | [**ListUserGroupServiceGroups**](docs/IamUserGroupsAPI.md#listusergroupservicegroups) | **GET** `/user-groups/{user_group_id}/service-groups` | List service groups in a user group -*IamUserGroupsAPI* | [**ListUserGroups**](docs/IamUserGroupsAPI.md#listusergroups) | **GET** `/user-groups` | List user groups -*IamUserGroupsAPI* | [**RemoveUserGroupMembers**](docs/IamUserGroupsAPI.md#removeusergroupmembers) | **DELETE** `/user-groups/{user_group_id}/members` | Remove members of a user group -*IamUserGroupsAPI* | [**RemoveUserGroupRoles**](docs/IamUserGroupsAPI.md#removeusergrouproles) | **DELETE** `/user-groups/{user_group_id}/roles` | Remove roles from a user group -*IamUserGroupsAPI* | [**RemoveUserGroupServiceGroups**](docs/IamUserGroupsAPI.md#removeusergroupservicegroups) | **DELETE** `/user-groups/{user_group_id}/service-groups` | Remove service groups from a user group -*IamUserGroupsAPI* | [**UpdateAUserGroup**](docs/IamUserGroupsAPI.md#updateausergroup) | **PATCH** `/user-groups/{user_group_id}` | Update a user group -*InvitationsAPI* | [**CreateInvitation**](docs/InvitationsAPI.md#createinvitation) | **POST** `/invitations` | Create an invitation -*InvitationsAPI* | [**DeleteInvitation**](docs/InvitationsAPI.md#deleteinvitation) | **DELETE** `/invitations/{invitation_id}` | Delete an invitation -*InvitationsAPI* | [**ListInvitations**](docs/InvitationsAPI.md#listinvitations) | **GET** `/invitations` | List invitations -*KvStoreAPI* | [**CreateStore**](docs/KvStoreAPI.md#createstore) | **POST** `/resources/stores/kv` | Create a KV store. -*KvStoreAPI* | [**DeleteStore**](docs/KvStoreAPI.md#deletestore) | **DELETE** `/resources/stores/kv/{store_id}` | Delete a KV store. -*KvStoreAPI* | [**GetStore**](docs/KvStoreAPI.md#getstore) | **GET** `/resources/stores/kv/{store_id}` | Describe a KV store. -*KvStoreAPI* | [**GetStores**](docs/KvStoreAPI.md#getstores) | **GET** `/resources/stores/kv` | List KV stores. -*KvStoreItemAPI* | [**DeleteKeyFromStore**](docs/KvStoreItemAPI.md#deletekeyfromstore) | **DELETE** `/resources/stores/kv/{store_id}/keys/{key_name}` | Delete kv store item. -*KvStoreItemAPI* | [**GetKeys**](docs/KvStoreItemAPI.md#getkeys) | **GET** `/resources/stores/kv/{store_id}/keys` | List kv store keys. -*KvStoreItemAPI* | [**GetValueForKey**](docs/KvStoreItemAPI.md#getvalueforkey) | **GET** `/resources/stores/kv/{store_id}/keys/{key_name}` | Get the value of an kv store item -*KvStoreItemAPI* | [**SetValueForKey**](docs/KvStoreItemAPI.md#setvalueforkey) | **PUT** `/resources/stores/kv/{store_id}/keys/{key_name}` | Insert an item into an kv store -*LegacyWafConfigurationSetsAPI* | [**ListWafConfigSets**](docs/LegacyWafConfigurationSetsAPI.md#listwafconfigsets) | **GET** `/wafs/configuration_sets` | List configuration sets -*LegacyWafConfigurationSetsAPI* | [**ListWafsConfigSet**](docs/LegacyWafConfigurationSetsAPI.md#listwafsconfigset) | **GET** `/wafs/configuration_sets/{configuration_set_id}/relationships/wafs` | List WAFs currently using a configuration set -*LegacyWafConfigurationSetsAPI* | [**UseWafConfigSet**](docs/LegacyWafConfigurationSetsAPI.md#usewafconfigset) | **PATCH** `/wafs/configuration_sets/{configuration_set_id}/relationships/wafs` | Apply a configuration set to a WAF -*LegacyWafFirewallAPI* | [**CreateLegacyWafFirewallService**](docs/LegacyWafFirewallAPI.md#createlegacywaffirewallservice) | **POST** `/service/{service_id}/version/{version_id}/wafs` | Create a firewall -*LegacyWafFirewallAPI* | [**DisableLegacyWafFirewall**](docs/LegacyWafFirewallAPI.md#disablelegacywaffirewall) | **PATCH** `/wafs/{firewall_id}/disable` | Disable a firewall -*LegacyWafFirewallAPI* | [**EnableLegacyWafFirewall**](docs/LegacyWafFirewallAPI.md#enablelegacywaffirewall) | **PATCH** `/wafs/{firewall_id}/enable` | Enable a firewall -*LegacyWafFirewallAPI* | [**GetLegacyWafFirewall**](docs/LegacyWafFirewallAPI.md#getlegacywaffirewall) | **GET** `/wafs/{firewall_id}` | Get a firewall object -*LegacyWafFirewallAPI* | [**GetLegacyWafFirewallService**](docs/LegacyWafFirewallAPI.md#getlegacywaffirewallservice) | **GET** `/service/{service_id}/version/{version_id}/wafs/{firewall_id}` | Get a firewall -*LegacyWafFirewallAPI* | [**ListLegacyWafFirewalls**](docs/LegacyWafFirewallAPI.md#listlegacywaffirewalls) | **GET** `/wafs` | List active firewalls -*LegacyWafFirewallAPI* | [**ListLegacyWafFirewallsService**](docs/LegacyWafFirewallAPI.md#listlegacywaffirewallsservice) | **GET** `/service/{service_id}/version/{version_id}/wafs` | List firewalls -*LegacyWafFirewallAPI* | [**UpdateLegacyWafFirewallService**](docs/LegacyWafFirewallAPI.md#updatelegacywaffirewallservice) | **PATCH** `/service/{service_id}/version/{version_id}/wafs/{firewall_id}` | Update a firewall -*LegacyWafOwaspAPI* | [**CreateOwaspSettings**](docs/LegacyWafOwaspAPI.md#createowaspsettings) | **POST** `/service/{service_id}/wafs/{firewall_id}/owasp` | Create an OWASP settings object -*LegacyWafOwaspAPI* | [**GetOwaspSettings**](docs/LegacyWafOwaspAPI.md#getowaspsettings) | **GET** `/service/{service_id}/wafs/{firewall_id}/owasp` | Get the OWASP settings object -*LegacyWafOwaspAPI* | [**UpdateOwaspSettings**](docs/LegacyWafOwaspAPI.md#updateowaspsettings) | **PATCH** `/service/{service_id}/wafs/{firewall_id}/owasp` | Update the OWASP settings object -*LegacyWafRuleAPI* | [**GetLegacyWafFirewallRuleVcl**](docs/LegacyWafRuleAPI.md#getlegacywaffirewallrulevcl) | **GET** `/wafs/{firewall_id}/rules/{waf_rule_id}/vcl` | Get VCL for a rule associated with a firewall -*LegacyWafRuleAPI* | [**GetLegacyWafRule**](docs/LegacyWafRuleAPI.md#getlegacywafrule) | **GET** `/wafs/rules/{waf_rule_id}` | Get a rule -*LegacyWafRuleAPI* | [**GetLegacyWafRuleVcl**](docs/LegacyWafRuleAPI.md#getlegacywafrulevcl) | **GET** `/wafs/rules/{waf_rule_id}/vcl` | Get VCL for a rule -*LegacyWafRuleAPI* | [**ListLegacyWafRules**](docs/LegacyWafRuleAPI.md#listlegacywafrules) | **GET** `/wafs/rules` | List rules in the latest configuration set -*LegacyWafRuleStatusAPI* | [**GetWafFirewallRuleStatus**](docs/LegacyWafRuleStatusAPI.md#getwaffirewallrulestatus) | **GET** `/service/{service_id}/wafs/{firewall_id}/rules/{waf_rule_id}/rule_status` | Get the status of a rule on a firewall -*LegacyWafRuleStatusAPI* | [**ListWafFirewallRuleStatuses**](docs/LegacyWafRuleStatusAPI.md#listwaffirewallrulestatuses) | **GET** `/service/{service_id}/wafs/{firewall_id}/rule_statuses` | List rule statuses -*LegacyWafRuleStatusAPI* | [**UpdateWafFirewallRuleStatus**](docs/LegacyWafRuleStatusAPI.md#updatewaffirewallrulestatus) | **PATCH** `/service/{service_id}/wafs/{firewall_id}/rules/{waf_rule_id}/rule_status` | Update the status of a rule -*LegacyWafRuleStatusAPI* | [**UpdateWafFirewallRuleStatusesTag**](docs/LegacyWafRuleStatusAPI.md#updatewaffirewallrulestatusestag) | **POST** `/service/{service_id}/wafs/{firewall_id}/rule_statuses` | Create or update status of a tagged group of rules -*LegacyWafRulesetAPI* | [**GetWafRuleset**](docs/LegacyWafRulesetAPI.md#getwafruleset) | **GET** `/service/{service_id}/wafs/{firewall_id}/ruleset` | Get a WAF ruleset -*LegacyWafRulesetAPI* | [**GetWafRulesetVcl**](docs/LegacyWafRulesetAPI.md#getwafrulesetvcl) | **GET** `/service/{service_id}/wafs/{firewall_id}/ruleset/preview` | Generate WAF ruleset VCL -*LegacyWafRulesetAPI* | [**UpdateWafRuleset**](docs/LegacyWafRulesetAPI.md#updatewafruleset) | **PATCH** `/service/{service_id}/wafs/{firewall_id}/ruleset` | Update a WAF ruleset -*LegacyWafTagAPI* | [**ListLegacyWafTags**](docs/LegacyWafTagAPI.md#listlegacywaftags) | **GET** `/wafs/tags` | List WAF tags -*LegacyWafUpdateStatusAPI* | [**GetWafUpdateStatus**](docs/LegacyWafUpdateStatusAPI.md#getwafupdatestatus) | **GET** `/service/{service_id}/wafs/{firewall_id}/update_statuses/{update_status_id}` | Get the status of a WAF update -*LegacyWafUpdateStatusAPI* | [**ListWafUpdateStatuses**](docs/LegacyWafUpdateStatusAPI.md#listwafupdatestatuses) | **GET** `/service/{service_id}/wafs/{firewall_id}/update_statuses` | List update statuses -*LoggingAzureblobAPI* | [**CreateLogAzure**](docs/LoggingAzureblobAPI.md#createlogazure) | **POST** `/service/{service_id}/version/{version_id}/logging/azureblob` | Create an Azure Blob Storage log endpoint -*LoggingAzureblobAPI* | [**DeleteLogAzure**](docs/LoggingAzureblobAPI.md#deletelogazure) | **DELETE** `/service/{service_id}/version/{version_id}/logging/azureblob/{logging_azureblob_name}` | Delete the Azure Blob Storage log endpoint -*LoggingAzureblobAPI* | [**GetLogAzure**](docs/LoggingAzureblobAPI.md#getlogazure) | **GET** `/service/{service_id}/version/{version_id}/logging/azureblob/{logging_azureblob_name}` | Get an Azure Blob Storage log endpoint -*LoggingAzureblobAPI* | [**ListLogAzure**](docs/LoggingAzureblobAPI.md#listlogazure) | **GET** `/service/{service_id}/version/{version_id}/logging/azureblob` | List Azure Blob Storage log endpoints -*LoggingAzureblobAPI* | [**UpdateLogAzure**](docs/LoggingAzureblobAPI.md#updatelogazure) | **PUT** `/service/{service_id}/version/{version_id}/logging/azureblob/{logging_azureblob_name}` | Update an Azure Blob Storage log endpoint -*LoggingBigqueryAPI* | [**CreateLogBigquery**](docs/LoggingBigqueryAPI.md#createlogbigquery) | **POST** `/service/{service_id}/version/{version_id}/logging/bigquery` | Create a BigQuery log endpoint -*LoggingBigqueryAPI* | [**DeleteLogBigquery**](docs/LoggingBigqueryAPI.md#deletelogbigquery) | **DELETE** `/service/{service_id}/version/{version_id}/logging/bigquery/{logging_bigquery_name}` | Delete a BigQuery log endpoint -*LoggingBigqueryAPI* | [**GetLogBigquery**](docs/LoggingBigqueryAPI.md#getlogbigquery) | **GET** `/service/{service_id}/version/{version_id}/logging/bigquery/{logging_bigquery_name}` | Get a BigQuery log endpoint -*LoggingBigqueryAPI* | [**ListLogBigquery**](docs/LoggingBigqueryAPI.md#listlogbigquery) | **GET** `/service/{service_id}/version/{version_id}/logging/bigquery` | List BigQuery log endpoints -*LoggingBigqueryAPI* | [**UpdateLogBigquery**](docs/LoggingBigqueryAPI.md#updatelogbigquery) | **PUT** `/service/{service_id}/version/{version_id}/logging/bigquery/{logging_bigquery_name}` | Update a BigQuery log endpoint -*LoggingCloudfilesAPI* | [**CreateLogCloudfiles**](docs/LoggingCloudfilesAPI.md#createlogcloudfiles) | **POST** `/service/{service_id}/version/{version_id}/logging/cloudfiles` | Create a Cloud Files log endpoint -*LoggingCloudfilesAPI* | [**DeleteLogCloudfiles**](docs/LoggingCloudfilesAPI.md#deletelogcloudfiles) | **DELETE** `/service/{service_id}/version/{version_id}/logging/cloudfiles/{logging_cloudfiles_name}` | Delete the Cloud Files log endpoint -*LoggingCloudfilesAPI* | [**GetLogCloudfiles**](docs/LoggingCloudfilesAPI.md#getlogcloudfiles) | **GET** `/service/{service_id}/version/{version_id}/logging/cloudfiles/{logging_cloudfiles_name}` | Get a Cloud Files log endpoint -*LoggingCloudfilesAPI* | [**ListLogCloudfiles**](docs/LoggingCloudfilesAPI.md#listlogcloudfiles) | **GET** `/service/{service_id}/version/{version_id}/logging/cloudfiles` | List Cloud Files log endpoints -*LoggingCloudfilesAPI* | [**UpdateLogCloudfiles**](docs/LoggingCloudfilesAPI.md#updatelogcloudfiles) | **PUT** `/service/{service_id}/version/{version_id}/logging/cloudfiles/{logging_cloudfiles_name}` | Update the Cloud Files log endpoint -*LoggingDatadogAPI* | [**CreateLogDatadog**](docs/LoggingDatadogAPI.md#createlogdatadog) | **POST** `/service/{service_id}/version/{version_id}/logging/datadog` | Create a Datadog log endpoint -*LoggingDatadogAPI* | [**DeleteLogDatadog**](docs/LoggingDatadogAPI.md#deletelogdatadog) | **DELETE** `/service/{service_id}/version/{version_id}/logging/datadog/{logging_datadog_name}` | Delete a Datadog log endpoint -*LoggingDatadogAPI* | [**GetLogDatadog**](docs/LoggingDatadogAPI.md#getlogdatadog) | **GET** `/service/{service_id}/version/{version_id}/logging/datadog/{logging_datadog_name}` | Get a Datadog log endpoint -*LoggingDatadogAPI* | [**ListLogDatadog**](docs/LoggingDatadogAPI.md#listlogdatadog) | **GET** `/service/{service_id}/version/{version_id}/logging/datadog` | List Datadog log endpoints -*LoggingDatadogAPI* | [**UpdateLogDatadog**](docs/LoggingDatadogAPI.md#updatelogdatadog) | **PUT** `/service/{service_id}/version/{version_id}/logging/datadog/{logging_datadog_name}` | Update a Datadog log endpoint -*LoggingDigitaloceanAPI* | [**CreateLogDigocean**](docs/LoggingDigitaloceanAPI.md#createlogdigocean) | **POST** `/service/{service_id}/version/{version_id}/logging/digitalocean` | Create a DigitalOcean Spaces log endpoint -*LoggingDigitaloceanAPI* | [**DeleteLogDigocean**](docs/LoggingDigitaloceanAPI.md#deletelogdigocean) | **DELETE** `/service/{service_id}/version/{version_id}/logging/digitalocean/{logging_digitalocean_name}` | Delete a DigitalOcean Spaces log endpoint -*LoggingDigitaloceanAPI* | [**GetLogDigocean**](docs/LoggingDigitaloceanAPI.md#getlogdigocean) | **GET** `/service/{service_id}/version/{version_id}/logging/digitalocean/{logging_digitalocean_name}` | Get a DigitalOcean Spaces log endpoint -*LoggingDigitaloceanAPI* | [**ListLogDigocean**](docs/LoggingDigitaloceanAPI.md#listlogdigocean) | **GET** `/service/{service_id}/version/{version_id}/logging/digitalocean` | List DigitalOcean Spaces log endpoints -*LoggingDigitaloceanAPI* | [**UpdateLogDigocean**](docs/LoggingDigitaloceanAPI.md#updatelogdigocean) | **PUT** `/service/{service_id}/version/{version_id}/logging/digitalocean/{logging_digitalocean_name}` | Update a DigitalOcean Spaces log endpoint -*LoggingElasticsearchAPI* | [**CreateLogElasticsearch**](docs/LoggingElasticsearchAPI.md#createlogelasticsearch) | **POST** `/service/{service_id}/version/{version_id}/logging/elasticsearch` | Create an Elasticsearch log endpoint -*LoggingElasticsearchAPI* | [**DeleteLogElasticsearch**](docs/LoggingElasticsearchAPI.md#deletelogelasticsearch) | **DELETE** `/service/{service_id}/version/{version_id}/logging/elasticsearch/{logging_elasticsearch_name}` | Delete an Elasticsearch log endpoint -*LoggingElasticsearchAPI* | [**GetLogElasticsearch**](docs/LoggingElasticsearchAPI.md#getlogelasticsearch) | **GET** `/service/{service_id}/version/{version_id}/logging/elasticsearch/{logging_elasticsearch_name}` | Get an Elasticsearch log endpoint -*LoggingElasticsearchAPI* | [**ListLogElasticsearch**](docs/LoggingElasticsearchAPI.md#listlogelasticsearch) | **GET** `/service/{service_id}/version/{version_id}/logging/elasticsearch` | List Elasticsearch log endpoints -*LoggingElasticsearchAPI* | [**UpdateLogElasticsearch**](docs/LoggingElasticsearchAPI.md#updatelogelasticsearch) | **PUT** `/service/{service_id}/version/{version_id}/logging/elasticsearch/{logging_elasticsearch_name}` | Update an Elasticsearch log endpoint -*LoggingFtpAPI* | [**CreateLogFtp**](docs/LoggingFtpAPI.md#createlogftp) | **POST** `/service/{service_id}/version/{version_id}/logging/ftp` | Create an FTP log endpoint -*LoggingFtpAPI* | [**DeleteLogFtp**](docs/LoggingFtpAPI.md#deletelogftp) | **DELETE** `/service/{service_id}/version/{version_id}/logging/ftp/{logging_ftp_name}` | Delete an FTP log endpoint -*LoggingFtpAPI* | [**GetLogFtp**](docs/LoggingFtpAPI.md#getlogftp) | **GET** `/service/{service_id}/version/{version_id}/logging/ftp/{logging_ftp_name}` | Get an FTP log endpoint -*LoggingFtpAPI* | [**ListLogFtp**](docs/LoggingFtpAPI.md#listlogftp) | **GET** `/service/{service_id}/version/{version_id}/logging/ftp` | List FTP log endpoints -*LoggingFtpAPI* | [**UpdateLogFtp**](docs/LoggingFtpAPI.md#updatelogftp) | **PUT** `/service/{service_id}/version/{version_id}/logging/ftp/{logging_ftp_name}` | Update an FTP log endpoint -*LoggingGcsAPI* | [**CreateLogGcs**](docs/LoggingGcsAPI.md#createloggcs) | **POST** `/service/{service_id}/version/{version_id}/logging/gcs` | Create a GCS log endpoint -*LoggingGcsAPI* | [**DeleteLogGcs**](docs/LoggingGcsAPI.md#deleteloggcs) | **DELETE** `/service/{service_id}/version/{version_id}/logging/gcs/{logging_gcs_name}` | Delete a GCS log endpoint -*LoggingGcsAPI* | [**GetLogGcs**](docs/LoggingGcsAPI.md#getloggcs) | **GET** `/service/{service_id}/version/{version_id}/logging/gcs/{logging_gcs_name}` | Get a GCS log endpoint -*LoggingGcsAPI* | [**ListLogGcs**](docs/LoggingGcsAPI.md#listloggcs) | **GET** `/service/{service_id}/version/{version_id}/logging/gcs` | List GCS log endpoints -*LoggingGcsAPI* | [**UpdateLogGcs**](docs/LoggingGcsAPI.md#updateloggcs) | **PUT** `/service/{service_id}/version/{version_id}/logging/gcs/{logging_gcs_name}` | Update a GCS log endpoint -*LoggingHerokuAPI* | [**CreateLogHeroku**](docs/LoggingHerokuAPI.md#createlogheroku) | **POST** `/service/{service_id}/version/{version_id}/logging/heroku` | Create a Heroku log endpoint -*LoggingHerokuAPI* | [**DeleteLogHeroku**](docs/LoggingHerokuAPI.md#deletelogheroku) | **DELETE** `/service/{service_id}/version/{version_id}/logging/heroku/{logging_heroku_name}` | Delete the Heroku log endpoint -*LoggingHerokuAPI* | [**GetLogHeroku**](docs/LoggingHerokuAPI.md#getlogheroku) | **GET** `/service/{service_id}/version/{version_id}/logging/heroku/{logging_heroku_name}` | Get a Heroku log endpoint -*LoggingHerokuAPI* | [**ListLogHeroku**](docs/LoggingHerokuAPI.md#listlogheroku) | **GET** `/service/{service_id}/version/{version_id}/logging/heroku` | List Heroku log endpoints -*LoggingHerokuAPI* | [**UpdateLogHeroku**](docs/LoggingHerokuAPI.md#updatelogheroku) | **PUT** `/service/{service_id}/version/{version_id}/logging/heroku/{logging_heroku_name}` | Update the Heroku log endpoint -*LoggingHoneycombAPI* | [**CreateLogHoneycomb**](docs/LoggingHoneycombAPI.md#createloghoneycomb) | **POST** `/service/{service_id}/version/{version_id}/logging/honeycomb` | Create a Honeycomb log endpoint -*LoggingHoneycombAPI* | [**DeleteLogHoneycomb**](docs/LoggingHoneycombAPI.md#deleteloghoneycomb) | **DELETE** `/service/{service_id}/version/{version_id}/logging/honeycomb/{logging_honeycomb_name}` | Delete the Honeycomb log endpoint -*LoggingHoneycombAPI* | [**GetLogHoneycomb**](docs/LoggingHoneycombAPI.md#getloghoneycomb) | **GET** `/service/{service_id}/version/{version_id}/logging/honeycomb/{logging_honeycomb_name}` | Get a Honeycomb log endpoint -*LoggingHoneycombAPI* | [**ListLogHoneycomb**](docs/LoggingHoneycombAPI.md#listloghoneycomb) | **GET** `/service/{service_id}/version/{version_id}/logging/honeycomb` | List Honeycomb log endpoints -*LoggingHoneycombAPI* | [**UpdateLogHoneycomb**](docs/LoggingHoneycombAPI.md#updateloghoneycomb) | **PUT** `/service/{service_id}/version/{version_id}/logging/honeycomb/{logging_honeycomb_name}` | Update a Honeycomb log endpoint -*LoggingHTTPSAPI* | [**CreateLogHTTPS**](docs/LoggingHTTPSAPI.md#createloghttps) | **POST** `/service/{service_id}/version/{version_id}/logging/https` | Create an HTTPS log endpoint -*LoggingHTTPSAPI* | [**DeleteLogHTTPS**](docs/LoggingHTTPSAPI.md#deleteloghttps) | **DELETE** `/service/{service_id}/version/{version_id}/logging/https/{logging_https_name}` | Delete an HTTPS log endpoint -*LoggingHTTPSAPI* | [**GetLogHTTPS**](docs/LoggingHTTPSAPI.md#getloghttps) | **GET** `/service/{service_id}/version/{version_id}/logging/https/{logging_https_name}` | Get an HTTPS log endpoint -*LoggingHTTPSAPI* | [**ListLogHTTPS**](docs/LoggingHTTPSAPI.md#listloghttps) | **GET** `/service/{service_id}/version/{version_id}/logging/https` | List HTTPS log endpoints -*LoggingHTTPSAPI* | [**UpdateLogHTTPS**](docs/LoggingHTTPSAPI.md#updateloghttps) | **PUT** `/service/{service_id}/version/{version_id}/logging/https/{logging_https_name}` | Update an HTTPS log endpoint -*LoggingKafkaAPI* | [**CreateLogKafka**](docs/LoggingKafkaAPI.md#createlogkafka) | **POST** `/service/{service_id}/version/{version_id}/logging/kafka` | Create a Kafka log endpoint -*LoggingKafkaAPI* | [**DeleteLogKafka**](docs/LoggingKafkaAPI.md#deletelogkafka) | **DELETE** `/service/{service_id}/version/{version_id}/logging/kafka/{logging_kafka_name}` | Delete the Kafka log endpoint -*LoggingKafkaAPI* | [**GetLogKafka**](docs/LoggingKafkaAPI.md#getlogkafka) | **GET** `/service/{service_id}/version/{version_id}/logging/kafka/{logging_kafka_name}` | Get a Kafka log endpoint -*LoggingKafkaAPI* | [**ListLogKafka**](docs/LoggingKafkaAPI.md#listlogkafka) | **GET** `/service/{service_id}/version/{version_id}/logging/kafka` | List Kafka log endpoints -*LoggingKafkaAPI* | [**UpdateLogKafka**](docs/LoggingKafkaAPI.md#updatelogkafka) | **PUT** `/service/{service_id}/version/{version_id}/logging/kafka/{logging_kafka_name}` | Update the Kafka log endpoint -*LoggingKinesisAPI* | [**CreateLogKinesis**](docs/LoggingKinesisAPI.md#createlogkinesis) | **POST** `/service/{service_id}/version/{version_id}/logging/kinesis` | Create an Amazon Kinesis log endpoint -*LoggingKinesisAPI* | [**DeleteLogKinesis**](docs/LoggingKinesisAPI.md#deletelogkinesis) | **DELETE** `/service/{service_id}/version/{version_id}/logging/kinesis/{logging_kinesis_name}` | Delete the Amazon Kinesis log endpoint -*LoggingKinesisAPI* | [**GetLogKinesis**](docs/LoggingKinesisAPI.md#getlogkinesis) | **GET** `/service/{service_id}/version/{version_id}/logging/kinesis/{logging_kinesis_name}` | Get an Amazon Kinesis log endpoint -*LoggingKinesisAPI* | [**ListLogKinesis**](docs/LoggingKinesisAPI.md#listlogkinesis) | **GET** `/service/{service_id}/version/{version_id}/logging/kinesis` | List Amazon Kinesis log endpoints -*LoggingKinesisAPI* | [**UpdateLogKinesis**](docs/LoggingKinesisAPI.md#updatelogkinesis) | **PUT** `/service/{service_id}/version/{version_id}/logging/kinesis/{logging_kinesis_name}` | Update the Amazon Kinesis log endpoint -*LoggingLogentriesAPI* | [**CreateLogLogentries**](docs/LoggingLogentriesAPI.md#createloglogentries) | **POST** `/service/{service_id}/version/{version_id}/logging/logentries` | Create a Logentries log endpoint -*LoggingLogentriesAPI* | [**DeleteLogLogentries**](docs/LoggingLogentriesAPI.md#deleteloglogentries) | **DELETE** `/service/{service_id}/version/{version_id}/logging/logentries/{logging_logentries_name}` | Delete a Logentries log endpoint -*LoggingLogentriesAPI* | [**GetLogLogentries**](docs/LoggingLogentriesAPI.md#getloglogentries) | **GET** `/service/{service_id}/version/{version_id}/logging/logentries/{logging_logentries_name}` | Get a Logentries log endpoint -*LoggingLogentriesAPI* | [**ListLogLogentries**](docs/LoggingLogentriesAPI.md#listloglogentries) | **GET** `/service/{service_id}/version/{version_id}/logging/logentries` | List Logentries log endpoints -*LoggingLogentriesAPI* | [**UpdateLogLogentries**](docs/LoggingLogentriesAPI.md#updateloglogentries) | **PUT** `/service/{service_id}/version/{version_id}/logging/logentries/{logging_logentries_name}` | Update a Logentries log endpoint -*LoggingLogglyAPI* | [**CreateLogLoggly**](docs/LoggingLogglyAPI.md#createlogloggly) | **POST** `/service/{service_id}/version/{version_id}/logging/loggly` | Create a Loggly log endpoint -*LoggingLogglyAPI* | [**DeleteLogLoggly**](docs/LoggingLogglyAPI.md#deletelogloggly) | **DELETE** `/service/{service_id}/version/{version_id}/logging/loggly/{logging_loggly_name}` | Delete a Loggly log endpoint -*LoggingLogglyAPI* | [**GetLogLoggly**](docs/LoggingLogglyAPI.md#getlogloggly) | **GET** `/service/{service_id}/version/{version_id}/logging/loggly/{logging_loggly_name}` | Get a Loggly log endpoint -*LoggingLogglyAPI* | [**ListLogLoggly**](docs/LoggingLogglyAPI.md#listlogloggly) | **GET** `/service/{service_id}/version/{version_id}/logging/loggly` | List Loggly log endpoints -*LoggingLogglyAPI* | [**UpdateLogLoggly**](docs/LoggingLogglyAPI.md#updatelogloggly) | **PUT** `/service/{service_id}/version/{version_id}/logging/loggly/{logging_loggly_name}` | Update a Loggly log endpoint -*LoggingLogshuttleAPI* | [**CreateLogLogshuttle**](docs/LoggingLogshuttleAPI.md#createloglogshuttle) | **POST** `/service/{service_id}/version/{version_id}/logging/logshuttle` | Create a Log Shuttle log endpoint -*LoggingLogshuttleAPI* | [**DeleteLogLogshuttle**](docs/LoggingLogshuttleAPI.md#deleteloglogshuttle) | **DELETE** `/service/{service_id}/version/{version_id}/logging/logshuttle/{logging_logshuttle_name}` | Delete a Log Shuttle log endpoint -*LoggingLogshuttleAPI* | [**GetLogLogshuttle**](docs/LoggingLogshuttleAPI.md#getloglogshuttle) | **GET** `/service/{service_id}/version/{version_id}/logging/logshuttle/{logging_logshuttle_name}` | Get a Log Shuttle log endpoint -*LoggingLogshuttleAPI* | [**ListLogLogshuttle**](docs/LoggingLogshuttleAPI.md#listloglogshuttle) | **GET** `/service/{service_id}/version/{version_id}/logging/logshuttle` | List Log Shuttle log endpoints -*LoggingLogshuttleAPI* | [**UpdateLogLogshuttle**](docs/LoggingLogshuttleAPI.md#updateloglogshuttle) | **PUT** `/service/{service_id}/version/{version_id}/logging/logshuttle/{logging_logshuttle_name}` | Update a Log Shuttle log endpoint -*LoggingNewrelicAPI* | [**CreateLogNewrelic**](docs/LoggingNewrelicAPI.md#createlognewrelic) | **POST** `/service/{service_id}/version/{version_id}/logging/newrelic` | Create a New Relic log endpoint -*LoggingNewrelicAPI* | [**DeleteLogNewrelic**](docs/LoggingNewrelicAPI.md#deletelognewrelic) | **DELETE** `/service/{service_id}/version/{version_id}/logging/newrelic/{logging_newrelic_name}` | Delete a New Relic log endpoint -*LoggingNewrelicAPI* | [**GetLogNewrelic**](docs/LoggingNewrelicAPI.md#getlognewrelic) | **GET** `/service/{service_id}/version/{version_id}/logging/newrelic/{logging_newrelic_name}` | Get a New Relic log endpoint -*LoggingNewrelicAPI* | [**ListLogNewrelic**](docs/LoggingNewrelicAPI.md#listlognewrelic) | **GET** `/service/{service_id}/version/{version_id}/logging/newrelic` | List New Relic log endpoints -*LoggingNewrelicAPI* | [**UpdateLogNewrelic**](docs/LoggingNewrelicAPI.md#updatelognewrelic) | **PUT** `/service/{service_id}/version/{version_id}/logging/newrelic/{logging_newrelic_name}` | Update a New Relic log endpoint -*LoggingNewrelicotlpAPI* | [**CreateLogNewrelicotlp**](docs/LoggingNewrelicotlpAPI.md#createlognewrelicotlp) | **POST** `/service/{service_id}/version/{version_id}/logging/newrelicotlp` | Create a New Relic OTLP endpoint -*LoggingNewrelicotlpAPI* | [**DeleteLogNewrelicotlp**](docs/LoggingNewrelicotlpAPI.md#deletelognewrelicotlp) | **DELETE** `/service/{service_id}/version/{version_id}/logging/newrelicotlp/{logging_newrelicotlp_name}` | Delete a New Relic OTLP endpoint -*LoggingNewrelicotlpAPI* | [**GetLogNewrelicotlp**](docs/LoggingNewrelicotlpAPI.md#getlognewrelicotlp) | **GET** `/service/{service_id}/version/{version_id}/logging/newrelicotlp/{logging_newrelicotlp_name}` | Get a New Relic OTLP endpoint -*LoggingNewrelicotlpAPI* | [**ListLogNewrelicotlp**](docs/LoggingNewrelicotlpAPI.md#listlognewrelicotlp) | **GET** `/service/{service_id}/version/{version_id}/logging/newrelicotlp` | List New Relic OTLP endpoints -*LoggingNewrelicotlpAPI* | [**UpdateLogNewrelicotlp**](docs/LoggingNewrelicotlpAPI.md#updatelognewrelicotlp) | **PUT** `/service/{service_id}/version/{version_id}/logging/newrelicotlp/{logging_newrelicotlp_name}` | Update a New Relic log endpoint -*LoggingOpenstackAPI* | [**CreateLogOpenstack**](docs/LoggingOpenstackAPI.md#createlogopenstack) | **POST** `/service/{service_id}/version/{version_id}/logging/openstack` | Create an OpenStack log endpoint -*LoggingOpenstackAPI* | [**DeleteLogOpenstack**](docs/LoggingOpenstackAPI.md#deletelogopenstack) | **DELETE** `/service/{service_id}/version/{version_id}/logging/openstack/{logging_openstack_name}` | Delete an OpenStack log endpoint -*LoggingOpenstackAPI* | [**GetLogOpenstack**](docs/LoggingOpenstackAPI.md#getlogopenstack) | **GET** `/service/{service_id}/version/{version_id}/logging/openstack/{logging_openstack_name}` | Get an OpenStack log endpoint -*LoggingOpenstackAPI* | [**ListLogOpenstack**](docs/LoggingOpenstackAPI.md#listlogopenstack) | **GET** `/service/{service_id}/version/{version_id}/logging/openstack` | List OpenStack log endpoints -*LoggingOpenstackAPI* | [**UpdateLogOpenstack**](docs/LoggingOpenstackAPI.md#updatelogopenstack) | **PUT** `/service/{service_id}/version/{version_id}/logging/openstack/{logging_openstack_name}` | Update an OpenStack log endpoint -*LoggingPapertrailAPI* | [**CreateLogPapertrail**](docs/LoggingPapertrailAPI.md#createlogpapertrail) | **POST** `/service/{service_id}/version/{version_id}/logging/papertrail` | Create a Papertrail log endpoint -*LoggingPapertrailAPI* | [**DeleteLogPapertrail**](docs/LoggingPapertrailAPI.md#deletelogpapertrail) | **DELETE** `/service/{service_id}/version/{version_id}/logging/papertrail/{logging_papertrail_name}` | Delete a Papertrail log endpoint -*LoggingPapertrailAPI* | [**GetLogPapertrail**](docs/LoggingPapertrailAPI.md#getlogpapertrail) | **GET** `/service/{service_id}/version/{version_id}/logging/papertrail/{logging_papertrail_name}` | Get a Papertrail log endpoint -*LoggingPapertrailAPI* | [**ListLogPapertrail**](docs/LoggingPapertrailAPI.md#listlogpapertrail) | **GET** `/service/{service_id}/version/{version_id}/logging/papertrail` | List Papertrail log endpoints -*LoggingPapertrailAPI* | [**UpdateLogPapertrail**](docs/LoggingPapertrailAPI.md#updatelogpapertrail) | **PUT** `/service/{service_id}/version/{version_id}/logging/papertrail/{logging_papertrail_name}` | Update a Papertrail log endpoint -*LoggingPubsubAPI* | [**CreateLogGcpPubsub**](docs/LoggingPubsubAPI.md#createloggcppubsub) | **POST** `/service/{service_id}/version/{version_id}/logging/pubsub` | Create a GCP Cloud Pub/Sub log endpoint -*LoggingPubsubAPI* | [**DeleteLogGcpPubsub**](docs/LoggingPubsubAPI.md#deleteloggcppubsub) | **DELETE** `/service/{service_id}/version/{version_id}/logging/pubsub/{logging_google_pubsub_name}` | Delete a GCP Cloud Pub/Sub log endpoint -*LoggingPubsubAPI* | [**GetLogGcpPubsub**](docs/LoggingPubsubAPI.md#getloggcppubsub) | **GET** `/service/{service_id}/version/{version_id}/logging/pubsub/{logging_google_pubsub_name}` | Get a GCP Cloud Pub/Sub log endpoint -*LoggingPubsubAPI* | [**ListLogGcpPubsub**](docs/LoggingPubsubAPI.md#listloggcppubsub) | **GET** `/service/{service_id}/version/{version_id}/logging/pubsub` | List GCP Cloud Pub/Sub log endpoints -*LoggingPubsubAPI* | [**UpdateLogGcpPubsub**](docs/LoggingPubsubAPI.md#updateloggcppubsub) | **PUT** `/service/{service_id}/version/{version_id}/logging/pubsub/{logging_google_pubsub_name}` | Update a GCP Cloud Pub/Sub log endpoint -*LoggingS3API* | [**CreateLogAwsS3**](docs/LoggingS3API.md#createlogawss3) | **POST** `/service/{service_id}/version/{version_id}/logging/s3` | Create an AWS S3 log endpoint -*LoggingS3API* | [**DeleteLogAwsS3**](docs/LoggingS3API.md#deletelogawss3) | **DELETE** `/service/{service_id}/version/{version_id}/logging/s3/{logging_s3_name}` | Delete an AWS S3 log endpoint -*LoggingS3API* | [**GetLogAwsS3**](docs/LoggingS3API.md#getlogawss3) | **GET** `/service/{service_id}/version/{version_id}/logging/s3/{logging_s3_name}` | Get an AWS S3 log endpoint -*LoggingS3API* | [**ListLogAwsS3**](docs/LoggingS3API.md#listlogawss3) | **GET** `/service/{service_id}/version/{version_id}/logging/s3` | List AWS S3 log endpoints -*LoggingS3API* | [**UpdateLogAwsS3**](docs/LoggingS3API.md#updatelogawss3) | **PUT** `/service/{service_id}/version/{version_id}/logging/s3/{logging_s3_name}` | Update an AWS S3 log endpoint -*LoggingScalyrAPI* | [**CreateLogScalyr**](docs/LoggingScalyrAPI.md#createlogscalyr) | **POST** `/service/{service_id}/version/{version_id}/logging/scalyr` | Create a Scalyr log endpoint -*LoggingScalyrAPI* | [**DeleteLogScalyr**](docs/LoggingScalyrAPI.md#deletelogscalyr) | **DELETE** `/service/{service_id}/version/{version_id}/logging/scalyr/{logging_scalyr_name}` | Delete the Scalyr log endpoint -*LoggingScalyrAPI* | [**GetLogScalyr**](docs/LoggingScalyrAPI.md#getlogscalyr) | **GET** `/service/{service_id}/version/{version_id}/logging/scalyr/{logging_scalyr_name}` | Get a Scalyr log endpoint -*LoggingScalyrAPI* | [**ListLogScalyr**](docs/LoggingScalyrAPI.md#listlogscalyr) | **GET** `/service/{service_id}/version/{version_id}/logging/scalyr` | List Scalyr log endpoints -*LoggingScalyrAPI* | [**UpdateLogScalyr**](docs/LoggingScalyrAPI.md#updatelogscalyr) | **PUT** `/service/{service_id}/version/{version_id}/logging/scalyr/{logging_scalyr_name}` | Update the Scalyr log endpoint -*LoggingSftpAPI* | [**CreateLogSftp**](docs/LoggingSftpAPI.md#createlogsftp) | **POST** `/service/{service_id}/version/{version_id}/logging/sftp` | Create an SFTP log endpoint -*LoggingSftpAPI* | [**DeleteLogSftp**](docs/LoggingSftpAPI.md#deletelogsftp) | **DELETE** `/service/{service_id}/version/{version_id}/logging/sftp/{logging_sftp_name}` | Delete an SFTP log endpoint -*LoggingSftpAPI* | [**GetLogSftp**](docs/LoggingSftpAPI.md#getlogsftp) | **GET** `/service/{service_id}/version/{version_id}/logging/sftp/{logging_sftp_name}` | Get an SFTP log endpoint -*LoggingSftpAPI* | [**ListLogSftp**](docs/LoggingSftpAPI.md#listlogsftp) | **GET** `/service/{service_id}/version/{version_id}/logging/sftp` | List SFTP log endpoints -*LoggingSftpAPI* | [**UpdateLogSftp**](docs/LoggingSftpAPI.md#updatelogsftp) | **PUT** `/service/{service_id}/version/{version_id}/logging/sftp/{logging_sftp_name}` | Update an SFTP log endpoint -*LoggingSplunkAPI* | [**CreateLogSplunk**](docs/LoggingSplunkAPI.md#createlogsplunk) | **POST** `/service/{service_id}/version/{version_id}/logging/splunk` | Create a Splunk log endpoint -*LoggingSplunkAPI* | [**DeleteLogSplunk**](docs/LoggingSplunkAPI.md#deletelogsplunk) | **DELETE** `/service/{service_id}/version/{version_id}/logging/splunk/{logging_splunk_name}` | Delete a Splunk log endpoint -*LoggingSplunkAPI* | [**GetLogSplunk**](docs/LoggingSplunkAPI.md#getlogsplunk) | **GET** `/service/{service_id}/version/{version_id}/logging/splunk/{logging_splunk_name}` | Get a Splunk log endpoint -*LoggingSplunkAPI* | [**ListLogSplunk**](docs/LoggingSplunkAPI.md#listlogsplunk) | **GET** `/service/{service_id}/version/{version_id}/logging/splunk` | List Splunk log endpoints -*LoggingSplunkAPI* | [**UpdateLogSplunk**](docs/LoggingSplunkAPI.md#updatelogsplunk) | **PUT** `/service/{service_id}/version/{version_id}/logging/splunk/{logging_splunk_name}` | Update a Splunk log endpoint -*LoggingSumologicAPI* | [**CreateLogSumologic**](docs/LoggingSumologicAPI.md#createlogsumologic) | **POST** `/service/{service_id}/version/{version_id}/logging/sumologic` | Create a Sumologic log endpoint -*LoggingSumologicAPI* | [**DeleteLogSumologic**](docs/LoggingSumologicAPI.md#deletelogsumologic) | **DELETE** `/service/{service_id}/version/{version_id}/logging/sumologic/{logging_sumologic_name}` | Delete a Sumologic log endpoint -*LoggingSumologicAPI* | [**GetLogSumologic**](docs/LoggingSumologicAPI.md#getlogsumologic) | **GET** `/service/{service_id}/version/{version_id}/logging/sumologic/{logging_sumologic_name}` | Get a Sumologic log endpoint -*LoggingSumologicAPI* | [**ListLogSumologic**](docs/LoggingSumologicAPI.md#listlogsumologic) | **GET** `/service/{service_id}/version/{version_id}/logging/sumologic` | List Sumologic log endpoints -*LoggingSumologicAPI* | [**UpdateLogSumologic**](docs/LoggingSumologicAPI.md#updatelogsumologic) | **PUT** `/service/{service_id}/version/{version_id}/logging/sumologic/{logging_sumologic_name}` | Update a Sumologic log endpoint -*LoggingSyslogAPI* | [**CreateLogSyslog**](docs/LoggingSyslogAPI.md#createlogsyslog) | **POST** `/service/{service_id}/version/{version_id}/logging/syslog` | Create a syslog log endpoint -*LoggingSyslogAPI* | [**DeleteLogSyslog**](docs/LoggingSyslogAPI.md#deletelogsyslog) | **DELETE** `/service/{service_id}/version/{version_id}/logging/syslog/{logging_syslog_name}` | Delete a syslog log endpoint -*LoggingSyslogAPI* | [**GetLogSyslog**](docs/LoggingSyslogAPI.md#getlogsyslog) | **GET** `/service/{service_id}/version/{version_id}/logging/syslog/{logging_syslog_name}` | Get a syslog log endpoint -*LoggingSyslogAPI* | [**ListLogSyslog**](docs/LoggingSyslogAPI.md#listlogsyslog) | **GET** `/service/{service_id}/version/{version_id}/logging/syslog` | List Syslog log endpoints -*LoggingSyslogAPI* | [**UpdateLogSyslog**](docs/LoggingSyslogAPI.md#updatelogsyslog) | **PUT** `/service/{service_id}/version/{version_id}/logging/syslog/{logging_syslog_name}` | Update a syslog log endpoint -*MutualAuthenticationAPI* | [**CreateMutualTLSAuthentication**](docs/MutualAuthenticationAPI.md#createmutualtlsauthentication) | **POST** `/tls/mutual_authentications` | Create a Mutual Authentication -*MutualAuthenticationAPI* | [**DeleteMutualTLS**](docs/MutualAuthenticationAPI.md#deletemutualtls) | **DELETE** `/tls/mutual_authentications/{mutual_authentication_id}` | Delete a Mutual TLS -*MutualAuthenticationAPI* | [**GetMutualAuthentication**](docs/MutualAuthenticationAPI.md#getmutualauthentication) | **GET** `/tls/mutual_authentications/{mutual_authentication_id}` | Get a Mutual Authentication -*MutualAuthenticationAPI* | [**ListMutualAuthentications**](docs/MutualAuthenticationAPI.md#listmutualauthentications) | **GET** `/tls/mutual_authentications` | List Mutual Authentications -*MutualAuthenticationAPI* | [**PatchMutualAuthentication**](docs/MutualAuthenticationAPI.md#patchmutualauthentication) | **PATCH** `/tls/mutual_authentications/{mutual_authentication_id}` | Update a Mutual Authentication -*OriginInspectorHistoricalAPI* | [**GetOriginInspectorHistorical**](docs/OriginInspectorHistoricalAPI.md#getorigininspectorhistorical) | **GET** `/metrics/origins/services/{service_id}` | Get historical origin data for a service -*OriginInspectorRealtimeAPI* | [**GetOriginInspectorLast120Seconds**](docs/OriginInspectorRealtimeAPI.md#getorigininspectorlast120seconds) | **GET** `/v1/origins/{service_id}/ts/h` | Get real-time origin data for the last 120 seconds -*OriginInspectorRealtimeAPI* | [**GetOriginInspectorLastMaxEntries**](docs/OriginInspectorRealtimeAPI.md#getorigininspectorlastmaxentries) | **GET** `/v1/origins/{service_id}/ts/h/limit/{max_entries}` | Get a limited number of real-time origin data entries -*OriginInspectorRealtimeAPI* | [**GetOriginInspectorLastSecond**](docs/OriginInspectorRealtimeAPI.md#getorigininspectorlastsecond) | **GET** `/v1/origins/{service_id}/ts/{start_timestamp}` | Get real-time origin data from specific time. -*PackageAPI* | [**GetPackage**](docs/PackageAPI.md#getpackage) | **GET** `/service/{service_id}/version/{version_id}/package` | Get details of the service's Compute package. -*PackageAPI* | [**PutPackage**](docs/PackageAPI.md#putpackage) | **PUT** `/service/{service_id}/version/{version_id}/package` | Upload a Compute package. -*PoolAPI* | [**CreateServerPool**](docs/PoolAPI.md#createserverpool) | **POST** `/service/{service_id}/version/{version_id}/pool` | Create a server pool -*PoolAPI* | [**DeleteServerPool**](docs/PoolAPI.md#deleteserverpool) | **DELETE** `/service/{service_id}/version/{version_id}/pool/{pool_name}` | Delete a server pool -*PoolAPI* | [**GetServerPool**](docs/PoolAPI.md#getserverpool) | **GET** `/service/{service_id}/version/{version_id}/pool/{pool_name}` | Get a server pool -*PoolAPI* | [**ListServerPools**](docs/PoolAPI.md#listserverpools) | **GET** `/service/{service_id}/version/{version_id}/pool` | List server pools -*PoolAPI* | [**UpdateServerPool**](docs/PoolAPI.md#updateserverpool) | **PUT** `/service/{service_id}/version/{version_id}/pool/{pool_name}` | Update a server pool -*PopAPI* | [**ListPops**](docs/PopAPI.md#listpops) | **GET** `/datacenters` | List Fastly POPs -*PublicIPListAPI* | [**ListFastlyIps**](docs/PublicIPListAPI.md#listfastlyips) | **GET** `/public-ip-list` | List Fastly's public IPs -*PublishAPI* | [**Publish**](docs/PublishAPI.md#publish) | **POST** `/service/{service_id}/publish/` | Send messages to Fanout subscribers -*PurgeAPI* | [**BulkPurgeTag**](docs/PurgeAPI.md#bulkpurgetag) | **POST** `/service/{service_id}/purge` | Purge multiple surrogate key tags -*PurgeAPI* | [**PurgeAll**](docs/PurgeAPI.md#purgeall) | **POST** `/service/{service_id}/purge_all` | Purge everything from a service -*PurgeAPI* | [**PurgeSingleURL**](docs/PurgeAPI.md#purgesingleurl) | **POST** `/purge/{cached_url}` | Purge a URL -*PurgeAPI* | [**PurgeTag**](docs/PurgeAPI.md#purgetag) | **POST** `/service/{service_id}/purge/{surrogate_key}` | Purge by surrogate key tag -*RateLimiterAPI* | [**CreateRateLimiter**](docs/RateLimiterAPI.md#createratelimiter) | **POST** `/service/{service_id}/version/{version_id}/rate-limiters` | Create a rate limiter -*RateLimiterAPI* | [**DeleteRateLimiter**](docs/RateLimiterAPI.md#deleteratelimiter) | **DELETE** `/rate-limiters/{rate_limiter_id}` | Delete a rate limiter -*RateLimiterAPI* | [**GetRateLimiter**](docs/RateLimiterAPI.md#getratelimiter) | **GET** `/rate-limiters/{rate_limiter_id}` | Get a rate limiter -*RateLimiterAPI* | [**ListRateLimiters**](docs/RateLimiterAPI.md#listratelimiters) | **GET** `/service/{service_id}/version/{version_id}/rate-limiters` | List rate limiters -*RateLimiterAPI* | [**UpdateRateLimiter**](docs/RateLimiterAPI.md#updateratelimiter) | **PUT** `/rate-limiters/{rate_limiter_id}` | Update a rate limiter -*RealtimeAPI* | [**GetStatsLast120Seconds**](docs/RealtimeAPI.md#getstatslast120seconds) | **GET** `/v1/channel/{service_id}/ts/h` | Get real-time data for the last 120 seconds -*RealtimeAPI* | [**GetStatsLast120SecondsLimitEntries**](docs/RealtimeAPI.md#getstatslast120secondslimitentries) | **GET** `/v1/channel/{service_id}/ts/h/limit/{max_entries}` | Get a limited number of real-time data entries -*RealtimeAPI* | [**GetStatsLastSecond**](docs/RealtimeAPI.md#getstatslastsecond) | **GET** `/v1/channel/{service_id}/ts/{timestamp_in_seconds}` | Get real-time data from specified time -*RequestSettingsAPI* | [**CreateRequestSettings**](docs/RequestSettingsAPI.md#createrequestsettings) | **POST** `/service/{service_id}/version/{version_id}/request_settings` | Create a Request Settings object -*RequestSettingsAPI* | [**DeleteRequestSettings**](docs/RequestSettingsAPI.md#deleterequestsettings) | **DELETE** `/service/{service_id}/version/{version_id}/request_settings/{request_settings_name}` | Delete a Request Settings object -*RequestSettingsAPI* | [**GetRequestSettings**](docs/RequestSettingsAPI.md#getrequestsettings) | **GET** `/service/{service_id}/version/{version_id}/request_settings/{request_settings_name}` | Get a Request Settings object -*RequestSettingsAPI* | [**ListRequestSettings**](docs/RequestSettingsAPI.md#listrequestsettings) | **GET** `/service/{service_id}/version/{version_id}/request_settings` | List Request Settings objects -*RequestSettingsAPI* | [**UpdateRequestSettings**](docs/RequestSettingsAPI.md#updaterequestsettings) | **PUT** `/service/{service_id}/version/{version_id}/request_settings/{request_settings_name}` | Update a Request Settings object -*ResourceAPI* | [**CreateResource**](docs/ResourceAPI.md#createresource) | **POST** `/service/{service_id}/version/{version_id}/resource` | Create a resource link -*ResourceAPI* | [**DeleteResource**](docs/ResourceAPI.md#deleteresource) | **DELETE** `/service/{service_id}/version/{version_id}/resource/{id}` | Delete a resource link -*ResourceAPI* | [**GetResource**](docs/ResourceAPI.md#getresource) | **GET** `/service/{service_id}/version/{version_id}/resource/{id}` | Display a resource link -*ResourceAPI* | [**ListResources**](docs/ResourceAPI.md#listresources) | **GET** `/service/{service_id}/version/{version_id}/resource` | List resource links -*ResourceAPI* | [**UpdateResource**](docs/ResourceAPI.md#updateresource) | **PUT** `/service/{service_id}/version/{version_id}/resource/{id}` | Update a resource link -*ResponseObjectAPI* | [**CreateResponseObject**](docs/ResponseObjectAPI.md#createresponseobject) | **POST** `/service/{service_id}/version/{version_id}/response_object` | Create a Response object -*ResponseObjectAPI* | [**DeleteResponseObject**](docs/ResponseObjectAPI.md#deleteresponseobject) | **DELETE** `/service/{service_id}/version/{version_id}/response_object/{response_object_name}` | Delete a Response Object -*ResponseObjectAPI* | [**GetResponseObject**](docs/ResponseObjectAPI.md#getresponseobject) | **GET** `/service/{service_id}/version/{version_id}/response_object/{response_object_name}` | Get a Response object -*ResponseObjectAPI* | [**ListResponseObjects**](docs/ResponseObjectAPI.md#listresponseobjects) | **GET** `/service/{service_id}/version/{version_id}/response_object` | List Response objects -*ResponseObjectAPI* | [**UpdateResponseObject**](docs/ResponseObjectAPI.md#updateresponseobject) | **PUT** `/service/{service_id}/version/{version_id}/response_object/{response_object_name}` | Update a Response object -*SecretStoreAPI* | [**ClientKey**](docs/SecretStoreAPI.md#clientkey) | **POST** `/resources/stores/secret/client-key` | Create new client key -*SecretStoreAPI* | [**CreateSecretStore**](docs/SecretStoreAPI.md#createsecretstore) | **POST** `/resources/stores/secret` | Create new secret store -*SecretStoreAPI* | [**DeleteSecretStore**](docs/SecretStoreAPI.md#deletesecretstore) | **DELETE** `/resources/stores/secret/{store_id}` | Delete secret store -*SecretStoreAPI* | [**GetSecretStore**](docs/SecretStoreAPI.md#getsecretstore) | **GET** `/resources/stores/secret/{store_id}` | Get secret store by ID -*SecretStoreAPI* | [**GetSecretStores**](docs/SecretStoreAPI.md#getsecretstores) | **GET** `/resources/stores/secret` | Get all secret stores -*SecretStoreAPI* | [**SigningKey**](docs/SecretStoreAPI.md#signingkey) | **GET** `/resources/stores/secret/signing-key` | Get public key -*SecretStoreItemAPI* | [**CreateSecret**](docs/SecretStoreItemAPI.md#createsecret) | **POST** `/resources/stores/secret/{store_id}/secrets` | Create a new secret in a store. -*SecretStoreItemAPI* | [**DeleteSecret**](docs/SecretStoreItemAPI.md#deletesecret) | **DELETE** `/resources/stores/secret/{store_id}/secrets/{secret_name}` | Delete a secret from a store. -*SecretStoreItemAPI* | [**GetSecret**](docs/SecretStoreItemAPI.md#getsecret) | **GET** `/resources/stores/secret/{store_id}/secrets/{secret_name}` | Get secret metadata. -*SecretStoreItemAPI* | [**GetSecrets**](docs/SecretStoreItemAPI.md#getsecrets) | **GET** `/resources/stores/secret/{store_id}/secrets` | List secrets within a store. -*SecretStoreItemAPI* | [**MustRecreateSecret**](docs/SecretStoreItemAPI.md#mustrecreatesecret) | **PATCH** `/resources/stores/secret/{store_id}/secrets` | Recreate a secret in a store. -*SecretStoreItemAPI* | [**RecreateSecret**](docs/SecretStoreItemAPI.md#recreatesecret) | **PUT** `/resources/stores/secret/{store_id}/secrets` | Create or recreate a secret in a store. -*ServerAPI* | [**CreatePoolServer**](docs/ServerAPI.md#createpoolserver) | **POST** `/service/{service_id}/pool/{pool_id}/server` | Add a server to a pool -*ServerAPI* | [**DeletePoolServer**](docs/ServerAPI.md#deletepoolserver) | **DELETE** `/service/{service_id}/pool/{pool_id}/server/{server_id}` | Delete a server from a pool -*ServerAPI* | [**GetPoolServer**](docs/ServerAPI.md#getpoolserver) | **GET** `/service/{service_id}/pool/{pool_id}/server/{server_id}` | Get a pool server -*ServerAPI* | [**ListPoolServers**](docs/ServerAPI.md#listpoolservers) | **GET** `/service/{service_id}/pool/{pool_id}/servers` | List servers in a pool -*ServerAPI* | [**UpdatePoolServer**](docs/ServerAPI.md#updatepoolserver) | **PUT** `/service/{service_id}/pool/{pool_id}/server/{server_id}` | Update a server -*ServiceAPI* | [**CreateService**](docs/ServiceAPI.md#createservice) | **POST** `/service` | Create a service -*ServiceAPI* | [**DeleteService**](docs/ServiceAPI.md#deleteservice) | **DELETE** `/service/{service_id}` | Delete a service -*ServiceAPI* | [**GetService**](docs/ServiceAPI.md#getservice) | **GET** `/service/{service_id}` | Get a service -*ServiceAPI* | [**GetServiceDetail**](docs/ServiceAPI.md#getservicedetail) | **GET** `/service/{service_id}/details` | Get service details -*ServiceAPI* | [**ListServiceDomains**](docs/ServiceAPI.md#listservicedomains) | **GET** `/service/{service_id}/domain` | List the domains within a service -*ServiceAPI* | [**ListServices**](docs/ServiceAPI.md#listservices) | **GET** `/service` | List services -*ServiceAPI* | [**SearchService**](docs/ServiceAPI.md#searchservice) | **GET** `/service/search` | Search for a service by name -*ServiceAPI* | [**UpdateService**](docs/ServiceAPI.md#updateservice) | **PUT** `/service/{service_id}` | Update a service -*ServiceAuthorizationsAPI* | [**CreateServiceAuthorization**](docs/ServiceAuthorizationsAPI.md#createserviceauthorization) | **POST** `/service-authorizations` | Create service authorization -*ServiceAuthorizationsAPI* | [**DeleteServiceAuthorization**](docs/ServiceAuthorizationsAPI.md#deleteserviceauthorization) | **DELETE** `/service-authorizations/{service_authorization_id}` | Delete service authorization -*ServiceAuthorizationsAPI* | [**DeleteServiceAuthorization2**](docs/ServiceAuthorizationsAPI.md#deleteserviceauthorization2) | **DELETE** `/service-authorizations` | Delete service authorizations -*ServiceAuthorizationsAPI* | [**ListServiceAuthorization**](docs/ServiceAuthorizationsAPI.md#listserviceauthorization) | **GET** `/service-authorizations` | List service authorizations -*ServiceAuthorizationsAPI* | [**ShowServiceAuthorization**](docs/ServiceAuthorizationsAPI.md#showserviceauthorization) | **GET** `/service-authorizations/{service_authorization_id}` | Show service authorization -*ServiceAuthorizationsAPI* | [**UpdateServiceAuthorization**](docs/ServiceAuthorizationsAPI.md#updateserviceauthorization) | **PATCH** `/service-authorizations/{service_authorization_id}` | Update service authorization -*ServiceAuthorizationsAPI* | [**UpdateServiceAuthorization2**](docs/ServiceAuthorizationsAPI.md#updateserviceauthorization2) | **PATCH** `/service-authorizations` | Update service authorizations -*SettingsAPI* | [**GetServiceSettings**](docs/SettingsAPI.md#getservicesettings) | **GET** `/service/{service_id}/version/{version_id}/settings` | Get service settings -*SettingsAPI* | [**UpdateServiceSettings**](docs/SettingsAPI.md#updateservicesettings) | **PUT** `/service/{service_id}/version/{version_id}/settings` | Update service settings -*SnippetAPI* | [**CreateSnippet**](docs/SnippetAPI.md#createsnippet) | **POST** `/service/{service_id}/version/{version_id}/snippet` | Create a snippet -*SnippetAPI* | [**DeleteSnippet**](docs/SnippetAPI.md#deletesnippet) | **DELETE** `/service/{service_id}/version/{version_id}/snippet/{snippet_name}` | Delete a snippet -*SnippetAPI* | [**GetSnippet**](docs/SnippetAPI.md#getsnippet) | **GET** `/service/{service_id}/version/{version_id}/snippet/{snippet_name}` | Get a versioned snippet -*SnippetAPI* | [**GetSnippetDynamic**](docs/SnippetAPI.md#getsnippetdynamic) | **GET** `/service/{service_id}/snippet/{snippet_id}` | Get a dynamic snippet -*SnippetAPI* | [**ListSnippets**](docs/SnippetAPI.md#listsnippets) | **GET** `/service/{service_id}/version/{version_id}/snippet` | List snippets -*SnippetAPI* | [**UpdateSnippet**](docs/SnippetAPI.md#updatesnippet) | **PUT** `/service/{service_id}/version/{version_id}/snippet/{snippet_name}` | Update a versioned snippet -*SnippetAPI* | [**UpdateSnippetDynamic**](docs/SnippetAPI.md#updatesnippetdynamic) | **PUT** `/service/{service_id}/snippet/{snippet_id}` | Update a dynamic snippet -*StarAPI* | [**CreateServiceStar**](docs/StarAPI.md#createservicestar) | **POST** `/stars` | Create a star -*StarAPI* | [**DeleteServiceStar**](docs/StarAPI.md#deleteservicestar) | **DELETE** `/stars/{star_id}` | Delete a star -*StarAPI* | [**GetServiceStar**](docs/StarAPI.md#getservicestar) | **GET** `/stars/{star_id}` | Get a star -*StarAPI* | [**ListServiceStars**](docs/StarAPI.md#listservicestars) | **GET** `/stars` | List stars -*StatsAPI* | [**GetServiceStats**](docs/StatsAPI.md#getservicestats) | **GET** `/service/{service_id}/stats/summary` | Get stats for a service -*SudoAPI* | [**RequestSudoAccess**](docs/SudoAPI.md#requestsudoaccess) | **POST** `/sudo` | Request Sudo access -*TLSActivationsAPI* | [**CreateTLSActivation**](docs/TlsActivationsAPI.md#createtlsactivation) | **POST** `/tls/activations` | Enable TLS for a domain using a custom certificate -*TLSActivationsAPI* | [**DeleteTLSActivation**](docs/TlsActivationsAPI.md#deletetlsactivation) | **DELETE** `/tls/activations/{tls_activation_id}` | Disable TLS on a domain -*TLSActivationsAPI* | [**GetTLSActivation**](docs/TlsActivationsAPI.md#gettlsactivation) | **GET** `/tls/activations/{tls_activation_id}` | Get a TLS activation -*TLSActivationsAPI* | [**ListTLSActivations**](docs/TlsActivationsAPI.md#listtlsactivations) | **GET** `/tls/activations` | List TLS activations -*TLSActivationsAPI* | [**UpdateTLSActivation**](docs/TlsActivationsAPI.md#updatetlsactivation) | **PATCH** `/tls/activations/{tls_activation_id}` | Update a certificate -*TLSBulkCertificatesAPI* | [**DeleteBulkTLSCert**](docs/TlsBulkCertificatesAPI.md#deletebulktlscert) | **DELETE** `/tls/bulk/certificates/{certificate_id}` | Delete a certificate -*TLSBulkCertificatesAPI* | [**GetTLSBulkCert**](docs/TlsBulkCertificatesAPI.md#gettlsbulkcert) | **GET** `/tls/bulk/certificates/{certificate_id}` | Get a certificate -*TLSBulkCertificatesAPI* | [**ListTLSBulkCerts**](docs/TlsBulkCertificatesAPI.md#listtlsbulkcerts) | **GET** `/tls/bulk/certificates` | List certificates -*TLSBulkCertificatesAPI* | [**UpdateBulkTLSCert**](docs/TlsBulkCertificatesAPI.md#updatebulktlscert) | **PATCH** `/tls/bulk/certificates/{certificate_id}` | Update a certificate -*TLSBulkCertificatesAPI* | [**UploadTLSBulkCert**](docs/TlsBulkCertificatesAPI.md#uploadtlsbulkcert) | **POST** `/tls/bulk/certificates` | Upload a certificate -*TLSCertificatesAPI* | [**CreateTLSCert**](docs/TlsCertificatesAPI.md#createtlscert) | **POST** `/tls/certificates` | Create a TLS certificate -*TLSCertificatesAPI* | [**DeleteTLSCert**](docs/TlsCertificatesAPI.md#deletetlscert) | **DELETE** `/tls/certificates/{tls_certificate_id}` | Delete a TLS certificate -*TLSCertificatesAPI* | [**GetTLSCert**](docs/TlsCertificatesAPI.md#gettlscert) | **GET** `/tls/certificates/{tls_certificate_id}` | Get a TLS certificate -*TLSCertificatesAPI* | [**ListTLSCerts**](docs/TlsCertificatesAPI.md#listtlscerts) | **GET** `/tls/certificates` | List TLS certificates -*TLSCertificatesAPI* | [**UpdateTLSCert**](docs/TlsCertificatesAPI.md#updatetlscert) | **PATCH** `/tls/certificates/{tls_certificate_id}` | Update a TLS certificate -*TLSConfigurationsAPI* | [**GetTLSConfig**](docs/TlsConfigurationsAPI.md#gettlsconfig) | **GET** `/tls/configurations/{tls_configuration_id}` | Get a TLS configuration -*TLSConfigurationsAPI* | [**ListTLSConfigs**](docs/TlsConfigurationsAPI.md#listtlsconfigs) | **GET** `/tls/configurations` | List TLS configurations -*TLSConfigurationsAPI* | [**UpdateTLSConfig**](docs/TlsConfigurationsAPI.md#updatetlsconfig) | **PATCH** `/tls/configurations/{tls_configuration_id}` | Update a TLS configuration -*TLSCsrsAPI* | [**CreateCsr**](docs/TlsCsrsAPI.md#createcsr) | **POST** `/tls/certificate_signing_requests` | Create CSR -*TLSDomainsAPI* | [**ListTLSDomains**](docs/TlsDomainsAPI.md#listtlsdomains) | **GET** `/tls/domains` | List TLS domains -*TLSPrivateKeysAPI* | [**CreateTLSKey**](docs/TlsPrivateKeysAPI.md#createtlskey) | **POST** `/tls/private_keys` | Create a TLS private key -*TLSPrivateKeysAPI* | [**DeleteTLSKey**](docs/TlsPrivateKeysAPI.md#deletetlskey) | **DELETE** `/tls/private_keys/{tls_private_key_id}` | Delete a TLS private key -*TLSPrivateKeysAPI* | [**GetTLSKey**](docs/TlsPrivateKeysAPI.md#gettlskey) | **GET** `/tls/private_keys/{tls_private_key_id}` | Get a TLS private key -*TLSPrivateKeysAPI* | [**ListTLSKeys**](docs/TlsPrivateKeysAPI.md#listtlskeys) | **GET** `/tls/private_keys` | List TLS private keys -*TLSSubscriptionsAPI* | [**CreateGlobalsignEmailChallenge**](docs/TlsSubscriptionsAPI.md#createglobalsignemailchallenge) | **POST** `/tls/subscriptions/{tls_subscription_id}/authorizations/{tls_authorization_id}/globalsign_email_challenges` | Creates a GlobalSign email challenge. -*TLSSubscriptionsAPI* | [**CreateTLSSub**](docs/TlsSubscriptionsAPI.md#createtlssub) | **POST** `/tls/subscriptions` | Create a TLS subscription -*TLSSubscriptionsAPI* | [**DeleteGlobalsignEmailChallenge**](docs/TlsSubscriptionsAPI.md#deleteglobalsignemailchallenge) | **DELETE** `/tls/subscriptions/{tls_subscription_id}/authorizations/{tls_authorization_id}/globalsign_email_challenges/{globalsign_email_challenge_id}` | Delete a GlobalSign email challenge -*TLSSubscriptionsAPI* | [**DeleteTLSSub**](docs/TlsSubscriptionsAPI.md#deletetlssub) | **DELETE** `/tls/subscriptions/{tls_subscription_id}` | Delete a TLS subscription -*TLSSubscriptionsAPI* | [**GetTLSSub**](docs/TlsSubscriptionsAPI.md#gettlssub) | **GET** `/tls/subscriptions/{tls_subscription_id}` | Get a TLS subscription -*TLSSubscriptionsAPI* | [**ListTLSSubs**](docs/TlsSubscriptionsAPI.md#listtlssubs) | **GET** `/tls/subscriptions` | List TLS subscriptions -*TLSSubscriptionsAPI* | [**PatchTLSSub**](docs/TlsSubscriptionsAPI.md#patchtlssub) | **PATCH** `/tls/subscriptions/{tls_subscription_id}` | Update a TLS subscription -*TokensAPI* | [**BulkRevokeTokens**](docs/TokensAPI.md#bulkrevoketokens) | **DELETE** `/tokens` | Revoke multiple tokens -*TokensAPI* | [**CreateToken**](docs/TokensAPI.md#createtoken) | **POST** `/tokens` | Create a token -*TokensAPI* | [**GetToken**](docs/TokensAPI.md#gettoken) | **GET** `/tokens/{token_id}` | Get a token -*TokensAPI* | [**GetTokenCurrent**](docs/TokensAPI.md#gettokencurrent) | **GET** `/tokens/self` | Get the current token -*TokensAPI* | [**ListTokensCustomer**](docs/TokensAPI.md#listtokenscustomer) | **GET** `/customer/{customer_id}/tokens` | List tokens for a customer -*TokensAPI* | [**ListTokensUser**](docs/TokensAPI.md#listtokensuser) | **GET** `/tokens` | List tokens for the authenticated user -*TokensAPI* | [**RevokeToken**](docs/TokensAPI.md#revoketoken) | **DELETE** `/tokens/{token_id}` | Revoke a token -*TokensAPI* | [**RevokeTokenCurrent**](docs/TokensAPI.md#revoketokencurrent) | **DELETE** `/tokens/self` | Revoke the current token -*UserAPI* | [**CreateUser**](docs/UserAPI.md#createuser) | **POST** `/user` | Create a user -*UserAPI* | [**DeleteUser**](docs/UserAPI.md#deleteuser) | **DELETE** `/user/{user_id}` | Delete a user -*UserAPI* | [**GetCurrentUser**](docs/UserAPI.md#getcurrentuser) | **GET** `/current_user` | Get the current user -*UserAPI* | [**GetUser**](docs/UserAPI.md#getuser) | **GET** `/user/{user_id}` | Get a user -*UserAPI* | [**RequestPasswordReset**](docs/UserAPI.md#requestpasswordreset) | **POST** `/user/{user_login}/password/request_reset` | Request a password reset -*UserAPI* | [**UpdateUser**](docs/UserAPI.md#updateuser) | **PUT** `/user/{user_id}` | Update a user -*UserAPI* | [**UpdateUserPassword**](docs/UserAPI.md#updateuserpassword) | **POST** `/current_user/password` | Update the user's password -*VclAPI* | [**CreateCustomVcl**](docs/VclAPI.md#createcustomvcl) | **POST** `/service/{service_id}/version/{version_id}/vcl` | Create a custom VCL file -*VclAPI* | [**DeleteCustomVcl**](docs/VclAPI.md#deletecustomvcl) | **DELETE** `/service/{service_id}/version/{version_id}/vcl/{vcl_name}` | Delete a custom VCL file -*VclAPI* | [**GetCustomVcl**](docs/VclAPI.md#getcustomvcl) | **GET** `/service/{service_id}/version/{version_id}/vcl/{vcl_name}` | Get a custom VCL file -*VclAPI* | [**GetCustomVclBoilerplate**](docs/VclAPI.md#getcustomvclboilerplate) | **GET** `/service/{service_id}/version/{version_id}/boilerplate` | Get boilerplate VCL -*VclAPI* | [**GetCustomVclGenerated**](docs/VclAPI.md#getcustomvclgenerated) | **GET** `/service/{service_id}/version/{version_id}/generated_vcl` | Get the generated VCL for a service -*VclAPI* | [**GetCustomVclGeneratedHighlighted**](docs/VclAPI.md#getcustomvclgeneratedhighlighted) | **GET** `/service/{service_id}/version/{version_id}/generated_vcl/content` | Get the generated VCL with syntax highlighting -*VclAPI* | [**GetCustomVclHighlighted**](docs/VclAPI.md#getcustomvclhighlighted) | **GET** `/service/{service_id}/version/{version_id}/vcl/{vcl_name}/content` | Get a custom VCL file with syntax highlighting -*VclAPI* | [**GetCustomVclRaw**](docs/VclAPI.md#getcustomvclraw) | **GET** `/service/{service_id}/version/{version_id}/vcl/{vcl_name}/download` | Download a custom VCL file -*VclAPI* | [**LintVclDefault**](docs/VclAPI.md#lintvcldefault) | **POST** `/vcl_lint` | Lint (validate) VCL using a default set of flags. -*VclAPI* | [**LintVclForService**](docs/VclAPI.md#lintvclforservice) | **POST** `/service/{service_id}/lint` | Lint (validate) VCL using flags set for the service. -*VclAPI* | [**ListCustomVcl**](docs/VclAPI.md#listcustomvcl) | **GET** `/service/{service_id}/version/{version_id}/vcl` | List custom VCL files -*VclAPI* | [**SetCustomVclMain**](docs/VclAPI.md#setcustomvclmain) | **PUT** `/service/{service_id}/version/{version_id}/vcl/{vcl_name}/main` | Set a custom VCL file as main -*VclAPI* | [**UpdateCustomVcl**](docs/VclAPI.md#updatecustomvcl) | **PUT** `/service/{service_id}/version/{version_id}/vcl/{vcl_name}` | Update a custom VCL file -*VclDiffAPI* | [**VclDiffServiceVersions**](docs/VclDiffAPI.md#vcldiffserviceversions) | **GET** `/service/{service_id}/vcl/diff/from/{from_version_id}/to/{to_version_id}` | Get a comparison of the VCL changes between two service versions -*VersionAPI* | [**ActivateServiceVersion**](docs/VersionAPI.md#activateserviceversion) | **PUT** `/service/{service_id}/version/{version_id}/activate` | Activate a service version -*VersionAPI* | [**CloneServiceVersion**](docs/VersionAPI.md#cloneserviceversion) | **PUT** `/service/{service_id}/version/{version_id}/clone` | Clone a service version -*VersionAPI* | [**CreateServiceVersion**](docs/VersionAPI.md#createserviceversion) | **POST** `/service/{service_id}/version` | Create a service version -*VersionAPI* | [**DeactivateServiceVersion**](docs/VersionAPI.md#deactivateserviceversion) | **PUT** `/service/{service_id}/version/{version_id}/deactivate` | Deactivate a service version -*VersionAPI* | [**GetServiceVersion**](docs/VersionAPI.md#getserviceversion) | **GET** `/service/{service_id}/version/{version_id}` | Get a version of a service -*VersionAPI* | [**ListServiceVersions**](docs/VersionAPI.md#listserviceversions) | **GET** `/service/{service_id}/version` | List versions of a service -*VersionAPI* | [**LockServiceVersion**](docs/VersionAPI.md#lockserviceversion) | **PUT** `/service/{service_id}/version/{version_id}/lock` | Lock a service version -*VersionAPI* | [**UpdateServiceVersion**](docs/VersionAPI.md#updateserviceversion) | **PUT** `/service/{service_id}/version/{version_id}` | Update a service version -*VersionAPI* | [**ValidateServiceVersion**](docs/VersionAPI.md#validateserviceversion) | **GET** `/service/{service_id}/version/{version_id}/validate` | Validate a service version -*WafActiveRulesAPI* | [**BulkDeleteWafActiveRules**](docs/WafActiveRulesAPI.md#bulkdeletewafactiverules) | **DELETE** `/waf/firewalls/{firewall_id}/versions/{version_id}/active-rules` | Delete multiple active rules from a WAF -*WafActiveRulesAPI* | [**BulkUpdateWafActiveRules**](docs/WafActiveRulesAPI.md#bulkupdatewafactiverules) | **PATCH** `/waf/firewalls/{firewall_id}/versions/{version_id}/active-rules/bulk` | Update multiple active rules -*WafActiveRulesAPI* | [**CreateWafActiveRule**](docs/WafActiveRulesAPI.md#createwafactiverule) | **POST** `/waf/firewalls/{firewall_id}/versions/{version_id}/active-rules` | Add a rule to a WAF as an active rule -*WafActiveRulesAPI* | [**CreateWafActiveRulesTag**](docs/WafActiveRulesAPI.md#createwafactiverulestag) | **POST** `/waf/firewalls/{firewall_id}/versions/{version_id}/tags/{waf_tag_name}/active-rules` | Create active rules by tag -*WafActiveRulesAPI* | [**DeleteWafActiveRule**](docs/WafActiveRulesAPI.md#deletewafactiverule) | **DELETE** `/waf/firewalls/{firewall_id}/versions/{version_id}/active-rules/{waf_rule_id}` | Delete an active rule -*WafActiveRulesAPI* | [**GetWafActiveRule**](docs/WafActiveRulesAPI.md#getwafactiverule) | **GET** `/waf/firewalls/{firewall_id}/versions/{version_id}/active-rules/{waf_rule_id}` | Get an active WAF rule object -*WafActiveRulesAPI* | [**ListWafActiveRules**](docs/WafActiveRulesAPI.md#listwafactiverules) | **GET** `/waf/firewalls/{firewall_id}/versions/{version_id}/active-rules` | List active rules on a WAF -*WafActiveRulesAPI* | [**UpdateWafActiveRule**](docs/WafActiveRulesAPI.md#updatewafactiverule) | **PATCH** `/waf/firewalls/{firewall_id}/versions/{version_id}/active-rules/{waf_rule_id}` | Update an active rule -*WafExclusionsAPI* | [**CreateWafRuleExclusion**](docs/WafExclusionsAPI.md#createwafruleexclusion) | **POST** `/waf/firewalls/{firewall_id}/versions/{firewall_version_number}/exclusions` | Create a WAF rule exclusion -*WafExclusionsAPI* | [**DeleteWafRuleExclusion**](docs/WafExclusionsAPI.md#deletewafruleexclusion) | **DELETE** `/waf/firewalls/{firewall_id}/versions/{firewall_version_number}/exclusions/{exclusion_number}` | Delete a WAF rule exclusion -*WafExclusionsAPI* | [**GetWafRuleExclusion**](docs/WafExclusionsAPI.md#getwafruleexclusion) | **GET** `/waf/firewalls/{firewall_id}/versions/{firewall_version_number}/exclusions/{exclusion_number}` | Get a WAF rule exclusion -*WafExclusionsAPI* | [**ListWafRuleExclusions**](docs/WafExclusionsAPI.md#listwafruleexclusions) | **GET** `/waf/firewalls/{firewall_id}/versions/{firewall_version_number}/exclusions` | List WAF rule exclusions -*WafExclusionsAPI* | [**UpdateWafRuleExclusion**](docs/WafExclusionsAPI.md#updatewafruleexclusion) | **PATCH** `/waf/firewalls/{firewall_id}/versions/{firewall_version_number}/exclusions/{exclusion_number}` | Update a WAF rule exclusion -*WafFirewallVersionsAPI* | [**CloneWafFirewallVersion**](docs/WafFirewallVersionsAPI.md#clonewaffirewallversion) | **PUT** `/waf/firewalls/{firewall_id}/versions/{firewall_version_number}/clone` | Clone a firewall version -*WafFirewallVersionsAPI* | [**CreateWafFirewallVersion**](docs/WafFirewallVersionsAPI.md#createwaffirewallversion) | **POST** `/waf/firewalls/{firewall_id}/versions` | Create a firewall version -*WafFirewallVersionsAPI* | [**DeployActivateWafFirewallVersion**](docs/WafFirewallVersionsAPI.md#deployactivatewaffirewallversion) | **PUT** `/waf/firewalls/{firewall_id}/versions/{firewall_version_number}/activate` | Deploy or activate a firewall version -*WafFirewallVersionsAPI* | [**GetWafFirewallVersion**](docs/WafFirewallVersionsAPI.md#getwaffirewallversion) | **GET** `/waf/firewalls/{firewall_id}/versions/{firewall_version_number}` | Get a firewall version -*WafFirewallVersionsAPI* | [**ListWafFirewallVersions**](docs/WafFirewallVersionsAPI.md#listwaffirewallversions) | **GET** `/waf/firewalls/{firewall_id}/versions` | List firewall versions -*WafFirewallVersionsAPI* | [**UpdateWafFirewallVersion**](docs/WafFirewallVersionsAPI.md#updatewaffirewallversion) | **PATCH** `/waf/firewalls/{firewall_id}/versions/{firewall_version_number}` | Update a firewall version -*WafFirewallsAPI* | [**CreateWafFirewall**](docs/WafFirewallsAPI.md#createwaffirewall) | **POST** `/waf/firewalls` | Create a firewall -*WafFirewallsAPI* | [**DeleteWafFirewall**](docs/WafFirewallsAPI.md#deletewaffirewall) | **DELETE** `/waf/firewalls/{firewall_id}` | Delete a firewall -*WafFirewallsAPI* | [**GetWafFirewall**](docs/WafFirewallsAPI.md#getwaffirewall) | **GET** `/waf/firewalls/{firewall_id}` | Get a firewall -*WafFirewallsAPI* | [**ListWafFirewalls**](docs/WafFirewallsAPI.md#listwaffirewalls) | **GET** `/waf/firewalls` | List firewalls -*WafFirewallsAPI* | [**UpdateWafFirewall**](docs/WafFirewallsAPI.md#updatewaffirewall) | **PATCH** `/waf/firewalls/{firewall_id}` | Update a firewall -*WafRuleRevisionsAPI* | [**GetWafRuleRevision**](docs/WafRuleRevisionsAPI.md#getwafrulerevision) | **GET** `/waf/rules/{waf_rule_id}/revisions/{waf_rule_revision_number}` | Get a revision of a rule -*WafRuleRevisionsAPI* | [**ListWafRuleRevisions**](docs/WafRuleRevisionsAPI.md#listwafrulerevisions) | **GET** `/waf/rules/{waf_rule_id}/revisions` | List revisions for a rule -*WafRulesAPI* | [**GetWafRule**](docs/WafRulesAPI.md#getwafrule) | **GET** `/waf/rules/{waf_rule_id}` | Get a rule -*WafRulesAPI* | [**ListWafRules**](docs/WafRulesAPI.md#listwafrules) | **GET** `/waf/rules` | List available WAF rules -*WafTagsAPI* | [**ListWafTags**](docs/WafTagsAPI.md#listwaftags) | **GET** `/waf/tags` | List tags -*WholePlatformDdosHistoricalAPI* | [**GetPlatformDdosHistorical**](docs/WholePlatformDdosHistoricalAPI.md#getplatformddoshistorical) | **GET** `/metrics/platform/ddos` | Get historical DDoS metrics for the entire Fastly platform - - -## Documentation for Utility Methods +## API Endpoints + +The main documentation for the Fastly API can be found on our [Developer Hub](https://www.fastly.com/documentation/reference/api/). + +
+ +Table of API endpoints + +Class | Method | Description +----- | ------ | ----------- +*ACLAPI* | [**CreateACL**](docs/AclAPI.md#createacl) | Create a new ACL +*ACLAPI* | [**DeleteACL**](docs/AclAPI.md#deleteacl) | Delete an ACL +*ACLAPI* | [**GetACL**](docs/AclAPI.md#getacl) | Describe an ACL +*ACLAPI* | [**ListACLs**](docs/AclAPI.md#listacls) | List ACLs +*ACLAPI* | [**UpdateACL**](docs/AclAPI.md#updateacl) | Update an ACL +*ACLEntryAPI* | [**BulkUpdateACLEntries**](docs/AclEntryAPI.md#bulkupdateaclentries) | Update multiple ACL entries +*ACLEntryAPI* | [**CreateACLEntry**](docs/AclEntryAPI.md#createaclentry) | Create an ACL entry +*ACLEntryAPI* | [**DeleteACLEntry**](docs/AclEntryAPI.md#deleteaclentry) | Delete an ACL entry +*ACLEntryAPI* | [**GetACLEntry**](docs/AclEntryAPI.md#getaclentry) | Describe an ACL entry +*ACLEntryAPI* | [**ListACLEntries**](docs/AclEntryAPI.md#listaclentries) | List ACL entries +*ACLEntryAPI* | [**UpdateACLEntry**](docs/AclEntryAPI.md#updateaclentry) | Update an ACL entry +*ApexRedirectAPI* | [**CreateApexRedirect**](docs/ApexRedirectAPI.md#createapexredirect) | Create an apex redirect +*ApexRedirectAPI* | [**DeleteApexRedirect**](docs/ApexRedirectAPI.md#deleteapexredirect) | Delete an apex redirect +*ApexRedirectAPI* | [**GetApexRedirect**](docs/ApexRedirectAPI.md#getapexredirect) | Get an apex redirect +*ApexRedirectAPI* | [**ListApexRedirects**](docs/ApexRedirectAPI.md#listapexredirects) | List apex redirects +*ApexRedirectAPI* | [**UpdateApexRedirect**](docs/ApexRedirectAPI.md#updateapexredirect) | Update an apex redirect +*AutomationTokensAPI* | [**CreateAutomationToken**](docs/AutomationTokensAPI.md#createautomationtoken) | Create Automation Token +*AutomationTokensAPI* | [**GetAutomationTokenID**](docs/AutomationTokensAPI.md#getautomationtokenid) | Retrieve an Automation Token by ID +*AutomationTokensAPI* | [**GetAutomationTokensIDServices**](docs/AutomationTokensAPI.md#getautomationtokensidservices) | List Automation Token Services +*AutomationTokensAPI* | [**ListAutomationTokens**](docs/AutomationTokensAPI.md#listautomationtokens) | List Customer Automation Tokens +*AutomationTokensAPI* | [**RevokeAutomationTokenID**](docs/AutomationTokensAPI.md#revokeautomationtokenid) | Revoke an Automation Token by ID +*BackendAPI* | [**CreateBackend**](docs/BackendAPI.md#createbackend) | Create a backend +*BackendAPI* | [**DeleteBackend**](docs/BackendAPI.md#deletebackend) | Delete a backend +*BackendAPI* | [**GetBackend**](docs/BackendAPI.md#getbackend) | Describe a backend +*BackendAPI* | [**ListBackends**](docs/BackendAPI.md#listbackends) | List backends +*BackendAPI* | [**UpdateBackend**](docs/BackendAPI.md#updatebackend) | Update a backend +*BillingAPI* | [**GetInvoice**](docs/BillingAPI.md#getinvoice) | Get an invoice +*BillingAPI* | [**GetInvoiceByID**](docs/BillingAPI.md#getinvoicebyid) | Get an invoice +*BillingAPI* | [**GetInvoiceMtd**](docs/BillingAPI.md#getinvoicemtd) | Get month-to-date billing estimate +*BillingAddressAPI* | [**AddBillingAddr**](docs/BillingAddressAPI.md#addbillingaddr) | Add a billing address to a customer +*BillingAddressAPI* | [**DeleteBillingAddr**](docs/BillingAddressAPI.md#deletebillingaddr) | Delete a billing address +*BillingAddressAPI* | [**GetBillingAddr**](docs/BillingAddressAPI.md#getbillingaddr) | Get a billing address +*BillingAddressAPI* | [**UpdateBillingAddr**](docs/BillingAddressAPI.md#updatebillingaddr) | Update a billing address +*BillingInvoicesAPI* | [**GetInvoiceByInvoiceID**](docs/BillingInvoicesAPI.md#getinvoicebyinvoiceid) | Get invoice by ID. +*BillingInvoicesAPI* | [**ListInvoices**](docs/BillingInvoicesAPI.md#listinvoices) | List of invoices. +*CacheSettingsAPI* | [**CreateCacheSettings**](docs/CacheSettingsAPI.md#createcachesettings) | Create a cache settings object +*CacheSettingsAPI* | [**DeleteCacheSettings**](docs/CacheSettingsAPI.md#deletecachesettings) | Delete a cache settings object +*CacheSettingsAPI* | [**GetCacheSettings**](docs/CacheSettingsAPI.md#getcachesettings) | Get a cache settings object +*CacheSettingsAPI* | [**ListCacheSettings**](docs/CacheSettingsAPI.md#listcachesettings) | List cache settings objects +*CacheSettingsAPI* | [**UpdateCacheSettings**](docs/CacheSettingsAPI.md#updatecachesettings) | Update a cache settings object +*ConditionAPI* | [**CreateCondition**](docs/ConditionAPI.md#createcondition) | Create a condition +*ConditionAPI* | [**DeleteCondition**](docs/ConditionAPI.md#deletecondition) | Delete a condition +*ConditionAPI* | [**GetCondition**](docs/ConditionAPI.md#getcondition) | Describe a condition +*ConditionAPI* | [**ListConditions**](docs/ConditionAPI.md#listconditions) | List conditions +*ConditionAPI* | [**UpdateCondition**](docs/ConditionAPI.md#updatecondition) | Update a condition +*ConfigStoreAPI* | [**CreateConfigStore**](docs/ConfigStoreAPI.md#createconfigstore) | Create a config store +*ConfigStoreAPI* | [**DeleteConfigStore**](docs/ConfigStoreAPI.md#deleteconfigstore) | Delete a config store +*ConfigStoreAPI* | [**GetConfigStore**](docs/ConfigStoreAPI.md#getconfigstore) | Describe a config store +*ConfigStoreAPI* | [**GetConfigStoreInfo**](docs/ConfigStoreAPI.md#getconfigstoreinfo) | Get config store metadata +*ConfigStoreAPI* | [**ListConfigStoreServices**](docs/ConfigStoreAPI.md#listconfigstoreservices) | List linked services +*ConfigStoreAPI* | [**ListConfigStores**](docs/ConfigStoreAPI.md#listconfigstores) | List config stores +*ConfigStoreAPI* | [**UpdateConfigStore**](docs/ConfigStoreAPI.md#updateconfigstore) | Update a config store +*ConfigStoreItemAPI* | [**BulkUpdateConfigStoreItem**](docs/ConfigStoreItemAPI.md#bulkupdateconfigstoreitem) | Update multiple entries in a config store +*ConfigStoreItemAPI* | [**CreateConfigStoreItem**](docs/ConfigStoreItemAPI.md#createconfigstoreitem) | Create an entry in a config store +*ConfigStoreItemAPI* | [**DeleteConfigStoreItem**](docs/ConfigStoreItemAPI.md#deleteconfigstoreitem) | Delete an item from a config store +*ConfigStoreItemAPI* | [**GetConfigStoreItem**](docs/ConfigStoreItemAPI.md#getconfigstoreitem) | Get an item from a config store +*ConfigStoreItemAPI* | [**ListConfigStoreItems**](docs/ConfigStoreItemAPI.md#listconfigstoreitems) | List items in a config store +*ConfigStoreItemAPI* | [**UpdateConfigStoreItem**](docs/ConfigStoreItemAPI.md#updateconfigstoreitem) | Update an entry in a config store +*ConfigStoreItemAPI* | [**UpsertConfigStoreItem**](docs/ConfigStoreItemAPI.md#upsertconfigstoreitem) | Insert or update an entry in a config store +*ContactAPI* | [**CreateContacts**](docs/ContactAPI.md#createcontacts) | Add a new customer contact +*ContactAPI* | [**DeleteContact**](docs/ContactAPI.md#deletecontact) | Delete a contact +*ContactAPI* | [**ListContacts**](docs/ContactAPI.md#listcontacts) | List contacts +*ContentAPI* | [**ContentCheck**](docs/ContentAPI.md#contentcheck) | Check status of content in each POP's cache +*CustomerAPI* | [**DeleteCustomer**](docs/CustomerAPI.md#deletecustomer) | Delete a customer +*CustomerAPI* | [**GetCustomer**](docs/CustomerAPI.md#getcustomer) | Get a customer +*CustomerAPI* | [**GetLoggedInCustomer**](docs/CustomerAPI.md#getloggedincustomer) | Get the logged in customer +*CustomerAPI* | [**ListUsers**](docs/CustomerAPI.md#listusers) | List users +*CustomerAPI* | [**UpdateCustomer**](docs/CustomerAPI.md#updatecustomer) | Update a customer +*DictionaryAPI* | [**CreateDictionary**](docs/DictionaryAPI.md#createdictionary) | Create an edge dictionary +*DictionaryAPI* | [**DeleteDictionary**](docs/DictionaryAPI.md#deletedictionary) | Delete an edge dictionary +*DictionaryAPI* | [**GetDictionary**](docs/DictionaryAPI.md#getdictionary) | Get an edge dictionary +*DictionaryAPI* | [**ListDictionaries**](docs/DictionaryAPI.md#listdictionaries) | List edge dictionaries +*DictionaryAPI* | [**UpdateDictionary**](docs/DictionaryAPI.md#updatedictionary) | Update an edge dictionary +*DictionaryInfoAPI* | [**GetDictionaryInfo**](docs/DictionaryInfoAPI.md#getdictionaryinfo) | Get edge dictionary metadata +*DictionaryItemAPI* | [**BulkUpdateDictionaryItem**](docs/DictionaryItemAPI.md#bulkupdatedictionaryitem) | Update multiple entries in an edge dictionary +*DictionaryItemAPI* | [**CreateDictionaryItem**](docs/DictionaryItemAPI.md#createdictionaryitem) | Create an entry in an edge dictionary +*DictionaryItemAPI* | [**DeleteDictionaryItem**](docs/DictionaryItemAPI.md#deletedictionaryitem) | Delete an item from an edge dictionary +*DictionaryItemAPI* | [**GetDictionaryItem**](docs/DictionaryItemAPI.md#getdictionaryitem) | Get an item from an edge dictionary +*DictionaryItemAPI* | [**ListDictionaryItems**](docs/DictionaryItemAPI.md#listdictionaryitems) | List items in an edge dictionary +*DictionaryItemAPI* | [**UpdateDictionaryItem**](docs/DictionaryItemAPI.md#updatedictionaryitem) | Update an entry in an edge dictionary +*DictionaryItemAPI* | [**UpsertDictionaryItem**](docs/DictionaryItemAPI.md#upsertdictionaryitem) | Insert or update an entry in an edge dictionary +*DiffAPI* | [**DiffServiceVersions**](docs/DiffAPI.md#diffserviceversions) | Diff two service versions +*DirectorAPI* | [**CreateDirector**](docs/DirectorAPI.md#createdirector) | Create a director +*DirectorAPI* | [**DeleteDirector**](docs/DirectorAPI.md#deletedirector) | Delete a director +*DirectorAPI* | [**GetDirector**](docs/DirectorAPI.md#getdirector) | Get a director +*DirectorAPI* | [**ListDirectors**](docs/DirectorAPI.md#listdirectors) | List directors +*DirectorAPI* | [**UpdateDirector**](docs/DirectorAPI.md#updatedirector) | Update a director +*DirectorBackendAPI* | [**CreateDirectorBackend**](docs/DirectorBackendAPI.md#createdirectorbackend) | Create a director-backend relationship +*DirectorBackendAPI* | [**DeleteDirectorBackend**](docs/DirectorBackendAPI.md#deletedirectorbackend) | Delete a director-backend relationship +*DirectorBackendAPI* | [**GetDirectorBackend**](docs/DirectorBackendAPI.md#getdirectorbackend) | Get a director-backend relationship +*DomainAPI* | [**CheckDomain**](docs/DomainAPI.md#checkdomain) | Validate DNS configuration for a single domain on a service +*DomainAPI* | [**CheckDomains**](docs/DomainAPI.md#checkdomains) | Validate DNS configuration for all domains on a service +*DomainAPI* | [**CreateDomain**](docs/DomainAPI.md#createdomain) | Add a domain name to a service +*DomainAPI* | [**DeleteDomain**](docs/DomainAPI.md#deletedomain) | Remove a domain from a service +*DomainAPI* | [**GetDomain**](docs/DomainAPI.md#getdomain) | Describe a domain +*DomainAPI* | [**ListDomains**](docs/DomainAPI.md#listdomains) | List domains +*DomainAPI* | [**UpdateDomain**](docs/DomainAPI.md#updatedomain) | Update a domain +*DomainInspectorHistoricalAPI* | [**GetDomainInspectorHistorical**](docs/DomainInspectorHistoricalAPI.md#getdomaininspectorhistorical) | Get historical domain data for a service +*DomainInspectorRealtimeAPI* | [**GetDomainInspectorLast120Seconds**](docs/DomainInspectorRealtimeAPI.md#getdomaininspectorlast120seconds) | Get real-time domain data for the last 120 seconds +*DomainInspectorRealtimeAPI* | [**GetDomainInspectorLastMaxEntries**](docs/DomainInspectorRealtimeAPI.md#getdomaininspectorlastmaxentries) | Get a limited number of real-time domain data entries +*DomainInspectorRealtimeAPI* | [**GetDomainInspectorLastSecond**](docs/DomainInspectorRealtimeAPI.md#getdomaininspectorlastsecond) | Get real-time domain data from a specified time +*DomainOwnershipsAPI* | [**ListDomainOwnerships**](docs/DomainOwnershipsAPI.md#listdomainownerships) | List domain-ownerships +*EnabledProductsAPI* | [**DisableProduct**](docs/EnabledProductsAPI.md#disableproduct) | Disable a product +*EnabledProductsAPI* | [**EnableProduct**](docs/EnabledProductsAPI.md#enableproduct) | Enable a product +*EnabledProductsAPI* | [**GetEnabledProduct**](docs/EnabledProductsAPI.md#getenabledproduct) | Get enabled product +*EventsAPI* | [**GetEvent**](docs/EventsAPI.md#getevent) | Get an event +*EventsAPI* | [**ListEvents**](docs/EventsAPI.md#listevents) | List events +*GzipAPI* | [**CreateGzipConfig**](docs/GzipAPI.md#creategzipconfig) | Create a gzip configuration +*GzipAPI* | [**DeleteGzipConfig**](docs/GzipAPI.md#deletegzipconfig) | Delete a gzip configuration +*GzipAPI* | [**GetGzipConfigs**](docs/GzipAPI.md#getgzipconfigs) | Get a gzip configuration +*GzipAPI* | [**ListGzipConfigs**](docs/GzipAPI.md#listgzipconfigs) | List gzip configurations +*GzipAPI* | [**UpdateGzipConfig**](docs/GzipAPI.md#updategzipconfig) | Update a gzip configuration +*HeaderAPI* | [**CreateHeaderObject**](docs/HeaderAPI.md#createheaderobject) | Create a Header object +*HeaderAPI* | [**DeleteHeaderObject**](docs/HeaderAPI.md#deleteheaderobject) | Delete a Header object +*HeaderAPI* | [**GetHeaderObject**](docs/HeaderAPI.md#getheaderobject) | Get a Header object +*HeaderAPI* | [**ListHeaderObjects**](docs/HeaderAPI.md#listheaderobjects) | List Header objects +*HeaderAPI* | [**UpdateHeaderObject**](docs/HeaderAPI.md#updateheaderobject) | Update a Header object +*HealthcheckAPI* | [**CreateHealthcheck**](docs/HealthcheckAPI.md#createhealthcheck) | Create a health check +*HealthcheckAPI* | [**DeleteHealthcheck**](docs/HealthcheckAPI.md#deletehealthcheck) | Delete a health check +*HealthcheckAPI* | [**GetHealthcheck**](docs/HealthcheckAPI.md#gethealthcheck) | Get a health check +*HealthcheckAPI* | [**ListHealthchecks**](docs/HealthcheckAPI.md#listhealthchecks) | List health checks +*HealthcheckAPI* | [**UpdateHealthcheck**](docs/HealthcheckAPI.md#updatehealthcheck) | Update a health check +*HistoricalAPI* | [**GetHistStats**](docs/HistoricalAPI.md#gethiststats) | Get historical stats +*HistoricalAPI* | [**GetHistStatsAggregated**](docs/HistoricalAPI.md#gethiststatsaggregated) | Get aggregated historical stats +*HistoricalAPI* | [**GetHistStatsField**](docs/HistoricalAPI.md#gethiststatsfield) | Get historical stats for a single field +*HistoricalAPI* | [**GetHistStatsService**](docs/HistoricalAPI.md#gethiststatsservice) | Get historical stats for a single service +*HistoricalAPI* | [**GetHistStatsServiceField**](docs/HistoricalAPI.md#gethiststatsservicefield) | Get historical stats for a single service/field combination +*HistoricalAPI* | [**GetRegions**](docs/HistoricalAPI.md#getregions) | Get region codes +*HistoricalAPI* | [**GetUsage**](docs/HistoricalAPI.md#getusage) | Get usage statistics +*HistoricalAPI* | [**GetUsageMonth**](docs/HistoricalAPI.md#getusagemonth) | Get month-to-date usage statistics +*HistoricalAPI* | [**GetUsageService**](docs/HistoricalAPI.md#getusageservice) | Get usage statistics per service +*HTTP3API* | [**CreateHTTP3**](docs/Http3API.md#createhttp3) | Enable support for HTTP/3 +*HTTP3API* | [**DeleteHTTP3**](docs/Http3API.md#deletehttp3) | Disable support for HTTP/3 +*HTTP3API* | [**GetHTTP3**](docs/Http3API.md#gethttp3) | Get HTTP/3 status +*IamPermissionsAPI* | [**ListPermissions**](docs/IamPermissionsAPI.md#listpermissions) | List permissions +*IamRolesAPI* | [**AddRolePermissions**](docs/IamRolesAPI.md#addrolepermissions) | Add permissions to a role +*IamRolesAPI* | [**CreateARole**](docs/IamRolesAPI.md#createarole) | Create a role +*IamRolesAPI* | [**DeleteARole**](docs/IamRolesAPI.md#deletearole) | Delete a role +*IamRolesAPI* | [**GetARole**](docs/IamRolesAPI.md#getarole) | Get a role +*IamRolesAPI* | [**ListRolePermissions**](docs/IamRolesAPI.md#listrolepermissions) | List permissions in a role +*IamRolesAPI* | [**ListRoles**](docs/IamRolesAPI.md#listroles) | List roles +*IamRolesAPI* | [**RemoveRolePermissions**](docs/IamRolesAPI.md#removerolepermissions) | Remove permissions from a role +*IamRolesAPI* | [**UpdateARole**](docs/IamRolesAPI.md#updatearole) | Update a role +*IamServiceGroupsAPI* | [**AddServiceGroupServices**](docs/IamServiceGroupsAPI.md#addservicegroupservices) | Add services in a service group +*IamServiceGroupsAPI* | [**CreateAServiceGroup**](docs/IamServiceGroupsAPI.md#createaservicegroup) | Create a service group +*IamServiceGroupsAPI* | [**DeleteAServiceGroup**](docs/IamServiceGroupsAPI.md#deleteaservicegroup) | Delete a service group +*IamServiceGroupsAPI* | [**GetAServiceGroup**](docs/IamServiceGroupsAPI.md#getaservicegroup) | Get a service group +*IamServiceGroupsAPI* | [**ListServiceGroupServices**](docs/IamServiceGroupsAPI.md#listservicegroupservices) | List services to a service group +*IamServiceGroupsAPI* | [**ListServiceGroups**](docs/IamServiceGroupsAPI.md#listservicegroups) | List service groups +*IamServiceGroupsAPI* | [**RemoveServiceGroupServices**](docs/IamServiceGroupsAPI.md#removeservicegroupservices) | Remove services from a service group +*IamServiceGroupsAPI* | [**UpdateAServiceGroup**](docs/IamServiceGroupsAPI.md#updateaservicegroup) | Update a service group +*IamUserGroupsAPI* | [**AddUserGroupMembers**](docs/IamUserGroupsAPI.md#addusergroupmembers) | Add members to a user group +*IamUserGroupsAPI* | [**AddUserGroupRoles**](docs/IamUserGroupsAPI.md#addusergrouproles) | Add roles to a user group +*IamUserGroupsAPI* | [**AddUserGroupServiceGroups**](docs/IamUserGroupsAPI.md#addusergroupservicegroups) | Add service groups to a user group +*IamUserGroupsAPI* | [**CreateAUserGroup**](docs/IamUserGroupsAPI.md#createausergroup) | Create a user group +*IamUserGroupsAPI* | [**DeleteAUserGroup**](docs/IamUserGroupsAPI.md#deleteausergroup) | Delete a user group +*IamUserGroupsAPI* | [**GetAUserGroup**](docs/IamUserGroupsAPI.md#getausergroup) | Get a user group +*IamUserGroupsAPI* | [**ListUserGroupMembers**](docs/IamUserGroupsAPI.md#listusergroupmembers) | List members of a user group +*IamUserGroupsAPI* | [**ListUserGroupRoles**](docs/IamUserGroupsAPI.md#listusergrouproles) | List roles in a user group +*IamUserGroupsAPI* | [**ListUserGroupServiceGroups**](docs/IamUserGroupsAPI.md#listusergroupservicegroups) | List service groups in a user group +*IamUserGroupsAPI* | [**ListUserGroups**](docs/IamUserGroupsAPI.md#listusergroups) | List user groups +*IamUserGroupsAPI* | [**RemoveUserGroupMembers**](docs/IamUserGroupsAPI.md#removeusergroupmembers) | Remove members of a user group +*IamUserGroupsAPI* | [**RemoveUserGroupRoles**](docs/IamUserGroupsAPI.md#removeusergrouproles) | Remove roles from a user group +*IamUserGroupsAPI* | [**RemoveUserGroupServiceGroups**](docs/IamUserGroupsAPI.md#removeusergroupservicegroups) | Remove service groups from a user group +*IamUserGroupsAPI* | [**UpdateAUserGroup**](docs/IamUserGroupsAPI.md#updateausergroup) | Update a user group +*ImageOptimizerDefaultSettingsAPI* | [**GetDefaultSettings**](docs/ImageOptimizerDefaultSettingsAPI.md#getdefaultsettings) | Get current Image Optimizer Default Settings +*ImageOptimizerDefaultSettingsAPI* | [**UpdateDefaultSettings**](docs/ImageOptimizerDefaultSettingsAPI.md#updatedefaultsettings) | Update Image Optimizer Default Settings +*InvitationsAPI* | [**CreateInvitation**](docs/InvitationsAPI.md#createinvitation) | Create an invitation +*InvitationsAPI* | [**DeleteInvitation**](docs/InvitationsAPI.md#deleteinvitation) | Delete an invitation +*InvitationsAPI* | [**ListInvitations**](docs/InvitationsAPI.md#listinvitations) | List invitations +*KvStoreAPI* | [**CreateStore**](docs/KvStoreAPI.md#createstore) | Create a KV store. +*KvStoreAPI* | [**DeleteStore**](docs/KvStoreAPI.md#deletestore) | Delete a KV store. +*KvStoreAPI* | [**GetStore**](docs/KvStoreAPI.md#getstore) | Describe a KV store. +*KvStoreAPI* | [**GetStores**](docs/KvStoreAPI.md#getstores) | List KV stores. +*KvStoreItemAPI* | [**DeleteKeyFromStore**](docs/KvStoreItemAPI.md#deletekeyfromstore) | Delete kv store item. +*KvStoreItemAPI* | [**GetKeys**](docs/KvStoreItemAPI.md#getkeys) | List kv store keys. +*KvStoreItemAPI* | [**GetValueForKey**](docs/KvStoreItemAPI.md#getvalueforkey) | Get the value of an kv store item +*KvStoreItemAPI* | [**SetValueForKey**](docs/KvStoreItemAPI.md#setvalueforkey) | Insert an item into an kv store +*LegacyWafConfigurationSetsAPI* | [**ListWafConfigSets**](docs/LegacyWafConfigurationSetsAPI.md#listwafconfigsets) | List configuration sets +*LegacyWafConfigurationSetsAPI* | [**ListWafsConfigSet**](docs/LegacyWafConfigurationSetsAPI.md#listwafsconfigset) | List WAFs currently using a configuration set +*LegacyWafConfigurationSetsAPI* | [**UseWafConfigSet**](docs/LegacyWafConfigurationSetsAPI.md#usewafconfigset) | Apply a configuration set to a WAF +*LegacyWafFirewallAPI* | [**CreateLegacyWafFirewallService**](docs/LegacyWafFirewallAPI.md#createlegacywaffirewallservice) | Create a firewall +*LegacyWafFirewallAPI* | [**DisableLegacyWafFirewall**](docs/LegacyWafFirewallAPI.md#disablelegacywaffirewall) | Disable a firewall +*LegacyWafFirewallAPI* | [**EnableLegacyWafFirewall**](docs/LegacyWafFirewallAPI.md#enablelegacywaffirewall) | Enable a firewall +*LegacyWafFirewallAPI* | [**GetLegacyWafFirewall**](docs/LegacyWafFirewallAPI.md#getlegacywaffirewall) | Get a firewall object +*LegacyWafFirewallAPI* | [**GetLegacyWafFirewallService**](docs/LegacyWafFirewallAPI.md#getlegacywaffirewallservice) | Get a firewall +*LegacyWafFirewallAPI* | [**ListLegacyWafFirewalls**](docs/LegacyWafFirewallAPI.md#listlegacywaffirewalls) | List active firewalls +*LegacyWafFirewallAPI* | [**ListLegacyWafFirewallsService**](docs/LegacyWafFirewallAPI.md#listlegacywaffirewallsservice) | List firewalls +*LegacyWafFirewallAPI* | [**UpdateLegacyWafFirewallService**](docs/LegacyWafFirewallAPI.md#updatelegacywaffirewallservice) | Update a firewall +*LegacyWafOwaspAPI* | [**CreateOwaspSettings**](docs/LegacyWafOwaspAPI.md#createowaspsettings) | Create an OWASP settings object +*LegacyWafOwaspAPI* | [**GetOwaspSettings**](docs/LegacyWafOwaspAPI.md#getowaspsettings) | Get the OWASP settings object +*LegacyWafOwaspAPI* | [**UpdateOwaspSettings**](docs/LegacyWafOwaspAPI.md#updateowaspsettings) | Update the OWASP settings object +*LegacyWafRuleAPI* | [**GetLegacyWafFirewallRuleVcl**](docs/LegacyWafRuleAPI.md#getlegacywaffirewallrulevcl) | Get VCL for a rule associated with a firewall +*LegacyWafRuleAPI* | [**GetLegacyWafRule**](docs/LegacyWafRuleAPI.md#getlegacywafrule) | Get a rule +*LegacyWafRuleAPI* | [**GetLegacyWafRuleVcl**](docs/LegacyWafRuleAPI.md#getlegacywafrulevcl) | Get VCL for a rule +*LegacyWafRuleAPI* | [**ListLegacyWafRules**](docs/LegacyWafRuleAPI.md#listlegacywafrules) | List rules in the latest configuration set +*LegacyWafRuleStatusAPI* | [**GetWafFirewallRuleStatus**](docs/LegacyWafRuleStatusAPI.md#getwaffirewallrulestatus) | Get the status of a rule on a firewall +*LegacyWafRuleStatusAPI* | [**ListWafFirewallRuleStatuses**](docs/LegacyWafRuleStatusAPI.md#listwaffirewallrulestatuses) | List rule statuses +*LegacyWafRuleStatusAPI* | [**UpdateWafFirewallRuleStatus**](docs/LegacyWafRuleStatusAPI.md#updatewaffirewallrulestatus) | Update the status of a rule +*LegacyWafRuleStatusAPI* | [**UpdateWafFirewallRuleStatusesTag**](docs/LegacyWafRuleStatusAPI.md#updatewaffirewallrulestatusestag) | Create or update status of a tagged group of rules +*LegacyWafRulesetAPI* | [**GetWafRuleset**](docs/LegacyWafRulesetAPI.md#getwafruleset) | Get a WAF ruleset +*LegacyWafRulesetAPI* | [**GetWafRulesetVcl**](docs/LegacyWafRulesetAPI.md#getwafrulesetvcl) | Generate WAF ruleset VCL +*LegacyWafRulesetAPI* | [**UpdateWafRuleset**](docs/LegacyWafRulesetAPI.md#updatewafruleset) | Update a WAF ruleset +*LegacyWafTagAPI* | [**ListLegacyWafTags**](docs/LegacyWafTagAPI.md#listlegacywaftags) | List WAF tags +*LegacyWafUpdateStatusAPI* | [**GetWafUpdateStatus**](docs/LegacyWafUpdateStatusAPI.md#getwafupdatestatus) | Get the status of a WAF update +*LegacyWafUpdateStatusAPI* | [**ListWafUpdateStatuses**](docs/LegacyWafUpdateStatusAPI.md#listwafupdatestatuses) | List update statuses +*LoggingAzureblobAPI* | [**CreateLogAzure**](docs/LoggingAzureblobAPI.md#createlogazure) | Create an Azure Blob Storage log endpoint +*LoggingAzureblobAPI* | [**DeleteLogAzure**](docs/LoggingAzureblobAPI.md#deletelogazure) | Delete the Azure Blob Storage log endpoint +*LoggingAzureblobAPI* | [**GetLogAzure**](docs/LoggingAzureblobAPI.md#getlogazure) | Get an Azure Blob Storage log endpoint +*LoggingAzureblobAPI* | [**ListLogAzure**](docs/LoggingAzureblobAPI.md#listlogazure) | List Azure Blob Storage log endpoints +*LoggingAzureblobAPI* | [**UpdateLogAzure**](docs/LoggingAzureblobAPI.md#updatelogazure) | Update an Azure Blob Storage log endpoint +*LoggingBigqueryAPI* | [**CreateLogBigquery**](docs/LoggingBigqueryAPI.md#createlogbigquery) | Create a BigQuery log endpoint +*LoggingBigqueryAPI* | [**DeleteLogBigquery**](docs/LoggingBigqueryAPI.md#deletelogbigquery) | Delete a BigQuery log endpoint +*LoggingBigqueryAPI* | [**GetLogBigquery**](docs/LoggingBigqueryAPI.md#getlogbigquery) | Get a BigQuery log endpoint +*LoggingBigqueryAPI* | [**ListLogBigquery**](docs/LoggingBigqueryAPI.md#listlogbigquery) | List BigQuery log endpoints +*LoggingBigqueryAPI* | [**UpdateLogBigquery**](docs/LoggingBigqueryAPI.md#updatelogbigquery) | Update a BigQuery log endpoint +*LoggingCloudfilesAPI* | [**CreateLogCloudfiles**](docs/LoggingCloudfilesAPI.md#createlogcloudfiles) | Create a Cloud Files log endpoint +*LoggingCloudfilesAPI* | [**DeleteLogCloudfiles**](docs/LoggingCloudfilesAPI.md#deletelogcloudfiles) | Delete the Cloud Files log endpoint +*LoggingCloudfilesAPI* | [**GetLogCloudfiles**](docs/LoggingCloudfilesAPI.md#getlogcloudfiles) | Get a Cloud Files log endpoint +*LoggingCloudfilesAPI* | [**ListLogCloudfiles**](docs/LoggingCloudfilesAPI.md#listlogcloudfiles) | List Cloud Files log endpoints +*LoggingCloudfilesAPI* | [**UpdateLogCloudfiles**](docs/LoggingCloudfilesAPI.md#updatelogcloudfiles) | Update the Cloud Files log endpoint +*LoggingDatadogAPI* | [**CreateLogDatadog**](docs/LoggingDatadogAPI.md#createlogdatadog) | Create a Datadog log endpoint +*LoggingDatadogAPI* | [**DeleteLogDatadog**](docs/LoggingDatadogAPI.md#deletelogdatadog) | Delete a Datadog log endpoint +*LoggingDatadogAPI* | [**GetLogDatadog**](docs/LoggingDatadogAPI.md#getlogdatadog) | Get a Datadog log endpoint +*LoggingDatadogAPI* | [**ListLogDatadog**](docs/LoggingDatadogAPI.md#listlogdatadog) | List Datadog log endpoints +*LoggingDatadogAPI* | [**UpdateLogDatadog**](docs/LoggingDatadogAPI.md#updatelogdatadog) | Update a Datadog log endpoint +*LoggingDigitaloceanAPI* | [**CreateLogDigocean**](docs/LoggingDigitaloceanAPI.md#createlogdigocean) | Create a DigitalOcean Spaces log endpoint +*LoggingDigitaloceanAPI* | [**DeleteLogDigocean**](docs/LoggingDigitaloceanAPI.md#deletelogdigocean) | Delete a DigitalOcean Spaces log endpoint +*LoggingDigitaloceanAPI* | [**GetLogDigocean**](docs/LoggingDigitaloceanAPI.md#getlogdigocean) | Get a DigitalOcean Spaces log endpoint +*LoggingDigitaloceanAPI* | [**ListLogDigocean**](docs/LoggingDigitaloceanAPI.md#listlogdigocean) | List DigitalOcean Spaces log endpoints +*LoggingDigitaloceanAPI* | [**UpdateLogDigocean**](docs/LoggingDigitaloceanAPI.md#updatelogdigocean) | Update a DigitalOcean Spaces log endpoint +*LoggingElasticsearchAPI* | [**CreateLogElasticsearch**](docs/LoggingElasticsearchAPI.md#createlogelasticsearch) | Create an Elasticsearch log endpoint +*LoggingElasticsearchAPI* | [**DeleteLogElasticsearch**](docs/LoggingElasticsearchAPI.md#deletelogelasticsearch) | Delete an Elasticsearch log endpoint +*LoggingElasticsearchAPI* | [**GetLogElasticsearch**](docs/LoggingElasticsearchAPI.md#getlogelasticsearch) | Get an Elasticsearch log endpoint +*LoggingElasticsearchAPI* | [**ListLogElasticsearch**](docs/LoggingElasticsearchAPI.md#listlogelasticsearch) | List Elasticsearch log endpoints +*LoggingElasticsearchAPI* | [**UpdateLogElasticsearch**](docs/LoggingElasticsearchAPI.md#updatelogelasticsearch) | Update an Elasticsearch log endpoint +*LoggingFtpAPI* | [**CreateLogFtp**](docs/LoggingFtpAPI.md#createlogftp) | Create an FTP log endpoint +*LoggingFtpAPI* | [**DeleteLogFtp**](docs/LoggingFtpAPI.md#deletelogftp) | Delete an FTP log endpoint +*LoggingFtpAPI* | [**GetLogFtp**](docs/LoggingFtpAPI.md#getlogftp) | Get an FTP log endpoint +*LoggingFtpAPI* | [**ListLogFtp**](docs/LoggingFtpAPI.md#listlogftp) | List FTP log endpoints +*LoggingFtpAPI* | [**UpdateLogFtp**](docs/LoggingFtpAPI.md#updatelogftp) | Update an FTP log endpoint +*LoggingGcsAPI* | [**CreateLogGcs**](docs/LoggingGcsAPI.md#createloggcs) | Create a GCS log endpoint +*LoggingGcsAPI* | [**DeleteLogGcs**](docs/LoggingGcsAPI.md#deleteloggcs) | Delete a GCS log endpoint +*LoggingGcsAPI* | [**GetLogGcs**](docs/LoggingGcsAPI.md#getloggcs) | Get a GCS log endpoint +*LoggingGcsAPI* | [**ListLogGcs**](docs/LoggingGcsAPI.md#listloggcs) | List GCS log endpoints +*LoggingGcsAPI* | [**UpdateLogGcs**](docs/LoggingGcsAPI.md#updateloggcs) | Update a GCS log endpoint +*LoggingHerokuAPI* | [**CreateLogHeroku**](docs/LoggingHerokuAPI.md#createlogheroku) | Create a Heroku log endpoint +*LoggingHerokuAPI* | [**DeleteLogHeroku**](docs/LoggingHerokuAPI.md#deletelogheroku) | Delete the Heroku log endpoint +*LoggingHerokuAPI* | [**GetLogHeroku**](docs/LoggingHerokuAPI.md#getlogheroku) | Get a Heroku log endpoint +*LoggingHerokuAPI* | [**ListLogHeroku**](docs/LoggingHerokuAPI.md#listlogheroku) | List Heroku log endpoints +*LoggingHerokuAPI* | [**UpdateLogHeroku**](docs/LoggingHerokuAPI.md#updatelogheroku) | Update the Heroku log endpoint +*LoggingHoneycombAPI* | [**CreateLogHoneycomb**](docs/LoggingHoneycombAPI.md#createloghoneycomb) | Create a Honeycomb log endpoint +*LoggingHoneycombAPI* | [**DeleteLogHoneycomb**](docs/LoggingHoneycombAPI.md#deleteloghoneycomb) | Delete the Honeycomb log endpoint +*LoggingHoneycombAPI* | [**GetLogHoneycomb**](docs/LoggingHoneycombAPI.md#getloghoneycomb) | Get a Honeycomb log endpoint +*LoggingHoneycombAPI* | [**ListLogHoneycomb**](docs/LoggingHoneycombAPI.md#listloghoneycomb) | List Honeycomb log endpoints +*LoggingHoneycombAPI* | [**UpdateLogHoneycomb**](docs/LoggingHoneycombAPI.md#updateloghoneycomb) | Update a Honeycomb log endpoint +*LoggingHTTPSAPI* | [**CreateLogHTTPS**](docs/LoggingHTTPSAPI.md#createloghttps) | Create an HTTPS log endpoint +*LoggingHTTPSAPI* | [**DeleteLogHTTPS**](docs/LoggingHTTPSAPI.md#deleteloghttps) | Delete an HTTPS log endpoint +*LoggingHTTPSAPI* | [**GetLogHTTPS**](docs/LoggingHTTPSAPI.md#getloghttps) | Get an HTTPS log endpoint +*LoggingHTTPSAPI* | [**ListLogHTTPS**](docs/LoggingHTTPSAPI.md#listloghttps) | List HTTPS log endpoints +*LoggingHTTPSAPI* | [**UpdateLogHTTPS**](docs/LoggingHTTPSAPI.md#updateloghttps) | Update an HTTPS log endpoint +*LoggingKafkaAPI* | [**CreateLogKafka**](docs/LoggingKafkaAPI.md#createlogkafka) | Create a Kafka log endpoint +*LoggingKafkaAPI* | [**DeleteLogKafka**](docs/LoggingKafkaAPI.md#deletelogkafka) | Delete the Kafka log endpoint +*LoggingKafkaAPI* | [**GetLogKafka**](docs/LoggingKafkaAPI.md#getlogkafka) | Get a Kafka log endpoint +*LoggingKafkaAPI* | [**ListLogKafka**](docs/LoggingKafkaAPI.md#listlogkafka) | List Kafka log endpoints +*LoggingKafkaAPI* | [**UpdateLogKafka**](docs/LoggingKafkaAPI.md#updatelogkafka) | Update the Kafka log endpoint +*LoggingKinesisAPI* | [**CreateLogKinesis**](docs/LoggingKinesisAPI.md#createlogkinesis) | Create an Amazon Kinesis log endpoint +*LoggingKinesisAPI* | [**DeleteLogKinesis**](docs/LoggingKinesisAPI.md#deletelogkinesis) | Delete the Amazon Kinesis log endpoint +*LoggingKinesisAPI* | [**GetLogKinesis**](docs/LoggingKinesisAPI.md#getlogkinesis) | Get an Amazon Kinesis log endpoint +*LoggingKinesisAPI* | [**ListLogKinesis**](docs/LoggingKinesisAPI.md#listlogkinesis) | List Amazon Kinesis log endpoints +*LoggingKinesisAPI* | [**UpdateLogKinesis**](docs/LoggingKinesisAPI.md#updatelogkinesis) | Update the Amazon Kinesis log endpoint +*LoggingLogentriesAPI* | [**CreateLogLogentries**](docs/LoggingLogentriesAPI.md#createloglogentries) | Create a Logentries log endpoint +*LoggingLogentriesAPI* | [**DeleteLogLogentries**](docs/LoggingLogentriesAPI.md#deleteloglogentries) | Delete a Logentries log endpoint +*LoggingLogentriesAPI* | [**GetLogLogentries**](docs/LoggingLogentriesAPI.md#getloglogentries) | Get a Logentries log endpoint +*LoggingLogentriesAPI* | [**ListLogLogentries**](docs/LoggingLogentriesAPI.md#listloglogentries) | List Logentries log endpoints +*LoggingLogentriesAPI* | [**UpdateLogLogentries**](docs/LoggingLogentriesAPI.md#updateloglogentries) | Update a Logentries log endpoint +*LoggingLogglyAPI* | [**CreateLogLoggly**](docs/LoggingLogglyAPI.md#createlogloggly) | Create a Loggly log endpoint +*LoggingLogglyAPI* | [**DeleteLogLoggly**](docs/LoggingLogglyAPI.md#deletelogloggly) | Delete a Loggly log endpoint +*LoggingLogglyAPI* | [**GetLogLoggly**](docs/LoggingLogglyAPI.md#getlogloggly) | Get a Loggly log endpoint +*LoggingLogglyAPI* | [**ListLogLoggly**](docs/LoggingLogglyAPI.md#listlogloggly) | List Loggly log endpoints +*LoggingLogglyAPI* | [**UpdateLogLoggly**](docs/LoggingLogglyAPI.md#updatelogloggly) | Update a Loggly log endpoint +*LoggingLogshuttleAPI* | [**CreateLogLogshuttle**](docs/LoggingLogshuttleAPI.md#createloglogshuttle) | Create a Log Shuttle log endpoint +*LoggingLogshuttleAPI* | [**DeleteLogLogshuttle**](docs/LoggingLogshuttleAPI.md#deleteloglogshuttle) | Delete a Log Shuttle log endpoint +*LoggingLogshuttleAPI* | [**GetLogLogshuttle**](docs/LoggingLogshuttleAPI.md#getloglogshuttle) | Get a Log Shuttle log endpoint +*LoggingLogshuttleAPI* | [**ListLogLogshuttle**](docs/LoggingLogshuttleAPI.md#listloglogshuttle) | List Log Shuttle log endpoints +*LoggingLogshuttleAPI* | [**UpdateLogLogshuttle**](docs/LoggingLogshuttleAPI.md#updateloglogshuttle) | Update a Log Shuttle log endpoint +*LoggingNewrelicAPI* | [**CreateLogNewrelic**](docs/LoggingNewrelicAPI.md#createlognewrelic) | Create a New Relic log endpoint +*LoggingNewrelicAPI* | [**DeleteLogNewrelic**](docs/LoggingNewrelicAPI.md#deletelognewrelic) | Delete a New Relic log endpoint +*LoggingNewrelicAPI* | [**GetLogNewrelic**](docs/LoggingNewrelicAPI.md#getlognewrelic) | Get a New Relic log endpoint +*LoggingNewrelicAPI* | [**ListLogNewrelic**](docs/LoggingNewrelicAPI.md#listlognewrelic) | List New Relic log endpoints +*LoggingNewrelicAPI* | [**UpdateLogNewrelic**](docs/LoggingNewrelicAPI.md#updatelognewrelic) | Update a New Relic log endpoint +*LoggingNewrelicotlpAPI* | [**CreateLogNewrelicotlp**](docs/LoggingNewrelicotlpAPI.md#createlognewrelicotlp) | Create a New Relic OTLP endpoint +*LoggingNewrelicotlpAPI* | [**DeleteLogNewrelicotlp**](docs/LoggingNewrelicotlpAPI.md#deletelognewrelicotlp) | Delete a New Relic OTLP endpoint +*LoggingNewrelicotlpAPI* | [**GetLogNewrelicotlp**](docs/LoggingNewrelicotlpAPI.md#getlognewrelicotlp) | Get a New Relic OTLP endpoint +*LoggingNewrelicotlpAPI* | [**ListLogNewrelicotlp**](docs/LoggingNewrelicotlpAPI.md#listlognewrelicotlp) | List New Relic OTLP endpoints +*LoggingNewrelicotlpAPI* | [**UpdateLogNewrelicotlp**](docs/LoggingNewrelicotlpAPI.md#updatelognewrelicotlp) | Update a New Relic log endpoint +*LoggingOpenstackAPI* | [**CreateLogOpenstack**](docs/LoggingOpenstackAPI.md#createlogopenstack) | Create an OpenStack log endpoint +*LoggingOpenstackAPI* | [**DeleteLogOpenstack**](docs/LoggingOpenstackAPI.md#deletelogopenstack) | Delete an OpenStack log endpoint +*LoggingOpenstackAPI* | [**GetLogOpenstack**](docs/LoggingOpenstackAPI.md#getlogopenstack) | Get an OpenStack log endpoint +*LoggingOpenstackAPI* | [**ListLogOpenstack**](docs/LoggingOpenstackAPI.md#listlogopenstack) | List OpenStack log endpoints +*LoggingOpenstackAPI* | [**UpdateLogOpenstack**](docs/LoggingOpenstackAPI.md#updatelogopenstack) | Update an OpenStack log endpoint +*LoggingPapertrailAPI* | [**CreateLogPapertrail**](docs/LoggingPapertrailAPI.md#createlogpapertrail) | Create a Papertrail log endpoint +*LoggingPapertrailAPI* | [**DeleteLogPapertrail**](docs/LoggingPapertrailAPI.md#deletelogpapertrail) | Delete a Papertrail log endpoint +*LoggingPapertrailAPI* | [**GetLogPapertrail**](docs/LoggingPapertrailAPI.md#getlogpapertrail) | Get a Papertrail log endpoint +*LoggingPapertrailAPI* | [**ListLogPapertrail**](docs/LoggingPapertrailAPI.md#listlogpapertrail) | List Papertrail log endpoints +*LoggingPapertrailAPI* | [**UpdateLogPapertrail**](docs/LoggingPapertrailAPI.md#updatelogpapertrail) | Update a Papertrail log endpoint +*LoggingPubsubAPI* | [**CreateLogGcpPubsub**](docs/LoggingPubsubAPI.md#createloggcppubsub) | Create a GCP Cloud Pub/Sub log endpoint +*LoggingPubsubAPI* | [**DeleteLogGcpPubsub**](docs/LoggingPubsubAPI.md#deleteloggcppubsub) | Delete a GCP Cloud Pub/Sub log endpoint +*LoggingPubsubAPI* | [**GetLogGcpPubsub**](docs/LoggingPubsubAPI.md#getloggcppubsub) | Get a GCP Cloud Pub/Sub log endpoint +*LoggingPubsubAPI* | [**ListLogGcpPubsub**](docs/LoggingPubsubAPI.md#listloggcppubsub) | List GCP Cloud Pub/Sub log endpoints +*LoggingPubsubAPI* | [**UpdateLogGcpPubsub**](docs/LoggingPubsubAPI.md#updateloggcppubsub) | Update a GCP Cloud Pub/Sub log endpoint +*LoggingS3API* | [**CreateLogAwsS3**](docs/LoggingS3API.md#createlogawss3) | Create an AWS S3 log endpoint +*LoggingS3API* | [**DeleteLogAwsS3**](docs/LoggingS3API.md#deletelogawss3) | Delete an AWS S3 log endpoint +*LoggingS3API* | [**GetLogAwsS3**](docs/LoggingS3API.md#getlogawss3) | Get an AWS S3 log endpoint +*LoggingS3API* | [**ListLogAwsS3**](docs/LoggingS3API.md#listlogawss3) | List AWS S3 log endpoints +*LoggingS3API* | [**UpdateLogAwsS3**](docs/LoggingS3API.md#updatelogawss3) | Update an AWS S3 log endpoint +*LoggingScalyrAPI* | [**CreateLogScalyr**](docs/LoggingScalyrAPI.md#createlogscalyr) | Create a Scalyr log endpoint +*LoggingScalyrAPI* | [**DeleteLogScalyr**](docs/LoggingScalyrAPI.md#deletelogscalyr) | Delete the Scalyr log endpoint +*LoggingScalyrAPI* | [**GetLogScalyr**](docs/LoggingScalyrAPI.md#getlogscalyr) | Get a Scalyr log endpoint +*LoggingScalyrAPI* | [**ListLogScalyr**](docs/LoggingScalyrAPI.md#listlogscalyr) | List Scalyr log endpoints +*LoggingScalyrAPI* | [**UpdateLogScalyr**](docs/LoggingScalyrAPI.md#updatelogscalyr) | Update the Scalyr log endpoint +*LoggingSftpAPI* | [**CreateLogSftp**](docs/LoggingSftpAPI.md#createlogsftp) | Create an SFTP log endpoint +*LoggingSftpAPI* | [**DeleteLogSftp**](docs/LoggingSftpAPI.md#deletelogsftp) | Delete an SFTP log endpoint +*LoggingSftpAPI* | [**GetLogSftp**](docs/LoggingSftpAPI.md#getlogsftp) | Get an SFTP log endpoint +*LoggingSftpAPI* | [**ListLogSftp**](docs/LoggingSftpAPI.md#listlogsftp) | List SFTP log endpoints +*LoggingSftpAPI* | [**UpdateLogSftp**](docs/LoggingSftpAPI.md#updatelogsftp) | Update an SFTP log endpoint +*LoggingSplunkAPI* | [**CreateLogSplunk**](docs/LoggingSplunkAPI.md#createlogsplunk) | Create a Splunk log endpoint +*LoggingSplunkAPI* | [**DeleteLogSplunk**](docs/LoggingSplunkAPI.md#deletelogsplunk) | Delete a Splunk log endpoint +*LoggingSplunkAPI* | [**GetLogSplunk**](docs/LoggingSplunkAPI.md#getlogsplunk) | Get a Splunk log endpoint +*LoggingSplunkAPI* | [**ListLogSplunk**](docs/LoggingSplunkAPI.md#listlogsplunk) | List Splunk log endpoints +*LoggingSplunkAPI* | [**UpdateLogSplunk**](docs/LoggingSplunkAPI.md#updatelogsplunk) | Update a Splunk log endpoint +*LoggingSumologicAPI* | [**CreateLogSumologic**](docs/LoggingSumologicAPI.md#createlogsumologic) | Create a Sumologic log endpoint +*LoggingSumologicAPI* | [**DeleteLogSumologic**](docs/LoggingSumologicAPI.md#deletelogsumologic) | Delete a Sumologic log endpoint +*LoggingSumologicAPI* | [**GetLogSumologic**](docs/LoggingSumologicAPI.md#getlogsumologic) | Get a Sumologic log endpoint +*LoggingSumologicAPI* | [**ListLogSumologic**](docs/LoggingSumologicAPI.md#listlogsumologic) | List Sumologic log endpoints +*LoggingSumologicAPI* | [**UpdateLogSumologic**](docs/LoggingSumologicAPI.md#updatelogsumologic) | Update a Sumologic log endpoint +*LoggingSyslogAPI* | [**CreateLogSyslog**](docs/LoggingSyslogAPI.md#createlogsyslog) | Create a syslog log endpoint +*LoggingSyslogAPI* | [**DeleteLogSyslog**](docs/LoggingSyslogAPI.md#deletelogsyslog) | Delete a syslog log endpoint +*LoggingSyslogAPI* | [**GetLogSyslog**](docs/LoggingSyslogAPI.md#getlogsyslog) | Get a syslog log endpoint +*LoggingSyslogAPI* | [**ListLogSyslog**](docs/LoggingSyslogAPI.md#listlogsyslog) | List Syslog log endpoints +*LoggingSyslogAPI* | [**UpdateLogSyslog**](docs/LoggingSyslogAPI.md#updatelogsyslog) | Update a syslog log endpoint +*MutualAuthenticationAPI* | [**CreateMutualTLSAuthentication**](docs/MutualAuthenticationAPI.md#createmutualtlsauthentication) | Create a Mutual Authentication +*MutualAuthenticationAPI* | [**DeleteMutualTLS**](docs/MutualAuthenticationAPI.md#deletemutualtls) | Delete a Mutual TLS +*MutualAuthenticationAPI* | [**GetMutualAuthentication**](docs/MutualAuthenticationAPI.md#getmutualauthentication) | Get a Mutual Authentication +*MutualAuthenticationAPI* | [**ListMutualAuthentications**](docs/MutualAuthenticationAPI.md#listmutualauthentications) | List Mutual Authentications +*MutualAuthenticationAPI* | [**PatchMutualAuthentication**](docs/MutualAuthenticationAPI.md#patchmutualauthentication) | Update a Mutual Authentication +*OriginInspectorHistoricalAPI* | [**GetOriginInspectorHistorical**](docs/OriginInspectorHistoricalAPI.md#getorigininspectorhistorical) | Get historical origin data for a service +*OriginInspectorRealtimeAPI* | [**GetOriginInspectorLast120Seconds**](docs/OriginInspectorRealtimeAPI.md#getorigininspectorlast120seconds) | Get real-time origin data for the last 120 seconds +*OriginInspectorRealtimeAPI* | [**GetOriginInspectorLastMaxEntries**](docs/OriginInspectorRealtimeAPI.md#getorigininspectorlastmaxentries) | Get a limited number of real-time origin data entries +*OriginInspectorRealtimeAPI* | [**GetOriginInspectorLastSecond**](docs/OriginInspectorRealtimeAPI.md#getorigininspectorlastsecond) | Get real-time origin data from specific time. +*PackageAPI* | [**GetPackage**](docs/PackageAPI.md#getpackage) | Get details of the service's Compute package. +*PackageAPI* | [**PutPackage**](docs/PackageAPI.md#putpackage) | Upload a Compute package. +*PoolAPI* | [**CreateServerPool**](docs/PoolAPI.md#createserverpool) | Create a server pool +*PoolAPI* | [**DeleteServerPool**](docs/PoolAPI.md#deleteserverpool) | Delete a server pool +*PoolAPI* | [**GetServerPool**](docs/PoolAPI.md#getserverpool) | Get a server pool +*PoolAPI* | [**ListServerPools**](docs/PoolAPI.md#listserverpools) | List server pools +*PoolAPI* | [**UpdateServerPool**](docs/PoolAPI.md#updateserverpool) | Update a server pool +*PopAPI* | [**ListPops**](docs/PopAPI.md#listpops) | List Fastly POPs +*PublicIPListAPI* | [**ListFastlyIps**](docs/PublicIPListAPI.md#listfastlyips) | List Fastly's public IPs +*PublishAPI* | [**Publish**](docs/PublishAPI.md#publish) | Send messages to Fanout subscribers +*PurgeAPI* | [**BulkPurgeTag**](docs/PurgeAPI.md#bulkpurgetag) | Purge multiple surrogate key tags +*PurgeAPI* | [**PurgeAll**](docs/PurgeAPI.md#purgeall) | Purge everything from a service +*PurgeAPI* | [**PurgeSingleURL**](docs/PurgeAPI.md#purgesingleurl) | Purge a URL +*PurgeAPI* | [**PurgeTag**](docs/PurgeAPI.md#purgetag) | Purge by surrogate key tag +*RateLimiterAPI* | [**CreateRateLimiter**](docs/RateLimiterAPI.md#createratelimiter) | Create a rate limiter +*RateLimiterAPI* | [**DeleteRateLimiter**](docs/RateLimiterAPI.md#deleteratelimiter) | Delete a rate limiter +*RateLimiterAPI* | [**GetRateLimiter**](docs/RateLimiterAPI.md#getratelimiter) | Get a rate limiter +*RateLimiterAPI* | [**ListRateLimiters**](docs/RateLimiterAPI.md#listratelimiters) | List rate limiters +*RateLimiterAPI* | [**UpdateRateLimiter**](docs/RateLimiterAPI.md#updateratelimiter) | Update a rate limiter +*RealtimeAPI* | [**GetStatsLast120Seconds**](docs/RealtimeAPI.md#getstatslast120seconds) | Get real-time data for the last 120 seconds +*RealtimeAPI* | [**GetStatsLast120SecondsLimitEntries**](docs/RealtimeAPI.md#getstatslast120secondslimitentries) | Get a limited number of real-time data entries +*RealtimeAPI* | [**GetStatsLastSecond**](docs/RealtimeAPI.md#getstatslastsecond) | Get real-time data from specified time +*RequestSettingsAPI* | [**CreateRequestSettings**](docs/RequestSettingsAPI.md#createrequestsettings) | Create a Request Settings object +*RequestSettingsAPI* | [**DeleteRequestSettings**](docs/RequestSettingsAPI.md#deleterequestsettings) | Delete a Request Settings object +*RequestSettingsAPI* | [**GetRequestSettings**](docs/RequestSettingsAPI.md#getrequestsettings) | Get a Request Settings object +*RequestSettingsAPI* | [**ListRequestSettings**](docs/RequestSettingsAPI.md#listrequestsettings) | List Request Settings objects +*RequestSettingsAPI* | [**UpdateRequestSettings**](docs/RequestSettingsAPI.md#updaterequestsettings) | Update a Request Settings object +*ResourceAPI* | [**CreateResource**](docs/ResourceAPI.md#createresource) | Create a resource link +*ResourceAPI* | [**DeleteResource**](docs/ResourceAPI.md#deleteresource) | Delete a resource link +*ResourceAPI* | [**GetResource**](docs/ResourceAPI.md#getresource) | Display a resource link +*ResourceAPI* | [**ListResources**](docs/ResourceAPI.md#listresources) | List resource links +*ResourceAPI* | [**UpdateResource**](docs/ResourceAPI.md#updateresource) | Update a resource link +*ResponseObjectAPI* | [**CreateResponseObject**](docs/ResponseObjectAPI.md#createresponseobject) | Create a Response object +*ResponseObjectAPI* | [**DeleteResponseObject**](docs/ResponseObjectAPI.md#deleteresponseobject) | Delete a Response Object +*ResponseObjectAPI* | [**GetResponseObject**](docs/ResponseObjectAPI.md#getresponseobject) | Get a Response object +*ResponseObjectAPI* | [**ListResponseObjects**](docs/ResponseObjectAPI.md#listresponseobjects) | List Response objects +*ResponseObjectAPI* | [**UpdateResponseObject**](docs/ResponseObjectAPI.md#updateresponseobject) | Update a Response object +*SecretStoreAPI* | [**ClientKey**](docs/SecretStoreAPI.md#clientkey) | Create new client key +*SecretStoreAPI* | [**CreateSecretStore**](docs/SecretStoreAPI.md#createsecretstore) | Create new secret store +*SecretStoreAPI* | [**DeleteSecretStore**](docs/SecretStoreAPI.md#deletesecretstore) | Delete secret store +*SecretStoreAPI* | [**GetSecretStore**](docs/SecretStoreAPI.md#getsecretstore) | Get secret store by ID +*SecretStoreAPI* | [**GetSecretStores**](docs/SecretStoreAPI.md#getsecretstores) | Get all secret stores +*SecretStoreAPI* | [**SigningKey**](docs/SecretStoreAPI.md#signingkey) | Get public key +*SecretStoreItemAPI* | [**CreateSecret**](docs/SecretStoreItemAPI.md#createsecret) | Create a new secret in a store. +*SecretStoreItemAPI* | [**DeleteSecret**](docs/SecretStoreItemAPI.md#deletesecret) | Delete a secret from a store. +*SecretStoreItemAPI* | [**GetSecret**](docs/SecretStoreItemAPI.md#getsecret) | Get secret metadata. +*SecretStoreItemAPI* | [**GetSecrets**](docs/SecretStoreItemAPI.md#getsecrets) | List secrets within a store. +*SecretStoreItemAPI* | [**MustRecreateSecret**](docs/SecretStoreItemAPI.md#mustrecreatesecret) | Recreate a secret in a store. +*SecretStoreItemAPI* | [**RecreateSecret**](docs/SecretStoreItemAPI.md#recreatesecret) | Create or recreate a secret in a store. +*ServerAPI* | [**CreatePoolServer**](docs/ServerAPI.md#createpoolserver) | Add a server to a pool +*ServerAPI* | [**DeletePoolServer**](docs/ServerAPI.md#deletepoolserver) | Delete a server from a pool +*ServerAPI* | [**GetPoolServer**](docs/ServerAPI.md#getpoolserver) | Get a pool server +*ServerAPI* | [**ListPoolServers**](docs/ServerAPI.md#listpoolservers) | List servers in a pool +*ServerAPI* | [**UpdatePoolServer**](docs/ServerAPI.md#updatepoolserver) | Update a server +*ServiceAPI* | [**CreateService**](docs/ServiceAPI.md#createservice) | Create a service +*ServiceAPI* | [**DeleteService**](docs/ServiceAPI.md#deleteservice) | Delete a service +*ServiceAPI* | [**GetService**](docs/ServiceAPI.md#getservice) | Get a service +*ServiceAPI* | [**GetServiceDetail**](docs/ServiceAPI.md#getservicedetail) | Get service details +*ServiceAPI* | [**ListServiceDomains**](docs/ServiceAPI.md#listservicedomains) | List the domains within a service +*ServiceAPI* | [**ListServices**](docs/ServiceAPI.md#listservices) | List services +*ServiceAPI* | [**SearchService**](docs/ServiceAPI.md#searchservice) | Search for a service by name +*ServiceAPI* | [**UpdateService**](docs/ServiceAPI.md#updateservice) | Update a service +*ServiceAuthorizationsAPI* | [**CreateServiceAuthorization**](docs/ServiceAuthorizationsAPI.md#createserviceauthorization) | Create service authorization +*ServiceAuthorizationsAPI* | [**DeleteServiceAuthorization**](docs/ServiceAuthorizationsAPI.md#deleteserviceauthorization) | Delete service authorization +*ServiceAuthorizationsAPI* | [**DeleteServiceAuthorization2**](docs/ServiceAuthorizationsAPI.md#deleteserviceauthorization2) | Delete service authorizations +*ServiceAuthorizationsAPI* | [**ListServiceAuthorization**](docs/ServiceAuthorizationsAPI.md#listserviceauthorization) | List service authorizations +*ServiceAuthorizationsAPI* | [**ShowServiceAuthorization**](docs/ServiceAuthorizationsAPI.md#showserviceauthorization) | Show service authorization +*ServiceAuthorizationsAPI* | [**UpdateServiceAuthorization**](docs/ServiceAuthorizationsAPI.md#updateserviceauthorization) | Update service authorization +*ServiceAuthorizationsAPI* | [**UpdateServiceAuthorization2**](docs/ServiceAuthorizationsAPI.md#updateserviceauthorization2) | Update service authorizations +*SettingsAPI* | [**GetServiceSettings**](docs/SettingsAPI.md#getservicesettings) | Get service settings +*SettingsAPI* | [**UpdateServiceSettings**](docs/SettingsAPI.md#updateservicesettings) | Update service settings +*SnippetAPI* | [**CreateSnippet**](docs/SnippetAPI.md#createsnippet) | Create a snippet +*SnippetAPI* | [**DeleteSnippet**](docs/SnippetAPI.md#deletesnippet) | Delete a snippet +*SnippetAPI* | [**GetSnippet**](docs/SnippetAPI.md#getsnippet) | Get a versioned snippet +*SnippetAPI* | [**GetSnippetDynamic**](docs/SnippetAPI.md#getsnippetdynamic) | Get a dynamic snippet +*SnippetAPI* | [**ListSnippets**](docs/SnippetAPI.md#listsnippets) | List snippets +*SnippetAPI* | [**UpdateSnippet**](docs/SnippetAPI.md#updatesnippet) | Update a versioned snippet +*SnippetAPI* | [**UpdateSnippetDynamic**](docs/SnippetAPI.md#updatesnippetdynamic) | Update a dynamic snippet +*StarAPI* | [**CreateServiceStar**](docs/StarAPI.md#createservicestar) | Create a star +*StarAPI* | [**DeleteServiceStar**](docs/StarAPI.md#deleteservicestar) | Delete a star +*StarAPI* | [**GetServiceStar**](docs/StarAPI.md#getservicestar) | Get a star +*StarAPI* | [**ListServiceStars**](docs/StarAPI.md#listservicestars) | List stars +*StatsAPI* | [**GetServiceStats**](docs/StatsAPI.md#getservicestats) | Get stats for a service +*SudoAPI* | [**RequestSudoAccess**](docs/SudoAPI.md#requestsudoaccess) | Request Sudo access +*TLSActivationsAPI* | [**CreateTLSActivation**](docs/TlsActivationsAPI.md#createtlsactivation) | Enable TLS for a domain using a custom certificate +*TLSActivationsAPI* | [**DeleteTLSActivation**](docs/TlsActivationsAPI.md#deletetlsactivation) | Disable TLS on a domain +*TLSActivationsAPI* | [**GetTLSActivation**](docs/TlsActivationsAPI.md#gettlsactivation) | Get a TLS activation +*TLSActivationsAPI* | [**ListTLSActivations**](docs/TlsActivationsAPI.md#listtlsactivations) | List TLS activations +*TLSActivationsAPI* | [**UpdateTLSActivation**](docs/TlsActivationsAPI.md#updatetlsactivation) | Update a certificate +*TLSBulkCertificatesAPI* | [**DeleteBulkTLSCert**](docs/TlsBulkCertificatesAPI.md#deletebulktlscert) | Delete a certificate +*TLSBulkCertificatesAPI* | [**GetTLSBulkCert**](docs/TlsBulkCertificatesAPI.md#gettlsbulkcert) | Get a certificate +*TLSBulkCertificatesAPI* | [**ListTLSBulkCerts**](docs/TlsBulkCertificatesAPI.md#listtlsbulkcerts) | List certificates +*TLSBulkCertificatesAPI* | [**UpdateBulkTLSCert**](docs/TlsBulkCertificatesAPI.md#updatebulktlscert) | Update a certificate +*TLSBulkCertificatesAPI* | [**UploadTLSBulkCert**](docs/TlsBulkCertificatesAPI.md#uploadtlsbulkcert) | Upload a certificate +*TLSCertificatesAPI* | [**CreateTLSCert**](docs/TlsCertificatesAPI.md#createtlscert) | Create a TLS certificate +*TLSCertificatesAPI* | [**DeleteTLSCert**](docs/TlsCertificatesAPI.md#deletetlscert) | Delete a TLS certificate +*TLSCertificatesAPI* | [**GetTLSCert**](docs/TlsCertificatesAPI.md#gettlscert) | Get a TLS certificate +*TLSCertificatesAPI* | [**ListTLSCerts**](docs/TlsCertificatesAPI.md#listtlscerts) | List TLS certificates +*TLSCertificatesAPI* | [**UpdateTLSCert**](docs/TlsCertificatesAPI.md#updatetlscert) | Update a TLS certificate +*TLSConfigurationsAPI* | [**GetTLSConfig**](docs/TlsConfigurationsAPI.md#gettlsconfig) | Get a TLS configuration +*TLSConfigurationsAPI* | [**ListTLSConfigs**](docs/TlsConfigurationsAPI.md#listtlsconfigs) | List TLS configurations +*TLSConfigurationsAPI* | [**UpdateTLSConfig**](docs/TlsConfigurationsAPI.md#updatetlsconfig) | Update a TLS configuration +*TLSCsrsAPI* | [**CreateCsr**](docs/TlsCsrsAPI.md#createcsr) | Create CSR +*TLSDomainsAPI* | [**ListTLSDomains**](docs/TlsDomainsAPI.md#listtlsdomains) | List TLS domains +*TLSPrivateKeysAPI* | [**CreateTLSKey**](docs/TlsPrivateKeysAPI.md#createtlskey) | Create a TLS private key +*TLSPrivateKeysAPI* | [**DeleteTLSKey**](docs/TlsPrivateKeysAPI.md#deletetlskey) | Delete a TLS private key +*TLSPrivateKeysAPI* | [**GetTLSKey**](docs/TlsPrivateKeysAPI.md#gettlskey) | Get a TLS private key +*TLSPrivateKeysAPI* | [**ListTLSKeys**](docs/TlsPrivateKeysAPI.md#listtlskeys) | List TLS private keys +*TLSSubscriptionsAPI* | [**CreateGlobalsignEmailChallenge**](docs/TlsSubscriptionsAPI.md#createglobalsignemailchallenge) | Creates a GlobalSign email challenge. +*TLSSubscriptionsAPI* | [**CreateTLSSub**](docs/TlsSubscriptionsAPI.md#createtlssub) | Create a TLS subscription +*TLSSubscriptionsAPI* | [**DeleteGlobalsignEmailChallenge**](docs/TlsSubscriptionsAPI.md#deleteglobalsignemailchallenge) | Delete a GlobalSign email challenge +*TLSSubscriptionsAPI* | [**DeleteTLSSub**](docs/TlsSubscriptionsAPI.md#deletetlssub) | Delete a TLS subscription +*TLSSubscriptionsAPI* | [**GetTLSSub**](docs/TlsSubscriptionsAPI.md#gettlssub) | Get a TLS subscription +*TLSSubscriptionsAPI* | [**ListTLSSubs**](docs/TlsSubscriptionsAPI.md#listtlssubs) | List TLS subscriptions +*TLSSubscriptionsAPI* | [**PatchTLSSub**](docs/TlsSubscriptionsAPI.md#patchtlssub) | Update a TLS subscription +*TokensAPI* | [**BulkRevokeTokens**](docs/TokensAPI.md#bulkrevoketokens) | Revoke multiple tokens +*TokensAPI* | [**CreateToken**](docs/TokensAPI.md#createtoken) | Create a token +*TokensAPI* | [**GetToken**](docs/TokensAPI.md#gettoken) | Get a token +*TokensAPI* | [**GetTokenCurrent**](docs/TokensAPI.md#gettokencurrent) | Get the current token +*TokensAPI* | [**ListTokensCustomer**](docs/TokensAPI.md#listtokenscustomer) | List tokens for a customer +*TokensAPI* | [**ListTokensUser**](docs/TokensAPI.md#listtokensuser) | List tokens for the authenticated user +*TokensAPI* | [**RevokeToken**](docs/TokensAPI.md#revoketoken) | Revoke a token +*TokensAPI* | [**RevokeTokenCurrent**](docs/TokensAPI.md#revoketokencurrent) | Revoke the current token +*UserAPI* | [**CreateUser**](docs/UserAPI.md#createuser) | Create a user +*UserAPI* | [**DeleteUser**](docs/UserAPI.md#deleteuser) | Delete a user +*UserAPI* | [**GetCurrentUser**](docs/UserAPI.md#getcurrentuser) | Get the current user +*UserAPI* | [**GetUser**](docs/UserAPI.md#getuser) | Get a user +*UserAPI* | [**RequestPasswordReset**](docs/UserAPI.md#requestpasswordreset) | Request a password reset +*UserAPI* | [**UpdateUser**](docs/UserAPI.md#updateuser) | Update a user +*UserAPI* | [**UpdateUserPassword**](docs/UserAPI.md#updateuserpassword) | Update the user's password +*VclAPI* | [**CreateCustomVcl**](docs/VclAPI.md#createcustomvcl) | Create a custom VCL file +*VclAPI* | [**DeleteCustomVcl**](docs/VclAPI.md#deletecustomvcl) | Delete a custom VCL file +*VclAPI* | [**GetCustomVcl**](docs/VclAPI.md#getcustomvcl) | Get a custom VCL file +*VclAPI* | [**GetCustomVclBoilerplate**](docs/VclAPI.md#getcustomvclboilerplate) | Get boilerplate VCL +*VclAPI* | [**GetCustomVclGenerated**](docs/VclAPI.md#getcustomvclgenerated) | Get the generated VCL for a service +*VclAPI* | [**GetCustomVclGeneratedHighlighted**](docs/VclAPI.md#getcustomvclgeneratedhighlighted) | Get the generated VCL with syntax highlighting +*VclAPI* | [**GetCustomVclHighlighted**](docs/VclAPI.md#getcustomvclhighlighted) | Get a custom VCL file with syntax highlighting +*VclAPI* | [**GetCustomVclRaw**](docs/VclAPI.md#getcustomvclraw) | Download a custom VCL file +*VclAPI* | [**LintVclDefault**](docs/VclAPI.md#lintvcldefault) | Lint (validate) VCL using a default set of flags. +*VclAPI* | [**LintVclForService**](docs/VclAPI.md#lintvclforservice) | Lint (validate) VCL using flags set for the service. +*VclAPI* | [**ListCustomVcl**](docs/VclAPI.md#listcustomvcl) | List custom VCL files +*VclAPI* | [**SetCustomVclMain**](docs/VclAPI.md#setcustomvclmain) | Set a custom VCL file as main +*VclAPI* | [**UpdateCustomVcl**](docs/VclAPI.md#updatecustomvcl) | Update a custom VCL file +*VclDiffAPI* | [**VclDiffServiceVersions**](docs/VclDiffAPI.md#vcldiffserviceversions) | Get a comparison of the VCL changes between two service versions +*VersionAPI* | [**ActivateServiceVersion**](docs/VersionAPI.md#activateserviceversion) | Activate a service version +*VersionAPI* | [**CloneServiceVersion**](docs/VersionAPI.md#cloneserviceversion) | Clone a service version +*VersionAPI* | [**CreateServiceVersion**](docs/VersionAPI.md#createserviceversion) | Create a service version +*VersionAPI* | [**DeactivateServiceVersion**](docs/VersionAPI.md#deactivateserviceversion) | Deactivate a service version +*VersionAPI* | [**GetServiceVersion**](docs/VersionAPI.md#getserviceversion) | Get a version of a service +*VersionAPI* | [**ListServiceVersions**](docs/VersionAPI.md#listserviceversions) | List versions of a service +*VersionAPI* | [**LockServiceVersion**](docs/VersionAPI.md#lockserviceversion) | Lock a service version +*VersionAPI* | [**UpdateServiceVersion**](docs/VersionAPI.md#updateserviceversion) | Update a service version +*VersionAPI* | [**ValidateServiceVersion**](docs/VersionAPI.md#validateserviceversion) | Validate a service version +*WafActiveRulesAPI* | [**BulkDeleteWafActiveRules**](docs/WafActiveRulesAPI.md#bulkdeletewafactiverules) | Delete multiple active rules from a WAF +*WafActiveRulesAPI* | [**BulkUpdateWafActiveRules**](docs/WafActiveRulesAPI.md#bulkupdatewafactiverules) | Update multiple active rules +*WafActiveRulesAPI* | [**CreateWafActiveRule**](docs/WafActiveRulesAPI.md#createwafactiverule) | Add a rule to a WAF as an active rule +*WafActiveRulesAPI* | [**CreateWafActiveRulesTag**](docs/WafActiveRulesAPI.md#createwafactiverulestag) | Create active rules by tag +*WafActiveRulesAPI* | [**DeleteWafActiveRule**](docs/WafActiveRulesAPI.md#deletewafactiverule) | Delete an active rule +*WafActiveRulesAPI* | [**GetWafActiveRule**](docs/WafActiveRulesAPI.md#getwafactiverule) | Get an active WAF rule object +*WafActiveRulesAPI* | [**ListWafActiveRules**](docs/WafActiveRulesAPI.md#listwafactiverules) | List active rules on a WAF +*WafActiveRulesAPI* | [**UpdateWafActiveRule**](docs/WafActiveRulesAPI.md#updatewafactiverule) | Update an active rule +*WafExclusionsAPI* | [**CreateWafRuleExclusion**](docs/WafExclusionsAPI.md#createwafruleexclusion) | Create a WAF rule exclusion +*WafExclusionsAPI* | [**DeleteWafRuleExclusion**](docs/WafExclusionsAPI.md#deletewafruleexclusion) | Delete a WAF rule exclusion +*WafExclusionsAPI* | [**GetWafRuleExclusion**](docs/WafExclusionsAPI.md#getwafruleexclusion) | Get a WAF rule exclusion +*WafExclusionsAPI* | [**ListWafRuleExclusions**](docs/WafExclusionsAPI.md#listwafruleexclusions) | List WAF rule exclusions +*WafExclusionsAPI* | [**UpdateWafRuleExclusion**](docs/WafExclusionsAPI.md#updatewafruleexclusion) | Update a WAF rule exclusion +*WafFirewallVersionsAPI* | [**CloneWafFirewallVersion**](docs/WafFirewallVersionsAPI.md#clonewaffirewallversion) | Clone a firewall version +*WafFirewallVersionsAPI* | [**CreateWafFirewallVersion**](docs/WafFirewallVersionsAPI.md#createwaffirewallversion) | Create a firewall version +*WafFirewallVersionsAPI* | [**DeployActivateWafFirewallVersion**](docs/WafFirewallVersionsAPI.md#deployactivatewaffirewallversion) | Deploy or activate a firewall version +*WafFirewallVersionsAPI* | [**GetWafFirewallVersion**](docs/WafFirewallVersionsAPI.md#getwaffirewallversion) | Get a firewall version +*WafFirewallVersionsAPI* | [**ListWafFirewallVersions**](docs/WafFirewallVersionsAPI.md#listwaffirewallversions) | List firewall versions +*WafFirewallVersionsAPI* | [**UpdateWafFirewallVersion**](docs/WafFirewallVersionsAPI.md#updatewaffirewallversion) | Update a firewall version +*WafFirewallsAPI* | [**CreateWafFirewall**](docs/WafFirewallsAPI.md#createwaffirewall) | Create a firewall +*WafFirewallsAPI* | [**DeleteWafFirewall**](docs/WafFirewallsAPI.md#deletewaffirewall) | Delete a firewall +*WafFirewallsAPI* | [**GetWafFirewall**](docs/WafFirewallsAPI.md#getwaffirewall) | Get a firewall +*WafFirewallsAPI* | [**ListWafFirewalls**](docs/WafFirewallsAPI.md#listwaffirewalls) | List firewalls +*WafFirewallsAPI* | [**UpdateWafFirewall**](docs/WafFirewallsAPI.md#updatewaffirewall) | Update a firewall +*WafRuleRevisionsAPI* | [**GetWafRuleRevision**](docs/WafRuleRevisionsAPI.md#getwafrulerevision) | Get a revision of a rule +*WafRuleRevisionsAPI* | [**ListWafRuleRevisions**](docs/WafRuleRevisionsAPI.md#listwafrulerevisions) | List revisions for a rule +*WafRulesAPI* | [**GetWafRule**](docs/WafRulesAPI.md#getwafrule) | Get a rule +*WafRulesAPI* | [**ListWafRules**](docs/WafRulesAPI.md#listwafrules) | List available WAF rules +*WafTagsAPI* | [**ListWafTags**](docs/WafTagsAPI.md#listwaftags) | List tags +*WholePlatformDdosHistoricalAPI* | [**GetPlatformDdosHistorical**](docs/WholePlatformDdosHistoricalAPI.md#getplatformddoshistorical) | Get historical DDoS metrics for the entire Fastly platform + + +
+ +## Utility Methods Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. @@ -633,7 +646,7 @@ The fastly-go API client currently does not support the following endpoints: If you encounter any non-security-related bug or unexpected behavior, please [file an issue][bug] using the bug report template. -[bug]: https://github.com/fastly/fastly-rust/issues/new?labels=bug +[bug]: https://github.com/fastly/fastly-go/issues/new?labels=bug ### Security issues diff --git a/docs/AclAPI.md b/docs/AclAPI.md index f424cee..135ef7f 100644 --- a/docs/AclAPI.md +++ b/docs/AclAPI.md @@ -1,6 +1,7 @@ # ACLAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -72,7 +73,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -143,7 +144,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -214,7 +215,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -283,7 +284,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -355,7 +356,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/AclEntryAPI.md b/docs/AclEntryAPI.md index 06d0fa1..60f6336 100644 --- a/docs/AclEntryAPI.md +++ b/docs/AclEntryAPI.md @@ -1,6 +1,7 @@ # ACLEntryAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -73,7 +74,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -143,7 +144,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -214,7 +215,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -285,7 +286,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -358,7 +359,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -430,7 +431,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/ApexRedirectAPI.md b/docs/ApexRedirectAPI.md index b8d42b0..306e694 100644 --- a/docs/ApexRedirectAPI.md +++ b/docs/ApexRedirectAPI.md @@ -1,6 +1,7 @@ # ApexRedirectAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -80,7 +81,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -147,7 +148,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -214,7 +215,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -283,7 +284,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -359,7 +360,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/AutomationTokensAPI.md b/docs/AutomationTokensAPI.md index 86fbdd5..e60e843 100644 --- a/docs/AutomationTokensAPI.md +++ b/docs/AutomationTokensAPI.md @@ -1,6 +1,7 @@ # AutomationTokensAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -65,7 +66,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -132,7 +133,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -201,7 +202,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -265,7 +266,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -332,7 +333,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/Backend.md b/docs/Backend.md index 0d6c2cf..e55f5da 100644 --- a/docs/Backend.md +++ b/docs/Backend.md @@ -33,7 +33,7 @@ Name | Type | Description | Notes **SslClientKey** | Pointer to **NullableString** | Client key attached to origin. | [optional] **SslHostname** | Pointer to **NullableString** | Use `ssl_cert_hostname` and `ssl_sni_hostname` to configure certificate validation. | [optional] **SslSniHostname** | Pointer to **NullableString** | Overrides `ssl_hostname`, but only for SNI in the handshake. Does not affect cert validation at all. | [optional] -**TcpKeepaliveEnable** | Pointer to **bool** | Whether to enable TCP keepalives for backend connections. Varnish defaults to using keepalives if this is unspecified. | [optional] +**TcpKeepaliveEnable** | Pointer to **NullableBool** | Whether to enable TCP keepalives for backend connections. Varnish defaults to using keepalives if this is unspecified. | [optional] **TcpKeepaliveInterval** | Pointer to **NullableInt32** | Interval in seconds between subsequent keepalive probes. | [optional] **TcpKeepaliveProbes** | Pointer to **NullableInt32** | Number of unacknowledged probes to send before considering the connection dead. | [optional] **TcpKeepaliveTime** | Pointer to **NullableInt32** | Interval in seconds between the last data packet sent and the first keepalive probe. | [optional] @@ -1009,6 +1009,16 @@ SetTcpKeepaliveEnable sets TcpKeepaliveEnable field to given value. HasTcpKeepaliveEnable returns a boolean if a field has been set. +### SetTcpKeepaliveEnableNil + +`func (o *Backend) SetTcpKeepaliveEnableNil(b bool)` + + SetTcpKeepaliveEnableNil sets the value for TcpKeepaliveEnable to be an explicit nil + +### UnsetTcpKeepaliveEnable +`func (o *Backend) UnsetTcpKeepaliveEnable()` + +UnsetTcpKeepaliveEnable ensures that no value is present for TcpKeepaliveEnable, not even an explicit nil ### GetTcpKeepaliveInterval `func (o *Backend) GetTcpKeepaliveInterval() int32` diff --git a/docs/BackendAPI.md b/docs/BackendAPI.md index 067d8a9..1f7ff64 100644 --- a/docs/BackendAPI.md +++ b/docs/BackendAPI.md @@ -1,6 +1,7 @@ # BackendAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -106,7 +107,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -177,7 +178,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -248,7 +249,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -317,7 +318,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -423,7 +424,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/BackendResponse.md b/docs/BackendResponse.md index b151319..9e42428 100644 --- a/docs/BackendResponse.md +++ b/docs/BackendResponse.md @@ -33,7 +33,7 @@ Name | Type | Description | Notes **SslClientKey** | Pointer to **NullableString** | Client key attached to origin. | [optional] **SslHostname** | Pointer to **NullableString** | Use `ssl_cert_hostname` and `ssl_sni_hostname` to configure certificate validation. | [optional] **SslSniHostname** | Pointer to **NullableString** | Overrides `ssl_hostname`, but only for SNI in the handshake. Does not affect cert validation at all. | [optional] -**TcpKeepaliveEnable** | Pointer to **bool** | Whether to enable TCP keepalives for backend connections. Varnish defaults to using keepalives if this is unspecified. | [optional] +**TcpKeepaliveEnable** | Pointer to **NullableBool** | Whether to enable TCP keepalives for backend connections. Varnish defaults to using keepalives if this is unspecified. | [optional] **TcpKeepaliveInterval** | Pointer to **NullableInt32** | Interval in seconds between subsequent keepalive probes. | [optional] **TcpKeepaliveProbes** | Pointer to **NullableInt32** | Number of unacknowledged probes to send before considering the connection dead. | [optional] **TcpKeepaliveTime** | Pointer to **NullableInt32** | Interval in seconds between the last data packet sent and the first keepalive probe. | [optional] @@ -1015,6 +1015,16 @@ SetTcpKeepaliveEnable sets TcpKeepaliveEnable field to given value. HasTcpKeepaliveEnable returns a boolean if a field has been set. +### SetTcpKeepaliveEnableNil + +`func (o *BackendResponse) SetTcpKeepaliveEnableNil(b bool)` + + SetTcpKeepaliveEnableNil sets the value for TcpKeepaliveEnable to be an explicit nil + +### UnsetTcpKeepaliveEnable +`func (o *BackendResponse) UnsetTcpKeepaliveEnable()` + +UnsetTcpKeepaliveEnable ensures that no value is present for TcpKeepaliveEnable, not even an explicit nil ### GetTcpKeepaliveInterval `func (o *BackendResponse) GetTcpKeepaliveInterval() int32` diff --git a/docs/BillingAPI.md b/docs/BillingAPI.md index 1fdbfa2..b82a073 100644 --- a/docs/BillingAPI.md +++ b/docs/BillingAPI.md @@ -1,6 +1,7 @@ # BillingAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -69,7 +70,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -138,7 +139,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -207,7 +208,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/BillingAddressAPI.md b/docs/BillingAddressAPI.md index e370816..2f78cad 100644 --- a/docs/BillingAddressAPI.md +++ b/docs/BillingAddressAPI.md @@ -1,6 +1,7 @@ # BillingAddressAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -69,7 +70,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -134,7 +135,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -201,7 +202,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -269,7 +270,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/BillingInvoicesAPI.md b/docs/BillingInvoicesAPI.md index 5fa8852..a678ecf 100644 --- a/docs/BillingInvoicesAPI.md +++ b/docs/BillingInvoicesAPI.md @@ -1,6 +1,7 @@ # BillingInvoicesAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -66,7 +67,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -132,7 +133,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/CacheSettingsAPI.md b/docs/CacheSettingsAPI.md index 2861c51..260e59e 100644 --- a/docs/CacheSettingsAPI.md +++ b/docs/CacheSettingsAPI.md @@ -1,6 +1,7 @@ # CacheSettingsAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -76,7 +77,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -147,7 +148,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -218,7 +219,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -287,7 +288,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -363,7 +364,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/ConditionAPI.md b/docs/ConditionAPI.md index 150de09..5526533 100644 --- a/docs/ConditionAPI.md +++ b/docs/ConditionAPI.md @@ -1,6 +1,7 @@ # ConditionAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -78,7 +79,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -149,7 +150,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -220,7 +221,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -289,7 +290,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -367,7 +368,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/ConfigStoreAPI.md b/docs/ConfigStoreAPI.md index 0c88b32..2046fc1 100644 --- a/docs/ConfigStoreAPI.md +++ b/docs/ConfigStoreAPI.md @@ -1,6 +1,7 @@ # ConfigStoreAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -67,7 +68,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -134,7 +135,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -201,7 +202,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -268,7 +269,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -335,7 +336,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -398,7 +399,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -466,7 +467,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/ConfigStoreItemAPI.md b/docs/ConfigStoreItemAPI.md index e013db1..61b77c9 100644 --- a/docs/ConfigStoreItemAPI.md +++ b/docs/ConfigStoreItemAPI.md @@ -1,6 +1,7 @@ # ConfigStoreItemAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -72,7 +73,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -141,7 +142,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -210,7 +211,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -279,7 +280,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -346,7 +347,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -417,7 +418,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -488,7 +489,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/ContactAPI.md b/docs/ContactAPI.md index 5a6d0dd..ed470a7 100644 --- a/docs/ContactAPI.md +++ b/docs/ContactAPI.md @@ -1,6 +1,7 @@ # ContactAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -73,7 +74,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -142,7 +143,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -209,7 +210,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/ContentAPI.md b/docs/ContentAPI.md index 680dbae..954d238 100644 --- a/docs/ContentAPI.md +++ b/docs/ContentAPI.md @@ -1,6 +1,7 @@ # ContentAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -61,7 +62,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/CustomerAPI.md b/docs/CustomerAPI.md index 91c187d..fd04161 100644 --- a/docs/CustomerAPI.md +++ b/docs/CustomerAPI.md @@ -1,6 +1,7 @@ # CustomerAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -69,7 +70,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -136,7 +137,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -195,7 +196,7 @@ Other parameters are passed through a pointer to a apiGetLoggedInCustomerRequest ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -262,7 +263,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -353,7 +354,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/DefaultSettings.md b/docs/DefaultSettings.md new file mode 100644 index 0000000..8f4cf84 --- /dev/null +++ b/docs/DefaultSettings.md @@ -0,0 +1,210 @@ +# DefaultSettings + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**ResizeFilter** | Pointer to **string** | The type of filter to use while resizing an image. | [optional] [default to "lanczos3"] +**Webp** | Pointer to **bool** | Controls whether or not to default to WebP output when the client supports it. This is equivalent to adding \"auto=webp\" to all image optimizer requests. | [optional] [default to false] +**WebpQuality** | Pointer to **int32** | The default quality to use with WebP output. This can be overridden with the second option in the \"quality\" URL parameter on specific image optimizer requests. | [optional] [default to 85] +**JpegType** | Pointer to **string** | The default type of JPEG output to use. This can be overridden with \"format=bjpeg\" and \"format=pjpeg\" on specific image optimizer requests. | [optional] [default to "auto"] +**JpegQuality** | Pointer to **int32** | The default quality to use with JPEG output. This can be overridden with the \"quality\" parameter on specific image optimizer requests. | [optional] [default to 85] +**Upscale** | Pointer to **bool** | Whether or not we should allow output images to render at sizes larger than input. | [optional] [default to false] +**AllowVideo** | Pointer to **bool** | Enables GIF to MP4 transformations on this service. | [optional] [default to false] + +## Methods + +### NewDefaultSettings + +`func NewDefaultSettings() *DefaultSettings` + +NewDefaultSettings instantiates a new DefaultSettings object +This constructor will assign default values to properties that have it defined, +and makes sure properties required by API are set, but the set of arguments +will change when the set of required properties is changed + +### NewDefaultSettingsWithDefaults + +`func NewDefaultSettingsWithDefaults() *DefaultSettings` + +NewDefaultSettingsWithDefaults instantiates a new DefaultSettings object +This constructor will only assign default values to properties that have it defined, +but it doesn't guarantee that properties required by API are set + +### GetResizeFilter + +`func (o *DefaultSettings) GetResizeFilter() string` + +GetResizeFilter returns the ResizeFilter field if non-nil, zero value otherwise. + +### GetResizeFilterOk + +`func (o *DefaultSettings) GetResizeFilterOk() (*string, bool)` + +GetResizeFilterOk returns a tuple with the ResizeFilter field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetResizeFilter + +`func (o *DefaultSettings) SetResizeFilter(v string)` + +SetResizeFilter sets ResizeFilter field to given value. + +### HasResizeFilter + +`func (o *DefaultSettings) HasResizeFilter() bool` + +HasResizeFilter returns a boolean if a field has been set. + +### GetWebp + +`func (o *DefaultSettings) GetWebp() bool` + +GetWebp returns the Webp field if non-nil, zero value otherwise. + +### GetWebpOk + +`func (o *DefaultSettings) GetWebpOk() (*bool, bool)` + +GetWebpOk returns a tuple with the Webp field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetWebp + +`func (o *DefaultSettings) SetWebp(v bool)` + +SetWebp sets Webp field to given value. + +### HasWebp + +`func (o *DefaultSettings) HasWebp() bool` + +HasWebp returns a boolean if a field has been set. + +### GetWebpQuality + +`func (o *DefaultSettings) GetWebpQuality() int32` + +GetWebpQuality returns the WebpQuality field if non-nil, zero value otherwise. + +### GetWebpQualityOk + +`func (o *DefaultSettings) GetWebpQualityOk() (*int32, bool)` + +GetWebpQualityOk returns a tuple with the WebpQuality field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetWebpQuality + +`func (o *DefaultSettings) SetWebpQuality(v int32)` + +SetWebpQuality sets WebpQuality field to given value. + +### HasWebpQuality + +`func (o *DefaultSettings) HasWebpQuality() bool` + +HasWebpQuality returns a boolean if a field has been set. + +### GetJpegType + +`func (o *DefaultSettings) GetJpegType() string` + +GetJpegType returns the JpegType field if non-nil, zero value otherwise. + +### GetJpegTypeOk + +`func (o *DefaultSettings) GetJpegTypeOk() (*string, bool)` + +GetJpegTypeOk returns a tuple with the JpegType field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetJpegType + +`func (o *DefaultSettings) SetJpegType(v string)` + +SetJpegType sets JpegType field to given value. + +### HasJpegType + +`func (o *DefaultSettings) HasJpegType() bool` + +HasJpegType returns a boolean if a field has been set. + +### GetJpegQuality + +`func (o *DefaultSettings) GetJpegQuality() int32` + +GetJpegQuality returns the JpegQuality field if non-nil, zero value otherwise. + +### GetJpegQualityOk + +`func (o *DefaultSettings) GetJpegQualityOk() (*int32, bool)` + +GetJpegQualityOk returns a tuple with the JpegQuality field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetJpegQuality + +`func (o *DefaultSettings) SetJpegQuality(v int32)` + +SetJpegQuality sets JpegQuality field to given value. + +### HasJpegQuality + +`func (o *DefaultSettings) HasJpegQuality() bool` + +HasJpegQuality returns a boolean if a field has been set. + +### GetUpscale + +`func (o *DefaultSettings) GetUpscale() bool` + +GetUpscale returns the Upscale field if non-nil, zero value otherwise. + +### GetUpscaleOk + +`func (o *DefaultSettings) GetUpscaleOk() (*bool, bool)` + +GetUpscaleOk returns a tuple with the Upscale field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetUpscale + +`func (o *DefaultSettings) SetUpscale(v bool)` + +SetUpscale sets Upscale field to given value. + +### HasUpscale + +`func (o *DefaultSettings) HasUpscale() bool` + +HasUpscale returns a boolean if a field has been set. + +### GetAllowVideo + +`func (o *DefaultSettings) GetAllowVideo() bool` + +GetAllowVideo returns the AllowVideo field if non-nil, zero value otherwise. + +### GetAllowVideoOk + +`func (o *DefaultSettings) GetAllowVideoOk() (*bool, bool)` + +GetAllowVideoOk returns a tuple with the AllowVideo field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetAllowVideo + +`func (o *DefaultSettings) SetAllowVideo(v bool)` + +SetAllowVideo sets AllowVideo field to given value. + +### HasAllowVideo + +`func (o *DefaultSettings) HasAllowVideo() bool` + +HasAllowVideo returns a boolean if a field has been set. + + +[Back to API list](../README.md#documentation-for-api-endpoints) | [Back to README](../README.md) diff --git a/docs/DefaultSettingsError.md b/docs/DefaultSettingsError.md new file mode 100644 index 0000000..4de8dc2 --- /dev/null +++ b/docs/DefaultSettingsError.md @@ -0,0 +1,106 @@ +# DefaultSettingsError + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**Title** | Pointer to **string** | | [optional] +**Type** | Pointer to **string** | | [optional] +**Detail** | Pointer to **string** | | [optional] + +## Methods + +### NewDefaultSettingsError + +`func NewDefaultSettingsError() *DefaultSettingsError` + +NewDefaultSettingsError instantiates a new DefaultSettingsError object +This constructor will assign default values to properties that have it defined, +and makes sure properties required by API are set, but the set of arguments +will change when the set of required properties is changed + +### NewDefaultSettingsErrorWithDefaults + +`func NewDefaultSettingsErrorWithDefaults() *DefaultSettingsError` + +NewDefaultSettingsErrorWithDefaults instantiates a new DefaultSettingsError object +This constructor will only assign default values to properties that have it defined, +but it doesn't guarantee that properties required by API are set + +### GetTitle + +`func (o *DefaultSettingsError) GetTitle() string` + +GetTitle returns the Title field if non-nil, zero value otherwise. + +### GetTitleOk + +`func (o *DefaultSettingsError) GetTitleOk() (*string, bool)` + +GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetTitle + +`func (o *DefaultSettingsError) SetTitle(v string)` + +SetTitle sets Title field to given value. + +### HasTitle + +`func (o *DefaultSettingsError) HasTitle() bool` + +HasTitle returns a boolean if a field has been set. + +### GetType + +`func (o *DefaultSettingsError) GetType() string` + +GetType returns the Type field if non-nil, zero value otherwise. + +### GetTypeOk + +`func (o *DefaultSettingsError) GetTypeOk() (*string, bool)` + +GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetType + +`func (o *DefaultSettingsError) SetType(v string)` + +SetType sets Type field to given value. + +### HasType + +`func (o *DefaultSettingsError) HasType() bool` + +HasType returns a boolean if a field has been set. + +### GetDetail + +`func (o *DefaultSettingsError) GetDetail() string` + +GetDetail returns the Detail field if non-nil, zero value otherwise. + +### GetDetailOk + +`func (o *DefaultSettingsError) GetDetailOk() (*string, bool)` + +GetDetailOk returns a tuple with the Detail field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetDetail + +`func (o *DefaultSettingsError) SetDetail(v string)` + +SetDetail sets Detail field to given value. + +### HasDetail + +`func (o *DefaultSettingsError) HasDetail() bool` + +HasDetail returns a boolean if a field has been set. + + +[Back to API list](../README.md#documentation-for-api-endpoints) | [Back to README](../README.md) diff --git a/docs/DefaultSettingsResponse.md b/docs/DefaultSettingsResponse.md new file mode 100644 index 0000000..5ecd3ea --- /dev/null +++ b/docs/DefaultSettingsResponse.md @@ -0,0 +1,175 @@ +# DefaultSettingsResponse + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**ResizeFilter** | **string** | The type of filter to use while resizing an image. | [default to "lanczos3"] +**Webp** | **bool** | Controls whether or not to default to WebP output when the client supports it. This is equivalent to adding \"auto=webp\" to all image optimizer requests. | [default to false] +**WebpQuality** | **int32** | The default quality to use with WebP output. This can be overridden with the second option in the \"quality\" URL parameter on specific image optimizer requests. | [default to 85] +**JpegType** | **string** | The default type of JPEG output to use. This can be overridden with \"format=bjpeg\" and \"format=pjpeg\" on specific image optimizer requests. | [default to "auto"] +**JpegQuality** | **int32** | The default quality to use with JPEG output. This can be overridden with the \"quality\" parameter on specific image optimizer requests. | [default to 85] +**Upscale** | **bool** | Whether or not we should allow output images to render at sizes larger than input. | [default to false] +**AllowVideo** | **bool** | Enables GIF to MP4 transformations on this service. | [default to false] + +## Methods + +### NewDefaultSettingsResponse + +`func NewDefaultSettingsResponse(resizeFilter string, webp bool, webpQuality int32, jpegType string, jpegQuality int32, upscale bool, allowVideo bool, ) *DefaultSettingsResponse` + +NewDefaultSettingsResponse instantiates a new DefaultSettingsResponse object +This constructor will assign default values to properties that have it defined, +and makes sure properties required by API are set, but the set of arguments +will change when the set of required properties is changed + +### NewDefaultSettingsResponseWithDefaults + +`func NewDefaultSettingsResponseWithDefaults() *DefaultSettingsResponse` + +NewDefaultSettingsResponseWithDefaults instantiates a new DefaultSettingsResponse object +This constructor will only assign default values to properties that have it defined, +but it doesn't guarantee that properties required by API are set + +### GetResizeFilter + +`func (o *DefaultSettingsResponse) GetResizeFilter() string` + +GetResizeFilter returns the ResizeFilter field if non-nil, zero value otherwise. + +### GetResizeFilterOk + +`func (o *DefaultSettingsResponse) GetResizeFilterOk() (*string, bool)` + +GetResizeFilterOk returns a tuple with the ResizeFilter field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetResizeFilter + +`func (o *DefaultSettingsResponse) SetResizeFilter(v string)` + +SetResizeFilter sets ResizeFilter field to given value. + + +### GetWebp + +`func (o *DefaultSettingsResponse) GetWebp() bool` + +GetWebp returns the Webp field if non-nil, zero value otherwise. + +### GetWebpOk + +`func (o *DefaultSettingsResponse) GetWebpOk() (*bool, bool)` + +GetWebpOk returns a tuple with the Webp field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetWebp + +`func (o *DefaultSettingsResponse) SetWebp(v bool)` + +SetWebp sets Webp field to given value. + + +### GetWebpQuality + +`func (o *DefaultSettingsResponse) GetWebpQuality() int32` + +GetWebpQuality returns the WebpQuality field if non-nil, zero value otherwise. + +### GetWebpQualityOk + +`func (o *DefaultSettingsResponse) GetWebpQualityOk() (*int32, bool)` + +GetWebpQualityOk returns a tuple with the WebpQuality field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetWebpQuality + +`func (o *DefaultSettingsResponse) SetWebpQuality(v int32)` + +SetWebpQuality sets WebpQuality field to given value. + + +### GetJpegType + +`func (o *DefaultSettingsResponse) GetJpegType() string` + +GetJpegType returns the JpegType field if non-nil, zero value otherwise. + +### GetJpegTypeOk + +`func (o *DefaultSettingsResponse) GetJpegTypeOk() (*string, bool)` + +GetJpegTypeOk returns a tuple with the JpegType field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetJpegType + +`func (o *DefaultSettingsResponse) SetJpegType(v string)` + +SetJpegType sets JpegType field to given value. + + +### GetJpegQuality + +`func (o *DefaultSettingsResponse) GetJpegQuality() int32` + +GetJpegQuality returns the JpegQuality field if non-nil, zero value otherwise. + +### GetJpegQualityOk + +`func (o *DefaultSettingsResponse) GetJpegQualityOk() (*int32, bool)` + +GetJpegQualityOk returns a tuple with the JpegQuality field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetJpegQuality + +`func (o *DefaultSettingsResponse) SetJpegQuality(v int32)` + +SetJpegQuality sets JpegQuality field to given value. + + +### GetUpscale + +`func (o *DefaultSettingsResponse) GetUpscale() bool` + +GetUpscale returns the Upscale field if non-nil, zero value otherwise. + +### GetUpscaleOk + +`func (o *DefaultSettingsResponse) GetUpscaleOk() (*bool, bool)` + +GetUpscaleOk returns a tuple with the Upscale field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetUpscale + +`func (o *DefaultSettingsResponse) SetUpscale(v bool)` + +SetUpscale sets Upscale field to given value. + + +### GetAllowVideo + +`func (o *DefaultSettingsResponse) GetAllowVideo() bool` + +GetAllowVideo returns the AllowVideo field if non-nil, zero value otherwise. + +### GetAllowVideoOk + +`func (o *DefaultSettingsResponse) GetAllowVideoOk() (*bool, bool)` + +GetAllowVideoOk returns a tuple with the AllowVideo field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetAllowVideo + +`func (o *DefaultSettingsResponse) SetAllowVideo(v bool)` + +SetAllowVideo sets AllowVideo field to given value. + + + +[Back to API list](../README.md#documentation-for-api-endpoints) | [Back to README](../README.md) diff --git a/docs/DictionaryAPI.md b/docs/DictionaryAPI.md index 11a9758..f3eba8d 100644 --- a/docs/DictionaryAPI.md +++ b/docs/DictionaryAPI.md @@ -1,6 +1,7 @@ # DictionaryAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -73,7 +74,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -144,7 +145,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -215,7 +216,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -284,7 +285,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -357,7 +358,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/DictionaryInfoAPI.md b/docs/DictionaryInfoAPI.md index 6d54b1b..8ac78e4 100644 --- a/docs/DictionaryInfoAPI.md +++ b/docs/DictionaryInfoAPI.md @@ -1,6 +1,7 @@ # DictionaryInfoAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -69,7 +70,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/DictionaryItemAPI.md b/docs/DictionaryItemAPI.md index 24cf03c..cd3b42c 100644 --- a/docs/DictionaryItemAPI.md +++ b/docs/DictionaryItemAPI.md @@ -1,6 +1,7 @@ # DictionaryItemAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -74,7 +75,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -145,7 +146,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -216,7 +217,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -287,7 +288,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -360,7 +361,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -433,7 +434,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -506,7 +507,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/DiffAPI.md b/docs/DiffAPI.md index 2824d45..1e605d9 100644 --- a/docs/DiffAPI.md +++ b/docs/DiffAPI.md @@ -1,6 +1,7 @@ # DiffAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -70,7 +71,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/DirectorAPI.md b/docs/DirectorAPI.md index fdd3455..ee9b3dc 100644 --- a/docs/DirectorAPI.md +++ b/docs/DirectorAPI.md @@ -1,6 +1,7 @@ # DirectorAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -79,7 +80,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -150,7 +151,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -221,7 +222,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -290,7 +291,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -361,7 +362,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/DirectorBackendAPI.md b/docs/DirectorBackendAPI.md index 0c1f51a..96db8f1 100644 --- a/docs/DirectorBackendAPI.md +++ b/docs/DirectorBackendAPI.md @@ -1,6 +1,7 @@ # DirectorBackendAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -73,7 +74,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -146,7 +147,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -219,7 +220,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/DomainAPI.md b/docs/DomainAPI.md index 66733f2..5a34ad4 100644 --- a/docs/DomainAPI.md +++ b/docs/DomainAPI.md @@ -1,6 +1,7 @@ # DomainAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -75,7 +76,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -144,7 +145,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -215,7 +216,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -286,7 +287,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -357,7 +358,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -426,7 +427,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -499,7 +500,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/DomainInspectorHistoricalAPI.md b/docs/DomainInspectorHistoricalAPI.md index e226d49..2fa02a9 100644 --- a/docs/DomainInspectorHistoricalAPI.md +++ b/docs/DomainInspectorHistoricalAPI.md @@ -1,6 +1,7 @@ # DomainInspectorHistoricalAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -75,7 +76,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/DomainInspectorRealtimeAPI.md b/docs/DomainInspectorRealtimeAPI.md index c28f341..a62511c 100644 --- a/docs/DomainInspectorRealtimeAPI.md +++ b/docs/DomainInspectorRealtimeAPI.md @@ -1,6 +1,7 @@ # DomainInspectorRealtimeAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -67,7 +68,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -136,7 +137,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -205,7 +206,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/DomainOwnershipsAPI.md b/docs/DomainOwnershipsAPI.md index 8c77ea8..d0a5575 100644 --- a/docs/DomainOwnershipsAPI.md +++ b/docs/DomainOwnershipsAPI.md @@ -1,6 +1,7 @@ # DomainOwnershipsAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -57,7 +58,7 @@ Other parameters are passed through a pointer to a apiListDomainOwnershipsReques ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/EnabledProductsAPI.md b/docs/EnabledProductsAPI.md index 4181414..77aef67 100644 --- a/docs/EnabledProductsAPI.md +++ b/docs/EnabledProductsAPI.md @@ -1,6 +1,7 @@ # EnabledProductsAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -67,7 +68,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -136,7 +137,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -205,7 +206,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/EventsAPI.md b/docs/EventsAPI.md index 28a02fb..4366cff 100644 --- a/docs/EventsAPI.md +++ b/docs/EventsAPI.md @@ -1,6 +1,7 @@ # EventsAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -66,7 +67,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -141,7 +142,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/GzipAPI.md b/docs/GzipAPI.md index 77b7426..895696b 100644 --- a/docs/GzipAPI.md +++ b/docs/GzipAPI.md @@ -1,6 +1,7 @@ # GzipAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -75,7 +76,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -146,7 +147,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -217,7 +218,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -286,7 +287,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -361,7 +362,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/HeaderAPI.md b/docs/HeaderAPI.md index aa8698b..1da51a8 100644 --- a/docs/HeaderAPI.md +++ b/docs/HeaderAPI.md @@ -1,6 +1,7 @@ # HeaderAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -83,7 +84,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -154,7 +155,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -225,7 +226,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -294,7 +295,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -377,7 +378,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/HealthcheckAPI.md b/docs/HealthcheckAPI.md index bf75389..288f51e 100644 --- a/docs/HealthcheckAPI.md +++ b/docs/HealthcheckAPI.md @@ -1,6 +1,7 @@ # HealthcheckAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -84,7 +85,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -155,7 +156,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -226,7 +227,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -295,7 +296,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -379,7 +380,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/HistoricalAPI.md b/docs/HistoricalAPI.md index 85a4e50..6afd950 100644 --- a/docs/HistoricalAPI.md +++ b/docs/HistoricalAPI.md @@ -1,6 +1,7 @@ # HistoricalAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -72,7 +73,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -138,7 +139,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -209,7 +210,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -280,7 +281,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -353,7 +354,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -412,7 +413,7 @@ Other parameters are passed through a pointer to a apiGetRegionsRequest struct v ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -476,7 +477,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -541,7 +542,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -605,7 +606,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/Http3API.md b/docs/Http3API.md index 3d561cd..25acb9b 100644 --- a/docs/Http3API.md +++ b/docs/Http3API.md @@ -1,6 +1,7 @@ # HTTP3API -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -76,7 +77,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -145,7 +146,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -214,7 +215,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/IamPermissionsAPI.md b/docs/IamPermissionsAPI.md index 513bf62..a9b9d70 100644 --- a/docs/IamPermissionsAPI.md +++ b/docs/IamPermissionsAPI.md @@ -1,6 +1,7 @@ # IamPermissionsAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -57,7 +58,7 @@ Other parameters are passed through a pointer to a apiListPermissionsRequest str ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/IamRolesAPI.md b/docs/IamRolesAPI.md index 1db1ed8..e3496cb 100644 --- a/docs/IamRolesAPI.md +++ b/docs/IamRolesAPI.md @@ -1,6 +1,7 @@ # IamRolesAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -73,7 +74,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -136,7 +137,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -201,7 +202,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -268,7 +269,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -335,7 +336,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -399,7 +400,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -465,7 +466,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -533,7 +534,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/IamServiceGroupsAPI.md b/docs/IamServiceGroupsAPI.md index 011697a..6735890 100644 --- a/docs/IamServiceGroupsAPI.md +++ b/docs/IamServiceGroupsAPI.md @@ -1,6 +1,7 @@ # IamServiceGroupsAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -73,7 +74,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -136,7 +137,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -201,7 +202,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -268,7 +269,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -337,7 +338,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -401,7 +402,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -467,7 +468,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -535,7 +536,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/IamUserGroupsAPI.md b/docs/IamUserGroupsAPI.md index 29737e6..bba69de 100644 --- a/docs/IamUserGroupsAPI.md +++ b/docs/IamUserGroupsAPI.md @@ -1,6 +1,7 @@ # IamUserGroupsAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -79,7 +80,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -147,7 +148,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -215,7 +216,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -278,7 +279,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -343,7 +344,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -410,7 +411,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -479,7 +480,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -548,7 +549,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -617,7 +618,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -681,7 +682,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -747,7 +748,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -813,7 +814,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -879,7 +880,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -947,7 +948,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/ImageOptimizerDefaultSettingsAPI.md b/docs/ImageOptimizerDefaultSettingsAPI.md new file mode 100644 index 0000000..6c6d325 --- /dev/null +++ b/docs/ImageOptimizerDefaultSettingsAPI.md @@ -0,0 +1,149 @@ +# ImageOptimizerDefaultSettingsAPI + +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` + +Method | HTTP request | Description +------------- | ------------- | ------------- +[**GetDefaultSettings**](ImageOptimizerDefaultSettingsAPI.md#GetDefaultSettings) | **GET** `/service/{service_id}/version/{version_id}/image_optimizer_default_settings` | Get current Image Optimizer Default Settings +[**UpdateDefaultSettings**](ImageOptimizerDefaultSettingsAPI.md#UpdateDefaultSettings) | **PATCH** `/service/{service_id}/version/{version_id}/image_optimizer_default_settings` | Update Image Optimizer Default Settings + + + +## GetDefaultSettings + +Get current Image Optimizer Default Settings + + + +### Example + +```go +package main + +import ( + "context" + "fmt" + "os" + "github.com/fastly/fastly-go/fastly" +) + +func main() { + serviceID := "serviceId_example" // string | Alphanumeric string identifying the service. + versionID := int32(56) // int32 | Integer identifying a service version. + + cfg := fastly.NewConfiguration() + apiClient := fastly.NewAPIClient(cfg) + ctx := fastly.NewAPIKeyContextFromEnv("FASTLY_API_TOKEN") + resp, r, err := apiClient.ImageOptimizerDefaultSettingsAPI.GetDefaultSettings(ctx, serviceID, versionID).Execute() + if err != nil { + fmt.Fprintf(os.Stderr, "Error when calling `ImageOptimizerDefaultSettingsAPI.GetDefaultSettings`: %v\n", err) + fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) + } + // response from `GetDefaultSettings`: DefaultSettingsResponse + fmt.Fprintf(os.Stdout, "Response from `ImageOptimizerDefaultSettingsAPI.GetDefaultSettings`: %v\n", resp) +} +``` + +### Path Parameters + + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- +**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc. +**serviceID** | **string** | Alphanumeric string identifying the service. | +**versionID** | **int32** | Integer identifying a service version. | + +### Other Parameters + +Other parameters are passed through a pointer to a apiGetDefaultSettingsRequest struct via the builder pattern + + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + + +### Return type + +[**DefaultSettingsResponse**](DefaultSettingsResponse.md) + +### Authorization + +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) + +### HTTP request headers + +- **Content-Type**: Not defined +- **Accept**: application/json, application/problem+json + +[Back to top](#) | [Back to API list](../README.md#documentation-for-api-endpoints) | [Back to README](../README.md) + + +## UpdateDefaultSettings + +Update Image Optimizer Default Settings + + + +### Example + +```go +package main + +import ( + "context" + "fmt" + "os" + "github.com/fastly/fastly-go/fastly" +) + +func main() { + serviceID := "serviceId_example" // string | Alphanumeric string identifying the service. + versionID := int32(56) // int32 | Integer identifying a service version. + defaultSettings := *openapiclient.NewDefaultSettings() // DefaultSettings | (optional) + + cfg := fastly.NewConfiguration() + apiClient := fastly.NewAPIClient(cfg) + ctx := fastly.NewAPIKeyContextFromEnv("FASTLY_API_TOKEN") + resp, r, err := apiClient.ImageOptimizerDefaultSettingsAPI.UpdateDefaultSettings(ctx, serviceID, versionID).DefaultSettings(defaultSettings).Execute() + if err != nil { + fmt.Fprintf(os.Stderr, "Error when calling `ImageOptimizerDefaultSettingsAPI.UpdateDefaultSettings`: %v\n", err) + fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) + } + // response from `UpdateDefaultSettings`: DefaultSettingsResponse + fmt.Fprintf(os.Stdout, "Response from `ImageOptimizerDefaultSettingsAPI.UpdateDefaultSettings`: %v\n", resp) +} +``` + +### Path Parameters + + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- +**ctx** | **context.Context** | context for authentication, logging, cancellation, deadlines, tracing, etc. +**serviceID** | **string** | Alphanumeric string identifying the service. | +**versionID** | **int32** | Integer identifying a service version. | + +### Other Parameters + +Other parameters are passed through a pointer to a apiUpdateDefaultSettingsRequest struct via the builder pattern + + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **defaultSettings** | [**DefaultSettings**](DefaultSettings.md) | | + +### Return type + +[**DefaultSettingsResponse**](DefaultSettingsResponse.md) + +### Authorization + +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) + +### HTTP request headers + +- **Content-Type**: application/json +- **Accept**: application/json, application/problem+json + +[Back to top](#) | [Back to API list](../README.md#documentation-for-api-endpoints) | [Back to README](../README.md) diff --git a/docs/InvitationsAPI.md b/docs/InvitationsAPI.md index 2e0fe6d..e42717f 100644 --- a/docs/InvitationsAPI.md +++ b/docs/InvitationsAPI.md @@ -1,6 +1,7 @@ # InvitationsAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -63,7 +64,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -128,7 +129,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -192,7 +193,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/KvStoreAPI.md b/docs/KvStoreAPI.md index 1d25b39..4752253 100644 --- a/docs/KvStoreAPI.md +++ b/docs/KvStoreAPI.md @@ -1,6 +1,7 @@ # KvStoreAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -65,7 +66,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -130,7 +131,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -197,7 +198,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -261,7 +262,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/KvStoreItemAPI.md b/docs/KvStoreItemAPI.md index 996c575..a5362d5 100644 --- a/docs/KvStoreItemAPI.md +++ b/docs/KvStoreItemAPI.md @@ -1,6 +1,7 @@ # KvStoreItemAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -68,7 +69,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -138,7 +139,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -207,7 +208,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -284,7 +285,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LegacyWafConfigurationSetsAPI.md b/docs/LegacyWafConfigurationSetsAPI.md index 683d6c2..ecfb7b4 100644 --- a/docs/LegacyWafConfigurationSetsAPI.md +++ b/docs/LegacyWafConfigurationSetsAPI.md @@ -1,6 +1,7 @@ # LegacyWafConfigurationSetsAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -59,7 +60,7 @@ Other parameters are passed through a pointer to a apiListWafConfigSetsRequest s ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -126,7 +127,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -194,7 +195,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LegacyWafFirewallAPI.md b/docs/LegacyWafFirewallAPI.md index 3a4440a..0469b7c 100644 --- a/docs/LegacyWafFirewallAPI.md +++ b/docs/LegacyWafFirewallAPI.md @@ -1,6 +1,7 @@ # LegacyWafFirewallAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -75,7 +76,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -143,7 +144,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -211,7 +212,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -279,7 +280,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -350,7 +351,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -416,7 +417,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -488,7 +489,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -560,7 +561,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LegacyWafOwaspAPI.md b/docs/LegacyWafOwaspAPI.md index 4238b02..1a0ee34 100644 --- a/docs/LegacyWafOwaspAPI.md +++ b/docs/LegacyWafOwaspAPI.md @@ -1,6 +1,7 @@ # LegacyWafOwaspAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -70,7 +71,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -139,7 +140,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -209,7 +210,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LegacyWafRuleAPI.md b/docs/LegacyWafRuleAPI.md index 7a4dc9e..764a58c 100644 --- a/docs/LegacyWafRuleAPI.md +++ b/docs/LegacyWafRuleAPI.md @@ -1,6 +1,7 @@ # LegacyWafRuleAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -70,7 +71,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -139,7 +140,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -206,7 +207,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -275,7 +276,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LegacyWafRuleStatusAPI.md b/docs/LegacyWafRuleStatusAPI.md index 75836d3..b3648c6 100644 --- a/docs/LegacyWafRuleStatusAPI.md +++ b/docs/LegacyWafRuleStatusAPI.md @@ -1,6 +1,7 @@ # LegacyWafRuleStatusAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -72,7 +73,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -149,7 +150,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -221,7 +222,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -293,7 +294,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LegacyWafRulesetAPI.md b/docs/LegacyWafRulesetAPI.md index df3a165..3bbcbf1 100644 --- a/docs/LegacyWafRulesetAPI.md +++ b/docs/LegacyWafRulesetAPI.md @@ -1,6 +1,7 @@ # LegacyWafRulesetAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -69,7 +70,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -138,7 +139,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -208,7 +209,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LegacyWafTagAPI.md b/docs/LegacyWafTagAPI.md index 80a7b33..f472f30 100644 --- a/docs/LegacyWafTagAPI.md +++ b/docs/LegacyWafTagAPI.md @@ -1,6 +1,7 @@ # LegacyWafTagAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -64,7 +65,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LegacyWafUpdateStatusAPI.md b/docs/LegacyWafUpdateStatusAPI.md index 669ad02..e259b23 100644 --- a/docs/LegacyWafUpdateStatusAPI.md +++ b/docs/LegacyWafUpdateStatusAPI.md @@ -1,6 +1,7 @@ # LegacyWafUpdateStatusAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -70,7 +71,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -142,7 +143,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LoggingAzureblobAPI.md b/docs/LoggingAzureblobAPI.md index 77b7000..dd466b9 100644 --- a/docs/LoggingAzureblobAPI.md +++ b/docs/LoggingAzureblobAPI.md @@ -1,6 +1,7 @@ # LoggingAzureblobAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -87,7 +88,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -158,7 +159,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -229,7 +230,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -298,7 +299,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -385,7 +386,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LoggingBigqueryAPI.md b/docs/LoggingBigqueryAPI.md index 9792e6a..2f6c6d5 100644 --- a/docs/LoggingBigqueryAPI.md +++ b/docs/LoggingBigqueryAPI.md @@ -1,6 +1,7 @@ # LoggingBigqueryAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -83,7 +84,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -154,7 +155,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -225,7 +226,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -294,7 +295,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -377,7 +378,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LoggingCloudfilesAPI.md b/docs/LoggingCloudfilesAPI.md index 135f4fb..e80dd62 100644 --- a/docs/LoggingCloudfilesAPI.md +++ b/docs/LoggingCloudfilesAPI.md @@ -1,6 +1,7 @@ # LoggingCloudfilesAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -87,7 +88,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -158,7 +159,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -229,7 +230,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -298,7 +299,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -385,7 +386,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LoggingDatadogAPI.md b/docs/LoggingDatadogAPI.md index 7c9e40c..2d3ab07 100644 --- a/docs/LoggingDatadogAPI.md +++ b/docs/LoggingDatadogAPI.md @@ -1,6 +1,7 @@ # LoggingDatadogAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -78,7 +79,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -149,7 +150,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -220,7 +221,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -289,7 +290,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -367,7 +368,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LoggingDigitaloceanAPI.md b/docs/LoggingDigitaloceanAPI.md index dc82a32..7053abb 100644 --- a/docs/LoggingDigitaloceanAPI.md +++ b/docs/LoggingDigitaloceanAPI.md @@ -1,6 +1,7 @@ # LoggingDigitaloceanAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -87,7 +88,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -158,7 +159,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -229,7 +230,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -298,7 +299,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -385,7 +386,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LoggingElasticsearchAPI.md b/docs/LoggingElasticsearchAPI.md index 9f2f22c..28688c7 100644 --- a/docs/LoggingElasticsearchAPI.md +++ b/docs/LoggingElasticsearchAPI.md @@ -1,6 +1,7 @@ # LoggingElasticsearchAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -87,7 +88,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -158,7 +159,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -229,7 +230,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -298,7 +299,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -385,7 +386,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LoggingFtpAPI.md b/docs/LoggingFtpAPI.md index c8336d8..4d5a67a 100644 --- a/docs/LoggingFtpAPI.md +++ b/docs/LoggingFtpAPI.md @@ -1,6 +1,7 @@ # LoggingFtpAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -89,7 +90,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -160,7 +161,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -231,7 +232,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -300,7 +301,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -389,7 +390,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LoggingGcsAPI.md b/docs/LoggingGcsAPI.md index f015f86..a1be6e9 100644 --- a/docs/LoggingGcsAPI.md +++ b/docs/LoggingGcsAPI.md @@ -1,6 +1,7 @@ # LoggingGcsAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -88,7 +89,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -159,7 +160,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -230,7 +231,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -299,7 +300,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -387,7 +388,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LoggingHerokuAPI.md b/docs/LoggingHerokuAPI.md index a7cbb2f..2c39033 100644 --- a/docs/LoggingHerokuAPI.md +++ b/docs/LoggingHerokuAPI.md @@ -1,6 +1,7 @@ # LoggingHerokuAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -78,7 +79,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -149,7 +150,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -220,7 +221,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -289,7 +290,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -367,7 +368,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LoggingHoneycombAPI.md b/docs/LoggingHoneycombAPI.md index 7b3855a..d64976e 100644 --- a/docs/LoggingHoneycombAPI.md +++ b/docs/LoggingHoneycombAPI.md @@ -1,6 +1,7 @@ # LoggingHoneycombAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -78,7 +79,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -149,7 +150,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -220,7 +221,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -289,7 +290,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -367,7 +368,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LoggingHttpsAPI.md b/docs/LoggingHttpsAPI.md index f7cfb88..e024c4f 100644 --- a/docs/LoggingHttpsAPI.md +++ b/docs/LoggingHttpsAPI.md @@ -1,6 +1,7 @@ # LoggingHTTPSAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -89,7 +90,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -160,7 +161,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -231,7 +232,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -300,7 +301,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -389,7 +390,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LoggingKafkaAPI.md b/docs/LoggingKafkaAPI.md index 9dbc1b3..6c028bd 100644 --- a/docs/LoggingKafkaAPI.md +++ b/docs/LoggingKafkaAPI.md @@ -1,6 +1,7 @@ # LoggingKafkaAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -90,7 +91,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -161,7 +162,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -232,7 +233,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -301,7 +302,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -372,7 +373,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LoggingKinesisAPI.md b/docs/LoggingKinesisAPI.md index 457e0d5..0602191 100644 --- a/docs/LoggingKinesisAPI.md +++ b/docs/LoggingKinesisAPI.md @@ -1,6 +1,7 @@ # LoggingKinesisAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -35,7 +36,7 @@ func main() { versionID := int32(56) // int32 | Integer identifying a service version. name := "name_example" // string | The name for the real-time logging configuration. (optional) placement := openapiclient.logging_placement("none") // LoggingPlacement | (optional) - format := "format_example" // string | A Fastly [log format string](https://docs.fastly.com/en/guides/custom-log-formats). Must produce valid JSON that Kinesis can ingest. (optional) (default to "{\"timestamp\":\"%{begin:%Y-%m-%dT%H:%M:%S}t\",\"time_elapsed\":\"%{time.elapsed.usec}V\",\"is_tls\":\"%{if(req.is_ssl, \\\"true\\\", \\\"false\\\")}V\",\"client_ip\":\"%{req.http.Fastly-Client-IP}V\",\"geo_city\":\"%{client.geo.city}V\",\"geo_country_code\":\"%{client.geo.country_code}V\",\"request\":\"%{req.request}V\",\"host\":\"%{req.http.Fastly-Orig-Host}V\",\"url\":\"%{json.escape(req.url)}V\",\"request_referer\":\"%{json.escape(req.http.Referer)}V\",\"request_user_agent\":\"%{json.escape(req.http.User-Agent)}V\",\"request_accept_language\":\"%{json.escape(req.http.Accept-Language)}V\",\"request_accept_charset\":\"%{json.escape(req.http.Accept-Charset)}V\",\"cache_status\":\"%{regsub(fastly_info.state, \\\"^(HIT-(SYNTH)|(HITPASS|HIT|MISS|PASS|ERROR|PIPE)).*\\\", \\\"\\\\2\\\\3\\\") }V\"}") + format := "format_example" // string | A Fastly [log format string](https://docs.fastly.com/en/guides/custom-log-formats). (optional) (default to "{\"timestamp\":\"%{begin:%Y-%m-%dT%H:%M:%S}t\",\"time_elapsed\":\"%{time.elapsed.usec}V\",\"is_tls\":\"%{if(req.is_ssl, \\\"true\\\", \\\"false\\\")}V\",\"client_ip\":\"%{req.http.Fastly-Client-IP}V\",\"geo_city\":\"%{client.geo.city}V\",\"geo_country_code\":\"%{client.geo.country_code}V\",\"request\":\"%{req.request}V\",\"host\":\"%{req.http.Fastly-Orig-Host}V\",\"url\":\"%{json.escape(req.url)}V\",\"request_referer\":\"%{json.escape(req.http.Referer)}V\",\"request_user_agent\":\"%{json.escape(req.http.User-Agent)}V\",\"request_accept_language\":\"%{json.escape(req.http.Accept-Language)}V\",\"request_accept_charset\":\"%{json.escape(req.http.Accept-Charset)}V\",\"cache_status\":\"%{regsub(fastly_info.state, \\\"^(HIT-(SYNTH)|(HITPASS|HIT|MISS|PASS|ERROR|PIPE)).*\\\", \\\"\\\\2\\\\3\\\") }V\"}") topic := "topic_example" // string | The Amazon Kinesis stream to send logs to. Required. (optional) region := openapiclient.aws_region("us-east-1") // AwsRegion | (optional) secretKey := "secretKey_example" // string | The secret key associated with the target Amazon Kinesis stream. Not required if `iam_role` is specified. (optional) @@ -72,7 +73,7 @@ Other parameters are passed through a pointer to a apiCreateLogKinesisRequest st Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **name** | **string** | The name for the real-time logging configuration. | **placement** | [**LoggingPlacement**](LoggingPlacement.md) | | **format** | **string** | A Fastly [log format string](https://docs.fastly.com/en/guides/custom-log-formats). Must produce valid JSON that Kinesis can ingest. | [default to "{\"timestamp\":\"%{begin:%Y-%m-%dT%H:%M:%S}t\",\"time_elapsed\":\"%{time.elapsed.usec}V\",\"is_tls\":\"%{if(req.is_ssl, \\\"true\\\", \\\"false\\\")}V\",\"client_ip\":\"%{req.http.Fastly-Client-IP}V\",\"geo_city\":\"%{client.geo.city}V\",\"geo_country_code\":\"%{client.geo.country_code}V\",\"request\":\"%{req.request}V\",\"host\":\"%{req.http.Fastly-Orig-Host}V\",\"url\":\"%{json.escape(req.url)}V\",\"request_referer\":\"%{json.escape(req.http.Referer)}V\",\"request_user_agent\":\"%{json.escape(req.http.User-Agent)}V\",\"request_accept_language\":\"%{json.escape(req.http.Accept-Language)}V\",\"request_accept_charset\":\"%{json.escape(req.http.Accept-Charset)}V\",\"cache_status\":\"%{regsub(fastly_info.state, \\\"^(HIT-(SYNTH)|(HITPASS|HIT|MISS|PASS|ERROR|PIPE)).*\\\", \\\"\\\\2\\\\3\\\") }V\"}"] **topic** | **string** | The Amazon Kinesis stream to send logs to. Required. | **region** | [**AwsRegion**](AwsRegion.md) | | **secretKey** | **string** | The secret key associated with the target Amazon Kinesis stream. Not required if `iam_role` is specified. | **accessKey** | **string** | The access key associated with the target Amazon Kinesis stream. Not required if `iam_role` is specified. | **iamRole** | **string** | The ARN for an IAM role granting Fastly access to the target Amazon Kinesis stream. Not required if `access_key` and `secret_key` are provided. | **formatVersion** | **int32** | The version of the custom logging format used for the configured endpoint. The logging call gets placed by default in `vcl_log` if `format_version` is set to `2` and in `vcl_deliver` if `format_version` is set to `1`. | [default to 2] + **name** | **string** | The name for the real-time logging configuration. | **placement** | [**LoggingPlacement**](LoggingPlacement.md) | | **format** | **string** | A Fastly [log format string](https://docs.fastly.com/en/guides/custom-log-formats). | [default to "{\"timestamp\":\"%{begin:%Y-%m-%dT%H:%M:%S}t\",\"time_elapsed\":\"%{time.elapsed.usec}V\",\"is_tls\":\"%{if(req.is_ssl, \\\"true\\\", \\\"false\\\")}V\",\"client_ip\":\"%{req.http.Fastly-Client-IP}V\",\"geo_city\":\"%{client.geo.city}V\",\"geo_country_code\":\"%{client.geo.country_code}V\",\"request\":\"%{req.request}V\",\"host\":\"%{req.http.Fastly-Orig-Host}V\",\"url\":\"%{json.escape(req.url)}V\",\"request_referer\":\"%{json.escape(req.http.Referer)}V\",\"request_user_agent\":\"%{json.escape(req.http.User-Agent)}V\",\"request_accept_language\":\"%{json.escape(req.http.Accept-Language)}V\",\"request_accept_charset\":\"%{json.escape(req.http.Accept-Charset)}V\",\"cache_status\":\"%{regsub(fastly_info.state, \\\"^(HIT-(SYNTH)|(HITPASS|HIT|MISS|PASS|ERROR|PIPE)).*\\\", \\\"\\\\2\\\\3\\\") }V\"}"] **topic** | **string** | The Amazon Kinesis stream to send logs to. Required. | **region** | [**AwsRegion**](AwsRegion.md) | | **secretKey** | **string** | The secret key associated with the target Amazon Kinesis stream. Not required if `iam_role` is specified. | **accessKey** | **string** | The access key associated with the target Amazon Kinesis stream. Not required if `iam_role` is specified. | **iamRole** | **string** | The ARN for an IAM role granting Fastly access to the target Amazon Kinesis stream. Not required if `access_key` and `secret_key` are provided. | **formatVersion** | **int32** | The version of the custom logging format used for the configured endpoint. The logging call gets placed by default in `vcl_log` if `format_version` is set to `2` and in `vcl_deliver` if `format_version` is set to `1`. | [default to 2] ### Return type @@ -80,7 +81,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -151,7 +152,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -222,7 +223,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -291,7 +292,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -362,7 +363,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LoggingKinesisAdditional.md b/docs/LoggingKinesisAdditional.md index 7ed3f83..be6c67a 100644 --- a/docs/LoggingKinesisAdditional.md +++ b/docs/LoggingKinesisAdditional.md @@ -6,7 +6,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Name** | Pointer to **string** | The name for the real-time logging configuration. | [optional] **Placement** | Pointer to [**NullableLoggingPlacement**](LoggingPlacement.md) | | [optional] -**Format** | Pointer to **string** | A Fastly [log format string](https://docs.fastly.com/en/guides/custom-log-formats). Must produce valid JSON that Kinesis can ingest. | [optional] [default to "{\"timestamp\":\"%{begin:%Y-%m-%dT%H:%M:%S}t\",\"time_elapsed\":\"%{time.elapsed.usec}V\",\"is_tls\":\"%{if(req.is_ssl, \\\"true\\\", \\\"false\\\")}V\",\"client_ip\":\"%{req.http.Fastly-Client-IP}V\",\"geo_city\":\"%{client.geo.city}V\",\"geo_country_code\":\"%{client.geo.country_code}V\",\"request\":\"%{req.request}V\",\"host\":\"%{req.http.Fastly-Orig-Host}V\",\"url\":\"%{json.escape(req.url)}V\",\"request_referer\":\"%{json.escape(req.http.Referer)}V\",\"request_user_agent\":\"%{json.escape(req.http.User-Agent)}V\",\"request_accept_language\":\"%{json.escape(req.http.Accept-Language)}V\",\"request_accept_charset\":\"%{json.escape(req.http.Accept-Charset)}V\",\"cache_status\":\"%{regsub(fastly_info.state, \\\"^(HIT-(SYNTH)|(HITPASS|HIT|MISS|PASS|ERROR|PIPE)).*\\\", \\\"\\\\2\\\\3\\\") }V\"}"] +**Format** | Pointer to **string** | A Fastly [log format string](https://docs.fastly.com/en/guides/custom-log-formats). | [optional] [default to "{\"timestamp\":\"%{begin:%Y-%m-%dT%H:%M:%S}t\",\"time_elapsed\":\"%{time.elapsed.usec}V\",\"is_tls\":\"%{if(req.is_ssl, \\\"true\\\", \\\"false\\\")}V\",\"client_ip\":\"%{req.http.Fastly-Client-IP}V\",\"geo_city\":\"%{client.geo.city}V\",\"geo_country_code\":\"%{client.geo.country_code}V\",\"request\":\"%{req.request}V\",\"host\":\"%{req.http.Fastly-Orig-Host}V\",\"url\":\"%{json.escape(req.url)}V\",\"request_referer\":\"%{json.escape(req.http.Referer)}V\",\"request_user_agent\":\"%{json.escape(req.http.User-Agent)}V\",\"request_accept_language\":\"%{json.escape(req.http.Accept-Language)}V\",\"request_accept_charset\":\"%{json.escape(req.http.Accept-Charset)}V\",\"cache_status\":\"%{regsub(fastly_info.state, \\\"^(HIT-(SYNTH)|(HITPASS|HIT|MISS|PASS|ERROR|PIPE)).*\\\", \\\"\\\\2\\\\3\\\") }V\"}"] **Topic** | Pointer to **string** | The Amazon Kinesis stream to send logs to. Required. | [optional] **Region** | Pointer to [**AwsRegion**](AwsRegion.md) | | [optional] **SecretKey** | Pointer to **NullableString** | The secret key associated with the target Amazon Kinesis stream. Not required if `iam_role` is specified. | [optional] diff --git a/docs/LoggingKinesisResponse.md b/docs/LoggingKinesisResponse.md index 40f1bce..a40828f 100644 --- a/docs/LoggingKinesisResponse.md +++ b/docs/LoggingKinesisResponse.md @@ -6,7 +6,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Name** | Pointer to **string** | The name for the real-time logging configuration. | [optional] **Placement** | Pointer to [**NullableLoggingPlacement**](LoggingPlacement.md) | | [optional] -**Format** | Pointer to **string** | A Fastly [log format string](https://docs.fastly.com/en/guides/custom-log-formats). Must produce valid JSON that Kinesis can ingest. | [optional] [default to "{\"timestamp\":\"%{begin:%Y-%m-%dT%H:%M:%S}t\",\"time_elapsed\":\"%{time.elapsed.usec}V\",\"is_tls\":\"%{if(req.is_ssl, \\\"true\\\", \\\"false\\\")}V\",\"client_ip\":\"%{req.http.Fastly-Client-IP}V\",\"geo_city\":\"%{client.geo.city}V\",\"geo_country_code\":\"%{client.geo.country_code}V\",\"request\":\"%{req.request}V\",\"host\":\"%{req.http.Fastly-Orig-Host}V\",\"url\":\"%{json.escape(req.url)}V\",\"request_referer\":\"%{json.escape(req.http.Referer)}V\",\"request_user_agent\":\"%{json.escape(req.http.User-Agent)}V\",\"request_accept_language\":\"%{json.escape(req.http.Accept-Language)}V\",\"request_accept_charset\":\"%{json.escape(req.http.Accept-Charset)}V\",\"cache_status\":\"%{regsub(fastly_info.state, \\\"^(HIT-(SYNTH)|(HITPASS|HIT|MISS|PASS|ERROR|PIPE)).*\\\", \\\"\\\\2\\\\3\\\") }V\"}"] +**Format** | Pointer to **string** | A Fastly [log format string](https://docs.fastly.com/en/guides/custom-log-formats). | [optional] [default to "{\"timestamp\":\"%{begin:%Y-%m-%dT%H:%M:%S}t\",\"time_elapsed\":\"%{time.elapsed.usec}V\",\"is_tls\":\"%{if(req.is_ssl, \\\"true\\\", \\\"false\\\")}V\",\"client_ip\":\"%{req.http.Fastly-Client-IP}V\",\"geo_city\":\"%{client.geo.city}V\",\"geo_country_code\":\"%{client.geo.country_code}V\",\"request\":\"%{req.request}V\",\"host\":\"%{req.http.Fastly-Orig-Host}V\",\"url\":\"%{json.escape(req.url)}V\",\"request_referer\":\"%{json.escape(req.http.Referer)}V\",\"request_user_agent\":\"%{json.escape(req.http.User-Agent)}V\",\"request_accept_language\":\"%{json.escape(req.http.Accept-Language)}V\",\"request_accept_charset\":\"%{json.escape(req.http.Accept-Charset)}V\",\"cache_status\":\"%{regsub(fastly_info.state, \\\"^(HIT-(SYNTH)|(HITPASS|HIT|MISS|PASS|ERROR|PIPE)).*\\\", \\\"\\\\2\\\\3\\\") }V\"}"] **Topic** | Pointer to **string** | The Amazon Kinesis stream to send logs to. Required. | [optional] **Region** | Pointer to [**AwsRegion**](AwsRegion.md) | | [optional] **SecretKey** | Pointer to **NullableString** | The secret key associated with the target Amazon Kinesis stream. Not required if `iam_role` is specified. | [optional] diff --git a/docs/LoggingLogentriesAPI.md b/docs/LoggingLogentriesAPI.md index a716010..53323e9 100644 --- a/docs/LoggingLogentriesAPI.md +++ b/docs/LoggingLogentriesAPI.md @@ -1,6 +1,7 @@ # LoggingLogentriesAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -80,7 +81,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -151,7 +152,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -222,7 +223,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -291,7 +292,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -371,7 +372,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LoggingLogglyAPI.md b/docs/LoggingLogglyAPI.md index 5a00f3f..c0fe6b1 100644 --- a/docs/LoggingLogglyAPI.md +++ b/docs/LoggingLogglyAPI.md @@ -1,6 +1,7 @@ # LoggingLogglyAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -77,7 +78,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -148,7 +149,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -219,7 +220,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -288,7 +289,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -365,7 +366,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LoggingLogshuttleAPI.md b/docs/LoggingLogshuttleAPI.md index 141a5d1..d3352f1 100644 --- a/docs/LoggingLogshuttleAPI.md +++ b/docs/LoggingLogshuttleAPI.md @@ -1,6 +1,7 @@ # LoggingLogshuttleAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -78,7 +79,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -149,7 +150,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -220,7 +221,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -289,7 +290,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -367,7 +368,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LoggingNewrelicAPI.md b/docs/LoggingNewrelicAPI.md index 573de23..e0fb8cd 100644 --- a/docs/LoggingNewrelicAPI.md +++ b/docs/LoggingNewrelicAPI.md @@ -1,6 +1,7 @@ # LoggingNewrelicAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -78,7 +79,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -149,7 +150,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -220,7 +221,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -289,7 +290,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -367,7 +368,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LoggingNewrelicotlpAPI.md b/docs/LoggingNewrelicotlpAPI.md index 0e178d4..9e375ae 100644 --- a/docs/LoggingNewrelicotlpAPI.md +++ b/docs/LoggingNewrelicotlpAPI.md @@ -1,6 +1,7 @@ # LoggingNewrelicotlpAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -79,7 +80,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -150,7 +151,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -221,7 +222,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -290,7 +291,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -369,7 +370,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LoggingOpenstackAPI.md b/docs/LoggingOpenstackAPI.md index 66e9815..d80a6a8 100644 --- a/docs/LoggingOpenstackAPI.md +++ b/docs/LoggingOpenstackAPI.md @@ -1,6 +1,7 @@ # LoggingOpenstackAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -87,7 +88,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -158,7 +159,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -229,7 +230,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -298,7 +299,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -385,7 +386,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LoggingPapertrailAPI.md b/docs/LoggingPapertrailAPI.md index 6bcf360..a7db998 100644 --- a/docs/LoggingPapertrailAPI.md +++ b/docs/LoggingPapertrailAPI.md @@ -1,6 +1,7 @@ # LoggingPapertrailAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -78,7 +79,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -149,7 +150,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -220,7 +221,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -289,7 +290,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -367,7 +368,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LoggingPubsubAPI.md b/docs/LoggingPubsubAPI.md index aa66723..2229380 100644 --- a/docs/LoggingPubsubAPI.md +++ b/docs/LoggingPubsubAPI.md @@ -1,6 +1,7 @@ # LoggingPubsubAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -81,7 +82,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -152,7 +153,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -223,7 +224,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -292,7 +293,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -373,7 +374,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LoggingS3API.md b/docs/LoggingS3API.md index 3edd099..7b9e7ea 100644 --- a/docs/LoggingS3API.md +++ b/docs/LoggingS3API.md @@ -1,6 +1,7 @@ # LoggingS3API -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -92,7 +93,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -163,7 +164,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -234,7 +235,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -303,7 +304,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -395,7 +396,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LoggingScalyrAPI.md b/docs/LoggingScalyrAPI.md index 2167abf..752b0ab 100644 --- a/docs/LoggingScalyrAPI.md +++ b/docs/LoggingScalyrAPI.md @@ -1,6 +1,7 @@ # LoggingScalyrAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -79,7 +80,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -150,7 +151,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -221,7 +222,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -290,7 +291,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -369,7 +370,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LoggingSftpAPI.md b/docs/LoggingSftpAPI.md index 8c602e1..69f0269 100644 --- a/docs/LoggingSftpAPI.md +++ b/docs/LoggingSftpAPI.md @@ -1,6 +1,7 @@ # LoggingSftpAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -89,7 +90,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -160,7 +161,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -231,7 +232,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -300,7 +301,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -389,7 +390,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LoggingSplunkAPI.md b/docs/LoggingSplunkAPI.md index f80a744..2d94de3 100644 --- a/docs/LoggingSplunkAPI.md +++ b/docs/LoggingSplunkAPI.md @@ -1,6 +1,7 @@ # LoggingSplunkAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -85,7 +86,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -156,7 +157,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -227,7 +228,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -296,7 +297,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -381,7 +382,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LoggingSumologicAPI.md b/docs/LoggingSumologicAPI.md index afa93f0..ef42c05 100644 --- a/docs/LoggingSumologicAPI.md +++ b/docs/LoggingSumologicAPI.md @@ -1,6 +1,7 @@ # LoggingSumologicAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -78,7 +79,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -149,7 +150,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -220,7 +221,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -289,7 +290,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -367,7 +368,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/LoggingSyslogAPI.md b/docs/LoggingSyslogAPI.md index b60996c..57b52e6 100644 --- a/docs/LoggingSyslogAPI.md +++ b/docs/LoggingSyslogAPI.md @@ -1,6 +1,7 @@ # LoggingSyslogAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -87,7 +88,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -158,7 +159,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -229,7 +230,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -298,7 +299,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -385,7 +386,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/MutualAuthenticationAPI.md b/docs/MutualAuthenticationAPI.md index 802b4ed..310b318 100644 --- a/docs/MutualAuthenticationAPI.md +++ b/docs/MutualAuthenticationAPI.md @@ -1,6 +1,7 @@ # MutualAuthenticationAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -65,7 +66,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -130,7 +131,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -198,7 +199,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -263,7 +264,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -331,7 +332,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/OriginInspectorHistoricalAPI.md b/docs/OriginInspectorHistoricalAPI.md index 881f943..4637c1e 100644 --- a/docs/OriginInspectorHistoricalAPI.md +++ b/docs/OriginInspectorHistoricalAPI.md @@ -1,6 +1,7 @@ # OriginInspectorHistoricalAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -75,7 +76,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/OriginInspectorRealtimeAPI.md b/docs/OriginInspectorRealtimeAPI.md index d555c9a..5d8eeb9 100644 --- a/docs/OriginInspectorRealtimeAPI.md +++ b/docs/OriginInspectorRealtimeAPI.md @@ -1,6 +1,7 @@ # OriginInspectorRealtimeAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -67,7 +68,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -136,7 +137,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -205,7 +206,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/PackageAPI.md b/docs/PackageAPI.md index 110de3d..23bae82 100644 --- a/docs/PackageAPI.md +++ b/docs/PackageAPI.md @@ -1,6 +1,7 @@ # PackageAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -68,7 +69,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -139,7 +140,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/PoolAPI.md b/docs/PoolAPI.md index c8ea7e9..6e89f10 100644 --- a/docs/PoolAPI.md +++ b/docs/PoolAPI.md @@ -1,6 +1,7 @@ # PoolAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -99,7 +100,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -170,7 +171,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -241,7 +242,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -310,7 +311,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -409,7 +410,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/PopAPI.md b/docs/PopAPI.md index 305b215..d0d43d8 100644 --- a/docs/PopAPI.md +++ b/docs/PopAPI.md @@ -1,6 +1,7 @@ # PopAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -57,7 +58,7 @@ Other parameters are passed through a pointer to a apiListPopsRequest struct via ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/PublicIpListAPI.md b/docs/PublicIpListAPI.md index b903027..c736d0f 100644 --- a/docs/PublicIpListAPI.md +++ b/docs/PublicIpListAPI.md @@ -1,6 +1,7 @@ # PublicIPListAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -57,7 +58,7 @@ Other parameters are passed through a pointer to a apiListFastlyIpsRequest struc ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/PublishAPI.md b/docs/PublishAPI.md index faf1437..bf4749b 100644 --- a/docs/PublishAPI.md +++ b/docs/PublishAPI.md @@ -1,6 +1,7 @@ # PublishAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -66,7 +67,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/PurgeAPI.md b/docs/PurgeAPI.md index 31dfeb8..db323d8 100644 --- a/docs/PurgeAPI.md +++ b/docs/PurgeAPI.md @@ -1,6 +1,7 @@ # PurgeAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -71,7 +72,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -138,7 +139,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -206,7 +207,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -276,7 +277,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/RateLimiterAPI.md b/docs/RateLimiterAPI.md index 40e4ff8..5a77ff8 100644 --- a/docs/RateLimiterAPI.md +++ b/docs/RateLimiterAPI.md @@ -1,6 +1,7 @@ # RateLimiterAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -82,7 +83,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -149,7 +150,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -216,7 +217,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -285,7 +286,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -363,7 +364,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/RealtimeAPI.md b/docs/RealtimeAPI.md index 12e9407..349962d 100644 --- a/docs/RealtimeAPI.md +++ b/docs/RealtimeAPI.md @@ -1,6 +1,7 @@ # RealtimeAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -67,7 +68,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -136,7 +137,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -205,7 +206,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/RequestSettingsAPI.md b/docs/RequestSettingsAPI.md index 0658ea1..67311bc 100644 --- a/docs/RequestSettingsAPI.md +++ b/docs/RequestSettingsAPI.md @@ -1,6 +1,7 @@ # RequestSettingsAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -71,7 +72,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -142,7 +143,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -213,7 +214,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -282,7 +283,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -365,7 +366,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/ResourceAPI.md b/docs/ResourceAPI.md index 41b10af..9c1a189 100644 --- a/docs/ResourceAPI.md +++ b/docs/ResourceAPI.md @@ -1,6 +1,7 @@ # ResourceAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -73,7 +74,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -144,7 +145,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -215,7 +216,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -284,7 +285,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -357,7 +358,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/ResourceResponse.md b/docs/ResourceResponse.md index 3f561a6..be15da2 100644 --- a/docs/ResourceResponse.md +++ b/docs/ResourceResponse.md @@ -13,7 +13,7 @@ Name | Type | Description | Notes **Href** | Pointer to **string** | The path to the resource. | [optional] **ServiceID** | Pointer to **string** | Alphanumeric string identifying the service. | [optional] **Version** | Pointer to **int32** | Integer identifying a service version. | [optional] -**ResourceType** | Pointer to [**TypeResource**](TypeResource.md) | | [optional] [default to TYPERESOURCE_OBJECT_STORE] +**ResourceType** | Pointer to [**TypeResource**](TypeResource.md) | | [optional] ## Methods diff --git a/docs/ResourceResponseAllOf.md b/docs/ResourceResponseAllOf.md index fa36681..981ca2b 100644 --- a/docs/ResourceResponseAllOf.md +++ b/docs/ResourceResponseAllOf.md @@ -8,7 +8,7 @@ Name | Type | Description | Notes **Href** | Pointer to **string** | The path to the resource. | [optional] **ServiceID** | Pointer to **string** | Alphanumeric string identifying the service. | [optional] **Version** | Pointer to **int32** | Integer identifying a service version. | [optional] -**ResourceType** | Pointer to [**TypeResource**](TypeResource.md) | | [optional] [default to TYPERESOURCE_OBJECT_STORE] +**ResourceType** | Pointer to [**TypeResource**](TypeResource.md) | | [optional] ## Methods diff --git a/docs/ResponseObjectAPI.md b/docs/ResponseObjectAPI.md index 0aa809a..b6d9687 100644 --- a/docs/ResponseObjectAPI.md +++ b/docs/ResponseObjectAPI.md @@ -1,6 +1,7 @@ # ResponseObjectAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -72,7 +73,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -143,7 +144,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -214,7 +215,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -283,7 +284,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -355,7 +356,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/SecretStoreAPI.md b/docs/SecretStoreAPI.md index dc500ca..878dfa7 100644 --- a/docs/SecretStoreAPI.md +++ b/docs/SecretStoreAPI.md @@ -1,6 +1,7 @@ # SecretStoreAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -62,7 +63,7 @@ Other parameters are passed through a pointer to a apiClientKeyRequest struct vi ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -125,7 +126,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -190,7 +191,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -257,7 +258,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -322,7 +323,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -381,7 +382,7 @@ Other parameters are passed through a pointer to a apiSigningKeyRequest struct v ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/SecretStoreItemAPI.md b/docs/SecretStoreItemAPI.md index fa945c2..a385378 100644 --- a/docs/SecretStoreItemAPI.md +++ b/docs/SecretStoreItemAPI.md @@ -1,6 +1,7 @@ # SecretStoreItemAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -71,7 +72,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -138,7 +139,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -207,7 +208,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -276,7 +277,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -344,7 +345,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -412,7 +413,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/ServerAPI.md b/docs/ServerAPI.md index d148e3f..de3f287 100644 --- a/docs/ServerAPI.md +++ b/docs/ServerAPI.md @@ -1,6 +1,7 @@ # ServerAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -78,7 +79,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -149,7 +150,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -220,7 +221,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -289,7 +290,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -367,7 +368,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/ServiceAPI.md b/docs/ServiceAPI.md index 0958ffa..95f04ef 100644 --- a/docs/ServiceAPI.md +++ b/docs/ServiceAPI.md @@ -1,6 +1,7 @@ # ServiceAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -71,7 +72,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -138,7 +139,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -205,7 +206,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -273,7 +274,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -340,7 +341,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -406,7 +407,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -469,7 +470,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -539,7 +540,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/ServiceAuthorizationsAPI.md b/docs/ServiceAuthorizationsAPI.md index b6df8c0..50cc917 100644 --- a/docs/ServiceAuthorizationsAPI.md +++ b/docs/ServiceAuthorizationsAPI.md @@ -1,6 +1,7 @@ # ServiceAuthorizationsAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -67,7 +68,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -132,7 +133,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -195,7 +196,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -259,7 +260,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -326,7 +327,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -394,7 +395,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -457,7 +458,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/SettingsAPI.md b/docs/SettingsAPI.md index 6945c7f..6795a45 100644 --- a/docs/SettingsAPI.md +++ b/docs/SettingsAPI.md @@ -1,6 +1,7 @@ # SettingsAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -68,7 +69,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -141,7 +142,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/SnippetAPI.md b/docs/SnippetAPI.md index a529c95..425c6f6 100644 --- a/docs/SnippetAPI.md +++ b/docs/SnippetAPI.md @@ -1,6 +1,7 @@ # SnippetAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -78,7 +79,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -149,7 +150,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -220,7 +221,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -289,7 +290,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -358,7 +359,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -429,7 +430,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -503,7 +504,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/StarAPI.md b/docs/StarAPI.md index 245c21f..ba9f63c 100644 --- a/docs/StarAPI.md +++ b/docs/StarAPI.md @@ -1,6 +1,7 @@ # StarAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -64,7 +65,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -129,7 +130,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -196,7 +197,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -255,7 +256,7 @@ Other parameters are passed through a pointer to a apiListServiceStarsRequest st ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/StatsAPI.md b/docs/StatsAPI.md index 884295d..ef8454c 100644 --- a/docs/StatsAPI.md +++ b/docs/StatsAPI.md @@ -1,6 +1,7 @@ # StatsAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -69,7 +70,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/SudoAPI.md b/docs/SudoAPI.md index f1d8550..82e7fd8 100644 --- a/docs/SudoAPI.md +++ b/docs/SudoAPI.md @@ -1,6 +1,7 @@ # SudoAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -61,7 +62,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/TlsActivationsAPI.md b/docs/TlsActivationsAPI.md index 146efb6..2dc03cc 100644 --- a/docs/TlsActivationsAPI.md +++ b/docs/TlsActivationsAPI.md @@ -1,6 +1,7 @@ # TLSActivationsAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -65,7 +66,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -130,7 +131,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -198,7 +199,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -266,7 +267,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -334,7 +335,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/TlsBulkCertificatesAPI.md b/docs/TlsBulkCertificatesAPI.md index 82289aa..9260b5c 100644 --- a/docs/TlsBulkCertificatesAPI.md +++ b/docs/TlsBulkCertificatesAPI.md @@ -1,6 +1,7 @@ # TLSBulkCertificatesAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -67,7 +68,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -134,7 +135,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -200,7 +201,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -268,7 +269,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -331,7 +332,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/TlsCertificatesAPI.md b/docs/TlsCertificatesAPI.md index 0304b5a..55e14dd 100644 --- a/docs/TlsCertificatesAPI.md +++ b/docs/TlsCertificatesAPI.md @@ -1,6 +1,7 @@ # TLSCertificatesAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -65,7 +66,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -130,7 +131,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -197,7 +198,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -266,7 +267,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -334,7 +335,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/TlsConfigurationsAPI.md b/docs/TlsConfigurationsAPI.md index 0ce3c56..692854e 100644 --- a/docs/TlsConfigurationsAPI.md +++ b/docs/TlsConfigurationsAPI.md @@ -1,6 +1,7 @@ # TLSConfigurationsAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -68,7 +69,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -134,7 +135,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -202,7 +203,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/TlsCsrsAPI.md b/docs/TlsCsrsAPI.md index ce547b1..0913d4a 100644 --- a/docs/TlsCsrsAPI.md +++ b/docs/TlsCsrsAPI.md @@ -1,6 +1,7 @@ # TLSCsrsAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -61,7 +62,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/TlsDomainsAPI.md b/docs/TlsDomainsAPI.md index ca66f45..c2edcad 100644 --- a/docs/TlsDomainsAPI.md +++ b/docs/TlsDomainsAPI.md @@ -1,6 +1,7 @@ # TLSDomainsAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -67,7 +68,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/TlsPrivateKeysAPI.md b/docs/TlsPrivateKeysAPI.md index 941e8db..7e6b605 100644 --- a/docs/TlsPrivateKeysAPI.md +++ b/docs/TlsPrivateKeysAPI.md @@ -1,6 +1,7 @@ # TLSPrivateKeysAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -64,7 +65,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -129,7 +130,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -196,7 +197,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -261,7 +262,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/TlsSubscriptionDataAttributes.md b/docs/TlsSubscriptionDataAttributes.md index c7588da..b5dedab 100644 --- a/docs/TlsSubscriptionDataAttributes.md +++ b/docs/TlsSubscriptionDataAttributes.md @@ -4,7 +4,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**CertificateAuthority** | Pointer to **string** | The entity that issues and certifies the TLS certificates for your subscription. | [optional] +**CertificateAuthority** | Pointer to **string** | The entity that issues and certifies the TLS certificates for your subscription, either `certainly`, `lets-encrypt`, or `globalsign`. To migrate the subscription from one certificate authority to another, such as to migrate from 'lets-encrypt' to 'certainly', pass `certificate_authority` to the PATCH endpoint. To migrate from 'globalsign' to 'certainly', contact Fastly Support. | [optional] ## Methods diff --git a/docs/TlsSubscriptionsAPI.md b/docs/TlsSubscriptionsAPI.md index c14f290..b16ec78 100644 --- a/docs/TlsSubscriptionsAPI.md +++ b/docs/TlsSubscriptionsAPI.md @@ -1,6 +1,7 @@ # TLSSubscriptionsAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -74,7 +75,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -138,7 +139,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -207,7 +208,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -272,7 +273,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -302,7 +303,7 @@ import ( func main() { tlsSubscriptionID := "tlsSubscriptionId_example" // string | Alphanumeric string identifying a TLS subscription. - include := "tls_authorizations" // string | Include related objects. Optional, comma-separated values. Permitted values: `tls_authorizations`, `tls_authorizations.globalsign_email_challenge`, and `tls_authorizations.self_managed_http_challenge`. (optional) + include := "tls_authorizations" // string | Include related objects. Optional, comma-separated values. Permitted values: `tls_authorizations`, `tls_authorizations.globalsign_email_challenge`, `tls_authorizations.self_managed_http_challenge`, and `tls_certificates`. (optional) cfg := fastly.NewConfiguration() apiClient := fastly.NewAPIClient(cfg) @@ -332,7 +333,7 @@ Other parameters are passed through a pointer to a apiGetTLSSubRequest struct vi Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **include** | **string** | Include related objects. Optional, comma-separated values. Permitted values: `tls_authorizations`, `tls_authorizations.globalsign_email_challenge`, and `tls_authorizations.self_managed_http_challenge`. | + **include** | **string** | Include related objects. Optional, comma-separated values. Permitted values: `tls_authorizations`, `tls_authorizations.globalsign_email_challenge`, `tls_authorizations.self_managed_http_challenge`, and `tls_certificates`. | ### Return type @@ -340,7 +341,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -372,7 +373,8 @@ func main() { filterState := "filterState_example" // string | Limit the returned subscriptions by state. Valid values are `pending`, `processing`, `issued`, `renewing`, and `failed`. Accepts parameters: `not` (e.g., `filter[state][not]=renewing`). (optional) filterTLSDomainsID := "filterTLSDomainsId_example" // string | Limit the returned subscriptions to those that include the specific domain. (optional) filterHasActiveOrder := true // bool | Limit the returned subscriptions to those that have currently active orders. Permitted values: `true`. (optional) - include := "tls_authorizations" // string | Include related objects. Optional, comma-separated values. Permitted values: `tls_authorizations`, `tls_authorizations.globalsign_email_challenge`, and `tls_authorizations.self_managed_http_challenge`. (optional) + filterCertificateAuthority := "filterCertificateAuthority_example" // string | Limit the returned subscriptions to a specific certification authority. Values may include `certainly`, `lets-encrypt`, or `globalsign`. (optional) + include := "tls_authorizations" // string | Include related objects. Optional, comma-separated values. Permitted values: `tls_authorizations`, `tls_authorizations.globalsign_email_challenge`, `tls_authorizations.self_managed_http_challenge`, and `tls_certificates`. (optional) pageNumber := int32(1) // int32 | Current page. (optional) pageSize := int32(20) // int32 | Number of records per page. (optional) (default to 20) sort := "created_at" // string | The order in which to list the results by creation date. (optional) (default to "created_at") @@ -380,7 +382,7 @@ func main() { cfg := fastly.NewConfiguration() apiClient := fastly.NewAPIClient(cfg) ctx := fastly.NewAPIKeyContextFromEnv("FASTLY_API_TOKEN") - resp, r, err := apiClient.TLSSubscriptionsAPI.ListTLSSubs(ctx).FilterState(filterState).FilterTLSDomainsID(filterTLSDomainsID).FilterHasActiveOrder(filterHasActiveOrder).Include(include).PageNumber(pageNumber).PageSize(pageSize).Sort(sort).Execute() + resp, r, err := apiClient.TLSSubscriptionsAPI.ListTLSSubs(ctx).FilterState(filterState).FilterTLSDomainsID(filterTLSDomainsID).FilterHasActiveOrder(filterHasActiveOrder).FilterCertificateAuthority(filterCertificateAuthority).Include(include).PageNumber(pageNumber).PageSize(pageSize).Sort(sort).Execute() if err != nil { fmt.Fprintf(os.Stderr, "Error when calling `TLSSubscriptionsAPI.ListTLSSubs`: %v\n", err) fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) @@ -401,7 +403,7 @@ Other parameters are passed through a pointer to a apiListTLSSubsRequest struct Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **filterState** | **string** | Limit the returned subscriptions by state. Valid values are `pending`, `processing`, `issued`, `renewing`, and `failed`. Accepts parameters: `not` (e.g., `filter[state][not]=renewing`). | **filterTLSDomainsID** | **string** | Limit the returned subscriptions to those that include the specific domain. | **filterHasActiveOrder** | **bool** | Limit the returned subscriptions to those that have currently active orders. Permitted values: `true`. | **include** | **string** | Include related objects. Optional, comma-separated values. Permitted values: `tls_authorizations`, `tls_authorizations.globalsign_email_challenge`, and `tls_authorizations.self_managed_http_challenge`. | **pageNumber** | **int32** | Current page. | **pageSize** | **int32** | Number of records per page. | [default to 20] **sort** | **string** | The order in which to list the results by creation date. | [default to "created_at"] + **filterState** | **string** | Limit the returned subscriptions by state. Valid values are `pending`, `processing`, `issued`, `renewing`, and `failed`. Accepts parameters: `not` (e.g., `filter[state][not]=renewing`). | **filterTLSDomainsID** | **string** | Limit the returned subscriptions to those that include the specific domain. | **filterHasActiveOrder** | **bool** | Limit the returned subscriptions to those that have currently active orders. Permitted values: `true`. | **filterCertificateAuthority** | **string** | Limit the returned subscriptions to a specific certification authority. Values may include `certainly`, `lets-encrypt`, or `globalsign`. | **include** | **string** | Include related objects. Optional, comma-separated values. Permitted values: `tls_authorizations`, `tls_authorizations.globalsign_email_challenge`, `tls_authorizations.self_managed_http_challenge`, and `tls_certificates`. | **pageNumber** | **int32** | Current page. | **pageSize** | **int32** | Number of records per page. | [default to 20] **sort** | **string** | The order in which to list the results by creation date. | [default to "created_at"] ### Return type @@ -409,7 +411,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -478,7 +480,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/TokensAPI.md b/docs/TokensAPI.md index 63136d7..403bbc3 100644 --- a/docs/TokensAPI.md +++ b/docs/TokensAPI.md @@ -1,6 +1,7 @@ # TokensAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -66,7 +67,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -125,7 +126,7 @@ Other parameters are passed through a pointer to a apiCreateTokenRequest struct ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication)[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication)[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -192,7 +193,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -251,7 +252,7 @@ Other parameters are passed through a pointer to a apiGetTokenCurrentRequest str ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -318,7 +319,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -377,7 +378,7 @@ Other parameters are passed through a pointer to a apiListTokensUserRequest stru ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -442,7 +443,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -499,7 +500,7 @@ Other parameters are passed through a pointer to a apiRevokeTokenCurrentRequest ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/TypeResource.md b/docs/TypeResource.md index 3667b5c..acbfb27 100644 --- a/docs/TypeResource.md +++ b/docs/TypeResource.md @@ -3,11 +3,11 @@ ## Enum -* `OBJECT_STORE` (value: `"object-store"`) +* `KV_STORE` (value: `"kv-store"`) * `SECRET_STORE` (value: `"secret-store"`) -* `CONFIG_STORE` (value: `"config-store"`) +* `CONFIG` (value: `"config"`) [Back to API list](../README.md#documentation-for-api-endpoints) | [Back to README](../README.md) diff --git a/docs/UserAPI.md b/docs/UserAPI.md index 0208d64..5f904e4 100644 --- a/docs/UserAPI.md +++ b/docs/UserAPI.md @@ -1,6 +1,7 @@ # UserAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -74,7 +75,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -141,7 +142,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -200,7 +201,7 @@ Other parameters are passed through a pointer to a apiGetCurrentUserRequest stru ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -267,7 +268,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -334,7 +335,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -409,7 +410,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -473,7 +474,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/VclAPI.md b/docs/VclAPI.md index 2e633fd..d7700e4 100644 --- a/docs/VclAPI.md +++ b/docs/VclAPI.md @@ -1,6 +1,7 @@ # VclAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -82,7 +83,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -153,7 +154,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -225,7 +226,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -294,7 +295,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -363,7 +364,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -432,7 +433,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -503,7 +504,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -574,7 +575,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -637,7 +638,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -705,7 +706,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -774,7 +775,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -845,7 +846,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -919,7 +920,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/VclDiffAPI.md b/docs/VclDiffAPI.md index cf28bf1..430eb25 100644 --- a/docs/VclDiffAPI.md +++ b/docs/VclDiffAPI.md @@ -1,6 +1,7 @@ # VclDiffAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -70,7 +71,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/VersionAPI.md b/docs/VersionAPI.md index 634447d..6f34dfe 100644 --- a/docs/VersionAPI.md +++ b/docs/VersionAPI.md @@ -1,6 +1,7 @@ # VersionAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -75,7 +76,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -144,7 +145,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -211,7 +212,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -280,7 +281,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -349,7 +350,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -416,7 +417,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -485,7 +486,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -561,7 +562,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -630,7 +631,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/WafActiveRulesAPI.md b/docs/WafActiveRulesAPI.md index 65d1aa7..25a99ab 100644 --- a/docs/WafActiveRulesAPI.md +++ b/docs/WafActiveRulesAPI.md @@ -1,6 +1,7 @@ # WafActiveRulesAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -73,7 +74,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -141,7 +142,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -211,7 +212,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -281,7 +282,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -350,7 +351,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -422,7 +423,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -498,7 +499,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -570,7 +571,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/WafExclusionsAPI.md b/docs/WafExclusionsAPI.md index bee583f..b5134e9 100644 --- a/docs/WafExclusionsAPI.md +++ b/docs/WafExclusionsAPI.md @@ -1,6 +1,7 @@ # WafExclusionsAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -72,7 +73,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -141,7 +142,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -212,7 +213,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -287,7 +288,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -359,7 +360,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/WafFirewallVersionsAPI.md b/docs/WafFirewallVersionsAPI.md index 9743480..10dac21 100644 --- a/docs/WafFirewallVersionsAPI.md +++ b/docs/WafFirewallVersionsAPI.md @@ -1,6 +1,7 @@ # WafFirewallVersionsAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -72,7 +73,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -140,7 +141,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -209,7 +210,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -279,7 +280,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -349,7 +350,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -419,7 +420,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/WafFirewallsAPI.md b/docs/WafFirewallsAPI.md index c9d16ba..bdca4c0 100644 --- a/docs/WafFirewallsAPI.md +++ b/docs/WafFirewallsAPI.md @@ -1,6 +1,7 @@ # WafFirewallsAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -65,7 +66,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -131,7 +132,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -200,7 +201,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -267,7 +268,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -335,7 +336,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/WafRuleRevisionsAPI.md b/docs/WafRuleRevisionsAPI.md index 027f91c..89b74b4 100644 --- a/docs/WafRuleRevisionsAPI.md +++ b/docs/WafRuleRevisionsAPI.md @@ -1,6 +1,7 @@ # WafRuleRevisionsAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -69,7 +70,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -139,7 +140,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/WafRulesAPI.md b/docs/WafRulesAPI.md index aa90d15..8799de6 100644 --- a/docs/WafRulesAPI.md +++ b/docs/WafRulesAPI.md @@ -1,6 +1,7 @@ # WafRulesAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -67,7 +68,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers @@ -136,7 +137,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/WafTagsAPI.md b/docs/WafTagsAPI.md index 152d2a5..98412bd 100644 --- a/docs/WafTagsAPI.md +++ b/docs/WafTagsAPI.md @@ -1,6 +1,7 @@ # WafTagsAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -64,7 +65,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/docs/WholePlatformDdosHistoricalAPI.md b/docs/WholePlatformDdosHistoricalAPI.md index d4e1e41..e6a9dc6 100644 --- a/docs/WholePlatformDdosHistoricalAPI.md +++ b/docs/WholePlatformDdosHistoricalAPI.md @@ -1,6 +1,7 @@ # WholePlatformDdosHistoricalAPI -All URIs are relative to *https://api.fastly.com* +> [!NOTE] +> All URIs are relative to `https://api.fastly.com` Method | HTTP request | Description ------------- | ------------- | ------------- @@ -63,7 +64,7 @@ Name | Type | Description | Notes ### Authorization -[API Token](https://developer.fastly.com/reference/api/#authentication) +[API Token](https://www.fastly.com/documentation/reference/api/#authentication) ### HTTP request headers diff --git a/fastly/api_acl.go b/fastly/api_acl.go index 11c646e..08a4f67 100644 --- a/fastly/api_acl.go +++ b/fastly/api_acl.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_acl_entry.go b/fastly/api_acl_entry.go index 7bec5a6..aba4195 100644 --- a/fastly/api_acl_entry.go +++ b/fastly/api_acl_entry.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_apex_redirect.go b/fastly/api_apex_redirect.go index f60be92..0e07562 100644 --- a/fastly/api_apex_redirect.go +++ b/fastly/api_apex_redirect.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_automation_tokens.go b/fastly/api_automation_tokens.go index 140b100..47f4349 100644 --- a/fastly/api_automation_tokens.go +++ b/fastly/api_automation_tokens.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_backend.go b/fastly/api_backend.go index ca29859..67d2b86 100644 --- a/fastly/api_backend.go +++ b/fastly/api_backend.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_billing.go b/fastly/api_billing.go index e4264c8..095c9a1 100644 --- a/fastly/api_billing.go +++ b/fastly/api_billing.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_billing_address.go b/fastly/api_billing_address.go index 34d7598..3cf3692 100644 --- a/fastly/api_billing_address.go +++ b/fastly/api_billing_address.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_billing_invoices.go b/fastly/api_billing_invoices.go index be5735d..2ab1aae 100644 --- a/fastly/api_billing_invoices.go +++ b/fastly/api_billing_invoices.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_cache_settings.go b/fastly/api_cache_settings.go index d2a7cbf..7e53135 100644 --- a/fastly/api_cache_settings.go +++ b/fastly/api_cache_settings.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_condition.go b/fastly/api_condition.go index 316f36b..9898ad3 100644 --- a/fastly/api_condition.go +++ b/fastly/api_condition.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_config_store.go b/fastly/api_config_store.go index 08b9de3..27205ef 100644 --- a/fastly/api_config_store.go +++ b/fastly/api_config_store.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_config_store_item.go b/fastly/api_config_store_item.go index 35c4cac..c28caaa 100644 --- a/fastly/api_config_store_item.go +++ b/fastly/api_config_store_item.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_contact.go b/fastly/api_contact.go index 6c5354f..00d33de 100644 --- a/fastly/api_contact.go +++ b/fastly/api_contact.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_content.go b/fastly/api_content.go index 864c8a2..fbe50ca 100644 --- a/fastly/api_content.go +++ b/fastly/api_content.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_customer.go b/fastly/api_customer.go index 296d56a..85f036e 100644 --- a/fastly/api_customer.go +++ b/fastly/api_customer.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_dictionary.go b/fastly/api_dictionary.go index f1901ec..cf749da 100644 --- a/fastly/api_dictionary.go +++ b/fastly/api_dictionary.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_dictionary_info.go b/fastly/api_dictionary_info.go index a4dd591..291c998 100644 --- a/fastly/api_dictionary_info.go +++ b/fastly/api_dictionary_info.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_dictionary_item.go b/fastly/api_dictionary_item.go index 01ad709..9734adc 100644 --- a/fastly/api_dictionary_item.go +++ b/fastly/api_dictionary_item.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_diff.go b/fastly/api_diff.go index 4f50fea..4f938b6 100644 --- a/fastly/api_diff.go +++ b/fastly/api_diff.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_director.go b/fastly/api_director.go index bdd1427..b5b6137 100644 --- a/fastly/api_director.go +++ b/fastly/api_director.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_director_backend.go b/fastly/api_director_backend.go index 3a4178f..94fec43 100644 --- a/fastly/api_director_backend.go +++ b/fastly/api_director_backend.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_domain.go b/fastly/api_domain.go index bd75a92..fe864db 100644 --- a/fastly/api_domain.go +++ b/fastly/api_domain.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_domain_inspector_historical.go b/fastly/api_domain_inspector_historical.go index a9d2929..68feebb 100644 --- a/fastly/api_domain_inspector_historical.go +++ b/fastly/api_domain_inspector_historical.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_domain_inspector_realtime.go b/fastly/api_domain_inspector_realtime.go index 94de98a..4fbd899 100644 --- a/fastly/api_domain_inspector_realtime.go +++ b/fastly/api_domain_inspector_realtime.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_domain_ownerships.go b/fastly/api_domain_ownerships.go index a268209..b23b81b 100644 --- a/fastly/api_domain_ownerships.go +++ b/fastly/api_domain_ownerships.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_enabled_products.go b/fastly/api_enabled_products.go index 60436f3..70c45f2 100644 --- a/fastly/api_enabled_products.go +++ b/fastly/api_enabled_products.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_events.go b/fastly/api_events.go index 746bfd1..48d1912 100644 --- a/fastly/api_events.go +++ b/fastly/api_events.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_gzip.go b/fastly/api_gzip.go index ee78a29..bb90d79 100644 --- a/fastly/api_gzip.go +++ b/fastly/api_gzip.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_header.go b/fastly/api_header.go index b4ab972..182073e 100644 --- a/fastly/api_header.go +++ b/fastly/api_header.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_healthcheck.go b/fastly/api_healthcheck.go index 233a2b9..bf08058 100644 --- a/fastly/api_healthcheck.go +++ b/fastly/api_healthcheck.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_historical.go b/fastly/api_historical.go index a09fe8a..c09a650 100644 --- a/fastly/api_historical.go +++ b/fastly/api_historical.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_http3.go b/fastly/api_http3.go index 7690f6c..dd294e3 100644 --- a/fastly/api_http3.go +++ b/fastly/api_http3.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_iam_permissions.go b/fastly/api_iam_permissions.go index 0f0de44..ac06e99 100644 --- a/fastly/api_iam_permissions.go +++ b/fastly/api_iam_permissions.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_iam_roles.go b/fastly/api_iam_roles.go index 4435561..3086597 100644 --- a/fastly/api_iam_roles.go +++ b/fastly/api_iam_roles.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_iam_service_groups.go b/fastly/api_iam_service_groups.go index 9b7eb2a..2fa0302 100644 --- a/fastly/api_iam_service_groups.go +++ b/fastly/api_iam_service_groups.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_iam_user_groups.go b/fastly/api_iam_user_groups.go index bcadcab..78783af 100644 --- a/fastly/api_iam_user_groups.go +++ b/fastly/api_iam_user_groups.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_image_optimizer_default_settings.go b/fastly/api_image_optimizer_default_settings.go new file mode 100644 index 0000000..ebe3ef8 --- /dev/null +++ b/fastly/api_image_optimizer_default_settings.go @@ -0,0 +1,386 @@ +// Package fastly is an API client library for interacting with most facets of the Fastly API. +package fastly + +/* +Fastly API + +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) + +API version: 1.0.0 +Contact: oss@fastly.com +*/ + +// This code is auto-generated; DO NOT EDIT. + + +import ( + "bytes" + "context" + "io/ioutil" + "net/http" + gourl "net/url" + "strconv" + "strings" +) + +// Linger please +var ( + _ context.Context +) + +// ImageOptimizerDefaultSettingsAPI defines an interface for interacting with the resource. +type ImageOptimizerDefaultSettingsAPI interface { + + /* + GetDefaultSettings Get current Image Optimizer Default Settings + + Retrieve the current Image Optimizer default settings. All properties in the response will be populated. + + + @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @param serviceID Alphanumeric string identifying the service. + @param versionID Integer identifying a service version. + @return APIGetDefaultSettingsRequest + */ + GetDefaultSettings(ctx context.Context, serviceID string, versionID int32) APIGetDefaultSettingsRequest + + // GetDefaultSettingsExecute executes the request + // @return DefaultSettingsResponse + GetDefaultSettingsExecute(r APIGetDefaultSettingsRequest) (*DefaultSettingsResponse, *http.Response, error) + + /* + UpdateDefaultSettings Update Image Optimizer Default Settings + + Update one or more default settings. A minimum of one property is required. The endpoint will respond with the new Image Optimizer default settings, +with all properties populated. + + + @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @param serviceID Alphanumeric string identifying the service. + @param versionID Integer identifying a service version. + @return APIUpdateDefaultSettingsRequest + */ + UpdateDefaultSettings(ctx context.Context, serviceID string, versionID int32) APIUpdateDefaultSettingsRequest + + // UpdateDefaultSettingsExecute executes the request + // @return DefaultSettingsResponse + UpdateDefaultSettingsExecute(r APIUpdateDefaultSettingsRequest) (*DefaultSettingsResponse, *http.Response, error) +} + +// ImageOptimizerDefaultSettingsAPIService ImageOptimizerDefaultSettingsAPI service +type ImageOptimizerDefaultSettingsAPIService service + +// APIGetDefaultSettingsRequest represents a request for the resource. +type APIGetDefaultSettingsRequest struct { + ctx context.Context + APIService ImageOptimizerDefaultSettingsAPI + serviceID string + versionID int32 +} + + +// Execute calls the API using the request data configured. +func (r APIGetDefaultSettingsRequest) Execute() (*DefaultSettingsResponse, *http.Response, error) { + return r.APIService.GetDefaultSettingsExecute(r) +} + +/* +GetDefaultSettings Get current Image Optimizer Default Settings + +Retrieve the current Image Optimizer default settings. All properties in the response will be populated. + + + @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @param serviceID Alphanumeric string identifying the service. + @param versionID Integer identifying a service version. + @return APIGetDefaultSettingsRequest +*/ +func (a *ImageOptimizerDefaultSettingsAPIService) GetDefaultSettings(ctx context.Context, serviceID string, versionID int32) APIGetDefaultSettingsRequest { + return APIGetDefaultSettingsRequest{ + APIService: a, + ctx: ctx, + serviceID: serviceID, + versionID: versionID, + } +} + +// GetDefaultSettingsExecute executes the request +// @return DefaultSettingsResponse +func (a *ImageOptimizerDefaultSettingsAPIService) GetDefaultSettingsExecute(r APIGetDefaultSettingsRequest) (*DefaultSettingsResponse, *http.Response, error) { + var ( + localVarHTTPMethod = http.MethodGet + localVarPostBody any + formFiles []formFile + localVarReturnValue *DefaultSettingsResponse + ) + + localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "ImageOptimizerDefaultSettingsAPIService.GetDefaultSettings") + if err != nil { + return localVarReturnValue, nil, &GenericAPIError{error: err.Error()} + } + + localVarPath := localBasePath + "/service/{service_id}/version/{version_id}/image_optimizer_default_settings" + localVarPath = strings.ReplaceAll(localVarPath, "{"+"service_id"+"}", gourl.PathEscape(parameterToString(r.serviceID, ""))) + localVarPath = strings.ReplaceAll(localVarPath, "{"+"version_id"+"}", gourl.PathEscape(parameterToString(r.versionID, ""))) + + localVarHeaderParams := make(map[string]string) + localVarQueryParams := gourl.Values{} + localVarFormParams := gourl.Values{} + + // to determine the Content-Type header + localVarHTTPContentTypes := []string{} + + // set Content-Type header + localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) + if localVarHTTPContentType != "" { + localVarHeaderParams["Content-Type"] = localVarHTTPContentType + } + + // to determine the Accept header + localVarHTTPHeaderAccepts := []string{"application/json", "application/problem+json"} + + // set Accept header + localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) + if localVarHTTPHeaderAccept != "" { + localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept + } + if r.ctx != nil { + // API Key Authentication + if auth, ok := r.ctx.Value(ContextAPIKeys).(map[string]APIKey); ok { + if apiKey, ok := auth["token"]; ok { + var key string + if apiKey.Prefix != "" { + key = apiKey.Prefix + " " + apiKey.Key + } else { + key = apiKey.Key + } + localVarHeaderParams["Fastly-Key"] = key + } + } + } + req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) + if err != nil { + return localVarReturnValue, nil, err + } + + localVarHTTPResponse, err := a.client.callAPI(req) + if err != nil || localVarHTTPResponse == nil { + return localVarReturnValue, localVarHTTPResponse, err + } + + localVarBody, err := ioutil.ReadAll(localVarHTTPResponse.Body) + _ = localVarHTTPResponse.Body.Close() + localVarHTTPResponse.Body = ioutil.NopCloser(bytes.NewBuffer(localVarBody)) + if err != nil { + return localVarReturnValue, localVarHTTPResponse, err + } + + if localVarHTTPResponse.StatusCode >= 300 { + newErr := &GenericAPIError{ + body: localVarBody, + error: localVarHTTPResponse.Status, + } + if localVarHTTPResponse.StatusCode == 404 { + var v DefaultSettingsError + err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() + return localVarReturnValue, localVarHTTPResponse, newErr + } + newErr.model = v + } + return localVarReturnValue, localVarHTTPResponse, newErr + } + + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr := &GenericAPIError{ + body: localVarBody, + error: err.Error(), + } + return localVarReturnValue, localVarHTTPResponse, newErr + } + + + if localVarHTTPResponse.Request.Method != http.MethodGet && localVarHTTPResponse.Request.Method != http.MethodHead { + if remaining := localVarHTTPResponse.Header.Get("Fastly-RateLimit-Remaining"); remaining != "" { + if i, err := strconv.Atoi(remaining); err == nil { + a.client.RateLimitRemaining = i + } + } + if reset := localVarHTTPResponse.Header.Get("Fastly-RateLimit-Reset"); reset != "" { + if i, err := strconv.Atoi(reset); err == nil { + a.client.RateLimitReset = i + } + } + } + + return localVarReturnValue, localVarHTTPResponse, nil +} + +// APIUpdateDefaultSettingsRequest represents a request for the resource. +type APIUpdateDefaultSettingsRequest struct { + ctx context.Context + APIService ImageOptimizerDefaultSettingsAPI + serviceID string + versionID int32 + defaultSettings *DefaultSettings +} + +// DefaultSettings returns a pointer to a request. +func (r *APIUpdateDefaultSettingsRequest) DefaultSettings(defaultSettings DefaultSettings) *APIUpdateDefaultSettingsRequest { + r.defaultSettings = &defaultSettings + return r +} + +// Execute calls the API using the request data configured. +func (r APIUpdateDefaultSettingsRequest) Execute() (*DefaultSettingsResponse, *http.Response, error) { + return r.APIService.UpdateDefaultSettingsExecute(r) +} + +/* +UpdateDefaultSettings Update Image Optimizer Default Settings + +Update one or more default settings. A minimum of one property is required. The endpoint will respond with the new Image Optimizer default settings, +with all properties populated. + + + @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @param serviceID Alphanumeric string identifying the service. + @param versionID Integer identifying a service version. + @return APIUpdateDefaultSettingsRequest +*/ +func (a *ImageOptimizerDefaultSettingsAPIService) UpdateDefaultSettings(ctx context.Context, serviceID string, versionID int32) APIUpdateDefaultSettingsRequest { + return APIUpdateDefaultSettingsRequest{ + APIService: a, + ctx: ctx, + serviceID: serviceID, + versionID: versionID, + } +} + +// UpdateDefaultSettingsExecute executes the request +// @return DefaultSettingsResponse +func (a *ImageOptimizerDefaultSettingsAPIService) UpdateDefaultSettingsExecute(r APIUpdateDefaultSettingsRequest) (*DefaultSettingsResponse, *http.Response, error) { + var ( + localVarHTTPMethod = http.MethodPatch + localVarPostBody any + formFiles []formFile + localVarReturnValue *DefaultSettingsResponse + ) + + localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "ImageOptimizerDefaultSettingsAPIService.UpdateDefaultSettings") + if err != nil { + return localVarReturnValue, nil, &GenericAPIError{error: err.Error()} + } + + localVarPath := localBasePath + "/service/{service_id}/version/{version_id}/image_optimizer_default_settings" + localVarPath = strings.ReplaceAll(localVarPath, "{"+"service_id"+"}", gourl.PathEscape(parameterToString(r.serviceID, ""))) + localVarPath = strings.ReplaceAll(localVarPath, "{"+"version_id"+"}", gourl.PathEscape(parameterToString(r.versionID, ""))) + + localVarHeaderParams := make(map[string]string) + localVarQueryParams := gourl.Values{} + localVarFormParams := gourl.Values{} + + // to determine the Content-Type header + localVarHTTPContentTypes := []string{"application/json"} + + // set Content-Type header + localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) + if localVarHTTPContentType != "" { + localVarHeaderParams["Content-Type"] = localVarHTTPContentType + } + + // to determine the Accept header + localVarHTTPHeaderAccepts := []string{"application/json", "application/problem+json"} + + // set Accept header + localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) + if localVarHTTPHeaderAccept != "" { + localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept + } + // body params + localVarPostBody = r.defaultSettings + if r.ctx != nil { + // API Key Authentication + if auth, ok := r.ctx.Value(ContextAPIKeys).(map[string]APIKey); ok { + if apiKey, ok := auth["token"]; ok { + var key string + if apiKey.Prefix != "" { + key = apiKey.Prefix + " " + apiKey.Key + } else { + key = apiKey.Key + } + localVarHeaderParams["Fastly-Key"] = key + } + } + } + req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) + if err != nil { + return localVarReturnValue, nil, err + } + + localVarHTTPResponse, err := a.client.callAPI(req) + if err != nil || localVarHTTPResponse == nil { + return localVarReturnValue, localVarHTTPResponse, err + } + + localVarBody, err := ioutil.ReadAll(localVarHTTPResponse.Body) + _ = localVarHTTPResponse.Body.Close() + localVarHTTPResponse.Body = ioutil.NopCloser(bytes.NewBuffer(localVarBody)) + if err != nil { + return localVarReturnValue, localVarHTTPResponse, err + } + + if localVarHTTPResponse.StatusCode >= 300 { + newErr := &GenericAPIError{ + body: localVarBody, + error: localVarHTTPResponse.Status, + } + if localVarHTTPResponse.StatusCode == 400 { + var v DefaultSettingsError + err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() + return localVarReturnValue, localVarHTTPResponse, newErr + } + newErr.model = v + return localVarReturnValue, localVarHTTPResponse, newErr + } + if localVarHTTPResponse.StatusCode == 403 { + var v DefaultSettingsError + err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr.error = err.Error() + return localVarReturnValue, localVarHTTPResponse, newErr + } + newErr.model = v + } + return localVarReturnValue, localVarHTTPResponse, newErr + } + + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr := &GenericAPIError{ + body: localVarBody, + error: err.Error(), + } + return localVarReturnValue, localVarHTTPResponse, newErr + } + + + if localVarHTTPResponse.Request.Method != http.MethodGet && localVarHTTPResponse.Request.Method != http.MethodHead { + if remaining := localVarHTTPResponse.Header.Get("Fastly-RateLimit-Remaining"); remaining != "" { + if i, err := strconv.Atoi(remaining); err == nil { + a.client.RateLimitRemaining = i + } + } + if reset := localVarHTTPResponse.Header.Get("Fastly-RateLimit-Reset"); reset != "" { + if i, err := strconv.Atoi(reset); err == nil { + a.client.RateLimitReset = i + } + } + } + + return localVarReturnValue, localVarHTTPResponse, nil +} diff --git a/fastly/api_invitations.go b/fastly/api_invitations.go index a33d5cb..d7a1657 100644 --- a/fastly/api_invitations.go +++ b/fastly/api_invitations.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_kv_store.go b/fastly/api_kv_store.go index d3706ff..841971c 100644 --- a/fastly/api_kv_store.go +++ b/fastly/api_kv_store.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_kv_store_item.go b/fastly/api_kv_store_item.go index 6e100c8..ff6d96f 100644 --- a/fastly/api_kv_store_item.go +++ b/fastly/api_kv_store_item.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_legacy_waf_configuration_sets.go b/fastly/api_legacy_waf_configuration_sets.go index cc0986c..bd09fba 100644 --- a/fastly/api_legacy_waf_configuration_sets.go +++ b/fastly/api_legacy_waf_configuration_sets.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_legacy_waf_firewall.go b/fastly/api_legacy_waf_firewall.go index 5e7ddc3..b12c038 100644 --- a/fastly/api_legacy_waf_firewall.go +++ b/fastly/api_legacy_waf_firewall.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_legacy_waf_owasp.go b/fastly/api_legacy_waf_owasp.go index ee9cc90..72c0d80 100644 --- a/fastly/api_legacy_waf_owasp.go +++ b/fastly/api_legacy_waf_owasp.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_legacy_waf_rule.go b/fastly/api_legacy_waf_rule.go index ef8fe70..fb83bf4 100644 --- a/fastly/api_legacy_waf_rule.go +++ b/fastly/api_legacy_waf_rule.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_legacy_waf_rule_status.go b/fastly/api_legacy_waf_rule_status.go index 5051900..d1515f8 100644 --- a/fastly/api_legacy_waf_rule_status.go +++ b/fastly/api_legacy_waf_rule_status.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_legacy_waf_ruleset.go b/fastly/api_legacy_waf_ruleset.go index ca381bd..5a6c1b3 100644 --- a/fastly/api_legacy_waf_ruleset.go +++ b/fastly/api_legacy_waf_ruleset.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_legacy_waf_tag.go b/fastly/api_legacy_waf_tag.go index 60b8798..96f2caf 100644 --- a/fastly/api_legacy_waf_tag.go +++ b/fastly/api_legacy_waf_tag.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_legacy_waf_update_status.go b/fastly/api_legacy_waf_update_status.go index 0afd85a..f1eaa37 100644 --- a/fastly/api_legacy_waf_update_status.go +++ b/fastly/api_legacy_waf_update_status.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_logging_azureblob.go b/fastly/api_logging_azureblob.go index d92845e..16ff6fd 100644 --- a/fastly/api_logging_azureblob.go +++ b/fastly/api_logging_azureblob.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_logging_bigquery.go b/fastly/api_logging_bigquery.go index e19cb7b..54aafcf 100644 --- a/fastly/api_logging_bigquery.go +++ b/fastly/api_logging_bigquery.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_logging_cloudfiles.go b/fastly/api_logging_cloudfiles.go index bfb0aec..195405f 100644 --- a/fastly/api_logging_cloudfiles.go +++ b/fastly/api_logging_cloudfiles.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_logging_datadog.go b/fastly/api_logging_datadog.go index b726fe7..bc9404c 100644 --- a/fastly/api_logging_datadog.go +++ b/fastly/api_logging_datadog.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_logging_digitalocean.go b/fastly/api_logging_digitalocean.go index 9df21be..2ae197a 100644 --- a/fastly/api_logging_digitalocean.go +++ b/fastly/api_logging_digitalocean.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_logging_elasticsearch.go b/fastly/api_logging_elasticsearch.go index 0177a10..f081c12 100644 --- a/fastly/api_logging_elasticsearch.go +++ b/fastly/api_logging_elasticsearch.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_logging_ftp.go b/fastly/api_logging_ftp.go index ae77bbe..5147a21 100644 --- a/fastly/api_logging_ftp.go +++ b/fastly/api_logging_ftp.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_logging_gcs.go b/fastly/api_logging_gcs.go index c4cf129..f49a10f 100644 --- a/fastly/api_logging_gcs.go +++ b/fastly/api_logging_gcs.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_logging_heroku.go b/fastly/api_logging_heroku.go index 653a448..38fc19a 100644 --- a/fastly/api_logging_heroku.go +++ b/fastly/api_logging_heroku.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_logging_honeycomb.go b/fastly/api_logging_honeycomb.go index 7f902c8..e539897 100644 --- a/fastly/api_logging_honeycomb.go +++ b/fastly/api_logging_honeycomb.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_logging_https.go b/fastly/api_logging_https.go index bf32a06..c0c0feb 100644 --- a/fastly/api_logging_https.go +++ b/fastly/api_logging_https.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_logging_kafka.go b/fastly/api_logging_kafka.go index 0555acb..2e62dd4 100644 --- a/fastly/api_logging_kafka.go +++ b/fastly/api_logging_kafka.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_logging_kinesis.go b/fastly/api_logging_kinesis.go index c427a87..dc7f59d 100644 --- a/fastly/api_logging_kinesis.go +++ b/fastly/api_logging_kinesis.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com @@ -145,7 +145,7 @@ func (r *APICreateLogKinesisRequest) Placement(placement LoggingPlacement) *APIC r.placement = &placement return r } -// Format A Fastly [log format string](https://docs.fastly.com/en/guides/custom-log-formats). Must produce valid JSON that Kinesis can ingest. +// Format A Fastly [log format string](https://docs.fastly.com/en/guides/custom-log-formats). func (r *APICreateLogKinesisRequest) Format(format string) *APICreateLogKinesisRequest { r.format = &format return r diff --git a/fastly/api_logging_logentries.go b/fastly/api_logging_logentries.go index 2e38259..915ffa3 100644 --- a/fastly/api_logging_logentries.go +++ b/fastly/api_logging_logentries.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_logging_loggly.go b/fastly/api_logging_loggly.go index eccc88e..1d7b8cf 100644 --- a/fastly/api_logging_loggly.go +++ b/fastly/api_logging_loggly.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_logging_logshuttle.go b/fastly/api_logging_logshuttle.go index afbfad9..e7da677 100644 --- a/fastly/api_logging_logshuttle.go +++ b/fastly/api_logging_logshuttle.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_logging_newrelic.go b/fastly/api_logging_newrelic.go index 264de87..1d7d63f 100644 --- a/fastly/api_logging_newrelic.go +++ b/fastly/api_logging_newrelic.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_logging_newrelicotlp.go b/fastly/api_logging_newrelicotlp.go index 494cb1d..53865c7 100644 --- a/fastly/api_logging_newrelicotlp.go +++ b/fastly/api_logging_newrelicotlp.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_logging_openstack.go b/fastly/api_logging_openstack.go index 7116755..1ee2e9b 100644 --- a/fastly/api_logging_openstack.go +++ b/fastly/api_logging_openstack.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_logging_papertrail.go b/fastly/api_logging_papertrail.go index 7e7f76f..21b234f 100644 --- a/fastly/api_logging_papertrail.go +++ b/fastly/api_logging_papertrail.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_logging_pubsub.go b/fastly/api_logging_pubsub.go index dcb0afc..a52fd36 100644 --- a/fastly/api_logging_pubsub.go +++ b/fastly/api_logging_pubsub.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_logging_s3.go b/fastly/api_logging_s3.go index e8b4a4e..c7ae0e5 100644 --- a/fastly/api_logging_s3.go +++ b/fastly/api_logging_s3.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_logging_scalyr.go b/fastly/api_logging_scalyr.go index 6c32ef7..5317663 100644 --- a/fastly/api_logging_scalyr.go +++ b/fastly/api_logging_scalyr.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_logging_sftp.go b/fastly/api_logging_sftp.go index 91fdec7..1f235b0 100644 --- a/fastly/api_logging_sftp.go +++ b/fastly/api_logging_sftp.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_logging_splunk.go b/fastly/api_logging_splunk.go index a4c4d92..814cd3d 100644 --- a/fastly/api_logging_splunk.go +++ b/fastly/api_logging_splunk.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_logging_sumologic.go b/fastly/api_logging_sumologic.go index 765b1ab..d1b9a53 100644 --- a/fastly/api_logging_sumologic.go +++ b/fastly/api_logging_sumologic.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_logging_syslog.go b/fastly/api_logging_syslog.go index 5e062ca..5520d57 100644 --- a/fastly/api_logging_syslog.go +++ b/fastly/api_logging_syslog.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_mutual_authentication.go b/fastly/api_mutual_authentication.go index e9eb289..3ffef51 100644 --- a/fastly/api_mutual_authentication.go +++ b/fastly/api_mutual_authentication.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_origin_inspector_historical.go b/fastly/api_origin_inspector_historical.go index 110ab0a..9ffa94a 100644 --- a/fastly/api_origin_inspector_historical.go +++ b/fastly/api_origin_inspector_historical.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_origin_inspector_realtime.go b/fastly/api_origin_inspector_realtime.go index 24542a9..9a61083 100644 --- a/fastly/api_origin_inspector_realtime.go +++ b/fastly/api_origin_inspector_realtime.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_package.go b/fastly/api_package.go index 6d9bc6c..87514e6 100644 --- a/fastly/api_package.go +++ b/fastly/api_package.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_pool.go b/fastly/api_pool.go index e43d04a..b4907fe 100644 --- a/fastly/api_pool.go +++ b/fastly/api_pool.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_pop.go b/fastly/api_pop.go index f53dbb3..907369f 100644 --- a/fastly/api_pop.go +++ b/fastly/api_pop.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_public_ip_list.go b/fastly/api_public_ip_list.go index b08777a..95fb115 100644 --- a/fastly/api_public_ip_list.go +++ b/fastly/api_public_ip_list.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_publish.go b/fastly/api_publish.go index c06d4a2..483e39d 100644 --- a/fastly/api_publish.go +++ b/fastly/api_publish.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_purge.go b/fastly/api_purge.go index b171a6c..e1353a1 100644 --- a/fastly/api_purge.go +++ b/fastly/api_purge.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_rate_limiter.go b/fastly/api_rate_limiter.go index a72e12c..af60528 100644 --- a/fastly/api_rate_limiter.go +++ b/fastly/api_rate_limiter.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_realtime.go b/fastly/api_realtime.go index 8885882..39558f4 100644 --- a/fastly/api_realtime.go +++ b/fastly/api_realtime.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_request_settings.go b/fastly/api_request_settings.go index 7e4943c..9ae86f4 100644 --- a/fastly/api_request_settings.go +++ b/fastly/api_request_settings.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_resource.go b/fastly/api_resource.go index aaaf434..1a42114 100644 --- a/fastly/api_resource.go +++ b/fastly/api_resource.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_response_object.go b/fastly/api_response_object.go index 3c7d9c9..4a4d287 100644 --- a/fastly/api_response_object.go +++ b/fastly/api_response_object.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_secret_store.go b/fastly/api_secret_store.go index ab3d167..ae7ffca 100644 --- a/fastly/api_secret_store.go +++ b/fastly/api_secret_store.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_secret_store_item.go b/fastly/api_secret_store_item.go index eb22325..e18b583 100644 --- a/fastly/api_secret_store_item.go +++ b/fastly/api_secret_store_item.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_server.go b/fastly/api_server.go index 7e68761..a9b2615 100644 --- a/fastly/api_server.go +++ b/fastly/api_server.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_service.go b/fastly/api_service.go index 47605b3..c442c2e 100644 --- a/fastly/api_service.go +++ b/fastly/api_service.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_service_authorizations.go b/fastly/api_service_authorizations.go index 358ba68..419b243 100644 --- a/fastly/api_service_authorizations.go +++ b/fastly/api_service_authorizations.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_settings.go b/fastly/api_settings.go index 61138a5..38bef5a 100644 --- a/fastly/api_settings.go +++ b/fastly/api_settings.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_snippet.go b/fastly/api_snippet.go index aa0f708..b822d78 100644 --- a/fastly/api_snippet.go +++ b/fastly/api_snippet.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_star.go b/fastly/api_star.go index 6c4efc0..09d6a51 100644 --- a/fastly/api_star.go +++ b/fastly/api_star.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_stats.go b/fastly/api_stats.go index 30b9516..4ca87fb 100644 --- a/fastly/api_stats.go +++ b/fastly/api_stats.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_sudo.go b/fastly/api_sudo.go index 573c735..fbcec08 100644 --- a/fastly/api_sudo.go +++ b/fastly/api_sudo.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_tls_activations.go b/fastly/api_tls_activations.go index 4e4850d..ce8b473 100644 --- a/fastly/api_tls_activations.go +++ b/fastly/api_tls_activations.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_tls_bulk_certificates.go b/fastly/api_tls_bulk_certificates.go index 1d15891..b16c100 100644 --- a/fastly/api_tls_bulk_certificates.go +++ b/fastly/api_tls_bulk_certificates.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_tls_certificates.go b/fastly/api_tls_certificates.go index d580993..6271e3a 100644 --- a/fastly/api_tls_certificates.go +++ b/fastly/api_tls_certificates.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_tls_configurations.go b/fastly/api_tls_configurations.go index ebaa3e2..db06641 100644 --- a/fastly/api_tls_configurations.go +++ b/fastly/api_tls_configurations.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_tls_csrs.go b/fastly/api_tls_csrs.go index f0ebc26..b1c3d18 100644 --- a/fastly/api_tls_csrs.go +++ b/fastly/api_tls_csrs.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_tls_domains.go b/fastly/api_tls_domains.go index 19a609c..be4b6f6 100644 --- a/fastly/api_tls_domains.go +++ b/fastly/api_tls_domains.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_tls_private_keys.go b/fastly/api_tls_private_keys.go index bc757df..0799a28 100644 --- a/fastly/api_tls_private_keys.go +++ b/fastly/api_tls_private_keys.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_tls_subscriptions.go b/fastly/api_tls_subscriptions.go index 0f610cf..c8e4e33 100644 --- a/fastly/api_tls_subscriptions.go +++ b/fastly/api_tls_subscriptions.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com @@ -696,7 +696,7 @@ type APIGetTLSSubRequest struct { include *string } -// Include Include related objects. Optional, comma-separated values. Permitted values: `tls_authorizations`, `tls_authorizations.globalsign_email_challenge`, and `tls_authorizations.self_managed_http_challenge`. +// Include Include related objects. Optional, comma-separated values. Permitted values: `tls_authorizations`, `tls_authorizations.globalsign_email_challenge`, `tls_authorizations.self_managed_http_challenge`, and `tls_certificates`. func (r *APIGetTLSSubRequest) Include(include string) *APIGetTLSSubRequest { r.include = &include return r @@ -838,6 +838,7 @@ type APIListTLSSubsRequest struct { filterState *string filterTLSDomainsID *string filterHasActiveOrder *bool + filterCertificateAuthority *string include *string pageNumber *int32 pageSize *int32 @@ -859,7 +860,12 @@ func (r *APIListTLSSubsRequest) FilterHasActiveOrder(filterHasActiveOrder bool) r.filterHasActiveOrder = &filterHasActiveOrder return r } -// Include Include related objects. Optional, comma-separated values. Permitted values: `tls_authorizations`, `tls_authorizations.globalsign_email_challenge`, and `tls_authorizations.self_managed_http_challenge`. +// FilterCertificateAuthority Limit the returned subscriptions to a specific certification authority. Values may include `certainly`, `lets-encrypt`, or `globalsign`. +func (r *APIListTLSSubsRequest) FilterCertificateAuthority(filterCertificateAuthority string) *APIListTLSSubsRequest { + r.filterCertificateAuthority = &filterCertificateAuthority + return r +} +// Include Include related objects. Optional, comma-separated values. Permitted values: `tls_authorizations`, `tls_authorizations.globalsign_email_challenge`, `tls_authorizations.self_managed_http_challenge`, and `tls_certificates`. func (r *APIListTLSSubsRequest) Include(include string) *APIListTLSSubsRequest { r.include = &include return r @@ -930,6 +936,9 @@ func (a *TLSSubscriptionsAPIService) ListTLSSubsExecute(r APIListTLSSubsRequest) if r.filterHasActiveOrder != nil { localVarQueryParams.Add("filter[has_active_order]", parameterToString(*r.filterHasActiveOrder, "")) } + if r.filterCertificateAuthority != nil { + localVarQueryParams.Add("filter[certificate_authority]", parameterToString(*r.filterCertificateAuthority, "")) + } if r.include != nil { localVarQueryParams.Add("include", parameterToString(*r.include, "")) } diff --git a/fastly/api_tokens.go b/fastly/api_tokens.go index fc83971..4198fd9 100644 --- a/fastly/api_tokens.go +++ b/fastly/api_tokens.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_user.go b/fastly/api_user.go index d50d20a..81b975d 100644 --- a/fastly/api_user.go +++ b/fastly/api_user.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_vcl.go b/fastly/api_vcl.go index 650cb20..e333ed7 100644 --- a/fastly/api_vcl.go +++ b/fastly/api_vcl.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_vcl_diff.go b/fastly/api_vcl_diff.go index 1e209ae..a7fcc1c 100644 --- a/fastly/api_vcl_diff.go +++ b/fastly/api_vcl_diff.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_version.go b/fastly/api_version.go index e0396ef..2e76009 100644 --- a/fastly/api_version.go +++ b/fastly/api_version.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_waf_active_rules.go b/fastly/api_waf_active_rules.go index 16d84f5..2ea7073 100644 --- a/fastly/api_waf_active_rules.go +++ b/fastly/api_waf_active_rules.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_waf_exclusions.go b/fastly/api_waf_exclusions.go index e25d8e4..b95805e 100644 --- a/fastly/api_waf_exclusions.go +++ b/fastly/api_waf_exclusions.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_waf_firewall_versions.go b/fastly/api_waf_firewall_versions.go index 308ac5d..8d241ef 100644 --- a/fastly/api_waf_firewall_versions.go +++ b/fastly/api_waf_firewall_versions.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_waf_firewalls.go b/fastly/api_waf_firewalls.go index ca3582e..a35b8d7 100644 --- a/fastly/api_waf_firewalls.go +++ b/fastly/api_waf_firewalls.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_waf_rule_revisions.go b/fastly/api_waf_rule_revisions.go index 7e3fd82..446bc39 100644 --- a/fastly/api_waf_rule_revisions.go +++ b/fastly/api_waf_rule_revisions.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_waf_rules.go b/fastly/api_waf_rules.go index 96ca8e9..f54690e 100644 --- a/fastly/api_waf_rules.go +++ b/fastly/api_waf_rules.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_waf_tags.go b/fastly/api_waf_tags.go index 8f9c38b..f01979c 100644 --- a/fastly/api_waf_tags.go +++ b/fastly/api_waf_tags.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/api_whole_platform_ddos_historical.go b/fastly/api_whole_platform_ddos_historical.go index b72b898..3b98025 100644 --- a/fastly/api_whole_platform_ddos_historical.go +++ b/fastly/api_whole_platform_ddos_historical.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/client.go b/fastly/client.go index 7c4a910..dfcd89e 100644 --- a/fastly/client.go +++ b/fastly/client.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com @@ -39,7 +39,7 @@ import ( "golang.org/x/oauth2" ) -// https://developer.fastly.com/reference/api/#rate-limiting +// https://www.fastly.com/documentation/reference/api/#rate-limiting const defaultRateLimit = 1000 var ( @@ -55,7 +55,7 @@ type APIClient struct { // RateLimitRemaining is the last observed value of http header // Fastly-RateLimit-Remaining - // https://developer.fastly.com/reference/api/#rate-limiting + // https://www.fastly.com/documentation/reference/api/#rate-limiting RateLimitRemaining int // RateLimitReset is the last observed value of http header @@ -136,6 +136,8 @@ type APIClient struct { IamUserGroupsAPI IamUserGroupsAPI + ImageOptimizerDefaultSettingsAPI ImageOptimizerDefaultSettingsAPI + InvitationsAPI InvitationsAPI KvStoreAPI KvStoreAPI @@ -356,6 +358,7 @@ func NewAPIClient(cfg *Configuration) *APIClient { c.IamRolesAPI = (*IamRolesAPIService)(&c.common) c.IamServiceGroupsAPI = (*IamServiceGroupsAPIService)(&c.common) c.IamUserGroupsAPI = (*IamUserGroupsAPIService)(&c.common) + c.ImageOptimizerDefaultSettingsAPI = (*ImageOptimizerDefaultSettingsAPIService)(&c.common) c.InvitationsAPI = (*InvitationsAPIService)(&c.common) c.KvStoreAPI = (*KvStoreAPIService)(&c.common) c.KvStoreItemAPI = (*KvStoreItemAPIService)(&c.common) diff --git a/fastly/configuration.go b/fastly/configuration.go index 4df8f74..573b920 100644 --- a/fastly/configuration.go +++ b/fastly/configuration.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com @@ -105,7 +105,7 @@ type Configuration struct { func NewConfiguration() *Configuration { cfg := &Configuration{ DefaultHeader: make(map[string]string), - UserAgent: "fastly-go/v1.0.0-beta.28", + UserAgent: "fastly-go/v1.0.0-beta.29", Debug: false, Servers: ServerConfigurations{ { @@ -1108,6 +1108,18 @@ func NewConfiguration() *Configuration { Description: "No description provided", }, }, + "ImageOptimizerDefaultSettingsAPIService.GetDefaultSettings": { + { + URL: "https://api.fastly.com", + Description: "No description provided", + }, + }, + "ImageOptimizerDefaultSettingsAPIService.UpdateDefaultSettings": { + { + URL: "https://api.fastly.com", + Description: "No description provided", + }, + }, "InvitationsAPIService.CreateInvitation": { { URL: "https://api.fastly.com", diff --git a/fastly/model_acl.go b/fastly/model_acl.go index 0185312..b5fb062 100644 --- a/fastly/model_acl.go +++ b/fastly/model_acl.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_acl_entry.go b/fastly/model_acl_entry.go index a3ea9a9..40dc714 100644 --- a/fastly/model_acl_entry.go +++ b/fastly/model_acl_entry.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_acl_entry_response.go b/fastly/model_acl_entry_response.go index 5a6cbd7..bc7809d 100644 --- a/fastly/model_acl_entry_response.go +++ b/fastly/model_acl_entry_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_acl_entry_response_all_of.go b/fastly/model_acl_entry_response_all_of.go index c2070b0..030b26e 100644 --- a/fastly/model_acl_entry_response_all_of.go +++ b/fastly/model_acl_entry_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_acl_response.go b/fastly/model_acl_response.go index d473d33..6432492 100644 --- a/fastly/model_acl_response.go +++ b/fastly/model_acl_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_acl_response_all_of.go b/fastly/model_acl_response_all_of.go index 83193f9..85ab8e1 100644 --- a/fastly/model_acl_response_all_of.go +++ b/fastly/model_acl_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_apex_redirect.go b/fastly/model_apex_redirect.go index 3e5fa08..7d0562e 100644 --- a/fastly/model_apex_redirect.go +++ b/fastly/model_apex_redirect.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_apex_redirect_all_of.go b/fastly/model_apex_redirect_all_of.go index cba7cd3..381264d 100644 --- a/fastly/model_apex_redirect_all_of.go +++ b/fastly/model_apex_redirect_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_automation_token.go b/fastly/model_automation_token.go index 1a33b90..d077bb8 100644 --- a/fastly/model_automation_token.go +++ b/fastly/model_automation_token.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_automation_token_create_request.go b/fastly/model_automation_token_create_request.go index 61e91ab..7873ae7 100644 --- a/fastly/model_automation_token_create_request.go +++ b/fastly/model_automation_token_create_request.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_automation_token_create_request_attributes.go b/fastly/model_automation_token_create_request_attributes.go index 5391caf..a8049eb 100644 --- a/fastly/model_automation_token_create_request_attributes.go +++ b/fastly/model_automation_token_create_request_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_automation_token_create_response.go b/fastly/model_automation_token_create_response.go index a1f7d78..b6b570f 100644 --- a/fastly/model_automation_token_create_response.go +++ b/fastly/model_automation_token_create_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_automation_token_create_response_all_of.go b/fastly/model_automation_token_create_response_all_of.go index 72b4aca..f3a730b 100644 --- a/fastly/model_automation_token_create_response_all_of.go +++ b/fastly/model_automation_token_create_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_automation_token_error_response.go b/fastly/model_automation_token_error_response.go index 0ed3baf..9273180 100644 --- a/fastly/model_automation_token_error_response.go +++ b/fastly/model_automation_token_error_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_automation_token_response.go b/fastly/model_automation_token_response.go index 1f6f95e..2ac8047 100644 --- a/fastly/model_automation_token_response.go +++ b/fastly/model_automation_token_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_automation_token_response_all_of.go b/fastly/model_automation_token_response_all_of.go index 4da354c..f3aacb5 100644 --- a/fastly/model_automation_token_response_all_of.go +++ b/fastly/model_automation_token_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_aws_region.go b/fastly/model_aws_region.go index c058119..3e3bb78 100644 --- a/fastly/model_aws_region.go +++ b/fastly/model_aws_region.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_backend.go b/fastly/model_backend.go index 8f9fe7d..0df48f3 100644 --- a/fastly/model_backend.go +++ b/fastly/model_backend.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com @@ -79,7 +79,7 @@ type Backend struct { // Overrides `ssl_hostname`, but only for SNI in the handshake. Does not affect cert validation at all. SslSniHostname NullableString `json:"ssl_sni_hostname,omitempty"` // Whether to enable TCP keepalives for backend connections. Varnish defaults to using keepalives if this is unspecified. - TcpKeepaliveEnable *bool `json:"tcp_keepalive_enable,omitempty"` + TcpKeepaliveEnable NullableBool `json:"tcp_keepalive_enable,omitempty"` // Interval in seconds between subsequent keepalive probes. TcpKeepaliveInterval NullableInt32 `json:"tcp_keepalive_interval,omitempty"` // Number of unacknowledged probes to send before considering the connection dead. @@ -1247,36 +1247,46 @@ func (o *Backend) UnsetSslSniHostname() { o.SslSniHostname.Unset() } -// GetTcpKeepaliveEnable returns the TcpKeepaliveEnable field value if set, zero value otherwise. +// GetTcpKeepaliveEnable returns the TcpKeepaliveEnable field value if set, zero value otherwise (both if not set or set to explicit null). func (o *Backend) GetTcpKeepaliveEnable() bool { - if o == nil || o.TcpKeepaliveEnable == nil { + if o == nil || o.TcpKeepaliveEnable.Get() == nil { var ret bool return ret } - return *o.TcpKeepaliveEnable + return *o.TcpKeepaliveEnable.Get() } // GetTcpKeepaliveEnableOk returns a tuple with the TcpKeepaliveEnable field value if set, nil otherwise // and a boolean to check if the value has been set. +// NOTE: If the value is an explicit nil, `nil, true` will be returned func (o *Backend) GetTcpKeepaliveEnableOk() (*bool, bool) { - if o == nil || o.TcpKeepaliveEnable == nil { + if o == nil { return nil, false } - return o.TcpKeepaliveEnable, true + return o.TcpKeepaliveEnable.Get(), o.TcpKeepaliveEnable.IsSet() } // HasTcpKeepaliveEnable returns a boolean if a field has been set. func (o *Backend) HasTcpKeepaliveEnable() bool { - if o != nil && o.TcpKeepaliveEnable != nil { + if o != nil && o.TcpKeepaliveEnable.IsSet() { return true } return false } -// SetTcpKeepaliveEnable gets a reference to the given bool and assigns it to the TcpKeepaliveEnable field. +// SetTcpKeepaliveEnable gets a reference to the given NullableBool and assigns it to the TcpKeepaliveEnable field. func (o *Backend) SetTcpKeepaliveEnable(v bool) { - o.TcpKeepaliveEnable = &v + o.TcpKeepaliveEnable.Set(&v) +} +// SetTcpKeepaliveEnableNil sets the value for TcpKeepaliveEnable to be an explicit nil +func (o *Backend) SetTcpKeepaliveEnableNil() { + o.TcpKeepaliveEnable.Set(nil) +} + +// UnsetTcpKeepaliveEnable ensures that no value is present for TcpKeepaliveEnable, not even an explicit nil +func (o *Backend) UnsetTcpKeepaliveEnable() { + o.TcpKeepaliveEnable.Unset() } // GetTcpKeepaliveInterval returns the TcpKeepaliveInterval field value if set, zero value otherwise (both if not set or set to explicit null). @@ -1560,8 +1570,8 @@ func (o Backend) MarshalJSON() ([]byte, error) { if o.SslSniHostname.IsSet() { toSerialize["ssl_sni_hostname"] = o.SslSniHostname.Get() } - if o.TcpKeepaliveEnable != nil { - toSerialize["tcp_keepalive_enable"] = o.TcpKeepaliveEnable + if o.TcpKeepaliveEnable.IsSet() { + toSerialize["tcp_keepalive_enable"] = o.TcpKeepaliveEnable.Get() } if o.TcpKeepaliveInterval.IsSet() { toSerialize["tcp_keepalive_interval"] = o.TcpKeepaliveInterval.Get() diff --git a/fastly/model_backend_response.go b/fastly/model_backend_response.go index efc55b3..1ca2d13 100644 --- a/fastly/model_backend_response.go +++ b/fastly/model_backend_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com @@ -80,7 +80,7 @@ type BackendResponse struct { // Overrides `ssl_hostname`, but only for SNI in the handshake. Does not affect cert validation at all. SslSniHostname NullableString `json:"ssl_sni_hostname,omitempty"` // Whether to enable TCP keepalives for backend connections. Varnish defaults to using keepalives if this is unspecified. - TcpKeepaliveEnable *bool `json:"tcp_keepalive_enable,omitempty"` + TcpKeepaliveEnable NullableBool `json:"tcp_keepalive_enable,omitempty"` // Interval in seconds between subsequent keepalive probes. TcpKeepaliveInterval NullableInt32 `json:"tcp_keepalive_interval,omitempty"` // Number of unacknowledged probes to send before considering the connection dead. @@ -1258,36 +1258,46 @@ func (o *BackendResponse) UnsetSslSniHostname() { o.SslSniHostname.Unset() } -// GetTcpKeepaliveEnable returns the TcpKeepaliveEnable field value if set, zero value otherwise. +// GetTcpKeepaliveEnable returns the TcpKeepaliveEnable field value if set, zero value otherwise (both if not set or set to explicit null). func (o *BackendResponse) GetTcpKeepaliveEnable() bool { - if o == nil || o.TcpKeepaliveEnable == nil { + if o == nil || o.TcpKeepaliveEnable.Get() == nil { var ret bool return ret } - return *o.TcpKeepaliveEnable + return *o.TcpKeepaliveEnable.Get() } // GetTcpKeepaliveEnableOk returns a tuple with the TcpKeepaliveEnable field value if set, nil otherwise // and a boolean to check if the value has been set. +// NOTE: If the value is an explicit nil, `nil, true` will be returned func (o *BackendResponse) GetTcpKeepaliveEnableOk() (*bool, bool) { - if o == nil || o.TcpKeepaliveEnable == nil { + if o == nil { return nil, false } - return o.TcpKeepaliveEnable, true + return o.TcpKeepaliveEnable.Get(), o.TcpKeepaliveEnable.IsSet() } // HasTcpKeepaliveEnable returns a boolean if a field has been set. func (o *BackendResponse) HasTcpKeepaliveEnable() bool { - if o != nil && o.TcpKeepaliveEnable != nil { + if o != nil && o.TcpKeepaliveEnable.IsSet() { return true } return false } -// SetTcpKeepaliveEnable gets a reference to the given bool and assigns it to the TcpKeepaliveEnable field. +// SetTcpKeepaliveEnable gets a reference to the given NullableBool and assigns it to the TcpKeepaliveEnable field. func (o *BackendResponse) SetTcpKeepaliveEnable(v bool) { - o.TcpKeepaliveEnable = &v + o.TcpKeepaliveEnable.Set(&v) +} +// SetTcpKeepaliveEnableNil sets the value for TcpKeepaliveEnable to be an explicit nil +func (o *BackendResponse) SetTcpKeepaliveEnableNil() { + o.TcpKeepaliveEnable.Set(nil) +} + +// UnsetTcpKeepaliveEnable ensures that no value is present for TcpKeepaliveEnable, not even an explicit nil +func (o *BackendResponse) UnsetTcpKeepaliveEnable() { + o.TcpKeepaliveEnable.Unset() } // GetTcpKeepaliveInterval returns the TcpKeepaliveInterval field value if set, zero value otherwise (both if not set or set to explicit null). @@ -1793,8 +1803,8 @@ func (o BackendResponse) MarshalJSON() ([]byte, error) { if o.SslSniHostname.IsSet() { toSerialize["ssl_sni_hostname"] = o.SslSniHostname.Get() } - if o.TcpKeepaliveEnable != nil { - toSerialize["tcp_keepalive_enable"] = o.TcpKeepaliveEnable + if o.TcpKeepaliveEnable.IsSet() { + toSerialize["tcp_keepalive_enable"] = o.TcpKeepaliveEnable.Get() } if o.TcpKeepaliveInterval.IsSet() { toSerialize["tcp_keepalive_interval"] = o.TcpKeepaliveInterval.Get() diff --git a/fastly/model_backend_response_all_of.go b/fastly/model_backend_response_all_of.go index 1cfa903..4d7f4ed 100644 --- a/fastly/model_backend_response_all_of.go +++ b/fastly/model_backend_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_batch.go b/fastly/model_batch.go index 922bee0..b15386a 100644 --- a/fastly/model_batch.go +++ b/fastly/model_batch.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_batch_errors.go b/fastly/model_batch_errors.go index e1821aa..2c2ed64 100644 --- a/fastly/model_batch_errors.go +++ b/fastly/model_batch_errors.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_billing.go b/fastly/model_billing.go index e48e60d..ce772f3 100644 --- a/fastly/model_billing.go +++ b/fastly/model_billing.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_billing_address_attributes.go b/fastly/model_billing_address_attributes.go index 1cc2e8c..3e733d4 100644 --- a/fastly/model_billing_address_attributes.go +++ b/fastly/model_billing_address_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_billing_address_request.go b/fastly/model_billing_address_request.go index f26b633..2112487 100644 --- a/fastly/model_billing_address_request.go +++ b/fastly/model_billing_address_request.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_billing_address_request_data.go b/fastly/model_billing_address_request_data.go index 4c0630d..2ea921a 100644 --- a/fastly/model_billing_address_request_data.go +++ b/fastly/model_billing_address_request_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_billing_address_response.go b/fastly/model_billing_address_response.go index 7a293f1..b4f5675 100644 --- a/fastly/model_billing_address_response.go +++ b/fastly/model_billing_address_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_billing_address_response_data.go b/fastly/model_billing_address_response_data.go index 032ee52..1f7cf2f 100644 --- a/fastly/model_billing_address_response_data.go +++ b/fastly/model_billing_address_response_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_billing_address_verification_error_response.go b/fastly/model_billing_address_verification_error_response.go index 9223a21..4b85675 100644 --- a/fastly/model_billing_address_verification_error_response.go +++ b/fastly/model_billing_address_verification_error_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_billing_address_verification_error_response_errors.go b/fastly/model_billing_address_verification_error_response_errors.go index 4a66231..4b54dab 100644 --- a/fastly/model_billing_address_verification_error_response_errors.go +++ b/fastly/model_billing_address_verification_error_response_errors.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_billing_estimate_lines.go b/fastly/model_billing_estimate_lines.go index ae27771..46c7df1 100644 --- a/fastly/model_billing_estimate_lines.go +++ b/fastly/model_billing_estimate_lines.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_billing_estimate_lines_line_items.go b/fastly/model_billing_estimate_lines_line_items.go index 98ea97b..c99de2d 100644 --- a/fastly/model_billing_estimate_lines_line_items.go +++ b/fastly/model_billing_estimate_lines_line_items.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_billing_estimate_response.go b/fastly/model_billing_estimate_response.go index 2cb0ec9..e59beaf 100644 --- a/fastly/model_billing_estimate_response.go +++ b/fastly/model_billing_estimate_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_billing_response.go b/fastly/model_billing_response.go index 422ce84..2882116 100644 --- a/fastly/model_billing_response.go +++ b/fastly/model_billing_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_billing_response_item_items_data.go b/fastly/model_billing_response_item_items_data.go index 2744717..27da118 100644 --- a/fastly/model_billing_response_item_items_data.go +++ b/fastly/model_billing_response_item_items_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_billing_response_line_item.go b/fastly/model_billing_response_line_item.go index 746fb62..4431061 100644 --- a/fastly/model_billing_response_line_item.go +++ b/fastly/model_billing_response_line_item.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_billing_status.go b/fastly/model_billing_status.go index 503e597..13f29e6 100644 --- a/fastly/model_billing_status.go +++ b/fastly/model_billing_status.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_billing_total.go b/fastly/model_billing_total.go index 20e996e..6fa0eed 100644 --- a/fastly/model_billing_total.go +++ b/fastly/model_billing_total.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_billing_total_extras.go b/fastly/model_billing_total_extras.go index 577835c..a996075 100644 --- a/fastly/model_billing_total_extras.go +++ b/fastly/model_billing_total_extras.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_bulk_update_acl_entries_request.go b/fastly/model_bulk_update_acl_entries_request.go index 1975c31..40ff081 100644 --- a/fastly/model_bulk_update_acl_entries_request.go +++ b/fastly/model_bulk_update_acl_entries_request.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_bulk_update_acl_entry.go b/fastly/model_bulk_update_acl_entry.go index d06c038..660d7cb 100644 --- a/fastly/model_bulk_update_acl_entry.go +++ b/fastly/model_bulk_update_acl_entry.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_bulk_update_acl_entry_all_of.go b/fastly/model_bulk_update_acl_entry_all_of.go index 42d012d..c99dbf9 100644 --- a/fastly/model_bulk_update_acl_entry_all_of.go +++ b/fastly/model_bulk_update_acl_entry_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_bulk_update_config_store_item.go b/fastly/model_bulk_update_config_store_item.go index 00c34bb..cc1e695 100644 --- a/fastly/model_bulk_update_config_store_item.go +++ b/fastly/model_bulk_update_config_store_item.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_bulk_update_config_store_item_all_of.go b/fastly/model_bulk_update_config_store_item_all_of.go index 6f9ae19..093372f 100644 --- a/fastly/model_bulk_update_config_store_item_all_of.go +++ b/fastly/model_bulk_update_config_store_item_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_bulk_update_config_store_list_request.go b/fastly/model_bulk_update_config_store_list_request.go index 64ca153..c0a3973 100644 --- a/fastly/model_bulk_update_config_store_list_request.go +++ b/fastly/model_bulk_update_config_store_list_request.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_bulk_update_dictionary_item.go b/fastly/model_bulk_update_dictionary_item.go index 64c1eae..0a9fb76 100644 --- a/fastly/model_bulk_update_dictionary_item.go +++ b/fastly/model_bulk_update_dictionary_item.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_bulk_update_dictionary_list_request.go b/fastly/model_bulk_update_dictionary_list_request.go index 4a7fb61..3448fd6 100644 --- a/fastly/model_bulk_update_dictionary_list_request.go +++ b/fastly/model_bulk_update_dictionary_list_request.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_bulk_waf_active_rules.go b/fastly/model_bulk_waf_active_rules.go index dde09cd..be7558f 100644 --- a/fastly/model_bulk_waf_active_rules.go +++ b/fastly/model_bulk_waf_active_rules.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_cache_setting.go b/fastly/model_cache_setting.go index feece77..fefcc0a 100644 --- a/fastly/model_cache_setting.go +++ b/fastly/model_cache_setting.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_cache_setting_response.go b/fastly/model_cache_setting_response.go index bcf15af..adf95b3 100644 --- a/fastly/model_cache_setting_response.go +++ b/fastly/model_cache_setting_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_client_key.go b/fastly/model_client_key.go index 0d4cc1a..00a381f 100644 --- a/fastly/model_client_key.go +++ b/fastly/model_client_key.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_condition.go b/fastly/model_condition.go index 03d567d..9cc7823 100644 --- a/fastly/model_condition.go +++ b/fastly/model_condition.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_condition_response.go b/fastly/model_condition_response.go index 8e98ec1..f42e4c8 100644 --- a/fastly/model_condition_response.go +++ b/fastly/model_condition_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_config_store.go b/fastly/model_config_store.go index 00fef15..67facbd 100644 --- a/fastly/model_config_store.go +++ b/fastly/model_config_store.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_config_store_info_response.go b/fastly/model_config_store_info_response.go index 91eb3e0..260ce92 100644 --- a/fastly/model_config_store_info_response.go +++ b/fastly/model_config_store_info_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_config_store_item.go b/fastly/model_config_store_item.go index 6475abb..9973486 100644 --- a/fastly/model_config_store_item.go +++ b/fastly/model_config_store_item.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_config_store_item_response.go b/fastly/model_config_store_item_response.go index 8601bcd..426a781 100644 --- a/fastly/model_config_store_item_response.go +++ b/fastly/model_config_store_item_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_config_store_item_response_all_of.go b/fastly/model_config_store_item_response_all_of.go index b687d47..065e2e4 100644 --- a/fastly/model_config_store_item_response_all_of.go +++ b/fastly/model_config_store_item_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_config_store_response.go b/fastly/model_config_store_response.go index 87e71a1..0e84af7 100644 --- a/fastly/model_config_store_response.go +++ b/fastly/model_config_store_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_config_store_response_all_of.go b/fastly/model_config_store_response_all_of.go index f18b1f1..b149ef9 100644 --- a/fastly/model_config_store_response_all_of.go +++ b/fastly/model_config_store_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_contact.go b/fastly/model_contact.go index cd07eab..a37b1cf 100644 --- a/fastly/model_contact.go +++ b/fastly/model_contact.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_contact_response.go b/fastly/model_contact_response.go index b0da59e..9be61ac 100644 --- a/fastly/model_contact_response.go +++ b/fastly/model_contact_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_contact_response_all_of.go b/fastly/model_contact_response_all_of.go index 7d99f27..9bee55e 100644 --- a/fastly/model_contact_response_all_of.go +++ b/fastly/model_contact_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_content.go b/fastly/model_content.go index 58f0df1..69d8c53 100644 --- a/fastly/model_content.go +++ b/fastly/model_content.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_create_response_object_request.go b/fastly/model_create_response_object_request.go index b5d216f..fa18aaf 100644 --- a/fastly/model_create_response_object_request.go +++ b/fastly/model_create_response_object_request.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_customer.go b/fastly/model_customer.go index 7c64d42..07f8d4d 100644 --- a/fastly/model_customer.go +++ b/fastly/model_customer.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_customer_response.go b/fastly/model_customer_response.go index fa1f6fe..421e3fe 100644 --- a/fastly/model_customer_response.go +++ b/fastly/model_customer_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_customer_response_all_of.go b/fastly/model_customer_response_all_of.go index c37b9b0..0718ced 100644 --- a/fastly/model_customer_response_all_of.go +++ b/fastly/model_customer_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_default_settings.go b/fastly/model_default_settings.go new file mode 100644 index 0000000..6c6f0a4 --- /dev/null +++ b/fastly/model_default_settings.go @@ -0,0 +1,412 @@ +// Package fastly is an API client library for interacting with most facets of the Fastly API. +package fastly + +/* +Fastly API + +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) + +API version: 1.0.0 +Contact: oss@fastly.com +*/ + +// This code is auto-generated; DO NOT EDIT. + + +import ( + "encoding/json" +) + +// DefaultSettings struct for DefaultSettings +type DefaultSettings struct { + // The type of filter to use while resizing an image. + ResizeFilter *string `json:"resize_filter,omitempty"` + // Controls whether or not to default to WebP output when the client supports it. This is equivalent to adding \"auto=webp\" to all image optimizer requests. + Webp *bool `json:"webp,omitempty"` + // The default quality to use with WebP output. This can be overridden with the second option in the \"quality\" URL parameter on specific image optimizer requests. + WebpQuality *int32 `json:"webp_quality,omitempty"` + // The default type of JPEG output to use. This can be overridden with \"format=bjpeg\" and \"format=pjpeg\" on specific image optimizer requests. + JpegType *string `json:"jpeg_type,omitempty"` + // The default quality to use with JPEG output. This can be overridden with the \"quality\" parameter on specific image optimizer requests. + JpegQuality *int32 `json:"jpeg_quality,omitempty"` + // Whether or not we should allow output images to render at sizes larger than input. + Upscale *bool `json:"upscale,omitempty"` + // Enables GIF to MP4 transformations on this service. + AllowVideo *bool `json:"allow_video,omitempty"` + AdditionalProperties map[string]any +} + +type _DefaultSettings DefaultSettings + +// NewDefaultSettings instantiates a new DefaultSettings object +// This constructor will assign default values to properties that have it defined, +// and makes sure properties required by API are set, but the set of arguments +// will change when the set of required properties is changed +func NewDefaultSettings() *DefaultSettings { + this := DefaultSettings{} + var resizeFilter string = "lanczos3" + this.ResizeFilter = &resizeFilter + var webp bool = false + this.Webp = &webp + var webpQuality int32 = 85 + this.WebpQuality = &webpQuality + var jpegType string = "auto" + this.JpegType = &jpegType + var jpegQuality int32 = 85 + this.JpegQuality = &jpegQuality + var upscale bool = false + this.Upscale = &upscale + var allowVideo bool = false + this.AllowVideo = &allowVideo + return &this +} + +// NewDefaultSettingsWithDefaults instantiates a new DefaultSettings object +// This constructor will only assign default values to properties that have it defined, +// but it doesn't guarantee that properties required by API are set +func NewDefaultSettingsWithDefaults() *DefaultSettings { + this := DefaultSettings{} + var resizeFilter string = "lanczos3" + this.ResizeFilter = &resizeFilter + var webp bool = false + this.Webp = &webp + var webpQuality int32 = 85 + this.WebpQuality = &webpQuality + var jpegType string = "auto" + this.JpegType = &jpegType + var jpegQuality int32 = 85 + this.JpegQuality = &jpegQuality + var upscale bool = false + this.Upscale = &upscale + var allowVideo bool = false + this.AllowVideo = &allowVideo + return &this +} + +// GetResizeFilter returns the ResizeFilter field value if set, zero value otherwise. +func (o *DefaultSettings) GetResizeFilter() string { + if o == nil || o.ResizeFilter == nil { + var ret string + return ret + } + return *o.ResizeFilter +} + +// GetResizeFilterOk returns a tuple with the ResizeFilter field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *DefaultSettings) GetResizeFilterOk() (*string, bool) { + if o == nil || o.ResizeFilter == nil { + return nil, false + } + return o.ResizeFilter, true +} + +// HasResizeFilter returns a boolean if a field has been set. +func (o *DefaultSettings) HasResizeFilter() bool { + if o != nil && o.ResizeFilter != nil { + return true + } + + return false +} + +// SetResizeFilter gets a reference to the given string and assigns it to the ResizeFilter field. +func (o *DefaultSettings) SetResizeFilter(v string) { + o.ResizeFilter = &v +} + +// GetWebp returns the Webp field value if set, zero value otherwise. +func (o *DefaultSettings) GetWebp() bool { + if o == nil || o.Webp == nil { + var ret bool + return ret + } + return *o.Webp +} + +// GetWebpOk returns a tuple with the Webp field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *DefaultSettings) GetWebpOk() (*bool, bool) { + if o == nil || o.Webp == nil { + return nil, false + } + return o.Webp, true +} + +// HasWebp returns a boolean if a field has been set. +func (o *DefaultSettings) HasWebp() bool { + if o != nil && o.Webp != nil { + return true + } + + return false +} + +// SetWebp gets a reference to the given bool and assigns it to the Webp field. +func (o *DefaultSettings) SetWebp(v bool) { + o.Webp = &v +} + +// GetWebpQuality returns the WebpQuality field value if set, zero value otherwise. +func (o *DefaultSettings) GetWebpQuality() int32 { + if o == nil || o.WebpQuality == nil { + var ret int32 + return ret + } + return *o.WebpQuality +} + +// GetWebpQualityOk returns a tuple with the WebpQuality field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *DefaultSettings) GetWebpQualityOk() (*int32, bool) { + if o == nil || o.WebpQuality == nil { + return nil, false + } + return o.WebpQuality, true +} + +// HasWebpQuality returns a boolean if a field has been set. +func (o *DefaultSettings) HasWebpQuality() bool { + if o != nil && o.WebpQuality != nil { + return true + } + + return false +} + +// SetWebpQuality gets a reference to the given int32 and assigns it to the WebpQuality field. +func (o *DefaultSettings) SetWebpQuality(v int32) { + o.WebpQuality = &v +} + +// GetJpegType returns the JpegType field value if set, zero value otherwise. +func (o *DefaultSettings) GetJpegType() string { + if o == nil || o.JpegType == nil { + var ret string + return ret + } + return *o.JpegType +} + +// GetJpegTypeOk returns a tuple with the JpegType field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *DefaultSettings) GetJpegTypeOk() (*string, bool) { + if o == nil || o.JpegType == nil { + return nil, false + } + return o.JpegType, true +} + +// HasJpegType returns a boolean if a field has been set. +func (o *DefaultSettings) HasJpegType() bool { + if o != nil && o.JpegType != nil { + return true + } + + return false +} + +// SetJpegType gets a reference to the given string and assigns it to the JpegType field. +func (o *DefaultSettings) SetJpegType(v string) { + o.JpegType = &v +} + +// GetJpegQuality returns the JpegQuality field value if set, zero value otherwise. +func (o *DefaultSettings) GetJpegQuality() int32 { + if o == nil || o.JpegQuality == nil { + var ret int32 + return ret + } + return *o.JpegQuality +} + +// GetJpegQualityOk returns a tuple with the JpegQuality field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *DefaultSettings) GetJpegQualityOk() (*int32, bool) { + if o == nil || o.JpegQuality == nil { + return nil, false + } + return o.JpegQuality, true +} + +// HasJpegQuality returns a boolean if a field has been set. +func (o *DefaultSettings) HasJpegQuality() bool { + if o != nil && o.JpegQuality != nil { + return true + } + + return false +} + +// SetJpegQuality gets a reference to the given int32 and assigns it to the JpegQuality field. +func (o *DefaultSettings) SetJpegQuality(v int32) { + o.JpegQuality = &v +} + +// GetUpscale returns the Upscale field value if set, zero value otherwise. +func (o *DefaultSettings) GetUpscale() bool { + if o == nil || o.Upscale == nil { + var ret bool + return ret + } + return *o.Upscale +} + +// GetUpscaleOk returns a tuple with the Upscale field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *DefaultSettings) GetUpscaleOk() (*bool, bool) { + if o == nil || o.Upscale == nil { + return nil, false + } + return o.Upscale, true +} + +// HasUpscale returns a boolean if a field has been set. +func (o *DefaultSettings) HasUpscale() bool { + if o != nil && o.Upscale != nil { + return true + } + + return false +} + +// SetUpscale gets a reference to the given bool and assigns it to the Upscale field. +func (o *DefaultSettings) SetUpscale(v bool) { + o.Upscale = &v +} + +// GetAllowVideo returns the AllowVideo field value if set, zero value otherwise. +func (o *DefaultSettings) GetAllowVideo() bool { + if o == nil || o.AllowVideo == nil { + var ret bool + return ret + } + return *o.AllowVideo +} + +// GetAllowVideoOk returns a tuple with the AllowVideo field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *DefaultSettings) GetAllowVideoOk() (*bool, bool) { + if o == nil || o.AllowVideo == nil { + return nil, false + } + return o.AllowVideo, true +} + +// HasAllowVideo returns a boolean if a field has been set. +func (o *DefaultSettings) HasAllowVideo() bool { + if o != nil && o.AllowVideo != nil { + return true + } + + return false +} + +// SetAllowVideo gets a reference to the given bool and assigns it to the AllowVideo field. +func (o *DefaultSettings) SetAllowVideo(v bool) { + o.AllowVideo = &v +} + +// MarshalJSON implements the json.Marshaler interface. +// Marshaler is the interface implemented by types that can marshal themselves into valid JSON. +func (o DefaultSettings) MarshalJSON() ([]byte, error) { + toSerialize := map[string]any{} + if o.ResizeFilter != nil { + toSerialize["resize_filter"] = o.ResizeFilter + } + if o.Webp != nil { + toSerialize["webp"] = o.Webp + } + if o.WebpQuality != nil { + toSerialize["webp_quality"] = o.WebpQuality + } + if o.JpegType != nil { + toSerialize["jpeg_type"] = o.JpegType + } + if o.JpegQuality != nil { + toSerialize["jpeg_quality"] = o.JpegQuality + } + if o.Upscale != nil { + toSerialize["upscale"] = o.Upscale + } + if o.AllowVideo != nil { + toSerialize["allow_video"] = o.AllowVideo + } + + for key, value := range o.AdditionalProperties { + toSerialize[key] = value + } + + return json.Marshal(toSerialize) +} + +// UnmarshalJSON implements the Unmarshaler interface. +// Unmarshaler is the interface implemented by types that can unmarshal a JSON description of themselves. +func (o *DefaultSettings) UnmarshalJSON(bytes []byte) (err error) { + varDefaultSettings := _DefaultSettings{} + + if err = json.Unmarshal(bytes, &varDefaultSettings); err == nil { + *o = DefaultSettings(varDefaultSettings) + } + + additionalProperties := make(map[string]any) + + if err = json.Unmarshal(bytes, &additionalProperties); err == nil { + delete(additionalProperties, "resize_filter") + delete(additionalProperties, "webp") + delete(additionalProperties, "webp_quality") + delete(additionalProperties, "jpeg_type") + delete(additionalProperties, "jpeg_quality") + delete(additionalProperties, "upscale") + delete(additionalProperties, "allow_video") + o.AdditionalProperties = additionalProperties + } + + return err +} + +// NullableDefaultSettings is a helper abstraction for handling nullable defaultsettings types. +type NullableDefaultSettings struct { + value *DefaultSettings + isSet bool +} + +// Get returns the value. +func (v NullableDefaultSettings) Get() *DefaultSettings { + return v.value +} + +// Set modifies the value. +func (v *NullableDefaultSettings) Set(val *DefaultSettings) { + v.value = val + v.isSet = true +} + +// IsSet indicates if the value was set. +func (v NullableDefaultSettings) IsSet() bool { + return v.isSet +} + +// Unset removes the value. +func (v *NullableDefaultSettings) Unset() { + v.value = nil + v.isSet = false +} + +// NewNullableDefaultSettings returns a pointer to a new instance of NullableDefaultSettings. +func NewNullableDefaultSettings(val *DefaultSettings) *NullableDefaultSettings { + return &NullableDefaultSettings{value: val, isSet: true} +} + +// MarshalJSON implements the json.Marshaler interface. +// Marshaler is the interface implemented by types that can marshal themselves into valid JSON. +func (v NullableDefaultSettings) MarshalJSON() ([]byte, error) { + return json.Marshal(v.value) +} + +// UnmarshalJSON implements the Unmarshaler interface. +// Unmarshaler is the interface implemented by types that can unmarshal a JSON description of themselves. +func (v *NullableDefaultSettings) UnmarshalJSON(src []byte) error { + v.isSet = true + return json.Unmarshal(src, &v.value) +} diff --git a/fastly/model_default_settings_error.go b/fastly/model_default_settings_error.go new file mode 100644 index 0000000..8477c39 --- /dev/null +++ b/fastly/model_default_settings_error.go @@ -0,0 +1,229 @@ +// Package fastly is an API client library for interacting with most facets of the Fastly API. +package fastly + +/* +Fastly API + +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) + +API version: 1.0.0 +Contact: oss@fastly.com +*/ + +// This code is auto-generated; DO NOT EDIT. + + +import ( + "encoding/json" +) + +// DefaultSettingsError struct for DefaultSettingsError +type DefaultSettingsError struct { + Title *string `json:"title,omitempty"` + Type *string `json:"type,omitempty"` + Detail *string `json:"detail,omitempty"` + AdditionalProperties map[string]any +} + +type _DefaultSettingsError DefaultSettingsError + +// NewDefaultSettingsError instantiates a new DefaultSettingsError object +// This constructor will assign default values to properties that have it defined, +// and makes sure properties required by API are set, but the set of arguments +// will change when the set of required properties is changed +func NewDefaultSettingsError() *DefaultSettingsError { + this := DefaultSettingsError{} + return &this +} + +// NewDefaultSettingsErrorWithDefaults instantiates a new DefaultSettingsError object +// This constructor will only assign default values to properties that have it defined, +// but it doesn't guarantee that properties required by API are set +func NewDefaultSettingsErrorWithDefaults() *DefaultSettingsError { + this := DefaultSettingsError{} + return &this +} + +// GetTitle returns the Title field value if set, zero value otherwise. +func (o *DefaultSettingsError) GetTitle() string { + if o == nil || o.Title == nil { + var ret string + return ret + } + return *o.Title +} + +// GetTitleOk returns a tuple with the Title field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *DefaultSettingsError) GetTitleOk() (*string, bool) { + if o == nil || o.Title == nil { + return nil, false + } + return o.Title, true +} + +// HasTitle returns a boolean if a field has been set. +func (o *DefaultSettingsError) HasTitle() bool { + if o != nil && o.Title != nil { + return true + } + + return false +} + +// SetTitle gets a reference to the given string and assigns it to the Title field. +func (o *DefaultSettingsError) SetTitle(v string) { + o.Title = &v +} + +// GetType returns the Type field value if set, zero value otherwise. +func (o *DefaultSettingsError) GetType() string { + if o == nil || o.Type == nil { + var ret string + return ret + } + return *o.Type +} + +// GetTypeOk returns a tuple with the Type field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *DefaultSettingsError) GetTypeOk() (*string, bool) { + if o == nil || o.Type == nil { + return nil, false + } + return o.Type, true +} + +// HasType returns a boolean if a field has been set. +func (o *DefaultSettingsError) HasType() bool { + if o != nil && o.Type != nil { + return true + } + + return false +} + +// SetType gets a reference to the given string and assigns it to the Type field. +func (o *DefaultSettingsError) SetType(v string) { + o.Type = &v +} + +// GetDetail returns the Detail field value if set, zero value otherwise. +func (o *DefaultSettingsError) GetDetail() string { + if o == nil || o.Detail == nil { + var ret string + return ret + } + return *o.Detail +} + +// GetDetailOk returns a tuple with the Detail field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *DefaultSettingsError) GetDetailOk() (*string, bool) { + if o == nil || o.Detail == nil { + return nil, false + } + return o.Detail, true +} + +// HasDetail returns a boolean if a field has been set. +func (o *DefaultSettingsError) HasDetail() bool { + if o != nil && o.Detail != nil { + return true + } + + return false +} + +// SetDetail gets a reference to the given string and assigns it to the Detail field. +func (o *DefaultSettingsError) SetDetail(v string) { + o.Detail = &v +} + +// MarshalJSON implements the json.Marshaler interface. +// Marshaler is the interface implemented by types that can marshal themselves into valid JSON. +func (o DefaultSettingsError) MarshalJSON() ([]byte, error) { + toSerialize := map[string]any{} + if o.Title != nil { + toSerialize["title"] = o.Title + } + if o.Type != nil { + toSerialize["type"] = o.Type + } + if o.Detail != nil { + toSerialize["detail"] = o.Detail + } + + for key, value := range o.AdditionalProperties { + toSerialize[key] = value + } + + return json.Marshal(toSerialize) +} + +// UnmarshalJSON implements the Unmarshaler interface. +// Unmarshaler is the interface implemented by types that can unmarshal a JSON description of themselves. +func (o *DefaultSettingsError) UnmarshalJSON(bytes []byte) (err error) { + varDefaultSettingsError := _DefaultSettingsError{} + + if err = json.Unmarshal(bytes, &varDefaultSettingsError); err == nil { + *o = DefaultSettingsError(varDefaultSettingsError) + } + + additionalProperties := make(map[string]any) + + if err = json.Unmarshal(bytes, &additionalProperties); err == nil { + delete(additionalProperties, "title") + delete(additionalProperties, "type") + delete(additionalProperties, "detail") + o.AdditionalProperties = additionalProperties + } + + return err +} + +// NullableDefaultSettingsError is a helper abstraction for handling nullable defaultsettingserror types. +type NullableDefaultSettingsError struct { + value *DefaultSettingsError + isSet bool +} + +// Get returns the value. +func (v NullableDefaultSettingsError) Get() *DefaultSettingsError { + return v.value +} + +// Set modifies the value. +func (v *NullableDefaultSettingsError) Set(val *DefaultSettingsError) { + v.value = val + v.isSet = true +} + +// IsSet indicates if the value was set. +func (v NullableDefaultSettingsError) IsSet() bool { + return v.isSet +} + +// Unset removes the value. +func (v *NullableDefaultSettingsError) Unset() { + v.value = nil + v.isSet = false +} + +// NewNullableDefaultSettingsError returns a pointer to a new instance of NullableDefaultSettingsError. +func NewNullableDefaultSettingsError(val *DefaultSettingsError) *NullableDefaultSettingsError { + return &NullableDefaultSettingsError{value: val, isSet: true} +} + +// MarshalJSON implements the json.Marshaler interface. +// Marshaler is the interface implemented by types that can marshal themselves into valid JSON. +func (v NullableDefaultSettingsError) MarshalJSON() ([]byte, error) { + return json.Marshal(v.value) +} + +// UnmarshalJSON implements the Unmarshaler interface. +// Unmarshaler is the interface implemented by types that can unmarshal a JSON description of themselves. +func (v *NullableDefaultSettingsError) UnmarshalJSON(src []byte) error { + v.isSet = true + return json.Unmarshal(src, &v.value) +} diff --git a/fastly/model_default_settings_response.go b/fastly/model_default_settings_response.go new file mode 100644 index 0000000..ce53778 --- /dev/null +++ b/fastly/model_default_settings_response.go @@ -0,0 +1,349 @@ +// Package fastly is an API client library for interacting with most facets of the Fastly API. +package fastly + +/* +Fastly API + +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) + +API version: 1.0.0 +Contact: oss@fastly.com +*/ + +// This code is auto-generated; DO NOT EDIT. + + +import ( + "encoding/json" +) + +// DefaultSettingsResponse struct for DefaultSettingsResponse +type DefaultSettingsResponse struct { + // The type of filter to use while resizing an image. + ResizeFilter string `json:"resize_filter"` + // Controls whether or not to default to WebP output when the client supports it. This is equivalent to adding \"auto=webp\" to all image optimizer requests. + Webp bool `json:"webp"` + // The default quality to use with WebP output. This can be overridden with the second option in the \"quality\" URL parameter on specific image optimizer requests. + WebpQuality int32 `json:"webp_quality"` + // The default type of JPEG output to use. This can be overridden with \"format=bjpeg\" and \"format=pjpeg\" on specific image optimizer requests. + JpegType string `json:"jpeg_type"` + // The default quality to use with JPEG output. This can be overridden with the \"quality\" parameter on specific image optimizer requests. + JpegQuality int32 `json:"jpeg_quality"` + // Whether or not we should allow output images to render at sizes larger than input. + Upscale bool `json:"upscale"` + // Enables GIF to MP4 transformations on this service. + AllowVideo bool `json:"allow_video"` + AdditionalProperties map[string]any +} + +type _DefaultSettingsResponse DefaultSettingsResponse + +// NewDefaultSettingsResponse instantiates a new DefaultSettingsResponse object +// This constructor will assign default values to properties that have it defined, +// and makes sure properties required by API are set, but the set of arguments +// will change when the set of required properties is changed +func NewDefaultSettingsResponse(resizeFilter string, webp bool, webpQuality int32, jpegType string, jpegQuality int32, upscale bool, allowVideo bool) *DefaultSettingsResponse { + this := DefaultSettingsResponse{} + this.ResizeFilter = resizeFilter + this.Webp = webp + this.WebpQuality = webpQuality + this.JpegType = jpegType + this.JpegQuality = jpegQuality + this.Upscale = upscale + this.AllowVideo = allowVideo + return &this +} + +// NewDefaultSettingsResponseWithDefaults instantiates a new DefaultSettingsResponse object +// This constructor will only assign default values to properties that have it defined, +// but it doesn't guarantee that properties required by API are set +func NewDefaultSettingsResponseWithDefaults() *DefaultSettingsResponse { + this := DefaultSettingsResponse{} + var resizeFilter string = "lanczos3" + this.ResizeFilter = resizeFilter + var webp bool = false + this.Webp = webp + var webpQuality int32 = 85 + this.WebpQuality = webpQuality + var jpegType string = "auto" + this.JpegType = jpegType + var jpegQuality int32 = 85 + this.JpegQuality = jpegQuality + var upscale bool = false + this.Upscale = upscale + var allowVideo bool = false + this.AllowVideo = allowVideo + return &this +} + +// GetResizeFilter returns the ResizeFilter field value +func (o *DefaultSettingsResponse) GetResizeFilter() string { + if o == nil { + var ret string + return ret + } + + return o.ResizeFilter +} + +// GetResizeFilterOk returns a tuple with the ResizeFilter field value +// and a boolean to check if the value has been set. +func (o *DefaultSettingsResponse) GetResizeFilterOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.ResizeFilter, true +} + +// SetResizeFilter sets field value +func (o *DefaultSettingsResponse) SetResizeFilter(v string) { + o.ResizeFilter = v +} + +// GetWebp returns the Webp field value +func (o *DefaultSettingsResponse) GetWebp() bool { + if o == nil { + var ret bool + return ret + } + + return o.Webp +} + +// GetWebpOk returns a tuple with the Webp field value +// and a boolean to check if the value has been set. +func (o *DefaultSettingsResponse) GetWebpOk() (*bool, bool) { + if o == nil { + return nil, false + } + return &o.Webp, true +} + +// SetWebp sets field value +func (o *DefaultSettingsResponse) SetWebp(v bool) { + o.Webp = v +} + +// GetWebpQuality returns the WebpQuality field value +func (o *DefaultSettingsResponse) GetWebpQuality() int32 { + if o == nil { + var ret int32 + return ret + } + + return o.WebpQuality +} + +// GetWebpQualityOk returns a tuple with the WebpQuality field value +// and a boolean to check if the value has been set. +func (o *DefaultSettingsResponse) GetWebpQualityOk() (*int32, bool) { + if o == nil { + return nil, false + } + return &o.WebpQuality, true +} + +// SetWebpQuality sets field value +func (o *DefaultSettingsResponse) SetWebpQuality(v int32) { + o.WebpQuality = v +} + +// GetJpegType returns the JpegType field value +func (o *DefaultSettingsResponse) GetJpegType() string { + if o == nil { + var ret string + return ret + } + + return o.JpegType +} + +// GetJpegTypeOk returns a tuple with the JpegType field value +// and a boolean to check if the value has been set. +func (o *DefaultSettingsResponse) GetJpegTypeOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.JpegType, true +} + +// SetJpegType sets field value +func (o *DefaultSettingsResponse) SetJpegType(v string) { + o.JpegType = v +} + +// GetJpegQuality returns the JpegQuality field value +func (o *DefaultSettingsResponse) GetJpegQuality() int32 { + if o == nil { + var ret int32 + return ret + } + + return o.JpegQuality +} + +// GetJpegQualityOk returns a tuple with the JpegQuality field value +// and a boolean to check if the value has been set. +func (o *DefaultSettingsResponse) GetJpegQualityOk() (*int32, bool) { + if o == nil { + return nil, false + } + return &o.JpegQuality, true +} + +// SetJpegQuality sets field value +func (o *DefaultSettingsResponse) SetJpegQuality(v int32) { + o.JpegQuality = v +} + +// GetUpscale returns the Upscale field value +func (o *DefaultSettingsResponse) GetUpscale() bool { + if o == nil { + var ret bool + return ret + } + + return o.Upscale +} + +// GetUpscaleOk returns a tuple with the Upscale field value +// and a boolean to check if the value has been set. +func (o *DefaultSettingsResponse) GetUpscaleOk() (*bool, bool) { + if o == nil { + return nil, false + } + return &o.Upscale, true +} + +// SetUpscale sets field value +func (o *DefaultSettingsResponse) SetUpscale(v bool) { + o.Upscale = v +} + +// GetAllowVideo returns the AllowVideo field value +func (o *DefaultSettingsResponse) GetAllowVideo() bool { + if o == nil { + var ret bool + return ret + } + + return o.AllowVideo +} + +// GetAllowVideoOk returns a tuple with the AllowVideo field value +// and a boolean to check if the value has been set. +func (o *DefaultSettingsResponse) GetAllowVideoOk() (*bool, bool) { + if o == nil { + return nil, false + } + return &o.AllowVideo, true +} + +// SetAllowVideo sets field value +func (o *DefaultSettingsResponse) SetAllowVideo(v bool) { + o.AllowVideo = v +} + +// MarshalJSON implements the json.Marshaler interface. +// Marshaler is the interface implemented by types that can marshal themselves into valid JSON. +func (o DefaultSettingsResponse) MarshalJSON() ([]byte, error) { + toSerialize := map[string]any{} + if true { + toSerialize["resize_filter"] = o.ResizeFilter + } + if true { + toSerialize["webp"] = o.Webp + } + if true { + toSerialize["webp_quality"] = o.WebpQuality + } + if true { + toSerialize["jpeg_type"] = o.JpegType + } + if true { + toSerialize["jpeg_quality"] = o.JpegQuality + } + if true { + toSerialize["upscale"] = o.Upscale + } + if true { + toSerialize["allow_video"] = o.AllowVideo + } + + for key, value := range o.AdditionalProperties { + toSerialize[key] = value + } + + return json.Marshal(toSerialize) +} + +// UnmarshalJSON implements the Unmarshaler interface. +// Unmarshaler is the interface implemented by types that can unmarshal a JSON description of themselves. +func (o *DefaultSettingsResponse) UnmarshalJSON(bytes []byte) (err error) { + varDefaultSettingsResponse := _DefaultSettingsResponse{} + + if err = json.Unmarshal(bytes, &varDefaultSettingsResponse); err == nil { + *o = DefaultSettingsResponse(varDefaultSettingsResponse) + } + + additionalProperties := make(map[string]any) + + if err = json.Unmarshal(bytes, &additionalProperties); err == nil { + delete(additionalProperties, "resize_filter") + delete(additionalProperties, "webp") + delete(additionalProperties, "webp_quality") + delete(additionalProperties, "jpeg_type") + delete(additionalProperties, "jpeg_quality") + delete(additionalProperties, "upscale") + delete(additionalProperties, "allow_video") + o.AdditionalProperties = additionalProperties + } + + return err +} + +// NullableDefaultSettingsResponse is a helper abstraction for handling nullable defaultsettingsresponse types. +type NullableDefaultSettingsResponse struct { + value *DefaultSettingsResponse + isSet bool +} + +// Get returns the value. +func (v NullableDefaultSettingsResponse) Get() *DefaultSettingsResponse { + return v.value +} + +// Set modifies the value. +func (v *NullableDefaultSettingsResponse) Set(val *DefaultSettingsResponse) { + v.value = val + v.isSet = true +} + +// IsSet indicates if the value was set. +func (v NullableDefaultSettingsResponse) IsSet() bool { + return v.isSet +} + +// Unset removes the value. +func (v *NullableDefaultSettingsResponse) Unset() { + v.value = nil + v.isSet = false +} + +// NewNullableDefaultSettingsResponse returns a pointer to a new instance of NullableDefaultSettingsResponse. +func NewNullableDefaultSettingsResponse(val *DefaultSettingsResponse) *NullableDefaultSettingsResponse { + return &NullableDefaultSettingsResponse{value: val, isSet: true} +} + +// MarshalJSON implements the json.Marshaler interface. +// Marshaler is the interface implemented by types that can marshal themselves into valid JSON. +func (v NullableDefaultSettingsResponse) MarshalJSON() ([]byte, error) { + return json.Marshal(v.value) +} + +// UnmarshalJSON implements the Unmarshaler interface. +// Unmarshaler is the interface implemented by types that can unmarshal a JSON description of themselves. +func (v *NullableDefaultSettingsResponse) UnmarshalJSON(src []byte) error { + v.isSet = true + return json.Unmarshal(src, &v.value) +} diff --git a/fastly/model_dictionary.go b/fastly/model_dictionary.go index 76bae35..8312c5e 100644 --- a/fastly/model_dictionary.go +++ b/fastly/model_dictionary.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_dictionary_info_response.go b/fastly/model_dictionary_info_response.go index 1cf28cf..81efa00 100644 --- a/fastly/model_dictionary_info_response.go +++ b/fastly/model_dictionary_info_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_dictionary_item.go b/fastly/model_dictionary_item.go index e12570f..fbdff19 100644 --- a/fastly/model_dictionary_item.go +++ b/fastly/model_dictionary_item.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_dictionary_item_response.go b/fastly/model_dictionary_item_response.go index cf1b177..4b97ab4 100644 --- a/fastly/model_dictionary_item_response.go +++ b/fastly/model_dictionary_item_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_dictionary_item_response_all_of.go b/fastly/model_dictionary_item_response_all_of.go index 24badd2..f7a7f6d 100644 --- a/fastly/model_dictionary_item_response_all_of.go +++ b/fastly/model_dictionary_item_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_dictionary_response.go b/fastly/model_dictionary_response.go index 0d872ca..dfee966 100644 --- a/fastly/model_dictionary_response.go +++ b/fastly/model_dictionary_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_dictionary_response_all_of.go b/fastly/model_dictionary_response_all_of.go index 3a213f9..29ed7f8 100644 --- a/fastly/model_dictionary_response_all_of.go +++ b/fastly/model_dictionary_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_diff_response.go b/fastly/model_diff_response.go index 9943c79..0ad0508 100644 --- a/fastly/model_diff_response.go +++ b/fastly/model_diff_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_director.go b/fastly/model_director.go index 1167a69..5e3a720 100644 --- a/fastly/model_director.go +++ b/fastly/model_director.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_director_backend.go b/fastly/model_director_backend.go index 18492f4..6805cd8 100644 --- a/fastly/model_director_backend.go +++ b/fastly/model_director_backend.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_director_backend_all_of.go b/fastly/model_director_backend_all_of.go index 20ec7b2..6a8d443 100644 --- a/fastly/model_director_backend_all_of.go +++ b/fastly/model_director_backend_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_director_response.go b/fastly/model_director_response.go index 7d38eaf..680a38e 100644 --- a/fastly/model_director_response.go +++ b/fastly/model_director_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_domain.go b/fastly/model_domain.go index 476c486..46e8122 100644 --- a/fastly/model_domain.go +++ b/fastly/model_domain.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_domain_inspector.go b/fastly/model_domain_inspector.go index fab1c83..701b9ab 100644 --- a/fastly/model_domain_inspector.go +++ b/fastly/model_domain_inspector.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_domain_inspector_entry.go b/fastly/model_domain_inspector_entry.go index cd4cff6..bb71c73 100644 --- a/fastly/model_domain_inspector_entry.go +++ b/fastly/model_domain_inspector_entry.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_domain_inspector_entry_dimensions.go b/fastly/model_domain_inspector_entry_dimensions.go index 8371d7b..1b2a2a0 100644 --- a/fastly/model_domain_inspector_entry_dimensions.go +++ b/fastly/model_domain_inspector_entry_dimensions.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_domain_inspector_measurements.go b/fastly/model_domain_inspector_measurements.go index 40b4b7b..0491e23 100644 --- a/fastly/model_domain_inspector_measurements.go +++ b/fastly/model_domain_inspector_measurements.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_domain_inspector_realtime_entry.go b/fastly/model_domain_inspector_realtime_entry.go index 87388eb..9887e00 100644 --- a/fastly/model_domain_inspector_realtime_entry.go +++ b/fastly/model_domain_inspector_realtime_entry.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_domain_response.go b/fastly/model_domain_response.go index b5e5c20..3ccfe1b 100644 --- a/fastly/model_domain_response.go +++ b/fastly/model_domain_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_enabled_product_response.go b/fastly/model_enabled_product_response.go index 05ad039..81bfffa 100644 --- a/fastly/model_enabled_product_response.go +++ b/fastly/model_enabled_product_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_enabled_product_response__links.go b/fastly/model_enabled_product_response__links.go index 6383c5a..48ca9a8 100644 --- a/fastly/model_enabled_product_response__links.go +++ b/fastly/model_enabled_product_response__links.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_enabled_product_response_product.go b/fastly/model_enabled_product_response_product.go index 6218b78..f72311a 100644 --- a/fastly/model_enabled_product_response_product.go +++ b/fastly/model_enabled_product_response_product.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_enabled_product_response_service.go b/fastly/model_enabled_product_response_service.go index 3063fad..ccc6111 100644 --- a/fastly/model_enabled_product_response_service.go +++ b/fastly/model_enabled_product_response_service.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_error.go b/fastly/model_error.go index 84a0318..613131b 100644 --- a/fastly/model_error.go +++ b/fastly/model_error.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_error_response_data.go b/fastly/model_error_response_data.go index a3b1e44..8e78381 100644 --- a/fastly/model_error_response_data.go +++ b/fastly/model_error_response_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_event.go b/fastly/model_event.go index ee6ae33..f30c7cb 100644 --- a/fastly/model_event.go +++ b/fastly/model_event.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_event_attributes.go b/fastly/model_event_attributes.go index 298c118..dd1ca52 100644 --- a/fastly/model_event_attributes.go +++ b/fastly/model_event_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_event_data.go b/fastly/model_event_data.go index dd8c72c..60da5aa 100644 --- a/fastly/model_event_data.go +++ b/fastly/model_event_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_event_response.go b/fastly/model_event_response.go index 23fb7e4..82fafff 100644 --- a/fastly/model_event_response.go +++ b/fastly/model_event_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_events_response.go b/fastly/model_events_response.go index 89d413e..3ceebff 100644 --- a/fastly/model_events_response.go +++ b/fastly/model_events_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_generic_token_error.go b/fastly/model_generic_token_error.go index ae26ffc..de33a35 100644 --- a/fastly/model_generic_token_error.go +++ b/fastly/model_generic_token_error.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_gzip.go b/fastly/model_gzip.go index 686202a..5fef43d 100644 --- a/fastly/model_gzip.go +++ b/fastly/model_gzip.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_gzip_response.go b/fastly/model_gzip_response.go index ce47cee..9a4bb3e 100644 --- a/fastly/model_gzip_response.go +++ b/fastly/model_gzip_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_header.go b/fastly/model_header.go index b051b27..584cedd 100644 --- a/fastly/model_header.go +++ b/fastly/model_header.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_header_response.go b/fastly/model_header_response.go index e24ef09..596c74b 100644 --- a/fastly/model_header_response.go +++ b/fastly/model_header_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_header_response_additional.go b/fastly/model_header_response_additional.go index ad0147d..4360797 100644 --- a/fastly/model_header_response_additional.go +++ b/fastly/model_header_response_additional.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_healthcheck.go b/fastly/model_healthcheck.go index 043f22b..1688cbc 100644 --- a/fastly/model_healthcheck.go +++ b/fastly/model_healthcheck.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_healthcheck_response.go b/fastly/model_healthcheck_response.go index de6c09b..7261322 100644 --- a/fastly/model_healthcheck_response.go +++ b/fastly/model_healthcheck_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_historical.go b/fastly/model_historical.go index 05c01c4..f2df044 100644 --- a/fastly/model_historical.go +++ b/fastly/model_historical.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_historical_ddos.go b/fastly/model_historical_ddos.go index 8c3e6dd..266feb3 100644 --- a/fastly/model_historical_ddos.go +++ b/fastly/model_historical_ddos.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_historical_ddos_meta.go b/fastly/model_historical_ddos_meta.go index 2d17ce2..b7ac5f5 100644 --- a/fastly/model_historical_ddos_meta.go +++ b/fastly/model_historical_ddos_meta.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_historical_domains.go b/fastly/model_historical_domains.go index 341cb22..40dc291 100644 --- a/fastly/model_historical_domains.go +++ b/fastly/model_historical_domains.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_historical_domains_data.go b/fastly/model_historical_domains_data.go index 883609c..57520f7 100644 --- a/fastly/model_historical_domains_data.go +++ b/fastly/model_historical_domains_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_historical_domains_meta.go b/fastly/model_historical_domains_meta.go index a943c1f..c36eba5 100644 --- a/fastly/model_historical_domains_meta.go +++ b/fastly/model_historical_domains_meta.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_historical_domains_meta_filters.go b/fastly/model_historical_domains_meta_filters.go index e4c28ff..b87f548 100644 --- a/fastly/model_historical_domains_meta_filters.go +++ b/fastly/model_historical_domains_meta_filters.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_historical_domains_response.go b/fastly/model_historical_domains_response.go index 7ed0295..960b1b5 100644 --- a/fastly/model_historical_domains_response.go +++ b/fastly/model_historical_domains_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_historical_domains_response_all_of.go b/fastly/model_historical_domains_response_all_of.go index 5aeb534..6da39a3 100644 --- a/fastly/model_historical_domains_response_all_of.go +++ b/fastly/model_historical_domains_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_historical_meta.go b/fastly/model_historical_meta.go index fcff802..78283bd 100644 --- a/fastly/model_historical_meta.go +++ b/fastly/model_historical_meta.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_historical_origins_response.go b/fastly/model_historical_origins_response.go index 7a6f401..db0aa32 100644 --- a/fastly/model_historical_origins_response.go +++ b/fastly/model_historical_origins_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_historical_origins_response_all_of.go b/fastly/model_historical_origins_response_all_of.go index f61dac7..360e73a 100644 --- a/fastly/model_historical_origins_response_all_of.go +++ b/fastly/model_historical_origins_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_historical_regions_response.go b/fastly/model_historical_regions_response.go index 0dae86f..14e71dd 100644 --- a/fastly/model_historical_regions_response.go +++ b/fastly/model_historical_regions_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_historical_regions_response_all_of.go b/fastly/model_historical_regions_response_all_of.go index 04f96f9..96271eb 100644 --- a/fastly/model_historical_regions_response_all_of.go +++ b/fastly/model_historical_regions_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_historical_stats_aggregated_response.go b/fastly/model_historical_stats_aggregated_response.go index fe1238f..81624f9 100644 --- a/fastly/model_historical_stats_aggregated_response.go +++ b/fastly/model_historical_stats_aggregated_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_historical_stats_aggregated_response_all_of.go b/fastly/model_historical_stats_aggregated_response_all_of.go index d2cbf56..6b4296c 100644 --- a/fastly/model_historical_stats_aggregated_response_all_of.go +++ b/fastly/model_historical_stats_aggregated_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_historical_stats_by_service_response.go b/fastly/model_historical_stats_by_service_response.go index 610ffc7..d2833f6 100644 --- a/fastly/model_historical_stats_by_service_response.go +++ b/fastly/model_historical_stats_by_service_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_historical_stats_by_service_response_all_of.go b/fastly/model_historical_stats_by_service_response_all_of.go index c6ab6cd..9b3001d 100644 --- a/fastly/model_historical_stats_by_service_response_all_of.go +++ b/fastly/model_historical_stats_by_service_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_historical_usage_aggregated_response.go b/fastly/model_historical_usage_aggregated_response.go index ac6383c..72604d6 100644 --- a/fastly/model_historical_usage_aggregated_response.go +++ b/fastly/model_historical_usage_aggregated_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_historical_usage_aggregated_response_all_of.go b/fastly/model_historical_usage_aggregated_response_all_of.go index 093e7b7..1c7c3c6 100644 --- a/fastly/model_historical_usage_aggregated_response_all_of.go +++ b/fastly/model_historical_usage_aggregated_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_historical_usage_data.go b/fastly/model_historical_usage_data.go index ca35385..4288556 100644 --- a/fastly/model_historical_usage_data.go +++ b/fastly/model_historical_usage_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_historical_usage_month_response.go b/fastly/model_historical_usage_month_response.go index cefffdb..8ab6b9e 100644 --- a/fastly/model_historical_usage_month_response.go +++ b/fastly/model_historical_usage_month_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_historical_usage_month_response_all_of.go b/fastly/model_historical_usage_month_response_all_of.go index c7db319..84b1d94 100644 --- a/fastly/model_historical_usage_month_response_all_of.go +++ b/fastly/model_historical_usage_month_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_historical_usage_month_response_data.go b/fastly/model_historical_usage_month_response_data.go index 8a0577b..161dba2 100644 --- a/fastly/model_historical_usage_month_response_data.go +++ b/fastly/model_historical_usage_month_response_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_historical_usage_service.go b/fastly/model_historical_usage_service.go index d186638..2bd1204 100644 --- a/fastly/model_historical_usage_service.go +++ b/fastly/model_historical_usage_service.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_historical_usage_service_response.go b/fastly/model_historical_usage_service_response.go index c95a8e1..fa87998 100644 --- a/fastly/model_historical_usage_service_response.go +++ b/fastly/model_historical_usage_service_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_historical_usage_service_response_all_of.go b/fastly/model_historical_usage_service_response_all_of.go index b17383e..c0beed8 100644 --- a/fastly/model_historical_usage_service_response_all_of.go +++ b/fastly/model_historical_usage_service_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_http3.go b/fastly/model_http3.go index 0df05ad..6c6c01a 100644 --- a/fastly/model_http3.go +++ b/fastly/model_http3.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_http3_all_of.go b/fastly/model_http3_all_of.go index 11d3248..9db1189 100644 --- a/fastly/model_http3_all_of.go +++ b/fastly/model_http3_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_http_response_format.go b/fastly/model_http_response_format.go index 42a0bbe..68dc9a2 100644 --- a/fastly/model_http_response_format.go +++ b/fastly/model_http_response_format.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_http_stream_format.go b/fastly/model_http_stream_format.go index c7642ca..928cedd 100644 --- a/fastly/model_http_stream_format.go +++ b/fastly/model_http_stream_format.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_iam_permission.go b/fastly/model_iam_permission.go index 7cc0d53..b4f8bc3 100644 --- a/fastly/model_iam_permission.go +++ b/fastly/model_iam_permission.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_iam_role.go b/fastly/model_iam_role.go index 8ea8c0c..0567796 100644 --- a/fastly/model_iam_role.go +++ b/fastly/model_iam_role.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_iam_role_all_of.go b/fastly/model_iam_role_all_of.go index 6067fca..cb4bcb6 100644 --- a/fastly/model_iam_role_all_of.go +++ b/fastly/model_iam_role_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_iam_service_group.go b/fastly/model_iam_service_group.go index c92dd61..a38b983 100644 --- a/fastly/model_iam_service_group.go +++ b/fastly/model_iam_service_group.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_iam_service_group_all_of.go b/fastly/model_iam_service_group_all_of.go index f631855..696b0ce 100644 --- a/fastly/model_iam_service_group_all_of.go +++ b/fastly/model_iam_service_group_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_iam_user_group.go b/fastly/model_iam_user_group.go index 03cede0..c32790b 100644 --- a/fastly/model_iam_user_group.go +++ b/fastly/model_iam_user_group.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_iam_user_group_all_of.go b/fastly/model_iam_user_group_all_of.go index 8211fd7..edab459 100644 --- a/fastly/model_iam_user_group_all_of.go +++ b/fastly/model_iam_user_group_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_included_with_waf_active_rule_item.go b/fastly/model_included_with_waf_active_rule_item.go index c13b9f4..a0aa0d4 100644 --- a/fastly/model_included_with_waf_active_rule_item.go +++ b/fastly/model_included_with_waf_active_rule_item.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_included_with_waf_exclusion_item.go b/fastly/model_included_with_waf_exclusion_item.go index ccdcd8f..29990dc 100644 --- a/fastly/model_included_with_waf_exclusion_item.go +++ b/fastly/model_included_with_waf_exclusion_item.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_included_with_waf_firewall_version_item.go b/fastly/model_included_with_waf_firewall_version_item.go index 8829796..e63904b 100644 --- a/fastly/model_included_with_waf_firewall_version_item.go +++ b/fastly/model_included_with_waf_firewall_version_item.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_included_with_waf_rule_item.go b/fastly/model_included_with_waf_rule_item.go index e1658f0..851a6e6 100644 --- a/fastly/model_included_with_waf_rule_item.go +++ b/fastly/model_included_with_waf_rule_item.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_inline_object.go b/fastly/model_inline_object.go index bdf3c13..ba7ea6a 100644 --- a/fastly/model_inline_object.go +++ b/fastly/model_inline_object.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_inline_object_1.go b/fastly/model_inline_object_1.go index b9d88ab..90a7395 100644 --- a/fastly/model_inline_object_1.go +++ b/fastly/model_inline_object_1.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_inline_response_200.go b/fastly/model_inline_response_200.go index 2912410..205e931 100644 --- a/fastly/model_inline_response_200.go +++ b/fastly/model_inline_response_200.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_inline_response_200_1.go b/fastly/model_inline_response_200_1.go index 1a05aa2..9a05b94 100644 --- a/fastly/model_inline_response_200_1.go +++ b/fastly/model_inline_response_200_1.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_inline_response_200_2.go b/fastly/model_inline_response_200_2.go index b03e744..e046035 100644 --- a/fastly/model_inline_response_200_2.go +++ b/fastly/model_inline_response_200_2.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_inline_response_200_3.go b/fastly/model_inline_response_200_3.go index 1318dcf..acbca50 100644 --- a/fastly/model_inline_response_200_3.go +++ b/fastly/model_inline_response_200_3.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_inline_response_200_3_meta.go b/fastly/model_inline_response_200_3_meta.go index 7f1e28a..9bd60e6 100644 --- a/fastly/model_inline_response_200_3_meta.go +++ b/fastly/model_inline_response_200_3_meta.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_inline_response_200_4.go b/fastly/model_inline_response_200_4.go index 4c76a14..0b58997 100644 --- a/fastly/model_inline_response_200_4.go +++ b/fastly/model_inline_response_200_4.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_inline_response_200_4_meta.go b/fastly/model_inline_response_200_4_meta.go index 6fa24c7..ddb5585 100644 --- a/fastly/model_inline_response_200_4_meta.go +++ b/fastly/model_inline_response_200_4_meta.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_inline_response_200_5.go b/fastly/model_inline_response_200_5.go index 2e3e863..20a5140 100644 --- a/fastly/model_inline_response_200_5.go +++ b/fastly/model_inline_response_200_5.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_inline_response_200_6.go b/fastly/model_inline_response_200_6.go index 5a91c59..c2d80a1 100644 --- a/fastly/model_inline_response_200_6.go +++ b/fastly/model_inline_response_200_6.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_inline_response_200_7.go b/fastly/model_inline_response_200_7.go index fe274cd..5decf16 100644 --- a/fastly/model_inline_response_200_7.go +++ b/fastly/model_inline_response_200_7.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_inline_response_400.go b/fastly/model_inline_response_400.go index 76b50e4..50f7940 100644 --- a/fastly/model_inline_response_400.go +++ b/fastly/model_inline_response_400.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_invitation.go b/fastly/model_invitation.go index 1e834a9..8e701a9 100644 --- a/fastly/model_invitation.go +++ b/fastly/model_invitation.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_invitation_data.go b/fastly/model_invitation_data.go index 6b4293f..1cc2483 100644 --- a/fastly/model_invitation_data.go +++ b/fastly/model_invitation_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_invitation_data_attributes.go b/fastly/model_invitation_data_attributes.go index 81a3df2..4a22587 100644 --- a/fastly/model_invitation_data_attributes.go +++ b/fastly/model_invitation_data_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_invitation_response.go b/fastly/model_invitation_response.go index f94b180..d2d0434 100644 --- a/fastly/model_invitation_response.go +++ b/fastly/model_invitation_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_invitation_response_all_of.go b/fastly/model_invitation_response_all_of.go index bc7394b..739351a 100644 --- a/fastly/model_invitation_response_all_of.go +++ b/fastly/model_invitation_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_invitation_response_data.go b/fastly/model_invitation_response_data.go index 4c04ce9..b9ad958 100644 --- a/fastly/model_invitation_response_data.go +++ b/fastly/model_invitation_response_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_invitation_response_data_all_of.go b/fastly/model_invitation_response_data_all_of.go index dcfe9a0..91cb281 100644 --- a/fastly/model_invitation_response_data_all_of.go +++ b/fastly/model_invitation_response_data_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_invitations_response.go b/fastly/model_invitations_response.go index 2b4a2c1..0ed5c82 100644 --- a/fastly/model_invitations_response.go +++ b/fastly/model_invitations_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_invitations_response_all_of.go b/fastly/model_invitations_response_all_of.go index c7b8392..0e7d20d 100644 --- a/fastly/model_invitations_response_all_of.go +++ b/fastly/model_invitations_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_invoice.go b/fastly/model_invoice.go index 3567896..7cac679 100644 --- a/fastly/model_invoice.go +++ b/fastly/model_invoice.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_invoice_response.go b/fastly/model_invoice_response.go index ccaf2c8..fbfbdb4 100644 --- a/fastly/model_invoice_response.go +++ b/fastly/model_invoice_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_invoicelineitems.go b/fastly/model_invoicelineitems.go index db43fa2..7c16c34 100644 --- a/fastly/model_invoicelineitems.go +++ b/fastly/model_invoicelineitems.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_legacy_waf_configuration_set.go b/fastly/model_legacy_waf_configuration_set.go index 0e3461e..2936acf 100644 --- a/fastly/model_legacy_waf_configuration_set.go +++ b/fastly/model_legacy_waf_configuration_set.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_legacy_waf_firewall.go b/fastly/model_legacy_waf_firewall.go index 31656ed..d0e467b 100644 --- a/fastly/model_legacy_waf_firewall.go +++ b/fastly/model_legacy_waf_firewall.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_legacy_waf_owasp.go b/fastly/model_legacy_waf_owasp.go index 6685b0d..3f09737 100644 --- a/fastly/model_legacy_waf_owasp.go +++ b/fastly/model_legacy_waf_owasp.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_legacy_waf_rule.go b/fastly/model_legacy_waf_rule.go index 99d8bb2..af367b3 100644 --- a/fastly/model_legacy_waf_rule.go +++ b/fastly/model_legacy_waf_rule.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_legacy_waf_rule_status.go b/fastly/model_legacy_waf_rule_status.go index 784fcc6..9c520bc 100644 --- a/fastly/model_legacy_waf_rule_status.go +++ b/fastly/model_legacy_waf_rule_status.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_legacy_waf_ruleset.go b/fastly/model_legacy_waf_ruleset.go index d799b0f..88b64f8 100644 --- a/fastly/model_legacy_waf_ruleset.go +++ b/fastly/model_legacy_waf_ruleset.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_legacy_waf_tag.go b/fastly/model_legacy_waf_tag.go index c29ccab..7079ee0 100644 --- a/fastly/model_legacy_waf_tag.go +++ b/fastly/model_legacy_waf_tag.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_legacy_waf_update_status.go b/fastly/model_legacy_waf_update_status.go index 7ddcd79..9ffd52b 100644 --- a/fastly/model_legacy_waf_update_status.go +++ b/fastly/model_legacy_waf_update_status.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_line_item_data.go b/fastly/model_line_item_data.go index df379a6..7ec54b5 100644 --- a/fastly/model_line_item_data.go +++ b/fastly/model_line_item_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_line_item_data_read_only_invoice_id.go b/fastly/model_line_item_data_read_only_invoice_id.go index 987c80f..947c57f 100644 --- a/fastly/model_line_item_data_read_only_invoice_id.go +++ b/fastly/model_line_item_data_read_only_invoice_id.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_list_invoices_response.go b/fastly/model_list_invoices_response.go index d1417d5..3075dd2 100644 --- a/fastly/model_list_invoices_response.go +++ b/fastly/model_list_invoices_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_listinvoices.go b/fastly/model_listinvoices.go index 6c8d737..4713b42 100644 --- a/fastly/model_listinvoices.go +++ b/fastly/model_listinvoices.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_address_and_port.go b/fastly/model_logging_address_and_port.go index cfee31a..1ca82e7 100644 --- a/fastly/model_logging_address_and_port.go +++ b/fastly/model_logging_address_and_port.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_azureblob_additional.go b/fastly/model_logging_azureblob_additional.go index c445239..f0efa1c 100644 --- a/fastly/model_logging_azureblob_additional.go +++ b/fastly/model_logging_azureblob_additional.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_azureblob_response.go b/fastly/model_logging_azureblob_response.go index b5acf0e..96d81d6 100644 --- a/fastly/model_logging_azureblob_response.go +++ b/fastly/model_logging_azureblob_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_bigquery_additional.go b/fastly/model_logging_bigquery_additional.go index d708a87..4fcb91f 100644 --- a/fastly/model_logging_bigquery_additional.go +++ b/fastly/model_logging_bigquery_additional.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_bigquery_response.go b/fastly/model_logging_bigquery_response.go index 308f0a0..3c17943 100644 --- a/fastly/model_logging_bigquery_response.go +++ b/fastly/model_logging_bigquery_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_cloudfiles_additional.go b/fastly/model_logging_cloudfiles_additional.go index 62307f0..f69a809 100644 --- a/fastly/model_logging_cloudfiles_additional.go +++ b/fastly/model_logging_cloudfiles_additional.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_cloudfiles_response.go b/fastly/model_logging_cloudfiles_response.go index c93601d..b2de93b 100644 --- a/fastly/model_logging_cloudfiles_response.go +++ b/fastly/model_logging_cloudfiles_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_common.go b/fastly/model_logging_common.go index 9254eda..38394bc 100644 --- a/fastly/model_logging_common.go +++ b/fastly/model_logging_common.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_common_response.go b/fastly/model_logging_common_response.go index cb91928..deaf973 100644 --- a/fastly/model_logging_common_response.go +++ b/fastly/model_logging_common_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_common_response_all_of.go b/fastly/model_logging_common_response_all_of.go index eb97ef7..218dca2 100644 --- a/fastly/model_logging_common_response_all_of.go +++ b/fastly/model_logging_common_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_common_response_all_of_1.go b/fastly/model_logging_common_response_all_of_1.go index 7828060..39869c6 100644 --- a/fastly/model_logging_common_response_all_of_1.go +++ b/fastly/model_logging_common_response_all_of_1.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_datadog_additional.go b/fastly/model_logging_datadog_additional.go index ad0b838..a5c3f30 100644 --- a/fastly/model_logging_datadog_additional.go +++ b/fastly/model_logging_datadog_additional.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_datadog_response.go b/fastly/model_logging_datadog_response.go index c453e42..92760d1 100644 --- a/fastly/model_logging_datadog_response.go +++ b/fastly/model_logging_datadog_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_digitalocean_additional.go b/fastly/model_logging_digitalocean_additional.go index dbb5b7b..88a4fd4 100644 --- a/fastly/model_logging_digitalocean_additional.go +++ b/fastly/model_logging_digitalocean_additional.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_digitalocean_response.go b/fastly/model_logging_digitalocean_response.go index d07fdab..8d2583d 100644 --- a/fastly/model_logging_digitalocean_response.go +++ b/fastly/model_logging_digitalocean_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_elasticsearch_additional.go b/fastly/model_logging_elasticsearch_additional.go index 252b262..fa9ec37 100644 --- a/fastly/model_logging_elasticsearch_additional.go +++ b/fastly/model_logging_elasticsearch_additional.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_elasticsearch_response.go b/fastly/model_logging_elasticsearch_response.go index a8cd7a5..5cc2bac 100644 --- a/fastly/model_logging_elasticsearch_response.go +++ b/fastly/model_logging_elasticsearch_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_format_version_integer.go b/fastly/model_logging_format_version_integer.go index be8b8f8..4ad07e9 100644 --- a/fastly/model_logging_format_version_integer.go +++ b/fastly/model_logging_format_version_integer.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_format_version_string.go b/fastly/model_logging_format_version_string.go index 5d4048d..d8861c5 100644 --- a/fastly/model_logging_format_version_string.go +++ b/fastly/model_logging_format_version_string.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_ftp_additional.go b/fastly/model_logging_ftp_additional.go index c46a792..ea4f644 100644 --- a/fastly/model_logging_ftp_additional.go +++ b/fastly/model_logging_ftp_additional.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_ftp_response.go b/fastly/model_logging_ftp_response.go index 08a665a..dabd4bc 100644 --- a/fastly/model_logging_ftp_response.go +++ b/fastly/model_logging_ftp_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_ftp_response_all_of.go b/fastly/model_logging_ftp_response_all_of.go index 7f75730..37911ab 100644 --- a/fastly/model_logging_ftp_response_all_of.go +++ b/fastly/model_logging_ftp_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_gcs_additional.go b/fastly/model_logging_gcs_additional.go index ba96c88..a467b43 100644 --- a/fastly/model_logging_gcs_additional.go +++ b/fastly/model_logging_gcs_additional.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_gcs_common.go b/fastly/model_logging_gcs_common.go index 726a5aa..d2f0d91 100644 --- a/fastly/model_logging_gcs_common.go +++ b/fastly/model_logging_gcs_common.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_gcs_response.go b/fastly/model_logging_gcs_response.go index f49c4ba..1b7ad36 100644 --- a/fastly/model_logging_gcs_response.go +++ b/fastly/model_logging_gcs_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_generic_common.go b/fastly/model_logging_generic_common.go index 85d2e68..9b3159e 100644 --- a/fastly/model_logging_generic_common.go +++ b/fastly/model_logging_generic_common.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_generic_common_response.go b/fastly/model_logging_generic_common_response.go index 3008534..926cd5e 100644 --- a/fastly/model_logging_generic_common_response.go +++ b/fastly/model_logging_generic_common_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_generic_common_response_all_of.go b/fastly/model_logging_generic_common_response_all_of.go index 75b950e..7cf2ab6 100644 --- a/fastly/model_logging_generic_common_response_all_of.go +++ b/fastly/model_logging_generic_common_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_generic_common_response_all_of_1.go b/fastly/model_logging_generic_common_response_all_of_1.go index c96f290..6eda063 100644 --- a/fastly/model_logging_generic_common_response_all_of_1.go +++ b/fastly/model_logging_generic_common_response_all_of_1.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_google_pubsub_additional.go b/fastly/model_logging_google_pubsub_additional.go index 5213675..95fa562 100644 --- a/fastly/model_logging_google_pubsub_additional.go +++ b/fastly/model_logging_google_pubsub_additional.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_google_pubsub_response.go b/fastly/model_logging_google_pubsub_response.go index 06605a9..f7de273 100644 --- a/fastly/model_logging_google_pubsub_response.go +++ b/fastly/model_logging_google_pubsub_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_heroku_additional.go b/fastly/model_logging_heroku_additional.go index c2131a8..572d025 100644 --- a/fastly/model_logging_heroku_additional.go +++ b/fastly/model_logging_heroku_additional.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_heroku_response.go b/fastly/model_logging_heroku_response.go index a13d507..f85ddd9 100644 --- a/fastly/model_logging_heroku_response.go +++ b/fastly/model_logging_heroku_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_honeycomb_additional.go b/fastly/model_logging_honeycomb_additional.go index a94de09..78fd619 100644 --- a/fastly/model_logging_honeycomb_additional.go +++ b/fastly/model_logging_honeycomb_additional.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_honeycomb_response.go b/fastly/model_logging_honeycomb_response.go index 2c61666..67b39b2 100644 --- a/fastly/model_logging_honeycomb_response.go +++ b/fastly/model_logging_honeycomb_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_https_additional.go b/fastly/model_logging_https_additional.go index 35f033d..de029ce 100644 --- a/fastly/model_logging_https_additional.go +++ b/fastly/model_logging_https_additional.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_https_response.go b/fastly/model_logging_https_response.go index 872f9ef..9a31453 100644 --- a/fastly/model_logging_https_response.go +++ b/fastly/model_logging_https_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_kafka_additional.go b/fastly/model_logging_kafka_additional.go index 2df27ff..71681e5 100644 --- a/fastly/model_logging_kafka_additional.go +++ b/fastly/model_logging_kafka_additional.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_kafka_response.go b/fastly/model_logging_kafka_response.go index 0801923..dbd8445 100644 --- a/fastly/model_logging_kafka_response.go +++ b/fastly/model_logging_kafka_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_kafka_response_post.go b/fastly/model_logging_kafka_response_post.go index bbb99b9..de33e04 100644 --- a/fastly/model_logging_kafka_response_post.go +++ b/fastly/model_logging_kafka_response_post.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_kinesis_additional.go b/fastly/model_logging_kinesis_additional.go index e938bb1..72a145d 100644 --- a/fastly/model_logging_kinesis_additional.go +++ b/fastly/model_logging_kinesis_additional.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com @@ -22,7 +22,7 @@ type LoggingKinesisAdditional struct { // The name for the real-time logging configuration. Name *string `json:"name,omitempty"` Placement NullableLoggingPlacement `json:"placement,omitempty"` - // A Fastly [log format string](https://docs.fastly.com/en/guides/custom-log-formats). Must produce valid JSON that Kinesis can ingest. + // A Fastly [log format string](https://docs.fastly.com/en/guides/custom-log-formats). Format *string `json:"format,omitempty"` // The Amazon Kinesis stream to send logs to. Required. Topic *string `json:"topic,omitempty"` diff --git a/fastly/model_logging_kinesis_response.go b/fastly/model_logging_kinesis_response.go index a91adf3..cdff4d4 100644 --- a/fastly/model_logging_kinesis_response.go +++ b/fastly/model_logging_kinesis_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com @@ -23,7 +23,7 @@ type LoggingKinesisResponse struct { // The name for the real-time logging configuration. Name *string `json:"name,omitempty"` Placement NullableLoggingPlacement `json:"placement,omitempty"` - // A Fastly [log format string](https://docs.fastly.com/en/guides/custom-log-formats). Must produce valid JSON that Kinesis can ingest. + // A Fastly [log format string](https://docs.fastly.com/en/guides/custom-log-formats). Format *string `json:"format,omitempty"` // The Amazon Kinesis stream to send logs to. Required. Topic *string `json:"topic,omitempty"` diff --git a/fastly/model_logging_logentries_additional.go b/fastly/model_logging_logentries_additional.go index 0520f22..dcc6e18 100644 --- a/fastly/model_logging_logentries_additional.go +++ b/fastly/model_logging_logentries_additional.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_logentries_response.go b/fastly/model_logging_logentries_response.go index a358026..df29ada 100644 --- a/fastly/model_logging_logentries_response.go +++ b/fastly/model_logging_logentries_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_loggly_additional.go b/fastly/model_logging_loggly_additional.go index ffa404d..b6d4453 100644 --- a/fastly/model_logging_loggly_additional.go +++ b/fastly/model_logging_loggly_additional.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_loggly_response.go b/fastly/model_logging_loggly_response.go index 61f9cda..b3dcc68 100644 --- a/fastly/model_logging_loggly_response.go +++ b/fastly/model_logging_loggly_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_logshuttle_additional.go b/fastly/model_logging_logshuttle_additional.go index cdcc964..d17ae67 100644 --- a/fastly/model_logging_logshuttle_additional.go +++ b/fastly/model_logging_logshuttle_additional.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_logshuttle_response.go b/fastly/model_logging_logshuttle_response.go index c2a6d63..a5ea52d 100644 --- a/fastly/model_logging_logshuttle_response.go +++ b/fastly/model_logging_logshuttle_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_message_type.go b/fastly/model_logging_message_type.go index 0ce2870..a636fa0 100644 --- a/fastly/model_logging_message_type.go +++ b/fastly/model_logging_message_type.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_newrelic_additional.go b/fastly/model_logging_newrelic_additional.go index 4a548a8..ff06163 100644 --- a/fastly/model_logging_newrelic_additional.go +++ b/fastly/model_logging_newrelic_additional.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_newrelic_response.go b/fastly/model_logging_newrelic_response.go index 3d212d7..2f5a8cd 100644 --- a/fastly/model_logging_newrelic_response.go +++ b/fastly/model_logging_newrelic_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_newrelicotlp_additional.go b/fastly/model_logging_newrelicotlp_additional.go index e1cdfa9..6c2eeb7 100644 --- a/fastly/model_logging_newrelicotlp_additional.go +++ b/fastly/model_logging_newrelicotlp_additional.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_newrelicotlp_response.go b/fastly/model_logging_newrelicotlp_response.go index d29d4f2..225e15c 100644 --- a/fastly/model_logging_newrelicotlp_response.go +++ b/fastly/model_logging_newrelicotlp_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_openstack_additional.go b/fastly/model_logging_openstack_additional.go index 2af1ffe..9a46306 100644 --- a/fastly/model_logging_openstack_additional.go +++ b/fastly/model_logging_openstack_additional.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_openstack_response.go b/fastly/model_logging_openstack_response.go index 2a658a4..003f958 100644 --- a/fastly/model_logging_openstack_response.go +++ b/fastly/model_logging_openstack_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_papertrail_response.go b/fastly/model_logging_papertrail_response.go index 5b5bd92..bdb34f5 100644 --- a/fastly/model_logging_papertrail_response.go +++ b/fastly/model_logging_papertrail_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_placement.go b/fastly/model_logging_placement.go index f598363..7ffac9b 100644 --- a/fastly/model_logging_placement.go +++ b/fastly/model_logging_placement.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_request_caps_common.go b/fastly/model_logging_request_caps_common.go index dba630c..466ce7a 100644 --- a/fastly/model_logging_request_caps_common.go +++ b/fastly/model_logging_request_caps_common.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_s3_additional.go b/fastly/model_logging_s3_additional.go index 75c2e3b..b76d4e8 100644 --- a/fastly/model_logging_s3_additional.go +++ b/fastly/model_logging_s3_additional.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_s3_response.go b/fastly/model_logging_s3_response.go index 4da7424..6916d32 100644 --- a/fastly/model_logging_s3_response.go +++ b/fastly/model_logging_s3_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_scalyr_additional.go b/fastly/model_logging_scalyr_additional.go index 501b2d3..e04402a 100644 --- a/fastly/model_logging_scalyr_additional.go +++ b/fastly/model_logging_scalyr_additional.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_scalyr_response.go b/fastly/model_logging_scalyr_response.go index 849e30e..b5b3476 100644 --- a/fastly/model_logging_scalyr_response.go +++ b/fastly/model_logging_scalyr_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_sftp_additional.go b/fastly/model_logging_sftp_additional.go index cc20cd1..cb1b19f 100644 --- a/fastly/model_logging_sftp_additional.go +++ b/fastly/model_logging_sftp_additional.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_sftp_response.go b/fastly/model_logging_sftp_response.go index 4296c90..495fc50 100644 --- a/fastly/model_logging_sftp_response.go +++ b/fastly/model_logging_sftp_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_sftp_response_all_of.go b/fastly/model_logging_sftp_response_all_of.go index db897af..7565080 100644 --- a/fastly/model_logging_sftp_response_all_of.go +++ b/fastly/model_logging_sftp_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_splunk_additional.go b/fastly/model_logging_splunk_additional.go index 17a7875..2412bbc 100644 --- a/fastly/model_logging_splunk_additional.go +++ b/fastly/model_logging_splunk_additional.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_splunk_response.go b/fastly/model_logging_splunk_response.go index 63af100..2061bee 100644 --- a/fastly/model_logging_splunk_response.go +++ b/fastly/model_logging_splunk_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_sumologic_additional.go b/fastly/model_logging_sumologic_additional.go index 0e6c00a..4b10921 100644 --- a/fastly/model_logging_sumologic_additional.go +++ b/fastly/model_logging_sumologic_additional.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_sumologic_response.go b/fastly/model_logging_sumologic_response.go index 7d550fb..8e3494b 100644 --- a/fastly/model_logging_sumologic_response.go +++ b/fastly/model_logging_sumologic_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_syslog_additional.go b/fastly/model_logging_syslog_additional.go index f2df455..ad04452 100644 --- a/fastly/model_logging_syslog_additional.go +++ b/fastly/model_logging_syslog_additional.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_syslog_response.go b/fastly/model_logging_syslog_response.go index 2e84459..73505e5 100644 --- a/fastly/model_logging_syslog_response.go +++ b/fastly/model_logging_syslog_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_tls_common.go b/fastly/model_logging_tls_common.go index b2d9c8e..3a2f2e9 100644 --- a/fastly/model_logging_tls_common.go +++ b/fastly/model_logging_tls_common.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_logging_use_tls.go b/fastly/model_logging_use_tls.go index 3e57871..11a45bd 100644 --- a/fastly/model_logging_use_tls.go +++ b/fastly/model_logging_use_tls.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_metadata.go b/fastly/model_metadata.go index 73bc55e..07137b6 100644 --- a/fastly/model_metadata.go +++ b/fastly/model_metadata.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_mutual_authentication.go b/fastly/model_mutual_authentication.go index e836c6e..f78379e 100644 --- a/fastly/model_mutual_authentication.go +++ b/fastly/model_mutual_authentication.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_mutual_authentication_data.go b/fastly/model_mutual_authentication_data.go index baf48d5..113d4f3 100644 --- a/fastly/model_mutual_authentication_data.go +++ b/fastly/model_mutual_authentication_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_mutual_authentication_data_attributes.go b/fastly/model_mutual_authentication_data_attributes.go index 045315a..0a20c95 100644 --- a/fastly/model_mutual_authentication_data_attributes.go +++ b/fastly/model_mutual_authentication_data_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_mutual_authentication_response.go b/fastly/model_mutual_authentication_response.go index 62bbd56..c2b214f 100644 --- a/fastly/model_mutual_authentication_response.go +++ b/fastly/model_mutual_authentication_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_mutual_authentication_response_attributes.go b/fastly/model_mutual_authentication_response_attributes.go index 1ad4bf1..ad3d20a 100644 --- a/fastly/model_mutual_authentication_response_attributes.go +++ b/fastly/model_mutual_authentication_response_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_mutual_authentication_response_attributes_all_of.go b/fastly/model_mutual_authentication_response_attributes_all_of.go index 2dee88f..9c03437 100644 --- a/fastly/model_mutual_authentication_response_attributes_all_of.go +++ b/fastly/model_mutual_authentication_response_attributes_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_mutual_authentication_response_data.go b/fastly/model_mutual_authentication_response_data.go index 7c2d1ae..65e52bf 100644 --- a/fastly/model_mutual_authentication_response_data.go +++ b/fastly/model_mutual_authentication_response_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_mutual_authentication_response_data_all_of.go b/fastly/model_mutual_authentication_response_data_all_of.go index 5848025..4b9a9c5 100644 --- a/fastly/model_mutual_authentication_response_data_all_of.go +++ b/fastly/model_mutual_authentication_response_data_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_mutual_authentications_response.go b/fastly/model_mutual_authentications_response.go index 16d897b..4726e2c 100644 --- a/fastly/model_mutual_authentications_response.go +++ b/fastly/model_mutual_authentications_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_mutual_authentications_response_all_of.go b/fastly/model_mutual_authentications_response_all_of.go index bebdc98..f6c35a6 100644 --- a/fastly/model_mutual_authentications_response_all_of.go +++ b/fastly/model_mutual_authentications_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_origin_inspector.go b/fastly/model_origin_inspector.go index 22a1dd2..7333655 100644 --- a/fastly/model_origin_inspector.go +++ b/fastly/model_origin_inspector.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_origin_inspector_dimensions.go b/fastly/model_origin_inspector_dimensions.go index fb889e4..fccb9b2 100644 --- a/fastly/model_origin_inspector_dimensions.go +++ b/fastly/model_origin_inspector_dimensions.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_origin_inspector_entry.go b/fastly/model_origin_inspector_entry.go index efbbfdf..6212648 100644 --- a/fastly/model_origin_inspector_entry.go +++ b/fastly/model_origin_inspector_entry.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_origin_inspector_historical.go b/fastly/model_origin_inspector_historical.go index de0d7e7..4afb460 100644 --- a/fastly/model_origin_inspector_historical.go +++ b/fastly/model_origin_inspector_historical.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_origin_inspector_historical_data.go b/fastly/model_origin_inspector_historical_data.go index b2bc4e9..252fa92 100644 --- a/fastly/model_origin_inspector_historical_data.go +++ b/fastly/model_origin_inspector_historical_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_origin_inspector_historical_meta.go b/fastly/model_origin_inspector_historical_meta.go index fc08ca1..890324b 100644 --- a/fastly/model_origin_inspector_historical_meta.go +++ b/fastly/model_origin_inspector_historical_meta.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_origin_inspector_historical_meta_filters.go b/fastly/model_origin_inspector_historical_meta_filters.go index 040978a..6b6e201 100644 --- a/fastly/model_origin_inspector_historical_meta_filters.go +++ b/fastly/model_origin_inspector_historical_meta_filters.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_origin_inspector_measurements.go b/fastly/model_origin_inspector_measurements.go index 5b04677..db66772 100644 --- a/fastly/model_origin_inspector_measurements.go +++ b/fastly/model_origin_inspector_measurements.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_origin_inspector_realtime_entry.go b/fastly/model_origin_inspector_realtime_entry.go index e38c0cd..afab01c 100644 --- a/fastly/model_origin_inspector_realtime_entry.go +++ b/fastly/model_origin_inspector_realtime_entry.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_origin_inspector_realtime_entry_recorded.go b/fastly/model_origin_inspector_realtime_entry_recorded.go index 950c55b..9233395 100644 --- a/fastly/model_origin_inspector_realtime_entry_recorded.go +++ b/fastly/model_origin_inspector_realtime_entry_recorded.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_origin_inspector_subsequent_request_timestamp.go b/fastly/model_origin_inspector_subsequent_request_timestamp.go index 27549f1..ee08fe9 100644 --- a/fastly/model_origin_inspector_subsequent_request_timestamp.go +++ b/fastly/model_origin_inspector_subsequent_request_timestamp.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_origin_inspector_values.go b/fastly/model_origin_inspector_values.go index 24c0756..b048cd2 100644 --- a/fastly/model_origin_inspector_values.go +++ b/fastly/model_origin_inspector_values.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_package.go b/fastly/model_package.go index 2db0919..e6bb909 100644 --- a/fastly/model_package.go +++ b/fastly/model_package.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_package_metadata.go b/fastly/model_package_metadata.go index 1e1fee9..1860402 100644 --- a/fastly/model_package_metadata.go +++ b/fastly/model_package_metadata.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_package_response.go b/fastly/model_package_response.go index 5e2c255..d623b1b 100644 --- a/fastly/model_package_response.go +++ b/fastly/model_package_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_package_response_all_of.go b/fastly/model_package_response_all_of.go index 2da7bee..7585e2c 100644 --- a/fastly/model_package_response_all_of.go +++ b/fastly/model_package_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_pagination.go b/fastly/model_pagination.go index 69da794..e1f2f93 100644 --- a/fastly/model_pagination.go +++ b/fastly/model_pagination.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_pagination_cursor_meta.go b/fastly/model_pagination_cursor_meta.go index 87bd3e6..a707206 100644 --- a/fastly/model_pagination_cursor_meta.go +++ b/fastly/model_pagination_cursor_meta.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_pagination_links.go b/fastly/model_pagination_links.go index dc02d78..0d6e60a 100644 --- a/fastly/model_pagination_links.go +++ b/fastly/model_pagination_links.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_pagination_meta.go b/fastly/model_pagination_meta.go index 1b62e9f..d3d66b6 100644 --- a/fastly/model_pagination_meta.go +++ b/fastly/model_pagination_meta.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_permission.go b/fastly/model_permission.go index ad6f04d..3fc1342 100644 --- a/fastly/model_permission.go +++ b/fastly/model_permission.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_platform_ddos_data_items.go b/fastly/model_platform_ddos_data_items.go index d04f590..1d39e32 100644 --- a/fastly/model_platform_ddos_data_items.go +++ b/fastly/model_platform_ddos_data_items.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_platform_ddos_entry.go b/fastly/model_platform_ddos_entry.go index b4c3bd8..ecc7c6e 100644 --- a/fastly/model_platform_ddos_entry.go +++ b/fastly/model_platform_ddos_entry.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_platform_ddos_response.go b/fastly/model_platform_ddos_response.go index aa0aa0a..7b7be75 100644 --- a/fastly/model_platform_ddos_response.go +++ b/fastly/model_platform_ddos_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_platform_ddos_response_all_of.go b/fastly/model_platform_ddos_response_all_of.go index 25e544b..bbe7739 100644 --- a/fastly/model_platform_ddos_response_all_of.go +++ b/fastly/model_platform_ddos_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_pool_additional.go b/fastly/model_pool_additional.go index b74b482..a9d29db 100644 --- a/fastly/model_pool_additional.go +++ b/fastly/model_pool_additional.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_pool_response.go b/fastly/model_pool_response.go index 7c74345..6bba847 100644 --- a/fastly/model_pool_response.go +++ b/fastly/model_pool_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_pool_response_all_of.go b/fastly/model_pool_response_all_of.go index ba87c77..0cfb9ab 100644 --- a/fastly/model_pool_response_all_of.go +++ b/fastly/model_pool_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_pool_response_common.go b/fastly/model_pool_response_common.go index d4afd26..e7e53b8 100644 --- a/fastly/model_pool_response_common.go +++ b/fastly/model_pool_response_common.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_pool_response_post.go b/fastly/model_pool_response_post.go index 96f440d..9ae3410 100644 --- a/fastly/model_pool_response_post.go +++ b/fastly/model_pool_response_post.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_pool_response_post_all_of.go b/fastly/model_pool_response_post_all_of.go index 2e43839..3ad03b6 100644 --- a/fastly/model_pool_response_post_all_of.go +++ b/fastly/model_pool_response_post_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_pop.go b/fastly/model_pop.go index 43c0cb2..d54e965 100644 --- a/fastly/model_pop.go +++ b/fastly/model_pop.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_pop_coordinates.go b/fastly/model_pop_coordinates.go index 11a57d8..cf69703 100644 --- a/fastly/model_pop_coordinates.go +++ b/fastly/model_pop_coordinates.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_public_ip_list.go b/fastly/model_public_ip_list.go index c2ed7c3..27810a2 100644 --- a/fastly/model_public_ip_list.go +++ b/fastly/model_public_ip_list.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_publish_item.go b/fastly/model_publish_item.go index 18c1ef1..8d429c9 100644 --- a/fastly/model_publish_item.go +++ b/fastly/model_publish_item.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_publish_item_formats.go b/fastly/model_publish_item_formats.go index 3a9dfea..0ea69bc 100644 --- a/fastly/model_publish_item_formats.go +++ b/fastly/model_publish_item_formats.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_publish_request.go b/fastly/model_publish_request.go index f0a35d5..dab57ad 100644 --- a/fastly/model_publish_request.go +++ b/fastly/model_publish_request.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_purge_keys.go b/fastly/model_purge_keys.go index d877039..63ff5c6 100644 --- a/fastly/model_purge_keys.go +++ b/fastly/model_purge_keys.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_purge_response.go b/fastly/model_purge_response.go index af20ae1..39d4c5d 100644 --- a/fastly/model_purge_response.go +++ b/fastly/model_purge_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_rate_limiter.go b/fastly/model_rate_limiter.go index e138c3b..8b892fe 100644 --- a/fastly/model_rate_limiter.go +++ b/fastly/model_rate_limiter.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_rate_limiter_response.go b/fastly/model_rate_limiter_response.go index 55e823c..158f935 100644 --- a/fastly/model_rate_limiter_response.go +++ b/fastly/model_rate_limiter_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_rate_limiter_response_all_of.go b/fastly/model_rate_limiter_response_all_of.go index 6c23550..f079276 100644 --- a/fastly/model_rate_limiter_response_all_of.go +++ b/fastly/model_rate_limiter_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_read_only_customer_id.go b/fastly/model_read_only_customer_id.go index 54dac2c..2a7a301 100644 --- a/fastly/model_read_only_customer_id.go +++ b/fastly/model_read_only_customer_id.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_read_only_id.go b/fastly/model_read_only_id.go index e6cb958..7d8643e 100644 --- a/fastly/model_read_only_id.go +++ b/fastly/model_read_only_id.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_read_only_service_id.go b/fastly/model_read_only_service_id.go index f4c1dbc..d795960 100644 --- a/fastly/model_read_only_service_id.go +++ b/fastly/model_read_only_service_id.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_read_only_user_id.go b/fastly/model_read_only_user_id.go index bc8f201..3294812 100644 --- a/fastly/model_read_only_user_id.go +++ b/fastly/model_read_only_user_id.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_read_only_version.go b/fastly/model_read_only_version.go index 3a815e6..f4d6616 100644 --- a/fastly/model_read_only_version.go +++ b/fastly/model_read_only_version.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_realtime.go b/fastly/model_realtime.go index a7c62b0..832d390 100644 --- a/fastly/model_realtime.go +++ b/fastly/model_realtime.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_realtime_entry.go b/fastly/model_realtime_entry.go index 785a6af..7d1f1eb 100644 --- a/fastly/model_realtime_entry.go +++ b/fastly/model_realtime_entry.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_realtime_entry_aggregated.go b/fastly/model_realtime_entry_aggregated.go index 07e94b6..33780a1 100644 --- a/fastly/model_realtime_entry_aggregated.go +++ b/fastly/model_realtime_entry_aggregated.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_realtime_entry_recorded.go b/fastly/model_realtime_entry_recorded.go index 5a224dc..410d826 100644 --- a/fastly/model_realtime_entry_recorded.go +++ b/fastly/model_realtime_entry_recorded.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_realtime_measurements.go b/fastly/model_realtime_measurements.go index 936b65f..7ff798e 100644 --- a/fastly/model_realtime_measurements.go +++ b/fastly/model_realtime_measurements.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_recorded_timestamp.go b/fastly/model_recorded_timestamp.go index dd74de1..7e7c829 100644 --- a/fastly/model_recorded_timestamp.go +++ b/fastly/model_recorded_timestamp.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_common_name.go b/fastly/model_relationship_common_name.go index b53a1cb..4712bfe 100644 --- a/fastly/model_relationship_common_name.go +++ b/fastly/model_relationship_common_name.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_customer.go b/fastly/model_relationship_customer.go index a6c9f4c..b90e5f4 100644 --- a/fastly/model_relationship_customer.go +++ b/fastly/model_relationship_customer.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_customer_customer.go b/fastly/model_relationship_customer_customer.go index a1ca167..7f215ac 100644 --- a/fastly/model_relationship_customer_customer.go +++ b/fastly/model_relationship_customer_customer.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_member_customer.go b/fastly/model_relationship_member_customer.go index 3a327e7..388bf11 100644 --- a/fastly/model_relationship_member_customer.go +++ b/fastly/model_relationship_member_customer.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_member_mutual_authentication.go b/fastly/model_relationship_member_mutual_authentication.go index 7b5f6d5..550e75f 100644 --- a/fastly/model_relationship_member_mutual_authentication.go +++ b/fastly/model_relationship_member_mutual_authentication.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_member_service.go b/fastly/model_relationship_member_service.go index f4bf33f..a372b1b 100644 --- a/fastly/model_relationship_member_service.go +++ b/fastly/model_relationship_member_service.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_member_service_invitation.go b/fastly/model_relationship_member_service_invitation.go index 2bd532d..fb686a7 100644 --- a/fastly/model_relationship_member_service_invitation.go +++ b/fastly/model_relationship_member_service_invitation.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_member_tls_activation.go b/fastly/model_relationship_member_tls_activation.go index 4a5619c..6780cea 100644 --- a/fastly/model_relationship_member_tls_activation.go +++ b/fastly/model_relationship_member_tls_activation.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_member_tls_bulk_certificate.go b/fastly/model_relationship_member_tls_bulk_certificate.go index 74592c3..f44df30 100644 --- a/fastly/model_relationship_member_tls_bulk_certificate.go +++ b/fastly/model_relationship_member_tls_bulk_certificate.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_member_tls_certificate.go b/fastly/model_relationship_member_tls_certificate.go index 69cbb91..3fc0a07 100644 --- a/fastly/model_relationship_member_tls_certificate.go +++ b/fastly/model_relationship_member_tls_certificate.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_member_tls_configuration.go b/fastly/model_relationship_member_tls_configuration.go index 9f197fd..dfb0598 100644 --- a/fastly/model_relationship_member_tls_configuration.go +++ b/fastly/model_relationship_member_tls_configuration.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_member_tls_dns_record.go b/fastly/model_relationship_member_tls_dns_record.go index f2327e1..230986d 100644 --- a/fastly/model_relationship_member_tls_dns_record.go +++ b/fastly/model_relationship_member_tls_dns_record.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_member_tls_domain.go b/fastly/model_relationship_member_tls_domain.go index 6f42bb5..07e33a8 100644 --- a/fastly/model_relationship_member_tls_domain.go +++ b/fastly/model_relationship_member_tls_domain.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_member_tls_private_key.go b/fastly/model_relationship_member_tls_private_key.go index 6ad3efe..4f2ba67 100644 --- a/fastly/model_relationship_member_tls_private_key.go +++ b/fastly/model_relationship_member_tls_private_key.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_member_tls_subscription.go b/fastly/model_relationship_member_tls_subscription.go index fcedc56..9b3732b 100644 --- a/fastly/model_relationship_member_tls_subscription.go +++ b/fastly/model_relationship_member_tls_subscription.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_member_waf_active_rule.go b/fastly/model_relationship_member_waf_active_rule.go index 9a251ac..939477e 100644 --- a/fastly/model_relationship_member_waf_active_rule.go +++ b/fastly/model_relationship_member_waf_active_rule.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_member_waf_firewall.go b/fastly/model_relationship_member_waf_firewall.go index 5e4ccfb..3c9f8bf 100644 --- a/fastly/model_relationship_member_waf_firewall.go +++ b/fastly/model_relationship_member_waf_firewall.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_member_waf_firewall_version.go b/fastly/model_relationship_member_waf_firewall_version.go index 71901db..7017283 100644 --- a/fastly/model_relationship_member_waf_firewall_version.go +++ b/fastly/model_relationship_member_waf_firewall_version.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_member_waf_rule.go b/fastly/model_relationship_member_waf_rule.go index 4c64930..03695e2 100644 --- a/fastly/model_relationship_member_waf_rule.go +++ b/fastly/model_relationship_member_waf_rule.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_member_waf_rule_revision.go b/fastly/model_relationship_member_waf_rule_revision.go index a5cb2e0..f43e9fe 100644 --- a/fastly/model_relationship_member_waf_rule_revision.go +++ b/fastly/model_relationship_member_waf_rule_revision.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_member_waf_tag.go b/fastly/model_relationship_member_waf_tag.go index 1a12e67..d4253b5 100644 --- a/fastly/model_relationship_member_waf_tag.go +++ b/fastly/model_relationship_member_waf_tag.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_mutual_authentication.go b/fastly/model_relationship_mutual_authentication.go index 8a00e63..3488125 100644 --- a/fastly/model_relationship_mutual_authentication.go +++ b/fastly/model_relationship_mutual_authentication.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_mutual_authentication_mutual_authentication.go b/fastly/model_relationship_mutual_authentication_mutual_authentication.go index 85904c8..3facb7d 100644 --- a/fastly/model_relationship_mutual_authentication_mutual_authentication.go +++ b/fastly/model_relationship_mutual_authentication_mutual_authentication.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_mutual_authentications.go b/fastly/model_relationship_mutual_authentications.go index 3afd8ab..928e329 100644 --- a/fastly/model_relationship_mutual_authentications.go +++ b/fastly/model_relationship_mutual_authentications.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_mutual_authentications_mutual_authentications.go b/fastly/model_relationship_mutual_authentications_mutual_authentications.go index 755dcfd..0f7ce1d 100644 --- a/fastly/model_relationship_mutual_authentications_mutual_authentications.go +++ b/fastly/model_relationship_mutual_authentications_mutual_authentications.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_service.go b/fastly/model_relationship_service.go index 4146205..afde034 100644 --- a/fastly/model_relationship_service.go +++ b/fastly/model_relationship_service.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_service_invitations.go b/fastly/model_relationship_service_invitations.go index 0b705d0..c75d317 100644 --- a/fastly/model_relationship_service_invitations.go +++ b/fastly/model_relationship_service_invitations.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_service_invitations_create.go b/fastly/model_relationship_service_invitations_create.go index f804d6d..fae6a24 100644 --- a/fastly/model_relationship_service_invitations_create.go +++ b/fastly/model_relationship_service_invitations_create.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_service_invitations_create_service_invitations.go b/fastly/model_relationship_service_invitations_create_service_invitations.go index 7fda1fc..2e61fc3 100644 --- a/fastly/model_relationship_service_invitations_create_service_invitations.go +++ b/fastly/model_relationship_service_invitations_create_service_invitations.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_service_invitations_service_invitations.go b/fastly/model_relationship_service_invitations_service_invitations.go index d33d34c..7e4d672 100644 --- a/fastly/model_relationship_service_invitations_service_invitations.go +++ b/fastly/model_relationship_service_invitations_service_invitations.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_services.go b/fastly/model_relationship_services.go index 366c176..1d65ee3 100644 --- a/fastly/model_relationship_services.go +++ b/fastly/model_relationship_services.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_services_services.go b/fastly/model_relationship_services_services.go index 4e85999..c1a89ea 100644 --- a/fastly/model_relationship_services_services.go +++ b/fastly/model_relationship_services_services.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_tls_activation.go b/fastly/model_relationship_tls_activation.go index c07d45d..4ff1fd0 100644 --- a/fastly/model_relationship_tls_activation.go +++ b/fastly/model_relationship_tls_activation.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_tls_activation_tls_activation.go b/fastly/model_relationship_tls_activation_tls_activation.go index a53936d..2d1830d 100644 --- a/fastly/model_relationship_tls_activation_tls_activation.go +++ b/fastly/model_relationship_tls_activation_tls_activation.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_tls_activations.go b/fastly/model_relationship_tls_activations.go index 747ad84..dd150b0 100644 --- a/fastly/model_relationship_tls_activations.go +++ b/fastly/model_relationship_tls_activations.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_tls_bulk_certificate.go b/fastly/model_relationship_tls_bulk_certificate.go index f0a9555..431a115 100644 --- a/fastly/model_relationship_tls_bulk_certificate.go +++ b/fastly/model_relationship_tls_bulk_certificate.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_tls_bulk_certificate_tls_bulk_certificate.go b/fastly/model_relationship_tls_bulk_certificate_tls_bulk_certificate.go index 1b1855f..367e83f 100644 --- a/fastly/model_relationship_tls_bulk_certificate_tls_bulk_certificate.go +++ b/fastly/model_relationship_tls_bulk_certificate_tls_bulk_certificate.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_tls_bulk_certificates.go b/fastly/model_relationship_tls_bulk_certificates.go index 63d0980..2fab68f 100644 --- a/fastly/model_relationship_tls_bulk_certificates.go +++ b/fastly/model_relationship_tls_bulk_certificates.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_tls_certificate.go b/fastly/model_relationship_tls_certificate.go index 2dcf9e7..fd1e35a 100644 --- a/fastly/model_relationship_tls_certificate.go +++ b/fastly/model_relationship_tls_certificate.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_tls_certificate_tls_certificate.go b/fastly/model_relationship_tls_certificate_tls_certificate.go index 7bd650f..a7693dc 100644 --- a/fastly/model_relationship_tls_certificate_tls_certificate.go +++ b/fastly/model_relationship_tls_certificate_tls_certificate.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_tls_certificates.go b/fastly/model_relationship_tls_certificates.go index c365bc4..de23672 100644 --- a/fastly/model_relationship_tls_certificates.go +++ b/fastly/model_relationship_tls_certificates.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_tls_certificates_tls_certificates.go b/fastly/model_relationship_tls_certificates_tls_certificates.go index 569a4fe..f6f556d 100644 --- a/fastly/model_relationship_tls_certificates_tls_certificates.go +++ b/fastly/model_relationship_tls_certificates_tls_certificates.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_tls_configuration.go b/fastly/model_relationship_tls_configuration.go index e6776b6..da94077 100644 --- a/fastly/model_relationship_tls_configuration.go +++ b/fastly/model_relationship_tls_configuration.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_tls_configuration_for_tls_subscription.go b/fastly/model_relationship_tls_configuration_for_tls_subscription.go index d0f21ee..9befd1d 100644 --- a/fastly/model_relationship_tls_configuration_for_tls_subscription.go +++ b/fastly/model_relationship_tls_configuration_for_tls_subscription.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_tls_configuration_tls_configuration.go b/fastly/model_relationship_tls_configuration_tls_configuration.go index ca730fc..150865c 100644 --- a/fastly/model_relationship_tls_configuration_tls_configuration.go +++ b/fastly/model_relationship_tls_configuration_tls_configuration.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_tls_configurations.go b/fastly/model_relationship_tls_configurations.go index cc54ed3..85be5cf 100644 --- a/fastly/model_relationship_tls_configurations.go +++ b/fastly/model_relationship_tls_configurations.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_tls_configurations_tls_configurations.go b/fastly/model_relationship_tls_configurations_tls_configurations.go index c8201ab..fc41247 100644 --- a/fastly/model_relationship_tls_configurations_tls_configurations.go +++ b/fastly/model_relationship_tls_configurations_tls_configurations.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_tls_dns_record.go b/fastly/model_relationship_tls_dns_record.go index e4905eb..a3e3400 100644 --- a/fastly/model_relationship_tls_dns_record.go +++ b/fastly/model_relationship_tls_dns_record.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_tls_dns_record_dns_record.go b/fastly/model_relationship_tls_dns_record_dns_record.go index 6e2ed6a..434d741 100644 --- a/fastly/model_relationship_tls_dns_record_dns_record.go +++ b/fastly/model_relationship_tls_dns_record_dns_record.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_tls_dns_records.go b/fastly/model_relationship_tls_dns_records.go index 1ce00dc..85200bd 100644 --- a/fastly/model_relationship_tls_dns_records.go +++ b/fastly/model_relationship_tls_dns_records.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_tls_domain.go b/fastly/model_relationship_tls_domain.go index c2712ec..9905b3c 100644 --- a/fastly/model_relationship_tls_domain.go +++ b/fastly/model_relationship_tls_domain.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_tls_domain_tls_domain.go b/fastly/model_relationship_tls_domain_tls_domain.go index 3667aac..0c6eb80 100644 --- a/fastly/model_relationship_tls_domain_tls_domain.go +++ b/fastly/model_relationship_tls_domain_tls_domain.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_tls_domains.go b/fastly/model_relationship_tls_domains.go index c9d8fb8..a67a705 100644 --- a/fastly/model_relationship_tls_domains.go +++ b/fastly/model_relationship_tls_domains.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_tls_domains_tls_domains.go b/fastly/model_relationship_tls_domains_tls_domains.go index 0f8524d..f53eb2d 100644 --- a/fastly/model_relationship_tls_domains_tls_domains.go +++ b/fastly/model_relationship_tls_domains_tls_domains.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_tls_private_key.go b/fastly/model_relationship_tls_private_key.go index 6ac61ea..b516539 100644 --- a/fastly/model_relationship_tls_private_key.go +++ b/fastly/model_relationship_tls_private_key.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_tls_private_key_tls_private_key.go b/fastly/model_relationship_tls_private_key_tls_private_key.go index d8c43e0..4255529 100644 --- a/fastly/model_relationship_tls_private_key_tls_private_key.go +++ b/fastly/model_relationship_tls_private_key_tls_private_key.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_tls_private_keys.go b/fastly/model_relationship_tls_private_keys.go index 4bd38fe..042c7b4 100644 --- a/fastly/model_relationship_tls_private_keys.go +++ b/fastly/model_relationship_tls_private_keys.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_tls_private_keys_tls_private_keys.go b/fastly/model_relationship_tls_private_keys_tls_private_keys.go index ee507ba..226accd 100644 --- a/fastly/model_relationship_tls_private_keys_tls_private_keys.go +++ b/fastly/model_relationship_tls_private_keys_tls_private_keys.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_tls_subscription.go b/fastly/model_relationship_tls_subscription.go index b04b787..454b48d 100644 --- a/fastly/model_relationship_tls_subscription.go +++ b/fastly/model_relationship_tls_subscription.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_tls_subscription_tls_subscription.go b/fastly/model_relationship_tls_subscription_tls_subscription.go index 66a9c24..0f41e58 100644 --- a/fastly/model_relationship_tls_subscription_tls_subscription.go +++ b/fastly/model_relationship_tls_subscription_tls_subscription.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_tls_subscriptions.go b/fastly/model_relationship_tls_subscriptions.go index d403bd2..5d33200 100644 --- a/fastly/model_relationship_tls_subscriptions.go +++ b/fastly/model_relationship_tls_subscriptions.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_user.go b/fastly/model_relationship_user.go index 94a67b2..e978ee2 100644 --- a/fastly/model_relationship_user.go +++ b/fastly/model_relationship_user.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_user_user.go b/fastly/model_relationship_user_user.go index c50ae40..74953be 100644 --- a/fastly/model_relationship_user_user.go +++ b/fastly/model_relationship_user_user.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_waf_active_rules.go b/fastly/model_relationship_waf_active_rules.go index 094ca05..d44f5de 100644 --- a/fastly/model_relationship_waf_active_rules.go +++ b/fastly/model_relationship_waf_active_rules.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_waf_active_rules_waf_active_rules.go b/fastly/model_relationship_waf_active_rules_waf_active_rules.go index 7dbd084..d336b42 100644 --- a/fastly/model_relationship_waf_active_rules_waf_active_rules.go +++ b/fastly/model_relationship_waf_active_rules_waf_active_rules.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_waf_firewall.go b/fastly/model_relationship_waf_firewall.go index 99c8ee8..055725d 100644 --- a/fastly/model_relationship_waf_firewall.go +++ b/fastly/model_relationship_waf_firewall.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_waf_firewall_version.go b/fastly/model_relationship_waf_firewall_version.go index 9583498..10a5c13 100644 --- a/fastly/model_relationship_waf_firewall_version.go +++ b/fastly/model_relationship_waf_firewall_version.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_waf_firewall_version_waf_firewall_version.go b/fastly/model_relationship_waf_firewall_version_waf_firewall_version.go index ef31549..f7fdcc1 100644 --- a/fastly/model_relationship_waf_firewall_version_waf_firewall_version.go +++ b/fastly/model_relationship_waf_firewall_version_waf_firewall_version.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_waf_firewall_versions.go b/fastly/model_relationship_waf_firewall_versions.go index 775b631..4800cec 100644 --- a/fastly/model_relationship_waf_firewall_versions.go +++ b/fastly/model_relationship_waf_firewall_versions.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_waf_firewall_waf_firewall.go b/fastly/model_relationship_waf_firewall_waf_firewall.go index 7556486..0fb03b0 100644 --- a/fastly/model_relationship_waf_firewall_waf_firewall.go +++ b/fastly/model_relationship_waf_firewall_waf_firewall.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_waf_rule.go b/fastly/model_relationship_waf_rule.go index 6933e44..694cea5 100644 --- a/fastly/model_relationship_waf_rule.go +++ b/fastly/model_relationship_waf_rule.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_waf_rule_revision.go b/fastly/model_relationship_waf_rule_revision.go index 98baa40..b6ce833 100644 --- a/fastly/model_relationship_waf_rule_revision.go +++ b/fastly/model_relationship_waf_rule_revision.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_waf_rule_revision_waf_rule_revisions.go b/fastly/model_relationship_waf_rule_revision_waf_rule_revisions.go index 2c07739..bf1b00c 100644 --- a/fastly/model_relationship_waf_rule_revision_waf_rule_revisions.go +++ b/fastly/model_relationship_waf_rule_revision_waf_rule_revisions.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_waf_rule_revisions.go b/fastly/model_relationship_waf_rule_revisions.go index e2f369c..d4d201c 100644 --- a/fastly/model_relationship_waf_rule_revisions.go +++ b/fastly/model_relationship_waf_rule_revisions.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_waf_rule_waf_rule.go b/fastly/model_relationship_waf_rule_waf_rule.go index 37d251a..e1d49b2 100644 --- a/fastly/model_relationship_waf_rule_waf_rule.go +++ b/fastly/model_relationship_waf_rule_waf_rule.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_waf_rules.go b/fastly/model_relationship_waf_rules.go index 108ed7d..3293e71 100644 --- a/fastly/model_relationship_waf_rules.go +++ b/fastly/model_relationship_waf_rules.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_waf_tags.go b/fastly/model_relationship_waf_tags.go index aecb1f7..d6c3beb 100644 --- a/fastly/model_relationship_waf_tags.go +++ b/fastly/model_relationship_waf_tags.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationship_waf_tags_waf_tags.go b/fastly/model_relationship_waf_tags_waf_tags.go index f08638f..b963a94 100644 --- a/fastly/model_relationship_waf_tags_waf_tags.go +++ b/fastly/model_relationship_waf_tags_waf_tags.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationships_for_invitation.go b/fastly/model_relationships_for_invitation.go index d4c6053..aaf9575 100644 --- a/fastly/model_relationships_for_invitation.go +++ b/fastly/model_relationships_for_invitation.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationships_for_mutual_authentication.go b/fastly/model_relationships_for_mutual_authentication.go index 81dd5e3..46cefa5 100644 --- a/fastly/model_relationships_for_mutual_authentication.go +++ b/fastly/model_relationships_for_mutual_authentication.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationships_for_star.go b/fastly/model_relationships_for_star.go index 0e9f0f9..f749080 100644 --- a/fastly/model_relationships_for_star.go +++ b/fastly/model_relationships_for_star.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationships_for_tls_activation.go b/fastly/model_relationships_for_tls_activation.go index 9518805..d2d4c57 100644 --- a/fastly/model_relationships_for_tls_activation.go +++ b/fastly/model_relationships_for_tls_activation.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationships_for_tls_bulk_certificate.go b/fastly/model_relationships_for_tls_bulk_certificate.go index 6a28f1f..3ec6949 100644 --- a/fastly/model_relationships_for_tls_bulk_certificate.go +++ b/fastly/model_relationships_for_tls_bulk_certificate.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationships_for_tls_configuration.go b/fastly/model_relationships_for_tls_configuration.go index bdcb83e..aa13c43 100644 --- a/fastly/model_relationships_for_tls_configuration.go +++ b/fastly/model_relationships_for_tls_configuration.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationships_for_tls_domain.go b/fastly/model_relationships_for_tls_domain.go index 506cda5..0c3e164 100644 --- a/fastly/model_relationships_for_tls_domain.go +++ b/fastly/model_relationships_for_tls_domain.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationships_for_tls_private_key.go b/fastly/model_relationships_for_tls_private_key.go index 7241368..cc5543b 100644 --- a/fastly/model_relationships_for_tls_private_key.go +++ b/fastly/model_relationships_for_tls_private_key.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationships_for_tls_subscription.go b/fastly/model_relationships_for_tls_subscription.go index 05a8fb3..be15378 100644 --- a/fastly/model_relationships_for_tls_subscription.go +++ b/fastly/model_relationships_for_tls_subscription.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationships_for_waf_active_rule.go b/fastly/model_relationships_for_waf_active_rule.go index 9464fd2..f8c471f 100644 --- a/fastly/model_relationships_for_waf_active_rule.go +++ b/fastly/model_relationships_for_waf_active_rule.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationships_for_waf_exclusion.go b/fastly/model_relationships_for_waf_exclusion.go index 8ad9d2e..acd079d 100644 --- a/fastly/model_relationships_for_waf_exclusion.go +++ b/fastly/model_relationships_for_waf_exclusion.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationships_for_waf_firewall_version.go b/fastly/model_relationships_for_waf_firewall_version.go index ebe8530..e38f311 100644 --- a/fastly/model_relationships_for_waf_firewall_version.go +++ b/fastly/model_relationships_for_waf_firewall_version.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_relationships_for_waf_rule.go b/fastly/model_relationships_for_waf_rule.go index f80947a..e9f1c7a 100644 --- a/fastly/model_relationships_for_waf_rule.go +++ b/fastly/model_relationships_for_waf_rule.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_request_settings_additional.go b/fastly/model_request_settings_additional.go index a11cdc0..544a822 100644 --- a/fastly/model_request_settings_additional.go +++ b/fastly/model_request_settings_additional.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_request_settings_response.go b/fastly/model_request_settings_response.go index a535091..763406c 100644 --- a/fastly/model_request_settings_response.go +++ b/fastly/model_request_settings_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_request_settings_response_all_of.go b/fastly/model_request_settings_response_all_of.go index e6e03dc..2e68578 100644 --- a/fastly/model_request_settings_response_all_of.go +++ b/fastly/model_request_settings_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_resource.go b/fastly/model_resource.go index 72c5a9d..630547f 100644 --- a/fastly/model_resource.go +++ b/fastly/model_resource.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_resource_response.go b/fastly/model_resource_response.go index 5559b8c..5ab27d9 100644 --- a/fastly/model_resource_response.go +++ b/fastly/model_resource_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com @@ -50,8 +50,6 @@ type _ResourceResponse ResourceResponse // will change when the set of required properties is changed func NewResourceResponse() *ResourceResponse { this := ResourceResponse{} - var resourceType TypeResource = TYPERESOURCE_OBJECT_STORE - this.ResourceType = &resourceType return &this } @@ -60,8 +58,6 @@ func NewResourceResponse() *ResourceResponse { // but it doesn't guarantee that properties required by API are set func NewResourceResponseWithDefaults() *ResourceResponse { this := ResourceResponse{} - var resourceType TypeResource = TYPERESOURCE_OBJECT_STORE - this.ResourceType = &resourceType return &this } diff --git a/fastly/model_resource_response_all_of.go b/fastly/model_resource_response_all_of.go index ae76749..2a986c5 100644 --- a/fastly/model_resource_response_all_of.go +++ b/fastly/model_resource_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com @@ -39,8 +39,6 @@ type _ResourceResponseAllOf ResourceResponseAllOf // will change when the set of required properties is changed func NewResourceResponseAllOf() *ResourceResponseAllOf { this := ResourceResponseAllOf{} - var resourceType TypeResource = TYPERESOURCE_OBJECT_STORE - this.ResourceType = &resourceType return &this } @@ -49,8 +47,6 @@ func NewResourceResponseAllOf() *ResourceResponseAllOf { // but it doesn't guarantee that properties required by API are set func NewResourceResponseAllOfWithDefaults() *ResourceResponseAllOf { this := ResourceResponseAllOf{} - var resourceType TypeResource = TYPERESOURCE_OBJECT_STORE - this.ResourceType = &resourceType return &this } diff --git a/fastly/model_response_object.go b/fastly/model_response_object.go index 15235e8..400e7f8 100644 --- a/fastly/model_response_object.go +++ b/fastly/model_response_object.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_response_object_response.go b/fastly/model_response_object_response.go index 88ab811..64e5b34 100644 --- a/fastly/model_response_object_response.go +++ b/fastly/model_response_object_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_results.go b/fastly/model_results.go index 0888775..a77ad59 100644 --- a/fastly/model_results.go +++ b/fastly/model_results.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_role_user.go b/fastly/model_role_user.go index 1d74417..121e915 100644 --- a/fastly/model_role_user.go +++ b/fastly/model_role_user.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_schemas_contact_response.go b/fastly/model_schemas_contact_response.go index 7663484..bf20e22 100644 --- a/fastly/model_schemas_contact_response.go +++ b/fastly/model_schemas_contact_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_schemas_snippet_response.go b/fastly/model_schemas_snippet_response.go index 0165d06..b122479 100644 --- a/fastly/model_schemas_snippet_response.go +++ b/fastly/model_schemas_snippet_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_schemas_snippet_response_common.go b/fastly/model_schemas_snippet_response_common.go index ee74236..4e6b4e2 100644 --- a/fastly/model_schemas_snippet_response_common.go +++ b/fastly/model_schemas_snippet_response_common.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_schemas_user_response.go b/fastly/model_schemas_user_response.go index 2676466..87a8576 100644 --- a/fastly/model_schemas_user_response.go +++ b/fastly/model_schemas_user_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_schemas_user_response_read_only.go b/fastly/model_schemas_user_response_read_only.go index da41eb2..6c746a2 100644 --- a/fastly/model_schemas_user_response_read_only.go +++ b/fastly/model_schemas_user_response_read_only.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_schemas_vcl_response.go b/fastly/model_schemas_vcl_response.go index 9a1d5bf..bdbc6da 100644 --- a/fastly/model_schemas_vcl_response.go +++ b/fastly/model_schemas_vcl_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_schemas_version.go b/fastly/model_schemas_version.go index f36d6a1..9a172e5 100644 --- a/fastly/model_schemas_version.go +++ b/fastly/model_schemas_version.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_schemas_version_response.go b/fastly/model_schemas_version_response.go index 1656965..fb9d835 100644 --- a/fastly/model_schemas_version_response.go +++ b/fastly/model_schemas_version_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_schemas_waf_firewall_version.go b/fastly/model_schemas_waf_firewall_version.go index 7a47cd4..e9ef280 100644 --- a/fastly/model_schemas_waf_firewall_version.go +++ b/fastly/model_schemas_waf_firewall_version.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_schemas_waf_firewall_version_data.go b/fastly/model_schemas_waf_firewall_version_data.go index 973f6e0..52d6131 100644 --- a/fastly/model_schemas_waf_firewall_version_data.go +++ b/fastly/model_schemas_waf_firewall_version_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_secret.go b/fastly/model_secret.go index 6be86b4..313be52 100644 --- a/fastly/model_secret.go +++ b/fastly/model_secret.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_secret_response.go b/fastly/model_secret_response.go index 1ac4662..d042e0b 100644 --- a/fastly/model_secret_response.go +++ b/fastly/model_secret_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_secret_store.go b/fastly/model_secret_store.go index ba2f221..f446b4d 100644 --- a/fastly/model_secret_store.go +++ b/fastly/model_secret_store.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_secret_store_response.go b/fastly/model_secret_store_response.go index 8b08510..b636bfb 100644 --- a/fastly/model_secret_store_response.go +++ b/fastly/model_secret_store_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_server.go b/fastly/model_server.go index 0c0adc3..fe3d8de 100644 --- a/fastly/model_server.go +++ b/fastly/model_server.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_server_response.go b/fastly/model_server_response.go index c2c7941..046062f 100644 --- a/fastly/model_server_response.go +++ b/fastly/model_server_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_server_response_all_of.go b/fastly/model_server_response_all_of.go index 952336e..fa0d42d 100644 --- a/fastly/model_server_response_all_of.go +++ b/fastly/model_server_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service.go b/fastly/model_service.go index 4661750..3cfc738 100644 --- a/fastly/model_service.go +++ b/fastly/model_service.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_authorization.go b/fastly/model_service_authorization.go index 417d3cd..d5b6df8 100644 --- a/fastly/model_service_authorization.go +++ b/fastly/model_service_authorization.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_authorization_data.go b/fastly/model_service_authorization_data.go index 158a3e0..29f58a9 100644 --- a/fastly/model_service_authorization_data.go +++ b/fastly/model_service_authorization_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_authorization_data_attributes.go b/fastly/model_service_authorization_data_attributes.go index f047c19..745e9ba 100644 --- a/fastly/model_service_authorization_data_attributes.go +++ b/fastly/model_service_authorization_data_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_authorization_data_relationships.go b/fastly/model_service_authorization_data_relationships.go index 96d6403..9914a7f 100644 --- a/fastly/model_service_authorization_data_relationships.go +++ b/fastly/model_service_authorization_data_relationships.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_authorization_data_relationships_user.go b/fastly/model_service_authorization_data_relationships_user.go index fcedc09..954f33a 100644 --- a/fastly/model_service_authorization_data_relationships_user.go +++ b/fastly/model_service_authorization_data_relationships_user.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_authorization_data_relationships_user_data.go b/fastly/model_service_authorization_data_relationships_user_data.go index c2426ab..5ca19c4 100644 --- a/fastly/model_service_authorization_data_relationships_user_data.go +++ b/fastly/model_service_authorization_data_relationships_user_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_authorization_response.go b/fastly/model_service_authorization_response.go index b68ed4c..72cf143 100644 --- a/fastly/model_service_authorization_response.go +++ b/fastly/model_service_authorization_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_authorization_response_data.go b/fastly/model_service_authorization_response_data.go index 6da113f..4d52007 100644 --- a/fastly/model_service_authorization_response_data.go +++ b/fastly/model_service_authorization_response_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_authorization_response_data_all_of.go b/fastly/model_service_authorization_response_data_all_of.go index 5501fa6..50ab6cc 100644 --- a/fastly/model_service_authorization_response_data_all_of.go +++ b/fastly/model_service_authorization_response_data_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_authorizations_response.go b/fastly/model_service_authorizations_response.go index 720bb61..32c1851 100644 --- a/fastly/model_service_authorizations_response.go +++ b/fastly/model_service_authorizations_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_authorizations_response_all_of.go b/fastly/model_service_authorizations_response_all_of.go index 7d7ca14..b2736eb 100644 --- a/fastly/model_service_authorizations_response_all_of.go +++ b/fastly/model_service_authorizations_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_create.go b/fastly/model_service_create.go index 69e6162..6c2e0cd 100644 --- a/fastly/model_service_create.go +++ b/fastly/model_service_create.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_create_all_of.go b/fastly/model_service_create_all_of.go index 786f772..5642a66 100644 --- a/fastly/model_service_create_all_of.go +++ b/fastly/model_service_create_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_detail.go b/fastly/model_service_detail.go index 43a0285..f3200d5 100644 --- a/fastly/model_service_detail.go +++ b/fastly/model_service_detail.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_detail_all_of.go b/fastly/model_service_detail_all_of.go index 6dc1237..53d3aa5 100644 --- a/fastly/model_service_detail_all_of.go +++ b/fastly/model_service_detail_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_id_and_version.go b/fastly/model_service_id_and_version.go index 73682b4..3315966 100644 --- a/fastly/model_service_id_and_version.go +++ b/fastly/model_service_id_and_version.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_id_and_version_string.go b/fastly/model_service_id_and_version_string.go index c956bbd..5adc153 100644 --- a/fastly/model_service_id_and_version_string.go +++ b/fastly/model_service_id_and_version_string.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_invitation.go b/fastly/model_service_invitation.go index 9ecb688..72e226e 100644 --- a/fastly/model_service_invitation.go +++ b/fastly/model_service_invitation.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_invitation_data.go b/fastly/model_service_invitation_data.go index fd80583..a0d1581 100644 --- a/fastly/model_service_invitation_data.go +++ b/fastly/model_service_invitation_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_invitation_data_attributes.go b/fastly/model_service_invitation_data_attributes.go index 13bd1a4..405d3a0 100644 --- a/fastly/model_service_invitation_data_attributes.go +++ b/fastly/model_service_invitation_data_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_invitation_data_relationships.go b/fastly/model_service_invitation_data_relationships.go index 532fa4f..d8f9fc5 100644 --- a/fastly/model_service_invitation_data_relationships.go +++ b/fastly/model_service_invitation_data_relationships.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_invitation_response.go b/fastly/model_service_invitation_response.go index 6f7991b..aa63323 100644 --- a/fastly/model_service_invitation_response.go +++ b/fastly/model_service_invitation_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_invitation_response_all_of.go b/fastly/model_service_invitation_response_all_of.go index 0bce9a9..774835a 100644 --- a/fastly/model_service_invitation_response_all_of.go +++ b/fastly/model_service_invitation_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_invitation_response_all_of_data.go b/fastly/model_service_invitation_response_all_of_data.go index bad9171..e438726 100644 --- a/fastly/model_service_invitation_response_all_of_data.go +++ b/fastly/model_service_invitation_response_all_of_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_list_response.go b/fastly/model_service_list_response.go index 49e19e0..fa96092 100644 --- a/fastly/model_service_list_response.go +++ b/fastly/model_service_list_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_list_response_all_of.go b/fastly/model_service_list_response_all_of.go index 4ab3373..a944316 100644 --- a/fastly/model_service_list_response_all_of.go +++ b/fastly/model_service_list_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_response.go b/fastly/model_service_response.go index 143b2a6..f46c6f8 100644 --- a/fastly/model_service_response.go +++ b/fastly/model_service_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_response_all_of.go b/fastly/model_service_response_all_of.go index 005837f..e370047 100644 --- a/fastly/model_service_response_all_of.go +++ b/fastly/model_service_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_version_detail.go b/fastly/model_service_version_detail.go index 054a0ea..dd63040 100644 --- a/fastly/model_service_version_detail.go +++ b/fastly/model_service_version_detail.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_service_version_detail_or_null.go b/fastly/model_service_version_detail_or_null.go index cdbcbec..492832a 100644 --- a/fastly/model_service_version_detail_or_null.go +++ b/fastly/model_service_version_detail_or_null.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_settings.go b/fastly/model_settings.go index 65a0f5c..5283cfd 100644 --- a/fastly/model_settings.go +++ b/fastly/model_settings.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_settings_response.go b/fastly/model_settings_response.go index 95b7444..d17c99b 100644 --- a/fastly/model_settings_response.go +++ b/fastly/model_settings_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_signing_key.go b/fastly/model_signing_key.go index bacfcc1..7867251 100644 --- a/fastly/model_signing_key.go +++ b/fastly/model_signing_key.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_snippet.go b/fastly/model_snippet.go index 068520c..2a197d4 100644 --- a/fastly/model_snippet.go +++ b/fastly/model_snippet.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_snippet_all_of.go b/fastly/model_snippet_all_of.go index b539bc0..70cf432 100644 --- a/fastly/model_snippet_all_of.go +++ b/fastly/model_snippet_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_snippet_common.go b/fastly/model_snippet_common.go index b01963c..be148d5 100644 --- a/fastly/model_snippet_common.go +++ b/fastly/model_snippet_common.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_snippet_response.go b/fastly/model_snippet_response.go index b8f74d1..b032a50 100644 --- a/fastly/model_snippet_response.go +++ b/fastly/model_snippet_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_snippet_response_common.go b/fastly/model_snippet_response_common.go index 2fd9bb7..1ef5e9a 100644 --- a/fastly/model_snippet_response_common.go +++ b/fastly/model_snippet_response_common.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_snippet_response_common_all_of.go b/fastly/model_snippet_response_common_all_of.go index 7f47473..3426e76 100644 --- a/fastly/model_snippet_response_common_all_of.go +++ b/fastly/model_snippet_response_common_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_snippet_response_post.go b/fastly/model_snippet_response_post.go index 0f71432..cb59ea4 100644 --- a/fastly/model_snippet_response_post.go +++ b/fastly/model_snippet_response_post.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_snippet_with_dynamic_number.go b/fastly/model_snippet_with_dynamic_number.go index 6ba50bc..4d037db 100644 --- a/fastly/model_snippet_with_dynamic_number.go +++ b/fastly/model_snippet_with_dynamic_number.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_snippet_with_dynamic_number_all_of.go b/fastly/model_snippet_with_dynamic_number_all_of.go index 8b97453..6b456dd 100644 --- a/fastly/model_snippet_with_dynamic_number_all_of.go +++ b/fastly/model_snippet_with_dynamic_number_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_star.go b/fastly/model_star.go index fe3ff44..52af8ed 100644 --- a/fastly/model_star.go +++ b/fastly/model_star.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_star_data.go b/fastly/model_star_data.go index a513d2a..37fe1bf 100644 --- a/fastly/model_star_data.go +++ b/fastly/model_star_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_star_response.go b/fastly/model_star_response.go index d42f49c..8c508c5 100644 --- a/fastly/model_star_response.go +++ b/fastly/model_star_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_star_response_all_of.go b/fastly/model_star_response_all_of.go index cd89b59..eb1b62c 100644 --- a/fastly/model_star_response_all_of.go +++ b/fastly/model_star_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_stats.go b/fastly/model_stats.go index 419e207..2a96473 100644 --- a/fastly/model_stats.go +++ b/fastly/model_stats.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_store.go b/fastly/model_store.go index d985cf5..4040bae 100644 --- a/fastly/model_store.go +++ b/fastly/model_store.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_store_response.go b/fastly/model_store_response.go index 6fe9f83..5427b29 100644 --- a/fastly/model_store_response.go +++ b/fastly/model_store_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_subsequent_request_timestamp.go b/fastly/model_subsequent_request_timestamp.go index 91deaec..4dc3c49 100644 --- a/fastly/model_subsequent_request_timestamp.go +++ b/fastly/model_subsequent_request_timestamp.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_sudo_generic_token_error.go b/fastly/model_sudo_generic_token_error.go index 448d5a9..487a937 100644 --- a/fastly/model_sudo_generic_token_error.go +++ b/fastly/model_sudo_generic_token_error.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_sudo_request.go b/fastly/model_sudo_request.go index a16080f..2c61789 100644 --- a/fastly/model_sudo_request.go +++ b/fastly/model_sudo_request.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_sudo_response.go b/fastly/model_sudo_response.go index ffc24a4..076178e 100644 --- a/fastly/model_sudo_response.go +++ b/fastly/model_sudo_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_timestamps.go b/fastly/model_timestamps.go index 6529249..449aee3 100644 --- a/fastly/model_timestamps.go +++ b/fastly/model_timestamps.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_timestamps_no_delete.go b/fastly/model_timestamps_no_delete.go index f6bf170..8d9067b 100644 --- a/fastly/model_timestamps_no_delete.go +++ b/fastly/model_timestamps_no_delete.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_activation.go b/fastly/model_tls_activation.go index a81d8ae..1cf90d2 100644 --- a/fastly/model_tls_activation.go +++ b/fastly/model_tls_activation.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_activation_data.go b/fastly/model_tls_activation_data.go index 7b6eb59..82a8821 100644 --- a/fastly/model_tls_activation_data.go +++ b/fastly/model_tls_activation_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_activation_response.go b/fastly/model_tls_activation_response.go index 4f55a62..9b1e7f7 100644 --- a/fastly/model_tls_activation_response.go +++ b/fastly/model_tls_activation_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_activation_response_data.go b/fastly/model_tls_activation_response_data.go index f8896c1..6a564cc 100644 --- a/fastly/model_tls_activation_response_data.go +++ b/fastly/model_tls_activation_response_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_activation_response_data_all_of.go b/fastly/model_tls_activation_response_data_all_of.go index c3a2261..a1ad534 100644 --- a/fastly/model_tls_activation_response_data_all_of.go +++ b/fastly/model_tls_activation_response_data_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_activations_response.go b/fastly/model_tls_activations_response.go index 28db4bd..f5d8722 100644 --- a/fastly/model_tls_activations_response.go +++ b/fastly/model_tls_activations_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_activations_response_all_of.go b/fastly/model_tls_activations_response_all_of.go index 9eaaee3..9c184a7 100644 --- a/fastly/model_tls_activations_response_all_of.go +++ b/fastly/model_tls_activations_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_bulk_certificate.go b/fastly/model_tls_bulk_certificate.go index 1422dcc..339f5d3 100644 --- a/fastly/model_tls_bulk_certificate.go +++ b/fastly/model_tls_bulk_certificate.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_bulk_certificate_data.go b/fastly/model_tls_bulk_certificate_data.go index 5de7af0..2c571d3 100644 --- a/fastly/model_tls_bulk_certificate_data.go +++ b/fastly/model_tls_bulk_certificate_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_bulk_certificate_data_attributes.go b/fastly/model_tls_bulk_certificate_data_attributes.go index dba66fc..15a1d7c 100644 --- a/fastly/model_tls_bulk_certificate_data_attributes.go +++ b/fastly/model_tls_bulk_certificate_data_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_bulk_certificate_response.go b/fastly/model_tls_bulk_certificate_response.go index ae7ceeb..69f140a 100644 --- a/fastly/model_tls_bulk_certificate_response.go +++ b/fastly/model_tls_bulk_certificate_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_bulk_certificate_response_attributes.go b/fastly/model_tls_bulk_certificate_response_attributes.go index 1f22a48..2bc0ac7 100644 --- a/fastly/model_tls_bulk_certificate_response_attributes.go +++ b/fastly/model_tls_bulk_certificate_response_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_bulk_certificate_response_attributes_all_of.go b/fastly/model_tls_bulk_certificate_response_attributes_all_of.go index aee31bb..d5c2191 100644 --- a/fastly/model_tls_bulk_certificate_response_attributes_all_of.go +++ b/fastly/model_tls_bulk_certificate_response_attributes_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_bulk_certificate_response_data.go b/fastly/model_tls_bulk_certificate_response_data.go index 7e0ffd7..2add49d 100644 --- a/fastly/model_tls_bulk_certificate_response_data.go +++ b/fastly/model_tls_bulk_certificate_response_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_bulk_certificate_response_data_all_of.go b/fastly/model_tls_bulk_certificate_response_data_all_of.go index 34f9c14..0aca373 100644 --- a/fastly/model_tls_bulk_certificate_response_data_all_of.go +++ b/fastly/model_tls_bulk_certificate_response_data_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_bulk_certificates_response.go b/fastly/model_tls_bulk_certificates_response.go index 77ca6fb..991e227 100644 --- a/fastly/model_tls_bulk_certificates_response.go +++ b/fastly/model_tls_bulk_certificates_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_bulk_certificates_response_all_of.go b/fastly/model_tls_bulk_certificates_response_all_of.go index bf36c92..59cee6d 100644 --- a/fastly/model_tls_bulk_certificates_response_all_of.go +++ b/fastly/model_tls_bulk_certificates_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_certificate.go b/fastly/model_tls_certificate.go index 0726194..ff837af 100644 --- a/fastly/model_tls_certificate.go +++ b/fastly/model_tls_certificate.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_certificate_data.go b/fastly/model_tls_certificate_data.go index 0479899..12445c0 100644 --- a/fastly/model_tls_certificate_data.go +++ b/fastly/model_tls_certificate_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_certificate_data_attributes.go b/fastly/model_tls_certificate_data_attributes.go index 070297c..369336b 100644 --- a/fastly/model_tls_certificate_data_attributes.go +++ b/fastly/model_tls_certificate_data_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_certificate_response.go b/fastly/model_tls_certificate_response.go index 7f8cb76..d32f28b 100644 --- a/fastly/model_tls_certificate_response.go +++ b/fastly/model_tls_certificate_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_certificate_response_attributes.go b/fastly/model_tls_certificate_response_attributes.go index a2c2d80..109f45f 100644 --- a/fastly/model_tls_certificate_response_attributes.go +++ b/fastly/model_tls_certificate_response_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_certificate_response_attributes_all_of.go b/fastly/model_tls_certificate_response_attributes_all_of.go index 8a9d219..a1a0d23 100644 --- a/fastly/model_tls_certificate_response_attributes_all_of.go +++ b/fastly/model_tls_certificate_response_attributes_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_certificate_response_data.go b/fastly/model_tls_certificate_response_data.go index 323d82d..22726d4 100644 --- a/fastly/model_tls_certificate_response_data.go +++ b/fastly/model_tls_certificate_response_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_certificate_response_data_all_of.go b/fastly/model_tls_certificate_response_data_all_of.go index 01bd8ba..04b4627 100644 --- a/fastly/model_tls_certificate_response_data_all_of.go +++ b/fastly/model_tls_certificate_response_data_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_certificates_response.go b/fastly/model_tls_certificates_response.go index c12fd8a..83909e2 100644 --- a/fastly/model_tls_certificates_response.go +++ b/fastly/model_tls_certificates_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_certificates_response_all_of.go b/fastly/model_tls_certificates_response_all_of.go index 0f1ade6..24f949c 100644 --- a/fastly/model_tls_certificates_response_all_of.go +++ b/fastly/model_tls_certificates_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_common_response.go b/fastly/model_tls_common_response.go index db62725..ad12f90 100644 --- a/fastly/model_tls_common_response.go +++ b/fastly/model_tls_common_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_common_response_all_of.go b/fastly/model_tls_common_response_all_of.go index 1052929..60535d4 100644 --- a/fastly/model_tls_common_response_all_of.go +++ b/fastly/model_tls_common_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_common_response_all_of_1.go b/fastly/model_tls_common_response_all_of_1.go index 8e03e71..7110316 100644 --- a/fastly/model_tls_common_response_all_of_1.go +++ b/fastly/model_tls_common_response_all_of_1.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_configuration.go b/fastly/model_tls_configuration.go index 8b41d1d..2cb6f1f 100644 --- a/fastly/model_tls_configuration.go +++ b/fastly/model_tls_configuration.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_configuration_data.go b/fastly/model_tls_configuration_data.go index 74ffc78..624a5fe 100644 --- a/fastly/model_tls_configuration_data.go +++ b/fastly/model_tls_configuration_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_configuration_data_attributes.go b/fastly/model_tls_configuration_data_attributes.go index 681a7f0..47a679b 100644 --- a/fastly/model_tls_configuration_data_attributes.go +++ b/fastly/model_tls_configuration_data_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_configuration_response.go b/fastly/model_tls_configuration_response.go index 144fe57..a5cfb54 100644 --- a/fastly/model_tls_configuration_response.go +++ b/fastly/model_tls_configuration_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_configuration_response_attributes.go b/fastly/model_tls_configuration_response_attributes.go index 9bc9251..4df5304 100644 --- a/fastly/model_tls_configuration_response_attributes.go +++ b/fastly/model_tls_configuration_response_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_configuration_response_attributes_all_of.go b/fastly/model_tls_configuration_response_attributes_all_of.go index 50fb362..1b36c10 100644 --- a/fastly/model_tls_configuration_response_attributes_all_of.go +++ b/fastly/model_tls_configuration_response_attributes_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_configuration_response_data.go b/fastly/model_tls_configuration_response_data.go index 4f8373b..2850bbf 100644 --- a/fastly/model_tls_configuration_response_data.go +++ b/fastly/model_tls_configuration_response_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_configuration_response_data_all_of.go b/fastly/model_tls_configuration_response_data_all_of.go index 160b7fb..af3af55 100644 --- a/fastly/model_tls_configuration_response_data_all_of.go +++ b/fastly/model_tls_configuration_response_data_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_configurations_response.go b/fastly/model_tls_configurations_response.go index d59a1aa..64be821 100644 --- a/fastly/model_tls_configurations_response.go +++ b/fastly/model_tls_configurations_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_configurations_response_all_of.go b/fastly/model_tls_configurations_response_all_of.go index 85f91a2..b255000 100644 --- a/fastly/model_tls_configurations_response_all_of.go +++ b/fastly/model_tls_configurations_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_csr.go b/fastly/model_tls_csr.go index 64060df..9dba139 100644 --- a/fastly/model_tls_csr.go +++ b/fastly/model_tls_csr.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_csr_data.go b/fastly/model_tls_csr_data.go index a4d6599..02ff082 100644 --- a/fastly/model_tls_csr_data.go +++ b/fastly/model_tls_csr_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_csr_data_attributes.go b/fastly/model_tls_csr_data_attributes.go index 025d5cd..528ab31 100644 --- a/fastly/model_tls_csr_data_attributes.go +++ b/fastly/model_tls_csr_data_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_csr_error_response.go b/fastly/model_tls_csr_error_response.go index b6dc69f..5a4aad5 100644 --- a/fastly/model_tls_csr_error_response.go +++ b/fastly/model_tls_csr_error_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_csr_response.go b/fastly/model_tls_csr_response.go index b27e86b..fe14d5c 100644 --- a/fastly/model_tls_csr_response.go +++ b/fastly/model_tls_csr_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_csr_response_attributes.go b/fastly/model_tls_csr_response_attributes.go index 18b46a9..afd3259 100644 --- a/fastly/model_tls_csr_response_attributes.go +++ b/fastly/model_tls_csr_response_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_csr_response_data.go b/fastly/model_tls_csr_response_data.go index 78ccd4b..e5a2ed2 100644 --- a/fastly/model_tls_csr_response_data.go +++ b/fastly/model_tls_csr_response_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_dns_record.go b/fastly/model_tls_dns_record.go index 6af49dc..8e77b9c 100644 --- a/fastly/model_tls_dns_record.go +++ b/fastly/model_tls_dns_record.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_domain_data.go b/fastly/model_tls_domain_data.go index 163a55c..043bc55 100644 --- a/fastly/model_tls_domain_data.go +++ b/fastly/model_tls_domain_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_domains_response.go b/fastly/model_tls_domains_response.go index 2607391..0e1964d 100644 --- a/fastly/model_tls_domains_response.go +++ b/fastly/model_tls_domains_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_domains_response_all_of.go b/fastly/model_tls_domains_response_all_of.go index 8f855fc..9f6c3e2 100644 --- a/fastly/model_tls_domains_response_all_of.go +++ b/fastly/model_tls_domains_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_private_key.go b/fastly/model_tls_private_key.go index affcd03..31a8351 100644 --- a/fastly/model_tls_private_key.go +++ b/fastly/model_tls_private_key.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_private_key_data.go b/fastly/model_tls_private_key_data.go index 8af4a8b..29509a0 100644 --- a/fastly/model_tls_private_key_data.go +++ b/fastly/model_tls_private_key_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_private_key_data_attributes.go b/fastly/model_tls_private_key_data_attributes.go index 66ae4e3..2bda719 100644 --- a/fastly/model_tls_private_key_data_attributes.go +++ b/fastly/model_tls_private_key_data_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_private_key_response.go b/fastly/model_tls_private_key_response.go index 7c5fc89..106899a 100644 --- a/fastly/model_tls_private_key_response.go +++ b/fastly/model_tls_private_key_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_private_key_response_attributes.go b/fastly/model_tls_private_key_response_attributes.go index ae63e80..870109f 100644 --- a/fastly/model_tls_private_key_response_attributes.go +++ b/fastly/model_tls_private_key_response_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_private_key_response_attributes_all_of.go b/fastly/model_tls_private_key_response_attributes_all_of.go index 55ca93f..51ff123 100644 --- a/fastly/model_tls_private_key_response_attributes_all_of.go +++ b/fastly/model_tls_private_key_response_attributes_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_private_key_response_data.go b/fastly/model_tls_private_key_response_data.go index 31ce5bf..5224702 100644 --- a/fastly/model_tls_private_key_response_data.go +++ b/fastly/model_tls_private_key_response_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_private_keys_response.go b/fastly/model_tls_private_keys_response.go index d22c314..145afb5 100644 --- a/fastly/model_tls_private_keys_response.go +++ b/fastly/model_tls_private_keys_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_private_keys_response_all_of.go b/fastly/model_tls_private_keys_response_all_of.go index 351c911..aa66209 100644 --- a/fastly/model_tls_private_keys_response_all_of.go +++ b/fastly/model_tls_private_keys_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_subscription.go b/fastly/model_tls_subscription.go index f5dc397..fa7aa86 100644 --- a/fastly/model_tls_subscription.go +++ b/fastly/model_tls_subscription.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_subscription_data.go b/fastly/model_tls_subscription_data.go index 1be11c5..9230920 100644 --- a/fastly/model_tls_subscription_data.go +++ b/fastly/model_tls_subscription_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_subscription_data_attributes.go b/fastly/model_tls_subscription_data_attributes.go index 228f7af..9bd0a65 100644 --- a/fastly/model_tls_subscription_data_attributes.go +++ b/fastly/model_tls_subscription_data_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com @@ -19,7 +19,7 @@ import ( // TLSSubscriptionDataAttributes struct for TLSSubscriptionDataAttributes type TLSSubscriptionDataAttributes struct { - // The entity that issues and certifies the TLS certificates for your subscription. + // The entity that issues and certifies the TLS certificates for your subscription, either `certainly`, `lets-encrypt`, or `globalsign`. To migrate the subscription from one certificate authority to another, such as to migrate from 'lets-encrypt' to 'certainly', pass `certificate_authority` to the PATCH endpoint. To migrate from 'globalsign' to 'certainly', contact Fastly Support. CertificateAuthority *string `json:"certificate_authority,omitempty"` AdditionalProperties map[string]any } diff --git a/fastly/model_tls_subscription_response.go b/fastly/model_tls_subscription_response.go index 1dbeb32..6820c1c 100644 --- a/fastly/model_tls_subscription_response.go +++ b/fastly/model_tls_subscription_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_subscription_response_attributes.go b/fastly/model_tls_subscription_response_attributes.go index 66e611f..4151d8b 100644 --- a/fastly/model_tls_subscription_response_attributes.go +++ b/fastly/model_tls_subscription_response_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_subscription_response_attributes_all_of.go b/fastly/model_tls_subscription_response_attributes_all_of.go index fb94204..119050e 100644 --- a/fastly/model_tls_subscription_response_attributes_all_of.go +++ b/fastly/model_tls_subscription_response_attributes_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_subscription_response_data.go b/fastly/model_tls_subscription_response_data.go index 718bf69..57c621a 100644 --- a/fastly/model_tls_subscription_response_data.go +++ b/fastly/model_tls_subscription_response_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_subscriptions_response.go b/fastly/model_tls_subscriptions_response.go index 08f7fe0..77c5ff9 100644 --- a/fastly/model_tls_subscriptions_response.go +++ b/fastly/model_tls_subscriptions_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tls_subscriptions_response_all_of.go b/fastly/model_tls_subscriptions_response_all_of.go index 9fc494e..1395349 100644 --- a/fastly/model_tls_subscriptions_response_all_of.go +++ b/fastly/model_tls_subscriptions_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_token.go b/fastly/model_token.go index 0da219d..365ba1a 100644 --- a/fastly/model_token.go +++ b/fastly/model_token.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_token_created_response.go b/fastly/model_token_created_response.go index 935cf37..2c4c312 100644 --- a/fastly/model_token_created_response.go +++ b/fastly/model_token_created_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_token_created_response_all_of.go b/fastly/model_token_created_response_all_of.go index 30e0f24..97f3823 100644 --- a/fastly/model_token_created_response_all_of.go +++ b/fastly/model_token_created_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_token_response.go b/fastly/model_token_response.go index a19cc12..2e114fa 100644 --- a/fastly/model_token_response.go +++ b/fastly/model_token_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_token_response_all_of.go b/fastly/model_token_response_all_of.go index 96fabcf..e6c6faa 100644 --- a/fastly/model_token_response_all_of.go +++ b/fastly/model_token_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_tokens_additional_props.go b/fastly/model_tokens_additional_props.go index 836fd94..a83f78b 100644 --- a/fastly/model_tokens_additional_props.go +++ b/fastly/model_tokens_additional_props.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_type_billing_address.go b/fastly/model_type_billing_address.go index 0b569ad..d9b6e3e 100644 --- a/fastly/model_type_billing_address.go +++ b/fastly/model_type_billing_address.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_type_contact.go b/fastly/model_type_contact.go index 892a59a..c838f6e 100644 --- a/fastly/model_type_contact.go +++ b/fastly/model_type_contact.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_type_customer.go b/fastly/model_type_customer.go index 6f1c1d0..c784368 100644 --- a/fastly/model_type_customer.go +++ b/fastly/model_type_customer.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_type_event.go b/fastly/model_type_event.go index 50338fe..51800a1 100644 --- a/fastly/model_type_event.go +++ b/fastly/model_type_event.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_type_invitation.go b/fastly/model_type_invitation.go index 25658c4..8257aed 100644 --- a/fastly/model_type_invitation.go +++ b/fastly/model_type_invitation.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_type_mutual_authentication.go b/fastly/model_type_mutual_authentication.go index 3cac85b..2f2be2d 100644 --- a/fastly/model_type_mutual_authentication.go +++ b/fastly/model_type_mutual_authentication.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_type_resource.go b/fastly/model_type_resource.go index 555bc4e..8d87f38 100644 --- a/fastly/model_type_resource.go +++ b/fastly/model_type_resource.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com @@ -23,16 +23,16 @@ type TypeResource string // List of resourceTyperesource const ( - TYPERESOURCE_OBJECT_STORE TypeResource = "object-store" + TYPERESOURCE_KV_STORE TypeResource = "kv-store" TYPERESOURCE_SECRET_STORE TypeResource = "secret-store" - TYPERESOURCE_CONFIG_STORE TypeResource = "config-store" + TYPERESOURCE_CONFIG TypeResource = "config" ) // AllowedTypeResourceEnumValues All allowed values of TypeResource enum var AllowedTypeResourceEnumValues = []TypeResource{ - "object-store", + "kv-store", "secret-store", - "config-store", + "config", } // UnmarshalJSON implements the Unmarshaler interface. diff --git a/fastly/model_type_service.go b/fastly/model_type_service.go index 2a3508d..d044e24 100644 --- a/fastly/model_type_service.go +++ b/fastly/model_type_service.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_type_service_authorization.go b/fastly/model_type_service_authorization.go index 2ad561b..03ecb80 100644 --- a/fastly/model_type_service_authorization.go +++ b/fastly/model_type_service_authorization.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_type_service_invitation.go b/fastly/model_type_service_invitation.go index 4a1789c..94a7de4 100644 --- a/fastly/model_type_service_invitation.go +++ b/fastly/model_type_service_invitation.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_type_star.go b/fastly/model_type_star.go index 938295d..25fe074 100644 --- a/fastly/model_type_star.go +++ b/fastly/model_type_star.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_type_tls_activation.go b/fastly/model_type_tls_activation.go index 99282a1..a76146e 100644 --- a/fastly/model_type_tls_activation.go +++ b/fastly/model_type_tls_activation.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_type_tls_bulk_certificate.go b/fastly/model_type_tls_bulk_certificate.go index 63ed82c..f088a1f 100644 --- a/fastly/model_type_tls_bulk_certificate.go +++ b/fastly/model_type_tls_bulk_certificate.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_type_tls_certificate.go b/fastly/model_type_tls_certificate.go index 0a24eb7..677937d 100644 --- a/fastly/model_type_tls_certificate.go +++ b/fastly/model_type_tls_certificate.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_type_tls_configuration.go b/fastly/model_type_tls_configuration.go index d57a7a2..b885418 100644 --- a/fastly/model_type_tls_configuration.go +++ b/fastly/model_type_tls_configuration.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_type_tls_csr.go b/fastly/model_type_tls_csr.go index 821811d..5a1ff58 100644 --- a/fastly/model_type_tls_csr.go +++ b/fastly/model_type_tls_csr.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_type_tls_dns_record.go b/fastly/model_type_tls_dns_record.go index 59d9bba..dd6b49f 100644 --- a/fastly/model_type_tls_dns_record.go +++ b/fastly/model_type_tls_dns_record.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_type_tls_domain.go b/fastly/model_type_tls_domain.go index d6b6673..808494e 100644 --- a/fastly/model_type_tls_domain.go +++ b/fastly/model_type_tls_domain.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_type_tls_private_key.go b/fastly/model_type_tls_private_key.go index 5b5d18f..bf53af3 100644 --- a/fastly/model_type_tls_private_key.go +++ b/fastly/model_type_tls_private_key.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_type_tls_subscription.go b/fastly/model_type_tls_subscription.go index d293f68..eba7af7 100644 --- a/fastly/model_type_tls_subscription.go +++ b/fastly/model_type_tls_subscription.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_type_user.go b/fastly/model_type_user.go index f67e0cc..7f23c81 100644 --- a/fastly/model_type_user.go +++ b/fastly/model_type_user.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_type_waf_active_rule.go b/fastly/model_type_waf_active_rule.go index 11b0f71..9cfb84b 100644 --- a/fastly/model_type_waf_active_rule.go +++ b/fastly/model_type_waf_active_rule.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_type_waf_exclusion.go b/fastly/model_type_waf_exclusion.go index a7a92ed..5728e46 100644 --- a/fastly/model_type_waf_exclusion.go +++ b/fastly/model_type_waf_exclusion.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_type_waf_firewall.go b/fastly/model_type_waf_firewall.go index 5971430..6c6b76d 100644 --- a/fastly/model_type_waf_firewall.go +++ b/fastly/model_type_waf_firewall.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_type_waf_firewall_version.go b/fastly/model_type_waf_firewall_version.go index 2ef7c7b..014e691 100644 --- a/fastly/model_type_waf_firewall_version.go +++ b/fastly/model_type_waf_firewall_version.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_type_waf_rule.go b/fastly/model_type_waf_rule.go index 3b2e9ae..48ea759 100644 --- a/fastly/model_type_waf_rule.go +++ b/fastly/model_type_waf_rule.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_type_waf_rule_revision.go b/fastly/model_type_waf_rule_revision.go index aee0fc2..5184e8e 100644 --- a/fastly/model_type_waf_rule_revision.go +++ b/fastly/model_type_waf_rule_revision.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_type_waf_tag.go b/fastly/model_type_waf_tag.go index 67274b4..cdef325 100644 --- a/fastly/model_type_waf_tag.go +++ b/fastly/model_type_waf_tag.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_update_billing_address_request.go b/fastly/model_update_billing_address_request.go index b0a5cad..6250ee4 100644 --- a/fastly/model_update_billing_address_request.go +++ b/fastly/model_update_billing_address_request.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_update_billing_address_request_data.go b/fastly/model_update_billing_address_request_data.go index 9abec3a..77aa924 100644 --- a/fastly/model_update_billing_address_request_data.go +++ b/fastly/model_update_billing_address_request_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_user.go b/fastly/model_user.go index 7c2f450..c4a87d5 100644 --- a/fastly/model_user.go +++ b/fastly/model_user.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_user_response.go b/fastly/model_user_response.go index 1409a87..35003e8 100644 --- a/fastly/model_user_response.go +++ b/fastly/model_user_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_user_response_read_only.go b/fastly/model_user_response_read_only.go index cd24f48..4abc703 100644 --- a/fastly/model_user_response_read_only.go +++ b/fastly/model_user_response_read_only.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_validator_result.go b/fastly/model_validator_result.go index 44697da..84031e6 100644 --- a/fastly/model_validator_result.go +++ b/fastly/model_validator_result.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_validator_result_data.go b/fastly/model_validator_result_data.go index a7879ca..0d452a7 100644 --- a/fastly/model_validator_result_data.go +++ b/fastly/model_validator_result_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_validator_result_data_attributes.go b/fastly/model_validator_result_data_attributes.go index 776dbee..0c53460 100644 --- a/fastly/model_validator_result_data_attributes.go +++ b/fastly/model_validator_result_data_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_validator_result_data_attributes_messages.go b/fastly/model_validator_result_data_attributes_messages.go index 8251a6a..ab5f5c8 100644 --- a/fastly/model_validator_result_data_attributes_messages.go +++ b/fastly/model_validator_result_data_attributes_messages.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_values.go b/fastly/model_values.go index a6d06c2..92ef90b 100644 --- a/fastly/model_values.go +++ b/fastly/model_values.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_values_ddos.go b/fastly/model_values_ddos.go index 6bfda82..c891913 100644 --- a/fastly/model_values_ddos.go +++ b/fastly/model_values_ddos.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_vcl.go b/fastly/model_vcl.go index 147dacf..890eadf 100644 --- a/fastly/model_vcl.go +++ b/fastly/model_vcl.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_vcl_diff.go b/fastly/model_vcl_diff.go index f6ab0fe..c9bcc01 100644 --- a/fastly/model_vcl_diff.go +++ b/fastly/model_vcl_diff.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_vcl_response.go b/fastly/model_vcl_response.go index 890ad4b..1c47427 100644 --- a/fastly/model_vcl_response.go +++ b/fastly/model_vcl_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_vcl_syntax_highlighting_response.go b/fastly/model_vcl_syntax_highlighting_response.go index a22a681..602eeff 100644 --- a/fastly/model_vcl_syntax_highlighting_response.go +++ b/fastly/model_vcl_syntax_highlighting_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_version.go b/fastly/model_version.go index 87df821..708802f 100644 --- a/fastly/model_version.go +++ b/fastly/model_version.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_version_create_response.go b/fastly/model_version_create_response.go index 24c1ddc..5211cc5 100644 --- a/fastly/model_version_create_response.go +++ b/fastly/model_version_create_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_version_detail.go b/fastly/model_version_detail.go index fe4337b..99ec407 100644 --- a/fastly/model_version_detail.go +++ b/fastly/model_version_detail.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_version_detail_settings.go b/fastly/model_version_detail_settings.go index 5f1bca4..fdd5e7a 100644 --- a/fastly/model_version_detail_settings.go +++ b/fastly/model_version_detail_settings.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_version_response.go b/fastly/model_version_response.go index 83c4f90..b19d512 100644 --- a/fastly/model_version_response.go +++ b/fastly/model_version_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_version_response_all_of.go b/fastly/model_version_response_all_of.go index 900fbca..0777af7 100644 --- a/fastly/model_version_response_all_of.go +++ b/fastly/model_version_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_active_rule.go b/fastly/model_waf_active_rule.go index ee83c25..5fe2043 100644 --- a/fastly/model_waf_active_rule.go +++ b/fastly/model_waf_active_rule.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_active_rule_creation_response.go b/fastly/model_waf_active_rule_creation_response.go index daaeb1c..83f400d 100644 --- a/fastly/model_waf_active_rule_creation_response.go +++ b/fastly/model_waf_active_rule_creation_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_active_rule_data.go b/fastly/model_waf_active_rule_data.go index 13fbb8e..4f97aee 100644 --- a/fastly/model_waf_active_rule_data.go +++ b/fastly/model_waf_active_rule_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_active_rule_data_attributes.go b/fastly/model_waf_active_rule_data_attributes.go index 6b75082..a1c3c19 100644 --- a/fastly/model_waf_active_rule_data_attributes.go +++ b/fastly/model_waf_active_rule_data_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_active_rule_response.go b/fastly/model_waf_active_rule_response.go index 33e1672..7e7ebd6 100644 --- a/fastly/model_waf_active_rule_response.go +++ b/fastly/model_waf_active_rule_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_active_rule_response_data.go b/fastly/model_waf_active_rule_response_data.go index 17293f0..1120a3a 100644 --- a/fastly/model_waf_active_rule_response_data.go +++ b/fastly/model_waf_active_rule_response_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_active_rule_response_data_all_of.go b/fastly/model_waf_active_rule_response_data_all_of.go index 2ad8708..f78ce42 100644 --- a/fastly/model_waf_active_rule_response_data_all_of.go +++ b/fastly/model_waf_active_rule_response_data_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_active_rule_response_data_attributes.go b/fastly/model_waf_active_rule_response_data_attributes.go index 50a8991..87cad56 100644 --- a/fastly/model_waf_active_rule_response_data_attributes.go +++ b/fastly/model_waf_active_rule_response_data_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_active_rule_response_data_attributes_all_of.go b/fastly/model_waf_active_rule_response_data_attributes_all_of.go index 63ac9b7..d1a960f 100644 --- a/fastly/model_waf_active_rule_response_data_attributes_all_of.go +++ b/fastly/model_waf_active_rule_response_data_attributes_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_active_rule_response_data_relationships.go b/fastly/model_waf_active_rule_response_data_relationships.go index 13cd741..cbeb0b3 100644 --- a/fastly/model_waf_active_rule_response_data_relationships.go +++ b/fastly/model_waf_active_rule_response_data_relationships.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_active_rules_response.go b/fastly/model_waf_active_rules_response.go index 5142113..938c799 100644 --- a/fastly/model_waf_active_rules_response.go +++ b/fastly/model_waf_active_rules_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_active_rules_response_all_of.go b/fastly/model_waf_active_rules_response_all_of.go index f0bb031..40df2e6 100644 --- a/fastly/model_waf_active_rules_response_all_of.go +++ b/fastly/model_waf_active_rules_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_exclusion.go b/fastly/model_waf_exclusion.go index 1c593bf..4bf096b 100644 --- a/fastly/model_waf_exclusion.go +++ b/fastly/model_waf_exclusion.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_exclusion_data.go b/fastly/model_waf_exclusion_data.go index 2007a94..16684cc 100644 --- a/fastly/model_waf_exclusion_data.go +++ b/fastly/model_waf_exclusion_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_exclusion_data_attributes.go b/fastly/model_waf_exclusion_data_attributes.go index a3a7136..022e746 100644 --- a/fastly/model_waf_exclusion_data_attributes.go +++ b/fastly/model_waf_exclusion_data_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_exclusion_response.go b/fastly/model_waf_exclusion_response.go index f281f07..434e634 100644 --- a/fastly/model_waf_exclusion_response.go +++ b/fastly/model_waf_exclusion_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_exclusion_response_data.go b/fastly/model_waf_exclusion_response_data.go index 3b41f33..94fc24e 100644 --- a/fastly/model_waf_exclusion_response_data.go +++ b/fastly/model_waf_exclusion_response_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_exclusion_response_data_all_of.go b/fastly/model_waf_exclusion_response_data_all_of.go index e1eced2..4c19356 100644 --- a/fastly/model_waf_exclusion_response_data_all_of.go +++ b/fastly/model_waf_exclusion_response_data_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_exclusion_response_data_attributes.go b/fastly/model_waf_exclusion_response_data_attributes.go index 2574844..8397cd1 100644 --- a/fastly/model_waf_exclusion_response_data_attributes.go +++ b/fastly/model_waf_exclusion_response_data_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_exclusion_response_data_attributes_all_of.go b/fastly/model_waf_exclusion_response_data_attributes_all_of.go index 546d00d..6a3a3b4 100644 --- a/fastly/model_waf_exclusion_response_data_attributes_all_of.go +++ b/fastly/model_waf_exclusion_response_data_attributes_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_exclusion_response_data_relationships.go b/fastly/model_waf_exclusion_response_data_relationships.go index 01c15d3..0882b08 100644 --- a/fastly/model_waf_exclusion_response_data_relationships.go +++ b/fastly/model_waf_exclusion_response_data_relationships.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_exclusions_response.go b/fastly/model_waf_exclusions_response.go index 9c1df63..e8c1210 100644 --- a/fastly/model_waf_exclusions_response.go +++ b/fastly/model_waf_exclusions_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_exclusions_response_all_of.go b/fastly/model_waf_exclusions_response_all_of.go index c8d7216..6c663ca 100644 --- a/fastly/model_waf_exclusions_response_all_of.go +++ b/fastly/model_waf_exclusions_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_firewall.go b/fastly/model_waf_firewall.go index b5361e7..d04bb95 100644 --- a/fastly/model_waf_firewall.go +++ b/fastly/model_waf_firewall.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_firewall_data.go b/fastly/model_waf_firewall_data.go index e6c96c7..f436ad9 100644 --- a/fastly/model_waf_firewall_data.go +++ b/fastly/model_waf_firewall_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_firewall_data_attributes.go b/fastly/model_waf_firewall_data_attributes.go index cf6fa7b..31b4491 100644 --- a/fastly/model_waf_firewall_data_attributes.go +++ b/fastly/model_waf_firewall_data_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_firewall_response.go b/fastly/model_waf_firewall_response.go index a4b2108..c37b102 100644 --- a/fastly/model_waf_firewall_response.go +++ b/fastly/model_waf_firewall_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_firewall_response_data.go b/fastly/model_waf_firewall_response_data.go index bdc1db5..dba3759 100644 --- a/fastly/model_waf_firewall_response_data.go +++ b/fastly/model_waf_firewall_response_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_firewall_response_data_all_of.go b/fastly/model_waf_firewall_response_data_all_of.go index 7e25943..480d229 100644 --- a/fastly/model_waf_firewall_response_data_all_of.go +++ b/fastly/model_waf_firewall_response_data_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_firewall_response_data_attributes.go b/fastly/model_waf_firewall_response_data_attributes.go index 63f15fe..5945077 100644 --- a/fastly/model_waf_firewall_response_data_attributes.go +++ b/fastly/model_waf_firewall_response_data_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_firewall_response_data_attributes_all_of.go b/fastly/model_waf_firewall_response_data_attributes_all_of.go index bec9423..ab3236e 100644 --- a/fastly/model_waf_firewall_response_data_attributes_all_of.go +++ b/fastly/model_waf_firewall_response_data_attributes_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_firewall_version.go b/fastly/model_waf_firewall_version.go index 03a69e9..a1cf081 100644 --- a/fastly/model_waf_firewall_version.go +++ b/fastly/model_waf_firewall_version.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_firewall_version_data.go b/fastly/model_waf_firewall_version_data.go index aba44a4..19712a8 100644 --- a/fastly/model_waf_firewall_version_data.go +++ b/fastly/model_waf_firewall_version_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_firewall_version_data_attributes.go b/fastly/model_waf_firewall_version_data_attributes.go index 722d8e0..72bd1e6 100644 --- a/fastly/model_waf_firewall_version_data_attributes.go +++ b/fastly/model_waf_firewall_version_data_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_firewall_version_response.go b/fastly/model_waf_firewall_version_response.go index 6e2238d..d5e57f9 100644 --- a/fastly/model_waf_firewall_version_response.go +++ b/fastly/model_waf_firewall_version_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_firewall_version_response_data.go b/fastly/model_waf_firewall_version_response_data.go index c7b9843..6738ab3 100644 --- a/fastly/model_waf_firewall_version_response_data.go +++ b/fastly/model_waf_firewall_version_response_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_firewall_version_response_data_all_of.go b/fastly/model_waf_firewall_version_response_data_all_of.go index 3bc9ebe..2f2656d 100644 --- a/fastly/model_waf_firewall_version_response_data_all_of.go +++ b/fastly/model_waf_firewall_version_response_data_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_firewall_version_response_data_attributes.go b/fastly/model_waf_firewall_version_response_data_attributes.go index ae8a345..a782d8a 100644 --- a/fastly/model_waf_firewall_version_response_data_attributes.go +++ b/fastly/model_waf_firewall_version_response_data_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_firewall_version_response_data_attributes_all_of.go b/fastly/model_waf_firewall_version_response_data_attributes_all_of.go index 08b0a5d..0f3edf6 100644 --- a/fastly/model_waf_firewall_version_response_data_attributes_all_of.go +++ b/fastly/model_waf_firewall_version_response_data_attributes_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_firewall_versions_response.go b/fastly/model_waf_firewall_versions_response.go index f17f0b6..196e9a4 100644 --- a/fastly/model_waf_firewall_versions_response.go +++ b/fastly/model_waf_firewall_versions_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_firewall_versions_response_all_of.go b/fastly/model_waf_firewall_versions_response_all_of.go index 0e48792..86dcb88 100644 --- a/fastly/model_waf_firewall_versions_response_all_of.go +++ b/fastly/model_waf_firewall_versions_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_firewalls_response.go b/fastly/model_waf_firewalls_response.go index 4032e0a..cd6e7e5 100644 --- a/fastly/model_waf_firewalls_response.go +++ b/fastly/model_waf_firewalls_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_firewalls_response_all_of.go b/fastly/model_waf_firewalls_response_all_of.go index 9f2f28d..48cd030 100644 --- a/fastly/model_waf_firewalls_response_all_of.go +++ b/fastly/model_waf_firewalls_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_rule.go b/fastly/model_waf_rule.go index 964e05e..5ba976a 100644 --- a/fastly/model_waf_rule.go +++ b/fastly/model_waf_rule.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_rule_attributes.go b/fastly/model_waf_rule_attributes.go index 507e722..f1a2e18 100644 --- a/fastly/model_waf_rule_attributes.go +++ b/fastly/model_waf_rule_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_rule_response.go b/fastly/model_waf_rule_response.go index bc593df..801ab19 100644 --- a/fastly/model_waf_rule_response.go +++ b/fastly/model_waf_rule_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_rule_response_data.go b/fastly/model_waf_rule_response_data.go index 4d02f79..e4783ad 100644 --- a/fastly/model_waf_rule_response_data.go +++ b/fastly/model_waf_rule_response_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_rule_response_data_all_of.go b/fastly/model_waf_rule_response_data_all_of.go index 4c354c8..20758fb 100644 --- a/fastly/model_waf_rule_response_data_all_of.go +++ b/fastly/model_waf_rule_response_data_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_rule_revision.go b/fastly/model_waf_rule_revision.go index 3706e51..d308c71 100644 --- a/fastly/model_waf_rule_revision.go +++ b/fastly/model_waf_rule_revision.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_rule_revision_attributes.go b/fastly/model_waf_rule_revision_attributes.go index 0e2b509..d652b65 100644 --- a/fastly/model_waf_rule_revision_attributes.go +++ b/fastly/model_waf_rule_revision_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_rule_revision_or_latest.go b/fastly/model_waf_rule_revision_or_latest.go index d4e74f7..15a8c9f 100644 --- a/fastly/model_waf_rule_revision_or_latest.go +++ b/fastly/model_waf_rule_revision_or_latest.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_rule_revision_response.go b/fastly/model_waf_rule_revision_response.go index d4d2333..3913b85 100644 --- a/fastly/model_waf_rule_revision_response.go +++ b/fastly/model_waf_rule_revision_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_rule_revision_response_data.go b/fastly/model_waf_rule_revision_response_data.go index 6ecfcc9..262d728 100644 --- a/fastly/model_waf_rule_revision_response_data.go +++ b/fastly/model_waf_rule_revision_response_data.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_rule_revision_response_data_all_of.go b/fastly/model_waf_rule_revision_response_data_all_of.go index fae9504..9a877eb 100644 --- a/fastly/model_waf_rule_revision_response_data_all_of.go +++ b/fastly/model_waf_rule_revision_response_data_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_rule_revisions_response.go b/fastly/model_waf_rule_revisions_response.go index 3c23a9f..f380387 100644 --- a/fastly/model_waf_rule_revisions_response.go +++ b/fastly/model_waf_rule_revisions_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_rule_revisions_response_all_of.go b/fastly/model_waf_rule_revisions_response_all_of.go index c847727..f352de0 100644 --- a/fastly/model_waf_rule_revisions_response_all_of.go +++ b/fastly/model_waf_rule_revisions_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_rules_response.go b/fastly/model_waf_rules_response.go index 714f1b2..82cf57b 100644 --- a/fastly/model_waf_rules_response.go +++ b/fastly/model_waf_rules_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_rules_response_all_of.go b/fastly/model_waf_rules_response_all_of.go index 163a39f..aa5a97e 100644 --- a/fastly/model_waf_rules_response_all_of.go +++ b/fastly/model_waf_rules_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_tag.go b/fastly/model_waf_tag.go index 41dd8be..63a33a8 100644 --- a/fastly/model_waf_tag.go +++ b/fastly/model_waf_tag.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_tag_attributes.go b/fastly/model_waf_tag_attributes.go index 3fc4a89..41d619b 100644 --- a/fastly/model_waf_tag_attributes.go +++ b/fastly/model_waf_tag_attributes.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_tags_response.go b/fastly/model_waf_tags_response.go index 691531e..9ca0239 100644 --- a/fastly/model_waf_tags_response.go +++ b/fastly/model_waf_tags_response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_tags_response_all_of.go b/fastly/model_waf_tags_response_all_of.go index be51ef2..644af01 100644 --- a/fastly/model_waf_tags_response_all_of.go +++ b/fastly/model_waf_tags_response_all_of.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_waf_tags_response_data_item.go b/fastly/model_waf_tags_response_data_item.go index 1e4068b..be77112 100644 --- a/fastly/model_waf_tags_response_data_item.go +++ b/fastly/model_waf_tags_response_data_item.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/model_ws_message_format.go b/fastly/model_ws_message_format.go index 66e8138..def783a 100644 --- a/fastly/model_ws_message_format.go +++ b/fastly/model_ws_message_format.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/response.go b/fastly/response.go index 6e5621c..81a56d7 100644 --- a/fastly/response.go +++ b/fastly/response.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/fastly/utils.go b/fastly/utils.go index 4fd01cb..f86fee0 100644 --- a/fastly/utils.go +++ b/fastly/utils.go @@ -4,7 +4,7 @@ package fastly /* Fastly API -Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://developer.fastly.com/reference/api/) +Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/) API version: 1.0.0 Contact: oss@fastly.com diff --git a/sig.json b/sig.json index b5bd944..a2ee922 100644 --- a/sig.json +++ b/sig.json @@ -1 +1 @@ -{"G": "78194d35", "D": "aed6fda1"} +{"G": "12e42c04", "D": "dd010b17"}