Skip to content

Commit

Permalink
OP-21271 : Added tags query param
Browse files Browse the repository at this point in the history
  • Loading branch information
sriharshakancharla committed Nov 2, 2023
1 parent 272017b commit f5c5e24
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,9 @@ class OpsmxSsdController {
@RequestParam(value = "scope", required = false) String scope,
@RequestParam(value = "current", required = false) String current,
@RequestParam(value = "tag", required = false) String tag,
@RequestParam(value = "tool", required = false) String tool) {
return opsMxSsdService.getSddResponse1(version, type, account, appId, image, imageTag, stage, deployedAt, appName, pageNo, pageLimit, sortBy, sortOrder, search, noOfDays, policy, typeList, alertName, id, startTime, endTime, severity, scope, current, tag,tool)
@RequestParam(value = "tool", required = false) String tool,
@RequestParam(value = "tags", required = false) String tags) {
return opsMxSsdService.getSddResponse1(version, type, account, appId, image, imageTag, stage, deployedAt, appName, pageNo, pageLimit, sortBy, sortOrder, search, noOfDays, policy, typeList, alertName, id, startTime, endTime, severity, scope, current, tag,tool, tags)
}

@ApiOperation(value = "Endpoint for ssd services")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ interface OpsmxSsdService {
@Query("scope") String scope,
@Query("current") String current,
@Query("tag") String tag,
@Query("tool") String tool)
@Query("tool") String tool,
@Query("tags") String tags)

@GET("/ssdservice/{version}/{type}/{source}")
Object getSddResponse2(@Path('version') String version,
Expand Down

0 comments on commit f5c5e24

Please sign in to comment.