aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/main/resources/default_input_parameters.yaml
diff options
context:
space:
mode:
authorKanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>2017-07-19 15:14:29 +0530
committerKanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>2017-07-19 15:31:19 +0530
commitb610d2dbfa445e2ed8fd7f9976ae7a776666d630 (patch)
tree6d58385dc197aada4c6a832c922f04d0f4da61ad /framework/src/main/resources/default_input_parameters.yaml
parent20173579de1cd7d8f70fc2cdf17a4f9c0fc6e946 (diff)
Add seed code from Open-Orelease-1.0.0
It migrated the code from Open-O into onap namespace and adds the required framework, main, deployment and some sample plugins for msb. CLI-7 CLI-8 CLI-11 Change-Id: I499e34237daccb971ef74bd10e50f50707baa4d3 Signed-off-by: Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
Diffstat (limited to 'framework/src/main/resources/default_input_parameters.yaml')
-rw-r--r--framework/src/main/resources/default_input_parameters.yaml64
1 files changed, 64 insertions, 0 deletions
diff --git a/framework/src/main/resources/default_input_parameters.yaml b/framework/src/main/resources/default_input_parameters.yaml
new file mode 100644
index 00000000..f1e299eb
--- /dev/null
+++ b/framework/src/main/resources/default_input_parameters.yaml
@@ -0,0 +1,64 @@
+onap_cmd_schema_version: 1.0
+parameters:
+ - name: onap-username
+ type: string
+ description: Onap user name
+ short_option: u
+ long_option: onap-username
+ default_value: ${ONAP_USERNAME}
+ is_optional: false
+ - name: onap-password
+ type: string
+ description: Onap user password
+ short_option: p
+ long_option: onap-password
+ default_value: ${ONAP_PASSWORD}
+ is_secured: true
+ - name: msb-url
+ type: url
+ description: Onap MSB url
+ short_option: m
+ long_option: msb-url
+ default_value: ${ONAP_MSB_URL}
+ - name: help
+ type: string
+ description: Onap command help message
+ short_option: h
+ long_option: help
+ default_value: false
+ - name: version
+ type: string
+ description: Onap command service version
+ short_option: v
+ long_option: version
+ default_value: false
+ - name: debug
+ type: bool
+ description: Enable debug output
+ short_option: d
+ long_option: debug
+ default_value: false
+ - name: format
+ type: string
+ description: Output formats, supported formats such as table, csv, json, yaml
+ short_option: f
+ long_option: format
+ default_value: table
+ - name: long
+ type: bool
+ description: whether to print all attributes or only short attributes
+ short_option: s
+ long_option: long
+ default_value: false
+ - name: no-title
+ type: bool
+ description: whether to print title or not
+ short_option: t
+ long_option: no-title
+ default_value: true
+ - name: no-auth
+ type: bool
+ description: whether to authenticate user or not
+ short_option: a
+ long_option: no-auth
+ default_value: false \ No newline at end of file