aboutsummaryrefslogtreecommitdiffstats
path: root/products/onap-casablanca
diff options
context:
space:
mode:
authorKanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>2018-09-28 09:08:34 +0530
committerKanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>2018-09-28 09:08:34 +0530
commit2ec48c82f0dc43ffbc307f212a1b484c18a85701 (patch)
treea74cf61039e42509c58743daa1b9bf89581324a5 /products/onap-casablanca
parenta0b29ac3d64f0f5edc3fb3db2eb1de3a1ae0a0b3 (diff)
Casablanca: AAI customer-create
Issue-ID: CLI-122 Change-Id: Ia8fc46a6365d83001c4b43e12a25651eb4c0e0b1 Signed-off-by: Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
Diffstat (limited to 'products/onap-casablanca')
-rw-r--r--products/onap-casablanca/features/aai/src/main/resources/open-cli-sample/customer/customer-create-schema-casablanca-moco.json22
-rw-r--r--products/onap-casablanca/features/aai/src/main/resources/open-cli-sample/customer/customer-create-schema-casablanca-sample.yaml9
-rw-r--r--products/onap-casablanca/features/aai/src/main/resources/open-cli-schema/customer/customer-create-schema-casablanca.yaml47
3 files changed, 78 insertions, 0 deletions
diff --git a/products/onap-casablanca/features/aai/src/main/resources/open-cli-sample/customer/customer-create-schema-casablanca-moco.json b/products/onap-casablanca/features/aai/src/main/resources/open-cli-sample/customer/customer-create-schema-casablanca-moco.json
new file mode 100644
index 00000000..7ca8a6b7
--- /dev/null
+++ b/products/onap-casablanca/features/aai/src/main/resources/open-cli-sample/customer/customer-create-schema-casablanca-moco.json
@@ -0,0 +1,22 @@
+[ {
+ "request" : {
+ "method" : "put",
+ "uri" : "/aai/v13/business/customers/customer/mrkanag",
+ "headers" : {
+ "Authorization" : "Basic QUFJOkFBSQ==",
+ "X-FromAppId" : "ONAP CLI",
+ "Accept" : "application/json",
+ "X-TransactionId" : "req-5dc2d328-9cc0-4297-8d6c-2108ee9c9036",
+ "Content-Type" : "application/json"
+ },
+ "json" : {
+ "global-customer-id" : "mrkanag",
+ "subscriber-name" : "mrkanag",
+ "subscriber-type" : "INFRA"
+ }
+ },
+ "response" : {
+ "status" : 201,
+ "json" : null
+ }
+} ] \ No newline at end of file
diff --git a/products/onap-casablanca/features/aai/src/main/resources/open-cli-sample/customer/customer-create-schema-casablanca-sample.yaml b/products/onap-casablanca/features/aai/src/main/resources/open-cli-sample/customer/customer-create-schema-casablanca-sample.yaml
new file mode 100644
index 00000000..5764a36c
--- /dev/null
+++ b/products/onap-casablanca/features/aai/src/main/resources/open-cli-sample/customer/customer-create-schema-casablanca-sample.yaml
@@ -0,0 +1,9 @@
+open_cli_sample_version: 1.0
+name: customer-create
+version: onap-casablanca
+samples:
+ sample1:
+ name: customer-create
+ input: --customer-name mrkanag --subscriber-name mrkanag -d
+ moco: customer-create-schema-casablanca-moco.json
+ output: \ No newline at end of file
diff --git a/products/onap-casablanca/features/aai/src/main/resources/open-cli-schema/customer/customer-create-schema-casablanca.yaml b/products/onap-casablanca/features/aai/src/main/resources/open-cli-schema/customer/customer-create-schema-casablanca.yaml
new file mode 100644
index 00000000..9f998370
--- /dev/null
+++ b/products/onap-casablanca/features/aai/src/main/resources/open-cli-schema/customer/customer-create-schema-casablanca.yaml
@@ -0,0 +1,47 @@
+# 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: customer-create
+description: Create a customer in Onap
+
+info:
+ product: onap-casablanca
+ service: aai
+ author: ONAP CLI Team onap-discuss@lists.onap.org
+
+parameters:
+ - name: customer-name
+ description: Onap customer name
+ type: string
+ short_option: x
+ long_option: customer-name
+ is_optional: false
+ - name: subscriber-name
+ description: Onap subscriber name
+ type: string
+ short_option: y
+ long_option: subscriber-name
+ is_optional: false
+
+http:
+ service:
+ auth: basic
+ mode: direct
+ request:
+ uri: /aai/v13/business/customers/customer/${customer-name}
+ method: PUT
+ body: '{"global-customer-id": "${customer-name}", "subscriber-name": "${subscriber-name}", "subscriber-type": "INFRA"}'
+ success_codes:
+ - 201