546259bce3
Renamed N1kv_profile class to N1kv. Modified N1kv attribute extension class to fix XML namespace issues. Change-Id: I29b541730fc95c5e16667b64efd180be31e25b17 Closes-Bug: #1282352
107 lines
3.6 KiB
Python
107 lines
3.6 KiB
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
# Copyright 2013 Cisco Systems, Inc.
|
|
#
|
|
# 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: Abhishek Raut, Cisco Systems, Inc.
|
|
# @author: Rudrajit Tapadar, Cisco Systems, Inc.
|
|
# @author: Aruna Kushwaha, Cisco Systems, Inc.
|
|
# @author: Sergey Sudakovich, Cisco Systems, Inc.
|
|
|
|
from neutron.api import extensions
|
|
from neutron.api.v2 import attributes
|
|
|
|
|
|
PROFILE_ID = 'n1kv:profile_id'
|
|
MULTICAST_IP = 'n1kv:multicast_ip'
|
|
SEGMENT_ADD = 'n1kv:segment_add'
|
|
SEGMENT_DEL = 'n1kv:segment_del'
|
|
MEMBER_SEGMENTS = 'n1kv:member_segments'
|
|
|
|
EXTENDED_ATTRIBUTES_2_0 = {
|
|
'networks': {
|
|
PROFILE_ID: {'allow_post': True, 'allow_put': False,
|
|
'validate': {'type:regex': attributes.UUID_PATTERN},
|
|
'default': attributes.ATTR_NOT_SPECIFIED,
|
|
'is_visible': True},
|
|
MULTICAST_IP: {'allow_post': True, 'allow_put': True,
|
|
'default': attributes.ATTR_NOT_SPECIFIED,
|
|
'is_visible': True},
|
|
SEGMENT_ADD: {'allow_post': True, 'allow_put': True,
|
|
'default': attributes.ATTR_NOT_SPECIFIED,
|
|
'is_visible': True},
|
|
SEGMENT_DEL: {'allow_post': True, 'allow_put': True,
|
|
'default': attributes.ATTR_NOT_SPECIFIED,
|
|
'is_visible': True},
|
|
MEMBER_SEGMENTS: {'allow_post': True, 'allow_put': True,
|
|
'default': attributes.ATTR_NOT_SPECIFIED,
|
|
'is_visible': True},
|
|
},
|
|
'ports': {
|
|
PROFILE_ID: {'allow_post': True, 'allow_put': False,
|
|
'validate': {'type:regex': attributes.UUID_PATTERN},
|
|
'default': attributes.ATTR_NOT_SPECIFIED,
|
|
'is_visible': True}
|
|
}
|
|
}
|
|
|
|
|
|
class N1kv(extensions.ExtensionDescriptor):
|
|
|
|
"""Extension class supporting N1kv profiles.
|
|
|
|
This class is used by neutron's extension framework to make
|
|
metadata about the n1kv profile extension available to
|
|
clients. No new resources are defined by this extension. Instead,
|
|
the existing network resource's request and response messages are
|
|
extended with attributes in the n1kv profile namespace.
|
|
|
|
To create a network based on n1kv profile using the CLI with admin rights:
|
|
|
|
(shell) net-create --tenant_id <tenant-id> <net-name> \
|
|
--n1kv:profile_id <id>
|
|
(shell) port-create --tenant_id <tenant-id> <net-name> \
|
|
--n1kv:profile_id <id>
|
|
|
|
|
|
With admin rights, network dictionaries returned from CLI commands
|
|
will also include n1kv profile attributes.
|
|
"""
|
|
|
|
@classmethod
|
|
def get_name(cls):
|
|
return "n1kv"
|
|
|
|
@classmethod
|
|
def get_alias(cls):
|
|
return "n1kv"
|
|
|
|
@classmethod
|
|
def get_description(cls):
|
|
return "Expose network profile"
|
|
|
|
@classmethod
|
|
def get_namespace(cls):
|
|
return "http://docs.openstack.org/ext/n1kv/api/v2.0"
|
|
|
|
@classmethod
|
|
def get_updated(cls):
|
|
return "2012-11-15T10:00:00-00:00"
|
|
|
|
def get_extended_resources(self, version):
|
|
if version == "2.0":
|
|
return EXTENDED_ATTRIBUTES_2_0
|
|
else:
|
|
return {}
|