Realize update registered VIM.
[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.GET;
20 import javax.ws.rs.HeaderParam;
21 import javax.ws.rs.PUT;
22 import javax.ws.rs.Path;
23 import javax.ws.rs.PathParam;
24 import javax.ws.rs.Produces;
25 import javax.ws.rs.core.MediaType;
26
27 import org.onap.aai.esr.entity.aai.CloudRegionDetail;
28
29
30 @Path("/cloud-regions")
31 public interface ICloudRegion {
32
33   @PUT
34   @Path("/cloud-region/{cloud_owner}/{cloud_region_id}")
35   @Consumes(MediaType.APPLICATION_JSON)
36   @Produces(MediaType.APPLICATION_JSON)
37   public void registerVIMService(@HeaderParam("X-TransactionId") String transactionId,
38       @HeaderParam("X-FromAppId") String fromApp,
39       @HeaderParam("Authorization") String authorization,
40       @PathParam("cloud_owner") String cloud_owner,
41       @PathParam("cloud_region_id") String cloud_region_id, CloudRegionDetail cloudRegion) throws Exception;
42
43   @GET
44   @Path("/cloud-region/{cloud_owner}/{cloud_region_id}?depth=all")
45   @Consumes(MediaType.APPLICATION_JSON)
46   @Produces(MediaType.APPLICATION_JSON)
47   public String queryVIMDetail(@HeaderParam("X-TransactionId") String transactionId,
48       @HeaderParam("X-FromAppId") String fromApp,
49       @HeaderParam("Authorization") String authorization,
50       @PathParam("cloud_owner") String cloud_owner,
51       @PathParam("cloud_region_id") String cloud_region_id) throws Exception;
52   
53   @GET
54   @Consumes(MediaType.APPLICATION_JSON)
55   @Produces(MediaType.APPLICATION_JSON)
56   public String queryVIMList(@HeaderParam("X-TransactionId") String transactionId,
57       @HeaderParam("X-FromAppId") String fromApp,
58       @HeaderParam("Authorization") String authorization) throws Exception;
59
60 }