Source code for azure.mgmt.logic.models.workflow_trigger_history

# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from .sub_resource import SubResource


[docs]class WorkflowTriggerHistory(SubResource): """WorkflowTriggerHistory. Variables are only populated by the server, and will be ignored when sending a request. :param id: The resource id. :type id: str :ivar start_time: Gets the start time. :vartype start_time: datetime :ivar end_time: Gets the end time. :vartype end_time: datetime :ivar status: Gets the status. Possible values include: 'NotSpecified', 'Paused', 'Running', 'Waiting', 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', 'Failed', 'Faulted', 'TimedOut', 'Aborted', 'Ignored' :vartype status: str or :class:`WorkflowStatus <azure.mgmt.logic.models.WorkflowStatus>` :ivar code: Gets the code. :vartype code: str :ivar error: Gets the error. :vartype error: object :ivar tracking_id: Gets the tracking id. :vartype tracking_id: str :param correlation: The run correlation. :type correlation: :class:`Correlation <azure.mgmt.logic.models.Correlation>` :ivar inputs_link: Gets the link to input parameters. :vartype inputs_link: :class:`ContentLink <azure.mgmt.logic.models.ContentLink>` :ivar outputs_link: Gets the link to output parameters. :vartype outputs_link: :class:`ContentLink <azure.mgmt.logic.models.ContentLink>` :ivar fired: Gets a value indicating whether trigger was fired. :vartype fired: bool :ivar run: Gets the reference to workflow run. :vartype run: :class:`ResourceReference <azure.mgmt.logic.models.ResourceReference>` :ivar name: Gets the workflow trigger history name. :vartype name: str :ivar type: Gets the workflow trigger history type. :vartype type: str """ _validation = { 'start_time': {'readonly': True}, 'end_time': {'readonly': True}, 'status': {'readonly': True}, 'code': {'readonly': True}, 'error': {'readonly': True}, 'tracking_id': {'readonly': True}, 'inputs_link': {'readonly': True}, 'outputs_link': {'readonly': True}, 'fired': {'readonly': True}, 'run': {'readonly': True}, 'name': {'readonly': True}, 'type': {'readonly': True}, } _attribute_map = { 'id': {'key': 'id', 'type': 'str'}, 'start_time': {'key': 'properties.startTime', 'type': 'iso-8601'}, 'end_time': {'key': 'properties.endTime', 'type': 'iso-8601'}, 'status': {'key': 'properties.status', 'type': 'WorkflowStatus'}, 'code': {'key': 'properties.code', 'type': 'str'}, 'error': {'key': 'properties.error', 'type': 'object'}, 'tracking_id': {'key': 'properties.trackingId', 'type': 'str'}, 'correlation': {'key': 'properties.correlation', 'type': 'Correlation'}, 'inputs_link': {'key': 'properties.inputsLink', 'type': 'ContentLink'}, 'outputs_link': {'key': 'properties.outputsLink', 'type': 'ContentLink'}, 'fired': {'key': 'properties.fired', 'type': 'bool'}, 'run': {'key': 'properties.run', 'type': 'ResourceReference'}, 'name': {'key': 'name', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, } def __init__(self, id=None, correlation=None): super(WorkflowTriggerHistory, self).__init__(id=id) self.start_time = None self.end_time = None self.status = None self.code = None self.error = None self.tracking_id = None self.correlation = correlation self.inputs_link = None self.outputs_link = None self.fired = None self.run = None self.name = None self.type = None