Skip to main content

ssf_stream_status

Creates, updates, deletes, gets or lists a ssf_stream_status resource.

Overview

Namessf_stream_status
TypeResource
Idokta.ssf.ssf_stream_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
stream_idstringThe ID of the SSF Stream configuration. This corresponds to the value in the query parameter of the request. (example: esc1k235GIIztAuGK0g5)
statusstringThe status of the SSF Stream configuration

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_ssf_stream_statusselectstream_id, subdomainRetrieves the status of an SSF Stream. The status indicates whether the transmitter is able to transmit events over the stream.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
stream_idstringThe ID of the specified SSF Stream configuration (example: esc1k235GIIztAuGK0g5)
subdomainstringThe domain of your organization. This can be a provided subdomain of an official okta domain (okta.com, oktapreview.com, etc) or one of your configured custom domains. (default: my-org)

SELECT examples

Retrieves the status of an SSF Stream. The status indicates whether the transmitter is able to transmit events over the stream.

SELECT
stream_id,
status
FROM okta.ssf.ssf_stream_status
WHERE stream_id = '{{ stream_id }}' -- required
AND subdomain = '{{ subdomain }}' -- required;