~ubuntu-branches/ubuntu/vivid/neutron/vivid-updates

« back to all changes in this revision

Viewing changes to neutron/plugins/nuage/extensions/nuage_router.py

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2015-03-30 11:17:19 UTC
  • mfrom: (1.1.21)
  • Revision ID: package-import@ubuntu.com-20150330111719-h0gx7233p4jkkgfh
Tags: 1:2015.1~b3-0ubuntu1
* New upstream milestone release:
  - d/control: Align version requirements with upstream.
  - d/control: Add new dependency on oslo-log.
  - d/p/*: Rebase.
  - d/control,d/neutron-plugin-hyperv*: Dropped, decomposed into
    separate project upstream.
  - d/control,d/neutron-plugin-openflow*: Dropped, decomposed into
    separate project upstream.
  - d/neutron-common.install: Add neutron-rootwrap-daemon and 
    neutron-keepalived-state-change binaries.
  - d/rules: Ignore neutron-hyperv-agent when installing; only for Windows.
  - d/neutron-plugin-cisco.install: Drop neutron-cisco-cfg-agent as
    decomposed into separate project upstream.
  - d/neutron-plugin-vmware.install: Drop neutron-check-nsx-config and
    neutron-nsx-manage as decomposed into separate project upstream.
  - d/control: Add dependency on python-neutron-fwaas to neutron-l3-agent.
* d/pydist-overrides: Add overrides for oslo packages.
* d/control: Fixup type in package description (LP: #1263539).
* d/p/fixup-driver-test-execution.patch: Cherry pick fix from upstream VCS
  to support unit test exection in out-of-tree vendor drivers.
* d/neutron-common.postinst: Allow general access to /etc/neutron but limit
  access to root/neutron to /etc/neutron/neutron.conf to support execution
  of unit tests in decomposed vendor drivers.
* d/control: Add dependency on python-neutron-fwaas to neutron-l3-agent
  package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright 2014 Alcatel-Lucent USA Inc.
2
 
#
3
 
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
4
 
#    not use this file except in compliance with the License. You may obtain
5
 
#    a copy of the License at
6
 
#
7
 
#         http://www.apache.org/licenses/LICENSE-2.0
8
 
#
9
 
#    Unless required by applicable law or agreed to in writing, software
10
 
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11
 
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12
 
#    License for the specific language governing permissions and limitations
13
 
#    under the License.
14
 
 
15
 
 
16
 
EXTENDED_ATTRIBUTES_2_0 = {
17
 
    'routers': {
18
 
        'net_partition': {
19
 
            'allow_post': True,
20
 
            'allow_put': True,
21
 
            'is_visible': True,
22
 
            'default': None,
23
 
            'validate': {'type:string_or_none': None}
24
 
        },
25
 
        'rd': {
26
 
            'allow_post': True,
27
 
            'allow_put': True,
28
 
            'is_visible': True,
29
 
            'default': None,
30
 
            'validate': {'type:string_or_none': None}
31
 
        },
32
 
        'rt': {
33
 
            'allow_post': True,
34
 
            'allow_put': True,
35
 
            'is_visible': True,
36
 
            'default': None,
37
 
            'validate': {'type:string_or_none': None}
38
 
        },
39
 
        'nuage_router_template': {
40
 
            'allow_post': True,
41
 
            'allow_put': False,
42
 
            'is_visible': True,
43
 
            'default': None,
44
 
            'validate': {'type:uuid_or_none': None}
45
 
        },
46
 
    },
47
 
}
48
 
 
49
 
 
50
 
class Nuage_router(object):
51
 
    """Extension class supporting nuage router.
52
 
    """
53
 
 
54
 
    @classmethod
55
 
    def get_name(cls):
56
 
        return "Nuage router"
57
 
 
58
 
    @classmethod
59
 
    def get_alias(cls):
60
 
        return "nuage-router"
61
 
 
62
 
    @classmethod
63
 
    def get_description(cls):
64
 
        return "Nuage Router"
65
 
 
66
 
    @classmethod
67
 
    def get_namespace(cls):
68
 
        return "http://nuagenetworks.net/ext/routers/api/v1.0"
69
 
 
70
 
    @classmethod
71
 
    def get_updated(cls):
72
 
        return "2014-01-01T10:00:00-00:00"
73
 
 
74
 
    def get_extended_resources(self, version):
75
 
        if version == "2.0":
76
 
            return EXTENDED_ATTRIBUTES_2_0
77
 
        else:
78
 
            return {}