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]
pulp_last_updated datetime Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same. [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]
unblocked_at datetime Timestamp of when this task was identified ready for pickup. [optional] [readonly]
started_at datetime Timestamp of when this task started execution. [optional] [readonly]
finished_at datetime Timestamp of 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]

[Back to Model list] [Back to API list] [Back to HOME]