File tree Expand file tree Collapse file tree 5 files changed +136
-0
lines changed
rest-api-spec/src/main/resources/rest-api-spec/api Expand file tree Collapse file tree 5 files changed +136
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "project_routing.create" : {
3+ "documentation" : {
4+ "url" : null ,
5+ "description" : " Create or update named project routing expression"
6+ },
7+ "stability" : " experimental" ,
8+ "visibility" : " public" ,
9+ "headers" : {
10+ "accept" : [" application/json" ],
11+ "content_type" : [" application/json" ]
12+ },
13+ "url" : {
14+ "paths" : [
15+ {
16+ "path" : " /_project_routing/{name}" ,
17+ "methods" : [" PUT" ],
18+ "parts" : {
19+ "name" : {
20+ "type" : " string" ,
21+ "description" : " The name of the project routing expression"
22+ }
23+ }
24+ }
25+ ]
26+ },
27+ "body" : {
28+ "description" : " Project routing expression to save" ,
29+ "required" : true
30+ }
31+ }
32+ }
Original file line number Diff line number Diff line change 1+ {
2+ "project_routing.create_many" : {
3+ "documentation" : {
4+ "url" : null ,
5+ "description" : " Create or update named project routing expressions"
6+ },
7+ "stability" : " experimental" ,
8+ "visibility" : " public" ,
9+ "headers" : {
10+ "accept" : [" application/json" ],
11+ "content_type" : [" application/json" ]
12+ },
13+ "url" : {
14+ "paths" : [
15+ {
16+ "path" : " /_project_routing/" ,
17+ "methods" : [" PUT" ]
18+ }
19+ ]
20+ },
21+ "body" : {
22+ "description" : " Project routing expressions to save" ,
23+ "required" : true
24+ }
25+ }
26+ }
Original file line number Diff line number Diff line change 1+ {
2+ "project_routing.delete" : {
3+ "documentation" : {
4+ "url" : null ,
5+ "description" : " Delete named project routing expression"
6+ },
7+ "stability" : " experimental" ,
8+ "visibility" : " public" ,
9+ "headers" : {
10+ "accept" : [" application/json" ],
11+ "content_type" : [" application/json" ]
12+ },
13+ "url" : {
14+ "paths" : [
15+ {
16+ "path" : " /_project_routing/{name}" ,
17+ "methods" : [" DELETE" ],
18+ "parts" : {
19+ "name" : {
20+ "type" : " string" ,
21+ "description" : " The name of the project routing expression"
22+ }
23+ }
24+ }
25+ ]
26+ }
27+ }
28+ }
Original file line number Diff line number Diff line change 1+ {
2+ "project_routing.get" : {
3+ "documentation" : {
4+ "url" : null ,
5+ "description" : " Get named project routing expression"
6+ },
7+ "stability" : " experimental" ,
8+ "visibility" : " public" ,
9+ "headers" : {
10+ "accept" : [" application/json" ],
11+ "content_type" : [" application/json" ]
12+ },
13+ "url" : {
14+ "paths" : [
15+ {
16+ "path" : " /_project_routing/{name}" ,
17+ "methods" : [" GET" ],
18+ "parts" : {
19+ "name" : {
20+ "type" : " string" ,
21+ "description" : " The name of the project routing expression"
22+ }
23+ }
24+ }
25+ ]
26+ }
27+ }
28+ }
Original file line number Diff line number Diff line change 1+ {
2+ "project_routing.get_many" : {
3+ "documentation" : {
4+ "url" : null ,
5+ "description" : " Get named project routing expressions"
6+ },
7+ "stability" : " experimental" ,
8+ "visibility" : " public" ,
9+ "headers" : {
10+ "accept" : [" application/json" ],
11+ "content_type" : [" application/json" ]
12+ },
13+ "url" : {
14+ "paths" : [
15+ {
16+ "path" : " /_project_routing/" ,
17+ "methods" : [" GET" ]
18+ }
19+ ]
20+ }
21+ }
22+ }
You can’t perform that action at this time.
0 commit comments