Note
All URIs are relative to https://api.fastly.com
Method | HTTP request | Description |
---|---|---|
KvStoreDeleteItem | DELETE /resources/stores/kv/{store_id}/keys/{key} |
Delete an item. |
KvStoreGetItem | GET /resources/stores/kv/{store_id}/keys/{key} |
Get an item. |
KvStoreListItemKeys | GET /resources/stores/kv/{store_id}/keys |
List item keys. |
KvStoreUpsertItem | PUT /resources/stores/kv/{store_id}/keys/{key} |
Insert or update an item. |
Delete an item.
package main
import (
"context"
"fmt"
"os"
"github.com/fastly/fastly-go/fastly"
)
func main() {
storeID := "storeId_example" // string |
key := "key_example" // string |
ifGenerationMatch := int32(56) // int32 | (optional)
force := true // bool | (optional) (default to false)
cfg := fastly.NewConfiguration()
apiClient := fastly.NewAPIClient(cfg)
ctx := fastly.NewAPIKeyContextFromEnv("FASTLY_API_TOKEN")
resp, r, err := apiClient.KvStoreItemAPI.KvStoreDeleteItem(ctx, storeID, key).IfGenerationMatch(ifGenerationMatch).Force(force).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `KvStoreItemAPI.KvStoreDeleteItem`: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
storeID | string | ||
key | string |
Other parameters are passed through a pointer to a apiKvStoreDeleteItemRequest struct via the builder pattern
Name | Type | Description | Notes |
---|---|---|---|
ifGenerationMatch | int32 | force |
(empty response body)
- Content-Type: Not defined
- Accept: Not defined
Back to top | Back to API list | Back to README
Get an item.
package main
import (
"context"
"fmt"
"os"
"github.com/fastly/fastly-go/fastly"
)
func main() {
storeID := "storeId_example" // string |
key := "key_example" // string |
cfg := fastly.NewConfiguration()
apiClient := fastly.NewAPIClient(cfg)
ctx := fastly.NewAPIKeyContextFromEnv("FASTLY_API_TOKEN")
resp, r, err := apiClient.KvStoreItemAPI.KvStoreGetItem(ctx, storeID, key).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `KvStoreItemAPI.KvStoreGetItem`: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `KvStoreGetItem`: string
fmt.Fprintf(os.Stdout, "Response from `KvStoreItemAPI.KvStoreGetItem`: %v\n", resp)
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
storeID | string | ||
key | string |
Other parameters are passed through a pointer to a apiKvStoreGetItemRequest struct via the builder pattern
Name | Type | Description | Notes |
---|
string
- Content-Type: Not defined
- Accept: application/octet-stream
Back to top | Back to API list | Back to README
List item keys.
package main
import (
"context"
"fmt"
"os"
"github.com/fastly/fastly-go/fastly"
)
func main() {
storeID := "storeId_example" // string |
cursor := "cursor_example" // string | (optional)
limit := int32(56) // int32 | (optional) (default to 100)
prefix := "prefix_example" // string | (optional)
consistency := "consistency_example" // string | (optional) (default to "strong")
cfg := fastly.NewConfiguration()
apiClient := fastly.NewAPIClient(cfg)
ctx := fastly.NewAPIKeyContextFromEnv("FASTLY_API_TOKEN")
resp, r, err := apiClient.KvStoreItemAPI.KvStoreListItemKeys(ctx, storeID).Cursor(cursor).Limit(limit).Prefix(prefix).Consistency(consistency).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `KvStoreItemAPI.KvStoreListItemKeys`: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `KvStoreListItemKeys`: InlineResponse2004
fmt.Fprintf(os.Stdout, "Response from `KvStoreItemAPI.KvStoreListItemKeys`: %v\n", resp)
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
storeID | string |
Other parameters are passed through a pointer to a apiKvStoreListItemKeysRequest struct via the builder pattern
Name | Type | Description | Notes |
---|---|---|---|
cursor | string | limit |
- Content-Type: Not defined
- Accept: application/json
Back to top | Back to API list | Back to README
Insert or update an item.
package main
import (
"context"
"fmt"
"os"
"github.com/fastly/fastly-go/fastly"
)
func main() {
storeID := "storeId_example" // string |
key := "key_example" // string |
ifGenerationMatch := int32(56) // int32 | (optional)
timeToLiveSec := int32(56) // int32 | (optional)
metadata := "metadata_example" // string | (optional)
add := true // bool | (optional) (default to false)
append := true // bool | (optional) (default to false)
prepend := true // bool | (optional) (default to false)
backgroundFetch := true // bool | (optional) (default to false)
body := string(BYTE_ARRAY_DATA_HERE) // string | (optional)
cfg := fastly.NewConfiguration()
apiClient := fastly.NewAPIClient(cfg)
ctx := fastly.NewAPIKeyContextFromEnv("FASTLY_API_TOKEN")
resp, r, err := apiClient.KvStoreItemAPI.KvStoreUpsertItem(ctx, storeID, key).IfGenerationMatch(ifGenerationMatch).TimeToLiveSec(timeToLiveSec).Metadata(metadata).Add(add).Append(append).Prepend(prepend).BackgroundFetch(backgroundFetch).Body(body).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `KvStoreItemAPI.KvStoreUpsertItem`: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
}
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. | |
storeID | string | ||
key | string |
Other parameters are passed through a pointer to a apiKvStoreUpsertItemRequest struct via the builder pattern
Name | Type | Description | Notes |
---|---|---|---|
ifGenerationMatch | int32 | timeToLiveSec |
(empty response body)
- Content-Type: application/octet-stream
- Accept: Not defined