-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathsample-config.json
39 lines (39 loc) · 980 Bytes
/
sample-config.json
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
{
"serverUsername" : "<username>",
"serverPassword" : "<password>",
"serverScheme" : "http",
"serverHost" : "some.other.server",
"serverPort" : "4502",
"batchSize" : 150,
"deltaContent" : true,
"pathConfigurations" : [
{
"path" : "/content/someContent",
"batchSize" : 50
},
{
"path" : "/content/someContent",
"batchSize" : 200,
"excludePaths" :
[
"someOtherContent/someExcludeContent"
]
},
{
"path" : "/content/dam/someDamContent",
"excludePaths":
[
"someContent/someExcludeContent",
"someContent/someOtherExcludeContent"
],
"workflowConfigIds" :
[
"/etc/workflow/launcher/config/update_asset_mod",
"/etc/workflow/launcher/config/update_asset_create",
"/etc/workflow/launcher/config/dam_xmp_nested_writeback",
"/etc/workflow/launcher/config/dam_xmp_writeback"
],
"deltaContent" : false
}
]
}