mirror of
https://github.com/paralus/paralus.git
synced 2026-05-08 09:27:02 +00:00
find permissions -name '*.json' | while read -r file; do
echo Processing $file
sed -i 's|"description": "\([a-zA-Z]\)\([a-zA-Z\ ]*\)\.*",|"description": "\u\1\2",|' $file
done
53 lines
932 B
JSON
53 lines
932 B
JSON
{
|
|
"name": "project.pipeline.read",
|
|
"resource_urls": [
|
|
{
|
|
"url": "",
|
|
"methods": [
|
|
"GET"
|
|
]
|
|
},
|
|
{
|
|
"url": "/:pipeline_name",
|
|
"methods": [
|
|
"GET"
|
|
]
|
|
}
|
|
],
|
|
"resource_action_urls": [
|
|
{
|
|
"url": "/:pipeline_name/instance",
|
|
"methods": [
|
|
"GET"
|
|
]
|
|
},
|
|
{
|
|
"url": "/:pipeline_name/instance/:instance_id",
|
|
"methods": [
|
|
"GET"
|
|
]
|
|
},
|
|
{
|
|
"url": "/:pipeline_name/instance/:instance_id/triggerevent",
|
|
"methods": [
|
|
"GET"
|
|
]
|
|
},
|
|
{
|
|
"url": "/:pipeline_name/triggerevent",
|
|
"methods": [
|
|
"GET"
|
|
]
|
|
},
|
|
{
|
|
"url": "/:pipeline_name/activecount",
|
|
"methods": [
|
|
"GET"
|
|
]
|
|
}
|
|
],
|
|
"base_url": "/v2/pipeline/project/:project_id/pipeline",
|
|
"description": "View project pipeline information",
|
|
"authenticated": true,
|
|
"scope": "PROJECT"
|
|
} |