Source code for models.state_update_app_instance_state_parameters_enum

# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.

[docs]class StateUpdateAppInstanceStateParametersEnum(object): """Implementation of the 'UpdateAppInstanceStateParameters' enum. Specifies the desired app instance state type. Specifies operational status of an app instance. kInitializing - The app instance has been launched or resumed, but is not fully running yet. kRunning - The app instance is running. Check health_status for the actual health. kPausing - The app instance is being paused. kPaused - The app instance has been paused. kTerminating - The app instance is being terminated. kTerminated - The app instance has been terminated. kFailed - The app instance has failed due to an unrecoverable error. Attributes: KINITIALIZING: TODO: type description here. KVSERVER: TODO: type description here. KPAUSING: TODO: type description here. KTERMINATING: TODO: type description here. KTERMINATED: TODO: type description here. KFAILED: TODO: type description here. """ KINITIALIZING = 'kInitializing' KRUNNING = 'kRunning' KPAUSING = 'kPausing' KTERMINATING = 'kTerminating' KTERMINATED = 'kTerminated' KFAILED = 'kFailed'