addDevicesRemote Operation

With addDevicesRemote operation you can add one or more devices to a device group on a managed TIBCO LogLogic® appliance from a Management Station.

Request Parameters

authToken, applianceIP, deviceGroupName, deviceNames

For more information about each common request parameter, see Common Request Parameters.

Response

deviceGroupResponse (see deviceGroupResponse Type)

Example

To add (on remote appliance 1.2.20.100) devices CiscoASA2 and 10.1.4.6 to the device group Cisco ASA Devices:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:dev="DeviceGroupService">
   <soapenv:Header/>
   <soapenv:Body>
      <dev:addDevicesRemote>
         <!--Optional:-->
         <dev:authToken>admin/admin123</dev:authToken>
         <!--Optional:-->
         <dev:applianceIP>10.114.66.36</dev:applianceIP>
         <!--Optional:-->
         <dev:deviceGroupName>66.36_local_dg1</dev:deviceGroupName>
         <!--Optional:-->
         <dev:deviceNames>10.114.66.36/::ffff:210.100.100.201_General</dev:deviceNames>
      </dev:addDevicesRemote>
   </soapenv:Body>
</soapenv:Envelope>

SOAP response for addDevicesRemote Operation:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
   <soapenv:Header/>
   <soapenv:Body>
      <ns:addDevicesRemoteResponse xmlns:ns="DeviceGroupService">
         <ns:return xsi:type="ax211:DeviceGroupResponse" xmlns:ax211="http://devicegroup.services.logapp.loglogic.com/xsd" xmlns:ax212="http://services.logapp.loglogic.com/xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <ax212:authToken xsi:nil="true"/>
            <ax212:resultCount>1</ax212:resultCount>
            <ax212:statusCode>2000</ax212:statusCode>
            <ax212:statusMessage>Successful</ax212:statusMessage>
            <ax212:summaryOnly>false</ax212:summaryOnly>
            <ax211:resultSet xsi:type="ax211:DeviceGroupDetail">
               <ax211:description>test</ax211:description>
               <ax211:deviceGroupName>66.36_local_dg1</ax211:deviceGroupName>
               <ax211:devices>10.114.66.36/::ffff:10.114.66.36_logapp</ax211:devices>
               <ax211:devices>10.114.66.36/::ffff:200.100.100.200_General</ax211:devices>
               <ax211:devices>10.114.66.36/::ffff:200.100.100.201_General</ax211:devices>
               <ax211:devices>10.114.66.36/::ffff:210.100.100.201_General</ax211:devices>
               <ax211:enabled>disabled</ax211:enabled>
               <ax211:groupType>global</ax211:groupType>
            </ax211:resultSet>
         </ns:return>
      </ns:addDevicesRemoteResponse>
   </soapenv:Body>
</soapenv:Envelope>