0414bab3d3
Add return-request-id-to-caller function to resources and resource managers in the following files. The methods in the resource class and resource manager return a wrapper class that has 'request_ids' property. The caller can get request ids of the callee via the property. * novaclient/v2/keypairs.py * novaclient/v2/limits.py * novaclient/v2/networks.py * novaclient/v2/quota_classes.py * novaclient/v2/quotas.py * novaclient/v2/security_group_default_rules.py * novaclient/v2/security_group_rules.py * novaclient/v2/security_groups.py * novaclient/v2/server_groups.py * novaclient/v2/services.py * novaclient/v2/usage.py * novaclient/v2/versions.py Co-authored-by: Ankit Agrawal <ankit11.agrawal@nttdata.com> Change-Id: I9203f70a0eef5686b590fbff35563f2cf8b6f586 Implements: blueprint return-request-id-to-caller
175 lines
5.7 KiB
Python
175 lines
5.7 KiB
Python
# Copyright 2011 OpenStack Foundation
|
|
# 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.
|
|
|
|
"""
|
|
Keypair interface (1.1 extension).
|
|
"""
|
|
|
|
from novaclient import api_versions
|
|
from novaclient import base
|
|
|
|
|
|
class Keypair(base.Resource):
|
|
"""
|
|
A keypair is a ssh key that can be injected into a server on launch.
|
|
"""
|
|
|
|
def __repr__(self):
|
|
return "<Keypair: %s>" % self.id
|
|
|
|
def _add_details(self, info):
|
|
dico = 'keypair' in info and \
|
|
info['keypair'] or info
|
|
for (k, v) in dico.items():
|
|
# NOTE(rpodolyaka): keypair name allows us to uniquely identify
|
|
# a specific keypair, while its id attribute
|
|
# is nothing more than an implementation
|
|
# detail. We can safely omit the id attribute
|
|
# here to ensure setattr() won't raise
|
|
# AttributeError trying to set read-only
|
|
# property id
|
|
if k != 'id':
|
|
setattr(self, k, v)
|
|
|
|
@property
|
|
def id(self):
|
|
return self.name
|
|
|
|
def delete(self):
|
|
"""
|
|
Delete this keypair.
|
|
|
|
:returns: An instance of novaclient.base.TupleWithMeta
|
|
"""
|
|
return self.manager.delete(self)
|
|
|
|
|
|
class KeypairManager(base.ManagerWithFind):
|
|
resource_class = Keypair
|
|
keypair_prefix = "os-keypairs"
|
|
is_alphanum_id_allowed = True
|
|
|
|
@api_versions.wraps("2.0", "2.9")
|
|
def get(self, keypair):
|
|
"""
|
|
Get a keypair.
|
|
|
|
:param keypair: The ID of the keypair to get.
|
|
:rtype: :class:`Keypair`
|
|
"""
|
|
return self._get("/%s/%s" % (self.keypair_prefix, base.getid(keypair)),
|
|
"keypair")
|
|
|
|
@api_versions.wraps("2.10")
|
|
def get(self, keypair, user_id=None):
|
|
"""
|
|
Get a keypair.
|
|
|
|
:param keypair: The ID of the keypair to get.
|
|
:param user_id: Id of key-pair owner (Admin only).
|
|
:rtype: :class:`Keypair`
|
|
"""
|
|
query_string = "?user_id=%s" % user_id if user_id else ""
|
|
url = "/%s/%s%s" % (self.keypair_prefix, base.getid(keypair),
|
|
query_string)
|
|
return self._get(url, "keypair")
|
|
|
|
@api_versions.wraps("2.0", "2.1")
|
|
def create(self, name, public_key=None):
|
|
"""
|
|
Create a keypair
|
|
|
|
:param name: name for the keypair to create
|
|
:param public_key: existing public key to import
|
|
"""
|
|
body = {'keypair': {'name': name}}
|
|
if public_key:
|
|
body['keypair']['public_key'] = public_key
|
|
return self._create('/%s' % self.keypair_prefix, body, 'keypair')
|
|
|
|
@api_versions.wraps("2.2", "2.9")
|
|
def create(self, name, public_key=None, key_type="ssh"):
|
|
"""
|
|
Create a keypair
|
|
|
|
:param name: name for the keypair to create
|
|
:param public_key: existing public key to import
|
|
:param key_type: keypair type to create
|
|
"""
|
|
body = {'keypair': {'name': name,
|
|
'type': key_type}}
|
|
if public_key:
|
|
body['keypair']['public_key'] = public_key
|
|
return self._create('/%s' % self.keypair_prefix, body, 'keypair')
|
|
|
|
@api_versions.wraps("2.10")
|
|
def create(self, name, public_key=None, key_type="ssh", user_id=None):
|
|
"""
|
|
Create a keypair
|
|
|
|
:param name: name for the keypair to create
|
|
:param public_key: existing public key to import
|
|
:param key_type: keypair type to create
|
|
:param user_id: user to add.
|
|
"""
|
|
body = {'keypair': {'name': name,
|
|
'type': key_type}}
|
|
if public_key:
|
|
body['keypair']['public_key'] = public_key
|
|
if user_id:
|
|
body['keypair']['user_id'] = user_id
|
|
return self._create('/%s' % self.keypair_prefix, body, 'keypair')
|
|
|
|
@api_versions.wraps("2.0", "2.9")
|
|
def delete(self, key):
|
|
"""
|
|
Delete a keypair
|
|
|
|
:param key: The :class:`Keypair` (or its ID) to delete.
|
|
:returns: An instance of novaclient.base.TupleWithMeta
|
|
"""
|
|
return self._delete('/%s/%s' % (self.keypair_prefix, base.getid(key)))
|
|
|
|
@api_versions.wraps("2.10")
|
|
def delete(self, key, user_id=None):
|
|
"""
|
|
Delete a keypair
|
|
|
|
:param key: The :class:`Keypair` (or its ID) to delete.
|
|
:param user_id: Id of key-pair owner (Admin only).
|
|
:returns: An instance of novaclient.base.TupleWithMeta
|
|
"""
|
|
query_string = "?user_id=%s" % user_id if user_id else ""
|
|
url = '/%s/%s%s' % (self.keypair_prefix, base.getid(key), query_string)
|
|
return self._delete(url)
|
|
|
|
@api_versions.wraps("2.0", "2.9")
|
|
def list(self):
|
|
"""
|
|
Get a list of keypairs.
|
|
"""
|
|
return self._list('/%s' % self.keypair_prefix, 'keypairs')
|
|
|
|
@api_versions.wraps("2.10")
|
|
def list(self, user_id=None):
|
|
"""
|
|
Get a list of keypairs.
|
|
|
|
:param user_id: Id of key-pairs owner (Admin only).
|
|
"""
|
|
query_string = "?user_id=%s" % user_id if user_id else ""
|
|
url = '/%s%s' % (self.keypair_prefix, query_string)
|
|
return self._list(url, 'keypairs')
|