Exposes namespaced Key-Value Stores you can access in and outside of your Jobs.
store.env
to access and store data across your Environmentdelete()
key
of the item to delete.Promise
that resolves when the item has been deleted.
has()
key
of the item to check existence of.Promise
that resolves to a boolean
value indicating existence.
get()
key
of the item to retrieve.Promise
that resolves to the stored value or undefined
if missing.
set()
key
of the item to store.value
to store.Promise
that resolves to the stored value.