2f1cd3eb55
This will enable the Cisco Nexus 1000V to integrate with the Cisco plugin and be used to drive the realization of Neutron constructs. Network profile and Policy profile are introduced as extended neutron resources, while n1kv:profile_id is introduced as an extended attribute for network and port objects. Necessary changes to the Cisco plugin are made to accomodate Nexus 1000V as a configurable vswitch plugin. Implements: blueprint cisco-plugin-n1k-support Change-Id: I951e10c57d74c935fca8754c0e21e1ac9df35704
83 lines
2.9 KiB
Python
83 lines
2.9 KiB
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
# Copyright 2013 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: Ying Liu, Cisco Systems, Inc.
|
|
# @author: Abhishek Raut, Cisco Systems, Inc
|
|
|
|
from neutron.api import extensions
|
|
from neutron.api.v2 import attributes
|
|
from neutron.api.v2 import base
|
|
from neutron import manager
|
|
|
|
|
|
# Attribute Map
|
|
RESOURCE_ATTRIBUTE_MAP = {
|
|
'credentials': {
|
|
'credential_id': {'allow_post': False, 'allow_put': False,
|
|
'validate': {'type:regex': attributes.UUID_PATTERN},
|
|
'is_visible': True},
|
|
'credential_name': {'allow_post': True, 'allow_put': True,
|
|
'is_visible': True, 'default': ''},
|
|
'type': {'allow_post': True, 'allow_put': True,
|
|
'is_visible': True, 'default': ''},
|
|
'user_name': {'allow_post': True, 'allow_put': True,
|
|
'is_visible': True, 'default': ''},
|
|
'password': {'allow_post': True, 'allow_put': True,
|
|
'is_visible': True, 'default': ''},
|
|
},
|
|
}
|
|
|
|
|
|
class Credential(extensions.ExtensionDescriptor):
|
|
|
|
@classmethod
|
|
def get_name(cls):
|
|
"""Returns Extended Resource Name."""
|
|
return "Cisco Credential"
|
|
|
|
@classmethod
|
|
def get_alias(cls):
|
|
"""Returns Extended Resource Alias."""
|
|
return "credential"
|
|
|
|
@classmethod
|
|
def get_description(cls):
|
|
"""Returns Extended Resource Description."""
|
|
return "Credential include username and password"
|
|
|
|
@classmethod
|
|
def get_namespace(cls):
|
|
"""Returns Extended Resource Namespace."""
|
|
return "http://docs.ciscocloud.com/api/ext/credential/v2.0"
|
|
|
|
@classmethod
|
|
def get_updated(cls):
|
|
"""Returns Extended Resource Update Time."""
|
|
return "2011-07-25T13:25:27-06:00"
|
|
|
|
@classmethod
|
|
def get_resources(cls):
|
|
"""Returns Extended Resources."""
|
|
resource_name = "credential"
|
|
collection_name = resource_name + "s"
|
|
plugin = manager.NeutronManager.get_plugin()
|
|
params = RESOURCE_ATTRIBUTE_MAP.get(collection_name, dict())
|
|
controller = base.create_resource(collection_name,
|
|
resource_name,
|
|
plugin, params)
|
|
return [extensions.ResourceExtension(collection_name,
|
|
controller)]
|