# -*- coding: utf-8 -*-
[docs]class ProtectionRunStatusEnum(object):
"""Implementation of the 'ProtectionRunStatus' enum.
Specifies the status of protection runs.
Attributes:
RUNNING: TODO: type description here.
CANCELED: TODO: type description here.
FAILED: TODO: type description here.
SUCCEEDED: TODO: type description here.
SUCCEEDEDWITHWARNING: TODO: type description here.
"""
RUNNING = 'Running'
CANCELED = 'Canceled'
FAILED = 'Failed'
SUCCEEDED = 'Succeeded'
SUCCEEDEDWITHWARNING = 'SucceededWithWarning'