Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OP-21154 : Added new query param for application DBOM #423

Merged
merged 1 commit into from
Sep 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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