MinimalTaskResponse
Base serializer for use with :class:pulpcore.app.models.Model This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the ref_name attribute in the ModelSerializers's Meta class. This ensures that the OpenAPI definitions of plugins are namespaced properly.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| pulp_href | str | [optional] [readonly] | |
| pulp_created | datetime | Timestamp of creation. | [optional] [readonly] |
| name | str | The name of task. | |
| state | str | The current state of the task. The possible values include: 'waiting', 'skipped', 'running', 'completed', 'failed', 'canceled' and 'canceling'. | [optional] [readonly] |
| started_at | datetime | Timestamp of the when this task started execution. | [optional] [readonly] |
| finished_at | datetime | Timestamp of the when this task stopped execution. | [optional] [readonly] |
| worker | str | The worker associated with this task. This field is empty if a worker is not yet assigned. | [optional] [readonly] |