2  * ============LICENSE_START=======================================================
 
   3  *  Copyright (C) 2019 Nordix Foundation.
 
   4  * ================================================================================
 
   5  * Licensed under the Apache License, Version 2.0 (the "License");
 
   6  * you may not use this file except in compliance with the License.
 
   7  * You may obtain a copy of the License at
 
   9  *      http://www.apache.org/licenses/LICENSE-2.0
 
  11  * Unless required by applicable law or agreed to in writing, software
 
  12  * distributed under the License is distributed on an "AS IS" BASIS,
 
  13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  14  * See the License for the specific language governing permissions and
 
  15  * limitations under the License.
 
  17  * SPDX-License-Identifier: Apache-2.0
 
  18  * ============LICENSE_END=========================================================
 
  21 package org.onap.so.adapters.etsi.sol003.adapter.lcm.extclients.aai;
 
  23 import org.onap.aai.domain.yang.EsrSystemInfoList;
 
  24 import org.onap.aai.domain.yang.EsrVnfm;
 
  25 import org.onap.aai.domain.yang.EsrVnfmList;
 
  26 import org.onap.aai.domain.yang.GenericVnf;
 
  27 import org.onap.aai.domain.yang.GenericVnfs;
 
  28 import org.onap.aai.domain.yang.Vserver;
 
  29 import org.onap.etsi.sol003.adapter.lcm.v1.model.Tenant;
 
  32  * Provides methods for invoking REST calls to AAI.
 
  34 public interface AaiServiceProvider {
 
  37      * Invoke a get request for a generic VNF.
 
  39      * @param vnfId the VNF id
 
  40      * @return the generic VNF
 
  42     GenericVnf invokeGetGenericVnf(final String vnfId);
 
  45      * Invoke a query for a generic VNF with the given selfLink
 
  47      * @param selfLink the selfLink
 
  48      * @return the matching generic vnfs
 
  50     GenericVnfs invokeQueryGenericVnf(final String selfLink);
 
  53      * Invoke a GET request for the VNFMs.
 
  57     EsrVnfmList invokeGetVnfms();
 
  60      * Invoke a GET request for the esr system info list for a VNFM.
 
  62      * @return the esr system info list for the VNFM
 
  64     EsrSystemInfoList invokeGetVnfmEsrSystemInfoList(final String vnfmId);
 
  67      * Invoke a GET request for the a VNFM.
 
  69      * @param vnfmId the ID of the VNFM
 
  72     EsrVnfm invokeGetVnfm(final String vnfmId);
 
  75      * Invoke a PATCH request for a generic vnf.
 
  77      * @param vnf the generic vnf
 
  80     void invokePatchGenericVnf(GenericVnf vnf);
 
  83      * Invoke a PUT request for a relationship from a generic vnf to a VNFM.
 
  85      * @param vnf the generic vnf
 
  86      * @param vnfmId the ID of the VNFM
 
  89     void invokePutGenericVnfToVnfmRelationship(GenericVnf vnf, final String vnfmId);
 
  93      * Invoke a PUT request for a vserver.
 
  95      * @param cloudOwner the cloud owner
 
  96      * @param cloudRegion the cloud region
 
  97      * @param tenantId the ID of the tenant
 
  98      * @param vserver the vserver
 
 101     void invokePutVserver(final String cloudOwner, final String cloudRegion, final String tenantId,
 
 102             final Vserver vserver);
 
 105      * Invoke a PUT request for a relationship from a vserver to a generic vnf.
 
 107      * @param cloudOwner the cloud owner
 
 108      * @param cloudRegion the cloud region the vserver is deployed on
 
 109      * @param tenantId the ID of the tenant the vserver is deployed on
 
 110      * @param vserver the vserver
 
 111      * @param vnfId the ID of the generic vnf
 
 114     void invokePutVserverToVnfRelationship(final String cloudOwner, final String cloudRegion, final String tenantId,
 
 115             final Vserver vserver, final String vnfId);
 
 118      * Invoke a DELETE request for a vserver.
 
 120      * @param cloudOwner the cloud owner
 
 121      * @param cloudRegion the cloud region
 
 122      * @param tenantId the ID of the tenant
 
 123      * @param vserverId the ID of the vserver
 
 126     void invokeDeleteVserver(final String cloudOwner, final String cloudRegion, final String tenantId,
 
 127             final String vserverId);
 
 130      * Invoke a GET request for the a tenant.
 
 132      * @param cloudOwner the cloud owner
 
 133      * @param cloudRegion the cloud region
 
 134      * @param tenantId the ID of the tenant
 
 137     Tenant invokeGetTenant(final String cloudOwner, final String cloudRegion, final String tenantId);
 
 140      * Invoke a GET request for the esr system info list for a cloud region.
 
 142      * @param cloudOwner the cloud owner
 
 143      * @param cloudRegion the cloud region
 
 144      * @return the esr system info list for the VNFM
 
 146     EsrSystemInfoList invokeGetCloudRegionEsrSystemInfoList(final String cloudOwner, final String cloudRegion);