Add vlm-aggreement-create command 1.1 47/21247/1
authorKanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
Mon, 30 Oct 2017 08:58:38 +0000 (14:28 +0530)
committerKanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
Mon, 30 Oct 2017 08:58:38 +0000 (14:28 +0530)
CLI-57

Change-Id: Ibaaa5284cb88b5defb1ddc9cadfb05604156724e
Signed-off-by: Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
plugins/sdc/src/main/resources/onap-cli-schema/vlm/vlm-aggreement-create-schema-1.1.yaml [new file with mode: 0644]
plugins/sdc/src/test/resources/onap-cli-sample/vlm/vlm-aggreement-create-schema-1.1-moco.json [new file with mode: 0644]
plugins/sdc/src/test/resources/onap-cli-sample/vlm/vlm-aggreement-create-schema-1.1-sample.yaml [new file with mode: 0644]

diff --git a/plugins/sdc/src/main/resources/onap-cli-schema/vlm/vlm-aggreement-create-schema-1.1.yaml b/plugins/sdc/src/main/resources/onap-cli-schema/vlm/vlm-aggreement-create-schema-1.1.yaml
new file mode 100644 (file)
index 0000000..47540ee
--- /dev/null
@@ -0,0 +1,60 @@
+open_cli_schema_version: 1.0
+name: vlm-aggreement-create
+description: Create license aggreement
+version: onap-1.1
+service:
+  name: sdc
+  version: v1.0
+  auth: basic
+  mode: direct
+
+parameters:
+  - name: name
+    description: aggreement name
+    type: string
+    short_option: x
+    long_option: name
+    is_optional: false
+  - name: vlm-id
+    description: License Model ID
+    type: string
+    short_option: y
+    long_option: vlm-id
+    is_optional: false
+  - name: vlm-version
+    description: License Model version
+    type: string
+    short_option: e
+    long_option: vlm-version
+    is_optional: false
+  - name: description
+    description: Description for aggreement
+    type: string
+    short_option: z
+    long_option: description
+    is_optional: false
+  - name: vlm-feature-group-id
+    description: VLM feature group
+    type: string
+    short_option: g
+    long_option: vlm-feature-group-id
+    is_optional: false
+
+results:
+  direction: portrait
+  attributes:
+    - name: ID
+      description: aggreement ID
+      scope: short
+      type: string
+http:
+  request:
+    uri: /onboarding-api/v1.0/vendor-license-models/${vlm-id}/versions/${vlm-version}/license-agreements
+    method: POST
+    body: '{"addedFeatureGroupsIds": ["${vlm-feature-group-id}"], "description": "${description}", "licenseTerm": {"choice": "Fixed_Term", "other": ""}, "name": "${name}"}'
+  success_codes:
+    - 200
+  result_map:
+    ID: $b{$.value}
+  sample_response:
+    body: '{"value":"2DEB6CB4B082415BB7A697C9CD1273BA"}'
diff --git a/plugins/sdc/src/test/resources/onap-cli-sample/vlm/vlm-aggreement-create-schema-1.1-moco.json b/plugins/sdc/src/test/resources/onap-cli-sample/vlm/vlm-aggreement-create-schema-1.1-moco.json
new file mode 100644 (file)
index 0000000..4403879
--- /dev/null
@@ -0,0 +1,29 @@
+[ {
+  "request" : {
+    "method" : "post",
+    "uri" : "/onboarding-api/v1.0/vendor-license-models/cf2d907d998e44698ce3b4cded5f66a7/versions/1.1/license-agreements",
+    "headers" : {
+      "Authorization" : "Basic Y3MwMDA4OmRlbW8xMjM0NTYh",
+      "X-FromAppId" : "onap-cli",
+      "Accept" : "application/json",
+      "USER_ID" : "cs0008",
+      "X-TransactionId" : "req-4edc751f-3742-4381-b58b-86e6cf50fe78",
+      "Content-Type" : "application/json"
+    },
+    "json" : {
+      "addedFeatureGroupsIds" : [ "3a2fb75b52a54e9c8093e7c154210f9e" ],
+      "description" : "kanag cli la",
+      "licenseTerm" : {
+        "choice" : "Fixed_Term",
+        "other" : ""
+      },
+      "name" : "kanag-cli-la"
+    }
+  },
+  "response" : {
+    "status" : 200,
+    "json" : {
+      "value" : "77e151d0503b45ecb7e40f5f5f1a887e"
+    }
+  }
+} ]
\ No newline at end of file
diff --git a/plugins/sdc/src/test/resources/onap-cli-sample/vlm/vlm-aggreement-create-schema-1.1-sample.yaml b/plugins/sdc/src/test/resources/onap-cli-sample/vlm/vlm-aggreement-create-schema-1.1-sample.yaml
new file mode 100644 (file)
index 0000000..61e57bb
--- /dev/null
@@ -0,0 +1,14 @@
+onap_cli_sample_version: 1.0
+name: vlm-aggreement-create
+version: onap-1.1
+samples:
+  sample1:
+    name: vlm-aggreement-create
+    input: --name kanag-cli-la --description kanag cli la --vlm-feature-group-id 3a2fb75b52a54e9c8093e7c154210f9e --vlm-id cf2d907d998e44698ce3b4cded5f66a7 --vlm-version 1.1
+    moco: vlm-aggreement-create-schema-1.1-moco.json
+    ouput:|
+      +----------+----------------------------------+
+      |property  |value                             |
+      +----------+----------------------------------+
+      |ID        |77e151d0503b45ecb7e40f5f5f1a887e  |
+      +----------+----------------------------------+