47 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# vim: tabstop=4 shiftwidth=4 softtabstop=4
 | 
						|
#
 | 
						|
# Copyright 2011 Cisco Systems, Inc.  All rights reserved.
 | 
						|
#
 | 
						|
#    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.
 | 
						|
#
 | 
						|
# @author: Sumit Naiksatam, Cisco Systems, Inc.
 | 
						|
#
 | 
						|
 | 
						|
PORT_STATE = 'port-state'
 | 
						|
PORT_UP = "UP"
 | 
						|
PORT_DOWN = "DOWN"
 | 
						|
 | 
						|
ATTACHMENT = 'attachment'
 | 
						|
PORT_ID = 'port-id'
 | 
						|
 | 
						|
NET_ID = 'net-id'
 | 
						|
NET_NAME = 'net-name'
 | 
						|
NET_PORTS = 'net-ports'
 | 
						|
NET_VLAN_NAME = 'net-vlan-name'
 | 
						|
NET_VLAN_ID = 'net-vlan-id'
 | 
						|
NET_TENANTS = 'net-tenants'
 | 
						|
 | 
						|
TENANT_ID = 'tenant-id'
 | 
						|
TENANT_NETWORKS = 'tenant-networks'
 | 
						|
TENANT_NAME = 'tenant-name'
 | 
						|
TENANT_PORTPROFILES = 'tenant-portprofiles'
 | 
						|
 | 
						|
PORT_PROFILE = 'port-profile'
 | 
						|
PROFILE_ID = 'profile-id'
 | 
						|
PROFILE_NAME = 'profile-name'
 | 
						|
PROFILE_VLAN_NAME = 'profile-vlan-name'
 | 
						|
PROFILE_VLAN_ID = 'profile-vlan-id'
 | 
						|
PROFILE_QOS = 'profile-qos'
 | 
						|
 | 
						|
LOGGER_COMPONENT_NAME = "cisco_plugin"
 |