Skip to content
Snippets Groups Projects
Select Git revision
  • c6699878f15def6aac2a81da779aadcbf6ecb0f0
  • master default protected
  • feat/hackfest8 protected
  • release/6.0.0 protected
  • develop protected
  • feat/347-cttc-integrate-ddos-mitigation-with-teraflowsdn
  • feat/345-cttc-fix-ci-cd-and-unit-tests-for-dscm-pluggables
  • feat/349-new-monitoring-updates-for-optical-controller-integration
  • cnit_ofc26
  • ofc_polimi
  • CTTC-IMPLEMENT-NBI-CONNECTOR-NOS-ZTP
  • CTTC-TEST-SMARTNICS-6GMICROSDN-ZTP
  • feat/327-tid-new-service-to-ipowdm-controller-to-manage-transceivers-configuration-on-external-agent
  • cnit_tapi
  • feat/330-tid-pcep-component
  • feat/tid-newer-pcep-component
  • feat/116-ubi-updates-in-telemetry-backend-to-support-p4-in-band-network-telemetry
  • feat/292-cttc-implement-integration-test-for-ryu-openflow
  • cnit-p2mp-premerge
  • feat/325-tid-nbi-e2e-to-manage-e2e-path-computation
  • feat/326-tid-external-management-of-devices-telemetry-nbi
  • v6.0.0 protected
  • v5.0.0 protected
  • v4.0.0 protected
  • demo-dpiab-eucnc2024
  • v3.0.0 protected
  • v2.1.0 protected
  • v2.0.0 protected
  • v1.0.0 protected
29 results

deploy_in_kubernetes.sh

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    connectionService.proto 634 B
    //Example of connection
    syntax = "proto3";
    package connection;
    
    import "google/protobuf/empty.proto";
    
    service ConnectionService {
      rpc CreateConnection (Connection) returns (google.protobuf.Empty) {}
      rpc ListConnection (google.protobuf.Empty) returns (ConnectionList) {}
    }
    
    
    message Connection {
      string connectionId = 1;
      string sourceNode = 2;  
      string targetNode = 3;
      string sourcePort = 4;  
      string targetPort = 5;  
      uint32 bandwidth = 6;
      
      enum LayerProtocolName {
        ETH = 0;
        OPTICAL = 1;
      }
    
      LayerProtocolName layerProtocolName = 7;
    
    }
    
    message ConnectionList {
      repeated Connection connection = 1;
    }