ff3f95d3ff9fe21469eba7344a1cf6eba775a384
[appc.git] / appc-adapters / appc-iaas-adapter / appc-iaas-adapter-bundle / src / main / java / org / openecomp / appc / adapter / openstack / heat / SnapshotResource.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.openecomp.appc.adapter.openstack.heat;
26
27 import org.openecomp.appc.adapter.openstack.heat.model.CreateSnapshotParams;
28 import org.openecomp.appc.adapter.openstack.heat.model.Snapshot;
29
30 import com.woorea.openstack.base.client.Entity;
31 import com.woorea.openstack.base.client.HttpMethod;
32 import com.woorea.openstack.base.client.OpenStackClient;
33 import com.woorea.openstack.base.client.OpenStackRequest;
34
35
36 public class SnapshotResource {
37
38     private final OpenStackClient client;
39
40     public SnapshotResource(OpenStackClient client) {
41         this.client = client;
42     }
43
44     public CreateSnapshot create(String stackName, String stackID, CreateSnapshotParams params) {
45         return new CreateSnapshot(stackName, stackID, params);
46     }
47
48     public RestoreSnapshot restore(String stackName, String stackID, String snapshotID) {
49         return new RestoreSnapshot(stackName, stackID, snapshotID);
50     }
51
52     public ShowSnapshot show(String stackName, String stackID, String snapshotID) {
53         return new ShowSnapshot(stackName, stackID, snapshotID);
54     }
55
56     public class CreateSnapshot extends OpenStackRequest<Snapshot> {
57         public CreateSnapshot(String stackName, String stackID, CreateSnapshotParams params) {
58             super(client, HttpMethod.POST, "/stacks/" + stackName + "/" + stackID + "/snapshots", Entity.json(params), Snapshot.class);
59         }
60     }
61
62     public class RestoreSnapshot extends OpenStackRequest<Void> {
63         public RestoreSnapshot(String stackName, String stackID, String snapshotID) {
64             super(client, HttpMethod.POST, "/stacks/" + stackName + "/" + stackID + "/snapshots/" + snapshotID + "/restore", null, Void.class);
65         }
66     }
67
68     public class ShowSnapshot extends OpenStackRequest<Snapshot> {
69         public ShowSnapshot(String stackName, String stackID, String snapshotID) {
70             super(client, HttpMethod.GET, "/stacks/" + stackName + "/" + stackID + "/snapshots/" + snapshotID, null, Snapshot.class);
71         }
72     }
73 }