Sha256: 33444a694c49b7a1809852de5d39f1ee1ff9f43e753c376bf9ee84238b2ccc0c
Contents?: true
Size: 1.67 KB
Versions: 8
Compression:
Stored size: 1.67 KB
Contents
# Fastly::DictionaryInfoApi ```ruby 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**](DictionaryInfoApi.md#get_dictionary_info) | **GET** /service/{service_id}/version/{version_id}/dictionary/{dictionary_id}/info | Get edge dictionary metadata ## `get_dictionary_info()` ```ruby get_dictionary_info(opts): <DictionaryInfoResponse> # Get edge dictionary metadata ``` Retrieve metadata for a single dictionary by ID for a version and service. ### Examples ```ruby 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**](DictionaryInfoResponse.md) [[Back to top]](#) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
Version data entries
8 entries across 8 versions & 1 rubygems