This documentation will provide you some explanation on how to use the destinationinstanceservice
module and different methods supported by this module.
It will include some examples but be aware that not all methods will be documented here.
To have a full view on the different API endpoints specific to the destination instance API, please refer to this API documentation.
Alternatively, you can use the docstring in the methods to have more information.
Before importing the module, you would need to import the configuration file, or alternatively provide the information required for the API connection through the configure method. see getting starting
To import the module you can use the import statement with the destinationinstanceservice
keyword.
import aepp
aepp.importConfigFile('myConfig_file.json')
from aepp import destinationinstanceservice
The destinationinstanceservice module provides a class that you can use to create adhoc export tasks.
The following documentation will provide you with more information on its capabilities.
The Authoring class is the default API connector that you would encounter for any other submodules on this python module.
This class can be instantiated by calling the Instance()
from the destinationinstanceservice
module.
Following the previous method described above, you can realize this:
mySDK = destinationinstanceservice.DestinationInstanceService()
3 parameters are possible for the instantiation of the class:
- config : OPTIONAL : config object in the config module. (example : aepp.config.config_object)
- header : OPTIONAL : header object in the config module. (example: aepp.config.header)
- loggingObject : OPTIONAL : logging object to provide log of the application.
The Destination module will enable you to create adhoc request for export segments/datasets
This part is describing the different methods available from that module, once you have generated your instance.
- createAdHocDatasetExport create adhoc task for export datasets