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";
6
6
import { HttpEndpoint , HttpHandler } from "./http" ;
7
7
import { Command } from "./command" ;
8
8
import { MetadataBearer } from "./response" ;
9
+ import { Credentials } from "./credentials" ;
10
+ import { Hash , HashConstructor } from "./crypto" ;
9
11
10
12
export interface ConfigurationPropertyDefinition <
11
13
InputType ,
@@ -81,6 +83,7 @@ export interface ClientResolvedConfigurationBase<
81
83
OutputTypes extends object ,
82
84
StreamType
83
85
> {
86
+ credentials ?: Provider < Credentials > ;
84
87
profile ?: string ;
85
88
maxRedirects ?: number ;
86
89
maxRetries ?: number ;
@@ -99,6 +102,8 @@ export interface ClientResolvedConfigurationBase<
99
102
_user_injected_http_handler ?: boolean ;
100
103
httpHandler ?: HttpHandler < StreamType > ;
101
104
handler ?: Terminalware < OutputTypes , StreamType > ;
105
+ md5 ?: { new ( ) : Hash } ;
106
+ sha256 ?: HashConstructor ;
102
107
}
103
108
104
109
/**
You can’t perform that action at this time.
0 commit comments