summaryrefslogtreecommitdiff
path: root/troveclient/v1/backup_strategy.py
blob: 61c124f5d31a63fb4256e3185e6da173d2aed05b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Copyright 2020 Catalyst Cloud
#
#    Licensed under the Apache License, Version 2.0 (the "License");
#    you may not use this file except in compliance with the License.
#    You may obtain a copy of the License at
#
#        http://www.apache.org/licenses/LICENSE-2.0
#
#    Unless required by applicable law or agreed to in writing, software
#    distributed under the License is distributed on an "AS IS" BASIS,
#    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#    See the License for the specific language governing permissions and
#    limitations under the License.
from troveclient import base
from troveclient import common


class BackupStrategy(base.Resource):
    def __repr__(self):
        return "<BackupStrategy: %s[%s]>" % (self.project_id, self.instance_id)


class BackupStrategiesManager(base.ManagerWithFind):
    resource_class = BackupStrategy

    def list(self, instance_id=None, project_id=None):
        query_strings = {}
        if instance_id:
            query_strings["instance_id"] = instance_id
        if project_id:
            query_strings["project_id"] = project_id

        url = common.append_query_strings('/backup_strategies',
                                          **query_strings)

        return self._list(url, "backup_strategies")

    def create(self, instance_id=None, swift_container=None):
        backup_strategy = {}
        if instance_id:
            backup_strategy['instance_id'] = instance_id
        if swift_container:
            backup_strategy['swift_container'] = swift_container
        body = {"backup_strategy": backup_strategy}

        return self._create("/backup_strategies", body, "backup_strategy")

    def delete(self, instance_id=None, project_id=None):
        url = "/backup_strategies"
        query_strings = {}
        if instance_id:
            query_strings["instance_id"] = instance_id
        if project_id:
            query_strings["project_id"] = project_id

        url = common.append_query_strings('/backup_strategies',
                                          **query_strings)

        resp, body = self._delete(url)
        common.check_for_exceptions(resp, body, url)