GetStreamV1200Response
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| StreamId | String | Unique stream identifier. | [optional] |
| Iss | String | Issuer (transmitter) URL. | [optional] |
| Aud | String | Audience for the stream. | [optional] |
| Delivery | Deliveryresponse | [optional] | |
| EventsSupported | []String | Event 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 | []String | Event 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 | []String | Event types currently being delivered (intersection of supported and requested). | [optional] |
| Description | String | Optional stream description. | [optional] |
| InactivityTimeout | Int32 | Inactivity timeout in seconds (optional). | [optional] |
| MinVerificationInterval | Int32 | Minimum verification interval in seconds (optional). | [optional] |
Examples
- Prepare the resource
$GetStreamV1200Response = Initialize-GetStreamV1200Response -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
$GetStreamV1200Response | ConvertTo-JSON