Srikanth Vavilapalli | 1725e49 | 2014-12-01 17:50:52 -0800 | [diff] [blame] | 1 | # |
| 2 | # Copyright (c) 2013 Big Switch Networks, Inc. |
| 3 | # |
| 4 | # Licensed under the Eclipse Public License, Version 1.0 (the |
| 5 | # "License"); you may not use this file except in compliance with the |
| 6 | # License. You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.eclipse.org/legal/epl-v10.html |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or |
| 13 | # implied. See the License for the specific language governing |
| 14 | # permissions and limitations under the License. |
| 15 | # |
| 16 | |
| 17 | import command |
| 18 | |
| 19 | command.model_obj_type_disable_submode('flow-entry') |
| 20 | |
| 21 | command.model_obj_type_enable_cascade_delete('flow-entry') |
| 22 | |
| 23 | command.model_obj_type_disable_edit('flow-entry', 'hard-timeout') |
| 24 | command.model_obj_type_disable_edit('flow-entry', 'idle-timeout') |
| 25 | command.model_obj_type_disable_edit('flow-entry', 'actions') |
| 26 | command.model_obj_type_disable_edit('flow-entry', 'active') |
| 27 | command.model_obj_type_disable_edit('flow-entry', 'priority') |
| 28 | command.model_obj_type_disable_edit('flow-entry', 'cookie') |
| 29 | command.model_obj_type_disable_edit('flow-entry', 'wildcards') |
| 30 | command.model_obj_type_disable_edit('flow-entry', 'ingress-port') |
| 31 | command.model_obj_type_disable_edit('flow-entry', 'src-mac') |
| 32 | command.model_obj_type_disable_edit('flow-entry', 'dst-mac') |
| 33 | command.model_obj_type_disable_edit('flow-entry', 'vlan-id') |
| 34 | command.model_obj_type_disable_edit('flow-entry', 'vlan-priority') |
| 35 | command.model_obj_type_disable_edit('flow-entry', 'ether-type') |
| 36 | command.model_obj_type_disable_edit('flow-entry', 'tos-bits') |
| 37 | command.model_obj_type_disable_edit('flow-entry', 'protocol') |
| 38 | command.model_obj_type_disable_edit('flow-entry', 'src-ip') |
| 39 | command.model_obj_type_disable_edit('flow-entry', 'dst-ip') |
| 40 | command.model_obj_type_disable_edit('flow-entry', 'src-port') |
| 41 | command.model_obj_type_disable_edit('flow-entry', 'dst-port') |
| 42 | |
| 43 | |