remoteProcessGroupEntity element

Type: remoteProcessGroupEntity
Namespace: (default namespace)
XML Schema: ns0.xsd

A serialized representation of this class can be placed in the entity body of a request or response to or from the API. This particular entity holds a reference to a RemoteProcessGroupDTO.

Example XML

<?xml version="1.0" encoding="UTF-8"?> <remoteProcessGroupEntity> <revision> <clientId>...</clientId> <version>...</version> </revision> <remoteProcessGroup> <id>...</id> <parentGroupId>...</parentGroupId> <uri>...</uri> <position> <x>...</x> <y>...</y> </position> <targetUri>...</targetUri> <name>...</name> <comments>...</comments> <authorizationIssues>...</authorizationIssues> <authorizationIssues>...</authorizationIssues> <!--...more "authorizationIssues" elements...--> <communicationsTimeout>...</communicationsTimeout> <yieldDuration>...</yieldDuration> <activeRemoteInputPortCount>...</activeRemoteInputPortCount> <inactiveRemoteInputPortCount>...</inactiveRemoteInputPortCount> <activeRemoteOutputPortCount>...</activeRemoteOutputPortCount> <inactiveRemoteOutputPortCount>...</inactiveRemoteOutputPortCount> <inputPortCount>...</inputPortCount> <outputPortCount>...</outputPortCount> <contents> <inputPorts> <comments>...</comments> <concurrentlySchedulableTaskCount>...</concurrentlySchedulableTaskCount> <id>...</id> <groupId>...</groupId> <name>...</name> <useCompression>...</useCompression> <exists>...</exists> </inputPorts> <inputPorts> <!--...--> </inputPorts> <!--...more "inputPorts" elements...--> <outputPorts> <comments>...</comments> <concurrentlySchedulableTaskCount>...</concurrentlySchedulableTaskCount> <id>...</id> <groupId>...</groupId> <name>...</name> <useCompression>...</useCompression> <exists>...</exists> </outputPorts> <outputPorts> <!--...--> </outputPorts> <!--...more "outputPorts" elements...--> </contents> <flowRefreshed>...</flowRefreshed> </remoteProcessGroup> </remoteProcessGroupEntity>

Example JSON

{ "remoteProcessGroup" : { "targetUri" : "...", "name" : "...", "comments" : "...", "authorizationIssues" : [ "...", ... ], "communicationsTimeout" : "...", "yieldDuration" : "...", "activeRemoteInputPortCount" : ..., "inactiveRemoteInputPortCount" : ..., "activeRemoteOutputPortCount" : ..., "inactiveRemoteOutputPortCount" : ..., "inputPortCount" : ..., "outputPortCount" : ..., "contents" : { "inputPorts" : [ { "comments" : "...", "concurrentlySchedulableTaskCount" : ..., "id" : "...", "groupId" : "...", "name" : "...", "useCompression" : false, "exists" : false }, ... ], "outputPorts" : [ { "comments" : "...", "concurrentlySchedulableTaskCount" : ..., "id" : "...", "groupId" : "...", "name" : "...", "useCompression" : false, "exists" : false }, ... ] }, "flowRefreshed" : "...", "id" : "...", "parentGroupId" : "...", "uri" : "...", "position" : { "x" : ..., "y" : ... } }, "revision" : { "clientId" : "...", "version" : ... } }