-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsync_adapter.py
More file actions
28 lines (25 loc) · 980 Bytes
/
sync_adapter.py
File metadata and controls
28 lines (25 loc) · 980 Bytes
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
from infrahub_sync.adapters.generic_rest_api import Generic_Rest_ApiAdapter
from .sync_models import (
InfraAutonomousSystem,
InfraBGPCommunity,
InfraBGPPeerGroup,
InfraBGPRoutingPolicy,
InfraIXP,
InfraIXPConnection,
IpamIPAddress,
OrganizationProvider,
)
# -------------------------------------------------------
# AUTO-GENERATED FILE, DO NOT MODIFY
# This file has been generated with the command `infrahub-sync generate`
# All modifications will be lost the next time you reexecute this command
# -------------------------------------------------------
class Generic_Rest_ApiSync(Generic_Rest_ApiAdapter):
InfraAutonomousSystem = InfraAutonomousSystem
InfraBGPPeerGroup = InfraBGPPeerGroup
IpamIPAddress = IpamIPAddress
OrganizationProvider = OrganizationProvider
InfraBGPRoutingPolicy = InfraBGPRoutingPolicy
InfraBGPCommunity = InfraBGPCommunity
InfraIXP = InfraIXP
InfraIXPConnection = InfraIXPConnection