Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
controller
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TFS
controller
Merge requests
!305
Resolve "(CTTC) Driver required to interact with IETF Slice Compliant Controller"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "(CTTC) Driver required to interact with IETF Slice Compliant Controller"
feat/240-cttc-driver-required-to-interact-with-ietf-slice
into
develop
Overview
0
Commits
8
Pipelines
15
Changes
5
Merged
Shayan Hajipour
requested to merge
feat/240-cttc-driver-required-to-interact-with-ietf-slice
into
develop
6 months ago
Overview
0
Commits
8
Pipelines
15
Changes
5
Expand
Closes
#240 (closed)
0
0
Merge request reports
Compare
develop
version 6
5ddadb6a
4 months ago
version 5
a65301c9
4 months ago
version 4
aa6b1af6
5 months ago
version 3
6da99c19
5 months ago
version 2
f8d22900
5 months ago
version 1
00e3650a
5 months ago
develop (base)
and
latest version
latest version
85546979
8 commits,
4 months ago
version 6
5ddadb6a
7 commits,
4 months ago
version 5
a65301c9
6 commits,
4 months ago
version 4
aa6b1af6
5 commits,
5 months ago
version 3
6da99c19
4 commits,
5 months ago
version 2
f8d22900
3 commits,
5 months ago
version 1
00e3650a
1 commit,
5 months ago
5 files
+
567
−
0
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
src/device/service/drivers/ietf_slice/Constants.py
0 → 100644
+
25
−
0
Options
# Copyright 2022-2025 ETSI OSG/SDG TeraFlowSDN (TFS) (https://tfs.etsi.org/)
#
# 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
device.service.driver_api._Driver
import
(
RESOURCE_ENDPOINTS
,
RESOURCE_INTERFACES
,
RESOURCE_NETWORK_INSTANCES
,
)
SPECIAL_RESOURCE_MAPPINGS
=
{
RESOURCE_ENDPOINTS
:
"
/endpoints
"
,
RESOURCE_INTERFACES
:
"
/interfaces
"
,
RESOURCE_NETWORK_INSTANCES
:
"
/net-instances
"
,
}
Loading