Skip to main content

bundle_entitlements

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

Overview

Namebundle_entitlements
TypeResource
Idokta.iam.bundle_entitlements

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
_linksobjectSpecifies link relations (see Web Linking) available using the JSON Hypertext Application Language specification
entitlementsarray

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_bundle_entitlementsselectsubdomainafter, limitLists all Entitlements specific to a Governance Bundle

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)
afterstringThe cursor to use for pagination. It is an opaque string that specifies your current location in the list and is obtained from the Link response header. See Pagination.
limitintegerA limit on the number of objects to return

SELECT examples

Lists all Entitlements specific to a Governance Bundle

SELECT
_links,
entitlements
FROM okta.iam.bundle_entitlements
WHERE subdomain = '{{ subdomain }}' -- required
AND after = '{{ after }}'
AND limit = '{{ limit }}'
;