Skip to main content

feature_dependents

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

Overview

Namefeature_dependents
TypeResource
Idokta.features.feature_dependents

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringUnique identifier for this feature
namestringName of the feature
_linksobjectSpecifies link relations (see Web Linking) available using the JSON Hypertext Application Language specification. This object is used for dynamic discovery of related resources and lifecycle operations.
descriptionstringBrief description of the feature and what it provides
stageobjectCurrent release cycle stage of a feature If a feature's stage value is EA, the state is null and not returned. If the value is BETA, the state is OPEN or CLOSED depending on whether the BETA feature is manageable. > Note: If a feature's stage is OPEN BETA, you can update it only in Preview cells. If a feature's stage is CLOSED BETA, you can disable it only in Preview cells.
statusstringSetting status
typestringType of feature

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_feature_dependentsselectsubdomainLists all feature dependents for the specified feature.

A feature's dependents are the features that need to be disabled in order for the feature itself to be disabled.

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
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

Lists all feature dependents for the specified feature.

A feature's dependents are the features that need to be disabled in order for the feature itself to be disabled.

SELECT
id,
name,
_links,
description,
stage,
status,
type
FROM okta.features.feature_dependents
WHERE subdomain = '{{ subdomain }}' -- required;