Remove deprecation from create_csr and add_https_certificate

Change-Id: Id18e39e174b19478cac723994e7e18aa1e30be13
This commit is contained in:
Nisha Agarwal 2022-03-21 12:47:42 +00:00
parent 084b0acb8b
commit 535e465c30
2 changed files with 2 additions and 4 deletions

View File

@ -1034,7 +1034,6 @@ class IloClient(operations.IloOperations):
"""
return self._call_method('update_secure_boot', enable, ignore)
# This method is deprecated, and will be removed in future release.
def create_csr(self, path, csr_params):
"""Creates the Certificate Signing Request.
@ -1045,7 +1044,6 @@ class IloClient(operations.IloOperations):
"""
return self._call_method('create_csr', path, csr_params)
# This method is deprecated, and will be removed in future release.
def add_https_certificate(self, cert_file):
"""Adds the signed https certificate to the iLO.
@ -1054,6 +1052,7 @@ class IloClient(operations.IloOperations):
"""
return self._call_method('add_https_certificate', cert_file)
# This method is deprecated, and will be removed in future release.
def add_ssl_certificate(self, csr_params, signed_cert,
private_key, pass_phrase):
"""Creates CSR and adds the signed SSL certificate to the iLO.

View File

@ -570,7 +570,6 @@ class IloOperations(object):
"""
raise exception.IloCommandNotSupportedError(ERRMSG)
# This method is deprecated, and will be removed in future release.
def create_csr(self, path, csr_params):
"""Creates the Certificate Signing Request.
@ -581,7 +580,6 @@ class IloOperations(object):
"""
raise exception.IloCommandNotSupportedError(ERRMSG)
# This method is deprecated, and will be removed in future release.
def add_https_certificate(self, cert_file):
"""Adds the signed https certificate to the iLO.
@ -590,6 +588,7 @@ class IloOperations(object):
"""
raise exception.IloCommandNotSupportedError(ERRMSG)
# This method is deprecated, and will be removed in future release.
def add_ssl_certificate(self, csr_params, signed_cert,
private_key, pass_phrase):
"""Creates CSR and adds the signed SSL certificate to the iLO.