/// <summary>
 /// Initializes a new instance of the OperationResultProperties class.
 /// </summary>
 /// <param name="startTime">The start time of the workflow scope
 /// repetition.</param>
 /// <param name="endTime">The end time of the workflow scope
 /// repetition.</param>
 /// <param name="correlation">The correlation properties.</param>
 /// <param name="status">The status of the workflow scope repetition.
 /// Possible values include: 'NotSpecified', 'Paused', 'Running',
 /// 'Waiting', 'Succeeded', 'Skipped', 'Suspended', 'Cancelled',
 /// 'Failed', 'Faulted', 'TimedOut', 'Aborted', 'Ignored'</param>
 /// <param name="code">The workflow scope repetition code.</param>
 public OperationResultProperties(System.DateTime?startTime = default(System.DateTime?), System.DateTime?endTime = default(System.DateTime?), RunActionCorrelation correlation = default(RunActionCorrelation), string status = default(string), string code = default(string), object error = default(object))
 {
     StartTime   = startTime;
     EndTime     = endTime;
     Correlation = correlation;
     Status      = status;
     Code        = code;
     Error       = error;
     CustomInit();
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the
 /// WorkflowRunActionRepetitionDefinition class.
 /// </summary>
 /// <param name="id">The resource id.</param>
 /// <param name="name">Gets the resource name.</param>
 /// <param name="type">Gets the resource type.</param>
 /// <param name="location">The resource location.</param>
 /// <param name="tags">The resource tags.</param>
 /// <param name="startTime">The start time of the workflow scope
 /// repetition.</param>
 /// <param name="endTime">The end time of the workflow scope
 /// repetition.</param>
 /// <param name="correlation">The correlation properties.</param>
 /// <param name="status">The status of the workflow scope repetition.
 /// Possible values include: 'NotSpecified', 'Paused', 'Running',
 /// 'Waiting', 'Succeeded', 'Skipped', 'Suspended', 'Cancelled',
 /// 'Failed', 'Faulted', 'TimedOut', 'Aborted', 'Ignored'</param>
 /// <param name="code">The workflow scope repetition code.</param>
 /// <param name="trackingId">Gets the tracking id.</param>
 /// <param name="inputs">Gets the inputs.</param>
 /// <param name="inputsLink">Gets the link to inputs.</param>
 /// <param name="outputs">Gets the outputs.</param>
 /// <param name="outputsLink">Gets the link to outputs.</param>
 /// <param name="trackedProperties">Gets the tracked
 /// properties.</param>
 /// <param name="retryHistory">Gets the retry histories.</param>
 /// <param name="repetitionIndexes">The repetition indexes.</param>
 public WorkflowRunActionRepetitionDefinition(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary <string, string> tags = default(IDictionary <string, string>), System.DateTime?startTime = default(System.DateTime?), System.DateTime?endTime = default(System.DateTime?), RunActionCorrelation correlation = default(RunActionCorrelation), string status = default(string), string code = default(string), object error = default(object), string trackingId = default(string), object inputs = default(object), ContentLink inputsLink = default(ContentLink), object outputs = default(object), ContentLink outputsLink = default(ContentLink), object trackedProperties = default(object), IList <RetryHistory> retryHistory = default(IList <RetryHistory>), int?iterationCount = default(int?), IList <RepetitionIndex> repetitionIndexes = default(IList <RepetitionIndex>))
     : base(id, name, type, location, tags)
 {
     StartTime         = startTime;
     EndTime           = endTime;
     Correlation       = correlation;
     Status            = status;
     Code              = code;
     Error             = error;
     TrackingId        = trackingId;
     Inputs            = inputs;
     InputsLink        = inputsLink;
     Outputs           = outputs;
     OutputsLink       = outputsLink;
     TrackedProperties = trackedProperties;
     RetryHistory      = retryHistory;
     IterationCount    = iterationCount;
     RepetitionIndexes = repetitionIndexes;
     CustomInit();
 }
 /// <summary>
 /// Initializes a new instance of the OperationResult class.
 /// </summary>
 /// <param name="startTime">The start time of the workflow scope
 /// repetition.</param>
 /// <param name="endTime">The end time of the workflow scope
 /// repetition.</param>
 /// <param name="correlation">The correlation properties.</param>
 /// <param name="status">The status of the workflow scope repetition.
 /// Possible values include: 'NotSpecified', 'Paused', 'Running',
 /// 'Waiting', 'Succeeded', 'Skipped', 'Suspended', 'Cancelled',
 /// 'Failed', 'Faulted', 'TimedOut', 'Aborted', 'Ignored'</param>
 /// <param name="code">The workflow scope repetition code.</param>
 /// <param name="trackingId">Gets the tracking id.</param>
 /// <param name="inputs">Gets the inputs.</param>
 /// <param name="inputsLink">Gets the link to inputs.</param>
 /// <param name="outputs">Gets the outputs.</param>
 /// <param name="outputsLink">Gets the link to outputs.</param>
 /// <param name="trackedProperties">Gets the tracked
 /// properties.</param>
 /// <param name="retryHistory">Gets the retry histories.</param>
 public OperationResult(System.DateTime?startTime = default(System.DateTime?), System.DateTime?endTime = default(System.DateTime?), RunActionCorrelation correlation = default(RunActionCorrelation), string status = default(string), string code = default(string), object error = default(object), string trackingId = default(string), object inputs = default(object), ContentLink inputsLink = default(ContentLink), object outputs = default(object), ContentLink outputsLink = default(ContentLink), object trackedProperties = default(object), IList <RetryHistory> retryHistory = default(IList <RetryHistory>), int?iterationCount = default(int?))
     : base(startTime, endTime, correlation, status, code, error)
 {
     TrackingId        = trackingId;
     Inputs            = inputs;
     InputsLink        = inputsLink;
     Outputs           = outputs;
     OutputsLink       = outputsLink;
     TrackedProperties = trackedProperties;
     RetryHistory      = retryHistory;
     IterationCount    = iterationCount;
     CustomInit();
 }