Skip to main content

Streamstatusresponse

Stream status returned by GET/POST /ssf/streams/status.

Properties

NameTypeDescriptionNotes
stream_idstrStream identifier.[optional]
statusEnum [ 'enabled', 'paused', 'disabled' ]Operational status of the stream (enabled, paused, or disabled).[optional]
reasonstrOptional reason for the current status (e.g. set when status is updated).[optional]
}

Example

from sailpoint.shared_signals_framework_ssf.models.streamstatusresponse import Streamstatusresponse

streamstatusresponse = Streamstatusresponse(
stream_id='550e8400-e29b-41d4-a716-446655440000',
status='enabled',
reason=''
)

[Back to top]