Update postman collection to utilize newest yang files
[cps.git] / cps-ncmp-service / src / main / java / org / onap / cps / ncmp / api / NetworkCmProxyDataService.java
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2021 highstreet technologies GmbH
4  *  Modifications Copyright (C) 2021-2024 Nordix Foundation
5  *  Modifications Copyright (C) 2021 Pantheon.tech
6  *  Modifications Copyright (C) 2022 Bell Canada
7  *  ================================================================================
8  *  Licensed under the Apache License, Version 2.0 (the "License");
9  *  you may not use this file except in compliance with the License.
10  *  You may obtain a copy of the License at
11  *
12  *        http://www.apache.org/licenses/LICENSE-2.0
13  *
14  *  Unless required by applicable law or agreed to in writing, software
15  *  distributed under the License is distributed on an "AS IS" BASIS,
16  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  *  See the License for the specific language governing permissions and
18  *  limitations under the License.
19  *
20  *  SPDX-License-Identifier: Apache-2.0
21  *  ============LICENSE_END=========================================================
22  */
23
24 package org.onap.cps.ncmp.api;
25
26 import java.util.Collection;
27 import java.util.Map;
28 import org.onap.cps.ncmp.api.impl.inventory.CompositeState;
29 import org.onap.cps.ncmp.api.impl.operations.OperationType;
30 import org.onap.cps.ncmp.api.models.CmHandleQueryApiParameters;
31 import org.onap.cps.ncmp.api.models.CmHandleQueryServiceParameters;
32 import org.onap.cps.ncmp.api.models.DataOperationRequest;
33 import org.onap.cps.ncmp.api.models.DmiPluginRegistration;
34 import org.onap.cps.ncmp.api.models.DmiPluginRegistrationResponse;
35 import org.onap.cps.ncmp.api.models.NcmpServiceCmHandle;
36 import org.onap.cps.spi.FetchDescendantsOption;
37 import org.onap.cps.spi.model.ModuleDefinition;
38 import org.onap.cps.spi.model.ModuleReference;
39
40 /*
41  * Datastore interface for handling CPS data.
42  */
43 public interface NetworkCmProxyDataService {
44
45     /**
46      * Registration of New CM Handles.
47      *
48      * @param dmiPluginRegistration Dmi Plugin Registration
49      * @return dmiPluginRegistrationResponse
50      */
51     DmiPluginRegistrationResponse updateDmiRegistrationAndSyncModule(DmiPluginRegistration dmiPluginRegistration);
52
53     /**
54      * Get resource data for given data store using dmi.
55      *
56      * @param datastoreName       datastore name
57      * @param cmHandleId          cm handle identifier
58      * @param resourceIdentifier  resource identifier
59      * @param optionsParamInQuery options query
60      * @param topicParamInQuery   topic name for (triggering) async responses
61      * @param requestId           unique requestId for async request
62      * @param authorization       contents of Authorization header, or null if not present
63      * @return {@code Object} resource data
64      */
65     Object getResourceDataForCmHandle(String datastoreName,
66                                       String cmHandleId,
67                                       String resourceIdentifier,
68                                       String optionsParamInQuery,
69                                       String topicParamInQuery,
70                                       String requestId,
71                                       String authorization);
72
73     /**
74      * Get resource data for operational.
75      *
76      * @param datastoreName      datastore name
77      * @param cmHandleId         cm handle identifier
78      * @param resourceIdentifier resource identifier
79      * @Link FetchDescendantsOption fetch descendants option
80      * @return {@code Object} resource data
81      */
82     Object getResourceDataForCmHandle(String datastoreName,
83                                       String cmHandleId,
84                                       String resourceIdentifier,
85                                       FetchDescendantsOption fetchDescendantsOption);
86
87     /**
88      * Execute (async) data operation for group of cm handles using dmi.
89      *
90      * @param topicParamInQuery        topic name for (triggering) async responses
91      * @param dataOperationRequest     contains a list of operation definitions(multiple operations)
92      */
93     void executeDataOperationForCmHandles(String topicParamInQuery,
94                                           DataOperationRequest dataOperationRequest,
95                                           String requestId);
96
97
98     /**
99      * Write resource data for data store pass-through running using dmi for given cm-handle.
100      *
101      * @param cmHandleId         cm handle identifier
102      * @param resourceIdentifier resource identifier
103      * @param operationType      required operation type
104      * @param requestBody        request body to create resource
105      * @param contentType        content type in body
106      * @param authorization       contents of Authorization header, or null if not present
107      * @return {@code Object} return data
108      */
109     Object writeResourceDataPassThroughRunningForCmHandle(String cmHandleId,
110                                                         String resourceIdentifier,
111                                                         OperationType operationType,
112                                                         String requestBody,
113                                                         String contentType,
114                                                         String authorization);
115
116     /**
117      * Retrieve module references for the given cm handle.
118      *
119      * @param cmHandleId cm handle identifier
120      * @return a collection of modules names and revisions
121      */
122     Collection<ModuleReference> getYangResourcesModuleReferences(String cmHandleId);
123
124     /**
125      * Retrieve module definitions for the given cm handle.
126      *
127      * @param cmHandleId cm handle identifier
128      * @return a collection of module definition (moduleName, revision and yang resource content)
129      */
130     Collection<ModuleDefinition> getModuleDefinitionsByCmHandleId(String cmHandleId);
131
132     /**
133      * Get module definitions for the given parameters.
134      *
135      * @param cmHandleId        cm-handle identifier
136      * @param moduleName        module name
137      * @param moduleRevision    the revision of the module
138      * @return list of module definitions (module name, revision, yang resource content)
139      */
140     Collection<ModuleDefinition> getModuleDefinitionsByCmHandleAndModule(String cmHandleId,
141                                                                          String moduleName,
142                                                                          String moduleRevision);
143
144     /**
145      * Query cm handle details by cm handle's name.
146      *
147      * @param cmHandleId cm handle identifier
148      * @return a collection of cm handle details.
149      */
150     NcmpServiceCmHandle getNcmpServiceCmHandle(String cmHandleId);
151
152     /**
153      * Get cm handle public properties by cm handle id.
154      *
155      * @param cmHandleId cm handle identifier
156      * @return a collection of cm handle public properties.
157      */
158     Map<String, String> getCmHandlePublicProperties(String cmHandleId);
159
160     /**
161      * Get cm handle composite state by cm handle id.
162      *
163      * @param cmHandleId cm handle identifier
164      * @return a cm handle composite state
165      */
166     CompositeState getCmHandleCompositeState(String cmHandleId);
167
168     /**
169      * Query and return cm handles that match the given query parameters.
170      *
171      * @param cmHandleQueryApiParameters the cm handle query parameters
172      * @return collection of cm handles
173      */
174     Collection<NcmpServiceCmHandle> executeCmHandleSearch(CmHandleQueryApiParameters cmHandleQueryApiParameters);
175
176     /**
177      * Query and return cm handle ids that match the given query parameters.
178      *
179      * @param cmHandleQueryApiParameters the cm handle query parameters
180      * @return collection of cm handle ids
181      */
182     Collection<String> executeCmHandleIdSearch(CmHandleQueryApiParameters cmHandleQueryApiParameters);
183
184     /**
185      * Set the data sync enabled flag, along with the data sync state to true or false based on the cm handle id.
186      *
187      * @param cmHandleId cm handle id
188      * @param dataSyncEnabled data sync enabled flag
189      */
190     void setDataSyncEnabled(String cmHandleId, Boolean dataSyncEnabled);
191
192     /**
193      * Get all cm handle IDs by DMI plugin identifier.
194      *
195      * @param dmiPluginIdentifier DMI plugin identifier
196      * @return collection of cm handle IDs
197      */
198     Collection<String> getAllCmHandleIdsByDmiPluginIdentifier(String dmiPluginIdentifier);
199
200     /**
201      * Get all cm handle IDs by various search criteria.
202      *
203      * @param cmHandleQueryServiceParameters cm handle query parameters
204      * @return collection of cm handle IDs
205      */
206     Collection<String> executeCmHandleIdSearchForInventory(CmHandleQueryServiceParameters
207                                                                cmHandleQueryServiceParameters);
208 }