remoteProcessGroupsEntity element
| Type: | remoteProcessGroupsEntity |
| Namespace: | (default namespace) |
| XML Schema: | ns0.xsd |
A serialized representation of this class can be placed in the entity body of a response to the API. This particular entity holds a reference to a list of RemoteProcessGroupDTOs.
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<remoteProcessGroupsEntity>
<revision>
<clientId>...</clientId>
<version>...</version>
</revision>
<remoteProcessGroups>
<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>
</remoteProcessGroups>
<remoteProcessGroups>
<!--...-->
</remoteProcessGroups>
<!--...more "remoteProcessGroups" elements...-->
</remoteProcessGroupsEntity>
Example JSON
{
"remoteProcessGroups" : [ {
"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" : ...
}
}