aboutsummaryrefslogtreecommitdiffstats
path: root/profiles/http/src/main/resources/open-cli-schema/http/default_input_parameters_http.yaml
blob: 01a4e3fb877b4848997bd3f9b7db4388ce44173b (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
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