CompletionStatusDto

The completion status of the upgrade on the device.

Properties

Name Type Description Notes
completed_at datetime Time (UTC; represented using the RFC-3339 standard) when this completion status became terminal. Note: this field is only populated when the upgrade run status is in a terminal state. [optional]
message str A message, indicating current progress, returned from the device. [optional]
name str Name of the device. Note: this will be the name of the node on the cdFMC if the device is part of an HA pair or cluster. [optional]
node_type str (HA Pairs and clusters only) The node type of the device. [optional]
percentage_complete float Percentage completion of the current task being performed. [optional]

Example

from scc_firewall_manager_sdk.models.completion_status_dto import CompletionStatusDto

# TODO update the JSON string below
json = "{}"
# create an instance of CompletionStatusDto from a JSON string
completion_status_dto_instance = CompletionStatusDto.from_json(json)
# print the JSON string representation of the object
print(CompletionStatusDto.to_json())

# convert the object into a dict
completion_status_dto_dict = completion_status_dto_instance.to_dict()
# create an instance of CompletionStatusDto from a dict
completion_status_dto_form_dict = completion_status_dto.from_dict(completion_status_dto_dict)

[Back to Model list] [Back to API list] [Back to README]