updates
Creates, updates, deletes, gets or lists a updates resource.
Overview
| Name | updates |
| Type | Resource |
| Id | cloudflare.zero_trust.updates |
Fields
The following fields are returned by SELECT queries:
- list
Get Access SCIM update logs response
| Name | Datatype | Description |
|---|---|---|
cf_resource_id | string | The unique Cloudflare-generated Id of the SCIM resource. (example: bd97ef8d-7986-43e3-9ee0-c25dda33e4b0) |
idp_id | string | The unique Id of the IdP that has SCIM enabled. (example: df7e2w5f-02b7-4d9d-af26-8d1988fca630) |
idp_resource_id | string | The IdP-generated Id of the SCIM resource. (example: all_employees) |
resource_group_name | string | The display name of the SCIM Group resource if it exists. (example: ALL_EMPLOYEES) |
error_description | string | The error message which is generated when the status of the SCIM request is 'FAILURE'. (example: Invalid JSON body) |
logged_at | string (date-time) | (example: 2014-01-01T05:20:00.12345Z) |
request_body | string | The JSON-encoded string body of the SCIM request. (example: {}}) |
request_method | string | The request method of the SCIM request. (example: DELETE) |
resource_type | string | The resource type of the SCIM request. (example: GROUP) |
resource_user_email | string (email) | The email address of the SCIM User resource if it exists. (example: john.smith@example.com) |
status | string | The status of the SCIM request. (example: FAILURE) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | account_id | limit, direction, since, until, idp_id, status, resource_type, request_method, resource_user_email, resource_group_name, cf_resource_id, idp_resource_id, page, per_page | Lists Access SCIM update logs that maintain a record of updates made to User and Group resources synced to Cloudflare via the System for Cross-domain Identity Management (SCIM). |
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 |
|---|---|---|
account_id | string | The Cloudflare account ID. |
cf_resource_id | string | |
direction | string | |
idp_id | array | |
idp_resource_id | string | |
limit | integer | |
page | integer | |
per_page | integer | |
request_method | array | |
resource_group_name | string | |
resource_type | array | |
resource_user_email | string (email) | |
since | string (date-time) | |
status | array | |
until | string (date-time) |
SELECT examples
- list
Lists Access SCIM update logs that maintain a record of updates made to User and Group resources synced to Cloudflare via the System for Cross-domain Identity Management (SCIM).
SELECT
cf_resource_id,
idp_id,
idp_resource_id,
resource_group_name,
error_description,
logged_at,
request_body,
request_method,
resource_type,
resource_user_email,
status
FROM cloudflare.zero_trust.updates
WHERE account_id = '{{ account_id }}' -- required
AND limit = '{{ limit }}'
AND direction = '{{ direction }}'
AND since = '{{ since }}'
AND until = '{{ until }}'
AND idp_id = '{{ idp_id }}'
AND status = '{{ status }}'
AND resource_type = '{{ resource_type }}'
AND request_method = '{{ request_method }}'
AND resource_user_email = '{{ resource_user_email }}'
AND resource_group_name = '{{ resource_group_name }}'
AND cf_resource_id = '{{ cf_resource_id }}'
AND idp_resource_id = '{{ idp_resource_id }}'
AND page = '{{ page }}'
AND per_page = '{{ per_page }}'
;