File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ import { RequestSerializer } from "./marshaller";
66import { HttpEndpoint , HttpHandler } from "./http" ;
77import { Command } from "./command" ;
88import { MetadataBearer } from "./response" ;
9+ import { Credentials } from "./credentials" ;
10+ import { Hash , HashConstructor } from "./crypto" ;
911
1012export interface ConfigurationPropertyDefinition <
1113 InputType ,
@@ -81,6 +83,7 @@ export interface ClientResolvedConfigurationBase<
8183 OutputTypes extends object ,
8284 StreamType
8385> {
86+ credentials ?: Provider < Credentials > ;
8487 profile ?: string ;
8588 maxRedirects ?: number ;
8689 maxRetries ?: number ;
@@ -99,6 +102,8 @@ export interface ClientResolvedConfigurationBase<
99102 _user_injected_http_handler ?: boolean ;
100103 httpHandler ?: HttpHandler < StreamType > ;
101104 handler ?: Terminalware < OutputTypes , StreamType > ;
105+ md5 ?: { new ( ) : Hash } ;
106+ sha256 ?: HashConstructor ;
102107}
103108
104109/**
You can’t perform that action at this time.
0 commit comments