~cisco-openstack/neutron/l2network-plugin-multiblade

« back to all changes in this revision

Viewing changes to quantum/plugins/cisco/common/cisco_constants.py

Mering Sumit's branch with plugin support for Credentials, QoS, NovaTenant resources. Also merging latest from lp:~cisco-openstack/quantum/l2network-plugin-persistence

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
TENANT_CREDENTIALS = 'tenant-credentials'
59
59
 
60
60
PORT_PROFILE = 'port-profile'
61
 
PROFILE_ID = 'profile-id'
62
 
PROFILE_NAME = 'profile-name'
 
61
PROFILE_ID = 'profile_id'
 
62
PROFILE_NAME = 'profile_name'
63
63
PROFILE_VLAN_NAME = 'profile-vlan-name'
64
64
PROFILE_VLAN_ID = 'vlan-id'
65
 
PROFILE_QOS = 'profile-qos'
 
65
PROFILE_QOS = 'qos_name'
66
66
PROFILE_ASSOCIATIONS = 'assignment'
67
67
 
68
 
QOS_LEVEL_ID = 'qos-id'
69
 
QOS_LEVEL_NAME = 'qos-name'
 
68
QOS_LEVEL_ID = 'qos_id'
 
69
QOS_LEVEL_NAME = 'qos_name'
70
70
QOS_LEVEL_ASSOCIATIONS = 'qos-level-associations'
71
 
QOS_LEVEL_DESCRIPTION = 'qos-desc'
 
71
QOS_LEVEL_DESCRIPTION = 'qos_desc'
72
72
 
73
 
CREDENTIAL_ID = 'credential-id'
74
 
CREDENTIAL_NAME = 'credential-name'
75
 
CREDENTIAL_USERNAME = 'credential-username'
76
 
CREDENTIAL_PASSWORD = 'credential-password'
 
73
CREDENTIAL_ID = 'credential_id'
 
74
CREDENTIAL_NAME = 'credential_name'
 
75
CREDENTIAL_USERNAME = 'user_name'
 
76
CREDENTIAL_PASSWORD = 'password'
77
77
MASKED_PASSWORD = '********'
78
78
 
79
79
USERNAME = 'username'
120
120
DEVICE_IP = 'device-ip'
121
121
 
122
122
NO_VLAN_ID = 0
 
123
 
 
124
HOST_LIST = 'host_list'
 
125
HOST_1 = 'host_1'
 
126
 
 
127
VIF_DESC = 'vif_desc'
 
128
DEVICENAME = 'device'
 
129
UCSPROFILE = 'portprofile'
 
130
 
 
131
MAX_CREDENTIALS = 65568
 
132
MAX_QOS_LEVELS = 1024