summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorShadi Haidar <sh1986@att.com>2018-10-21 14:51:22 -0400
committerHaidar, Shadi (sh1986) <sh1986@att.com>2018-11-07 09:25:50 -0500
commitedb7b340c2f055af88e1ff9a4c7dfc0d51ac9b77 (patch)
treed13dc8e4dad93eee71fab752b299497acfbeca1f /docs
parente09d200eaf5a3b36652433f3b8581192d7e0b52b (diff)
xAdd application/component.
Change-Id: Ib60ef8f3e64aa03dfa49b7c542ac7bae1e25175f Issue-ID: DCAEGEN2-879 Signed-off-by: Shadi Haidar <sh1986@att.com> Signed-off-by: Haidar, Shadi (sh1986) <sh1986@att.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/API.md7
-rw-r--r--docs/DatabaseTables.md2
2 files changed, 9 insertions, 0 deletions
diff --git a/docs/API.md b/docs/API.md
index ec0ff89..c99eb1e 100644
--- a/docs/API.md
+++ b/docs/API.md
@@ -75,6 +75,9 @@ Get a list of `DCAEServiceType` objects.
|**Query**|**serviceLocation** <br>*optional*|Filter by associated service location. Instances with service location null or empty is always returned.|string||
|**Query**|**typeName** <br>*optional*|Filter by service type name|string||
|**Query**|**vnfType** <br>*optional*|Filter by associated vnf type. No wildcards, matches are explicit. This field is treated case insensitive.|string||
+|**Query**|**owner** <br>*optional*|Filter by owner name|string||
+|**Query**|**application** <br>*optional*|Filter by application name|string||
+|**Query**|**component** <br>*optional*|Filter by component name|string||
#### Responses
@@ -443,6 +446,8 @@ Remove an existing `DCAEService` object.
|**created** <br>*required*|Created timestamp for this DCAE service type in epoch time|string(date-time)|
|**deactivated** <br>*optional*|Deactivated timestamp for this DCAE service type in epoch time|string(date-time)|
|**owner** <br>*required*||string|
+|**application** <br>*optional*||string|
+|**component** <br>*optional*||string|
|**selfLink** <br>*required*|Link to self where the Link.title is typeName|[Link](#link)|
|**serviceIds** <br>*optional*|List of service ids that are used to associate with DCAE service type. DCAE service types with this propery as null or empty means them apply for every service id.|< string > array|
|**serviceLocations** <br>*optional*|List of service locations that are used to associate with DCAE service type. DCAE service types with this propery as null or empty means them apply for every service location.|< string > array|
@@ -462,6 +467,8 @@ Remove an existing `DCAEService` object.
|**asdcServiceURL** <br>*optional*|URL to the ASDC service model|string|
|**blueprintTemplate** <br>*required*|String representation of a Cloudify blueprint with unbound variables|string|
|**owner** <br>*required*||string|
+|**application** <br>*optional*||string|
+|**component** <br>*optional*||string|
|**serviceIds** <br>*optional*|List of service ids that are used to associate with DCAE service type. DCAE service types with this propery as null or empty means them apply for every service id.|< string > array|
|**serviceLocations** <br>*optional*|List of service locations that are used to associate with DCAE service type. DCAE service types with this propery as null or empty means them apply for every service location.|< string > array|
|**typeName** <br>*required*|Descriptive name for this DCAE service type|string|
diff --git a/docs/DatabaseTables.md b/docs/DatabaseTables.md
index 30f4f7b..48b2ba7 100644
--- a/docs/DatabaseTables.md
+++ b/docs/DatabaseTables.md
@@ -26,6 +26,8 @@ As of version 0.12.0.
asdc_resource_id | character varying | not null
created | timestamp without time zone | not null
is_active | boolean | not null
+ application | character varying |
+ component | character varying |
Indexes:
"pk_type_created" PRIMARY KEY, btree (type_id, created)
```