-
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.
TssSecretSummary - migrate and udpate --> Thycotic.PowerShell.Secrets…
….Summary
- Loading branch information
Showing
14 changed files
with
60 additions
and
102 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
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,36 @@ | ||
using System; | ||
using System.Threading.Tasks; | ||
using System.Management.Automation; | ||
using System.Management.Automation.Runspaces; | ||
|
||
namespace Thycotic.PowerShell.Secrets | ||
{ | ||
public class Summary | ||
{ | ||
public bool Active { get; set; } | ||
public bool AutoChangeEnabled { get; set; } | ||
public bool CheckedOut { get; set; } | ||
public bool CheckOutEnabled { get; set; } | ||
public DateTime? CreateDate { get; set; } | ||
public int DaysUntilExpiration { get; set; } | ||
public bool DoubleLockEnabled { get; set; } | ||
public SummaryExtendedField[] ExtendedFields { get; set; } | ||
public int FolderId { get; set; } | ||
public bool HidePassword { get; set; } | ||
public int Id { get; set; } | ||
public bool InheritsPermissions { get; set; } | ||
public bool IsOutOfSync { get; set; } | ||
public string OutOfSyncReason { get; set; } | ||
public bool IsRestricted { get; set; } | ||
public DateTime? LastAccessed { get; set; } | ||
public string LastHeartbeatStatus { get; set; } | ||
public DateTime? LastPasswordChangeAttempt { get; set; } | ||
public string Name { get; set; } | ||
public bool RequiresApproval { get; set; } | ||
public bool RequiresComment { get; set; } | ||
public int SecretTemplateId { get; set; } | ||
public string SecretTemplateName { get; set; } | ||
public int SiteId { get; set; } | ||
public string[] ResponseCodes { get; set; } | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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
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
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