ProgressReportResponse
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 |
---|---|---|---|
message | str | The message shown to the user for the progress report. | [optional] [readonly] |
code | str | Identifies the type of progress report'. | [optional] [readonly] |
state | str | The current state of the progress report. The possible values are: 'waiting', 'skipped', 'running', 'completed', 'failed', 'canceled' and 'canceling'. The default is 'waiting'. | [optional] [readonly] |
total | int | The total count of items. | [optional] [readonly] |
done | int | The count of items already processed. Defaults to 0. | [optional] [readonly] |
suffix | str | The suffix to be shown with the progress report. | [optional] [readonly] |