Skip to main content

updates

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

Overview

Nameupdates
TypeResource
Idcloudflare.zero_trust.updates

Fields

The following fields are returned by SELECT queries:

Get Access SCIM update logs response

NameDatatypeDescription
cf_resource_idstringThe unique Cloudflare-generated Id of the SCIM resource. (example: bd97ef8d-7986-43e3-9ee0-c25dda33e4b0)
idp_idstringThe unique Id of the IdP that has SCIM enabled. (example: df7e2w5f-02b7-4d9d-af26-8d1988fca630)
idp_resource_idstringThe IdP-generated Id of the SCIM resource. (example: all_employees)
resource_group_namestringThe display name of the SCIM Group resource if it exists. (example: ALL_EMPLOYEES)
error_descriptionstringThe error message which is generated when the status of the SCIM request is 'FAILURE'. (example: Invalid JSON body)
logged_atstring (date-time) (example: 2014-01-01T05:20:00.12345Z)
request_bodystringThe JSON-encoded string body of the SCIM request. (example: {}})
request_methodstringThe request method of the SCIM request. (example: DELETE)
resource_typestringThe resource type of the SCIM request. (example: GROUP)
resource_user_emailstring (email)The email address of the SCIM User resource if it exists. (example: john.smith@example.com)
statusstringThe status of the SCIM request. (example: FAILURE)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectaccount_idlimit, direction, since, until, idp_id, status, resource_type, request_method, resource_user_email, resource_group_name, cf_resource_id, idp_resource_id, page, per_pageLists 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.

NameDatatypeDescription
account_idstringThe Cloudflare account ID.
cf_resource_idstring
directionstring
idp_idarray
idp_resource_idstring
limitinteger
pageinteger
per_pageinteger
request_methodarray
resource_group_namestring
resource_typearray
resource_user_emailstring (email)
sincestring (date-time)
statusarray
untilstring (date-time)

SELECT examples

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 }}'
;