Databricks SDK for JavaScript
    Preparing search index...

    Interface IngressNetworkPolicy_PrivateRequestOrigin

    The origin of a private access request, identified by the endpoint through which the request arrives.

    interface IngressNetworkPolicy_PrivateRequestOrigin {
        source?:
            | { $case: "endpoints"; endpoints: IngressNetworkPolicy_Endpoints }
            | { $case: "allRegisteredEndpoints"; allRegisteredEndpoints: boolean }
            | {
                $case: "azureWorkspacePrivateLink";
                azureWorkspacePrivateLink: boolean;
            }
            | { $case: "allPrivateAccess"; allPrivateAccess: boolean };
    }
    Index

    Properties

    Properties

    source?:
        | { $case: "endpoints"; endpoints: IngressNetworkPolicy_Endpoints }
        | { $case: "allRegisteredEndpoints"; allRegisteredEndpoints: boolean }
        | {
            $case: "azureWorkspacePrivateLink";
            azureWorkspacePrivateLink: boolean;
        }
        | { $case: "allPrivateAccess"; allPrivateAccess: boolean }

    Type Declaration

    • { $case: "endpoints"; endpoints: IngressNetworkPolicy_Endpoints }
    • { $case: "allRegisteredEndpoints"; allRegisteredEndpoints: boolean }
      • $case: "allRegisteredEndpoints"
      • allRegisteredEndpoints: boolean

        Matches requests arriving through any endpoint registered to the account. Must be set to true when specified.

    • { $case: "azureWorkspacePrivateLink"; azureWorkspacePrivateLink: boolean }
      • $case: "azureWorkspacePrivateLink"
      • azureWorkspacePrivateLink: boolean

        Matches requests arriving through the workspace's Azure Private Link (ui-api) endpoints. Can only be used in deny rules of workspace-level network policies. Must be set to true when specified.

    • { $case: "allPrivateAccess"; allPrivateAccess: boolean }
      • $case: "allPrivateAccess"
      • allPrivateAccess: boolean

        Matches requests arriving over any private connectivity, including registered endpoints and the workspace's Azure Private Link (ui-api) endpoints. Can only be used in deny rules of workspace-level network policies. Must be set to true when specified.