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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ce6216ba756030fdb517309afbe95bba04a75a8240d0427e0c0e76b04bf85c43
4
- data.tar.gz: 4e773f9a931e50b6d555af63bc9e3cd80cc0457cc2cfa314c638b688956da026
3
+ metadata.gz: e09b9b4f5b431772590037d0d9a5d869ecda1fee88404dbd7d33ba2c9e6f35e8
4
+ data.tar.gz: e0244e1534d8285374e46dab7f6f47989e182966ad3484421316a2054cf491e4
5
5
  SHA512:
6
- metadata.gz: 4e24b5d907cc8fdfd1fc08666e54a10d44a0ea39267b2a0a997eccd94d4e0125b2a36cb00e1ae8e0e9488fbbb12a2e11d057023a56acfb93c15122302317f08d
7
- data.tar.gz: 0ad9e5f887ea6c41e7488eb1df95453e27b5d4c55cc54a58ed6ba22bc3ef9e49de317c5c47d734970534cbbb03899efc82f4cf5217b6816aa37217ba8f1fbe04
6
+ metadata.gz: c6a4bf423f7c2c09174ccb29336f0b61e8c535758233d779ba0a219cc8f6e3f460cdd7dc363125dc0a5e4f82b827ef0fc2e751ea571a9a32c9101e7ed5282d39
7
+ data.tar.gz: 434e367457c93601888a8c4c2b9a065efbefc60bfd01776c959b89a328e56eb0df0632d18e1e6f8e327844211821efaec1c360115a322a021f409d45dffe4014
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fastly (7.2.1)
4
+ fastly (7.2.2)
5
5
  typhoeus (~> 1.0, >= 1.0.1)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -8,7 +8,7 @@ A Ruby client library for interacting with most facets of the [Fastly API](https
8
8
  To install via RubyGems, add the following to your project's `Gemfile`:
9
9
 
10
10
  ```ruby
11
- gem 'fastly', '~> 7.2.1'
11
+ gem 'fastly', '~> 7.2.2'
12
12
  ```
13
13
 
14
14
  Then run `bundle install`.
@@ -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
- This endpoint does not need any parameter.
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] || {}
@@ -9,5 +9,5 @@ Contact: oss@fastly.com
9
9
  =end
10
10
 
11
11
  module Fastly
12
- VERSION = '7.2.1'
12
+ VERSION = '7.2.2'
13
13
  end
data/sig.json CHANGED
@@ -1 +1 @@
1
- {"G": "33163c3c", "D": "2c30aac5"}
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.1
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-10-27 00:00:00.000000000 Z
11
+ date: 2023-11-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus