Skip to content

Commit

Permalink
Merge pull request #423 from OpsMx/OP-21154-v4.0
Browse files Browse the repository at this point in the history
OP-21154 : Added new query param for application DBOM
  • Loading branch information
srikanthopsmx authored Sep 26, 2023
2 parents a904e84 + e0fd24e commit 4ade7b2
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 @@ -146,8 +146,9 @@ class OpsmxSsdController {
@RequestParam(value = "kind", required = false) String kind,
@RequestParam(value = "search", required = false) String search,
@RequestParam(value = "service", required = false) String service,
@RequestParam(value = "id", required = false) String id) {
return opsMxSsdService.getSddResponse3(version, type, source, source1,account , appId, image, appName, noOfDays, pageNo, pageLimit, kind, search, service, id)
@RequestParam(value = "id", required = false) String id,
@RequestParam(value = "dbomType", required = false) String dbomType) {
return opsMxSsdService.getSddResponse3(version, type, source, source1,account , appId, image, appName, noOfDays, pageNo, pageLimit, kind, search, service, id, dbomType)
}

@ApiOperation(value = "Endpoint for ssd services")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ interface OpsmxSsdService {
@Query("kind") String kind,
@Query("search") String search,
@Query("service") String service,
@Query("id") String id)
@Query("id") String id,
@Query("dbomType") String dbomType)

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

0 comments on commit 4ade7b2

Please sign in to comment.