├── .gitignore ├── .project ├── .settings └── .gitignore ├── BUILD_TOOLS ├── git-rel-notes-html.ejs ├── git-rel-notes-md.ejs ├── swagger-generator-cli-1.1.13-executable.jar ├── swagger-generator-cli-1.1.14-SNAPSHOT-executable.jar ├── uml2yang.sh ├── yang2oas.sh ├── yang2swag.sh └── yang2tree.sh ├── LICENSE ├── OAS ├── .project ├── tapi-common.yaml ├── tapi-connectivity.yaml ├── tapi-digital-otn.yaml ├── tapi-dsr.yaml ├── tapi-equipment.yaml ├── tapi-eth.yaml ├── tapi-fm.yaml ├── tapi-gnmi-streaming.yaml ├── tapi-notification.yaml ├── tapi-oam.yaml ├── tapi-path-computation.yaml ├── tapi-photonic-media.yaml ├── tapi-streaming.yaml ├── tapi-topology.yaml └── tapi-virtual-network.yaml ├── PROTOBUF └── tapi-streaming-performance.proto ├── README.md ├── UML ├── .project ├── .settings │ └── stylesheets.xmi ├── README.md ├── TapiClassDiagram.css ├── TapiCommon.di ├── TapiCommon.notation ├── TapiCommon.uml ├── TapiConnectivity.di ├── TapiConnectivity.notation ├── TapiConnectivity.uml ├── TapiDigitalOtn.di ├── TapiDigitalOtn.notation ├── TapiDigitalOtn.uml ├── TapiDsr.di ├── TapiDsr.notation ├── TapiDsr.uml ├── TapiEquipment.di ├── TapiEquipment.notation ├── TapiEquipment.uml ├── TapiEth.di ├── TapiEth.notation ├── TapiEth.uml ├── TapiFm.di ├── TapiFm.notation ├── TapiFm.uml ├── TapiGnmiStreaming.di ├── TapiGnmiStreaming.notation ├── TapiGnmiStreaming.uml ├── TapiNotification.di ├── TapiNotification.notation ├── TapiNotification.uml ├── TapiOam.di ├── TapiOam.notation ├── TapiOam.uml ├── TapiPathComputation.di ├── TapiPathComputation.notation ├── TapiPathComputation.uml ├── TapiPhotonicMedia.di ├── TapiPhotonicMedia.notation ├── TapiPhotonicMedia.uml ├── TapiStreaming.di ├── TapiStreaming.notation ├── TapiStreaming.uml ├── TapiTopology.di ├── TapiTopology.notation ├── TapiTopology.uml ├── TapiVirtualNetwork.di ├── TapiVirtualNetwork.notation ├── TapiVirtualNetwork.uml └── UmlProfiles │ ├── ClassDiagramStyleSheet.css │ ├── OpenInterfaceModelProfile │ ├── OpenInterfaceModel_Profile.profile.di │ ├── OpenInterfaceModel_Profile.profile.notation │ └── OpenInterfaceModel_Profile.profile.uml │ ├── OpenModelProfile │ ├── OpenModel_Profile.profile.di │ ├── OpenModel_Profile.profile.notation │ └── OpenModel_Profile.profile.uml │ └── ProfileLifecycleProfile │ ├── ProfileLifecycle_Profile.profile.di │ ├── ProfileLifecycle_Profile.profile.notation │ └── ProfileLifecycle_Profile.profile.uml ├── YANG ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.m2e.core.prefs ├── README.md ├── TapiTree.tree ├── config-xmi2yang.json ├── tapi-common.tree ├── tapi-common.yang ├── tapi-connectivity.tree ├── tapi-connectivity.yang ├── tapi-digital-otn.tree ├── tapi-digital-otn.yang ├── tapi-dsr.tree ├── tapi-dsr.yang ├── tapi-equipment.tree ├── tapi-equipment.yang ├── tapi-eth.tree ├── tapi-eth.yang ├── tapi-fm.tree ├── tapi-fm.yang ├── tapi-gnmi-streaming.tree ├── tapi-gnmi-streaming.yang ├── tapi-notification.tree ├── tapi-notification.yang ├── tapi-oam.tree ├── tapi-oam.yang ├── tapi-path-computation.tree ├── tapi-path-computation.yang ├── tapi-photonic-media.tree ├── tapi-photonic-media.yang ├── tapi-streaming.tree ├── tapi-streaming.yang ├── tapi-topology.tree ├── tapi-topology.yang ├── tapi-virtual-network.tree └── tapi-virtual-network.yang └── changelog.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/.project -------------------------------------------------------------------------------- /.settings/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/.settings/.gitignore -------------------------------------------------------------------------------- /BUILD_TOOLS/git-rel-notes-html.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/BUILD_TOOLS/git-rel-notes-html.ejs -------------------------------------------------------------------------------- /BUILD_TOOLS/git-rel-notes-md.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/BUILD_TOOLS/git-rel-notes-md.ejs -------------------------------------------------------------------------------- /BUILD_TOOLS/swagger-generator-cli-1.1.13-executable.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/BUILD_TOOLS/swagger-generator-cli-1.1.13-executable.jar -------------------------------------------------------------------------------- /BUILD_TOOLS/swagger-generator-cli-1.1.14-SNAPSHOT-executable.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/BUILD_TOOLS/swagger-generator-cli-1.1.14-SNAPSHOT-executable.jar -------------------------------------------------------------------------------- /BUILD_TOOLS/uml2yang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/BUILD_TOOLS/uml2yang.sh -------------------------------------------------------------------------------- /BUILD_TOOLS/yang2oas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/BUILD_TOOLS/yang2oas.sh -------------------------------------------------------------------------------- /BUILD_TOOLS/yang2swag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/BUILD_TOOLS/yang2swag.sh -------------------------------------------------------------------------------- /BUILD_TOOLS/yang2tree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/BUILD_TOOLS/yang2tree.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /OAS/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/OAS/.project -------------------------------------------------------------------------------- /OAS/tapi-common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/OAS/tapi-common.yaml -------------------------------------------------------------------------------- /OAS/tapi-connectivity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/OAS/tapi-connectivity.yaml -------------------------------------------------------------------------------- /OAS/tapi-digital-otn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/OAS/tapi-digital-otn.yaml -------------------------------------------------------------------------------- /OAS/tapi-dsr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/OAS/tapi-dsr.yaml -------------------------------------------------------------------------------- /OAS/tapi-equipment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/OAS/tapi-equipment.yaml -------------------------------------------------------------------------------- /OAS/tapi-eth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/OAS/tapi-eth.yaml -------------------------------------------------------------------------------- /OAS/tapi-fm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/OAS/tapi-fm.yaml -------------------------------------------------------------------------------- /OAS/tapi-gnmi-streaming.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/OAS/tapi-gnmi-streaming.yaml -------------------------------------------------------------------------------- /OAS/tapi-notification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/OAS/tapi-notification.yaml -------------------------------------------------------------------------------- /OAS/tapi-oam.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/OAS/tapi-oam.yaml -------------------------------------------------------------------------------- /OAS/tapi-path-computation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/OAS/tapi-path-computation.yaml -------------------------------------------------------------------------------- /OAS/tapi-photonic-media.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/OAS/tapi-photonic-media.yaml -------------------------------------------------------------------------------- /OAS/tapi-streaming.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/OAS/tapi-streaming.yaml -------------------------------------------------------------------------------- /OAS/tapi-topology.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/OAS/tapi-topology.yaml -------------------------------------------------------------------------------- /OAS/tapi-virtual-network.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/OAS/tapi-virtual-network.yaml -------------------------------------------------------------------------------- /PROTOBUF/tapi-streaming-performance.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/PROTOBUF/tapi-streaming-performance.proto -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/README.md -------------------------------------------------------------------------------- /UML/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/.project -------------------------------------------------------------------------------- /UML/.settings/stylesheets.xmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/.settings/stylesheets.xmi -------------------------------------------------------------------------------- /UML/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/README.md -------------------------------------------------------------------------------- /UML/TapiClassDiagram.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiClassDiagram.css -------------------------------------------------------------------------------- /UML/TapiCommon.di: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiCommon.di -------------------------------------------------------------------------------- /UML/TapiCommon.notation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiCommon.notation -------------------------------------------------------------------------------- /UML/TapiCommon.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiCommon.uml -------------------------------------------------------------------------------- /UML/TapiConnectivity.di: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiConnectivity.di -------------------------------------------------------------------------------- /UML/TapiConnectivity.notation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiConnectivity.notation -------------------------------------------------------------------------------- /UML/TapiConnectivity.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiConnectivity.uml -------------------------------------------------------------------------------- /UML/TapiDigitalOtn.di: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiDigitalOtn.di -------------------------------------------------------------------------------- /UML/TapiDigitalOtn.notation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiDigitalOtn.notation -------------------------------------------------------------------------------- /UML/TapiDigitalOtn.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiDigitalOtn.uml -------------------------------------------------------------------------------- /UML/TapiDsr.di: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiDsr.di -------------------------------------------------------------------------------- /UML/TapiDsr.notation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiDsr.notation -------------------------------------------------------------------------------- /UML/TapiDsr.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiDsr.uml -------------------------------------------------------------------------------- /UML/TapiEquipment.di: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiEquipment.di -------------------------------------------------------------------------------- /UML/TapiEquipment.notation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiEquipment.notation -------------------------------------------------------------------------------- /UML/TapiEquipment.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiEquipment.uml -------------------------------------------------------------------------------- /UML/TapiEth.di: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiEth.di -------------------------------------------------------------------------------- /UML/TapiEth.notation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiEth.notation -------------------------------------------------------------------------------- /UML/TapiEth.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiEth.uml -------------------------------------------------------------------------------- /UML/TapiFm.di: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiFm.di -------------------------------------------------------------------------------- /UML/TapiFm.notation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiFm.notation -------------------------------------------------------------------------------- /UML/TapiFm.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiFm.uml -------------------------------------------------------------------------------- /UML/TapiGnmiStreaming.di: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiGnmiStreaming.di -------------------------------------------------------------------------------- /UML/TapiGnmiStreaming.notation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiGnmiStreaming.notation -------------------------------------------------------------------------------- /UML/TapiGnmiStreaming.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiGnmiStreaming.uml -------------------------------------------------------------------------------- /UML/TapiNotification.di: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiNotification.di -------------------------------------------------------------------------------- /UML/TapiNotification.notation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiNotification.notation -------------------------------------------------------------------------------- /UML/TapiNotification.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiNotification.uml -------------------------------------------------------------------------------- /UML/TapiOam.di: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiOam.di -------------------------------------------------------------------------------- /UML/TapiOam.notation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiOam.notation -------------------------------------------------------------------------------- /UML/TapiOam.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiOam.uml -------------------------------------------------------------------------------- /UML/TapiPathComputation.di: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiPathComputation.di -------------------------------------------------------------------------------- /UML/TapiPathComputation.notation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiPathComputation.notation -------------------------------------------------------------------------------- /UML/TapiPathComputation.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiPathComputation.uml -------------------------------------------------------------------------------- /UML/TapiPhotonicMedia.di: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiPhotonicMedia.di -------------------------------------------------------------------------------- /UML/TapiPhotonicMedia.notation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiPhotonicMedia.notation -------------------------------------------------------------------------------- /UML/TapiPhotonicMedia.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiPhotonicMedia.uml -------------------------------------------------------------------------------- /UML/TapiStreaming.di: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiStreaming.di -------------------------------------------------------------------------------- /UML/TapiStreaming.notation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiStreaming.notation -------------------------------------------------------------------------------- /UML/TapiStreaming.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiStreaming.uml -------------------------------------------------------------------------------- /UML/TapiTopology.di: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiTopology.di -------------------------------------------------------------------------------- /UML/TapiTopology.notation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiTopology.notation -------------------------------------------------------------------------------- /UML/TapiTopology.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiTopology.uml -------------------------------------------------------------------------------- /UML/TapiVirtualNetwork.di: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiVirtualNetwork.di -------------------------------------------------------------------------------- /UML/TapiVirtualNetwork.notation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiVirtualNetwork.notation -------------------------------------------------------------------------------- /UML/TapiVirtualNetwork.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/TapiVirtualNetwork.uml -------------------------------------------------------------------------------- /UML/UmlProfiles/ClassDiagramStyleSheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/UmlProfiles/ClassDiagramStyleSheet.css -------------------------------------------------------------------------------- /UML/UmlProfiles/OpenInterfaceModelProfile/OpenInterfaceModel_Profile.profile.di: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/UmlProfiles/OpenInterfaceModelProfile/OpenInterfaceModel_Profile.profile.di -------------------------------------------------------------------------------- /UML/UmlProfiles/OpenInterfaceModelProfile/OpenInterfaceModel_Profile.profile.notation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/UmlProfiles/OpenInterfaceModelProfile/OpenInterfaceModel_Profile.profile.notation -------------------------------------------------------------------------------- /UML/UmlProfiles/OpenInterfaceModelProfile/OpenInterfaceModel_Profile.profile.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/UmlProfiles/OpenInterfaceModelProfile/OpenInterfaceModel_Profile.profile.uml -------------------------------------------------------------------------------- /UML/UmlProfiles/OpenModelProfile/OpenModel_Profile.profile.di: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/UmlProfiles/OpenModelProfile/OpenModel_Profile.profile.di -------------------------------------------------------------------------------- /UML/UmlProfiles/OpenModelProfile/OpenModel_Profile.profile.notation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/UmlProfiles/OpenModelProfile/OpenModel_Profile.profile.notation -------------------------------------------------------------------------------- /UML/UmlProfiles/OpenModelProfile/OpenModel_Profile.profile.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/UmlProfiles/OpenModelProfile/OpenModel_Profile.profile.uml -------------------------------------------------------------------------------- /UML/UmlProfiles/ProfileLifecycleProfile/ProfileLifecycle_Profile.profile.di: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/UmlProfiles/ProfileLifecycleProfile/ProfileLifecycle_Profile.profile.di -------------------------------------------------------------------------------- /UML/UmlProfiles/ProfileLifecycleProfile/ProfileLifecycle_Profile.profile.notation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/UmlProfiles/ProfileLifecycleProfile/ProfileLifecycle_Profile.profile.notation -------------------------------------------------------------------------------- /UML/UmlProfiles/ProfileLifecycleProfile/ProfileLifecycle_Profile.profile.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/UML/UmlProfiles/ProfileLifecycleProfile/ProfileLifecycle_Profile.profile.uml -------------------------------------------------------------------------------- /YANG/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/.project -------------------------------------------------------------------------------- /YANG/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/tapi-eth@2018-08-31.yang=UTF-8 3 | -------------------------------------------------------------------------------- /YANG/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /YANG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/README.md -------------------------------------------------------------------------------- /YANG/TapiTree.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/TapiTree.tree -------------------------------------------------------------------------------- /YANG/config-xmi2yang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/config-xmi2yang.json -------------------------------------------------------------------------------- /YANG/tapi-common.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/tapi-common.tree -------------------------------------------------------------------------------- /YANG/tapi-common.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/tapi-common.yang -------------------------------------------------------------------------------- /YANG/tapi-connectivity.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/tapi-connectivity.tree -------------------------------------------------------------------------------- /YANG/tapi-connectivity.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/tapi-connectivity.yang -------------------------------------------------------------------------------- /YANG/tapi-digital-otn.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/tapi-digital-otn.tree -------------------------------------------------------------------------------- /YANG/tapi-digital-otn.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/tapi-digital-otn.yang -------------------------------------------------------------------------------- /YANG/tapi-dsr.tree: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /YANG/tapi-dsr.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/tapi-dsr.yang -------------------------------------------------------------------------------- /YANG/tapi-equipment.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/tapi-equipment.tree -------------------------------------------------------------------------------- /YANG/tapi-equipment.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/tapi-equipment.yang -------------------------------------------------------------------------------- /YANG/tapi-eth.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/tapi-eth.tree -------------------------------------------------------------------------------- /YANG/tapi-eth.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/tapi-eth.yang -------------------------------------------------------------------------------- /YANG/tapi-fm.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/tapi-fm.tree -------------------------------------------------------------------------------- /YANG/tapi-fm.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/tapi-fm.yang -------------------------------------------------------------------------------- /YANG/tapi-gnmi-streaming.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/tapi-gnmi-streaming.tree -------------------------------------------------------------------------------- /YANG/tapi-gnmi-streaming.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/tapi-gnmi-streaming.yang -------------------------------------------------------------------------------- /YANG/tapi-notification.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/tapi-notification.tree -------------------------------------------------------------------------------- /YANG/tapi-notification.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/tapi-notification.yang -------------------------------------------------------------------------------- /YANG/tapi-oam.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/tapi-oam.tree -------------------------------------------------------------------------------- /YANG/tapi-oam.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/tapi-oam.yang -------------------------------------------------------------------------------- /YANG/tapi-path-computation.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/tapi-path-computation.tree -------------------------------------------------------------------------------- /YANG/tapi-path-computation.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/tapi-path-computation.yang -------------------------------------------------------------------------------- /YANG/tapi-photonic-media.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/tapi-photonic-media.tree -------------------------------------------------------------------------------- /YANG/tapi-photonic-media.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/tapi-photonic-media.yang -------------------------------------------------------------------------------- /YANG/tapi-streaming.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/tapi-streaming.tree -------------------------------------------------------------------------------- /YANG/tapi-streaming.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/tapi-streaming.yang -------------------------------------------------------------------------------- /YANG/tapi-topology.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/tapi-topology.tree -------------------------------------------------------------------------------- /YANG/tapi-topology.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/tapi-topology.yang -------------------------------------------------------------------------------- /YANG/tapi-virtual-network.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/tapi-virtual-network.tree -------------------------------------------------------------------------------- /YANG/tapi-virtual-network.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/YANG/tapi-virtual-network.yang -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Network-Models-and-Interfaces-ONMI/TAPI/HEAD/changelog.txt --------------------------------------------------------------------------------