interface Auth {
    apikey?: AuthAttribute[];
    awsv4?: AuthAttribute[];
    basic?: AuthAttribute[];
    bearer?: AuthAttribute[];
    digest?: AuthAttribute[];
    edgegrid?: AuthAttribute[];
    hawk?: AuthAttribute[];
    noauth?: unknown;
    ntlm?: AuthAttribute[];
    oauth1?: AuthAttribute[];
    oauth2?: AuthAttribute[];
    type: string;
    [key: string]: unknown;
}

Indexable

[key: string]: unknown

Properties

apikey?: AuthAttribute[]
awsv4?: AuthAttribute[]
basic?: AuthAttribute[]
bearer?: AuthAttribute[]
digest?: AuthAttribute[]
edgegrid?: AuthAttribute[]
hawk?: AuthAttribute[]
noauth?: unknown
ntlm?: AuthAttribute[]
oauth1?: AuthAttribute[]
oauth2?: AuthAttribute[]
type: string