Skip to content

Commit

Permalink
Update manifest and docs to 3.1.6 ***NO_CI***
Browse files Browse the repository at this point in the history
  • Loading branch information
gdbarron committed Sep 8, 2021
1 parent 451bf35 commit 1d357d6
Show file tree
Hide file tree
Showing 48 changed files with 70 additions and 62 deletions.
4 changes: 2 additions & 2 deletions VenafiPS/VenafiPS.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Greg Brownstein
#
# Generated on: 7/27/2021
# Generated on: 9/8/2021
#

@{
Expand All @@ -12,7 +12,7 @@
RootModule = 'VenafiPS.psm1'

# Version number of this module.
ModuleVersion = '3.1.5'
ModuleVersion = '3.1.6'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
8 changes: 7 additions & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
## 3.1.6
- Thanks to @harrisonmeister for this contribution!
- Add support to `Export-VenafiCertificate` for `-IncludeChain` and `-IncludePrivateKey` when using JKS format, [#24](https://github.com/gdbarron/VenafiPS/issues/24) and [#26](https://github.com/gdbarron/VenafiPS/issues/26)
- Add 'CertificateData' to the list of values hidden with `Write-VerboseWithSecret`, [#25](https://github.com/gdbarron/VenafiPS/issues/25)
- Help updates

## 3.1.5
- Thanks to @wilddev65 for this contribution
- Thanks to @wilddev65 for this contribution!
- Add `Test-TppToken` function to test if a TPP token is valid.
- Tests an AccessToken, TppToken, or VenafiSession
- `-GrantDetail` parameter returns detailed info about token from TPP server response
Expand Down
2 changes: 1 addition & 1 deletion docs/functions/Add-TppCertificateAssociation.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ You must have:
[http://VenafiPS.readthedocs.io/en/latest/functions/Add-TppCertificateAssociation/](http://VenafiPS.readthedocs.io/en/latest/functions/Add-TppCertificateAssociation/)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Add-TppCertificateAssociation.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Add-TppCertificateAssociation.ps1)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Add-TppCertificateAssociation.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Add-TppCertificateAssociation.ps1)
[https://docs.venafi.com/Docs/19.2SDK/TopNav/Content/SDK/WebSDK/API_Reference/r-SDK-POST-Certificates-Associate.php?tocpath=REST%20API%20reference%7CCertificates%20programming%20interface%7C_____6](https://docs.venafi.com/Docs/19.2SDK/TopNav/Content/SDK/WebSDK/API_Reference/r-SDK-POST-Certificates-Associate.php?tocpath=REST%20API%20reference%7CCertificates%20programming%20interface%7C_____6)
20 changes: 11 additions & 9 deletions docs/functions/Export-VenafiCertificate.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ Export-VenafiCertificate -CertificateId <String> -Format <String> [-OutPath <Str

### TppJks
```
Export-VenafiCertificate -CertificateId <String> -Format <String> -FriendlyName <String>
-KeystorePassword <SecureString> [-VenafiSession <VenafiSession>] [<CommonParameters>]
Export-VenafiCertificate -CertificateId <String> -Format <String> [-IncludeChain] -FriendlyName <String>
[-PrivateKeyPassword <SecureString>] -KeystorePassword <SecureString> [-VenafiSession <VenafiSession>]
[<CommonParameters>]
```

## DESCRIPTION
Expand All @@ -38,28 +39,28 @@ Get certificate data from Venafi as a Service

### EXAMPLE 2
```
$cert | Get-VenafiCertificate -Format 'PKCS #7' -OutPath 'c:\temp'
$cert | Export-VenafiCertificate -Format 'PKCS #7' -OutPath 'c:\temp'
```

Get certificate data and save to a file, TPP

### EXAMPLE 3
```
$cert | Get-VenafiCertificate -Format 'PKCS #7' -IncludeChain
$cert | Export-VenafiCertificate -Format 'PKCS #7' -IncludeChain
```

Get one or more certificates with the certificate chain included, TPP

### EXAMPLE 4
```
$cert | Get-VenafiCertificate -Format 'PKCS #12' -PrivateKeyPassword $cred.password
$cert | Export-VenafiCertificate -Format 'PKCS #12' -PrivateKeyPassword $cred.password
```

Get one or more certificates with private key included, TPP

### EXAMPLE 5
```
$cert | Get-VenafiCertificate -FriendlyName 'MyFriendlyName' -KeystorePassword $cred.password
$cert | Export-VenafiCertificate -FriendlyName 'MyFriendlyName' -KeystorePassword $cred.password
```

Get certificates in JKS format, TPP
Expand Down Expand Up @@ -124,7 +125,7 @@ TPP Only.
```yaml
Type: SwitchParameter
Parameter Sets: Tpp
Parameter Sets: Tpp, TppJks
Aliases:

Required: False
Expand Down Expand Up @@ -165,7 +166,8 @@ Accept wildcard characters: False
```
### -IncludePrivateKey
{{ Fill IncludePrivateKey Description }}
DEPRECATED.
Provide a value for -PrivateKeyPassword.
```yaml
Type: SwitchParameter
Expand Down Expand Up @@ -193,7 +195,7 @@ You must adhere to the following rules:
```yaml
Type: SecureString
Parameter Sets: Tpp
Parameter Sets: Tpp, TppJks
Aliases: SecurePassword

Required: False
Expand Down
2 changes: 1 addition & 1 deletion docs/functions/Find-TppCertificate.md
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
[http://VenafiPS.readthedocs.io/en/latest/functions/Find-TppCertificate/](http://VenafiPS.readthedocs.io/en/latest/functions/Find-TppCertificate/)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Find-TppCertificate.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Find-TppCertificate.ps1)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Find-TppCertificate.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Find-TppCertificate.ps1)
[https://docs.venafi.com/Docs/20.4SDK/TopNav/Content/SDK/WebSDK/r-SDK-GET-Certificates.php?tocpath=Web%20SDK%7CCertificates%20programming%20interface%7C_____4](https://docs.venafi.com/Docs/20.4SDK/TopNav/Content/SDK/WebSDK/r-SDK-GET-Certificates.php?tocpath=Web%20SDK%7CCertificates%20programming%20interface%7C_____4)
Expand Down
2 changes: 1 addition & 1 deletion docs/functions/Find-TppCodeSignEnvironment.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,5 +83,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
[http://VenafiPS.readthedocs.io/en/latest/functions/Find-TppCodeSignEnvironment/](http://VenafiPS.readthedocs.io/en/latest/functions/Find-TppCodeSignEnvironment/)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Find-TppCodeSignEnvironment.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Find-TppCodeSignEnvironment.ps1)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Find-TppCodeSignEnvironment.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Find-TppCodeSignEnvironment.ps1)
2 changes: 1 addition & 1 deletion docs/functions/Find-TppCodeSignProject.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
[http://VenafiPS.readthedocs.io/en/latest/functions/Find-TppCodeSignProject/](http://VenafiPS.readthedocs.io/en/latest/functions/Find-TppCodeSignProject/)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Find-TppCodeSignProject.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Find-TppCodeSignProject.ps1)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Find-TppCodeSignProject.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Find-TppCodeSignProject.ps1)
[https://docs.venafi.com/Docs/20.3/TopNav/Content/SDK/CodeSignSDK/r-SDKc-POST-Codesign-EnumerateProjects.php?tocpath=CodeSign%20Protect%20SDK%20reference%7CProjects%20and%20environments%7C_____8](https://docs.venafi.com/Docs/20.3/TopNav/Content/SDK/CodeSignSDK/r-SDKc-POST-Codesign-EnumerateProjects.php?tocpath=CodeSign%20Protect%20SDK%20reference%7CProjects%20and%20environments%7C_____8)
2 changes: 1 addition & 1 deletion docs/functions/Find-TppCodeSignTemplate.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
[http://VenafiPS.readthedocs.io/en/latest/functions/Find-TppCodeSignProject/](http://VenafiPS.readthedocs.io/en/latest/functions/Find-TppCodeSignProject/)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Find-TppCodeSignProject.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Find-TppCodeSignProject.ps1)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Find-TppCodeSignProject.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Find-TppCodeSignProject.ps1)
[https://docs.venafi.com/Docs/20.3/TopNav/Content/SDK/CodeSignSDK/r-SDKc-POST-Codesign-EnumerateProjects.php?tocpath=CodeSign%20Protect%20SDK%20reference%7CProjects%20and%20environments%7C_____8](https://docs.venafi.com/Docs/20.3/TopNav/Content/SDK/CodeSignSDK/r-SDKc-POST-Codesign-EnumerateProjects.php?tocpath=CodeSign%20Protect%20SDK%20reference%7CProjects%20and%20environments%7C_____8)
2 changes: 1 addition & 1 deletion docs/functions/Find-TppIdentity.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
[http://VenafiPS.readthedocs.io/en/latest/functions/Find-TppIdentity/](http://VenafiPS.readthedocs.io/en/latest/functions/Find-TppIdentity/)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Find-TppIdentity.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Find-TppIdentity.ps1)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Find-TppIdentity.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Find-TppIdentity.ps1)
[https://docs.venafi.com/Docs/20.4SDK/TopNav/Content/SDK/WebSDK/r-SDK-POST-Identity-Browse.php?tocpath=Web%20SDK%7CIdentity%20programming%20interface%7C_____5](https://docs.venafi.com/Docs/20.4SDK/TopNav/Content/SDK/WebSDK/r-SDK-POST-Identity-Browse.php?tocpath=Web%20SDK%7CIdentity%20programming%20interface%7C_____5)
2 changes: 1 addition & 1 deletion docs/functions/Find-TppObject.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
[http://VenafiPS.readthedocs.io/en/latest/functions/Find-TppObject/](http://VenafiPS.readthedocs.io/en/latest/functions/Find-TppObject/)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Find-TppObject.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Find-TppObject.ps1)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Find-TppObject.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Find-TppObject.ps1)
[https://docs.venafi.com/Docs/20.4SDK/TopNav/Content/SDK/WebSDK/r-SDK-POST-Config-find.php?tocpath=Web%20SDK%7CConfig%20programming%20interface%7C_____17](https://docs.venafi.com/Docs/20.4SDK/TopNav/Content/SDK/WebSDK/r-SDK-POST-Config-find.php?tocpath=Web%20SDK%7CConfig%20programming%20interface%7C_____17)
Expand Down
2 changes: 1 addition & 1 deletion docs/functions/Get-TppAttribute.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
[http://VenafiPS.readthedocs.io/en/latest/functions/Get-TppAttribute/](http://VenafiPS.readthedocs.io/en/latest/functions/Get-TppAttribute/)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Get-TppAttribute.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Get-TppAttribute.ps1)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Get-TppAttribute.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Get-TppAttribute.ps1)
[https://docs.venafi.com/Docs/20.4SDK/TopNav/Content/SDK/WebSDK/r-SDK-POST-Config-read.php?tocpath=Web%20SDK%7CConfig%20programming%20interface%7C_____27](https://docs.venafi.com/Docs/20.4SDK/TopNav/Content/SDK/WebSDK/r-SDK-POST-Config-read.php?tocpath=Web%20SDK%7CConfig%20programming%20interface%7C_____27)
Expand Down
2 changes: 1 addition & 1 deletion docs/functions/Get-TppCodeSignConfig.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
[http://VenafiPS.readthedocs.io/en/latest/functions/Get-TppCodeSignConfig/](http://VenafiPS.readthedocs.io/en/latest/functions/Get-TppCodeSignConfig/)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Get-TppCodeSignConfig.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Get-TppCodeSignConfig.ps1)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Get-TppCodeSignConfig.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Get-TppCodeSignConfig.ps1)
[https://docs.venafi.com/Docs/20.4SDK/TopNav/Content/SDK/CodeSignSDK/r-SDKc-GET-Codesign-GetGlobalConfiguration.php?tocpath=CodeSign%20Protect%20Admin%20REST%C2%A0API%7CGlobalConfiguration%7C_____1](https://docs.venafi.com/Docs/20.4SDK/TopNav/Content/SDK/CodeSignSDK/r-SDKc-GET-Codesign-GetGlobalConfiguration.php?tocpath=CodeSign%20Protect%20Admin%20REST%C2%A0API%7CGlobalConfiguration%7C_____1)
2 changes: 1 addition & 1 deletion docs/functions/Get-TppCodeSignEnvironment.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
[http://VenafiPS.readthedocs.io/en/latest/functions/Get-TppCodeSignEnvironment/](http://VenafiPS.readthedocs.io/en/latest/functions/Get-TppCodeSignEnvironment/)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Get-TppCodeSignEnvironment.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Get-TppCodeSignEnvironment.ps1)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Get-TppCodeSignEnvironment.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Get-TppCodeSignEnvironment.ps1)
[https://docs.venafi.com/Docs/20.4SDK/TopNav/Content/SDK/CodeSignSDK/r-SDKc-POST-Codesign-GetEnvironment.php?tocpath=CodeSign%20Protect%20Admin%20REST%C2%A0API%7CProjects%20and%20environments%7C_____9](https://docs.venafi.com/Docs/20.4SDK/TopNav/Content/SDK/CodeSignSDK/r-SDKc-POST-Codesign-GetEnvironment.php?tocpath=CodeSign%20Protect%20Admin%20REST%C2%A0API%7CProjects%20and%20environments%7C_____9)
2 changes: 1 addition & 1 deletion docs/functions/Get-TppCodeSignProject.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
[http://VenafiPS.readthedocs.io/en/latest/functions/Get-TppCodeSignProject/](http://VenafiPS.readthedocs.io/en/latest/functions/Get-TppCodeSignProject/)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Get-TppCodeSignProject.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Get-TppCodeSignProject.ps1)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Get-TppCodeSignProject.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Get-TppCodeSignProject.ps1)
[https://docs.venafi.com/Docs/20.4SDK/TopNav/Content/SDK/CodeSignSDK/r-SDKc-POST-Codesign-GetProject.php?tocpath=CodeSign%20Protect%20Admin%20REST%C2%A0API%7CProjects%20and%20environments%7C_____10](https://docs.venafi.com/Docs/20.4SDK/TopNav/Content/SDK/CodeSignSDK/r-SDKc-POST-Codesign-GetProject.php?tocpath=CodeSign%20Protect%20Admin%20REST%C2%A0API%7CProjects%20and%20environments%7C_____10)
2 changes: 1 addition & 1 deletion docs/functions/Get-TppIdentity.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
[http://VenafiPS.readthedocs.io/en/latest/functions/Get-TppIdentity/](http://VenafiPS.readthedocs.io/en/latest/functions/Get-TppIdentity/)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Get-TppIdentity.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Get-TppIdentity.ps1)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Get-TppIdentity.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Get-TppIdentity.ps1)
[https://docs.venafi.com/Docs/20.4SDK/TopNav/Content/SDK/WebSDK/r-SDK-POST-Identity-Validate.php?tocpath=Web%20SDK%7CIdentity%20programming%20interface%7C_____15](https://docs.venafi.com/Docs/20.4SDK/TopNav/Content/SDK/WebSDK/r-SDK-POST-Identity-Validate.php?tocpath=Web%20SDK%7CIdentity%20programming%20interface%7C_____15)
Expand Down
2 changes: 1 addition & 1 deletion docs/functions/Get-TppIdentityAttribute.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
[http://VenafiPS.readthedocs.io/en/latest/functions/Get-TppIdentityAttribute/](http://VenafiPS.readthedocs.io/en/latest/functions/Get-TppIdentityAttribute/)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Get-TppIdentityAttribute.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Get-TppIdentityAttribute.ps1)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Get-TppIdentityAttribute.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Get-TppIdentityAttribute.ps1)
[https://docs.venafi.com/Docs/20.4SDK/TopNav/Content/SDK/WebSDK/r-SDK-POST-Identity-Validate.php?tocpath=Web%20SDK%7CIdentity%20programming%20interface%7C_____15](https://docs.venafi.com/Docs/20.4SDK/TopNav/Content/SDK/WebSDK/r-SDK-POST-Identity-Validate.php?tocpath=Web%20SDK%7CIdentity%20programming%20interface%7C_____15)
Expand Down
2 changes: 1 addition & 1 deletion docs/functions/Get-TppObject.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,5 +98,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
[http://VenafiPS.readthedocs.io/en/latest/functions/Get-TppObject/](http://VenafiPS.readthedocs.io/en/latest/functions/Get-TppObject/)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Get-TppObject.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Get-TppObject.ps1)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Get-TppObject.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Get-TppObject.ps1)
4 changes: 2 additions & 2 deletions docs/functions/Get-TppPermission.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,9 +189,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
[http://VenafiPS.readthedocs.io/en/latest/functions/Get-TppPermission/](http://VenafiPS.readthedocs.io/en/latest/functions/Get-TppPermission/)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Get-TppPermission.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Get-TppPermission.ps1)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Get-TppPermission.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Get-TppPermission.ps1)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Get-TppIdentityAttribute.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Get-TppIdentityAttribute.ps1)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Get-TppIdentityAttribute.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Get-TppIdentityAttribute.ps1)
[https://docs.venafi.com/Docs/20.4SDK/TopNav/Content/SDK/WebSDK/r-SDK-GET-Permissions-object-guid.php?tocpath=Web%20SDK%7CPermissions%20programming%20interface%7C_____3](https://docs.venafi.com/Docs/20.4SDK/TopNav/Content/SDK/WebSDK/r-SDK-GET-Permissions-object-guid.php?tocpath=Web%20SDK%7CPermissions%20programming%20interface%7C_____3)
Expand Down
2 changes: 1 addition & 1 deletion docs/functions/Get-TppSystemStatus.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
[http://VenafiPS.readthedocs.io/en/latest/functions/Get-TppSystemStatus/](http://VenafiPS.readthedocs.io/en/latest/functions/Get-TppSystemStatus/)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Get-TppSystemStatus.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Get-TppSystemStatus.ps1)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Get-TppSystemStatus.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Get-TppSystemStatus.ps1)
[https://docs.venafi.com/Docs/20.4SDK/TopNav/Content/SDK/WebSDK/r-SDK-GET-SystemStatus.php?tocpath=Web%20SDK%7CSystemStatus%20programming%20interface%7C_____3](https://docs.venafi.com/Docs/20.4SDK/TopNav/Content/SDK/WebSDK/r-SDK-GET-SystemStatus.php?tocpath=Web%20SDK%7CSystemStatus%20programming%20interface%7C_____3)
2 changes: 1 addition & 1 deletion docs/functions/Get-TppVersion.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
[http://VenafiPS.readthedocs.io/en/latest/functions/Get-TppVersion/](http://VenafiPS.readthedocs.io/en/latest/functions/Get-TppVersion/)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Get-TppVersion.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Get-TppVersion.ps1)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Get-TppVersion.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Get-TppVersion.ps1)
[https://docs.venafi.com/Docs/20.4SDK/TopNav/Content/SDK/WebSDK/r-SDK-GET-SystemStatusVersion.php?tocpath=Web%20SDK%7CSystemStatus%20programming%20interface%7C_____9](https://docs.venafi.com/Docs/20.4SDK/TopNav/Content/SDK/WebSDK/r-SDK-GET-SystemStatusVersion.php?tocpath=Web%20SDK%7CSystemStatus%20programming%20interface%7C_____9)
2 changes: 1 addition & 1 deletion docs/functions/Get-TppWorkflowTicket.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
[http://VenafiPS.readthedocs.io/en/latest/functions/Get-TppWorkflowTicket/](http://VenafiPS.readthedocs.io/en/latest/functions/Get-TppWorkflowTicket/)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Get-TppWorkflowTicket.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Code/Public/Get-TppWorkflowTicket.ps1)
[https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Get-TppWorkflowTicket.ps1](https://github.com/gdbarron/VenafiPS/blob/main/VenafiPS/Public/Get-TppWorkflowTicket.ps1)
[https://docs.venafi.com/Docs/20.4SDK/TopNav/Content/SDK/WebSDK/r-SDK-POST-Workflow-ticket-enumerate.php?tocpath=Web%20SDK%7CWorkflow%20Ticket%20programming%20interface%7C_____7](https://docs.venafi.com/Docs/20.4SDK/TopNav/Content/SDK/WebSDK/r-SDK-POST-Workflow-ticket-enumerate.php?tocpath=Web%20SDK%7CWorkflow%20Ticket%20programming%20interface%7C_____7)
Expand Down
Loading

0 comments on commit 1d357d6

Please sign in to comment.