Note
All URIs are relative to https://api.fastly.com
Method | HTTP request | Description |
---|---|---|
CreateGzipConfig | POST /service/{service_id}/version/{version_id}/gzip |
Create a gzip configuration |
DeleteGzipConfig | DELETE /service/{service_id}/version/{version_id}/gzip/{gzip_name} |
Delete a gzip configuration |
GetGzipConfigs | GET /service/{service_id}/version/{version_id}/gzip/{gzip_name} |
Get a gzip configuration |
ListGzipConfigs | GET /service/{service_id}/version/{version_id}/gzip |
List gzip configurations |
UpdateGzipConfig | PUT /service/{service_id}/version/{version_id}/gzip/{gzip_name} |
Update a gzip configuration |
Create a gzip configuration
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.
cacheCondition := "cacheCondition_example" // string | Name of the cache condition controlling when this configuration applies. (optional)
contentTypes := "contentTypes_example" // string | Space-separated list of content types to compress. If you omit this field a default list will be used. (optional)
extensions := "extensions_example" // string | Space-separated list of file extensions to compress. If you omit this field a default list will be used. (optional)
name := "name_example" // string | Name of the gzip configuration. (optional)
cfg := fastly.NewConfiguration()
apiClient := fastly.NewAPIClient(cfg)
ctx := fastly.NewAPIKeyContextFromEnv("FASTLY_API_TOKEN")
resp, r, err := apiClient.GzipAPI.CreateGzipConfig(ctx, serviceID, versionID).CacheCondition(cacheCondition).ContentTypes(contentTypes).Extensions(extensions).Name(name).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `GzipAPI.CreateGzipConfig`: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `CreateGzipConfig`: GzipResponse
fmt.Fprintf(os.Stdout, "Response from `GzipAPI.CreateGzipConfig`: %v\n", resp)
}
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 are passed through a pointer to a apiCreateGzipConfigRequest struct via the builder pattern
Name | Type | Description | Notes |
---|---|---|---|
cacheCondition | string | Name of the cache condition controlling when this configuration applies. | contentTypes |
- Content-Type: application/x-www-form-urlencoded
- Accept: application/json
Back to top | Back to API list | Back to README
Delete a gzip configuration
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.
gzipName := "gzipName_example" // string | Name of the gzip configuration.
cfg := fastly.NewConfiguration()
apiClient := fastly.NewAPIClient(cfg)
ctx := fastly.NewAPIKeyContextFromEnv("FASTLY_API_TOKEN")
resp, r, err := apiClient.GzipAPI.DeleteGzipConfig(ctx, serviceID, versionID, gzipName).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `GzipAPI.DeleteGzipConfig`: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `DeleteGzipConfig`: InlineResponse200
fmt.Fprintf(os.Stdout, "Response from `GzipAPI.DeleteGzipConfig`: %v\n", resp)
}
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. | |
gzipName | string | Name of the gzip configuration. |
Other parameters are passed through a pointer to a apiDeleteGzipConfigRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
- Content-Type: Not defined
- Accept: application/json
Back to top | Back to API list | Back to README
Get a gzip configuration
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.
gzipName := "gzipName_example" // string | Name of the gzip configuration.
cfg := fastly.NewConfiguration()
apiClient := fastly.NewAPIClient(cfg)
ctx := fastly.NewAPIKeyContextFromEnv("FASTLY_API_TOKEN")
resp, r, err := apiClient.GzipAPI.GetGzipConfigs(ctx, serviceID, versionID, gzipName).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `GzipAPI.GetGzipConfigs`: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `GetGzipConfigs`: GzipResponse
fmt.Fprintf(os.Stdout, "Response from `GzipAPI.GetGzipConfigs`: %v\n", resp)
}
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. | |
gzipName | string | Name of the gzip configuration. |
Other parameters are passed through a pointer to a apiGetGzipConfigsRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
- Content-Type: Not defined
- Accept: application/json
Back to top | Back to API list | Back to README
List gzip configurations
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.GzipAPI.ListGzipConfigs(ctx, serviceID, versionID).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `GzipAPI.ListGzipConfigs`: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `ListGzipConfigs`: []GzipResponse
fmt.Fprintf(os.Stdout, "Response from `GzipAPI.ListGzipConfigs`: %v\n", resp)
}
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 are passed through a pointer to a apiListGzipConfigsRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
- Content-Type: Not defined
- Accept: application/json
Back to top | Back to API list | Back to README
Update a gzip configuration
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.
gzipName := "gzipName_example" // string | Name of the gzip configuration.
cacheCondition := "cacheCondition_example" // string | Name of the cache condition controlling when this configuration applies. (optional)
contentTypes := "contentTypes_example" // string | Space-separated list of content types to compress. If you omit this field a default list will be used. (optional)
extensions := "extensions_example" // string | Space-separated list of file extensions to compress. If you omit this field a default list will be used. (optional)
name := "name_example" // string | Name of the gzip configuration. (optional)
cfg := fastly.NewConfiguration()
apiClient := fastly.NewAPIClient(cfg)
ctx := fastly.NewAPIKeyContextFromEnv("FASTLY_API_TOKEN")
resp, r, err := apiClient.GzipAPI.UpdateGzipConfig(ctx, serviceID, versionID, gzipName).CacheCondition(cacheCondition).ContentTypes(contentTypes).Extensions(extensions).Name(name).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `GzipAPI.UpdateGzipConfig`: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `UpdateGzipConfig`: GzipResponse
fmt.Fprintf(os.Stdout, "Response from `GzipAPI.UpdateGzipConfig`: %v\n", resp)
}
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. | |
gzipName | string | Name of the gzip configuration. |
Other parameters are passed through a pointer to a apiUpdateGzipConfigRequest struct via the builder pattern
Name | Type | Description | Notes |
---|---|---|---|
cacheCondition | string | Name of the cache condition controlling when this configuration applies. | contentTypes |
- Content-Type: application/x-www-form-urlencoded
- Accept: application/json