An Architect is using SnowCD to investigate a connectivity issue. Which system function will provide a list of endpoints that the network must be able to access to use a specific Snowflake account, leveraging private connectivity?
Select an option, then click Submit answer.
Reference / correct answer:
SYSTEM$ALLOWLIST_PRIVATELINK()
Most accepted answer: D. SYSTEM$ALLOWLIST_PRIVATELINK()
Community votes: D=1
Selected Answer: D When you use SnowCD (Snowflake Connectivity Diagnostic tool) to troubleshoot network issues, you first need to generate a JSON file containing all the required hostnames and ports your network needs to reach. Snowflake has two distinct functions to generate this list depending on your connection type: If you are using standard, public internet connectivity, you use SYSTEM$ALLOWLIST(). Because the scenario explicitly states the account is leveraging private connectivity (like AWS PrivateLink or Azure Private Link), you must use SYSTEM$ALLOWLIST_PRIVATELINK(). This function returns the specific internal endpoints and OCSP URLs required for the private connection. upvoted 1 times