Skip to content

Commit

Permalink
Merge pull request #1 from johnduprey/dev
Browse files Browse the repository at this point in the history
Dev to main
  • Loading branch information
JohnDuprey authored Sep 28, 2022
2 parents 37aade3 + 756619d commit 872e0ad
Show file tree
Hide file tree
Showing 101 changed files with 1,813 additions and 57 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
Output\
2 changes: 1 addition & 1 deletion Bitwarden/Bitwarden.psd1 → BitwardenPS/BitwardenPS.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
@{

# Script module or binary module file associated with this manifest.
RootModule = 'Bitwarden.psm1'
RootModule = 'BitwardenPS.psm1'

# Version number of this module.
ModuleVersion = '1.0.0.0'
Expand Down
File renamed without changes.
75 changes: 75 additions & 0 deletions Docs/Confirm-BwVaultOrgMember.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
---
external help file: BitwardenPS-help.xml
Module Name: BitwardenPS
online version: https://bitwarden.com/help/vault-management-api/
schema: 2.0.0
---

# Confirm-BwVaultOrgMember

## SYNOPSIS
Gets Bitwarden Vault Org Collections

## SYNTAX

```
Confirm-BwVaultOrgMember [-Id] <Object> [-OrganizationId] <Object> [<CommonParameters>]
```

## DESCRIPTION
Calls /list/object/org-members

## EXAMPLES

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

{{ Add example description here }}

## PARAMETERS

### -Id
Guid of Org Member

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

Required: True
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -OrganizationId
Guid of Organization
```yaml
Type: Object
Parameter Sets: (All)
Aliases:

Required: True
Position: 2
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
## OUTPUTS
## NOTES
## RELATED LINKS
[https://bitwarden.com/help/vault-management-api/](https://bitwarden.com/help/vault-management-api/)
6 changes: 3 additions & 3 deletions Docs/Connect-BwPublicApi.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: Bitwarden-help.xml
Module Name: Bitwarden
online version:
external help file: BitwardenPS-help.xml
Module Name: BitwardenPS
online version: https://bitwarden.com/help/vault-management-api/
schema: 2.0.0
---

Expand Down
6 changes: 3 additions & 3 deletions Docs/Get-BwPublicCollections.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: Bitwarden-help.xml
Module Name: Bitwarden
online version:
external help file: BitwardenPS-help.xml
Module Name: BitwardenPS
online version: https://bitwarden.com/help/vault-management-api/
schema: 2.0.0
---

Expand Down
6 changes: 3 additions & 3 deletions Docs/Get-BwPublicEvents.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: Bitwarden-help.xml
Module Name: Bitwarden
online version:
external help file: BitwardenPS-help.xml
Module Name: BitwardenPS
online version: https://bitwarden.com/help/vault-management-api/
schema: 2.0.0
---

Expand Down
6 changes: 3 additions & 3 deletions Docs/Get-BwPublicGroupMemberIds.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: Bitwarden-help.xml
Module Name: Bitwarden
online version:
external help file: BitwardenPS-help.xml
Module Name: BitwardenPS
online version: https://bitwarden.com/help/vault-management-api/
schema: 2.0.0
---

Expand Down
6 changes: 3 additions & 3 deletions Docs/Get-BwPublicGroups.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: Bitwarden-help.xml
Module Name: Bitwarden
online version:
external help file: BitwardenPS-help.xml
Module Name: BitwardenPS
online version: https://bitwarden.com/help/vault-management-api/
schema: 2.0.0
---

Expand Down
6 changes: 3 additions & 3 deletions Docs/Get-BwPublicMemberGroupIds.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: Bitwarden-help.xml
Module Name: Bitwarden
online version:
external help file: BitwardenPS-help.xml
Module Name: BitwardenPS
online version: https://bitwarden.com/help/vault-management-api/
schema: 2.0.0
---

Expand Down
6 changes: 3 additions & 3 deletions Docs/Get-BwPublicMembers.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file: Bitwarden-help.xml
Module Name: Bitwarden
online version:
external help file: BitwardenPS-help.xml
Module Name: BitwardenPS
online version: https://bitwarden.com/help/vault-management-api/
schema: 2.0.0
---

Expand Down
81 changes: 81 additions & 0 deletions Docs/Get-BwSend.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
---
external help file: BitwardenPS-help.xml
Module Name: BitwardenPS
online version: https://bitwarden.com/help/vault-management-api/
schema: 2.0.0
---

# Get-BwSend

## SYNOPSIS
Gets Bitwarden Sends

## SYNTAX

### List (Default)
```
Get-BwSend [-Search <Object>] [<CommonParameters>]
```

### Single
```
Get-BwSend -Id <Object> [<CommonParameters>]
```

## DESCRIPTION
Calls /list/object/send or /object/send/{id}

## EXAMPLES

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

{{ Add example description here }}

## PARAMETERS

### -Id
Guid of Collection

```yaml
Type: Object
Parameter Sets: Single
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -Search
Search parameters
```yaml
Type: Object
Parameter Sets: List
Aliases:

Required: False
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
## OUTPUTS
## NOTES
## RELATED LINKS
[https://bitwarden.com/help/vault-management-api/](https://bitwarden.com/help/vault-management-api/)
90 changes: 90 additions & 0 deletions Docs/Get-BwVaultAttachment.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
---
external help file: BitwardenPS-help.xml
Module Name: BitwardenPS
online version: https://bitwarden.com/help/vault-management-api/
schema: 2.0.0
---

# Get-BwVaultAttachment

## SYNOPSIS
Gets Bitwarden Vault Attachments

## SYNTAX

```
Get-BwVaultAttachment [-Id] <Object> [-ItemId] <Object> [[-FilePath] <Object>] [<CommonParameters>]
```

## DESCRIPTION
Calls Get /object/attachment/{id} to download attachments

## EXAMPLES

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

{{ Add example description here }}

## PARAMETERS

### -Id
Attachment id

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

Required: True
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -ItemId
Item Guid
```yaml
Type: Object
Parameter Sets: (All)
Aliases:

Required: True
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -FilePath
Path to save file
```yaml
Type: Object
Parameter Sets: (All)
Aliases:

Required: False
Position: 3
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
## OUTPUTS
## NOTES
## RELATED LINKS
[https://bitwarden.com/help/vault-management-api/](https://bitwarden.com/help/vault-management-api/)
60 changes: 60 additions & 0 deletions Docs/Get-BwVaultCollections.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
---
external help file: BitwardenPS-help.xml
Module Name: BitwardenPS
online version: https://bitwarden.com/help/vault-management-api/
schema: 2.0.0
---

# Get-BwVaultCollections

## SYNOPSIS
Gets Bitwarden Vault Collections

## SYNTAX

```
Get-BwVaultCollections [[-Search] <Object>] [<CommonParameters>]
```

## DESCRIPTION
Calls /list/object/collections

## EXAMPLES

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

{{ Add example description here }}

## PARAMETERS

### -Search
Organization name to search for

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

Required: False
Position: 1
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
## OUTPUTS
## NOTES
## RELATED LINKS
[https://bitwarden.com/help/vault-management-api/](https://bitwarden.com/help/vault-management-api/)
Loading

0 comments on commit 872e0ad

Please sign in to comment.