(endpoint, routePath, pathParameters, options = {})
| 77365 | code: errCode, |
| 77366 | statusCode: response.status, |
| 77367 | request: response.request, |
| 77368 | response |
| 77369 | }); |
| 77370 | } |
| 77371 | |
| 77372 | // node_modules/@azure-rest/core-client/dist/esm/urlHelpers.js |
| 77373 | function buildRequestUrl(endpoint, routePath, pathParameters, options = {}) { |
| 77374 | if (routePath.startsWith("https://") || routePath.startsWith("http://")) { |
| 77375 | return routePath; |
| 77376 | } |
| 77377 | endpoint = buildBaseUrl(endpoint, options); |
| 77378 | routePath = buildRoutePath(routePath, pathParameters, options); |
| 77379 | const requestUrl = appendQueryParams(`${endpoint}/${routePath}`, options); |
no test coverage detected