Skip to content

Commit

Permalink
Update manifest and docs to 6.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
gdbarron committed Jan 23, 2024
1 parent 49ce92b commit 77e9526
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 6.1.3
- Add parallel functionality to `Remove-VdcObject`. PS Core for now, Windows PowerShell coming soon.
- Fix invalid function reference with `New-VdcCapiApplication`, [#247](https://github.com/Venafi/VenafiPS/issues/247)
- Fix wilcard certificate not accepted with `New-VdcCapiApplication`, [#248](https://github.com/Venafi/VenafiPS/issues/248)


## 6.1.2
- Add custom field value lookup to `Find-VdcObject`. Utilizing existing `-Attribute` and `-Pattern` parameters, find objects where Attribute is a custom field name or guid and Pattern is the value you are looking for.
- Add parallel functionality to `Remove-VdcCertificate` for bulk cleanup
Expand Down Expand Up @@ -649,5 +655,6 @@ This is a major release. Although every attempt has been made to be backwards c






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: Venafi
#
# Generated on: 01/16/2024
# Generated on: 01/23/2024
#

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

# Version number of this module.
ModuleVersion = '6.1.2'
ModuleVersion = '6.1.3'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
7 changes: 7 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 6.1.3
- Add parallel functionality to `Remove-VdcObject`. PS Core for now, Windows PowerShell coming soon.
- Fix invalid function reference with `New-VdcCapiApplication`, [#247](https://github.com/Venafi/VenafiPS/issues/247)
- Fix wilcard certificate not accepted with `New-VdcCapiApplication`, [#248](https://github.com/Venafi/VenafiPS/issues/248)


## 6.1.2
- Add custom field value lookup to `Find-VdcObject`. Utilizing existing `-Attribute` and `-Pattern` parameters, find objects where Attribute is a custom field name or guid and Pattern is the value you are looking for.
- Add parallel functionality to `Remove-VdcCertificate` for bulk cleanup
Expand Down Expand Up @@ -649,5 +655,6 @@ This is a major release. Although every attempt has been made to be backwards c






23 changes: 20 additions & 3 deletions docs/functions/Remove-VdcObject.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@ Remove TLSPDC objects
## SYNTAX

```
Remove-VdcObject [-Path] <String> [-Recursive] [[-VenafiSession] <PSObject>] [-WhatIf] [-Confirm]
[<CommonParameters>]
Remove-VdcObject [-Path] <String> [-Recursive] [[-ThrottleLimit] <Int32>] [[-VenafiSession] <PSObject>]
[-WhatIf] [-Confirm] [<CommonParameters>]
```

## DESCRIPTION
Remove a TLSPDC object and optionally perform a recursive removal.
This process can be very destructive as it will remove anything you send it!!!
Run this in parallel with PowerShell v7+ when you have a large number to process.

## EXAMPLES

Expand Down Expand Up @@ -73,6 +74,22 @@ Accept pipeline input: False
Accept wildcard characters: False
```
### -ThrottleLimit
Limit the number of threads when running in parallel; the default is 100.
Applicable to PS v7+ only.
```yaml
Type: Int32
Parameter Sets: (All)
Aliases:

Required: False
Position: 2
Default value: 100
Accept pipeline input: False
Accept wildcard characters: False
```
### -VenafiSession
Authentication for the function.
The value defaults to the script session object $VenafiSession created by New-VenafiSession.
Expand All @@ -85,7 +102,7 @@ Parameter Sets: (All)
Aliases:

Required: False
Position: 2
Position: 3
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Expand Down

0 comments on commit 77e9526

Please sign in to comment.