fastly 7.2.1 → 7.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/docs/ConfigStoreApi.md +8 -3
- data/lib/fastly/api/config_store_api.rb +3 -0
- data/lib/fastly/version.rb +1 -1
- data/sig.json +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e09b9b4f5b431772590037d0d9a5d869ecda1fee88404dbd7d33ba2c9e6f35e8
|
4
|
+
data.tar.gz: e0244e1534d8285374e46dab7f6f47989e182966ad3484421316a2054cf491e4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c6a4bf423f7c2c09174ccb29336f0b61e8c535758233d779ba0a219cc8f6e3f460cdd7dc363125dc0a5e4f82b827ef0fc2e751ea571a9a32c9101e7ed5282d39
|
7
|
+
data.tar.gz: 434e367457c93601888a8c4c2b9a065efbefc60bfd01776c959b89a328e56eb0df0632d18e1e6f8e327844211821efaec1c360115a322a021f409d45dffe4014
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
data/docs/ConfigStoreApi.md
CHANGED
@@ -207,7 +207,7 @@ end
|
|
207
207
|
## `list_config_stores()`
|
208
208
|
|
209
209
|
```ruby
|
210
|
-
list_config_stores: <Array<ConfigStoreResponse>> # List config stores
|
210
|
+
list_config_stores(opts): <Array<ConfigStoreResponse>> # List config stores
|
211
211
|
```
|
212
212
|
|
213
213
|
List config stores.
|
@@ -216,10 +216,13 @@ List config stores.
|
|
216
216
|
|
217
217
|
```ruby
|
218
218
|
api_instance = Fastly::ConfigStoreApi.new
|
219
|
+
opts = {
|
220
|
+
name: 'name_example', # String | Returns a one-element array containing the details for the named config store.
|
221
|
+
}
|
219
222
|
|
220
223
|
begin
|
221
224
|
# List config stores
|
222
|
-
result = api_instance.list_config_stores
|
225
|
+
result = api_instance.list_config_stores(opts)
|
223
226
|
p result
|
224
227
|
rescue Fastly::ApiError => e
|
225
228
|
puts "Error when calling ConfigStoreApi->list_config_stores: #{e}"
|
@@ -228,7 +231,9 @@ end
|
|
228
231
|
|
229
232
|
### Options
|
230
233
|
|
231
|
-
|
234
|
+
| Name | Type | Description | Notes |
|
235
|
+
| ---- | ---- | ----------- | ----- |
|
236
|
+
| **name** | **String** | Returns a one-element array containing the details for the named config store. | [optional] |
|
232
237
|
|
233
238
|
### Return type
|
234
239
|
|
@@ -335,6 +335,7 @@ module Fastly
|
|
335
335
|
|
336
336
|
# List config stores
|
337
337
|
# List config stores.
|
338
|
+
# @option opts [String] :name Returns a one-element array containing the details for the named config store.
|
338
339
|
# @return [Array<ConfigStoreResponse>]
|
339
340
|
def list_config_stores(opts = {})
|
340
341
|
data, _status_code, _headers = list_config_stores_with_http_info(opts)
|
@@ -343,6 +344,7 @@ module Fastly
|
|
343
344
|
|
344
345
|
# List config stores
|
345
346
|
# List config stores.
|
347
|
+
# @option opts [String] :name Returns a one-element array containing the details for the named config store.
|
346
348
|
# @return [Array<(Array<ConfigStoreResponse>, Integer, Hash)>] Array<ConfigStoreResponse> data, response status code and response headers
|
347
349
|
def list_config_stores_with_http_info(opts = {})
|
348
350
|
if @api_client.config.debugging
|
@@ -354,6 +356,7 @@ module Fastly
|
|
354
356
|
|
355
357
|
# query parameters
|
356
358
|
query_params = opts[:query_params] || {}
|
359
|
+
query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
|
357
360
|
|
358
361
|
# header parameters
|
359
362
|
header_params = opts[:header_params] || {}
|
data/lib/fastly/version.rb
CHANGED
data/sig.json
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"G": "
|
1
|
+
{"G": "5c91b697", "D": "e1e39f1b"}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastly
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.2.
|
4
|
+
version: 7.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fastly
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-11-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|