Interface GeoServicesAuthenticationDescriptor

Credential-free authentication evidence retained by service discovery.

interface GeoServicesAuthenticationDescriptor {
    evidence: "metadata" | "none" | "http-status";
    requirement: GeoServicesAuthenticationRequirement;
    schemes: readonly string[];
    statusCode?: number;
    tokenServiceUrl?: string;
}

Properties

evidence: "metadata" | "none" | "http-status"
schemes: readonly string[]
statusCode?: number
tokenServiceUrl?: string