|
169 | 169 | def main():
|
170 | 170 | # Any additional arguments that are not fields of the item can be added here
|
171 | 171 | argument_spec = dict(
|
172 |
| - identifier=dict(required=True, type='str'), |
173 |
| - workflow_job_template=dict(required=True, type='str', aliases=['workflow']), |
174 |
| - organization=dict(type='str'), |
| 172 | + identifier=dict(required=True), |
| 173 | + workflow_job_template=dict(required=True, aliases=['workflow']), |
| 174 | + organization=dict(), |
175 | 175 | extra_data=dict(type='dict'),
|
176 |
| - inventory=dict(type='str'), |
177 |
| - scm_branch=dict(type='str'), |
178 |
| - job_type=dict(type='str', choices=['run', 'check']), |
179 |
| - job_tags=dict(type='str'), |
180 |
| - skip_tags=dict(type='str'), |
181 |
| - limit=dict(type='str'), |
| 176 | + inventory=dict(), |
| 177 | + scm_branch=dict(), |
| 178 | + job_type=dict(choices=['run', 'check']), |
| 179 | + job_tags=dict(), |
| 180 | + skip_tags=dict(), |
| 181 | + limit=dict(), |
182 | 182 | diff_mode=dict(type='bool'),
|
183 |
| - verbosity=dict(type='str', choices=['0', '1', '2', '3', '4', '5']), |
184 |
| - unified_job_template=dict(type='str'), |
| 183 | + verbosity=dict(choices=['0', '1', '2', '3', '4', '5']), |
| 184 | + unified_job_template=dict(), |
185 | 185 | all_parents_must_converge=dict(type='bool'),
|
186 | 186 | success_nodes=dict(type='list', elements='str'),
|
187 | 187 | always_nodes=dict(type='list', elements='str'),
|
|
0 commit comments