Skip to main content

SedBatchRecord

Sed Batch Record

Properties

NameTypeDescriptionNotes
tenant_idstrThe tenant ID associated with the batch.[optional]
batch_idstrThe unique ID of the batch.[optional]
namestrThe name of the batch.[optional]
processed_statestrThe current state of the batch (e.g., submitted, materialized, completed).[optional]
requested_bystrThe ID of the user who requested the batch.[optional]
materialized_countintThe number of items materialized in the batch.[optional]
processed_countintThe number of items processed in the batch.[optional]
created_atdatetimeThe timestamp when the batch was created.[optional]
updated_atdatetimeThe timestamp when the batch was last updated.[optional]
}

Example

from sailpoint.v2024.models.sed_batch_record import SedBatchRecord

sed_batch_record = SedBatchRecord(
tenant_id='123e4567-e89b-12d3-a456-426614174000',
batch_id='016629d1-1d25-463f-97f3-0c6686846650',
name='Example Batch Name',
processed_state='submitted | materialized | completed | failed',
requested_by='987e6543-e21b-45d3-b123-123456789abc',
materialized_count=50,
processed_count=45,
created_at='2023-10-01T12:00Z',
updated_at='2023-10-02T15:30Z'
)

[Back to top]