Submit-OrderFinalize¶
Synopsis¶
Finalize a certificate order
Syntax¶
Submit-OrderFinalize [[-Order] <Object>] [<CommonParameters>]
Description¶
An ACME order that has reached the ready
state is ready to be finalized which involves sending the certificate request to the ACME server so it can sign the certificate and transition the order into the valid
state.
Examples¶
Example 1: Current Order¶
Submit-OrderFinalize
Finalize the current order.
Example 2: Specific Order¶
Get-PAOrder example.com | Submit-OrderFinalize
Finalize the specified order.
Parameters¶
-Order¶
The ACME order to finalize. The order object must be associated with the currently active ACME account.
Type: Object
Parameter Sets: (All)
Aliases:
Required: False
Position: 1
Default value: None
Accept pipeline input: True (ByValue)
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.
Inputs¶
PoshACME.PAOrder¶
An order object.