Realize the delete VIM API.
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / externalservice / aai / ICloudRegion.java
1 /**
2  * Copyright 2017 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.aai.esr.externalservice.aai;
17
18 import javax.ws.rs.Consumes;
19 import javax.ws.rs.DELETE;
20 import javax.ws.rs.GET;
21 import javax.ws.rs.HeaderParam;
22 import javax.ws.rs.PUT;
23 import javax.ws.rs.Path;
24 import javax.ws.rs.PathParam;
25 import javax.ws.rs.Produces;
26 import javax.ws.rs.QueryParam;
27 import javax.ws.rs.core.MediaType;
28
29 import org.onap.aai.esr.entity.aai.CloudRegionDetail;
30
31
32 @Path("/cloud-regions")
33 public interface ICloudRegion {
34
35   @PUT
36   @Path("/cloud-region/{cloud_owner}/{cloud_region_id}")
37   @Consumes(MediaType.APPLICATION_JSON)
38   @Produces(MediaType.APPLICATION_JSON)
39   public void registerVIMService(@HeaderParam("X-TransactionId") String transactionId,
40       @HeaderParam("X-FromAppId") String fromApp,
41       @HeaderParam("Authorization") String authorization,
42       @PathParam("cloud_owner") String cloud_owner,
43       @PathParam("cloud_region_id") String cloud_region_id, CloudRegionDetail cloudRegion) throws Exception;
44
45   @GET
46   @Path("/cloud-region/{cloud_owner}/{cloud_region_id}?depth=all")
47   @Consumes(MediaType.APPLICATION_JSON)
48   @Produces(MediaType.APPLICATION_JSON)
49   public String queryVIMDetail(@HeaderParam("X-TransactionId") String transactionId,
50       @HeaderParam("X-FromAppId") String fromApp,
51       @HeaderParam("Authorization") String authorization,
52       @PathParam("cloud_owner") String cloud_owner,
53       @PathParam("cloud_region_id") String cloud_region_id) throws Exception;
54   
55   @GET
56   @Consumes(MediaType.APPLICATION_JSON)
57   @Produces(MediaType.APPLICATION_JSON)
58   public String queryVIMList(@HeaderParam("X-TransactionId") String transactionId,
59       @HeaderParam("X-FromAppId") String fromApp,
60       @HeaderParam("Authorization") String authorization) throws Exception;
61
62   @DELETE
63   @Path("/cloud-region/{cloud_owner}/{cloud_region_id}")
64   @Consumes(MediaType.APPLICATION_JSON)
65   @Produces(MediaType.APPLICATION_JSON)
66   public void deleteVim(@HeaderParam("X-TransactionId") String transactionId,
67       @HeaderParam("X-FromAppId") String fromApp,
68       @HeaderParam("Authorization") String authorization,
69       @PathParam("cloud_owner") String cloud_owner,
70       @PathParam("cloud_region_id") String cloud_region_id,
71       @QueryParam("resource-version") String resourceVersion) throws Exception;
72 }