Interface RamTestRunsFeignClient
@FeignClient(name="${feign.atp.ram.name}",
url="${feign.atp.ram.url}",
path="${feign.atp.ram.route}",
configuration=org.qubership.atp.auth.springbootstarter.config.FeignConfiguration.class)
public interface RamTestRunsFeignClient
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<List<ContextVariableDto>> getAllContextVariables(UUID testRunId) org.springframework.http.ResponseEntity<List<LogRecordDto>> getAllFilteredLogRecords(UUID uuid, LogRecordFilteringRequestDto logRecordFilteringRequestDto)
-
Method Details
-
getAllContextVariables
@RequestMapping(method=GET, value="/api/testruns/{testRunId}/contextVariables/all", produces="application/json") org.springframework.http.ResponseEntity<List<ContextVariableDto>> getAllContextVariables(@PathVariable("testRunId") UUID testRunId) -
getAllFilteredLogRecords
@RequestMapping(method=POST, value="/api/testruns/{uuid}/logrecords", produces="application/json", consumes="application/json") org.springframework.http.ResponseEntity<List<LogRecordDto>> getAllFilteredLogRecords(@PathVariable("uuid") UUID uuid, @RequestBody(required=false) LogRecordFilteringRequestDto logRecordFilteringRequestDto)
-