<?php

/**
 *  (c) CloudMunch Inc.
 *  All Rights Reserved
 *  Un-authorized copying of this file, via any medium is strictly prohibited
 *  Proprietary and confidential
 *
 *  Rosmi Chandy rosmi@cloudmunch.com
 */
namespace CloudMunch;

/**
 * 
 * Asset status : running
 */
define('STATUS_RUNNING','running');

/**
 * 
 * Asset status : stopped
 */
define('STATUS_STOPPED','stopped');

/**
 * 
 * Asset status : NIL
 */
define('STATUS_NIL','NIL');



/**
 * 
 * Environment status: running_with_warning
 */
define('STATUS_RUNNING_WITH_WARNING','running_with_warning');

/**
 * 
 * Environment status: stopped_with_errors
 */
define('STATUS_STOPPED_WITH_ERRORS','stopped_with_errors');

/**
 * 
 * Environment status: action_in_progress
 */
define('STATUS_ACTION_IN_PROGRESS','action_in_progress');

/**
 * 
 *  Environment status: creation_in_progress
 */
define('STATUS_CREATION_IN_PROGRESS','creation_in_progress');
