3c164b9988
Port of the quantum/plugin/cisco/nexus plugin to run under the Modular Layer 2 (ML2) infrastructure as defined in https://blueprints.launchpad.net/quantum/+spec/ml2-mechanism-drivers Implements blueprint ml2-md-cisco-nexus Change-Id: Ifdd03bec554a08266de859387f1901858a3be4a1
49 lines
1.2 KiB
Python
49 lines
1.2 KiB
Python
# Copyright 2011 OpenStack Foundation.
|
|
# 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.
|
|
#
|
|
|
|
|
|
# Attachment attributes
|
|
INSTANCE_ID = 'instance_id'
|
|
TENANT_ID = 'tenant_id'
|
|
TENANT_NAME = 'tenant_name'
|
|
HOST_NAME = 'host_name'
|
|
|
|
# Network attributes
|
|
NET_ID = 'id'
|
|
NET_NAME = 'name'
|
|
NET_VLAN_ID = 'vlan_id'
|
|
NET_VLAN_NAME = 'vlan_name'
|
|
NET_PORTS = 'ports'
|
|
|
|
# Network types
|
|
NETWORK_TYPE_FLAT = 'flat'
|
|
NETWORK_TYPE_LOCAL = 'local'
|
|
NETWORK_TYPE_VLAN = 'vlan'
|
|
NETWORK_TYPE_NONE = 'none'
|
|
|
|
CREDENTIAL_USERNAME = 'user_name'
|
|
CREDENTIAL_PASSWORD = 'password'
|
|
|
|
USERNAME = 'username'
|
|
PASSWORD = 'password'
|
|
|
|
NETWORK_ADMIN = 'network_admin'
|
|
|
|
NETWORK = 'network'
|
|
PORT = 'port'
|
|
CONTEXT = 'context'
|
|
SUBNET = 'subnet'
|