Interface CreateHiddenRunGroupOptions

interface CreateHiddenRunGroupOptions {
    containerPath?: string;
    failure?: RequestFailure<any>;
    runIds?: number[];
    scope?: any;
    selectionKey?: string;
    success?: RequestSuccess<RunGroup>;
}

Hierarchy (view full)

Properties

containerPath?: string

An alternate container path to get permissions from. If not specified, the current container path will be used.

failure?: RequestFailure<any>

This will be called upon failure to complete a request.

runIds?: number[]

An array of integer ids for the runs to be members of the group. Either runIds or selectionKey must be specified.

scope?: any

A scoping object for the success and failure callback functions (default to this).

selectionKey?: string

The DataRegion's selectionKey to be used to resolve the runs to be members of the group. Either runIds or selectionKey must be specified.

This will be called upon successfully completing a request.

Generated using TypeDoc