Skip to content

Commit

Permalink
Update manifest and docs to 6.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gdbarron committed Nov 28, 2024
1 parent d828a2d commit 2ca6174
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 31 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 6.6.1
- Fix bogus error during `New-VcMachineCommonKeystore` [#304](https://github.com/Venafi/VenafiPS/issues/304)
- Update VC machine creation components due to API deprecation

## 6.6.0
- Add `Get-VcSatelliteWorker`, either all, by id or all workers associated with a specific satellite
- Add `Remove-VcSatelliteWorker`, you guessed it...removes vsat workers
Expand Down Expand Up @@ -747,5 +751,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: Greg Brownstein
#
# Generated on: 11/23/2024
# Generated on: 11/28/2024
#

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

# Version number of this module.
ModuleVersion = '6.6.0'
ModuleVersion = '6.6.1'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
5 changes: 5 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 6.6.1
- Fix bogus error during `New-VcMachineCommonKeystore` [#304](https://github.com/Venafi/VenafiPS/issues/304)
- Update VC machine creation components due to API deprecation

## 6.6.0
- Add `Get-VcSatelliteWorker`, either all, by id or all workers associated with a specific satellite
- Add `Remove-VcSatelliteWorker`, you guessed it...removes vsat workers
Expand Down Expand Up @@ -747,5 +751,6 @@ This is a major release. Although every attempt has been made to be backwards c






32 changes: 3 additions & 29 deletions docs/functions/Get-VcConnector.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,45 +17,19 @@ Get-VcConnector [-All] [-VenafiSession <PSObject>] [-ProgressAction <ActionPrefe
```

## DESCRIPTION
Get details on 1 or all connectors
Get details on 1 or all connectors associated with your tenant

## EXAMPLES

### EXAMPLE 1
```
Get-VcConnector -Connector 'ca7ff555-88d2-4bfc-9efa-2630ac44c1f2' | ConvertTo-Json
```

{
"connectorId": "a7ddd210-0a39-11ee-8763-134b935c90aa",
"name": "ServiceNow-expiry,
"properties": {
"connectorKind": "WEBHOOK",
"filter": {
"filterType": "EXPIRATION",
"applicationIds": \[\]
},
"target": {
"type": "generic",
"connection": {
"secret": "MySecret",
"url": "https://instance.service-now.com/api/company/endpoint"
}
}
}
}

Get a single object by ID

### EXAMPLE 2
```
Get-VcConnector -Connector 'My Connector'
```

Get a single object by name.
The name is case sensitive.

### EXAMPLE 3
### EXAMPLE 2
```
Get-VcConnector -All
```
Expand Down Expand Up @@ -131,7 +105,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
## INPUTS
### ID
### Connector
## OUTPUTS
## NOTES
Expand Down

0 comments on commit 2ca6174

Please sign in to comment.