-
-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
platyPS help migration and doc site (#378)
- Loading branch information
Showing
140 changed files
with
15,123 additions
and
2,234 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -131,77 +131,4 @@ function Get-PAAccount { | |
} | ||
} | ||
} | ||
|
||
|
||
|
||
|
||
|
||
<# | ||
.SYNOPSIS | ||
Get ACME account details. | ||
.DESCRIPTION | ||
Returns details such as Email, key length, and status for one or more ACME accounts previously created. | ||
.PARAMETER ID | ||
The account id value as returned by the ACME server. 'Name' is also an alias for this parameter. | ||
.PARAMETER List | ||
If specified, the details for all accounts will be returned. | ||
.PARAMETER Status | ||
A Status string to filter the list of accounts with. | ||
.PARAMETER Contact | ||
One or more email addresses to filter the list of accounts with. Returned accounts must match exactly (not including the order). | ||
.PARAMETER KeyLength | ||
The type and size of private key to filter the list of accounts with. For RSA keys, specify a number between 2048-4096 (divisible by 128). For ECC keys, specify either 'ec-256' or 'ec-384'. | ||
.PARAMETER Refresh | ||
If specified, any account details returned will be freshly queried from the ACME server (excluding deactivated accounts). Otherwise, cached details will be returned. | ||
.PARAMETER ExtraParams | ||
This parameter can be ignored and is only used to prevent errors when splatting with more parameters than this function supports. | ||
.EXAMPLE | ||
Get-PAAccount | ||
Get cached ACME account details for the currently selected account. | ||
.EXAMPLE | ||
Get-PAAccount -ID 1234567 | ||
Get cached ACME account details for the specified account ID. | ||
.EXAMPLE | ||
Get-PAAccount -List | ||
Get all cached ACME account details. | ||
.EXAMPLE | ||
Get-PAAccount -Refresh | ||
Get fresh ACME account details for the currently selected account. | ||
.EXAMPLE | ||
Get-PAAccount -List -Refresh | ||
Get fresh ACME account details for all accounts. | ||
.EXAMPLE | ||
Get-PAAccount -List -Contact [email protected] | ||
Get cached ACME account details for all accounts that have [email protected] as the only contact. | ||
.LINK | ||
Project: https://github.com/rmbolger/Posh-ACME | ||
.LINK | ||
Set-PAAccount | ||
.LINK | ||
New-PAAccount | ||
#> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.