Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/SedBatchStats.md
2025-05-07 14:37:48 +00:00

1.2 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-sed-batch-stats SedBatchStats SedBatchStats SedBatchStats powershellsdk
powershell
PowerShell
sdk
SedBatchStats
BetaSedBatchStats
/tools/sdk/powershell/beta/models/sed-batch-stats
SDK
Software Development Kit
SedBatchStats
BetaSedBatchStats

SedBatchStats

Properties

Name Type Description Notes
BatchComplete Boolean batch complete [optional] [default to $false]
BatchId String batch Id [optional]
DiscoveredCount Int64 discovered count [optional]
DiscoveryComplete Boolean discovery complete [optional] [default to $false]
ProcessedCount Int64 processed count [optional]

Examples

  • Prepare the resource
$SedBatchStats = Initialize-BetaSedBatchStats  -BatchComplete true `
 -BatchId 016629d1-1d25-463f-97f3-0c6686846650 `
 -DiscoveredCount 100 `
 -DiscoveryComplete true `
 -ProcessedCount 100
  • Convert the resource to JSON
$SedBatchStats | ConvertTo-JSON

[Back to top]