github.com/filecoin-project/bacalhau@v0.3.23-0.20230228154132-45c989550ace/clients/python/docs/JobSpecWasm.md (about) 1 # JobSpecWasm 2 3 ## Properties 4 Name | Type | Description | Notes 5 ------------ | ------------- | ------------- | ------------- 6 **entry_module** | [**JobSpecWasmEntryModule**](JobSpecWasmEntryModule.md) | | [optional] 7 **entry_point** | **str** | The name of the function in the EntryModule to call to run the job. For WASI jobs, this will always be `_start`, but jobs can choose to call other WASM functions instead. The EntryPoint must be a zero-parameter zero-result function. | [optional] 8 **environment_variables** | **dict(str, str)** | The variables available in the environment of the running program. | [optional] 9 **import_modules** | [**list[StorageSpec]**](StorageSpec.md) | TODO #880: Other WASM modules whose exports will be available as imports to the EntryModule. | [optional] 10 **parameters** | **list[str]** | The arguments supplied to the program (i.e. as ARGV). | [optional] 11 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) 13 14