entitlements
Creates, updates, deletes, gets or lists an entitlements resource.
Overview
| Name | entitlements |
| Type | Resource |
| Id | cloudflare.tenants.entitlements |
Fields
The following fields are returned by SELECT queries:
- list
The request has succeeded.
| Name | Datatype | Description |
|---|---|---|
allow_add_subdomain | object | |
allow_auto_accept_invites | object | |
cname_setup_allowed | object | |
custom_entitlements | array | |
mhs_certificate_count | object | |
partial_setup_allowed | object |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | tenant_id | List of innate entitlements available for the Tenant. |
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 |
|---|---|---|
tenant_id | string |
SELECT examples
- list
List of innate entitlements available for the Tenant.
SELECT
allow_add_subdomain,
allow_auto_accept_invites,
cname_setup_allowed,
custom_entitlements,
mhs_certificate_count,
partial_setup_allowed
FROM cloudflare.tenants.entitlements
WHERE tenant_id = '{{ tenant_id }}' -- required
;