diff options
author | Parshad Patel <pars.patel@samsung.com> | 2019-02-13 18:10:36 +0900 |
---|---|---|
committer | Manzon, Inna (im453s) <im453s@intl.att.com> | 2019-02-27 17:35:18 +0200 |
commit | e4e4b6f8db3d1fade4648cb7ef220759c5b7f2cf (patch) | |
tree | 833b6dbb5c7dd74929183c9eff5c5e0c63b15efe /README.md | |
parent | fccd6f6c65f6a568b40db0bf89eaa9904441d929 (diff) |
README file updating - more info
Change-Id: Ie89b14869354caa0dac1d7cfe2221ec761a14bf6
Issue-ID: SDC-2057
Signed-off-by: Manzon, Inna (im453s) <im453s@intl.att.com>
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 20 |
1 files changed, 19 insertions, 1 deletions
@@ -146,4 +146,22 @@ This version is intended for SDN-C team usage only. ### Changes: 1. Bug fix in Policy metadata object getter (Jtosca) 2. NPE fix in Policy getTargets method (sdc-tosca) -3. Adding more getters to IEntityDetails interface for getEntity API introduced on 1.4.8 version. +3. Adding more getters to IEntityDetails interface for getEntity API introduced in 1.4.8 version: + + **getEntity** API retrieves details of one or more entity templates according to provided query parameters from corresponding topology template. + + **entityQuery** Object describing the searched entity parameters. Includes one of following parameters: entity type, + SDC (node template) type, tosca type as well as optional customizationUUID and UUID + If the parameter is null, the returned result will contain *all* entities that types are supported by SDC. + + **topologyTemplateQuery** parameters of the topology template containing the above entity. + Includes SDC type of the container and optional customizationUUID. + + **isRecursive** indicates if the search is recursive starting from the required topology template. + + Returns list of **IEntityDetails** objects containing information about the found entities. + If either no entities found or the provided query is incorrect, an empty list is returned. + + List<IEntityDetails> getEntity(EntityQuery entityQuery, TopologyTemplateQuery topologyTemplateQuery, boolean isRecursive); + + |