Skip to content

Commit

Permalink
Generated v7.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Nov 7, 2023
1 parent 87afcd2 commit 7689ce4
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ A Ruby client library for interacting with most facets of the [Fastly API](https
To install via RubyGems, add the following to your project's `Gemfile`:

```ruby
gem 'fastly', '~> 7.2.1'
gem 'fastly', '~> 7.2.2'
```

Then run `bundle install`.
Expand Down
11 changes: 8 additions & 3 deletions docs/ConfigStoreApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ end
## `list_config_stores()`

```ruby
list_config_stores: <Array<ConfigStoreResponse>> # List config stores
list_config_stores(opts): <Array<ConfigStoreResponse>> # List config stores
```

List config stores.
Expand All @@ -216,10 +216,13 @@ List config stores.

```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}"
Expand All @@ -228,7 +231,9 @@ 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

Expand Down
3 changes: 3 additions & 0 deletions lib/fastly/api/config_store_api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,7 @@ def list_config_store_services_with_http_info(opts = {})

# List config stores
# List config stores.
# @option opts [String] :name Returns a one-element array containing the details for the named config store.
# @return [Array<ConfigStoreResponse>]
def list_config_stores(opts = {})
data, _status_code, _headers = list_config_stores_with_http_info(opts)
Expand All @@ -343,6 +344,7 @@ def list_config_stores(opts = {})

# List config stores
# List config stores.
# @option opts [String] :name Returns a one-element array containing the details for the named config store.
# @return [Array<(Array<ConfigStoreResponse>, Integer, Hash)>] Array<ConfigStoreResponse> data, response status code and response headers
def list_config_stores_with_http_info(opts = {})
if @api_client.config.debugging
Expand All @@ -354,6 +356,7 @@ def list_config_stores_with_http_info(opts = {})

# query parameters
query_params = opts[:query_params] || {}
query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?

# header parameters
header_params = opts[:header_params] || {}
Expand Down
2 changes: 1 addition & 1 deletion lib/fastly/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
=end

module Fastly
VERSION = '7.2.1'
VERSION = '7.2.2'
end
2 changes: 1 addition & 1 deletion sig.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"G": "33163c3c", "D": "2c30aac5"}
{"G": "5c91b697", "D": "e1e39f1b"}

0 comments on commit 7689ce4

Please sign in to comment.