dataassetexport properties
Last updated: Feb 11, 2025
You can use the Data Asset Export node to write to remove data
sources using connections, write to a data file on your local computer, or write data to a
project.
Example
import json
stream = modeler.script.stream()
dataassetexport = stream.findByID("<import nodeId>")
# loads the string settings as a json object
userSettings = json.loads(dataassetexport.getPropertyValue("user_settings"))
userSettings["interactionProperties"]["file_name"] = "<new file name>"
dataassetexport.setPropertyValue("user_settings", json.dumps(userSettings))
Property name | Data type | Property description |
---|---|---|
|
|
Specify your data type: or . |
|
string | When is set for the , this is the ID of
the asset. |
|
string | When is set for the , this is the name
of the asset. |
|
string | When is set for the , this is the ID
of the connection. |
|
string | When is set for the , this is the name
of the connection. |
|
string | When is set for the , this is the path
of the connection. |
|
string | Escaped JSON string containing the interaction properties for the connection. Contact IBM for
details about available interaction points. Example:
Note that these values will change based on the type of connection you're using. |
Was the topic helpful?
0/1000