549c7b93bea56e9c66f3f4a42d590159b4757889
[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.onap.appc.adapter.openstack.heat;
26
27 import org.onap.appc.adapter.openstack.heat.model.CreateSnapshotParams;
28 import org.onap.appc.adapter.openstack.heat.model.Snapshot;
29 import com.woorea.openstack.base.client.Entity;
30 import com.woorea.openstack.base.client.HttpMethod;
31 import com.woorea.openstack.base.client.OpenStackClient;
32 import com.woorea.openstack.base.client.OpenStackRequest;
33
34
35 public class SnapshotResource {
36
37     private final OpenStackClient client;
38
39     public SnapshotResource(OpenStackClient client) {
40         this.client = client;
41     }
42
43     public CreateSnapshot create(String stackName, String stackID, CreateSnapshotParams params) {
44         return new CreateSnapshot(stackName, stackID, params);
45     }
46
47     public RestoreSnapshot restore(String stackName, String stackID, String snapshotID) {
48         return new RestoreSnapshot(stackName, stackID, snapshotID);
49     }
50
51     public ShowSnapshot show(String stackName, String stackID, String snapshotID) {
52         return new ShowSnapshot(stackName, stackID, snapshotID);
53     }
54
55     public class CreateSnapshot extends OpenStackRequest<Snapshot> {
56         public CreateSnapshot(String stackName, String stackID, CreateSnapshotParams params) {
57             super(client, HttpMethod.POST, "/stacks/" + stackName + "/" + stackID + "/snapshots", Entity.json(params),
58                     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,
65                     "/stacks/" + stackName + "/" + stackID + "/snapshots/" + snapshotID + "/restore", null, Void.class);
66         }
67     }
68
69     public class ShowSnapshot extends OpenStackRequest<Snapshot> {
70         public ShowSnapshot(String stackName, String stackID, String snapshotID) {
71             super(client, HttpMethod.GET, "/stacks/" + stackName + "/" + stackID + "/snapshots/" + snapshotID, null,
72                     Snapshot.class);
73         }
74     }
75 }