fastly 7.1.0 → 7.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/docs/EventsApi.md +8 -0
- data/lib/fastly/api/events_api.rb +12 -0
- data/lib/fastly/version.rb +1 -1
- data/sig.json +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 68e8838b14560a805edeee4b5b98b0551631fb3e08a8c413e4c0295a188f3552
|
4
|
+
data.tar.gz: 77af692b4e7b48508e661cfc61863cb932a4aa1c75ab67913d861bb0d798f319
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab8de311186aac5f7009ab67c7ac2d38bac773e52c2a0982c83e6e556f5f53d1e9d1149864350fa7f59f15023a16aadba42712450199b58686374e3b6e3659f8
|
7
|
+
data.tar.gz: 2304c5196c3d20ff4444e98fb46c0097e81d532e2cde25cf6880455ca661055ce654a4e1ec17b62646166d7a3c125d87a39d649a1887bd6becbee01feed9bb01
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [v7.1.1](https://github.com/fastly/fastly-ruby/releases/tag/release/v7.1.1) (2023-09-01)
|
4
|
+
|
5
|
+
**Enhancements:**
|
6
|
+
|
7
|
+
- feat(events): support extra created_at filters.
|
8
|
+
|
3
9
|
## [v7.1.0](https://github.com/fastly/fastly-ruby/releases/tag/release/v7.1.0) (2023-09-01)
|
4
10
|
|
5
11
|
**Enhancements:**
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
data/docs/EventsApi.md
CHANGED
@@ -70,6 +70,10 @@ opts = {
|
|
70
70
|
filter_user_id: 'filter_user_id_example', # String | Limit the results returned to a specific user.
|
71
71
|
filter_token_id: 'filter_token_id_example', # String | Limit the returned events to a specific token.
|
72
72
|
filter_created_at: 'filter_created_at_example', # String | Limit the returned events to a specific time frame. Accepts sub-parameters: lt, lte, gt, gte (e.g., filter[created_at][gt]=2022-01-12).
|
73
|
+
filter_created_at_lte: 'filter_created_at_lte_example', # String | Return events on and before a date and time in ISO 8601 format.
|
74
|
+
filter_created_at_lt: 'filter_created_at_lt_example', # String | Return events before a date and time in ISO 8601 format.
|
75
|
+
filter_created_at_gte: 'filter_created_at_gte_example', # String | Return events on and after a date and time in ISO 8601 format.
|
76
|
+
filter_created_at_gt: 'filter_created_at_gt_example', # String | Return events after a date and time in ISO 8601 format.
|
73
77
|
page_number: 1, # Integer | Current page.
|
74
78
|
page_size: 20, # Integer | Number of records per page.
|
75
79
|
sort: 'created_at', # String | The order in which to list the results by creation date.
|
@@ -94,6 +98,10 @@ end
|
|
94
98
|
| **filter_user_id** | **String** | Limit the results returned to a specific user. | [optional] |
|
95
99
|
| **filter_token_id** | **String** | Limit the returned events to a specific token. | [optional] |
|
96
100
|
| **filter_created_at** | **String** | Limit the returned events to a specific time frame. Accepts sub-parameters: lt, lte, gt, gte (e.g., filter[created_at][gt]=2022-01-12). | [optional] |
|
101
|
+
| **filter_created_at_lte** | **String** | Return events on and before a date and time in ISO 8601 format. | [optional] |
|
102
|
+
| **filter_created_at_lt** | **String** | Return events before a date and time in ISO 8601 format. | [optional] |
|
103
|
+
| **filter_created_at_gte** | **String** | Return events on and after a date and time in ISO 8601 format. | [optional] |
|
104
|
+
| **filter_created_at_gt** | **String** | Return events after a date and time in ISO 8601 format. | [optional] |
|
97
105
|
| **page_number** | **Integer** | Current page. | [optional] |
|
98
106
|
| **page_size** | **Integer** | Number of records per page. | [optional][default to 20] |
|
99
107
|
| **sort** | **String** | The order in which to list the results by creation date. | [optional][default to 'created_at'] |
|
@@ -88,6 +88,10 @@ module Fastly
|
|
88
88
|
# @option opts [String] :filter_user_id Limit the results returned to a specific user.
|
89
89
|
# @option opts [String] :filter_token_id Limit the returned events to a specific token.
|
90
90
|
# @option opts [String] :filter_created_at Limit the returned events to a specific time frame. Accepts sub-parameters: lt, lte, gt, gte (e.g., filter[created_at][gt]=2022-01-12).
|
91
|
+
# @option opts [String] :filter_created_at_lte Return events on and before a date and time in ISO 8601 format.
|
92
|
+
# @option opts [String] :filter_created_at_lt Return events before a date and time in ISO 8601 format.
|
93
|
+
# @option opts [String] :filter_created_at_gte Return events on and after a date and time in ISO 8601 format.
|
94
|
+
# @option opts [String] :filter_created_at_gt Return events after a date and time in ISO 8601 format.
|
91
95
|
# @option opts [Integer] :page_number Current page.
|
92
96
|
# @option opts [Integer] :page_size Number of records per page. (default to 20)
|
93
97
|
# @option opts [String] :sort The order in which to list the results by creation date. (default to 'created_at')
|
@@ -105,6 +109,10 @@ module Fastly
|
|
105
109
|
# @option opts [String] :filter_user_id Limit the results returned to a specific user.
|
106
110
|
# @option opts [String] :filter_token_id Limit the returned events to a specific token.
|
107
111
|
# @option opts [String] :filter_created_at Limit the returned events to a specific time frame. Accepts sub-parameters: lt, lte, gt, gte (e.g., filter[created_at][gt]=2022-01-12).
|
112
|
+
# @option opts [String] :filter_created_at_lte Return events on and before a date and time in ISO 8601 format.
|
113
|
+
# @option opts [String] :filter_created_at_lt Return events before a date and time in ISO 8601 format.
|
114
|
+
# @option opts [String] :filter_created_at_gte Return events on and after a date and time in ISO 8601 format.
|
115
|
+
# @option opts [String] :filter_created_at_gt Return events after a date and time in ISO 8601 format.
|
108
116
|
# @option opts [Integer] :page_number Current page.
|
109
117
|
# @option opts [Integer] :page_size Number of records per page. (default to 20)
|
110
118
|
# @option opts [String] :sort The order in which to list the results by creation date. (default to 'created_at')
|
@@ -137,6 +145,10 @@ module Fastly
|
|
137
145
|
query_params[:'filter[user_id]'] = opts[:'filter_user_id'] if !opts[:'filter_user_id'].nil?
|
138
146
|
query_params[:'filter[token_id]'] = opts[:'filter_token_id'] if !opts[:'filter_token_id'].nil?
|
139
147
|
query_params[:'filter[created_at]'] = opts[:'filter_created_at'] if !opts[:'filter_created_at'].nil?
|
148
|
+
query_params[:'filter[created_at][lte]'] = opts[:'filter_created_at_lte'] if !opts[:'filter_created_at_lte'].nil?
|
149
|
+
query_params[:'filter[created_at][lt]'] = opts[:'filter_created_at_lt'] if !opts[:'filter_created_at_lt'].nil?
|
150
|
+
query_params[:'filter[created_at][gte]'] = opts[:'filter_created_at_gte'] if !opts[:'filter_created_at_gte'].nil?
|
151
|
+
query_params[:'filter[created_at][gt]'] = opts[:'filter_created_at_gt'] if !opts[:'filter_created_at_gt'].nil?
|
140
152
|
query_params[:'page[number]'] = opts[:'page_number'] if !opts[:'page_number'].nil?
|
141
153
|
query_params[:'page[size]'] = opts[:'page_size'] if !opts[:'page_size'].nil?
|
142
154
|
query_params[:'sort'] = opts[:'sort'] if !opts[:'sort'].nil?
|
data/lib/fastly/version.rb
CHANGED
data/sig.json
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"G": "
|
1
|
+
{"G": "95706192", "D": "691cfbf5"}
|