cloud-foundation-fabric/blueprints/cloud-operations/network-dashboard/src/plugins/discover-group-networks.py

41 lines
1.4 KiB
Python

# Copyright 2022 Google 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.
'Group discovered networks by project.'
import itertools
import logging
from . import Level, Resource, register_init, register_discovery
LOGGER = logging.getLogger('net-dash.discovery.compute-routes-dynamic')
NAME = 'networks:project'
@register_init
def init(resources):
'Prepares datastructure in the shared resource map.'
LOGGER.info('init')
resources.setdefault(NAME, {})
@register_discovery(Level.DERIVED)
def start_discovery(resources, response=None):
'Plugin entry point, group and return discovered networks.'
LOGGER.info(f'discovery (has response: {response is not None})')
grouped = itertools.groupby(
sorted(resources['networks'].values(), key=lambda i: i['project_id']),
lambda i: i['project_id'])
for project_id, vpcs in grouped:
yield Resource(NAME, project_id, [v['self_link'] for v in vpcs])