2012-02-27 12:10:39 -08:00
|
|
|
# Copyright 2012 Canonical 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.
|
|
|
|
|
|
|
|
from keystoneclient import base
|
|
|
|
|
|
|
|
|
|
|
|
class Endpoint(base.Resource):
|
2013-07-02 10:07:49 +02:00
|
|
|
"""Represents a Keystone endpoint."""
|
2016-05-03 18:08:31 +00:00
|
|
|
|
2012-02-27 12:10:39 -08:00
|
|
|
def __repr__(self):
|
2016-05-04 19:14:01 +00:00
|
|
|
"""Return string representation of endpoint resource information."""
|
2012-02-27 12:10:39 -08:00
|
|
|
return "<Endpoint %s>" % self._info
|
|
|
|
|
|
|
|
|
|
|
|
class EndpointManager(base.ManagerWithFind):
|
2013-07-02 10:07:49 +02:00
|
|
|
"""Manager class for manipulating Keystone endpoints."""
|
2012-05-04 09:33:29 -04:00
|
|
|
|
2012-02-27 12:10:39 -08:00
|
|
|
resource_class = Endpoint
|
|
|
|
|
|
|
|
def list(self):
|
2013-07-02 10:07:49 +02:00
|
|
|
"""List all available endpoints."""
|
2012-02-27 12:10:39 -08:00
|
|
|
return self._list('/endpoints', 'endpoints')
|
|
|
|
|
2014-06-25 14:21:27 -04:00
|
|
|
def create(self, region, service_id, publicurl, adminurl=None,
|
|
|
|
internalurl=None):
|
2013-07-02 10:07:49 +02:00
|
|
|
"""Create a new endpoint."""
|
2012-02-27 12:10:39 -08:00
|
|
|
body = {'endpoint': {'region': region,
|
2012-06-01 18:07:26 -07:00
|
|
|
'service_id': service_id,
|
|
|
|
'publicurl': publicurl,
|
|
|
|
'adminurl': adminurl,
|
|
|
|
'internalurl': internalurl}}
|
2015-12-29 18:38:01 -06:00
|
|
|
return self._post('/endpoints', body, 'endpoint')
|
2012-02-27 12:10:39 -08:00
|
|
|
|
|
|
|
def delete(self, id):
|
2013-07-02 10:07:49 +02:00
|
|
|
"""Delete an endpoint."""
|
2012-02-27 12:10:39 -08:00
|
|
|
return self._delete('/endpoints/%s' % id)
|