(ctx ExecutionContext)
| 261 | } |
| 262 | |
| 263 | func (e HttpExecutor) pathParameters(ctx ExecutionContext) []ExecutionParameter { |
| 264 | pathParameters := ctx.Parameters.Path() |
| 265 | if ctx.Organization != "" { |
| 266 | pathParameters = append(pathParameters, *NewExecutionParameter("organization", ctx.Organization, "path")) |
| 267 | } |
| 268 | if ctx.Tenant != "" { |
| 269 | pathParameters = append(pathParameters, *NewExecutionParameter("tenant", ctx.Tenant, "path")) |
| 270 | } |
| 271 | return pathParameters |
| 272 | } |
| 273 | |
| 274 | func (e HttpExecutor) httpClientSettings(ctx ExecutionContext) network.HttpClientSettings { |
| 275 | return *network.NewHttpClientSettings( |
no test coverage detected