Files
vitrage/vitrage/datasources/tmfapi639/__init__.py
Dinis Canastro b801bbcdbe Added TMF API 639 Datasource
Change-Id: I48ccc6202738b52e80b64b965fe4993d141061f8
2020-04-23 19:46:57 +01:00

52 lines
1.9 KiB
Python

# Copyright 2020
#
# 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 oslo_config import cfg
from vitrage.common.constants import DatasourceOpts as DSOpts
from vitrage.common.constants import UpdateMethod
TMFAPI639_DATASOURCE = 'tmfapi639'
OPTS = [
cfg.StrOpt(DSOpts.TRANSFORMER,
default='vitrage.datasources.tmfapi639.transformer.'
'TmfApi639Transformer',
help='TmfApi639 transformer class path',
required=True),
cfg.StrOpt(DSOpts.DRIVER,
default='vitrage.datasources.tmfapi639.driver.'
'TmfApi639Driver',
help='TmfApi639 driver class path',
required=True),
cfg.StrOpt(DSOpts.UPDATE_METHOD,
default=UpdateMethod.PULL,
help='None: updates only via Vitrage periodic snapshots.'
'Pull: updates periodically.'
'Push: updates by getting notifications from the'
' datasource itself.',
required=True),
cfg.IntOpt(DSOpts.CHANGES_INTERVAL,
default=30,
min=10,
help='interval in seconds between checking changes in the'
' TmfApi 639 interface'),
cfg.StrOpt(DSOpts.CONFIG_FILE, default='/etc/vitrage/tmfapi639_conf.yaml',
help='TmfApi639 configuration file'
)]
class TmfApi639Fields(object):
TYPE = 'type'
ID = 'id'