Databricks SDK for JavaScript
    Preparing search index...

    Interface IngressNetworkPolicy_PrivateIngressRule

    An ingress rule is enforced when a request satisfies all specified attributes — including request origin, destination, and authentication.

    interface IngressNetworkPolicy_PrivateIngressRule {
        authentication?: IngressNetworkPolicy_Authentication;
        destination?: IngressNetworkPolicy_RequestDestination;
        label?: string;
        origin?: IngressNetworkPolicy_PrivateRequestOrigin;
    }
    Index

    Properties

    The authenticated identity the request must match. When unset, the rule matches all users and service principals. On the account-level network policy, scoping to specific identities is not currently supported, so this field must be unset (the rule matches all users and service principals).

    The destination the request must match — the resource being accessed, for example the workspace UI, workspace APIs, or account-level APIs. See RequestDestination.

    label?: string

    The label for this ingress rule.

    The origin the request must match — the private connectivity the request arrives through, for example a specific set of registered endpoints or any endpoint registered to the account. See PrivateRequestOrigin.