Source code for SoftLayer.managers.cci

"""
    SoftLayer.cci
    ~~~~~~~~~~~~~
    CCIManager to provide backwards compatibility.

    :license: MIT, see LICENSE for more details.
"""
import warnings

from SoftLayer.managers import vs


[docs]class CCIManager(vs.VSManager): """ Wrapper for the VSManager class to provide backwards compatibility with the old CCIManager class. """ def __init__(self, client): super(CCIManager, self).__init__(client) warnings.warn("The CCIManager class has been replaced with VSManager.", DeprecationWarning)