Skip to main content

feature_dependencies

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

Overview

Namefeature_dependencies
TypeResource
Idokta.features.feature_dependencies

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_dependenciesselectsubdomainLists all feature dependencies for a specified feature.

A feature's dependencies are the features that it requires to be enabled in order for itself to be enabled.

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 dependencies for a specified feature.

A feature's dependencies are the features that it requires to be enabled in order for itself to be enabled.

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