Skip to content

Commit

Permalink
Merge pull request #457 from OpsMx/OP-21655-v4.0
Browse files Browse the repository at this point in the history
OP-21655 : Added query param for application data
  • Loading branch information
srikanthopsmx authored Jan 23, 2024
2 parents 55dd533 + adae9be commit 6d7989d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,9 @@ class OpsmxSsdController {
@RequestParam(value = "account", required = false) String account,
@RequestParam(value = "appId", required = false) Integer appId,
@RequestParam(value = "image", required = false) String image,
@RequestParam(value = "imageTag", required = false) String imageTag,
@RequestParam(value = "stage", required = false) String stage,
@RequestParam(value = "deployedAt", required = false) String deployedAt,
@RequestParam(value = "appName", required = false) String appName,
@RequestParam(value = "noOfDays", required = false) Integer noOfDays,
@RequestParam(value = "pageNo", required = false) Integer pageNo,
Expand All @@ -225,7 +228,7 @@ class OpsmxSsdController {
@RequestParam(value = "sortOrder", required = false) String sortOrder,
@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,sortBy,sortOrder, id, dbomType)
return opsMxSsdService.getSddResponse3(version, type, source, source1,account , appId, image, imageTag, stage, deployedAt, appName, noOfDays, pageNo, pageLimit, kind, search, service,sortBy,sortOrder, id, dbomType)
}

@ApiOperation(value = "Endpoint for ssd services")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ interface OpsmxSsdService {
@Query("account") String account,
@Query("appId") Integer appId,
@Query("image") String image,
@Query("imageTag") String imageTag,
@Query("stage") String stage,
@Query("deployedAt") String deployedAt,
@Query("appName") String appName,
@Query("noOfDays") Integer noOfDays,
@Query("pageNo") Integer pageNo,
Expand Down

0 comments on commit 6d7989d

Please sign in to comment.