You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/web/api/ControllerServiceResource.java
+5-11Lines changed: 5 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -674,18 +674,16 @@ public Response updateControllerService(
674
674
@Path("{id}/move-options")
675
675
@Operation(
676
676
summary = "Gets the move options for a controller service",
@ApiResponse(responseCode = "400", description = "NiFi was unable to complete the request because it was invalid. The request should not be retried without modification."),
685
680
@ApiResponse(responseCode = "401", description = "Client could not be authenticated."),
686
681
@ApiResponse(responseCode = "403", description = "Client is not authorized to make this request."),
687
682
@ApiResponse(responseCode = "404", description = "The specified resource could not be found."),
688
683
@ApiResponse(responseCode = "409", description = "The request was valid but NiFi was not in the appropriate state to process it.")
684
+
},
685
+
security = {
686
+
@SecurityRequirement(name = "Read - /flow")
689
687
}
690
688
)
691
689
publicResponsegetProcessGroupOptions(
@@ -841,10 +839,6 @@ public Response moveControllerServices(
0 commit comments