pyceo/ceo_common/interfaces/ICloudService.py

13 lines
274 B
Python
Raw Normal View History

2021-11-19 22:16:05 -05:00
from zope.interface import Interface
from .IUser import IUser
class ICloudService(Interface):
"""Performs operations on the CSC Cloud."""
def create_account(user: IUser):
"""
Activate an LDAP account in CloudStack for the given user.
"""