d577c88d4a
This patch introduce a new API: 'GET: /manageable_servers' to list the adoptable nodes from drivers to operators. As a reference, now we implement api in the Ironic driver. APIImpact Implements: bp manage-existing-bms Change-Id: I56340ce534c3b8d4e855a4c753ecf90a07147d29
156 lines
6.3 KiB
Python
156 lines
6.3 KiB
Python
# Copyright 2016 Huawei Technologies Co.,LTD.
|
|
# 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.
|
|
|
|
"""
|
|
Version 1 of the Mogan API
|
|
|
|
Specification can be found at doc/source/webapi/v1.rst
|
|
"""
|
|
|
|
import pecan
|
|
from pecan import rest
|
|
from wsme import types as wtypes
|
|
|
|
from mogan.api.controllers import base
|
|
from mogan.api.controllers import link
|
|
from mogan.api.controllers.v1 import aggregates
|
|
from mogan.api.controllers.v1 import availability_zones
|
|
from mogan.api.controllers.v1 import flavors
|
|
from mogan.api.controllers.v1 import keypairs
|
|
from mogan.api.controllers.v1 import manageable_servers
|
|
from mogan.api.controllers.v1 import nodes
|
|
from mogan.api.controllers.v1 import server_groups
|
|
from mogan.api.controllers.v1 import servers
|
|
from mogan.api import expose
|
|
|
|
|
|
class V1(base.APIBase):
|
|
"""The representation of the version 1 of the API."""
|
|
|
|
id = wtypes.text
|
|
"""The ID of the version, also acts as the release number"""
|
|
|
|
servers = [link.Link]
|
|
"""Links to the servers resource"""
|
|
|
|
flavors = [link.Link]
|
|
"""Links to the server types resource"""
|
|
|
|
availability_zones = [link.Link]
|
|
"""Links to the availability zones resource"""
|
|
|
|
keypairs = [link.Link]
|
|
"""Links to the keypairs resource"""
|
|
|
|
aggregates = [link.Link]
|
|
"""Links to the aggregates resource"""
|
|
|
|
nodes = [link.Link]
|
|
"""Links to the nodes resource"""
|
|
|
|
server_groups = [link.Link]
|
|
"""Links to the server groups resource"""
|
|
|
|
manageable_servers = [link.Link]
|
|
"""Links to the manageable servers resource"""
|
|
|
|
@staticmethod
|
|
def convert():
|
|
v1 = V1()
|
|
v1.id = "v1"
|
|
v1.servers = [link.Link.make_link('self', pecan.request.public_url,
|
|
'servers', ''),
|
|
link.Link.make_link('bookmark',
|
|
pecan.request.public_url,
|
|
'servers', '',
|
|
bookmark=True)
|
|
]
|
|
v1.flavors = [link.Link.make_link('self', pecan.request.public_url,
|
|
'flavors', ''),
|
|
link.Link.make_link('bookmark',
|
|
pecan.request.public_url,
|
|
'flavors', '',
|
|
bookmark=True)
|
|
]
|
|
v1.availability_zones = [link.Link.make_link('self',
|
|
pecan.request.public_url,
|
|
'availability_zones', ''),
|
|
link.Link.make_link('bookmark',
|
|
pecan.request.public_url,
|
|
'availability_zones', '',
|
|
bookmark=True)
|
|
]
|
|
v1.keypairs = [link.Link.make_link('self',
|
|
pecan.request.public_url,
|
|
'keypairs', ''),
|
|
link.Link.make_link('bookmark',
|
|
pecan.request.public_url,
|
|
'keypairs', '',
|
|
bookmark=True)
|
|
]
|
|
v1.aggregates = [link.Link.make_link('self',
|
|
pecan.request.public_url,
|
|
'aggregates', ''),
|
|
link.Link.make_link('bookmark',
|
|
pecan.request.public_url,
|
|
'aggregates', '',
|
|
bookmark=True)
|
|
]
|
|
v1.nodes = [link.Link.make_link('self',
|
|
pecan.request.public_url,
|
|
'nodes', ''),
|
|
link.Link.make_link('bookmark',
|
|
pecan.request.public_url,
|
|
'nodes', '',
|
|
bookmark=True)
|
|
]
|
|
v1.server_groups = [link.Link.make_link('self',
|
|
pecan.request.public_url,
|
|
'server_groups', ''),
|
|
link.Link.make_link('bookmark',
|
|
pecan.request.public_url,
|
|
'server_groups', '',
|
|
bookmark=True)
|
|
]
|
|
v1.manageable_servers = [link.Link.make_link('self',
|
|
pecan.request.public_url,
|
|
'manageable_servers', ''),
|
|
link.Link.make_link('bookmark',
|
|
pecan.request.public_url,
|
|
'manageable_servers', '',
|
|
bookmark=True)
|
|
]
|
|
return v1
|
|
|
|
|
|
class Controller(rest.RestController):
|
|
"""Version 1 API controller root."""
|
|
|
|
flavors = flavors.FlavorsController()
|
|
servers = servers.ServerController()
|
|
availability_zones = availability_zones.AvailabilityZoneController()
|
|
keypairs = keypairs.KeyPairController()
|
|
aggregates = aggregates.AggregateController()
|
|
nodes = nodes.NodeController()
|
|
server_groups = server_groups.ServerGroupController()
|
|
manageable_servers = manageable_servers.ManageableServersController()
|
|
|
|
@expose.expose(V1)
|
|
def get(self):
|
|
return V1.convert()
|
|
|
|
|
|
__all__ = ('Controller',)
|