Skip to content

Latest commit

 

History

History
51 lines (42 loc) · 3.04 KB

VersionedRemoteProcessGroup.md

File metadata and controls

51 lines (42 loc) · 3.04 KB

VersionedRemoteProcessGroup

Properties

Name Type Description Notes
identifier String The component's unique identifier [optional]
name String The component's name [optional]
comments String The user-supplied comments for the component [optional]
position ThePositionOfAComponentOnTheGraph The component's position on the graph [optional]
targetUri String The target URI of the remote process group. If target uri is not set, but uris are set, then returns the first url in the urls. If neither target uri nor uris are set, then returns null. [optional]
targetUris String The target URI of the remote process group. If target uris is not set but target uri is set, then returns the single target uri. If neither target uris nor target uri is set, then returns null. [optional]
communicationsTimeout String The time period used for the timeout when communicating with the target. [optional]
yieldDuration String When yielding, this amount of time must elapse before the remote process group is scheduled again. [optional]
transportProtocol TransportProtocolEnum The Transport Protocol that is used for Site-to-Site communications [optional]
localNetworkInterface String The local network interface to send/receive data. If not specified, any local address is used. If clustered, all nodes must have an interface with this identifier. [optional]
proxyHost String [optional]
proxyPort Integer [optional]
proxyUser String [optional]
inputPorts List<VersionedRemoteGroupPort> A Set of Input Ports that can be connected to, in order to send data to the remote NiFi instance [optional]
outputPorts List<VersionedRemoteGroupPort> A Set of Output Ports that can be connected to, in order to pull data from the remote NiFi instance [optional]
componentType ComponentTypeEnum [optional]
groupIdentifier String The ID of the Process Group that this component belongs to [optional]

Enum: TransportProtocolEnum

Name Value
RAW "RAW"
HTTP "HTTP"

Enum: ComponentTypeEnum

Name Value
CONNECTION "CONNECTION"
PROCESSOR "PROCESSOR"
PROCESS_GROUP "PROCESS_GROUP"
REMOTE_PROCESS_GROUP "REMOTE_PROCESS_GROUP"
INPUT_PORT "INPUT_PORT"
OUTPUT_PORT "OUTPUT_PORT"
REMOTE_INPUT_PORT "REMOTE_INPUT_PORT"
REMOTE_OUTPUT_PORT "REMOTE_OUTPUT_PORT"
FUNNEL "FUNNEL"
LABEL "LABEL"
CONTROLLER_SERVICE "CONTROLLER_SERVICE"