Skip to content

Latest commit

 

History

History
41 lines (34 loc) · 2.98 KB

ReportingTaskDTO.md

File metadata and controls

41 lines (34 loc) · 2.98 KB

ReportingTaskDTO

Properties

Name Type Description Notes
id String The id of the component. [optional]
versionedComponentId String The ID of the corresponding component that is under version control [optional]
parentGroupId String The id of parent process group of this component if applicable. [optional]
position PositionDTO The position of this component in the UI if applicable. [optional]
name String The name of the reporting task. [optional]
type String The fully qualified type of the reporting task. [optional]
bundle BundleDTO The details of the artifact that bundled this processor type. [optional]
state StateEnum The state of the reporting task. [optional]
comments String The comments of the reporting task. [optional]
persistsState Boolean Whether the reporting task persists state. [optional]
restricted Boolean Whether the reporting task requires elevated privileges. [optional]
deprecated Boolean Whether the reporting task has been deprecated. [optional]
multipleVersionsAvailable Boolean Whether the reporting task has multiple versions available. [optional]
schedulingPeriod String The frequency with which to schedule the reporting task. The format of the value willd epend on the valud of the schedulingStrategy. [optional]
schedulingStrategy String The scheduling strategy that determines how the schedulingPeriod value should be interpreted. [optional]
defaultSchedulingPeriod Map<String, String> The default scheduling period for the different scheduling strategies. [optional]
properties Map<String, String> The properties of the reporting task. [optional]
descriptors Map<String, PropertyDescriptorDTO> The descriptors for the reporting tasks properties. [optional]
customUiUrl String The URL for the custom configuration UI for the reporting task. [optional]
annotationData String The annotation data for the repoting task. This is how the custom UI relays configuration to the reporting task. [optional]
validationErrors List<String> Gets the validation errors from the reporting task. These validation errors represent the problems with the reporting task that must be resolved before it can be scheduled to run. [optional]
activeThreadCount Integer The number of active threads for the reporting task. [optional]
extensionMissing Boolean Whether the underlying extension is missing. [optional]

Enum: StateEnum

Name Value
RUNNING "RUNNING"
STOPPED "STOPPED"
DISABLED "DISABLED"