mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-14 01:41:22 -06:00

* Add boto3 as a dependency * Add Amazon S3 backend for remote data sources * Update docs to include Amazon S3 support
37 lines
734 B
Python
37 lines
734 B
Python
from django.utils.translation import gettext as _
|
|
|
|
from utilities.choices import ChoiceSet
|
|
|
|
|
|
#
|
|
# Data sources
|
|
#
|
|
|
|
class DataSourceTypeChoices(ChoiceSet):
|
|
LOCAL = 'local'
|
|
GIT = 'git'
|
|
AMAZON_S3 = 'amazon-s3'
|
|
|
|
CHOICES = (
|
|
(LOCAL, _('Local'), 'gray'),
|
|
(GIT, _('Git'), 'blue'),
|
|
(AMAZON_S3, _('Amazon S3'), 'blue'),
|
|
)
|
|
|
|
|
|
class DataSourceStatusChoices(ChoiceSet):
|
|
|
|
NEW = 'new'
|
|
QUEUED = 'queued'
|
|
SYNCING = 'syncing'
|
|
COMPLETED = 'completed'
|
|
FAILED = 'failed'
|
|
|
|
CHOICES = (
|
|
(NEW, _('New'), 'blue'),
|
|
(QUEUED, _('Queued'), 'orange'),
|
|
(SYNCING, _('Syncing'), 'cyan'),
|
|
(COMPLETED, _('Completed'), 'green'),
|
|
(FAILED, _('Failed'), 'red'),
|
|
)
|