Get credentials for a Snowflake connection
snowflake_credentials(params, role = NULL, spcs_endpoint = NULL, ...)a list of connection parameters from `snowflake_connection()“
a snowflake entity
a Snowpark Container Services ingress URL, formatted (*-accountname.snowflakecomputing.app)
Additional Snowflake connection parameters
A list of HTTP headers.
if (FALSE) { # has_a_default_connection()
# Obtain authentication headers for accessing Snowflake APIs
snowflake_credentials(
snowflake_connection()
)
}
if (FALSE) { # has_a_default_connection()
# If the application is in Snowpark Container Services,
# a different collection of headers are returned:
snowflake_credentials(
snowflake_connection(),
spcs_endpoint = "https://example-accountname.snowflakecomputing.app"
)
}