ResponseEntity<String>deployProvisionToscaTemplateByID(@ApiParam(value="ID of topolog template to deploy",required=true)@PathVariable("id")Stringid);
@ApiOperation(value="get the deployment topolog template",nickname="getDeployToscaTemplateByID",notes="Returns the deployment topolog template",response=String.class,authorizations={
@Authorization(value="drip_auth",scopes={
@AuthorizationScope(scope="read:ToscaTemplate",description="read your topolog template"),
@AuthorizationScope(scope="write:ToscaTemplate",description="modify topolog template in your account")
@ApiResponse(code=400,message="Invalid ID supplied"),
@ApiResponse(code=404,message="ToscaTemplate not found"),
@ApiResponse(code=405,message="Invalid input")})
@RequestMapping(value="/deployer/{id}",
produces={"text/plain"},
method=RequestMethod.GET)
ResponseEntity<String>getDeployToscaTemplateByID(@ApiParam(value="ID of topolog template to deploy",required=true)@PathVariable("id")Stringid);
@ApiOperation(value="Get all topolog template IDs",nickname="getDeployedToscaTemplateIDs",notes="Returns all IDss ",response=String.class,responseContainer="List",authorizations={
@Authorization(value="drip_auth",scopes={
@AuthorizationScope(scope="read:ToscaTemplate",description="read your topolog template"),
@AuthorizationScope(scope="write:ToscaTemplate",description="modify topolog template in your account")
@@ -28,37 +29,17 @@ public class DeployerApiController implements DeployerApi {
this.request=request;
}
publicResponseEntity<String>deployProvisionToscaTemplateByID(@ApiParam(value="ID of topolog template to deploy",required=true)@PathVariable("id")Stringid){
publicResponseEntity<String>getDeployToscaTemplateByID(@ApiParam(value="ID of topolog template to deploy",required=true)@PathVariable("id")Stringid){
@Override
publicResponseEntity<String>deployProvisionToscaTemplateByID(@ApiParam(value="ID of topolog template to deploy",required=true)@PathVariable("id")Stringid){
@ApiOperation(value="get the plan tosca template",nickname="getPlanToscaTemplateByID",notes="Returns the plan topolog template",response=String.class,authorizations={
@Authorization(value="drip_auth",scopes={
@AuthorizationScope(scope="read:ToscaTemplate",description="read your topolog template"),
@AuthorizationScope(scope="write:ToscaTemplate",description="modify topolog template in your account")
@ApiResponse(code=400,message="Invalid ID supplied"),
@ApiResponse(code=404,message="ToscaTemplate not found"),
@ApiResponse(code=405,message="Invalid input")})
@RequestMapping(value="/planner/{id}",
produces={"text/plain"},
method=RequestMethod.GET)
ResponseEntity<String>getPlanToscaTemplateByID(@ApiParam(value="ID of topolog template plan",required=true)@PathVariable("id")Stringid);
@ApiOperation(value="Get all topolog template IDs",nickname="getPlanToscaTemplateIDs",notes="Returns all IDss ",response=String.class,responseContainer="List",authorizations={
@Authorization(value="drip_auth",scopes={
@AuthorizationScope(scope="read:ToscaTemplate",description="read your topolog template"),
@AuthorizationScope(scope="write:ToscaTemplate",description="modify topolog template in your account")
@ApiOperation(value="plan tosca template",nickname="planToscaTemplateByID",notes="Returns the ID of the planed topolog template",response=String.class,authorizations={
@ApiResponse(code=400,message="Invalid ID supplied"),
@ApiResponse(code=404,message="ToscaTemplate not found"),
@ApiResponse(code=405,message="Invalid input")})
@RequestMapping(value="/provisioner/{id}",
produces={"text/plain"},
method=RequestMethod.GET)
ResponseEntity<String>getProvisionToscaTemplateByID(@ApiParam(value="ID of topolog template to plan",required=true)@PathVariable("id")Stringid);
@ApiOperation(value="Get all topolog template IDs",nickname="getProvisionedToscaTemplateIDs",notes="Returns all IDss ",response=String.class,responseContainer="List",authorizations={
@Authorization(value="drip_auth",scopes={
@AuthorizationScope(scope="read:ToscaTemplate",description="read your topolog template"),
@AuthorizationScope(scope="write:ToscaTemplate",description="modify topolog template in your account")
@ApiOperation(value="provision tosca template",nickname="provisionPlanToscaTemplateByID",notes="provosions the operationId: Plan Tosca Template Returns the provision ID",response=String.class,authorizations={
publicResponseEntity<String>provisionPlanToscaTemplateByID(@ApiParam(value="ID of topolog template to plan",required=true)@PathVariable("id")Stringid){
publicResponseEntity<String>userLoginGet(@NotNull@ApiParam(value="The user name for login",required=true)@Valid@RequestParam(value="username",required=true)Stringusername,@NotNull@ApiParam(value="The password for login in clear text",required=true)@Valid@RequestParam(value="password",required=true)Stringpassword){
@Override
publicResponseEntity<String>userLoginGet(@NotNull@ApiParam(value="The user name for login",required=true)@Valid@RequestParam(value="username",required=true)Stringusername,@NotNull@ApiParam(value="The password for login in clear text",required=true)@Valid@RequestParam(value="password",required=true)Stringpassword){
publicResponseEntity<Void>userUsernameDelete(@ApiParam(value="The name that needs to be deleted",required=true)@PathVariable("username")Stringusername){
@Override
publicResponseEntity<Void>userUsernameDelete(@ApiParam(value="The name that needs to be deleted",required=true)@PathVariable("username")Stringusername){
publicResponseEntity<User>userUsernameGet(@ApiParam(value="The name that needs to be fetched. Use user1 for testing. ",required=true)@PathVariable("username")Stringusername){
@Override
publicResponseEntity<User>userUsernameGet(@ApiParam(value="The name that needs to be fetched. Use user1 for testing. ",required=true)@PathVariable("username")Stringusername){
publicResponseEntity<Void>userUsernamePut(@ApiParam(value="name that need to be updated",required=true)@PathVariable("username")Stringusername,@ApiParam(value="Updated user object",required=true)@Valid@RequestBodyUserbody){
@Override
publicResponseEntity<Void>userUsernamePut(
@ApiParam(value="name that need to be updated",required=true)
@PathVariable("username")Stringusername,
@ApiParam(value="Updated user object",required=true)