Refactor AdminNotifier.
[arvados.git] / services / api / test / fixtures / pipeline_templates.yml
1 two_part:
2   uuid: zzzzz-p5p6p-aox0k0ofxrystgw
3   owner_uuid: zzzzz-tpzed-xurymjxw79nv3jz
4   created_at: 2014-04-14 12:35:04 -0400
5   updated_at: 2014-04-14 12:35:04 -0400
6   modified_at: 2014-04-14 12:35:04 -0400
7   modified_by_client_uuid: zzzzz-ozdt8-brczlopd8u8d0jr
8   modified_by_user_uuid: zzzzz-tpzed-xurymjxw79nv3jz
9   name: Two Part Pipeline Template
10   components:
11     part-one:
12       script: foo
13       script_version: master
14       script_parameters:
15         input:
16           required: true
17           dataclass: collection
18     part-two:
19       script: bar
20       script_version: master
21       script_parameters:
22         input:
23           output_of: part-one
24         integer_with_default:
25           default: 123
26         integer_with_value:
27           value: 123
28         string_with_default:
29           default: baz
30         string_with_value:
31           value: baz
32         plain_string: qux
33         array_with_default: # important to test repeating values in the array!
34           default: [1,1,2,3,5]
35         array_with_value: # important to test repeating values in the array!
36           value: [1,1,2,3,5]