IGQIInputArguments interface
Definition
- Namespace:
Skyline.DataMiner.Analytics.GenericInterface
- Assembly:
SLAnalyticsTypes.dll
Implement this interface to define input arguments for an ad hoc data source or custom operator.
Important
The GQI does not validate the input arguments specified by the user. For example, a user can input an SQL query as a string input argument, and the content of the string argument will be forwarded to the ad hoc data source implementation without validation.
Methods
GQIArgument[] GetInputArguments()
Defines the input arguments for the extension instance that can be filled in when building a query.
Tip
Learn more about when this method is called within an ad hoc data source or custom operator.
Returns
An array of GQIArgument, which provides all arguments the user can fill in.
void OnArgumentsProcessed(OnArgumentsProcessedInputArgs args)
Applies the argument values of the input arguments that were provided in the query.
Tip
Learn more about when this method is called within an ad hoc data source or custom operator.
Parameters
- OnArgumentsProcessedInputArgs
args
: An object containing the arguments filled in by the user.