require 'fastly'
api_instance = Fastly::DictionaryInfoApi.new
Note
All URIs are relative to https://api.fastly.com
Method | HTTP request | Description |
---|---|---|
get_dictionary_info | GET /service/{service_id}/version/{version_id}/dictionary/{dictionary_id}/info | Get edge dictionary metadata |
get_dictionary_info(opts): <DictionaryInfoResponse> # Get edge dictionary metadata
Retrieve metadata for a single dictionary by ID for a version and service.
api_instance = Fastly::DictionaryInfoApi.new
opts = {
service_id: 'service_id_example', # String | Alphanumeric string identifying the service.
version_id: 56, # Integer | Integer identifying a service version.
dictionary_id: 'dictionary_id_example', # String | Alphanumeric string identifying a Dictionary.
}
begin
# Get edge dictionary metadata
result = api_instance.get_dictionary_info(opts)
p result
rescue Fastly::ApiError => e
puts "Error when calling DictionaryInfoApi->get_dictionary_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
service_id | String | Alphanumeric string identifying the service. | |
version_id | Integer | Integer identifying a service version. | |
dictionary_id | String | Alphanumeric string identifying a Dictionary. |