Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/SedBatchStats.md
2025-01-28 13:29:29 -05: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
v2024-sed-batch-stats SedBatchStats SedBatchStats SedBatchStats powershellsdk
powershell
PowerShell
sdk
SedBatchStats
V2024SedBatchStats
/tools/sdk/powershell/v2024/models/sed-batch-stats
SDK
Software Development Kit
SedBatchStats
V2024SedBatchStats

SedBatchStats

Properties

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

Examples

  • Prepare the resource
$SedBatchStats = Initialize-PSSailpoint.V2024SedBatchStats  -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]