| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | namespace Azure.Analytics.Synapse.Artifacts.Models |
| | 9 | | { |
| | 10 | | /// <summary> Provides entity name and id that started the pipeline run. </summary> |
| | 11 | | public partial class PipelineRunInvokedBy |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of PipelineRunInvokedBy. </summary> |
| 0 | 14 | | internal PipelineRunInvokedBy() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of PipelineRunInvokedBy. </summary> |
| | 19 | | /// <param name="name"> Name of the entity that started the pipeline run. </param> |
| | 20 | | /// <param name="id"> The ID of the entity that started the run. </param> |
| | 21 | | /// <param name="invokedByType"> The type of the entity that started the run. </param> |
| 0 | 22 | | internal PipelineRunInvokedBy(string name, string id, string invokedByType) |
| | 23 | | { |
| 0 | 24 | | Name = name; |
| 0 | 25 | | Id = id; |
| 0 | 26 | | InvokedByType = invokedByType; |
| 0 | 27 | | } |
| | 28 | |
|
| | 29 | | /// <summary> Name of the entity that started the pipeline run. </summary> |
| 0 | 30 | | public string Name { get; } |
| | 31 | | /// <summary> The ID of the entity that started the run. </summary> |
| 0 | 32 | | public string Id { get; } |
| | 33 | | /// <summary> The type of the entity that started the run. </summary> |
| 0 | 34 | | public string InvokedByType { get; } |
| | 35 | | } |
| | 36 | | } |