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 21889 log improvements #464

Merged
merged 5 commits into from
Mar 13, 2024
Merged
Changes from 4 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
@@ -513,8 +513,9 @@ class OpsmxOesController {
@RequestParam(value = "nameSpace", required = false) String nameSpace,
@RequestParam(value = "argoCdUrl", required = false) String argoCdUrl,
@RequestParam(value ="rolloutsEnabled", required = false) Boolean rolloutsEnabled,
@RequestParam(value ="updatedFlag", required = false) Boolean updatedFlag,
@RequestParam(value = "isdUrl", required = false) String isdUrl) {
Response response = opsmxOesService.agentManifestDownloadFile(type, source, source1, description, isExists, nameSpace, argoCdUrl, rolloutsEnabled, isdUrl)
Response response = opsmxOesService.agentManifestDownloadFile(type, source, source1, description, isExists, nameSpace, argoCdUrl, rolloutsEnabled, updatedFlag,isdUrl)
vivek-opsmx marked this conversation as resolved.
Show resolved Hide resolved
InputStream inputStream = response.getBody().in()
try {
byte[] manifestFile = IOUtils.toByteArray(inputStream)
Original file line number Diff line number Diff line change
@@ -435,9 +435,10 @@ class OpsmxPlatformController {
@PathVariable("source3") String source3,
@PathVariable("source4") String source4,
@RequestParam(value = "featureType", required = false) String featureType,
@RequestParam(name = "createdStatus", required = false) boolean createdStatus,
@RequestBody(required = false) Object data) {

return opsmxPlatformService.updatePlatformResponse4(version, type, source, source1, source2, source3, source4, featureType,data)
return opsmxPlatformService.updatePlatformResponse4(version, type, source, source1, source2, source3, source4, featureType,createdStatus,data)
}

@ApiOperation(value = "download metric analysis sample template")
Original file line number Diff line number Diff line change
@@ -37,6 +37,7 @@ interface OpsmxOesService {
@Query("nameSpace") String nameSpace,
@Query("argoCdUrl") String argoCdUrl,
@Query("rolloutsEnabled") boolean rolloutsEnabled,
@Query("updatedFlag") boolean updatedFlag,
@Query("isdUrl") String isdUrl)

@GET("/oes/accountsConfig/{version}/agents/{agentName}/manifest/apple/automation")
Original file line number Diff line number Diff line change
@@ -259,6 +259,7 @@ interface OpsmxPlatformService {
@Path('source3') String source3,
@Path('source4') String source4,
@Query("featureType") String featureType,
@Query("createdStatus") boolean createdStatus,
@Body Object data)

@GET("/platformservice/{version}/argo/sampleTemplate")
Loading