summaryrefslogtreecommitdiffstats
path: root/profiles/http/src/main/resources/open-cli-schema/http/default_input_parameters_http.yaml
blob: 3e9c1eeadbfdf59c9ead42192fd16be37f86387f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# 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

parameters:
  - name: host-username
    type: string
    description: Host user name
    short_option: u
    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
    short_option: p
    long_option: host-password
    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)
    short_option: m
    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
    is_default_param: true
  - name: no-catalog
    type: bool
    description: whether to use given host-url directly without looking into catalog, it will overrid the service->mode.
    short_option: C
    long_option: no-catalog
    is_optional: true
    is_default_param: true
    default_value: false
  - name: verify
    type: bool
    description: verify the command using available command sample file and mocking file. By default it goes with mock style. To enable the verification in real time, set DISABLE_MOCKING=true in the context param.
    default_value: false
    is_include: true
    is_optional: true