nerdexam
Snowflake

COF-C02 · Question #533

How can an administrator check for updates (for example, SCIM API requests) sent to Snowflake by the identity provider?

The correct answer is D. REST EVENT HISTORY. To monitor updates, such as SCIM API requests sent to Snowflake by the identity provider, an administrator can use the REST EVENT HISTORY feature. This feature allows administrators to query historical data about REST API calls made to Snowflake, including those related to user…

Account Access and Security

Question

How can an administrator check for updates (for example, SCIM API requests) sent to Snowflake by the identity provider?

Options

  • AACCESS_HISTORY
  • BLOAD_HISTORY
  • CQUERY_HISTORY
  • DREST EVENT HISTORY

How the community answered

(20 responses)
  • A
    10% (2)
  • B
    5% (1)
  • D
    85% (17)

Explanation

To monitor updates, such as SCIM API requests sent to Snowflake by the identity provider, an administrator can use the REST EVENT HISTORY feature. This feature allows administrators to query historical data about REST API calls made to Snowflake, including those related to user and role management through SCIM (System for Cross-domain Identity Management). The REST EVENT HISTORY table function returns information about REST API calls made over a specified period. It is particularly useful for auditing and monitoring purposes, especially when integrating Snowflake with third-party identity providers that use SCIM for automated user provisioning and deprovisioning. An example query to check for SCIM API requests might look like this: TABLE(information_schema.rest_event_history(date_range_start=>dateadd('hours',- 1,current_timestamp()))) WHERE request_type = 'SCIM'; This query returns details on SCIM API requests made in the last hour, including the request type, the identity provider's details, and the outcome of each request.

Topics

#SCIM#Identity Management#API Monitoring#Account Auditing

Community Discussion

No community discussion yet for this question.

Full COF-C02 Practice