-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Search-TssEventPipeline - switched endpoint to summaries
- Loading branch information
Showing
6 changed files
with
84 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
src/Thycotic.SecretServer/classes/event-pipeline/Summary.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
using System; | ||
using System.Threading.Tasks; | ||
using System.Management.Automation; | ||
using System.Management.Automation.Runspaces; | ||
using Thycotic.PowerShell.Enums; | ||
|
||
namespace Thycotic.PowerShell.EventPipeline | ||
{ | ||
public class Summary | ||
{ | ||
public bool Active { get; set; } | ||
public DateTime? CreatedDate { get; set; } | ||
public EventEntityType EventEntityTypeId { get; set; } | ||
public string EventPipelineDescription { get; set; } | ||
public int EventPipelineId { get; set; } | ||
public string EventPipelineName { get; set; } | ||
public int EventPipelinePolicyId { get; set; } | ||
public int EventPipelinePolicyMapId { get; set; } | ||
public bool IsSystem { get; set; } | ||
public DateTime? LastModifiedDate { get; set; } | ||
public string LastModifiedDisplayName { get; set; } | ||
public int SortOrder { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.