You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**key** | **str** | unique key representation of the flag | [optional]
7
8
8
9
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
**entity_id** | **str** | entityID is used to deterministically at random to evaluate the flag result. If it's empty, flagr will randomly generate one. | [optional]
7
+
**entity_type** | **str** | | [optional]
8
8
**entity_context** | **object** | | [optional]
9
9
**enable_debug** | **bool** | | [optional]
10
-
**flag_id** | **int** | |
10
+
**flag_id** | **int** | flagID | [optional]
11
+
**flag_key** | **str** | flagKey. flagID or flagKey will resolve to the same flag. Either works. | [optional]
11
12
12
13
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
**flag_keys** | **list[str]** | flagKeys. Either flagIDs or flagKeys works. If pass in both, Flagr may return duplicate results. | [optional]
9
10
10
11
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
Export sqlite3 format of the db dump, which is converted from the main database.
16
+
17
+
### Example
18
+
```python
19
+
from__future__import print_function
20
+
import time
21
+
import flagr
22
+
from flagr.rest import ApiException
23
+
from pprint import pprint
24
+
25
+
# create an instance of the API class
26
+
api_instance = flagr.ExportApi()
27
+
28
+
try:
29
+
api_response = api_instance.get_export_sq_lite()
30
+
pprint(api_response)
31
+
except ApiException as e:
32
+
print("Exception when calling ExportApi->get_export_sq_lite: %s\n"% e)
33
+
```
34
+
35
+
### Parameters
36
+
This endpoint does not need any parameter.
37
+
38
+
### Return type
39
+
40
+
[**file**](file.md)
41
+
42
+
### Authorization
43
+
44
+
No authorization required
45
+
46
+
### HTTP request headers
47
+
48
+
-**Content-Type**: application/json
49
+
-**Accept**: application/octet-stream
50
+
51
+
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
**data_records_enabled** | **bool** | enabled data records will get data logging in the metrics pipeline, for example, kafka. |
13
+
**entity_type** | **str** | it will override the entityType in the evaluation logs if it's not empty | [optional]
14
+
**created_by** | **str** | | [optional]
15
+
**updated_by** | **str** | | [optional]
16
+
**updated_at** | **datetime** | | [optional]
12
17
13
18
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
**key** | **str**| return flags matching given key | [optional]
145
+
**offset** | **int**| return flags given the offset, it should usually set together with limit | [optional]
146
+
**preload** | **bool**| return flags with preloaded segments and variants | [optional]
130
147
131
148
### Return type
132
149
@@ -188,6 +205,47 @@ No authorization required
188
205
189
206
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
print("Exception when calling FlagApi->get_flag_entity_types: %s\n"% e)
229
+
```
230
+
231
+
### Parameters
232
+
This endpoint does not need any parameter.
233
+
234
+
### Return type
235
+
236
+
**list[str]**
237
+
238
+
### Authorization
239
+
240
+
No authorization required
241
+
242
+
### HTTP request headers
243
+
244
+
-**Content-Type**: application/json
245
+
-**Accept**: application/json
246
+
247
+
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
print("Exception when calling HealthApi->get_health: %s\n"% e)
32
+
```
33
+
34
+
### Parameters
35
+
This endpoint does not need any parameter.
36
+
37
+
### Return type
38
+
39
+
void (empty response body)
40
+
41
+
### Authorization
42
+
43
+
No authorization required
44
+
45
+
### HTTP request headers
46
+
47
+
-**Content-Type**: application/json
48
+
-**Accept**: application/json
49
+
50
+
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
**data_records_enabled** | **bool** | enabled data records will get data logging in the metrics pipeline, for example, kafka. | [optional]
8
+
**entity_type** | **str** | it will overwrite entityType into evaluation logs if it's not empty | [optional]
9
+
**enabled** | **bool** | | [optional]
10
+
**key** | **str** | | [optional]
8
11
9
12
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
0 commit comments