bundle_entitlement_values
Creates, updates, deletes, gets or lists a bundle_entitlement_values resource.
Overview
| Name | bundle_entitlement_values |
| Type | Resource |
| Id | okta.iam.bundle_entitlement_values |
Fields
The following fields are returned by SELECT queries:
- list_bundle_entitlement_values
| Name | Datatype | Description |
|---|---|---|
_links | | |
entitlementValues | array |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_bundle_entitlement_values | select | subdomain | after, limit | Lists all Entitlement Values specific to a Bundle Entitlement |
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_entitlement_values
Lists all Entitlement Values specific to a Bundle Entitlement
SELECT
_links,
entitlementValues
FROM okta.iam.bundle_entitlement_values
WHERE subdomain = '{{ subdomain }}' -- required
AND after = '{{ after }}'
AND limit = '{{ limit }}'
;