Skip to content

Latest commit

 

History

History
32 lines (29 loc) · 3.02 KB

ProcessorDTO.md

File metadata and controls

32 lines (29 loc) · 3.02 KB

IO.Swagger.Model.ProcessorDTO

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 processor. [optional]
Type string The type of the processor. [optional]
Bundle BundleDTO The details of the artifact that bundled this processor type. [optional]
State string The state of the processor [optional]
Style Dictionary<string, string> Styles for the processor (background-color : #eee). [optional]
Relationships List<RelationshipDTO> The available relationships that the processor currently supports. [optional]
Description string The description of the processor. [optional]
SupportsParallelProcessing bool? Whether the processor supports parallel processing. [optional]
SupportsEventDriven bool? Whether the processor supports event driven scheduling. [optional]
SupportsBatching bool? Whether the processor supports batching. This makes the run duration settings available. [optional]
PersistsState bool? Whether the processor persists state. [optional]
Restricted bool? Whether the processor requires elevated privileges. [optional]
Deprecated bool? Whether the processor has been deprecated. [optional]
ExecutionNodeRestricted bool? Indicates if the execution node of a processor is restricted to run only on the primary node [optional]
MultipleVersionsAvailable bool? Whether the processor has multiple versions available. [optional]
InputRequirement string The input requirement for this processor. [optional]
Config ProcessorConfigDTO The configuration details for the processor. These details will be included in a response if the verbose flag is included in a request. [optional]
ValidationErrors List<string> The validation errors for the processor. These validation errors represent the problems with the processor that must be resolved before it can be started. [optional]
ValidationStatus string Indicates whether the Processor is valid, invalid, or still in the process of validating (i.e., it is unknown whether or not the Processor is valid) [optional]
ExtensionMissing bool? Whether the underlying extension is missing. [optional]

[Back to Model list] [Back to API list] [Back to README]