Skip to main content

SedBatchRecord

Properties

NameTypeDescriptionNotes
TenantIdStringThe tenant ID associated with the batch.[optional]
BatchIdStringThe unique ID of the batch.[optional]
NameStringThe name of the batch.[optional]
ProcessedStateStringThe current state of the batch (e.g., submitted, materialized, completed).[optional]
RequestedByStringThe ID of the user who requested the batch.[optional]
MaterializedCountInt32The number of items materialized in the batch.[optional]
ProcessedCountInt32The number of items processed in the batch.[optional]
CreatedAtSystem.DateTimeThe timestamp when the batch was created.[optional]
UpdatedAtSystem.DateTimeThe timestamp when the batch was last updated.[optional]

Examples

  • Prepare the resource
$SedBatchRecord = Initialize-V2025SedBatchRecord  -TenantId 123e4567-e89b-12d3-a456-426614174000 `
-BatchId 016629d1-1d25-463f-97f3-0c6686846650 `
-Name Example Batch Name `
-ProcessedState submitted | materialized | completed | failed `
-RequestedBy 987e6543-e21b-45d3-b123-123456789abc `
-MaterializedCount 50 `
-ProcessedCount 45 `
-CreatedAt 2023-10-01T12:00Z `
-UpdatedAt 2023-10-02T15:30Z
  • Convert the resource to JSON
$SedBatchRecord | ConvertTo-JSON

[Back to top]