Skip to content

Commit

Permalink
renamed namespace to nameSpace.
Browse files Browse the repository at this point in the history
  • Loading branch information
vivek-opsmx committed Jan 12, 2024
1 parent f217ec9 commit b951a03
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -325,15 +325,15 @@ class OpsmxPlatformController {
@PathVariable("source1") String source1,
@RequestParam(value = "isExists", required = false) Boolean isExists,
@RequestParam(value = "description", required = false) String description,
@RequestParam(value = "namespace", required = false) String namespace,
@RequestParam(value = "nameSpace", required = false) String nameSpace,
@RequestParam(value = "argoCdUrl", required = false) String argoCdUrl,
@RequestParam(value = "rolloutsEnabled", required = false) Boolean rolloutsEnabled,
@RequestParam(value = "isdUrl", required = false) String isdUrl,
@RequestParam(value = "argoName",required = false) String argoName,
@RequestParam(value = "agentName",required = false) String agentName,
@RequestBody(required = false) Object data) {

return opsmxPlatformService.postPlatformResponse4(version, type, source, source1, isExists, description, namespace, argoCdUrl, rolloutsEnabled, isdUrl, argoName, agentName, data)
return opsmxPlatformService.postPlatformResponse4(version, type, source, source1, isExists, description, nameSpace, argoCdUrl, rolloutsEnabled, isdUrl, argoName, agentName, data)
}

@ApiOperation(value = "Endpoint for platform rest services")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ interface OpsmxPlatformService {
@Path('source1') String source1,
@Query(value = "isExists") Boolean isExists,
@Query(value = "description") String description,
@Query(value = "namespace") String namespace,
@Query(value = "nameSpace") String nameSpace,
@Query(value = "argoCdUrl") String argoCdUrl,
@Query(value = "rolloutsEnabled") Boolean rolloutsEnabled,
@Query(value = "isdUrl") String isdUrl,
Expand Down

0 comments on commit b951a03

Please sign in to comment.