DataReloadsItem

pydantic model openapi_client.models.data_reloads_item.DataReloadsItem

One data-reload run record from the datareloads table. Optional fields may be omitted when projectionExpression is used.

Fields:
field load_status: StrictStr [Required] (alias 'LoadStatus')

Overall outcome of the reload run.

Constraints:
  • strict = True

field last_modified: Optional[StrictStr] = None (alias 'LastModified')

Last modification timestamp of this reload record.

field last_modified_by: Optional[StrictStr] = None (alias 'LastModifiedBy')

User or system principal that last updated the record.

field dataset_id: Optional[StrictStr] = None (alias 'DatasetId')

Dataset ID this reload run belongs to.

field current_stage: StrictStr [Required] (alias 'CurrentStage')

Pipeline stage reached or currently executing for the run.

Constraints:
  • strict = True

field files_loaded: StrictInt [Required] (alias 'FilesLoaded')

Number of files included in this reload run.

Constraints:
  • strict = True

field partition: Optional[StrictStr] = None (alias 'Partition')

Partition key value associated with the run when present (e.g. upload_date).

field state_machine_execution_id: Optional[StrictStr] = None (alias 'StateMachineExecutionId')

Step Functions execution id for the reload workflow when present.

field message: StrictStr [Required] (alias 'Message')

Human-readable status or error detail for the run.

Constraints:
  • strict = True

field start_time: StrictStr [Required] (alias 'StartTime')

When the reload run started.

Constraints:
  • strict = True

field end_time: StrictStr [Required] (alias 'EndTime')

When the reload run finished (may be empty while processing).

Constraints:
  • strict = True

to_str()

Returns the string representation of the model using alias

Return type:

str

to_json()

Returns the JSON representation of the model using alias

Return type:

str

classmethod from_json(json_str)

Create an instance of DataReloadsItem from a JSON string

Return type:

Optional[Self]

to_dict()

Return the dictionary representation of the model using alias.

This has the following differences from calling pydantic’s self.model_dump(by_alias=True):

  • None is only added to the output dict for nullable fields that were set at model initialization. Other fields with value None are ignored.

Return type:

Dict[str, Any]

classmethod from_dict(obj)

Create an instance of DataReloadsItem from a dict

Return type:

Optional[Self]