MCPcopy Create free account
hub / github.com/APIs-guru/aws2openapi / fillInMissingPathParameters

Function fillInMissingPathParameters

index.js:561–571  ·  view source on GitHub ↗
(openapi)

Source from the content-addressed store, hash-verified

559}
560
561function fillInMissingPathParameters(openapi) {
562 for (let p in openapi.paths) {
563 let pi = openapi.paths[p];
564 for (let o in pi) {
565 if (['get','post','put','patch','delete','head','options','trace'].indexOf(o)>=0) {
566 let op = pi[o];
567 doit(p,op,pi);
568 }
569 }
570 }
571}
572
573function patches(openapi) {
574 if (openapi.info["x-serviceName"] === 'data.mediastore') {

Callers 1

index.jsFile · 0.85

Calls 1

doitFunction · 0.70

Tested by

no test coverage detected