Skip to main content

RECIPIENT_ALLOWED_IP_RANGES

Applies to: check marked yes Databricks SQL check marked yes Databricks Runtime 10.4 LTS and above

INFORMATION_SCHEMA.RECIPIENT_ALLOWED_IP_RANGES lists allowed IP ranges for open recipients.

Information is displayed only for recipients the user has permission to interact with.

This is an extension to the SQL Standard Information Schema.

Definition

The RECIPIENT_ALLOWED_IP_RANGES relation contains the following columns:

NameData typeNullableDescription
RECIPIENT_NAMESTRINGNoName of the recipient.
ALLOWED_IP_RANGESTRINGNoAllowed IP range in IP address or CIDR format.

Constraints

The following constraints apply to the RECIPIENT_ALLOWED_IP_RANGES relation:

ClassNameColumn ListDescription
Foreign keyRANGES_RECIPIENTS_FKRECIPIENT_NAMEReferences RECIPIENTS

Examples

SQL
> SELECT recipient_name, allowed_ip_range
FROM information_schema.recipient_allowed_ip_ranges