Skip to content

Latest commit

 

History

History
59 lines (42 loc) · 1.67 KB

DictionaryInfoApi.md

File metadata and controls

59 lines (42 loc) · 1.67 KB

Fastly::DictionaryInfoApi

require 'fastly'
api_instance = Fastly::DictionaryInfoApi.new

Methods

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()

get_dictionary_info(opts): <DictionaryInfoResponse> # Get edge dictionary metadata

Retrieve metadata for a single dictionary by ID for a version and service.

Examples

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

Options

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.

Return type

DictionaryInfoResponse

[Back to top] [Back to API list] [Back to README]