Commit a0f44c04 authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Device component - NETCONF DSCM Driver:

- Remove, unneeded files
parent 32dc8224
Loading
Loading
Loading
Loading
+0 −14
Original line number Diff line number Diff line
<components xmlns="http://openconfig.net/yang/platform">
    <component{% if operation is defined %} xmlns:nc="urn:ietf:params:xml:ns:netconf:base:1.0" nc:operation="{{operation}}"{% endif %}>
        <name>{{name}}</name>
        <optical-channel xmlns="http://openconfig.net/yang/terminal-device-digital-subcarriers">
            {% if operation is defined and operation != 'delete' %}
            <config>
                {% if frequency is defined %}<frequency>{{frequency}}</frequency>{% endif %}
                {% if target_output_power is defined %}<target-output-power>{{target_output_power}}</target-output-power>{% endif %}
                {% if operational_mode is defined %}<operational-mode>{{operational_mode}}</operational-mode>{% endif %}
            </config>
            {% endif %}
        </optical-channel>
    </component>
</components>
+0 −3
Original line number Diff line number Diff line
<components xmlns="http://openconfig.net/yang/platform">
    <component/>
</components>
+0 −11
Original line number Diff line number Diff line
<components xmlns="http://openconfig.net/yang/platform">
    <component>
        {% if component_name %}
        <name>{{ component_name }}</name>
        {% endif %}
        <config/>
        <optical-channel xmlns="http://openconfig.net/yang/terminal-device-digital-subcarriers">
            <config/>
        </optical-channel>
    </component>
</components>