Skip to content

Commit

Permalink
TssSecretSummary - migrate and update --> SummaryExtendedField
Browse files Browse the repository at this point in the history
  • Loading branch information
wsmelton committed Jul 20, 2021
1 parent c56b75b commit f42827c
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 10 deletions.
4 changes: 2 additions & 2 deletions docs/about_topics/secrets/about_tsssecretsummary.md
Expand Up @@ -39,7 +39,7 @@ title: "TssSecretSummary"
DoubleLockEnabled
Indicates whether or not DoubleLock is enabled for this password

ExtendedFields [TssSecretSummaryExtendedField[]]
ExtendedFields [Thycotic.PowerShell.Secrets.SummaryExtendedField[]]
Any requested extended fields from a lookup request

FolderId
Expand Down Expand Up @@ -93,6 +93,6 @@ title: "TssSecretSummary"
# METHODS

# RELATED LINKS:
TssSecretSummaryExtendedField
Thycotic.PowerShell.Secrets.SummaryExtendedField
Search-TssSecret
Get-TssSecretSummary
@@ -1,18 +1,18 @@
---
title: "TssSecretSummaryExtendedField"
title: "Thycotic.PowerShell.Secrets.SummaryExtendedField"
---

# TOPIC
This help topic describes the TssSecretSummaryExtendedField class in the Thycotic.SecretServer module
This help topic describes the Thycotic.PowerShell.Secrets.SummaryExtendedField class in the Thycotic.SecretServer module

# CLASS
TssSecretSummaryExtendedField
Thycotic.PowerShell.Secrets.SummaryExtendedField

# INHERITANCE
None

# DESCRIPTION
The TssSecretSummaryExtendedField class represents the ISecretSummaryExtendedField object returned by Secret Server endpoint GET /secrets and GET /secrets/{id}/summary
The Thycotic.PowerShell.Secrets.SummaryExtendedField class represents the ISecretSummaryExtendedField object returned by Secret Server endpoint GET /secrets and GET /secrets/{id}/summary

# CONSTRUCTORS
new()
Expand Down
13 changes: 13 additions & 0 deletions src/Thycotic.SecretServer/classes/secrets/SummaryExtendedFied.cs
@@ -0,0 +1,13 @@
using System;
using System.Threading.Tasks;
using System.Management.Automation;
using System.Management.Automation.Runspaces;

namespace Thycotic.PowerShell.Secrets
{
public class SummaryExtendedField
{
public string Name { get; set; }
public string Value { get; set; }
}
}

This file was deleted.

0 comments on commit f42827c

Please sign in to comment.