Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.73 KB

PortDTO.md

File metadata and controls

38 lines (29 loc) · 1.73 KB

PortDTO

Properties

Name Type Description Notes
id String The id of the component. [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 port. [optional]
comments String The comments for the port. [optional]
state StateEnum The state of the port. [optional]
type TypeEnum The type of port. [optional]
transmitting Boolean Whether the port has incoming or output connections to a remote NiFi. This is only applicable when the port is running in the root group. [optional]
concurrentlySchedulableTaskCount Integer The number of tasks that should be concurrently scheduled for the port. [optional]
userAccessControl List<String> The users that are allowed to access the port. [optional]
groupAccessControl List<String> The user groups that are allowed to access the port. [optional]
validationErrors List<String> Gets the validation errors from this port. These validation errors represent the problems with the port that must be resolved before it can be started. [optional]

Enum: StateEnum

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

Enum: TypeEnum

Name Value
INPUT_PORT "INPUT_PORT"
OUTPUT_PORT "OUTPUT_PORT"