blob: 0262ea62e780202ea1798b47a28abfacb85b9522 [file] [log] [blame]
Jian Lie1fe06a2021-01-08 03:18:35 +09001/*
2 * Copyright 2021-present Open Networking Foundation
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 */
16package org.onosproject.kubevirtnetworking.api;
17
18public interface KubevirtInstanceAdminService extends KubevirtInstanceService {
19
20 /**
21 * Creates a new kubevirt instance with the given information.
22 *
23 * @param instance a new kubevirt instance
24 */
25 void createInstance(KubevirtInstance instance);
26
27 /**
28 * Updates the kubevirt instance with the given information.
29 *
30 * @param instance the updated kubevirt instance
31 */
32 void updateInstance(KubevirtInstance instance);
33
34 /**
35 * Removes the kubevirt instance.
36 *
37 * @param uid kubevirt instance UID
38 */
39 void removeInstance(String uid);
40
41 /**
42 * Clears the existing instances.
43 */
44 void clear();
45}