summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>2018-09-28 10:19:07 +0530
committerKanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>2018-09-28 10:19:07 +0530
commitb30a0696077265e2c3159ddcf24fd4d81f9c0150 (patch)
tree872aaa45021eece1bfc21c79b6e327dd049e380f
parent52446fd26495ed43d63a5d39622742d20881cd49 (diff)
Casablanca: AAI service-type-list
Issue-ID: CLI-122 Change-Id: Ieebb5b31f566208409232e9e358b864f49693eb6 Signed-off-by: Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
-rw-r--r--products/onap-casablanca/features/aai/src/main/resources/open-cli-sample/service-type/service-type-list-schema-casablanca-moco.json24
-rw-r--r--products/onap-casablanca/features/aai/src/main/resources/open-cli-sample/service-type/service-type-list-schema-casablanca-sample.yaml9
-rw-r--r--products/onap-casablanca/features/aai/src/main/resources/open-cli-schema/service-type/service-type-list-schema-casablanca.yaml51
3 files changed, 84 insertions, 0 deletions
diff --git a/products/onap-casablanca/features/aai/src/main/resources/open-cli-sample/service-type/service-type-list-schema-casablanca-moco.json b/products/onap-casablanca/features/aai/src/main/resources/open-cli-sample/service-type/service-type-list-schema-casablanca-moco.json
new file mode 100644
index 00000000..a5f296b1
--- /dev/null
+++ b/products/onap-casablanca/features/aai/src/main/resources/open-cli-sample/service-type/service-type-list-schema-casablanca-moco.json
@@ -0,0 +1,24 @@
+[ {
+ "request" : {
+ "method" : "get",
+ "uri" : "/aai/v13/service-design-and-creation/services",
+ "headers" : {
+ "Authorization" : "Basic QUFJOkFBSQ==",
+ "X-FromAppId" : "ONAP CLI",
+ "Accept" : "application/json",
+ "X-TransactionId" : "req-5981353e-e760-4417-9700-181a07661817",
+ "Content-Type" : "application/json"
+ },
+ "json" : null
+ },
+ "response" : {
+ "status" : 200,
+ "json" : {
+ "service" : [ {
+ "service-id" : "a6402d68-0784-4972-aa99-c20caa46f459",
+ "service-description" : "vfw-in",
+ "resource-version" : "1538109817240"
+ } ]
+ }
+ }
+} ] \ No newline at end of file
diff --git a/products/onap-casablanca/features/aai/src/main/resources/open-cli-sample/service-type/service-type-list-schema-casablanca-sample.yaml b/products/onap-casablanca/features/aai/src/main/resources/open-cli-sample/service-type/service-type-list-schema-casablanca-sample.yaml
new file mode 100644
index 00000000..fe831ed9
--- /dev/null
+++ b/products/onap-casablanca/features/aai/src/main/resources/open-cli-sample/service-type/service-type-list-schema-casablanca-sample.yaml
@@ -0,0 +1,9 @@
+open_cli_sample_version: 1.0
+name: service-type-list
+version: onap-casablanca
+samples:
+ sample1:
+ name: service-type-list
+ input: -d
+ moco: service-type-list-schema-casablanca-moco.json
+ output: |
diff --git a/products/onap-casablanca/features/aai/src/main/resources/open-cli-schema/service-type/service-type-list-schema-casablanca.yaml b/products/onap-casablanca/features/aai/src/main/resources/open-cli-schema/service-type/service-type-list-schema-casablanca.yaml
new file mode 100644
index 00000000..0beb8625
--- /dev/null
+++ b/products/onap-casablanca/features/aai/src/main/resources/open-cli-schema/service-type/service-type-list-schema-casablanca.yaml
@@ -0,0 +1,51 @@
+# Copyright 2018 Huawei Technologies Co., Ltd.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+open_cli_schema_version: 1.0
+name: service-type-list
+description: List the service types configured in Onap
+
+info:
+ product: onap-casablanca
+ service: aai
+ author: ONAP CLI Team onap-discuss@lists.onap.org
+
+results:
+ direction: landscape
+ attributes:
+ - name: service-type-id
+ description: Onap cloud service
+ scope: short
+ type: string
+ - name: service-type
+ description: Onap cloud service
+ scope: short
+ type: string
+ - name: resource-version
+ description: Onap cloud service resource version
+ scope: short
+ type: string
+http:
+ service:
+ auth: basic
+ mode: direct
+ request:
+ uri: /aai/v13/service-design-and-creation/services
+ method: GET
+ success_codes:
+ - 200
+ result_map:
+ service-type: $b{service.[*].service-description}
+ service-type-id: $b{service.[*].service-id}
+ resource-version: $b{service.[*].resource-version}