docs/ConfigStoreApi.md in fastly-7.2.1 vs docs/ConfigStoreApi.md in fastly-7.2.2

- old
+ new

@@ -205,31 +205,36 @@ [[Back to top]](#) [[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md) ## `list_config_stores()` ```ruby -list_config_stores: <Array<ConfigStoreResponse>> # List config stores +list_config_stores(opts): <Array<ConfigStoreResponse>> # List config stores ``` List config stores. ### Examples ```ruby api_instance = Fastly::ConfigStoreApi.new +opts = { + name: 'name_example', # String | Returns a one-element array containing the details for the named config store. +} begin # List config stores - result = api_instance.list_config_stores + result = api_instance.list_config_stores(opts) p result rescue Fastly::ApiError => e puts "Error when calling ConfigStoreApi->list_config_stores: #{e}" end ``` ### Options -This endpoint does not need any parameter. +| Name | Type | Description | Notes | +| ---- | ---- | ----------- | ----- | +| **name** | **String** | Returns a one-element array containing the details for the named config store. | [optional] | ### Return type [**Array&lt;ConfigStoreResponse&gt;**](ConfigStoreResponse.md)