@@ -14,8 +14,6 @@ Method | HTTP request | Description
1414# ** delete_by_key_from_storage**
1515> delete_by_key_from_storage(key, x_monday_access_token)
1616
17-
18-
1917### Example
2018
2119
@@ -78,8 +76,6 @@ No authorization required
7876# ** get_by_key_from_storage**
7977> StorageDataContract get_by_key_from_storage(key, shared, x_monday_access_token)
8078
81-
82-
8379### Example
8480
8581
@@ -149,8 +145,6 @@ No authorization required
149145# ** increment_counter**
150146> IncrementCounter200Response increment_counter(x_monday_access_token, increment_counter_params)
151147
152-
153-
154148### Example
155149
156150
@@ -217,8 +211,6 @@ No authorization required
217211# ** search_record**
218212> object search_record(term, x_monday_access_token, cursor=cursor)
219213
220-
221-
222214### Example
223215
224216
@@ -285,9 +277,7 @@ No authorization required
285277[[ 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 )
286278
287279# ** 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)
291281
292282### Example
293283
@@ -315,9 +305,10 @@ with monday_code.ApiClient(configuration) as api_client:
315305 json_data_contract = monday_code.JsonDataContract() # JsonDataContract |
316306 shared = True # bool | (optional)
317307 previous_version = ' previous_version_example' # str | (optional)
308+ ttl = 3.4 # float | (optional)
318309
319310 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 )
321312 print (" The response of StorageApi->upsert_by_key_from_storage:\n " )
322313 pprint(api_response)
323314 except Exception as e:
@@ -336,6 +327,7 @@ Name | Type | Description | Notes
336327 ** json_data_contract** | [ ** JsonDataContract** ] ( JsonDataContract.md ) | |
337328 ** shared** | ** bool** | | [ optional]
338329 ** previous_version** | ** str** | | [ optional]
330+ ** ttl** | ** float** | | [ optional]
339331
340332### Return type
341333
0 commit comments