feature_dependencies
Creates, updates, deletes, gets or lists a feature_dependencies
resource.
Overview
Name | feature_dependencies |
Type | Resource |
Id | okta.features.feature_dependencies |
Fields
The following fields are returned by SELECT
queries:
- list_feature_dependencies
Name | Datatype | Description |
---|---|---|
id | string | Unique identifier for this feature |
name | string | Name of the feature |
_links | object | Specifies 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. |
description | string | Brief description of the feature and what it provides |
stage | object | Current 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. |
status | string | Setting status |
type | string | Type of feature |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list_feature_dependencies | select | subdomain | 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. |
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.
Name | Datatype | Description |
---|---|---|
subdomain | string | The 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
- list_feature_dependencies
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;