Skip to content

Commit

Permalink
0.31.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
wsmelton committed Feb 18, 2021
1 parent 92a88af commit f678697
Show file tree
Hide file tree
Showing 5 changed files with 176 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

* None

## [0.31.0] -- 2021-02-17

### Added

* **SDK Client 1.5.0 (tss)** integration via `Initialize-TssSdkClient` and `New-TssSession` parameters: `-UseSdkClient`, `-ConfigPath` [#58](https://github.com/thycotic-ps/thycotic.secretserver/issues/58) [92a88af](https://github.com/thycotic-ps/thycotic.secretserver/commit/92a88afefe7123cc23858122c48b41dc3ef148e9)

### Changed

* `New-TssSession` update help examples [e95358b](https://github.com/thycotic-ps/thycotic.secretserver/commit/e95358b094a2860a1e292c691c0ca1b66d29c89f)
* `TssSession` and `TssSecretItem` about topic updates [f233d99](https://github.com/thycotic-ps/thycotic.secretserver/commit/f233d99f02d2d5a7ddcb01e32b5d52e89fdae2f1)
* 'Invoke-TssRestApi' updated help example [bf5d5da](https://github.com/thycotic-ps/thycotic.secretserver/commit/bf5d5da10f31958ddde11bdde41d696903e304ba)
Expand Down
2 changes: 2 additions & 0 deletions docs/_data/navigation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ commands:
children:
- title: "New-TssSession"
url: /commands/New-TssSession
- title: "Initialize-TssSdkClient"
url: /commands/Initialize-TssSdkClient

- title: "Secrets"
children:
Expand Down
123 changes: 123 additions & 0 deletions docs/collections/_commands/Initialize-TssSdkClient.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,123 @@
---
category: general
external help file: Thycotic.SecretServer-help.xml
Module Name: Thycotic.SecretServer
online version:
schema: 2.0.0
title: Initialize-TssSdkClient
---

# Initialize-TssSdkClient

## SYNOPSIS
{{ Fill in the Synopsis }}

## SYNTAX

```
Initialize-TssSdkClient -SecretServer <String> -RuleName <String> [-OnboardingKey <String>]
-ConfigPath <String> [-Force] [<CommonParameters>]
```

## DESCRIPTION
{{ Fill in the Description }}

## EXAMPLES

### Example 1
```powershell
PS C:\> {{ Add example code here }}
```

{{ Add example description here }}

## PARAMETERS

### -ConfigPath
{{ Fill ConfigPath Description }}

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -Force
{{ Fill Force Description }}
```yaml
Type: SwitchParameter
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -OnboardingKey
{{ Fill OnboardingKey Description }}
```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -RuleName
{{ Fill RuleName Description }}
```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -SecretServer
{{ Fill SecretServer Description }}
```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
## INPUTS
### None
## OUTPUTS
### System.Object
## NOTES
## RELATED LINKS
44 changes: 40 additions & 4 deletions docs/collections/_commands/New-TssSession.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,25 @@ Create new session

## SYNTAX

### clientSdk
```
New-TssSession -SecretServer <Uri> [-UseSdkClient] -ConfigPath <String> [-WhatIf] [-Confirm]
[<CommonParameters>]
```

### winauth
```
New-TssSession [-SecretServer] <Uri> [-UseWindowsAuth] [-WhatIf] [-Confirm] [<CommonParameters>]
New-TssSession -SecretServer <Uri> [-UseWindowsAuth] [-WhatIf] [-Confirm] [<CommonParameters>]
```

### sdk
```
New-TssSession [-SecretServer] <Uri> -AccessToken <Object> [-WhatIf] [-Confirm] [<CommonParameters>]
New-TssSession -SecretServer <Uri> -AccessToken <Object> [-WhatIf] [-Confirm] [<CommonParameters>]
```

### new
```
New-TssSession [-SecretServer] <Uri> -Credential <PSCredential> [-WhatIf] [-Confirm] [<CommonParameters>]
New-TssSession -SecretServer <Uri> -Credential <PSCredential> [-WhatIf] [-Confirm] [<CommonParameters>]
```

## DESCRIPTION
Expand Down Expand Up @@ -89,7 +95,7 @@ Parameter Sets: (All)
Aliases:

Required: True
Position: 2
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Expand Down Expand Up @@ -140,6 +146,36 @@ Accept pipeline input: False
Accept wildcard characters: False
```
### -UseSdkClient
Utilize SDK Client
```yaml
Type: SwitchParameter
Parameter Sets: clientSdk
Aliases:

Required: True
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False
```
### -ConfigPath
Config path for the key/config files
```yaml
Type: String
Parameter Sets: clientSdk
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -WhatIf
Shows what would happen if the cmdlet runs.
The cmdlet is not run.
Expand Down
2 changes: 1 addition & 1 deletion src/Thycotic.SecretServer.psd1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@{
ModuleVersion = '0.30.0'
ModuleVersion = '0.31.0'
CompatiblePSEditions = 'Desktop', 'Core'
FormatsToProcess = 'Thycotic.SecretServer.Format.ps1xml'
TypesToProcess = 'Thycotic.SecretServer.Types.ps1xml'
Expand Down

0 comments on commit f678697

Please sign in to comment.