Wind River. Intelligent Device Platform XT EMS Profile EMS DEVICE MANAGEMENT USER'S GUIDE WIND RIVER 1.0

Size: px
Start display at page:

Download "Wind River. Intelligent Device Platform XT EMS Profile EMS DEVICE MANAGEMENT USER'S GUIDE WIND RIVER 1.0"

Transcription

1 Wind River Intelligent Device Platform XT EMS Profile WIND RIVER EMS DEVICE MANAGEMENT USER'S GUIDE 1.0

2 Copyright Notice Copyright 2014 Wind River Systems, Inc. All rights reserved. No part of this publication may be reproduced or transmitted in any form or by any means without the prior written permission of Wind River Systems, Inc. Wind River, Tornado, and VxWorks are registered trademarks of Wind River Systems, Inc. The Wind River logo is a trademark of Wind River Systems, Inc. Any third-party trademarks referenced are the property of their respective owners. For further information regarding Wind River trademarks, please see: This product may include software licensed to Wind River by third parties. Relevant notices (if any) are provided in your product installation at one of the following locations: installdir/product_name/3rd_party_licensor_notice.pdf installdir/legal-notices/ Wind River may refer to third-party documentation by listing publications or providing links to third-party Web sites for informational purposes. Wind River accepts no responsibility for the information provided in such third-party documentation. Corporate Headquarters Wind River 500 Wind River Way Alameda, CA U.S.A. Toll free (U.S.A.): WIND Telephone: Facsimile: For additional contact information, see the Wind River Web site: For information on how to contact Customer Support, see: 09 Dec 2014

3 Contents 1 EMS Device Management Overview... 5 About EMS Device Management Mashery API Reference... 7 About Mashery APIs... 8 Alarm Object APIs... 9 Alarm Examples Asset Object APIs Asset Examples Asset Configuration Object APIs Asset Group Object APIs Asset Group Examples Audit Object APIs Custom Object APIs Custom Object Examples Custom Object Group Object APIs Data Item Object APIs Data Item Examples Deployment Object APIs Expression Rule Object APIs Expression Rule Examples Extended Application Object APIs Extended List Object APIs Extended Map Object APIs Extended UI Module Object APIs External Credential Object APIs File Info Object APIs File Upload Session Object APIs Location Object APIs Machine Stream Object APIs Model Object APIs Organization Object APIs Region Object APIs Remote Server Object APIs Remote Session Object APIs iii

4 Wind River Intelligent Device Platform XT EMS Profile Wind River EMS Device Management User's Guide, 1.0 Self Service Object APIs Software Package Object APIs Transport Configuration Object APIs Unit Of Measure Object APIs User Object APIs User Group Object APIs User Privilege Object APIs User Settings APIs Web Resource Object APIs iv

5 1 EMS Device Management Overview About EMS Device Management 5 About EMS Device Management The Wind River Edge Management System enables you to remotely manage devices running the EMS agent. The EMS Server is the cloud side of the Edge Management System. It receives data from the EMS agent on the devices connected to the server. When a device connects to the EMS server, it appears as an asset. The EMS Console provides an administrative interface to the server. You can also create your own application using the Mashery APIs to customize the administration and management of assets, and to export data to back end systems for further processing. The EMS Server stores data only for the previous 90 days. To maintain data history, you should export the data at regular intervals. 5

6

7 2 Mashery API Reference About Mashery APIs 8 Alarm Object APIs 9 Asset Object APIs 12 Asset Configuration Object APIs 14 Asset Group Object APIs 16 Audit Object APIs 19 Custom Object APIs 20 Custom Object Group Object APIs 22 Data Item Object APIs 24 Deployment Object APIs 27 Expression Rule Object APIs 28 Extended Application Object APIs 31 Extended List Object APIs 33 Extended Map Object APIs 34 Extended UI Module Object APIs 36 External Credential Object APIs 37 File Info Object APIs 39 File Upload Session Object APIs 40 Location Object APIs 41 Machine Stream Object APIs 42 Model Object APIs 44 Organization Object APIs 45 Region Object APIs 46 7

8 Wind River Intelligent Device Platform XT EMS Profile Wind River EMS Device Management User's Guide, 1.0 Remote Server Object APIs 48 Remote Session Object APIs 48 Self Service Object APIs 50 Software Package Object APIs 51 Transport Configuration Object APIs 52 Unit Of Measure Object APIs 53 User Object APIs 55 User Group Object APIs 56 User Privilege Object APIs 58 User Settings APIs 59 Web Resource Object APIs 60 About Mashery APIs Mashery APIs enable you to write custom applications using REST API calls over HTTP to manage devices that run the EMS agent. The Mashery APIs are grouped into objects, each with a set of methods. The objects are based on those provided by the Axeda Platform Web Services, v2. The APIs enable you to programmatically perform many of the functions that are available from the EMS Console. Mashery APIs are available only to manage assets that run the EMS agent. Each Mashery API call requires a Mashery API key that controls the endpoints the application can access. You receive the key when you receive your Mashery account. Each user application must provide a unique API key in the HTTP query string for each REST API call. To use the APIs in your programming environment, retrieve the WADL definitions from the following URL: You can use the REST API calls directly in JSON or XML format, or you can convert the file into Java classes to use in a Java programming environment. For more information, see the following documents: Axeda Agent Web Services Guide, Axeda v2 API/Services Developer's Reference, 6.8 To test the API services using I/O Docs, log in to the following website with your Mashery username and password: On the Home page, click See APIs in Action with I/O Docs. 8

9 2 Mashery API Reference Alarm Object APIs Alarm Object APIs Alarm object APIs enable you to create, read, and update alarms on an asset or group of assets. Alarms typically indicate an error condition in the software or hardware on an asset, such as the failure of a hardware component. The Mashery APIs enable you to specify the conditions that trigger an alarm, retrieve information about alarms on the system, and manage the alarm status. For more information about alarms and the available APIs, see the following: Axeda Platform Axeda v2 API/Services Developer s Reference: Alarms Axeda Platform Axeda v2 API/Services Developer s Reference: AlarmBridge: Methods Axeda Platform Axeda v2 API/Services Developer s Reference: AlarmBridge: REST Examples Counts the number of alarms based on criteria. Creates an alarm based on the alarm property values. Returns the state changes of an alarm. Finds an alarm based on the system identifier or alternate identifier. Finds alarms that match the specified search criteria. Finds alarms based on alarm identifiers in the request body. Returns a list of historical alarm values. rest/alarm/count rest/alarm rest/alarm/id/systemid/alarmstatechanges rest/alarm/id/identifier rest/alarm/find rest/alarm/findbyids rest/alarm/findinhistory 9

10 Wind River Intelligent Device Platform XT EMS Profile Wind River EMS Device Management User's Guide, 1.0 Finds the first alarm that matches the specified criteria. Creates or updates an alarm. Sets the alarm state. properties of an existing alarm. Create one or more alarms. Creates or updates one or more alarms. properties of one or more alarms. rest/alarm/findone rest/alarm rest/alarm/setalarmstate?state=newalarmstate rest/alarm/id/systemid rest/alarm/bulk/create rest/alarm/bulk/save rest/alarm/bulk/update Related Links Alarm Examples on page 10 Alarm examples demonstrate selected methods in XML format. Alarm Examples Alarm examples demonstrate selected methods in XML format. The following examples show requests using the Linux curl command and show the request body in an XML file. create This example shows a request to create an alarm on an asset. The request body identifies the asset by the model and serial number id="default_testmodel default_testasset". $ curl -k --stderr /dev/null \ -i -H "Content-type: application/xml" \ -i -H "Accept: application/xml" \ -X PUT \ " api_key=keyvalue" \ -d@alarm-create.xml \ tidy --show-warnings no -xml -i -q 10

11 2 Mashery API Reference Alarm Object APIs alarm-create.xml <?xml version="1.0" encoding="utf-8"?> <Alarm xmlns=" <name>testalarm_delete_me</name> <asset id="default_testmodel default_testasset"/> <severity>100</severity> </Alarm> findinhistory This example shows a request using the Linux curl command to find the historical value of all the alarms on the system, based on the wildcard in the request body. $ curl -k --stderr /dev/null \ -i -H "Content-type: application/xml" \ -i -H "Accept: application/xml" \ -X POST \ " api_key=keyvalue" \ -d@alarm-findinhistory.xml \ tidy --show-warnings no -xml -i -q alarm-findinhistory.xml <?xml version="1.0" encoding="utf-8"?> <HistoricalAlarmCriteria xmlns=" <name>*</name> </HistoricalAlarmCriteria> findone This example shows the request to find an alarm using the critiera asset model and serial number specified in the request body. $ curl -k --stderr /dev/null \ -i -H "Content-type: application/xml" \ -i -H "Accept: application/xml" \ -X POST \ " api_key=keyvalue" \ -d@alarm-findone.xml \ tidy --show-warnings no -xml -i -q alarm-findone.xml <?xml version="1.0" encoding="utf-8"?> <AlarmCriteria xmlns=" > <asset id="default_testmodel default_testasset"/> </AlarmCriteria> setalarmstate This example shows a request to set the state of the specified alarm to ACKNOWLEDGED. The request body specifies the alarm by model number, serial number, and alarm name using the id="default_testmodel default_testasset testalarm_delete_me". $ curl -k --stderr /dev/null \ -i -H "Content-type: application/xml" \ -i -H "Accept: application/xml" \ -X POST \ " 11

12 Wind River Intelligent Device Platform XT EMS Profile Wind River EMS Device Management User's Guide, 1.0 state=acknowledged&?api_key=keyvalue" \ -d@alarm-setalarmstate.xml \ tidy --show-warnings no -xml -i -q alarm-setalarmstate.xml <?xml version="1.0" encoding="utf-8"?> <AlarmCollection xmlns=" <alarm xmlns:xsi=" xsi:type="alarm" id="default_testmodel default_testasset testalarm_delete_me"> </alarm> </AlarmCollection> Related Links Alarm Object APIs on page 9 Alarm object APIs enable you to create, read, and update alarms on an asset or group of assets. Asset Object APIs Asset object APIs enable you to create, read, update, and delete one or more assets. An asset is a piece of equipment that can be monitored and managed using either the Mashery APIs or the EMS console. When a device running the EMS agent starts, it automatically connects to the EMS server and an asset representing the device appears on the EMS Console. You can also create an asset using the Mashery APIs. For more information about assets and the available APIs, see the following: Axeda Platform Axeda v2 API/Services Developer s Reference:Assets Axeda Platform Axeda v2 API/Services Developer s Reference:AssetBridge:Methods Axeda Platform Axeda v2 API/Services Developer s Reference:AssetBridge:REST Examples Counts the number of assets based on criteria. Creates an asset based on the asset property values. Deletes an asset. Finds an asset based on system identifier or alternate identifier. rest/asset/countassetsbycriteria rest/asset DELETE rest/asset/systemid rest/asset/id/identifier 12

13 2 Mashery API Reference Asset Object APIs Finds assets that match the specified search criteria. Finds assets based on asset identifiers in the request body. Returns the asset configuration. Finds the first asset that matches the specified criteria. Creates or updates an asset. Marks the specified asset as recently viewed. Returns a list of recently viewed assets. properties of an existing asset. Creates one or more assets. Deletes one or more assets. Creates or updates one or more assets. properties of one or more assets. rest/asset/find rest/asset/findbyids rest/asset/id/systemid/config rest/asset/findone rest/asset rest/asset/recentlyviewed/id/systemid rest/asset/recentlyviewed rest/asset/id/systemid rest/asset/bulk/create rest/asset/bulk/delete rest/asset/bulk/save rest/asset/bulk/update Related Links Asset Examples on page 14 13

14 Wind River Intelligent Device Platform XT EMS Profile Wind River EMS Device Management User's Guide, 1.0 Alarm examples demonstrate selected methods in XML format. Asset Examples Alarm examples demonstrate selected methods in XML format. The following examples show requests using the Linux curl command and show the request body in an XML file. Find (by criteria) This example shows a request to find assets using a wild card for the serial number (the criteria) in the request body. $ curl -k --stderr /dev/null \ -i -H "Content-type: application/xml" \ -i -H "Accept: application/xml" \ -X POST \ " api_key=apikey" \ -d@asset-findbycriteria.xml \ tidy --show-warnings no -xml -i -q asset-findbycriteria.xml <?xml version="1.0" encoding="utf-8"?> <AssetCriteria xmlns=" <serialnumber>default*</serialnumber> </AssetCriteria> Related Links Asset Object APIs on page 12 Asset object APIs enable you to create, read, update, and delete one or more assets. Asset Configuration Object APIs Asset Configuration APIs enable you to create, read, update, and delete asset configurations. Asset configuration APIs enable you to create and update asset configuration information for one or more asset configurations, such as organization information. For more information about asset configuration configuration and the available APIs, see the following: Axeda Platform Axeda v2 API/Services Developer s Reference: Asset Configuration Axeda Platform Axeda v2 API/Services Developer s Reference: AssetConfiguration: Methods Axeda Platform Axeda v2 API/Services Developer s Reference: AssetConfiguration: REST Examples bridgeassetconfigurationbridge.html 14

15 2 Mashery API Reference Asset Configuration Object APIs Creates an asset configuration based on the asset configuration property values. Deletes an asset configuration. Finds an asset configuration based on an identifier. Finds asset configurations that match the specified search criteria. Finds asset configurations based on asset configuration identifiers in the request body. Returns the asset configuration. Finds the first asset configuration that matches the specified criteria. Creates or updates an asset configuration. properties of an existing asset configuration. Creates one or more asset configurations. Deletes one or more asset configurations. Creates or updates one or more asset configurations. rest/assetconfiguration DELETE rest/assetconfiguration/systemid rest/assetconfiguration/identifier rest/assetconfiguration/find rest/assetconfiguration/findbyids rest/assetconfiguration/id/systemid/config rest/assetconfiguration/findone rest/assetconfiguration rest/assetconfiguration/id/systemid rest/assetconfiguration/bulk/create rest/assetconfiguration/bulk/delete rest/assetconfiguration/bulk/save 15

16 Wind River Intelligent Device Platform XT EMS Profile Wind River EMS Device Management User's Guide, 1.0 properties of one or more asset configurations. rest/assetconfiguration/bulk/update Asset Group Object APIs Asset Group APIs enable you to create, read, delete, and update asset groups. An asset group contains one or more associated assets. Asset groups can also contain one other asset group. Assets can belong to multiple asset groups. For more information about asset groups and the available APIs, see the following: Axeda Platform Axeda v2 API/Services Developer s Reference: AssetGroupBridge Axeda Platform Axeda v2 API/Services Developer s Reference: AssetGroupBridge: Methods Axeda Platform Axeda v2 API/Services Developer s Reference: AssetGroupBridge: REST Examples Adds an asset to a group. Creates an asset group based on the asset group property values. Deletes an asset group. Finds an asset group based on an identifier. Finds asset groups that match the specified search criteria. Finds asset groups based on asset group identifiers in the request body. rest/assetgroup/id/systemid/assets rest/assetgroup DELETE rest/assetgroup/systemid rest/assetgroup/identifier rest/assetgroup/find rest/assetgroup/findbyids 16

17 2 Mashery API Reference Asset Group Examples Finds the first asset group that matches the specified criteria. Creates or updates an asset group. Returns the child asset groups of the specified asset group. Removes an asset from an asset group. properties of an existing asset group. Creates one or more asset groups. Deletes one or more asset groups. Creates or updates one or more asset groups. properties of one or more asset groups. rest/assetgroup/findone rest/assetgroup rest/assetgroup/children?id=systemid DELETE rest/assetgroup/id/assetgroupsystemid/assets/id/assetsystemid rest/assetgroup/id/systemid rest/assetgroup/bulk/create rest/assetgroup/bulk/delete rest/assetgroup/bulk/save rest/assetgroup/bulk/update Related Links Asset Group Examples on page 17 Asset Group examples demonstrate selected methods in XML format. Asset Group Examples Asset Group examples demonstrate selected methods in XML format. The following examples show requests using the Linux curl command and show the request body in an XML file. addtogroup This example shows a request to add the asset with the model name default_testmodel and serial number default_testasset to an asset group that is specified by its system identifier. $ curl -k --stderr /dev/null \ -i -H "Content-type: application/xml" \ 17

18 Wind River Intelligent Device Platform XT EMS Profile Wind River EMS Device Management User's Guide, 1.0 -i -H "Accept: application/xml" \ -X PUT \ " assets?api_key=apikey" \ -d@assetgroup-addtogroup.xml \ tidy --show-warnings no -xml -i -q assetgroup-addtogroup.xml <Asset id="default_testmodel default_testasset" xmlns=" v2"> </Asset> create This example shows a request to create an asset group with the testassetgroup name. $ curl -k --stderr /dev/null \ -i -H "Content-type: application/xml" \ -i -H "Accept: application/xml" \ -X PUT \ " api_key=apikey" \ -d@assetgroup-create.xml > tmp cat tmp tidy --show-warnings no -xml -i -q cat tmp grep -m 1 -o "<v2:id>.*</v2:id>" assetgroup-create.xml v2:assetgroup xmlns:v2=" <v2:name>testassetgroup</v2:name> </v2:assetgroup> find (by criteria) This example shows a request to find asset groups using a wildcard for the serial number (the criteria) in the request body. $ curl -k --stderr /dev/null \ -i -H "Content-type: application/xml" \ -i -H "Accept: application/xml" \ -X POST \ " api_key=apikey" \ -d@assetgroup-findbycriteria.xml \ tidy --show-warnings no -xml -i -q assetgroup-findbycriteria.xml <?xml version="1.0" encoding="utf-8"?> <AssetGroupCriteria xmlns=" <serialnumber>default*</serialnumber> </AssetGroupCriteria> Related Links Asset Group Object APIs on page 16 18

19 2 Mashery API Reference Audit Object APIs Asset Group APIs enable you to create, read, delete, and update asset groups. Audit Object APIs The Audit APIs enable you to create and read entries in the EMS Server audit log. The audit log contains information about events that occur on the EMS Server. Audit APIs enable you to add and read entries in the log. They cannot be saved or deleted. For more information about audit entries and the available APIs, see the following: Axeda Platform Axeda v2 API/Services Developer s Reference: AuditBridge Axeda Platform Axeda v2 API/Services Developer s Reference: AuditBridge: Methods Axeda Platform Axeda v2 API/Services Developer s Reference: AuditBridge: REST Examples Creates an audit based on the audit property values. Finds an audit based on an identifier. Finds audits that match the specified search criteria. Finds audits based on audit identifiers in the request body. Finds the first audit that matches the specified criteria. Creates an audit. Creates one or more audits. Creates one or more audits. rest/audit rest/audit/id/systemid rest/audit/find rest/audit/findbyids rest/audit/findone rest/audit rest/audit/bulk/create rest/audit/bulk/save 19

20 Wind River Intelligent Device Platform XT EMS Profile Wind River EMS Device Management User's Guide, 1.0 Custom Object APIs Custom object APIs enable you to create, read, update, and delete custom objects. Custom objects enable you to customize rules and actions on the EMS Server based on Groovy scripts or using the Scripto service. For more information about custom objects and the available APIs, see the following: Axeda Platform Axeda v2 API/Services Developer s Reference: CustomObjectBridge: Methods Axeda Platform Axeda v2 API/Services Developer s Reference: CustomObjectBridge: REST Examples CustomObjectBridge.html Verifies that a custom object compiles. Creates a custom object based on the custom object property values. Deletes a custom object. Finds a custom object based on an identifier. Finds custom objects that match the specified search criteria. Finds custom objects based on custom object identifiers in the request body. Returns the custom object with the specified system identifier. rest/customobject/compile rest/customobject DELETE rest/customobject/systemid rest/customobject/alternateid rest/customobject/find rest/customobject/findbyids rest/customobject/id/systemid 20

21 2 Mashery API Reference Custom Object Examples Finds the first custom object that matches the specified criteria. Creates or updates a custom object. properties of an existing custom object. Creates one or more custom objects. Deletes one or more custom objects. Creates or updates one or more custom objects. properties of one or more custom objects. rest/customobject/findone rest/customobject rest/customobject/id/systemid rest/customobject/bulk/create rest/customobject/bulk/delete rest/customobject/bulk/save rest/customobject/bulk/update Related Links Custom Object Examples on page 21 Custom Object examples demonstrate selected methods in XML format. Custom Object Examples Custom Object examples demonstrate selected methods in XML format. The following examples show requests using the Linux curl command and show the request body in an XML file. find (by criteria) This example shows a request to find custom objects using a wildcard for the name (the criteria) in the request body. $ curl -k --stderr /dev/null \ -i -H "Content-type: application/xml" \ -i -H "Accept: application/xml" \ -X POST \ " api_key=apikey" \ -d@customobject-findbycriteria.xml \ tidy --show-warnings no -xml -i -q 21

22 Wind River Intelligent Device Platform XT EMS Profile Wind River EMS Device Management User's Guide, 1.0 customobject-findbycriteria.xml <?xml version="1.0" encoding="utf-8"?> <CustomObjectCriteria xmlns=" <name>customobject*</name> </CustomObjectCriteria> save This example shows a request to save a custom object of language type Groovy script. $ curl -k --stderr /dev/null \ -i -H "Content-type: application/xml" \ -i -H "Accept: application/xml" \ -X POST \ " api_key=apikey" \ -d@customobject-save.xml \ tidy --show-warnings no -xml -i -q customobject-save.xml CustomObject xmlns=" <name>customobjectsave</name> <type>action</type> <params> <customobjectparam> <variablename>var </variablename> <displayname>displayname </displayname> </customobjectparam> <customobjectparam> <variablename>var </variablename> <displayname>displayname </displayname> </customobjectparam> </params> <description>description </description> <source>import com.axeda.*</source> <languagetype>groovy</languagetype> </CustomObject> Related Links Custom Object APIs on page 20 Custom object APIs enable you to create, read, update, and delete custom objects. Custom Object Group Object APIs Custom object group object APIs enable you to create, read, update, and delete custom object groups. A custom object group enables you to manage multiple custom objects as a group. For more information about custom object groups and the available APIs, see the following: Axeda Platform Axeda v2 API/Services Developer s Reference: CustomObjectGroupBridge Axeda Platform Axeda v2 API/Services Developer s Reference: CustomObjectGroupBridge: Methods Axeda Platform Axeda v2 API/Services Developer s Reference: CustomObjectGroupBridge: REST Examples CustomObjectGroupBridge.html 22

23 2 Mashery API Reference Custom Object Group Object APIs Creates a custom object group based on the custom object group property values. Deletes a custom object group. Finds a custom object group based on alternate identifier. Finds custom object groups that match the specified search criteria. Finds custom object groups based on identifiers in the request body. Returns the custom object group based on the specified system identifier. Finds the first custom object group that matches the specified criteria. Creates or updates a custom object group. properties of an existing custom object group. Creates one or more custom object groups. Deletes one or more custom object groups. rest/customobjectgroup DELETE rest/customobjectgroup/id/systemid rest/customobjectgroup/alternateid rest/customobjectgroup/find rest/customobjectgroup/findbyids rest/customobjectgroup/id/systemid rest/customobjectgroup/findone rest/customobjectgroup rest/customobjectgroup/id/systemid rest/customobjectgroup/bulk/create rest/customobjectgroup/bulk/delete 23

24 Wind River Intelligent Device Platform XT EMS Profile Wind River EMS Device Management User's Guide, 1.0 Creates or updates one or more custom object groups. properties of one or more custom object groups. rest/customobjectgroup/bulk/save rest/customobjectgroup/bulk/update Data Item Object APIs Data item object APIs enable you to create, read, update, and delete data items on an asset or group of assets. Data items represent data sent between a device and the EMS server. Data items can be associated with an external data source, such as a sensor. The APIs operate on data items on the asset created using the Axeda Builder. For more information about data items and the available APIs, see the following: Axeda Platform Axeda v2 API/Services Developer s Reference: Data Items Axeda Platform Axeda v2 API/Services Developer s Reference: DataItemsBridge: Methods Axeda Platform Axeda v2 API/Services Developer s Reference: DataItemsBridge: REST Examples Creates a data item based on the data item property values. Deletes a data item. Finds a data item based on alternate identifier. Finds a data item based on system identifier. rest/dataitem DELETE rest/dataitem/id/systemid rest/dataitem/alternateid rest/dataitem/id/systemid 24

25 2 Mashery API Reference Data Item Object APIs Finds data items that match the specified search criteria. Finds data items based on data item identifiers in the request body. Returns the current data item values. Finds the first data item that matches the specified criteria. Creates or updates a data item. Returns the historical values of a data item. properties of an existing data item. Creates one or more data items. Deletes one or more data items. Creates or updates one or more data items. properties of one or more data items. rest/dataitem/find rest/dataitem/findbyids rest/dataitem/findcurrentvalues rest/dataitem/findone rest/dataitem rest/dataitem/findhistoricalvalues rest/dataitem/id/systemid rest/dataitem/bulk/create rest/dataitem/bulk/delete rest/dataitem/bulk/save rest/dataitem/bulk/update Related Links Data Item Examples on page 26 25

26 Wind River Intelligent Device Platform XT EMS Profile Wind River EMS Device Management User's Guide, 1.0 Data Item examples demonstrate selected methods in XML format. Data Item Examples Data Item examples demonstrate selected methods in XML format. The following examples show requests using the Linux curl command and show the request body in an XML file. create This example shows a request to create a data item on an asset. The request body identifies the asset by the model id="windrivermodel". $ curl -k --stderr /dev/null \ -i -H "Content-type: application/xml" \ -i -H "Accept: application/xml" \ -X PUT \ " api_key=apikey" \ -d@dataitem-create.xml \ tidy --show-warnings no -xml -i -q dataitem-create.xml <v2:dataitem xmlns:v2=" <v2:name>testdataitem_deleteme</v2:name> <ns85:model id="windrivermodel" xsi:type="ns85:modelreference" xmlns:ns85=" xmlns:xsi=" <v2:type>string</v2:type> </v2:dataitem> find (by identifier) This example shows a request to find a data item based on the system identifier specified in the REST call. $ curl -k --stderr /dev/null \ -i -H "Content-type: application/xml" \ -i -H "Accept: application/xml" \ -X GET \ " api_key=keyval" \ tidy --show-warnings no -xml -i -q findcurrentvalues This example shows a request to find current value of data items for the asset specified in the request body. $ curl -k --stderr /dev/null \ -i -H "Content-type: application/xml" \ -i -H "Accept: application/xml" \ -X POST \ " findcurrentvalues?api_key=apikey" \ -d@dataitem-findcurrentvalues.xml \ tidy --show-warnings no -xml -i -q 26

27 2 Mashery API Reference Deployment Object APIs dataitem-findcurrentvalues.xml <v2:currentdataitemvaluecriteria sortascending="true" sortpropertyname="name" xmlns:v2=" xmlns:xsi=" XMLSchema-instance"> <v2:assetid>42</v2:assetid> </v2:currentdataitemvaluecriteria> Related Links Data Item Object APIs on page 24 Data item object APIs enable you to create, read, update, and delete data items on an asset or group of assets. Deployment Object APIs Deployment object APIs enable you to create, read, update, and delete the objects that control software packages that are delivered to an EMS agent. Deployment objects control the deployment of software packages to an EMS agent running on an asset. Deployments must reference a software package. For more information about deployments and the available APIs, see the following: Axeda Platform Axeda v2 API/Services Developer s Reference: Files and Packages Axeda Platform Axeda v2 API/Services Developer s Reference: DeploymentBridge: Methods Axeda Platform Axeda v2 API/Services Developer s Reference: DeploymentBridge: REST Examples Cancels a deployment. Creates a deployment based on the deployment property values. Deletes a deployment. Finds deployments that match the specified search criteria. rest/deployment/id/systemid/cancel rest/deployment DELETE rest/deployment/id/systemid rest/deployment/find 27

28 Wind River Intelligent Device Platform XT EMS Profile Wind River EMS Device Management User's Guide, 1.0 Finds deployments based on deployment identifiers in the request body. Returns a deployment with the specified system identifier. Finds the first deployment that matches the specified criteria. Redeploys a deployment. Creates or updates a deployment. properties of an existing deployment. Creates one or more deployments. Deletes one or more deployments. Creates or updates one or more deployments. properties of one or more deployments. rest/deployment/findbyids rest/deployment/id/systemid rest/deployment/findone rest/deployment/id/systemid/redeploy rest/deployment rest/deployment/id/systemid rest/deployment/bulk/create rest/deployment/bulk/delete rest/deployment/bulk/save rest/deployment/bulk/update Expression Rule Object APIs Expression rule object APIs enable you to create, read, update and delete expression rules. You use expression rules to evaluate a condition and take a specified action based on the value. The format of an expression rule is if-then-else. For more information about expression rules and the available APIs, see the following: Axeda Platform Axeda v2 API/Services Developer s Reference: Expression Rules 28

29 2 Mashery API Reference Expression Rule Object APIs Axeda Platform Axeda v2 API/Services Developer s Reference: ExpressionRuleBridge: Methods Axeda Platform Axeda v2 API/Services Developer s Reference: ExpressionRuleBridge: REST Examples ExpressionRuleBridge.html Creates an expression rule based on the expression rule property values. Deletes an expression rule. Finds an expression rule based on alternate identifier. Finds expression rules that match the specified search criteria. Finds expression rules based on expression rule identifiers in the request body. Returns the expression rule with the specified system identifier. Finds the first expression rule that matches the specified criteria. Creates or updates an expression rule. properties of an existing expression rule. rest/expressionrule DELETE rest/expressionrule/id/systemid rest/expressionrule/alternateid rest/expressionrule/find rest/expressionrule/findbyids rest/expressionrule/id/systemid rest/expressionrule/findone rest/expressionrule rest/expressionrule/id/systemid 29

30 Wind River Intelligent Device Platform XT EMS Profile Wind River EMS Device Management User's Guide, 1.0 Validates the syntax of the expression rule. Creates one or more expression rules. Deletes one or more expression rules. Creates or updates one or more expression rules. properties of one or more expression rules. rest/expressionrule/validate rest/expressionrule/bulk/create rest/expressionrule/bulk/delete rest/expressionrule/bulk/save rest/expressionrule/bulk/update Related Links Expression Rule Examples on page 30 Expression Rule examples demonstrate selected methods in XML format. Expression Rule Examples Expression Rule examples demonstrate selected methods in XML format. The following examples show requests using the Linux curl command and show the request body in an XML file. create This example shows a request to create an expression rule with a DATA trigger. $ curl -k --stderr /dev/null \ -i -H "Content-type: application/xml" \ -i -H "Accept: application/xml" \ -X PUT \ " api_key=keyval" \ -d@expressionrule-create.xml \ tidy --show-warnings no -xml -i -q expressionrule-create.xml <?xml version="1.0" encoding="utf-8"?> <ExpressionRule xmlns=" <name>testexpressionrule</name> <type>data</type> <description>description</description> <ifexpression>true</ifexpression> <thenexpression>abs(1)</thenexpression> <elseexpression>now()</elseexpression> <consecutive>true</consecutive> <applytoall>false</applytoall> <enabled>false</enabled> 30

31 2 Mashery API Reference Extended Application Object APIs <standalone>true</standalone> </ExpressionRule> find (by criteria) This example shows a request to find an expression rule based on the rule name in the request body. $ curl -k --stderr /dev/null \ -i -H "Content-type: application/xml" \ -i -H "Accept: application/xml" \ -X POST \ " api_key=keyval" \ -d@expressionrule-findbycriteria.xml \ tidy --show-warnings no -xml -i -q expressionrule-findbycriteria.xml <?xml version="1.0" encoding="utf-8"?> <ExpressionRuleCriteria xmlns=" <name>testexpressionrule</name> </ExpressionRuleCriteria> Related Links Expression Rule Object APIs on page 28 Expression rule object APIs enable you to create, read, update and delete expression rules. Extended Application Object APIs Extended Applications APIs enable you to create, read, update and delete Rich Internet Application objects. Extended Applications are Rich Internet Applications (RIA) hosted on the EMS Server, and can be uploaded from the EMS Console. The contents can be displayed using extended UI modules. For more information about extended applications and the available APIs, see the following: Axeda Platform Axeda v2 API/Services Developer s Reference: ExtendedApplicationBridge: Methods Axeda Platform Axeda v2 API/Services Developer s Reference: ExtendedApplicationBridge: REST Examples Creates an extended application based on the extended application property values. rest/extendedapplication 31

32 Wind River Intelligent Device Platform XT EMS Profile Wind River EMS Device Management User's Guide, 1.0 Deletes an extended application. Finds an extended application based on an alternate identifier. Finds extended applications that match the specified search criteria. Finds extended applications based on system identifiers in the request body. Returns the extended application based on the specified system identifier. Finds the first extended application that matches the specified criteria. Creates or updates an extended application. properties of an existing extended application. Creates one or more extended applications. Deletes one or more extended applications. Creates or updates one or more extended applications. properties of one or more extended applications. DELETE rest/extendedapplication/id/systemid rest/extendedapplication/alternateid rest/extendedapplication/find rest/extendedapplication/findbyids rest/extendedapplication/id/systemid rest/extendedapplication/findone rest/extendedapplication rest/extendedapplication/id/systemid rest/extendedapplication/bulk/create rest/extendedapplication/bulk/delete rest/extendedapplication/bulk/save rest/extendedapplication/bulk/update 32

33 2 Mashery API Reference Extended List Object APIs Extended List Object APIs Extended list object APIs enable you to create, read, update, and delete extended lists.. An extended list is an ordered list of up to 1000 unique string entries. For more information about extended lists and the available APIs, see the following: Axeda Platform Axeda v2 API/Services Developer s Reference: ExtendedListBridge: Methods Axeda Platform Axeda v2 API/Services Developer s Reference: ExtendedListBridge: REST Examples ExtendedListBridge.html Adds a value to an existing extended list. Creates an extended list based on the extended list property values. Deletes an extended list. Finds an extended list based on the alternate identifier, which is the same as the system identifier. Finds extended lists that match the specified search criteria. Finds extended lists based on extended list identifiers in the request body. PUT services/v1/rest/extendedlist/alternateid PUT services/v1/rest/extendedlist DELETE services/v1/rest/extendedlist/id/systemid GET services/v1/rest/extendedlist/systemid POST services/v1/rest/extendedlist/find POST services/v1/rest/extendedlist/findbyids 33

34 Wind River Intelligent Device Platform XT EMS Profile Wind River EMS Device Management User's Guide, 1.0 Returns the extended list based on the specified system identifier. Finds the first extended list that matches the specified criteria. Removes a value from an extended list. Creates or updates an extended list. properties of an existing extended list. Creates one or more extended lists. Deletes one or more extended lists. Creates or updates one or more extended lists. properties of one or more extended lists. GET services/v1/rest/extendedlist/id/systemid POST services/v1/rest/extendedlist/findone DELETE services/v1/rest/extendedlist/id/systemid POST services/v1/rest/extendedlist POST services/v1/rest/extendedlist/id/systemid POST services/v1/rest/extendedlist/bulk/create POST services/v1/rest/extendedlist/bulk/delete POST services/v1/rest/extendedlist/bulk/save POST services/v1/rest/extendedlist/bulk/update Extended Map Object APIs Extended map object APIs enable you to create, read, update and delete extended maps. An extended map is an ordered list of up to 1000 unique string name-value pairs. For more information about extended maps and the available APIs, see the following: Axeda Platform Axeda v2 API/Services Developer s Reference: ExtendedMapBridge: Methods 34

35 2 Mashery API Reference Extended Map Object APIs Axeda Platform Axeda v2 API/Services Developer s Reference: ExtendedMapBridge: REST Examples ExtendedMapBridge.html Adds a value to an existing extended map. Creates an extended map based on the extended map property values. Deletes the contents of an extended map. Finds an extended map based on the alternate or system identifier, which are the same value. Finds extended maps that match the specified search criteria. Finds extended lists based on extended map identifiers in the request body. Finds the first extended map that matches the specified criteria. Creates one or more extended maps. Deletes the contents of one or more extended maps. Creates or updates one or more extended maps. rest/extendedmap/systemid/key rest/extendedmap DELETE rest/extendedmap/id/systemid rest/extendedmap/systemid rest/extendedmap/id/systemid rest/extendedmap/find rest/extendedmap/findbyids rest/extendedmap/findone rest/extendedmap/bulk/create rest/extendedmap/bulk/delete rest/extendedmap/bulk/save 35

36 Wind River Intelligent Device Platform XT EMS Profile Wind River EMS Device Management User's Guide, 1.0 properties of one or more extended maps. rest/extendedmap/bulk/update Extended UI Module Object APIs Extended UI Model object APIs enable you to create, read, update and delete extended UI modules. You use extended UI modules to create custom applications in the EMS Console using either custom objects or extended applications. For more information about Extended UI Modules and the available APIs, see the following: Axeda Platform Axeda v2 API/Services Developer s Reference: ExtendedUIModuleBridge Axeda Platform Axeda v2 API/Services Developer s Reference: ExtendedUIModuleBridge: Methods Axeda Platform Axeda v2 API/Services Developer s Reference: ExtendedUIModuleBridge: REST Examples ExtendedUIModuleBridge.html Creates an extended UI module based on the extended UI module property values. Deletes an extended UI module. Finds extended UI modules that match the specified search criteria. Finds extended UI modules based on extended UI module identifiers in the request body. rest/extendeduimodule DELETE rest/extendeduimodule/id/systemid rest/extendeduimodule/find rest/extendeduimodule/findbyids 36

37 2 Mashery API Reference External Credential Object APIs Returns the extended UI module based on the specified system identifier. Finds the first extended UI Module that matches the specified criteria. Creates or updates an extended UI module. properties of an existing extended UI Module. Creates one or more extended UI modules. Deletes one or more extended UI modules. Creates or updates one or more extended UI modules. properties of one or more extended UI modules. rest/extendeduimodule/id/systemid rest/extendeduimodule/findone rest/extendeduimodule rest/extendeduimodule/id/systemid rest/extendeduimodule/bulk/create rest/extendeduimodule/bulk/delete rest/extendeduimodule/bulk/save rest/extendeduimodule/bulk/update External Credential Object APIs External credential object APIs enable you to create, read, update and delete external credentials that determine access to the EMS Server. External credentials are name-value pairs, and can be applied to user groups. For more information about External Credentials and the available APIs, see the following: Axeda Platform Axeda v2 API/Services Developer s Reference: ExternalCredentialBridge: Methods Axeda Platform Axeda v2 API/Services Developer s Reference: ExternalCredentialBridge: REST Examples 37

38 Wind River Intelligent Device Platform XT EMS Profile Wind River EMS Device Management User's Guide, 1.0 Creates an external credential based on the external credential property values. Deletes an external credential. Finds external credentials that match the specified search criteria. Finds external credentials based on external credential identifiers in the request body. Returns the external credential based on system identifier. Finds the first external credential that matches the specified criteria. Creates or updates an external credential. properties of an existing external credential. Creates one or more external credentials. Deletes one or more external credentials. Creates or updates one or more external credentials. rest/externalcredential DELETE rest/externalcredential/id/systemid rest/externalcredential/find rest/externalcredential/findbyids rest/externalcredential/id/systemid rest/externalcredential/findone rest/externalcredential rest/externalcredential/id/systemid rest/externalcredential/bulk/create rest/externalcredential/bulk/delete rest/externalcredential/bulk/save 38

39 2 Mashery API Reference File Info Object APIs properties of one or more external credentials. rest/externalcredential/bulk/update File Info Object APIs File info object APIs enable you to create, read, update and delete information about a file. File info objects contain information about a specific file. All files uploaded to the EMS server must have an associated file info object. For more information about file info and the available APIs, see the following: Axeda Platform Axeda v2 API/Services Developer s Reference: Files and Packages Axeda Platform Axeda v2 API/Services Developer s Reference: FileInfoBridge: Methods Axeda Platform Axeda v2 API/Services Developer s Reference: FileInfoBridge: REST Examples Creates a file info based on the file info property values. Deletes a file info. Finds file infos that match the specified search criteria. Retrieves file contents as a stream of bytes Returns the file upload progress. Lists the file info by criteria. Creates or updates a file info. rest/file DELETE rest/file/systemid rest/file/find rest/file/systemid/download rest/file/systemid/progress rest/file/list rest/file/save 39

40 Wind River Intelligent Device Platform XT EMS Profile Wind River EMS Device Management User's Guide, 1.0 Creates or updates a file info and uploads its contents to the EMS Server. properties of a file info. Uploads file contents. rest/file rest/file/systemid rest/file/systemid/content File Upload Session Object APIs File upload session object APIs enable you to create and read file uploads sessions to manage file uploads. File sessions are used to manage file uploads, which must be associated with a file upload sessions. You cannot delete or updated a file upload session. For more information about file upload sessions and the available APIs, see the following: Axeda Platform Axeda v2 API/Services Developer s Reference: Files and Packages Axeda Platform Axeda v2 API/Services Developer s Reference: FileUploadSessionBridge: Methods Axeda Platform Axeda v2 API/Services Developer s Reference: FileUploadSessionBridge: REST Examples FileUploadSessionBridge.html Creates a file upload session based on the file upload session property values. Finds a file upload session based on the system identifier. Finds file upload sessions that match the specified search criteria. rest/file/session rest/file/session/systemid rest/file/session/list 40

SOA Software API Gateway Appliance 7.1.x Administration Guide

SOA Software API Gateway Appliance 7.1.x Administration Guide SOA Software API Gateway Appliance 7.1.x Administration Guide Trademarks SOA Software and the SOA Software logo are either trademarks or registered trademarks of SOA Software, Inc. Other product names,

More information

Oracle Enterprise Manager

Oracle Enterprise Manager Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for Microsoft Active Directory Release 12.1.0.1.0 E28548-04 February 2014 Microsoft Active Directory, which is included with Microsoft

More information

FileMaker Server 14. FileMaker Server Help

FileMaker Server 14. FileMaker Server Help FileMaker Server 14 FileMaker Server Help 2007 2015 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and FileMaker Go are trademarks

More information

FileMaker Server 10 Help

FileMaker Server 10 Help FileMaker Server 10 Help 2007-2009 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker, the file folder logo, Bento and the Bento logo

More information

Connection Broker Managing User Connections to Workstations and Blades, OpenStack Clouds, VDI, and more. Security Review

Connection Broker Managing User Connections to Workstations and Blades, OpenStack Clouds, VDI, and more. Security Review Connection Broker Managing User Connections to Workstations and Blades, OpenStack Clouds, VDI, and more Security Review Version 8.1 March 31, 2016 Contacting Leostream Leostream Corporation http://www.leostream.com

More information

Oracle Enterprise Manager

Oracle Enterprise Manager Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for Microsoft Internet Information Services Release 12.1.0.2.0 E28547-05 February 2014 This document provides a brief description

More information

Open EMS Suite. O&M Agent. Functional Overview Version 1.2. Nokia Siemens Networks 1 (18)

Open EMS Suite. O&M Agent. Functional Overview Version 1.2. Nokia Siemens Networks 1 (18) Open EMS Suite O&M Agent Functional Overview Version 1.2 Nokia Siemens Networks 1 (18) O&M Agent The information in this document is subject to change without notice and describes only the product defined

More information

FileMaker Server 13. Custom Web Publishing with PHP

FileMaker Server 13. Custom Web Publishing with PHP FileMaker Server 13 Custom Web Publishing with PHP 2007 2013 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks

More information

Connection Broker Managing User Connections to Workstations, Blades, VDI, and more. Security Review

Connection Broker Managing User Connections to Workstations, Blades, VDI, and more. Security Review Connection Broker Managing User Connections to Workstations, Blades, VDI, and more Security Review Version 8.1 October 21, 2015 Contacting Leostream Leostream Corporation http://www.leostream.com 465 Waverley

More information

FileMaker Server 13. FileMaker Server Help

FileMaker Server 13. FileMaker Server Help FileMaker Server 13 FileMaker Server Help 2010-2013 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks of FileMaker,

More information

FileMaker Server 12. Custom Web Publishing with PHP

FileMaker Server 12. Custom Web Publishing with PHP FileMaker Server 12 Custom Web Publishing with PHP 2007 2012 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks

More information

OnCommand Performance Manager 1.1

OnCommand Performance Manager 1.1 OnCommand Performance Manager 1.1 Installation and Setup Guide For Red Hat Enterprise Linux NetApp, Inc. 495 East Java Drive Sunnyvale, CA 94089 U.S. Telephone: +1 (408) 822-6000 Fax: +1 (408) 822-4501

More information

FileMaker Server 11. FileMaker Server Help

FileMaker Server 11. FileMaker Server Help FileMaker Server 11 FileMaker Server Help 2010 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker, Inc. registered

More information

Building and Deploying Enterprise M2M Applications with Axeda Platform

Building and Deploying Enterprise M2M Applications with Axeda Platform w h i t e p a p e r Building and Deploying Enterprise M2M Applications with Axeda Platform According to Harbor Research, there are billions of wired and wireless intelligent assets around the globe that

More information

Trend Micro KASEYA INTEGRATION GUIDE

Trend Micro KASEYA INTEGRATION GUIDE Trend Micro KASEYA INTEGRATION GUIDE INTRODUCTION Trend Micro Worry-Free Business Security Services is a server-free security solution that provides protection anytime and anywhere for your business data.

More information

Advanced Configuration Steps

Advanced Configuration Steps Advanced Configuration Steps After you have downloaded a trial, you can perform the following from the Setup menu in the MaaS360 portal: Configure additional services Configure device enrollment settings

More information

Oracle Enterprise Manager

Oracle Enterprise Manager Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for EMC Symmetrix DMX System Release 12.1.0.2.0 E27543-03 February 2014 This document provides installation and configuration instructions

More information

Perceptive Intelligent Capture Solution Configration Manager

Perceptive Intelligent Capture Solution Configration Manager Perceptive Intelligent Capture Solution Configration Manager Installation and Setup Guide Version: 1.0.x Written by: Product Knowledge, R&D Date: February 2016 2015 Lexmark International Technology, S.A.

More information

Data Mailbox. support.ewon.biz. Reference Guide

Data Mailbox. support.ewon.biz. Reference Guide Reference Guide RG 005-0-EN / Rev. 1.0 Data Mailbox The Data Mailbox is a Talk2M service that gathers ewon historical data and makes it available for third party applications in an easy way. support.ewon.biz

More information

FileMaker Server 12. FileMaker Server Help

FileMaker Server 12. FileMaker Server Help FileMaker Server 12 FileMaker Server Help 2010-2012 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker, Inc.

More information

AWS Plug-in Guide. Qlik Sense 1.1 Copyright 1993-2015 QlikTech International AB. All rights reserved.

AWS Plug-in Guide. Qlik Sense 1.1 Copyright 1993-2015 QlikTech International AB. All rights reserved. AWS Plug-in Guide Qlik Sense 1.1 Copyright 1993-2015 QlikTech International AB. All rights reserved. Copyright 1993-2015 QlikTech International AB. All rights reserved. Qlik, QlikTech, Qlik Sense, QlikView,

More information

MaaS360 Cloud Extender

MaaS360 Cloud Extender MaaS360 Cloud Extender Installation Guide Copyright 2013 Fiberlink Communications Corporation. All rights reserved. Information in this document is subject to change without notice. The software described

More information

FileMaker Server 9. Custom Web Publishing with PHP

FileMaker Server 9. Custom Web Publishing with PHP FileMaker Server 9 Custom Web Publishing with PHP 2007 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker,

More information

MaaS360 On-Premises Cloud Extender

MaaS360 On-Premises Cloud Extender MaaS360 On-Premises Cloud Extender Installation Guide Copyright 2014 Fiberlink Communications Corporation. All rights reserved. Information in this document is subject to change without notice. The software

More information

An Oracle White Paper September 2013. Oracle WebLogic Server 12c on Microsoft Windows Azure

An Oracle White Paper September 2013. Oracle WebLogic Server 12c on Microsoft Windows Azure An Oracle White Paper September 2013 Oracle WebLogic Server 12c on Microsoft Windows Azure Table of Contents Introduction... 1 Getting Started: Creating a Single Virtual Machine... 2 Before You Begin...

More information

Administrator s Guide for the Polycom Video Control Application (VCA)

Administrator s Guide for the Polycom Video Control Application (VCA) Administrator s Guide for the Polycom Video Control Application (VCA) Version 1.1 November 2007 Edition 3725-26448-004/A Trademark Information Polycom and the Polycom logo design are registered trademarks

More information

About the VM-Series Firewall

About the VM-Series Firewall About the VM-Series Firewall Palo Alto Networks VM-Series Deployment Guide PAN-OS 6.1 Contact Information Corporate Headquarters: Palo Alto Networks 4401 Great America Parkway Santa Clara, CA 95054 http://www.paloaltonetworks.com/contact/contact/

More information

Learn More MaaS360 Cloud Extender Checklist (MDM for Blackberry)

Learn More MaaS360 Cloud Extender Checklist (MDM for Blackberry) Learn More MaaS360 Cloud Extender Checklist (MDM for Blackberry) June 2011 Copyright 2011 Fiberlink Communications Corporation. All rights reserved. Information in this document is subject to change without

More information

Symantec On-Demand Protection 2.6 Juniper IVE SSL VPN 5.2 Integration Guide

Symantec On-Demand Protection 2.6 Juniper IVE SSL VPN 5.2 Integration Guide Symantec On-Demand Protection 2.6 Juniper IVE SSL VPN 5.2 Integration Guide Symantec On-Demand 2.6/Juniper IVE 5.2 SSL VPN Integration Guide ii Preface Copyright Information: Symantec Corporation Copyright

More information

Polycom CMA System Upgrade Guide

Polycom CMA System Upgrade Guide Polycom CMA System Upgrade Guide 5.0 May 2010 3725-77606-001C Trademark Information Polycom, the Polycom Triangles logo, and the names and marks associated with Polycom s products are trademarks and/or

More information

Learn More Cloud Extender Requirements Cheat Sheet

Learn More Cloud Extender Requirements Cheat Sheet Learn More Cloud Extender Requirements Cheat Sheet Overview This document defines all requirements to ensure a successful installation of the MaaS360 Cloud Extender to enable use of ActiveSync Manager

More information

Monitor Print Popup for Mac. Product Manual. www.monitorbm.com

Monitor Print Popup for Mac. Product Manual. www.monitorbm.com Monitor Print Popup for Mac Product Manual www.monitorbm.com Monitor Print Popup for Mac Product Manual Copyright 2013 Monitor Business Machines Ltd The software contains proprietary information of Monitor

More information

Introduction to Mobile Access Gateway Installation

Introduction to Mobile Access Gateway Installation Introduction to Mobile Access Gateway Installation This document describes the installation process for the Mobile Access Gateway (MAG), which is an enterprise integration component that provides a secure

More information

CA Nimsoft Monitor. Probe Guide for Cloud Monitoring Gateway. cuegtw v1.0 series

CA Nimsoft Monitor. Probe Guide for Cloud Monitoring Gateway. cuegtw v1.0 series CA Nimsoft Monitor Probe Guide for Cloud Monitoring Gateway cuegtw v1.0 series Legal Notices This online help system (the "System") is for your informational purposes only and is subject to change or withdrawal

More information

CRM to Exchange Synchronization

CRM to Exchange Synchronization CRM to Exchange Synchronization Installation, Configuration and End-User Instructions VERSION 1.0 DATE PREPARED: 9/1/2012 DEVELOPMENT: BRITE GLOBAL, INC. 2012 Brite Global, Incorporated. All rights reserved.

More information

Site Configuration SETUP GUIDE. Windows Hosts Single Workstation Installation. May08. May 08

Site Configuration SETUP GUIDE. Windows Hosts Single Workstation Installation. May08. May 08 Site Configuration SETUP GUIDE Windows Hosts Single Workstation Installation May08 May 08 Copyright 2008 Wind River Systems, Inc. All rights reserved. No part of this publication may be reproduced or transmitted

More information

TIBCO Administrator User s Guide. Software Release 5.7.1 March 2012

TIBCO Administrator User s Guide. Software Release 5.7.1 March 2012 TIBCO Administrator User s Guide Software Release 5.7.1 March 2012 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO SOFTWARE IS SOLELY

More information

System Services. Engagent System Services 2.06

System Services. Engagent System Services 2.06 System Services Engagent System Services 2.06 Overview Engagent System Services constitutes the central module in Engagent Software s product strategy. It is the glue both on an application level and on

More information

Intel IoT Gateway Software Development Kit SK100

Intel IoT Gateway Software Development Kit SK100 Intel IoT Gateway Software Development Kit SK100 Order No.: 331568-001 By using this document, in addition to any agreements you have with Intel, you accept the terms set forth below. You may not use or

More information

Setting Up Resources in VMware Identity Manager

Setting Up Resources in VMware Identity Manager Setting Up Resources in VMware Identity Manager VMware Identity Manager 2.4 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

Data Collection and Analysis: Get End-to-End Security with Cisco Connected Analytics for Network Deployment

Data Collection and Analysis: Get End-to-End Security with Cisco Connected Analytics for Network Deployment White Paper Data Collection and Analysis: Get End-to-End Security with Cisco Connected Analytics for Network Deployment Cisco Connected Analytics for Network Deployment (CAND) is Cisco hosted, subscription-based

More information

Dell One Identity Cloud Access Manager 8.0.1 - How to Configure Microsoft Office 365

Dell One Identity Cloud Access Manager 8.0.1 - How to Configure Microsoft Office 365 Dell One Identity Cloud Access Manager 8.0.1 - How to Configure Microsoft Office 365 May 2015 This guide describes how to configure Microsoft Office 365 for use with Dell One Identity Cloud Access Manager

More information

About the VM-Series Firewall

About the VM-Series Firewall About the VM-Series Firewall Palo Alto Networks VM-Series Deployment Guide PAN-OS 6.0 Contact Information Corporate Headquarters: Palo Alto Networks 4401 Great America Parkway Santa Clara, CA 95054 http://www.paloaltonetworks.com/contact/contact/

More information

An Oracle White Paper June 2014. Security and the Oracle Database Cloud Service

An Oracle White Paper June 2014. Security and the Oracle Database Cloud Service An Oracle White Paper June 2014 Security and the Oracle Database Cloud Service 1 Table of Contents Overview... 3 Security architecture... 4 User areas... 4 Accounts... 4 Identity Domains... 4 Database

More information

CA Nimsoft Monitor Snap

CA Nimsoft Monitor Snap CA Nimsoft Monitor Snap Configuration Guide for IIS Server Monitoring iis v1.5 series Legal Notices This online help system (the "System") is for your informational purposes only and is subject to change

More information

Polar Help Desk Installation Guide

Polar Help Desk Installation Guide Polar Help Desk Installation Guide Copyright (legal information) Copyright Polar 1995-2005. All rights reserved. The information contained in this document is proprietary to Polar and may not be used or

More information

MBAM Self-Help Portals

MBAM Self-Help Portals MBAM Self-Help Portals Authoring a self-help portal workflow for BitLocker Recovery Using Microsoft BitLocker Administration and Monitoring (MBAM) Technical White Paper Published: September 2011 Priyaa

More information

CA Unified Infrastructure Management

CA Unified Infrastructure Management CA Unified Infrastructure Management Probe Guide for IIS Server Monitoring iis v1.7 series Copyright Notice This online help system (the "System") is for your informational purposes only and is subject

More information

Qlik REST Connector Installation and User Guide

Qlik REST Connector Installation and User Guide Qlik REST Connector Installation and User Guide Qlik REST Connector Version 1.0 Newton, Massachusetts, November 2015 Authored by QlikTech International AB Copyright QlikTech International AB 2015, All

More information

Fairsail REST API: Guide for Developers

Fairsail REST API: Guide for Developers Fairsail REST API: Guide for Developers Version 1.02 FS-API-REST-PG-201509--R001.02 Fairsail 2015. All rights reserved. This document contains information proprietary to Fairsail and may not be reproduced,

More information

Copyright Pivotal Software Inc, 2013-2015 1 of 10

Copyright Pivotal Software Inc, 2013-2015 1 of 10 Table of Contents Table of Contents Getting Started with Pivotal Single Sign-On Adding Users to a Single Sign-On Service Plan Administering Pivotal Single Sign-On Choosing an Application Type 1 2 5 7 10

More information

Integrating with BarTender Integration Builder

Integrating with BarTender Integration Builder Integrating with BarTender Integration Builder WHITE PAPER Contents Overview 3 Understanding BarTender's Native Integration Platform 4 Integration Builder 4 Administration Console 5 BarTender Integration

More information

CLIENT CERTIFICATE (EAP-TLS USE)

CLIENT CERTIFICATE (EAP-TLS USE) PRIMEXIAQ & TEMP SERIES SENSORS CLIENT CERTIFICATE (EAP-TLS USE) SETUP GUIDE Doc Part No.: SNSDOC-055 01.26.15 Legal Notice Copyright 2015 Primex Wireless, Inc. All rights reserved. SNS is a trademark

More information

PANO MANAGER CONNECTOR FOR SCVMM& HYPER-V

PANO MANAGER CONNECTOR FOR SCVMM& HYPER-V PANO MANAGER CONNECTOR FOR SCVMM& HYPER-V Version 6.0.8 Published: DEC-2013 Updated: 24 MAR 2014 2005-2014 Propalms Ltd. All rights reserved. The information contained in this document represents the current

More information

Application Interface Services Server for Mobile Enterprise Applications Configuration Guide Tools Release 9.2

Application Interface Services Server for Mobile Enterprise Applications Configuration Guide Tools Release 9.2 [1]JD Edwards EnterpriseOne Application Interface Services Server for Mobile Enterprise Applications Configuration Guide Tools Release 9.2 E61545-01 October 2015 Describes the configuration of the Application

More information

Oracle Cloud. What s New for Oracle Compute Cloud Service (IaaS) Topics. July 2016. What's New for Oracle Compute Cloud Service (IaaS) Release 16.

Oracle Cloud. What s New for Oracle Compute Cloud Service (IaaS) Topics. July 2016. What's New for Oracle Compute Cloud Service (IaaS) Release 16. Oracle Cloud What's New for Oracle Compute Cloud Service (IaaS) Release 16.3 E71882-05 July 2016 What s New for Oracle Compute Cloud Service (IaaS) Learn about the new and changed features of Oracle Compute

More information

QuickStart Guide for Mobile Device Management

QuickStart Guide for Mobile Device Management QuickStart Guide for Mobile Device Management Version 8.5 Inventory Configuration Security Management Distribution JAMF Software, LLC 2012 JAMF Software, LLC. All rights reserved. JAMF Software has made

More information

CA Nimsoft Monitor. Probe Guide for IIS Server Monitoring. iis v1.5 series

CA Nimsoft Monitor. Probe Guide for IIS Server Monitoring. iis v1.5 series CA Nimsoft Monitor Probe Guide for IIS Server Monitoring iis v1.5 series Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and

More information

CARRIOTS TECHNICAL PRESENTATION

CARRIOTS TECHNICAL PRESENTATION CARRIOTS TECHNICAL PRESENTATION Alvaro Everlet, CTO alvaro.everlet@carriots.com @aeverlet Oct 2013 CARRIOTS TECHNICAL PRESENTATION 1. WHAT IS CARRIOTS 2. BUILDING AN IOT PROJECT 3. DEVICES 4. PLATFORM

More information

fåíéêåéí=péêîéê=^çãáåáëíê~íçêûë=dìáçé

fåíéêåéí=péêîéê=^çãáåáëíê~íçêûë=dìáçé fåíéêåéí=péêîéê=^çãáåáëíê~íçêûë=dìáçé Internet Server FileXpress Internet Server Administrator s Guide Version 7.2.1 Version 7.2.2 Created on 29 May, 2014 2014 Attachmate Corporation and its licensors.

More information

WatchDox SharePoint Beta Guide. Application Version 1.0.0

WatchDox SharePoint Beta Guide. Application Version 1.0.0 Application Version 1.0.0 Confidentiality This document contains confidential material that is proprietary WatchDox. The information and ideas herein may not be disclosed to any unauthorized individuals

More information

Oracle Cloud E66791-05

Oracle Cloud E66791-05 Oracle Cloud Using Oracle Managed File Transfer Cloud Service 16.2.5 E66791-05 June 2016 Oracle Managed File Transfer (MFT) is a standards-based, endto-end managed file gateway. Security is maintained

More information

Adaptive Server Enterprise

Adaptive Server Enterprise Using Backup Server with IBM Tivoli Storage Manager Adaptive Server Enterprise 15.7 DOCUMENT ID: DC01176-01-1570-01 LAST REVISED: September 2011 Copyright 2011 by Sybase, Inc. All rights reserved. This

More information

SDK Code Examples Version 2.4.2

SDK Code Examples Version 2.4.2 Version 2.4.2 This edition of SDK Code Examples refers to version 2.4.2 of. This document created or updated on February 27, 2014. Please send your comments and suggestions to: Black Duck Software, Incorporated

More information

Application Discovery Manager User s Guide vcenter Application Discovery Manager 6.2.1

Application Discovery Manager User s Guide vcenter Application Discovery Manager 6.2.1 Application Discovery Manager User s Guide vcenter Application Discovery Manager 6.2.1 This document supports the version of each product listed and supports all subsequent versions until the document

More information

EMC Documentum Connector for Microsoft SharePoint

EMC Documentum Connector for Microsoft SharePoint EMC Documentum Connector for Microsoft SharePoint Version 7.1 Installation Guide EMC Corporation Corporate Headquarters Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Legal Notice Copyright 2013-2014

More information

QuickStart Guide for Mobile Device Management. Version 8.6

QuickStart Guide for Mobile Device Management. Version 8.6 QuickStart Guide for Mobile Device Management Version 8.6 JAMF Software, LLC 2012 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate. JAMF

More information

Managing Linux Servers with System Center 2012 R2

Managing Linux Servers with System Center 2012 R2 Managing Linux Servers with System Center 2012 R2 System Center 2012 R2 Hands-on lab In this lab, you will use System Center 2012 R2 Operations Manager and System Center 2012 R2 Configuration Manager to

More information

CA APM Cloud Monitor. Scripting Guide. Release 8.2

CA APM Cloud Monitor. Scripting Guide. Release 8.2 CA APM Cloud Monitor Scripting Guide Release 8.2 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for

More information

Phone Manager Application Support JANUARY 2015 DOCUMENT RELEASE 4.2 APPLICATION SUPPORT

Phone Manager Application Support JANUARY 2015 DOCUMENT RELEASE 4.2 APPLICATION SUPPORT Phone Manager Application Support JANUARY 2015 DOCUMENT RELEASE 4.2 APPLICATION SUPPORT ZohoCRM NOTICE The information contained in this document is believed to be accurate in all respects but is not warranted

More information

OpenLDAP Oracle Enterprise Gateway Integration Guide

OpenLDAP Oracle Enterprise Gateway Integration Guide An Oracle White Paper June 2011 OpenLDAP Oracle Enterprise Gateway Integration Guide 1 / 29 Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

FileMaker Server 15. Getting Started Guide

FileMaker Server 15. Getting Started Guide FileMaker Server 15 Getting Started Guide 2007 2016 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and FileMaker Go are trademarks

More information

Tracking Network Changes Using Change Audit

Tracking Network Changes Using Change Audit CHAPTER 14 Change Audit tracks and reports changes made in the network. Change Audit allows other RME applications to log change information to a central repository. Device Configuration, Inventory, and

More information

CA Unified Infrastructure Management

CA Unified Infrastructure Management CA Unified Infrastructure Management Probe Guide for iseries Journal Message Monitoring journal v1.0 series Contact CA Contact CA Support For your convenience, CA Technologies provides one site where you

More information

FileMaker Server 14. Custom Web Publishing Guide

FileMaker Server 14. Custom Web Publishing Guide FileMaker Server 14 Custom Web Publishing Guide 2004 2015 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and FileMaker Go are trademarks

More information

NetIQ Sentinel 7.0.1 Quick Start Guide

NetIQ Sentinel 7.0.1 Quick Start Guide NetIQ Sentinel 7.0.1 Quick Start Guide April 2012 Getting Started Use the following information to get Sentinel installed and running quickly. Meeting System Requirements on page 1 Installing Sentinel

More information

AlienVault Unified Security Management (USM) 4.x-5.x. Deploying HIDS Agents to Linux Hosts

AlienVault Unified Security Management (USM) 4.x-5.x. Deploying HIDS Agents to Linux Hosts AlienVault Unified Security Management (USM) 4.x-5.x Deploying HIDS Agents to Linux Hosts USM 4.x-5.x Deploying HIDS Agents to Linux Hosts, rev. 2 Copyright 2015 AlienVault, Inc. All rights reserved. AlienVault,

More information

Installation Guide NetIQ AppManager

Installation Guide NetIQ AppManager Installation Guide NetIQ AppManager April 2016 www.netiq.com/documentation Legal Notice NetIQ AppManager is covered by United States Patent No(s): 05829001, 05986653, 05999178, 06078324, 06397359, 06408335.

More information

Avigilon Control Center System Integration Guide

Avigilon Control Center System Integration Guide Avigilon Control Center System Integration Guide with STENTOFON AlphaCom INT-STENTOFON-B-Rev3 Copyright 2013 Avigilon. All rights reserved. No copying, distribution, publication, modification, or incorporation

More information

New Features... 1 Installation... 3 Upgrade Changes... 3 Fixed Limitations... 4 Known Limitations... 5 Informatica Global Customer Support...

New Features... 1 Installation... 3 Upgrade Changes... 3 Fixed Limitations... 4 Known Limitations... 5 Informatica Global Customer Support... Informatica Corporation B2B Data Exchange Version 9.5.0 Release Notes June 2012 Copyright (c) 2006-2012 Informatica Corporation. All rights reserved. Contents New Features... 1 Installation... 3 Upgrade

More information

CA Identity Manager. Glossary. r12.5 SP8

CA Identity Manager. Glossary. r12.5 SP8 CA Identity Manager Glossary r12.5 SP8 This documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your informational

More information

Product Manual. MDM On Premise Installation Version 8.1. Last Updated: 06/07/15

Product Manual. MDM On Premise Installation Version 8.1. Last Updated: 06/07/15 Product Manual MDM On Premise Installation Version 8.1 Last Updated: 06/07/15 Parallels IP Holdings GmbH Vordergasse 59 8200 Schaffhausen Switzerland Tel: + 41 52 632 0411 Fax: + 41 52 672 2010 www.parallels.com

More information

FileMaker Server 15. Custom Web Publishing Guide

FileMaker Server 15. Custom Web Publishing Guide FileMaker Server 15 Custom Web Publishing Guide 2004 2016 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and FileMaker Go are trademarks

More information

Administration Quick Start

Administration Quick Start www.novell.com/documentation Administration Quick Start ZENworks 11 Support Pack 3 February 2014 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use of

More information

Citrix EdgeSight for Load Testing Installation Guide. Citrix EdgeSight for Load Testing 3.8

Citrix EdgeSight for Load Testing Installation Guide. Citrix EdgeSight for Load Testing 3.8 Citrix EdgeSight for Load Testing Installation Guide Citrix EdgeSight for Load Testing 3.8 Copyright Use of the product documented in this guide is subject to your prior acceptance of the End User License

More information

Mobile Labs Plugin for IBM Urban Code Deploy

Mobile Labs Plugin for IBM Urban Code Deploy Mobile Labs Plugin for IBM Urban Code Deploy Thank you for deciding to use the Mobile Labs plugin to IBM Urban Code Deploy. With the plugin, you will be able to automate the processes of installing or

More information

Sentinel EMS v7.1 Web Services Guide

Sentinel EMS v7.1 Web Services Guide Sentinel EMS v7.1 Web Services Guide ii Sentinel EMS Web Services Guide Document Revision History Part Number 007-011157-001, Revision E. Software versions 7.1 and later. Revision Action/Change Date A

More information

RingMaster Software Version 7.6 Web Services API User Guide

RingMaster Software Version 7.6 Web Services API User Guide RingMaster Software Version 7.6 Web Services API User Guide Release 7.6 31 October 2011 (Release Date) Copyright 2011, Juniper Networks, Inc. 1 Contents Overview Overview........................................................

More information

An Oracle White Paper June 2014. RESTful Web Services for the Oracle Database Cloud - Multitenant Edition

An Oracle White Paper June 2014. RESTful Web Services for the Oracle Database Cloud - Multitenant Edition An Oracle White Paper June 2014 RESTful Web Services for the Oracle Database Cloud - Multitenant Edition 1 Table of Contents Introduction to RESTful Web Services... 3 Architecture of Oracle Database Cloud

More information

WebSphere MQ Oracle Enterprise Gateway Integration Guide

WebSphere MQ Oracle Enterprise Gateway Integration Guide An Oracle White Paper June 2011 WebSphere MQ Oracle Enterprise Gateway Integration Guide 1 / 30 Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

Enhanced Connector Applications SupportPac VP01 for IBM WebSphere Business Events 3.0.0

Enhanced Connector Applications SupportPac VP01 for IBM WebSphere Business Events 3.0.0 Enhanced Connector Applications SupportPac VP01 for IBM WebSphere Business Events 3.0.0 Third edition (May 2012). Copyright International Business Machines Corporation 2012. US Government Users Restricted

More information

Developing Enterprise IoT Apps in Days or Weeks Not Months or Years. white paper

Developing Enterprise IoT Apps in Days or Weeks Not Months or Years. white paper Developing Enterprise IoT Apps in Days or Weeks Not Months or Years white paper EXECUTIVE SUMMARY Developers are building IoT applications to help companies reduce service and fuel costs, generate new

More information

Polycom RealPresence Resource Manager System Administrator s Guide

Polycom RealPresence Resource Manager System Administrator s Guide Polycom RealPresence Resource Manager System Administrator s Guide 7.0.0 August 2012 3725-72110-001A Trademark Information Polycom and the names and marks associated with Polycom's products are trademarks

More information

Avaya Contact Center Express Release 5.0 Database Deployment and Management User Guide

Avaya Contact Center Express Release 5.0 Database Deployment and Management User Guide Avaya Contact Center Express Release 5.0 Database Deployment and Management User Guide Release 5.0 August 2010 Contents Contents Preface........................................... 3 Purpose............................................

More information

Cloud Deployment Guide

Cloud Deployment Guide Cloud Deployment Guide Product Version: 1.2 Doc Rev 1.3 Last Updated: 15-Jan-15 Good Work TM Table of Contents Introduction What is the Cloud? 1 The Private Cloud 1 Good Work in the Cloud 1 Environment

More information

Securing Privileges in the Cloud. A Clear View of Challenges, Solutions and Business Benefits

Securing Privileges in the Cloud. A Clear View of Challenges, Solutions and Business Benefits A Clear View of Challenges, Solutions and Business Benefits Introduction Cloud environments are widely adopted because of the powerful, flexible infrastructure and efficient use of resources they provide

More information

Site Configuration SETUP GUIDE. Linux Hosts Shared File Server Installation. May08. May 08

Site Configuration SETUP GUIDE. Linux Hosts Shared File Server Installation. May08. May 08 Site Configuration SETUP GUIDE Linux Hosts Shared File Server Installation May08 May 08 Copyright 2008 Wind River Systems, Inc. All rights reserved. No part of this publication may be reproduced or transmitted

More information

InspecTView Highlights

InspecTView Highlights InspecTView auditing software acts like a security camera on your servers. It provides bulletproof video evidence of user sessions, significantly shortening investigation time. Every action performed by

More information

User Guide. Version R91. English

User Guide. Version R91. English AuthAnvil User Guide Version R91 English August 25, 2015 Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept EULATOS as updated from

More information

CA Nimsoft Monitor. Probe Guide for Performance Collector. perfmon v1.5 series

CA Nimsoft Monitor. Probe Guide for Performance Collector. perfmon v1.5 series CA Nimsoft Monitor Probe Guide for Performance Collector perfmon v1.5 series CA Nimsoft Monitor Copyright Notice This online help system (the "System") is for your informational purposes only and is subject

More information