Source code for c7n.resources.backup

# Copyright 2019 Capital One Services, LLC
#
# 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 __future__ import absolute_import, division, print_function, unicode_literals

from c7n.manager import resources
from c7n.query import QueryResourceManager
from c7n.utils import local_session


[docs]@resources.register('backup-plan') class BackupPlan(QueryResourceManager):
[docs] class resource_type(object): service = 'backup' enum_spec = ('list_backup_plans', 'BackupPlansList', None) detail_spec = ('get_backup_plan', 'BackupPlanId', 'BackupPlanId', 'BackupPlan') id = 'BackupPlanName' name = 'BackupPlanId' arn = 'BackupPlanArn' dimension = None filter_name = None filter_type = None
[docs] def augment(self, resources): super(BackupPlan, self).augment(resources) client = local_session(self.session_factory).client('backup') results = [] for r in resources: try: tags = client.list_tags(ResourceArn=r['BackupPlanArn']).get('Tags', {}) except client.exceptions.ResourceNotFoundException: continue r['Tags'] = [{'Name': k, 'Value': v} for k, v in tags.items()] results.append(r) return results
[docs] def get_resources(self, resource_ids, cache=True): client = local_session(self.session_factory).client('backup') resources = [] for rid in resource_ids: try: resources.append( client.get_backup_plan(BackupPlanId=rid)['BackupPlan']) except client.exceptions.ResourceNotFoundException: continue return resources