Skip to main content

Streamconfigresponse

Properties

NameTypeDescriptionNotes
StreamIdStringUnique stream identifier.[optional]
IssStringIssuer (transmitter) URL.[optional]
AudStringAudience for the stream.[optional]
DeliveryDeliveryresponse[optional]
EventsSupported[]StringEvent types supported by the transmitter. Use CAEP event-type URIs in the form: https://schemas.openid.net/secevent/caep/event-type/{event-type} (e.g. session-revoked).[optional]
EventsRequested[]StringEvent types requested by the receiver. Use CAEP event-type URIs in the form: https://schemas.openid.net/secevent/caep/event-type/{event-type} (e.g. session revoke).[optional]
EventsDelivered[]StringEvent types currently being delivered (intersection of supported and requested).[optional]
DescriptionStringOptional stream description.[optional]
InactivityTimeoutInt32Inactivity timeout in seconds (optional).[optional]
MinVerificationIntervalInt32Minimum verification interval in seconds (optional).[optional]

Examples

  • Prepare the resource
$Streamconfigresponse = Initialize-Streamconfigresponse  -StreamId 550e8400-e29b-41d4-a716-446655440000 `
-Iss https://tenant.sailpoint.com `
-Aud https://receiver.example.com `
-Delivery null `
-EventsSupported ["https://schemas.openid.net/secevent/caep/event-type/{event-type}"] `
-EventsRequested ["https://schemas.openid.net/secevent/caep/event-type/{event-type}"] `
-EventsDelivered ["https://schemas.openid.net/secevent/caep/event-type/{event-type}"] `
-Description Production event stream `
-InactivityTimeout 3600 `
-MinVerificationInterval 300
  • Convert the resource to JSON
$Streamconfigresponse | ConvertTo-JSON

[Back to top]