diff options
author | Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com> | 2017-12-21 12:44:57 +0530 |
---|---|---|
committer | Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com> | 2017-12-21 12:44:57 +0530 |
commit | 82b9e1fb1673b2ea2cf16c074ce0c76c200fff8a (patch) | |
tree | aecf13e01e0e5f74854f35c26ec89c36a58ba892 /profiles/http/src/main/resources | |
parent | e8e6e21d2ecf21920a338860ee21a11c6278caaf (diff) |
Add is_deafult_parm and is_default_attr
Issue-ID: CLI-66
Change-Id: Id6789ffda5d8ae93f4927564844bde36ecd88678
Signed-off-by: Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
Diffstat (limited to 'profiles/http/src/main/resources')
-rw-r--r-- | profiles/http/src/main/resources/open-cli-schema/http/default_input_parameters_http.yaml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/profiles/http/src/main/resources/open-cli-schema/http/default_input_parameters_http.yaml b/profiles/http/src/main/resources/open-cli-schema/http/default_input_parameters_http.yaml index d7fbe03c..9029e273 100644 --- a/profiles/http/src/main/resources/open-cli-schema/http/default_input_parameters_http.yaml +++ b/profiles/http/src/main/resources/open-cli-schema/http/default_input_parameters_http.yaml @@ -13,6 +13,7 @@ parameters: long_option: host-username default_value: $s{env:OPEN_CLI_HOST_USERNAME} is_optional: false + is_default_param: true - name: host-password type: string description: Host user password @@ -21,6 +22,7 @@ parameters: default_value: $s{env:OPEN_CLI_HOST_PASSWORD} is_secured: true is_optional: false + is_default_param: true - name: host-url type: url description: host url in http(s) @@ -28,9 +30,11 @@ parameters: long_option: host-url is_optional: false default_value: $s{env:OPEN_CLI_HOST_URL} + is_default_param: 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 + default_value: false + is_default_param: true
\ No newline at end of file |