GetChangesDeployedInDeploymentRun200ResponseInner

Properties

Name Type Description Notes
added_references List[Reference] The list of references added to this entity as part of the change. [optional]
added_values List[Value] The list of values added to this entity as part of the change. [optional]
change_item_type str Indicates if this item represents an actual entity change or a grouping header. [optional]
change_type str The type of the change. [optional]
children List[FtdChangeItemDto] The children of this change item. This represents changes that rest within the group represented by this change item. [optional]
deleted_references List[Reference] The list of references deleted from this entity as part of the change. [optional]
deleted_values List[Value] The list of values removed from this entity as part of the change. [optional]
deployment_type str Discriminator identifying this change item as ASA. [optional]
device_uid str The unique identifier, represented as a UUID, of the device the change item is associated with. [optional]
entity_type str The type of the changed entity. [optional]
entity_uid str The unique identifier, represented as a UUID, of the changed entity. [optional]
error_msg str An error message indicating why a diff could not be generated for the changed entity. [optional]
last_updated_by_users List[str] The list of users who have made the changes to this entity. [optional]
name str The name of the changed entity. [optional]
parent_uid str The unique identifier, represented as a UUID, of the 'parent' of this change item. The parentUid, if set, can be used to identify the group that this change belongs to. [optional]
uid str The unique identifier, represented as a UUID, of this change item. [optional]
updated_values List[UpdatedValue] The list of values updated on this entity as part of the change. [optional]
deployed_config str The configuration deployed to the device (or the configuration that was attempted to be deployed to the device, in the case of a failed deployment). Note: this field is set to null if the device already had this configuration, or when snapshot capture failed for this device. [optional]
deployment_run_uid str The unique identifier, represented as a UUID, of the deployment run the change item is associated with. [optional]
initial_config str The configuration on the device prior to deployment. Note: this field is set to null if snapshot capture failed for this device. [optional]

Example

from scc_firewall_manager_sdk.models.get_changes_deployed_in_deployment_run200_response_inner import GetChangesDeployedInDeploymentRun200ResponseInner

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

# convert the object into a dict
get_changes_deployed_in_deployment_run200_response_inner_dict = get_changes_deployed_in_deployment_run200_response_inner_instance.to_dict()
# create an instance of GetChangesDeployedInDeploymentRun200ResponseInner from a dict
get_changes_deployed_in_deployment_run200_response_inner_form_dict = get_changes_deployed_in_deployment_run200_response_inner.from_dict(get_changes_deployed_in_deployment_run200_response_inner_dict)

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