Source code for models.state_bulk_install_app_task_info_enum

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

[docs]class StateBulkInstallAppTaskInfoEnum(object): """Implementation of the 'State_BulkInstallAppTaskInfo' enum. Current state of the task. This param is used to indicate the state of the job created by the bulk install app. 'started' indicates that the job has been started by the user. 'completed' indicates that the job has completed. Attributes: STARTED: TODO: type description here. COMPLETED: TODO: type description here. """ STARTED = 'started' COMPLETED = 'completed'