|
1 | 1 | --- |
2 | | -url: |
3 | | - description: "URL of the JIRA instance (e.g. ``https://myproject.atlassian.net``)" |
4 | | - type: "string" |
5 | | - secret: false |
6 | | - required: true |
7 | | -verify: |
8 | | - description: "Verify SSL certificate. Set to False to disable verification. Default True" |
9 | | - type: boolean |
10 | | - default: True |
11 | | -auth_method: |
12 | | - description: "Authentication method to use - oauth or basic" |
13 | | - type: "string" |
14 | | - secret: false |
15 | | - required: true |
16 | | - default: "oauth" |
17 | | - enum: |
18 | | - - oauth |
19 | | - - basic |
20 | | -username: |
21 | | - description: "Username if using the basic auth_method" |
22 | | - type: "string" |
23 | | - secret: false |
24 | | - required: false |
25 | | -password: |
26 | | - description: "Password if using the basic auth_method" |
27 | | - type: "string" |
28 | | - secret: true |
29 | | - required: false |
30 | | -rsa_cert_file: |
31 | | - description: "Path to a private key file, e.g. /home/vagrant/jira.pem" |
32 | | - type: "string" |
33 | | - secret: false |
34 | | - required: false |
35 | | -oauth_token: |
36 | | - description: "OAuth token" |
37 | | - type: "string" |
38 | | - secret: true |
39 | | - required: false |
40 | | -oauth_secret: |
41 | | - description: "OAuth secret" |
42 | | - type: "string" |
43 | | - secret: true |
44 | | - required: false |
45 | | -consumer_key: |
46 | | - description: "Consumer key" |
47 | | - type: "string" |
48 | | - secret: true |
49 | | - required: false |
50 | | -poll_interval: |
51 | | - description: "Polling interval - default 30s" |
52 | | - type: "integer" |
53 | | - secret: false |
54 | | - required: false |
55 | | - default: 30 |
56 | | -project: |
57 | | - description: "Project to be used as default for actions that don't require or allow a project" |
58 | | - type: "string" |
59 | | - secret: false |
60 | | - required: true |
61 | | -validate: |
62 | | - description: "If true it will validate your credentials first." |
63 | | - type: boolean |
64 | | - default: false |
65 | | - required: false |
66 | | -client_cert_file: |
67 | | - description: "Path to a client cert file, e.g. /home/jiracerts/username.cer" |
68 | | - type: "string" |
69 | | - secret: false |
70 | | - required: false |
71 | | -client_key_file: |
72 | | - description: "Path to a client key file, e.g. /home/jiracerts/username.key" |
73 | | - type: "string" |
74 | | - secret: false |
75 | | - required: false |
| 2 | + url: |
| 3 | + description: "URL of the JIRA instance (e.g. ``https://myproject.atlassian.net``)" |
| 4 | + type: "string" |
| 5 | + secret: false |
| 6 | + required: true |
| 7 | + verify: |
| 8 | + description: "Verify SSL certificate. Set to False to disable verification. Default True" |
| 9 | + type: boolean |
| 10 | + default: True |
| 11 | + auth_method: |
| 12 | + description: "Authentication method to use - oauth or basic" |
| 13 | + type: "string" |
| 14 | + secret: false |
| 15 | + required: true |
| 16 | + default: "oauth" |
| 17 | + enum: |
| 18 | + - oauth |
| 19 | + - basic |
| 20 | + username: |
| 21 | + description: "Username if using the basic auth_method" |
| 22 | + type: "string" |
| 23 | + secret: false |
| 24 | + required: false |
| 25 | + password: |
| 26 | + description: "Password if using the basic auth_method" |
| 27 | + type: "string" |
| 28 | + secret: true |
| 29 | + required: false |
| 30 | + rsa_cert_file: |
| 31 | + description: "Path to a private key file, e.g. /home/vagrant/jira.pem" |
| 32 | + type: "string" |
| 33 | + secret: false |
| 34 | + required: false |
| 35 | + oauth_token: |
| 36 | + description: "OAuth token" |
| 37 | + type: "string" |
| 38 | + secret: true |
| 39 | + required: false |
| 40 | + oauth_secret: |
| 41 | + description: "OAuth secret" |
| 42 | + type: "string" |
| 43 | + secret: true |
| 44 | + required: false |
| 45 | + consumer_key: |
| 46 | + description: "Consumer key" |
| 47 | + type: "string" |
| 48 | + secret: true |
| 49 | + required: false |
| 50 | + poll_interval: |
| 51 | + description: "Polling interval - default 30s" |
| 52 | + type: "integer" |
| 53 | + secret: false |
| 54 | + required: false |
| 55 | + default: 30 |
| 56 | + project: |
| 57 | + description: "Project to be used as default for actions that don't require or allow a project" |
| 58 | + type: "string" |
| 59 | + secret: false |
| 60 | + required: true |
| 61 | + validate: |
| 62 | + description: "If true it will validate your credentials first." |
| 63 | + type: boolean |
| 64 | + default: false |
| 65 | + required: false |
| 66 | + client_cert_file: |
| 67 | + description: "Path to a client cert file, e.g. /home/jiracerts/username.cer" |
| 68 | + type: "string" |
| 69 | + secret: false |
| 70 | + required: false |
| 71 | + client_key_file: |
| 72 | + description: "Path to a client key file, e.g. /home/jiracerts/username.key" |
| 73 | + type: "string" |
| 74 | + secret: false |
| 75 | + required: false |
0 commit comments