| |
- enum.Enum(builtins.object)
-
- RepositoryStatus
class RepositoryStatus(enum.Enum) |
|
RepositoryStatus(value, names=None, *, module=None, qualname=None, type=None, start=1)
RepositoryStatus is an Enum defining the valid values of the status of a repository |
|
- Method resolution order:
- RepositoryStatus
- enum.Enum
- builtins.object
Data and other attributes defined here:
- COMPLETED = <RepositoryStatus.COMPLETED: 'COMPLETED'>
- ERROR = <RepositoryStatus.ERROR: 'ERROR'>
- IN_PROGRESS = <RepositoryStatus.IN_PROGRESS: 'IN-PROGRESS'>
Data descriptors inherited from enum.Enum:
- name
- The name of the Enum member.
- value
- The value of the Enum member.
Readonly properties inherited from enum.EnumMeta:
- __members__
- Returns a mapping of member name->value.
This mapping lists all enum members, including aliases. Note that this
is a read-only view of the internal mapping.
| |