Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Commit

Permalink
add missing file
Browse files Browse the repository at this point in the history
  • Loading branch information
sbasan committed Apr 6, 2024
1 parent 362f3f9 commit 4863862
Showing 1 changed file with 26 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
from typing import List, Union
from typing_extensions import Annotated

from pydantic import Field

from catalystwan.models.configuration.feature_profile.sdwan.topology.hubspoke import HubSpokeParcel
from catalystwan.models.configuration.feature_profile.sdwan.topology.mesh import MeshParcel


AnyTopologyParcel = Annotated[
Union[
MeshParcel,
HubSpokeParcel,
],
Field(discriminator="type_"),
]

__all__ = [
"AnyTopologyParcel",
"HubSpokeParcel"
"MeshParcel",
]


def __dir__() -> "List[str]":
return list(__all__)

0 comments on commit 4863862

Please sign in to comment.