We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f82116 commit 4e21d31Copy full SHA for 4e21d31
2 files changed
Modules/CIPPCore/Public/Get-CIPPTimerFunctions.ps1
@@ -124,7 +124,7 @@ function Get-CIPPTimerFunctions {
124
} else {
125
if ($Status) {
126
Write-Warning "Timer function: $($Orchestrator.Command) does not exist"
127
- Remove-CIPPAzDataTableEntity @Table -Entity $Status
+ Remove-AzDataTableEntity @Table -Entity $Status
128
}
129
130
Modules/CIPPCore/Public/Test-CIPPRerun.ps1
@@ -21,7 +21,7 @@ function Test-CIPPRerun {
21
$RerunData = Get-CIPPAzDataTableEntity @RerunTable -filter "PartitionKey eq '$($TenantFilter)' and RowKey eq '$($Type)_$($API)'"
22
if ($Clear.IsPresent) {
23
if ($RerunData) {
24
- Remove-CIPPAzDataTableEntity @RerunTable -Entity $RerunData
+ Remove-AzDataTableEntity @RerunTable -Entity $RerunData
25
26
return $false
27
} elseif ($RerunData) {
0 commit comments