@aws-sdk/client-codecatalyst 3.1110.0 → 3.1112.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1 -1
- package/dist-types/runtimeConfig.browser.d.ts +36 -36
- package/dist-types/runtimeConfig.d.ts +28 -28
- package/dist-types/runtimeConfig.native.d.ts +35 -35
- package/dist-types/runtimeConfig.shared.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +49 -51
- package/dist-types/ts3.4/runtimeConfig.d.ts +50 -50
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +53 -55
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +3 -3
- package/package.json +5 -5
package/dist-cjs/index.js
CHANGED
|
@@ -4,51 +4,51 @@ import type { CodeCatalystClientConfig } from "./CodeCatalystClient";
|
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
7
|
-
|
|
8
|
-
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
|
|
9
|
-
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
11
|
-
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
12
|
-
region: string | import("@smithy/types").Provider<any>;
|
|
13
|
-
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
14
|
-
retryMode: string | import("@smithy/types").Provider<string>;
|
|
15
|
-
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
16
|
-
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
17
|
-
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
18
|
-
cacheMiddleware?: boolean | undefined;
|
|
19
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
20
|
-
protocolSettings: {
|
|
21
|
-
defaultNamespace?: string;
|
|
22
|
-
[setting: string]: unknown;
|
|
23
|
-
};
|
|
24
|
-
apiVersion: string;
|
|
25
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
26
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
27
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
28
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
29
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
30
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
31
|
-
disableHostPrefix: boolean;
|
|
32
|
-
serviceId: string;
|
|
33
|
-
profile?: string;
|
|
34
|
-
logger: import("@smithy/types").Logger;
|
|
35
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
7
|
+
cacheMiddleware?: boolean;
|
|
36
8
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
37
9
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
38
|
-
|
|
39
|
-
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
40
|
-
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
41
|
-
logger?: import("@smithy/types").Logger;
|
|
42
|
-
}) => import("@smithy/types").EndpointV2;
|
|
10
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<string> | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
43
11
|
tls?: boolean;
|
|
44
12
|
ignoreConfiguredEndpointUrls?: boolean;
|
|
45
13
|
serviceConfiguredEndpoint?: never;
|
|
14
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
46
15
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
16
|
+
token?: import("@smithy/types").TokenIdentity | import("@smithy/types").TokenIdentityProvider;
|
|
17
|
+
apiVersion: string;
|
|
18
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
19
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
20
|
+
disableHostPrefix: boolean;
|
|
21
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
22
|
+
logger?: import("@smithy/types").Logger;
|
|
23
|
+
}) => import("@smithy/types").EndpointV2;
|
|
24
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
25
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeCatalystHttpAuthSchemeProvider;
|
|
47
26
|
httpAuthSchemes: {
|
|
48
27
|
schemeId: string;
|
|
49
28
|
identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
|
|
50
29
|
signer: import("@smithy/core").HttpBearerAuthSigner;
|
|
51
30
|
}[];
|
|
52
|
-
|
|
53
|
-
|
|
31
|
+
logger: import("@smithy/types").Logger;
|
|
32
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
33
|
+
protocolSettings: {
|
|
34
|
+
[setting: string]: unknown;
|
|
35
|
+
defaultNamespace?: string;
|
|
36
|
+
};
|
|
37
|
+
serviceId: string;
|
|
38
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
39
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
40
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
41
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
42
|
+
profile?: string;
|
|
43
|
+
runtime: string;
|
|
44
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
|
|
45
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
46
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
47
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
48
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
49
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
50
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
51
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
52
|
+
useDualstackEndpoint: boolean | (() => Promise<boolean>);
|
|
53
|
+
useFipsEndpoint: boolean | (() => Promise<boolean>);
|
|
54
54
|
};
|
|
@@ -6,6 +6,34 @@ import type { CodeCatalystClientConfig } from "./CodeCatalystClient";
|
|
|
6
6
|
* @internal
|
|
7
7
|
*/
|
|
8
8
|
export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
9
|
+
cacheMiddleware?: boolean;
|
|
10
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
11
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<string> | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
12
|
+
tls?: boolean;
|
|
13
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
14
|
+
serviceConfiguredEndpoint?: never;
|
|
15
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
16
|
+
token?: import("@smithy/types").TokenIdentity | import("@smithy/types").TokenIdentityProvider;
|
|
17
|
+
apiVersion: string;
|
|
18
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
19
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
20
|
+
disableHostPrefix: boolean;
|
|
21
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
22
|
+
logger?: import("@smithy/types").Logger;
|
|
23
|
+
}) => import("@smithy/types").EndpointV2;
|
|
24
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
25
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeCatalystHttpAuthSchemeProvider;
|
|
26
|
+
logger: import("@smithy/types").Logger;
|
|
27
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
28
|
+
protocolSettings: {
|
|
29
|
+
[setting: string]: unknown;
|
|
30
|
+
defaultNamespace?: string;
|
|
31
|
+
};
|
|
32
|
+
serviceId: string;
|
|
33
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
34
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
35
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
36
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
9
37
|
runtime: string;
|
|
10
38
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
|
|
11
39
|
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
@@ -24,33 +52,5 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
|
24
52
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
25
53
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
26
54
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
27
|
-
cacheMiddleware?: boolean | undefined;
|
|
28
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
29
|
-
protocolSettings: {
|
|
30
|
-
defaultNamespace?: string;
|
|
31
|
-
[setting: string]: unknown;
|
|
32
|
-
};
|
|
33
|
-
apiVersion: string;
|
|
34
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
35
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
36
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
37
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
38
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
39
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
40
|
-
disableHostPrefix: boolean;
|
|
41
|
-
serviceId: string;
|
|
42
55
|
profile?: string;
|
|
43
|
-
logger: import("@smithy/types").Logger;
|
|
44
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
45
|
-
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
46
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
47
|
-
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
48
|
-
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
49
|
-
logger?: import("@smithy/types").Logger;
|
|
50
|
-
}) => import("@smithy/types").EndpointV2;
|
|
51
|
-
tls?: boolean;
|
|
52
|
-
ignoreConfiguredEndpointUrls?: boolean;
|
|
53
|
-
serviceConfiguredEndpoint?: never;
|
|
54
|
-
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeCatalystHttpAuthSchemeProvider;
|
|
55
|
-
token?: import("@smithy/types").TokenIdentity | import("@smithy/types").TokenIdentityProvider;
|
|
56
56
|
};
|
|
@@ -3,51 +3,51 @@ import type { CodeCatalystClientConfig } from "./CodeCatalystClient";
|
|
|
3
3
|
* @internal
|
|
4
4
|
*/
|
|
5
5
|
export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
6
|
-
runtime: string;
|
|
7
|
-
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
8
6
|
cacheMiddleware?: boolean;
|
|
9
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
10
|
-
protocolSettings: {
|
|
11
|
-
defaultNamespace?: string;
|
|
12
|
-
[setting: string]: unknown;
|
|
13
|
-
};
|
|
14
|
-
apiVersion: string;
|
|
15
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
16
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
17
|
-
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
18
|
-
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
19
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
20
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
21
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
22
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
23
|
-
disableHostPrefix: boolean;
|
|
24
|
-
serviceId: string;
|
|
25
|
-
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
26
|
-
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
27
|
-
region: string | import("@smithy/types").Provider<any>;
|
|
28
|
-
profile?: string;
|
|
29
|
-
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
30
|
-
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
31
|
-
retryMode: string | import("@smithy/types").Provider<string>;
|
|
32
|
-
logger: import("@smithy/types").Logger;
|
|
33
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
-
defaultsMode: import("@smithy/core/client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
35
7
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
36
8
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
37
|
-
|
|
38
|
-
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
39
|
-
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
40
|
-
logger?: import("@smithy/types").Logger;
|
|
41
|
-
}) => import("@smithy/types").EndpointV2;
|
|
9
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<string> | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
42
10
|
tls?: boolean;
|
|
43
11
|
ignoreConfiguredEndpointUrls?: boolean;
|
|
44
12
|
serviceConfiguredEndpoint?: never;
|
|
13
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
45
14
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
15
|
+
token?: import("@smithy/types").TokenIdentity | import("@smithy/types").TokenIdentityProvider;
|
|
16
|
+
apiVersion: string;
|
|
17
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
18
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
19
|
+
disableHostPrefix: boolean;
|
|
20
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
21
|
+
logger?: import("@smithy/types").Logger;
|
|
22
|
+
}) => import("@smithy/types").EndpointV2;
|
|
23
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
24
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeCatalystHttpAuthSchemeProvider;
|
|
46
25
|
httpAuthSchemes: {
|
|
47
26
|
schemeId: string;
|
|
48
27
|
identityProvider: (ipc: import("@smithy/types").IdentityProviderConfig) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
|
|
49
28
|
signer: import("@smithy/core").HttpBearerAuthSigner;
|
|
50
29
|
}[];
|
|
51
|
-
|
|
52
|
-
|
|
30
|
+
logger: import("@smithy/types").Logger;
|
|
31
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
32
|
+
protocolSettings: {
|
|
33
|
+
[setting: string]: unknown;
|
|
34
|
+
defaultNamespace?: string;
|
|
35
|
+
};
|
|
36
|
+
serviceId: string;
|
|
37
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
38
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
39
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
40
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
41
|
+
profile?: string;
|
|
42
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode> | import("@smithy/core/client").DefaultsMode;
|
|
43
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
44
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
45
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
46
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
47
|
+
requestHandler: import("@smithy/fetch-http-handler").FetchHttpHandler | import("@smithy/types").FetchHttpHandlerOptions | import("@smithy/types").NodeHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any>;
|
|
48
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
49
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
50
|
+
useDualstackEndpoint: boolean | (() => Promise<boolean>);
|
|
51
|
+
useFipsEndpoint: boolean | (() => Promise<boolean>);
|
|
52
|
+
runtime: string;
|
|
53
53
|
};
|
|
@@ -10,7 +10,7 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
|
10
10
|
base64Decoder: import("@smithy/types").Decoder;
|
|
11
11
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
12
12
|
disableHostPrefix: boolean;
|
|
13
|
-
endpointProvider: (
|
|
13
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
14
14
|
logger?: import("@smithy/types").Logger;
|
|
15
15
|
}) => import("@smithy/types").EndpointV2;
|
|
16
16
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
@@ -21,7 +21,7 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
|
21
21
|
signer: HttpBearerAuthSigner;
|
|
22
22
|
}[];
|
|
23
23
|
logger: import("@smithy/types").Logger;
|
|
24
|
-
protocol: import("@smithy/types")
|
|
24
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof AwsRestJsonProtocol;
|
|
25
25
|
protocolSettings: {
|
|
26
26
|
[setting: string]: unknown;
|
|
27
27
|
defaultNamespace?: string;
|
|
@@ -1,76 +1,44 @@
|
|
|
1
1
|
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
2
|
import { CodeCatalystClientConfig } from "./CodeCatalystClient";
|
|
3
3
|
export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
4
|
-
|
|
5
|
-
defaultsMode: import("@smithy/types").Provider<
|
|
6
|
-
import("@smithy/core/client").ResolvedDefaultsMode
|
|
7
|
-
>;
|
|
8
|
-
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
defaultUserAgentProvider: (
|
|
10
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
11
|
-
) => Promise<import("@smithy/types").UserAgent>;
|
|
12
|
-
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
|
-
region: string | import("@smithy/types").Provider<any>;
|
|
14
|
-
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
15
|
-
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
|
-
streamCollector: (
|
|
17
|
-
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
18
|
-
) => Promise<Uint8Array>;
|
|
19
|
-
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
20
|
-
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
21
|
-
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
22
|
-
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
23
|
-
cacheMiddleware?: boolean | undefined;
|
|
24
|
-
protocol:
|
|
25
|
-
| import("@smithy/types").ClientProtocol<any, any>
|
|
26
|
-
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
27
|
-
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
28
|
-
protocolSettings: {
|
|
29
|
-
defaultNamespace?: string;
|
|
30
|
-
[setting: string]: unknown;
|
|
31
|
-
};
|
|
32
|
-
apiVersion: string;
|
|
33
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
34
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
35
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
36
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
37
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
38
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
39
|
-
disableHostPrefix: boolean;
|
|
40
|
-
serviceId: string;
|
|
41
|
-
profile?: string;
|
|
42
|
-
logger: import("@smithy/types").Logger;
|
|
43
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
4
|
+
cacheMiddleware?: boolean;
|
|
44
5
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
45
6
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
46
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
47
7
|
endpoint?:
|
|
48
8
|
| ((
|
|
49
9
|
| string
|
|
50
10
|
| import("@smithy/types").Endpoint
|
|
51
|
-
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
52
11
|
| import("@smithy/types").EndpointV2
|
|
12
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
53
13
|
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
54
14
|
) &
|
|
55
15
|
(
|
|
56
16
|
| string
|
|
57
|
-
| import("@smithy/types").Provider<string>
|
|
58
17
|
| import("@smithy/types").Endpoint
|
|
59
|
-
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
60
18
|
| import("@smithy/types").EndpointV2
|
|
19
|
+
| import("@smithy/types").Provider<string>
|
|
20
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
61
21
|
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
62
22
|
))
|
|
63
23
|
| undefined;
|
|
24
|
+
tls?: boolean;
|
|
25
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
26
|
+
serviceConfiguredEndpoint?: never;
|
|
27
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
28
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
29
|
+
token?: import("@smithy/types").TokenIdentity | import("@smithy/types").TokenIdentityProvider;
|
|
30
|
+
apiVersion: string;
|
|
31
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
32
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
33
|
+
disableHostPrefix: boolean;
|
|
64
34
|
endpointProvider: (
|
|
65
|
-
|
|
35
|
+
params: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
66
36
|
context?: {
|
|
67
37
|
logger?: import("@smithy/types").Logger;
|
|
68
38
|
},
|
|
69
39
|
) => import("@smithy/types").EndpointV2;
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
serviceConfiguredEndpoint?: never;
|
|
73
|
-
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
40
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeCatalystHttpAuthSchemeProvider;
|
|
74
42
|
httpAuthSchemes: {
|
|
75
43
|
schemeId: string;
|
|
76
44
|
identityProvider: (
|
|
@@ -78,6 +46,36 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
|
78
46
|
) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
|
|
79
47
|
signer: import("@smithy/core").HttpBearerAuthSigner;
|
|
80
48
|
}[];
|
|
81
|
-
|
|
82
|
-
|
|
49
|
+
logger: import("@smithy/types").Logger;
|
|
50
|
+
protocol:
|
|
51
|
+
| import("@smithy/types").$ClientProtocol<any, any>
|
|
52
|
+
| import("@smithy/types").$ClientProtocolCtor<any, any>
|
|
53
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
54
|
+
protocolSettings: {
|
|
55
|
+
[setting: string]: unknown;
|
|
56
|
+
defaultNamespace?: string;
|
|
57
|
+
};
|
|
58
|
+
serviceId: string;
|
|
59
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
60
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
61
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
62
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
63
|
+
profile?: string;
|
|
64
|
+
runtime: string;
|
|
65
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
66
|
+
import("@smithy/core/client").ResolvedDefaultsMode
|
|
67
|
+
>;
|
|
68
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
69
|
+
defaultUserAgentProvider: (
|
|
70
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
71
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
72
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
73
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
74
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
75
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
76
|
+
streamCollector: (
|
|
77
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
78
|
+
) => Promise<Uint8Array>;
|
|
79
|
+
useDualstackEndpoint: boolean | (() => Promise<boolean>);
|
|
80
|
+
useFipsEndpoint: boolean | (() => Promise<boolean>);
|
|
83
81
|
};
|
|
@@ -3,6 +3,56 @@ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
|
3
3
|
import { IdentityProviderConfig } from "@smithy/types";
|
|
4
4
|
import { CodeCatalystClientConfig } from "./CodeCatalystClient";
|
|
5
5
|
export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
6
|
+
cacheMiddleware?: boolean;
|
|
7
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
8
|
+
endpoint?:
|
|
9
|
+
| ((
|
|
10
|
+
| string
|
|
11
|
+
| import("@smithy/types").Endpoint
|
|
12
|
+
| import("@smithy/types").EndpointV2
|
|
13
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
14
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
15
|
+
) &
|
|
16
|
+
(
|
|
17
|
+
| string
|
|
18
|
+
| import("@smithy/types").Endpoint
|
|
19
|
+
| import("@smithy/types").EndpointV2
|
|
20
|
+
| import("@smithy/types").Provider<string>
|
|
21
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
22
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
23
|
+
))
|
|
24
|
+
| undefined;
|
|
25
|
+
tls?: boolean;
|
|
26
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
27
|
+
serviceConfiguredEndpoint?: never;
|
|
28
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
29
|
+
token?: import("@smithy/types").TokenIdentity | import("@smithy/types").TokenIdentityProvider;
|
|
30
|
+
apiVersion: string;
|
|
31
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
32
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
33
|
+
disableHostPrefix: boolean;
|
|
34
|
+
endpointProvider: (
|
|
35
|
+
params: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
36
|
+
context?: {
|
|
37
|
+
logger?: import("@smithy/types").Logger;
|
|
38
|
+
},
|
|
39
|
+
) => import("@smithy/types").EndpointV2;
|
|
40
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeCatalystHttpAuthSchemeProvider;
|
|
42
|
+
logger: import("@smithy/types").Logger;
|
|
43
|
+
protocol:
|
|
44
|
+
| import("@smithy/types").$ClientProtocol<any, any>
|
|
45
|
+
| import("@smithy/types").$ClientProtocolCtor<any, any>
|
|
46
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
47
|
+
protocolSettings: {
|
|
48
|
+
[setting: string]: unknown;
|
|
49
|
+
defaultNamespace?: string;
|
|
50
|
+
};
|
|
51
|
+
serviceId: string;
|
|
52
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
53
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
54
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
55
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
6
56
|
runtime: string;
|
|
7
57
|
defaultsMode: import("@smithy/types").Provider<
|
|
8
58
|
import("@smithy/core/client").ResolvedDefaultsMode
|
|
@@ -31,55 +81,5 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
|
31
81
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
32
82
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
33
83
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
34
|
-
cacheMiddleware?: boolean | undefined;
|
|
35
|
-
protocol:
|
|
36
|
-
| import("@smithy/types").ClientProtocol<any, any>
|
|
37
|
-
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
38
|
-
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
39
|
-
protocolSettings: {
|
|
40
|
-
defaultNamespace?: string;
|
|
41
|
-
[setting: string]: unknown;
|
|
42
|
-
};
|
|
43
|
-
apiVersion: string;
|
|
44
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
45
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
46
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
47
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
48
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
49
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
50
|
-
disableHostPrefix: boolean;
|
|
51
|
-
serviceId: string;
|
|
52
84
|
profile?: string;
|
|
53
|
-
logger: import("@smithy/types").Logger;
|
|
54
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
|
-
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
57
|
-
endpoint?:
|
|
58
|
-
| ((
|
|
59
|
-
| string
|
|
60
|
-
| import("@smithy/types").Endpoint
|
|
61
|
-
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
62
|
-
| import("@smithy/types").EndpointV2
|
|
63
|
-
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
64
|
-
) &
|
|
65
|
-
(
|
|
66
|
-
| string
|
|
67
|
-
| import("@smithy/types").Provider<string>
|
|
68
|
-
| import("@smithy/types").Endpoint
|
|
69
|
-
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
70
|
-
| import("@smithy/types").EndpointV2
|
|
71
|
-
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
72
|
-
))
|
|
73
|
-
| undefined;
|
|
74
|
-
endpointProvider: (
|
|
75
|
-
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
76
|
-
context?: {
|
|
77
|
-
logger?: import("@smithy/types").Logger;
|
|
78
|
-
},
|
|
79
|
-
) => import("@smithy/types").EndpointV2;
|
|
80
|
-
tls?: boolean;
|
|
81
|
-
ignoreConfiguredEndpointUrls?: boolean;
|
|
82
|
-
serviceConfiguredEndpoint?: never;
|
|
83
|
-
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeCatalystHttpAuthSchemeProvider;
|
|
84
|
-
token?: import("@smithy/types").TokenIdentity | import("@smithy/types").TokenIdentityProvider;
|
|
85
85
|
};
|
|
@@ -1,80 +1,43 @@
|
|
|
1
1
|
import { CodeCatalystClientConfig } from "./CodeCatalystClient";
|
|
2
2
|
export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
3
|
-
runtime: string;
|
|
4
|
-
requestHandler:
|
|
5
|
-
| import("@smithy/types").NodeHttpHandlerOptions
|
|
6
|
-
| import("@smithy/types").FetchHttpHandlerOptions
|
|
7
|
-
| Record<string, unknown>
|
|
8
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
9
|
-
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
10
3
|
cacheMiddleware?: boolean;
|
|
11
|
-
protocol:
|
|
12
|
-
| import("@smithy/types").ClientProtocol<any, any>
|
|
13
|
-
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
14
|
-
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
15
|
-
protocolSettings: {
|
|
16
|
-
defaultNamespace?: string;
|
|
17
|
-
[setting: string]: unknown;
|
|
18
|
-
};
|
|
19
|
-
apiVersion: string;
|
|
20
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
21
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
22
|
-
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
23
|
-
streamCollector: (
|
|
24
|
-
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
25
|
-
) => Promise<Uint8Array>;
|
|
26
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
27
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
28
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
29
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
30
|
-
disableHostPrefix: boolean;
|
|
31
|
-
serviceId: string;
|
|
32
|
-
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
33
|
-
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
34
|
-
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
35
|
-
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
36
|
-
region: string | import("@smithy/types").Provider<any>;
|
|
37
|
-
profile?: string;
|
|
38
|
-
defaultUserAgentProvider: (
|
|
39
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
40
|
-
) => Promise<import("@smithy/types").UserAgent>;
|
|
41
|
-
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
42
|
-
retryMode: string | import("@smithy/types").Provider<string>;
|
|
43
|
-
logger: import("@smithy/types").Logger;
|
|
44
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
45
|
-
defaultsMode:
|
|
46
|
-
| import("@smithy/core/client").DefaultsMode
|
|
47
|
-
| import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
48
4
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
49
5
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
50
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
51
6
|
endpoint?:
|
|
52
7
|
| ((
|
|
53
8
|
| string
|
|
54
9
|
| import("@smithy/types").Endpoint
|
|
55
|
-
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
56
10
|
| import("@smithy/types").EndpointV2
|
|
11
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
57
12
|
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
58
13
|
) &
|
|
59
14
|
(
|
|
60
15
|
| string
|
|
61
|
-
| import("@smithy/types").Provider<string>
|
|
62
16
|
| import("@smithy/types").Endpoint
|
|
63
|
-
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
64
17
|
| import("@smithy/types").EndpointV2
|
|
18
|
+
| import("@smithy/types").Provider<string>
|
|
19
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
65
20
|
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
66
21
|
))
|
|
67
22
|
| undefined;
|
|
23
|
+
tls?: boolean;
|
|
24
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
25
|
+
serviceConfiguredEndpoint?: never;
|
|
26
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
27
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
28
|
+
token?: import("@smithy/types").TokenIdentity | import("@smithy/types").TokenIdentityProvider;
|
|
29
|
+
apiVersion: string;
|
|
30
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
31
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
32
|
+
disableHostPrefix: boolean;
|
|
68
33
|
endpointProvider: (
|
|
69
|
-
|
|
34
|
+
params: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
70
35
|
context?: {
|
|
71
36
|
logger?: import("@smithy/types").Logger;
|
|
72
37
|
},
|
|
73
38
|
) => import("@smithy/types").EndpointV2;
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
serviceConfiguredEndpoint?: never;
|
|
77
|
-
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
39
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
40
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodeCatalystHttpAuthSchemeProvider;
|
|
78
41
|
httpAuthSchemes: {
|
|
79
42
|
schemeId: string;
|
|
80
43
|
identityProvider: (
|
|
@@ -82,6 +45,41 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
|
82
45
|
) => import("@smithy/types").IdentityProvider<import("@smithy/types").Identity> | undefined;
|
|
83
46
|
signer: import("@smithy/core").HttpBearerAuthSigner;
|
|
84
47
|
}[];
|
|
85
|
-
|
|
86
|
-
|
|
48
|
+
logger: import("@smithy/types").Logger;
|
|
49
|
+
protocol:
|
|
50
|
+
| import("@smithy/types").$ClientProtocol<any, any>
|
|
51
|
+
| import("@smithy/types").$ClientProtocolCtor<any, any>
|
|
52
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
53
|
+
protocolSettings: {
|
|
54
|
+
[setting: string]: unknown;
|
|
55
|
+
defaultNamespace?: string;
|
|
56
|
+
};
|
|
57
|
+
serviceId: string;
|
|
58
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
59
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
60
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
61
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
62
|
+
profile?: string;
|
|
63
|
+
defaultsMode:
|
|
64
|
+
| import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>
|
|
65
|
+
| import("@smithy/core/client").DefaultsMode;
|
|
66
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
67
|
+
defaultUserAgentProvider: (
|
|
68
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
69
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
70
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
71
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
72
|
+
requestHandler:
|
|
73
|
+
| import("@smithy/fetch-http-handler").FetchHttpHandler
|
|
74
|
+
| import("@smithy/types").FetchHttpHandlerOptions
|
|
75
|
+
| import("@smithy/types").NodeHttpHandlerOptions
|
|
76
|
+
| Record<string, unknown>
|
|
77
|
+
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
78
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
79
|
+
streamCollector: (
|
|
80
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
81
|
+
) => Promise<Uint8Array>;
|
|
82
|
+
useDualstackEndpoint: boolean | (() => Promise<boolean>);
|
|
83
|
+
useFipsEndpoint: boolean | (() => Promise<boolean>);
|
|
84
|
+
runtime: string;
|
|
87
85
|
};
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
|
8
8
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
9
9
|
disableHostPrefix: boolean;
|
|
10
10
|
endpointProvider: (
|
|
11
|
-
|
|
11
|
+
params: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
12
12
|
context?: {
|
|
13
13
|
logger?: import("@smithy/types").Logger;
|
|
14
14
|
},
|
|
@@ -24,8 +24,8 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
|
24
24
|
}[];
|
|
25
25
|
logger: import("@smithy/types").Logger;
|
|
26
26
|
protocol:
|
|
27
|
-
| import("@smithy/types")
|
|
28
|
-
| import("@smithy/types")
|
|
27
|
+
| import("@smithy/types").$ClientProtocol<any, any>
|
|
28
|
+
| import("@smithy/types").$ClientProtocolCtor<any, any>
|
|
29
29
|
| typeof AwsRestJsonProtocol;
|
|
30
30
|
protocolSettings: {
|
|
31
31
|
[setting: string]: unknown;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codecatalyst",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1112.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Codecatalyst Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-codecatalyst",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -46,9 +46,9 @@
|
|
|
46
46
|
"test:index": "tsc -p tsconfig.test.json && node ./test/index-objects.spec.mjs"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@aws-sdk/core": "^3.977.
|
|
50
|
-
"@aws-sdk/token-providers": "3.
|
|
51
|
-
"@aws-sdk/types": "^3.974.
|
|
49
|
+
"@aws-sdk/core": "^3.977.8",
|
|
50
|
+
"@aws-sdk/token-providers": "3.1112.0",
|
|
51
|
+
"@aws-sdk/types": "^3.974.4",
|
|
52
52
|
"@smithy/core": "^3.31.1",
|
|
53
53
|
"@smithy/fetch-http-handler": "^5.6.13",
|
|
54
54
|
"@smithy/node-http-handler": "^4.9.13",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"concurrently": "7.0.0",
|
|
62
62
|
"downlevel-dts": "0.10.1",
|
|
63
63
|
"premove": "4.0.0",
|
|
64
|
-
"typescript": "~
|
|
64
|
+
"typescript": "~7.0.2"
|
|
65
65
|
},
|
|
66
66
|
"engines": {
|
|
67
67
|
"node": ">=20.0.0"
|