bundle_entitlements
Creates, updates, deletes, gets or lists a bundle_entitlements resource.
Overview
| Name | bundle_entitlements |
| Type | Resource |
| Id | okta.iam.bundle_entitlements |
Fields
The following fields are returned by SELECT queries:
- list_bundle_entitlements
| Name | Datatype | Description |
|---|---|---|
_links | object | Specifies link relations (see Web Linking) available using the JSON Hypertext Application Language specification |
entitlements | array |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_bundle_entitlements | select | subdomain | after, limit | Lists 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.
| 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) |
after | string | The 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. |
limit | integer | A limit on the number of objects to return |
SELECT examples
- list_bundle_entitlements
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 }}'
;