Skip to content

Commit

Permalink
Update manifest and docs to 4.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
gdbarron committed Feb 25, 2022
1 parent ae2f249 commit 61c122b
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 10 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 4.1.5
- Add support for double slash paths used by the adaptable framework, [#75](https://github.com/Venafi/VenafiPS/issues/75)
- Add `AsValue` parameter to `Get-TppAttribute` making it easy to retrieve just the value when 1 attribute is requested
- Update return type when using `Find-TppCertificate -CountOnly` from string to int


## 4.1.4
- Add `-IncludeMembers` parameter to `Get-TppIdentity` to include members if the identity is a group, [#83](https://github.com/Venafi/VenafiPS/issues/83)
- Update `Get-TppIdentity` to return `IsGroup` for all objects, not just ones where IsGroup is true
Expand Down Expand Up @@ -303,3 +309,4 @@




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: 02/16/2022
# Generated on: 02/25/2022
#

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

# Version number of this module.
ModuleVersion = '4.1.4'
ModuleVersion = '4.1.5'

# 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 @@
## 4.1.5
- Add support for double slash paths used by the adaptable framework, [#75](https://github.com/Venafi/VenafiPS/issues/75)
- Add `AsValue` parameter to `Get-TppAttribute` making it easy to retrieve just the value when 1 attribute is requested
- Update return type when using `Find-TppCertificate -CountOnly` from string to int


## 4.1.4
- Add `-IncludeMembers` parameter to `Get-TppIdentity` to include members if the identity is a group, [#83](https://github.com/Venafi/VenafiPS/issues/83)
- Update `Get-TppIdentity` to return `IsGroup` for all objects, not just ones where IsGroup is true
Expand Down Expand Up @@ -303,3 +309,4 @@




29 changes: 23 additions & 6 deletions docs/functions/Get-TppAttribute.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,34 +7,36 @@ Get object attributes as well as policies (policy attributes)

### ByPath (Default)
```
Get-TppAttribute -Path <String> [-Attribute <String[]>] [-VenafiSession <VenafiSession>] [<CommonParameters>]
Get-TppAttribute -Path <String> [-Attribute <String[]>] [-AsValue] [-VenafiSession <VenafiSession>]
[<CommonParameters>]
```

### PolicyPath
```
Get-TppAttribute -Path <String> -Attribute <String[]> [-Policy] -ClassName <String>
Get-TppAttribute -Path <String> -Attribute <String[]> [-Policy] -ClassName <String> [-AsValue]
[-VenafiSession <VenafiSession>] [<CommonParameters>]
```

### AllEffectivePath
```
Get-TppAttribute -Path <String> [-All] [-VenafiSession <VenafiSession>] [<CommonParameters>]
Get-TppAttribute -Path <String> [-All] [-AsValue] [-VenafiSession <VenafiSession>] [<CommonParameters>]
```

### EffectiveByPath
```
Get-TppAttribute -Path <String> -Attribute <String[]> [-Effective] [-VenafiSession <VenafiSession>]
Get-TppAttribute -Path <String> -Attribute <String[]> [-Effective] [-AsValue] [-VenafiSession <VenafiSession>]
[<CommonParameters>]
```

### ByGuid
```
Get-TppAttribute -Guid <Guid> [-Attribute <String[]>] [-VenafiSession <VenafiSession>] [<CommonParameters>]
Get-TppAttribute -Guid <Guid> [-Attribute <String[]>] [-AsValue] [-VenafiSession <VenafiSession>]
[<CommonParameters>]
```

### EffectiveByGuid
```
Get-TppAttribute -Guid <Guid> -Attribute <String[]> [-Effective] [-VenafiSession <VenafiSession>]
Get-TppAttribute -Guid <Guid> -Attribute <String[]> [-Effective] [-AsValue] [-VenafiSession <VenafiSession>]
[<CommonParameters>]
```

Expand Down Expand Up @@ -206,6 +208,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
### -AsValue
{{ Fill AsValue Description }}
```yaml
Type: SwitchParameter
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False
```
### -VenafiSession
Session object created from New-VenafiSession method.
The value defaults to the script session object $VenafiSession.
Expand Down
4 changes: 2 additions & 2 deletions docs/functions/Get-TppObject.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Get object information

### ByPath
```
Get-TppObject -Path <String[]> [-VenafiSession <VenafiSession>] [<CommonParameters>]
Get-TppObject [-Path] <String[]> [-VenafiSession <VenafiSession>] [<CommonParameters>]
```

### ByGuid
Expand Down Expand Up @@ -46,7 +46,7 @@ Parameter Sets: ByPath
Aliases: DN

Required: True
Position: Named
Position: 1
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False
Expand Down

0 comments on commit 61c122b

Please sign in to comment.