# coding: utf-8 from __future__ import absolute_import from datetime import date, datetime # noqa: F401 from typing import Dict, List # noqa: F401 from pcluster.api import util from pcluster.api.models.base_model_ import Model class CloudFormationResourceStatus(Model): """NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). Do not edit the class manually. """ """ allowed enum values """ CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS" CREATE_FAILED = "CREATE_FAILED" CREATE_COMPLETE = "CREATE_COMPLETE" DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS" DELETE_FAILED = "DELETE_FAILED" DELETE_COMPLETE = "DELETE_COMPLETE" DELETE_SKIPPED = "DELETE_SKIPPED" UPDATE_IN_PROGRESS = "UPDATE_IN_PROGRESS" UPDATE_FAILED = "UPDATE_FAILED" UPDATE_COMPLETE = "UPDATE_COMPLETE" IMPORT_FAILED = "IMPORT_FAILED" IMPORT_COMPLETE = "IMPORT_COMPLETE" IMPORT_IN_PROGRESS = "IMPORT_IN_PROGRESS" IMPORT_ROLLBACK_IN_PROGRESS = "IMPORT_ROLLBACK_IN_PROGRESS" IMPORT_ROLLBACK_FAILED = "IMPORT_ROLLBACK_FAILED" IMPORT_ROLLBACK_COMPLETE = "IMPORT_ROLLBACK_COMPLETE" def __init__(self): # noqa: E501 """CloudFormationResourceStatus - a model defined in OpenAPI""" self.openapi_types = {} self.attribute_map = {} @classmethod def from_dict(cls, dikt) -> "CloudFormationResourceStatus": """Returns the dict as a model :param dikt: A dict. :type: dict :return: The CloudFormationResourceStatus of this CloudFormationResourceStatus. # noqa: E501 :rtype: CloudFormationResourceStatus """ return util.deserialize_model(dikt, cls)