mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-13 07:26:26 +00:00
28 lines
677 B
TypeScript
28 lines
677 B
TypeScript
export interface HostRuleSearchResult {
|
|
authType?: string;
|
|
token?: string;
|
|
username?: string;
|
|
password?: string;
|
|
insecureRegistry?: boolean;
|
|
timeout?: number;
|
|
abortOnError?: boolean;
|
|
abortIgnoreStatusCodes?: number[];
|
|
enabled?: boolean;
|
|
enableHttp2?: boolean;
|
|
concurrentRequestLimit?: number;
|
|
maxRequestsPerSecond?: number;
|
|
|
|
dnsCache?: boolean;
|
|
keepAlive?: boolean;
|
|
artifactAuth?: string[] | null;
|
|
httpsCertificateAuthority?: string;
|
|
httpsPrivateKey?: string;
|
|
httpsCertificate?: string;
|
|
}
|
|
|
|
export interface HostRule extends HostRuleSearchResult {
|
|
encrypted?: HostRule;
|
|
hostType?: string;
|
|
matchHost?: string;
|
|
resolvedHost?: string;
|
|
}
|