-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsample-config.json
89 lines (89 loc) · 2.09 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"Environments": [
{
"Name": "SampleEnvironment",
"Connection": {
"Provider": "Bootstrap",
"TNS": "TNSNAME",
"TNS_ADMIN": "/path/to/tns/names/ora",
"Schema": "%DB_SCHEMA%",
"BootstrapParameters": {
"User": "%DB_USER%",
"EncryptedPassword": "%DB_PASSWORD%"
}
}
}
],
"Profiles": [
{
"Name": "SampleProfile",
"DataProviders": [
"RawDataProcessor",
"HTMLProcessor",
"MessageCatalogProcessor",
"PeopleCodeProcessor",
"SQLProcessor",
"StylesheetProcessor",
"TranslateValueProcessor",
"RegistryProcessor"
],
"Filters": {
"Projects": [],
"Prefixes": [
"PREFIX_",
"WEBLIB_PREFIX_",
"FUNCLIB_PREFIX_"
],
"IncludeOprids": [],
"ExcludeOprids": [],
"MessageCatalogs": [
{
"Set": 1000,
"Min": 0,
"Max": 9999999
},
{
"Set": 2000,
"Min": 0,
"Max": 999999
}
],
"RawData": [
{
"Record": "PSCLASSDEFN",
"FilterField": "CLASSID",
"NamePattern": "{CLASSID}.pl",
"Folder": "Permission Lists\\",
"IncludeRelated": true,
"RelatedBlacklist": []
},
{
"Record": "PSROLEDEFN",
"FilterField": "ROLENAME",
"NamePattern": "{ROLENAME}.role",
"Folder": "Roles\\",
"IncludeRelated": true,
"RelatedBlacklist": [
"PSROLEUSER",
"PSROLEUSER_RMT"
]
}
]
}
}
],
"Jobs": [
{
"Name": "SampleJob",
"EnvironmentName": "SampleEnvironment",
"ProfileName": "SampleProfile",
"OutputFolder": "/tmp/SampleJob",
"Repository": {
"CommitByOprid": false,
"Url": "https://github.com/sample/sample-job.git",
"User": "pivet",
"EncryptedPassword": "UsePasswordEncryptor"
}
}
]
}