Skip to main content

Updatestreamconfigresponse

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]
UpdatedAtSystem.DateTimeTimestamp of the last configuration update.[optional]

Examples

  • Prepare the resource
$Updatestreamconfigresponse = Initialize-Updatestreamconfigresponse  -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 `
-UpdatedAt 2025-02-11T14:30Z
  • Convert the resource to JSON
$Updatestreamconfigresponse | ConvertTo-JSON

[Back to top]