Skip to content

Commit 7a91c0d

Browse files
authored
Az.DataFactory: Add missing properties to PSPipelineRun class (#12545)
1 parent 91b7b61 commit 7a91c0d

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

src/DataFactory/DataFactoryV2/Changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21+
* Added missing properties to PSPipelineRun class.
2122

2223
## Version 1.9.0
2324

src/DataFactory/DataFactoryV2/Models/PSPipelineRun.cs

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,30 @@ public string PipelineName
5959
}
6060
}
6161

62+
public string RunGroupId
63+
{
64+
get
65+
{
66+
return this.pipelineRun.RunGroupId;
67+
}
68+
}
69+
70+
public bool? IsLatest
71+
{
72+
get
73+
{
74+
return this.pipelineRun.IsLatest;
75+
}
76+
}
77+
78+
public PipelineRunInvokedBy InvokedBy
79+
{
80+
get
81+
{
82+
return this.pipelineRun.InvokedBy;
83+
}
84+
}
85+
6286
public DateTime? LastUpdated
6387
{
6488
get

0 commit comments

Comments
 (0)