Skip to main content

resource_types

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

Overview

Nameresource_types
TypeResource
Idcloudflare.iam.resource_types

Fields

The following fields are returned by SELECT queries:

Get SCIM Resource Type response

NameDatatypeDescription
contentsstring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectaccount_id, resource_type_idReturns a single SCIM resource type by ID (RFC 7643 Section 6). Valid IDs are User and Group.
listselectaccount_idReturns the list of SCIM resource types supported by the Cloudflare SCIM service (RFC 7643 Section 6, RFC 7644 Section 4). Clients use this to discover available resource categories (e.g. Users, Groups) and their associated schemas. Query parameters are not supported on this endpoint.

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
account_idstringThe Cloudflare account ID.
resource_type_idstring

SELECT examples

Returns a single SCIM resource type by ID (RFC 7643 Section 6). Valid IDs are User and Group.

SELECT
contents
FROM cloudflare.iam.resource_types
WHERE account_id = '{{ account_id }}' -- required
AND resource_type_id = '{{ resource_type_id }}' -- required
;