@@ -14,8 +14,6 @@ Method | HTTP request | Description
14
14
# ** delete_by_key_from_storage**
15
15
> delete_by_key_from_storage(key, x_monday_access_token)
16
16
17
-
18
-
19
17
### Example
20
18
21
19
@@ -78,8 +76,6 @@ No authorization required
78
76
# ** get_by_key_from_storage**
79
77
> StorageDataContract get_by_key_from_storage(key, shared, x_monday_access_token)
80
78
81
-
82
-
83
79
### Example
84
80
85
81
@@ -149,8 +145,6 @@ No authorization required
149
145
# ** increment_counter**
150
146
> IncrementCounter200Response increment_counter(x_monday_access_token, increment_counter_params)
151
147
152
-
153
-
154
148
### Example
155
149
156
150
@@ -217,8 +211,6 @@ No authorization required
217
211
# ** search_record**
218
212
> object search_record(term, x_monday_access_token, cursor=cursor)
219
213
220
-
221
-
222
214
### Example
223
215
224
216
@@ -285,9 +277,7 @@ No authorization required
285
277
[[ 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 )
286
278
287
279
# ** upsert_by_key_from_storage**
288
- > UpsertByKeyFromStorage200Response upsert_by_key_from_storage(key, x_monday_access_token, json_data_contract, shared=shared, previous_version=previous_version)
289
-
290
-
280
+ > UpsertByKeyFromStorage200Response upsert_by_key_from_storage(key, x_monday_access_token, json_data_contract, shared=shared, previous_version=previous_version, ttl=ttl)
291
281
292
282
### Example
293
283
@@ -315,9 +305,10 @@ with monday_code.ApiClient(configuration) as api_client:
315
305
json_data_contract = monday_code.JsonDataContract() # JsonDataContract |
316
306
shared = True # bool | (optional)
317
307
previous_version = ' previous_version_example' # str | (optional)
308
+ ttl = 3.4 # float | (optional)
318
309
319
310
try :
320
- api_response = api_instance.upsert_by_key_from_storage(key, x_monday_access_token, json_data_contract, shared = shared, previous_version = previous_version)
311
+ api_response = api_instance.upsert_by_key_from_storage(key, x_monday_access_token, json_data_contract, shared = shared, previous_version = previous_version, ttl = ttl )
321
312
print (" The response of StorageApi->upsert_by_key_from_storage:\n " )
322
313
pprint(api_response)
323
314
except Exception as e:
@@ -336,6 +327,7 @@ Name | Type | Description | Notes
336
327
** json_data_contract** | [ ** JsonDataContract** ] ( JsonDataContract.md ) | |
337
328
** shared** | ** bool** | | [ optional]
338
329
** previous_version** | ** str** | | [ optional]
330
+ ** ttl** | ** float** | | [ optional]
339
331
340
332
### Return type
341
333
0 commit comments