Skip to content

Commit

Permalink
int32 throttlelimit
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Brownstein committed Dec 9, 2023
1 parent a2015f0 commit 0768b21
Show file tree
Hide file tree
Showing 14 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion VenafiPS/Public/Export-VdcCertificate.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ function Export-VdcCertificate {
[String] $OutPath,

[Parameter()]
[int] $ThrottleLimit = 100,
[int32] $ThrottleLimit = 100,

[Parameter()]
[psobject] $VenafiSession
Expand Down
6 changes: 3 additions & 3 deletions VenafiPS/Public/Get-VdcCertificate.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
function Get-VdcCertificate {
function Get-VdcCertificate {
<#
.SYNOPSIS
Get certificate information
Expand Down Expand Up @@ -90,7 +90,7 @@ function Get-VdcCertificate {
[switch] $ExcludeRevoked,

[Parameter()]
[int] $ThrottleLimit = 100,
[int32] $ThrottleLimit = 100,

[Parameter()]
[psobject] $VenafiSession
Expand All @@ -111,7 +111,7 @@ function Get-VdcCertificate {
}

if ( Test-IsGuid($ID) ) {
$certs.Add($ID)
$certs.Add($ID)
}
else {
$certs.Add((ConvertTo-VdcFullPath -Path $ID))
Expand Down
2 changes: 1 addition & 1 deletion VenafiPS/Public/Invoke-VcWorkflow.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ function Invoke-VcWorkflow {
[string] $Workflow = 'Test',

[Parameter()]
[int] $ThrottleLimit = 100,
[int32] $ThrottleLimit = 100,

[Parameter()]
[psobject] $VenafiSession
Expand Down
2 changes: 1 addition & 1 deletion VenafiPS/Public/Invoke-VdcCertificateAction.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ function Invoke-VdcCertificateAction {
[hashtable] $AdditionalParameter,

[Parameter()]
[int] $ThrottleLimit = 100,
[int32] $ThrottleLimit = 100,

[Parameter()]
[psobject] $VenafiSession
Expand Down
2 changes: 1 addition & 1 deletion VenafiPS/Public/New-VcMachineCommonKeystore.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ function New-VcMachineCommonKeystore {
[switch] $NoVerify,

[Parameter()]
[int] $ThrottleLimit = 100,
[int32] $ThrottleLimit = 100,

[Parameter()]
[switch] $PassThru,
Expand Down
2 changes: 1 addition & 1 deletion VenafiPS/Public/New-VcMachineIis.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ function New-VcMachineIis {
[switch] $NoVerify,

[Parameter()]
[int] $ThrottleLimit = 100,
[int32] $ThrottleLimit = 100,

[Parameter()]
[switch] $PassThru,
Expand Down
2 changes: 1 addition & 1 deletion VenafiPS/Public/Remove-VcApplication.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
[string] $ID,

[Parameter()]
[int] $ThrottleLimit = 100,
[int32] $ThrottleLimit = 100,

[Parameter()]
[psobject] $VenafiSession
Expand Down
2 changes: 1 addition & 1 deletion VenafiPS/Public/Remove-VcCertificate.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
[string] $ID,

[Parameter()]
[int] $ThrottleLimit = 100,
[int32] $ThrottleLimit = 100,

[Parameter()]
[psobject] $VenafiSession
Expand Down
2 changes: 1 addition & 1 deletion VenafiPS/Public/Remove-VcConnector.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
[string] $ID,

[Parameter()]
[int] $ThrottleLimit = 100,
[int32] $ThrottleLimit = 100,

[Parameter()]
[psobject] $VenafiSession
Expand Down
2 changes: 1 addition & 1 deletion VenafiPS/Public/Remove-VcIssuingTemplate.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
[string] $ID,

[Parameter()]
[int] $ThrottleLimit = 100,
[int32] $ThrottleLimit = 100,

[Parameter()]
[psobject] $VenafiSession
Expand Down
2 changes: 1 addition & 1 deletion VenafiPS/Public/Remove-VcMachine.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
[string] $ID,

[Parameter()]
[int] $ThrottleLimit = 100,
[int32] $ThrottleLimit = 100,

[Parameter()]
[psobject] $VenafiSession
Expand Down
2 changes: 1 addition & 1 deletion VenafiPS/Public/Remove-VcMachineIdentity.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
[string] $ID,

[Parameter()]
[int] $ThrottleLimit = 100,
[int32] $ThrottleLimit = 100,

[Parameter()]
[psobject] $VenafiSession
Expand Down
2 changes: 1 addition & 1 deletion VenafiPS/Public/Remove-VcTag.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
[string] $ID,

[Parameter()]
[int] $ThrottleLimit = 100,
[int32] $ThrottleLimit = 100,

[Parameter()]
[psobject] $VenafiSession
Expand Down
2 changes: 1 addition & 1 deletion VenafiPS/Public/Remove-VcTeam.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
[string] $ID,

[Parameter()]
[int] $ThrottleLimit = 100,
[int32] $ThrottleLimit = 100,

[Parameter()]
[psobject] $VenafiSession
Expand Down

0 comments on commit 0768b21

Please sign in to comment.