@aws-sdk/client-s3-control 3.1110.0 → 3.1111.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 +44 -44
- package/dist-types/runtimeConfig.d.ts +38 -38
- package/dist-types/runtimeConfig.native.d.ts +41 -41
- package/dist-types/runtimeConfig.shared.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +62 -64
- package/dist-types/ts3.4/runtimeConfig.d.ts +64 -64
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -68
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +3 -3
- package/package.json +6 -6
package/dist-cjs/index.js
CHANGED
|
@@ -4,57 +4,57 @@ import type { S3ControlClientConfig } from "./S3ControlClient";
|
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
-
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => 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: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
17
|
-
streamHasher: import("@smithy/types").StreamHasher<import("stream").Readable> | import("@smithy/types").StreamHasher<Blob>;
|
|
18
|
-
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
|
-
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
20
|
-
cacheMiddleware?: boolean | undefined;
|
|
21
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestXmlProtocol;
|
|
22
|
-
protocolSettings: {
|
|
23
|
-
defaultNamespace?: string;
|
|
24
|
-
[setting: string]: unknown;
|
|
25
|
-
};
|
|
26
|
-
apiVersion: string;
|
|
27
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
28
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
29
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
30
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
31
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
32
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
33
|
-
disableHostPrefix: boolean;
|
|
34
|
-
serviceId: string;
|
|
35
|
-
profile?: string;
|
|
36
|
-
useArnRegion: boolean | undefined | import("@smithy/types").Provider<boolean | undefined>;
|
|
37
|
-
logger: import("@smithy/types").Logger;
|
|
38
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
39
|
-
md5: import("@smithy/types").HashConstructor;
|
|
40
|
-
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
41
|
-
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
42
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
43
|
-
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;
|
|
44
|
-
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
45
|
-
logger?: import("@smithy/types").Logger;
|
|
46
|
-
}) => import("@smithy/types").EndpointV2;
|
|
7
|
+
cacheMiddleware?: boolean;
|
|
8
|
+
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;
|
|
47
9
|
tls?: boolean;
|
|
48
10
|
ignoreConfiguredEndpointUrls?: boolean;
|
|
49
11
|
serviceConfiguredEndpoint?: never;
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
12
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
13
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
14
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
53
15
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
54
16
|
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
55
|
-
signingEscapePath: boolean;
|
|
56
17
|
systemClockOffset?: number;
|
|
57
18
|
signingRegion?: string;
|
|
58
19
|
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
59
20
|
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
24
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
25
|
+
disableHostPrefix: boolean;
|
|
26
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
27
|
+
logger?: import("@smithy/types").Logger;
|
|
28
|
+
}) => import("@smithy/types").EndpointV2;
|
|
29
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3ControlHttpAuthSchemeProvider;
|
|
31
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
32
|
+
logger: import("@smithy/types").Logger;
|
|
33
|
+
md5: import("@smithy/types").HashConstructor;
|
|
34
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestXmlProtocol;
|
|
35
|
+
protocolSettings: {
|
|
36
|
+
[setting: string]: unknown;
|
|
37
|
+
defaultNamespace?: string;
|
|
38
|
+
};
|
|
39
|
+
serviceId: string;
|
|
40
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
41
|
+
signingEscapePath: boolean;
|
|
42
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
43
|
+
useArnRegion: boolean | import("@smithy/types").Provider<boolean | undefined> | undefined;
|
|
44
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
45
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
46
|
+
profile?: string;
|
|
47
|
+
runtime: string;
|
|
48
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
|
|
49
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
50
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
51
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
52
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
53
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
54
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
55
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
56
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
57
|
+
streamHasher: import("@smithy/types").StreamHasher<Blob> | import("@smithy/types").StreamHasher<import("stream").Readable>;
|
|
58
|
+
useDualstackEndpoint: boolean | (() => Promise<boolean>);
|
|
59
|
+
useFipsEndpoint: boolean | (() => Promise<boolean>);
|
|
60
60
|
};
|
|
@@ -4,57 +4,57 @@ import type { S3ControlClientConfig } from "./S3ControlClient";
|
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
7
|
+
cacheMiddleware?: boolean;
|
|
8
|
+
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;
|
|
9
|
+
tls?: boolean;
|
|
10
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
11
|
+
serviceConfiguredEndpoint?: never;
|
|
12
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
13
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
14
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
15
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
16
|
+
systemClockOffset?: number;
|
|
17
|
+
signingRegion?: string;
|
|
18
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
19
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
|
+
apiVersion: string;
|
|
21
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
22
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
23
|
+
disableHostPrefix: boolean;
|
|
24
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
25
|
+
logger?: import("@smithy/types").Logger;
|
|
26
|
+
}) => import("@smithy/types").EndpointV2;
|
|
27
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
28
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3ControlHttpAuthSchemeProvider;
|
|
29
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
30
|
+
logger: import("@smithy/types").Logger;
|
|
31
|
+
md5: import("@smithy/types").HashConstructor;
|
|
32
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestXmlProtocol;
|
|
33
|
+
protocolSettings: {
|
|
34
|
+
[setting: string]: unknown;
|
|
35
|
+
defaultNamespace?: string;
|
|
36
|
+
};
|
|
37
|
+
serviceId: string;
|
|
38
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
39
|
+
signingEscapePath: boolean;
|
|
40
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
41
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
42
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
7
43
|
runtime: string;
|
|
8
44
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
|
|
9
45
|
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
10
46
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider: ((
|
|
47
|
+
credentialDefaultProvider: ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider) | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider);
|
|
12
48
|
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
13
49
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
14
50
|
region: string | import("@smithy/types").Provider<string>;
|
|
15
51
|
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
16
52
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
17
53
|
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
18
|
-
streamHasher: import("@smithy/types").StreamHasher<
|
|
54
|
+
streamHasher: import("@smithy/types").StreamHasher<Blob> | import("@smithy/types").StreamHasher<import("stream").Readable>;
|
|
19
55
|
useArnRegion: boolean | import("@smithy/types").Provider<boolean | undefined>;
|
|
20
56
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
57
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
58
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
23
|
-
cacheMiddleware?: boolean | undefined;
|
|
24
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestXmlProtocol;
|
|
25
|
-
protocolSettings: {
|
|
26
|
-
defaultNamespace?: string;
|
|
27
|
-
[setting: string]: unknown;
|
|
28
|
-
};
|
|
29
|
-
apiVersion: string;
|
|
30
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
31
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
32
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
33
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
34
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
35
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
36
|
-
disableHostPrefix: boolean;
|
|
37
|
-
serviceId: string;
|
|
38
59
|
profile?: string;
|
|
39
|
-
logger: import("@smithy/types").Logger;
|
|
40
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
-
md5: import("@smithy/types").HashConstructor;
|
|
42
|
-
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
43
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
44
|
-
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;
|
|
45
|
-
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
46
|
-
logger?: import("@smithy/types").Logger;
|
|
47
|
-
}) => import("@smithy/types").EndpointV2;
|
|
48
|
-
tls?: boolean;
|
|
49
|
-
ignoreConfiguredEndpointUrls?: boolean;
|
|
50
|
-
serviceConfiguredEndpoint?: never;
|
|
51
|
-
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
52
|
-
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3ControlHttpAuthSchemeProvider;
|
|
53
|
-
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
54
|
-
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
55
|
-
signingEscapePath: boolean;
|
|
56
|
-
systemClockOffset?: number;
|
|
57
|
-
signingRegion?: string;
|
|
58
|
-
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
59
|
-
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
60
60
|
};
|
|
@@ -3,57 +3,57 @@ import type { S3ControlClientConfig } from "./S3ControlClient";
|
|
|
3
3
|
* @internal
|
|
4
4
|
*/
|
|
5
5
|
export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
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
|
-
|
|
7
|
+
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;
|
|
8
|
+
tls?: boolean;
|
|
9
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
10
|
+
serviceConfiguredEndpoint?: never;
|
|
11
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
12
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
13
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
14
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
15
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
16
|
+
systemClockOffset?: number;
|
|
17
|
+
signingRegion?: string;
|
|
18
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
19
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
21
|
+
apiVersion: string;
|
|
22
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
24
|
+
disableHostPrefix: boolean;
|
|
25
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
26
|
+
logger?: import("@smithy/types").Logger;
|
|
27
|
+
}) => import("@smithy/types").EndpointV2;
|
|
28
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
29
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3ControlHttpAuthSchemeProvider;
|
|
30
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
31
|
+
logger: import("@smithy/types").Logger;
|
|
32
|
+
md5: import("@smithy/types").HashConstructor;
|
|
33
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestXmlProtocol;
|
|
10
34
|
protocolSettings: {
|
|
11
|
-
defaultNamespace?: string;
|
|
12
35
|
[setting: string]: unknown;
|
|
36
|
+
defaultNamespace?: string;
|
|
13
37
|
};
|
|
14
|
-
|
|
38
|
+
serviceId: string;
|
|
15
39
|
sha256: import("@smithy/types").HashConstructor;
|
|
40
|
+
signingEscapePath: boolean;
|
|
16
41
|
urlParser: import("@smithy/types").UrlParser;
|
|
17
|
-
|
|
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;
|
|
42
|
+
useArnRegion: boolean | import("@smithy/types").Provider<boolean | undefined> | undefined;
|
|
21
43
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
22
44
|
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
45
|
profile?: string;
|
|
29
|
-
|
|
46
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode> | import("@smithy/core/client").DefaultsMode;
|
|
47
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
30
48
|
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
31
|
-
|
|
49
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
32
50
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
51
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
52
|
+
requestHandler: import("@smithy/fetch-http-handler").FetchHttpHandler | import("@smithy/types").FetchHttpHandlerOptions | import("@smithy/types").NodeHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any>;
|
|
33
53
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
40
|
-
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
41
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
42
|
-
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;
|
|
43
|
-
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
44
|
-
logger?: import("@smithy/types").Logger;
|
|
45
|
-
}) => import("@smithy/types").EndpointV2;
|
|
46
|
-
tls?: boolean;
|
|
47
|
-
ignoreConfiguredEndpointUrls?: boolean;
|
|
48
|
-
serviceConfiguredEndpoint?: never;
|
|
49
|
-
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
50
|
-
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
51
|
-
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3ControlHttpAuthSchemeProvider;
|
|
52
|
-
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
53
|
-
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
54
|
-
signingEscapePath: boolean;
|
|
55
|
-
systemClockOffset?: number;
|
|
56
|
-
signingRegion?: string;
|
|
57
|
-
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
58
|
-
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
54
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
55
|
+
streamHasher: import("@smithy/types").StreamHasher<Blob> | import("@smithy/types").StreamHasher<import("stream").Readable>;
|
|
56
|
+
useDualstackEndpoint: boolean | (() => Promise<boolean>);
|
|
57
|
+
useFipsEndpoint: boolean | (() => Promise<boolean>);
|
|
58
|
+
runtime: string;
|
|
59
59
|
};
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
8
8
|
base64Decoder: import("@smithy/types").Decoder;
|
|
9
9
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
10
10
|
disableHostPrefix: boolean;
|
|
11
|
-
endpointProvider: (
|
|
11
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
12
12
|
logger?: import("@smithy/types").Logger;
|
|
13
13
|
}) => import("@smithy/types").EndpointV2;
|
|
14
14
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
@@ -16,7 +16,7 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
16
16
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
17
17
|
logger: import("@smithy/types").Logger;
|
|
18
18
|
md5: import("@smithy/types").HashConstructor;
|
|
19
|
-
protocol: import("@smithy/types")
|
|
19
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof AwsRestXmlProtocol;
|
|
20
20
|
protocolSettings: {
|
|
21
21
|
[setting: string]: unknown;
|
|
22
22
|
defaultNamespace?: string;
|
|
@@ -1,86 +1,30 @@
|
|
|
1
1
|
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
2
|
import { S3ControlClientConfig } from "./S3ControlClient";
|
|
3
3
|
export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
4
|
-
|
|
5
|
-
defaultsMode: import("@smithy/types").Provider<
|
|
6
|
-
import("@smithy/core/client").ResolvedDefaultsMode
|
|
7
|
-
>;
|
|
8
|
-
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
-
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
|
-
defaultUserAgentProvider: (
|
|
13
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
14
|
-
) => Promise<import("@smithy/types").UserAgent>;
|
|
15
|
-
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
16
|
-
region: string | import("@smithy/types").Provider<any>;
|
|
17
|
-
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
18
|
-
retryMode: string | import("@smithy/types").Provider<string>;
|
|
19
|
-
streamCollector: (
|
|
20
|
-
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
21
|
-
) => Promise<Uint8Array>;
|
|
22
|
-
streamHasher:
|
|
23
|
-
| import("@smithy/types").StreamHasher<import("stream").Readable>
|
|
24
|
-
| import("@smithy/types").StreamHasher<Blob>;
|
|
25
|
-
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
26
|
-
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
27
|
-
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
28
|
-
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
29
|
-
cacheMiddleware?: boolean | undefined;
|
|
30
|
-
protocol:
|
|
31
|
-
| import("@smithy/types").ClientProtocol<any, any>
|
|
32
|
-
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
33
|
-
| typeof import("@aws-sdk/core/protocols").AwsRestXmlProtocol;
|
|
34
|
-
protocolSettings: {
|
|
35
|
-
defaultNamespace?: string;
|
|
36
|
-
[setting: string]: unknown;
|
|
37
|
-
};
|
|
38
|
-
apiVersion: string;
|
|
39
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
40
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
41
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
42
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
43
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
44
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
45
|
-
disableHostPrefix: boolean;
|
|
46
|
-
serviceId: string;
|
|
47
|
-
profile?: string;
|
|
48
|
-
useArnRegion: boolean | undefined | import("@smithy/types").Provider<boolean | undefined>;
|
|
49
|
-
logger: import("@smithy/types").Logger;
|
|
50
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
51
|
-
md5: import("@smithy/types").HashConstructor;
|
|
52
|
-
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
53
|
-
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
54
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
4
|
+
cacheMiddleware?: boolean;
|
|
55
5
|
endpoint?:
|
|
56
6
|
| ((
|
|
57
7
|
| string
|
|
58
8
|
| import("@smithy/types").Endpoint
|
|
59
|
-
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
60
9
|
| import("@smithy/types").EndpointV2
|
|
10
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
61
11
|
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
62
12
|
) &
|
|
63
13
|
(
|
|
64
14
|
| string
|
|
65
|
-
| import("@smithy/types").Provider<string>
|
|
66
15
|
| import("@smithy/types").Endpoint
|
|
67
|
-
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
68
16
|
| import("@smithy/types").EndpointV2
|
|
17
|
+
| import("@smithy/types").Provider<string>
|
|
18
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
69
19
|
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
70
20
|
))
|
|
71
21
|
| undefined;
|
|
72
|
-
endpointProvider: (
|
|
73
|
-
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
74
|
-
context?: {
|
|
75
|
-
logger?: import("@smithy/types").Logger;
|
|
76
|
-
},
|
|
77
|
-
) => import("@smithy/types").EndpointV2;
|
|
78
22
|
tls?: boolean;
|
|
79
23
|
ignoreConfiguredEndpointUrls?: boolean;
|
|
80
24
|
serviceConfiguredEndpoint?: never;
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
25
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
26
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
27
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
84
28
|
credentials?:
|
|
85
29
|
| import("@smithy/types").AwsCredentialIdentity
|
|
86
30
|
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
@@ -89,7 +33,6 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
89
33
|
| ((
|
|
90
34
|
authScheme?: import("@smithy/types").AuthScheme,
|
|
91
35
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
92
|
-
signingEscapePath: boolean;
|
|
93
36
|
systemClockOffset?: number;
|
|
94
37
|
signingRegion?: string;
|
|
95
38
|
signerConstructor?: new (
|
|
@@ -97,4 +40,59 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
97
40
|
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
98
41
|
) => import("@smithy/types").RequestSigner;
|
|
99
42
|
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
43
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
44
|
+
apiVersion: string;
|
|
45
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
46
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
47
|
+
disableHostPrefix: boolean;
|
|
48
|
+
endpointProvider: (
|
|
49
|
+
params: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
50
|
+
context?: {
|
|
51
|
+
logger?: import("@smithy/types").Logger;
|
|
52
|
+
},
|
|
53
|
+
) => import("@smithy/types").EndpointV2;
|
|
54
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3ControlHttpAuthSchemeProvider;
|
|
56
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
57
|
+
logger: import("@smithy/types").Logger;
|
|
58
|
+
md5: import("@smithy/types").HashConstructor;
|
|
59
|
+
protocol:
|
|
60
|
+
| import("@smithy/types").$ClientProtocol<any, any>
|
|
61
|
+
| import("@smithy/types").$ClientProtocolCtor<any, any>
|
|
62
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestXmlProtocol;
|
|
63
|
+
protocolSettings: {
|
|
64
|
+
[setting: string]: unknown;
|
|
65
|
+
defaultNamespace?: string;
|
|
66
|
+
};
|
|
67
|
+
serviceId: string;
|
|
68
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
69
|
+
signingEscapePath: boolean;
|
|
70
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
71
|
+
useArnRegion: boolean | import("@smithy/types").Provider<boolean | undefined> | undefined;
|
|
72
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
73
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
74
|
+
profile?: string;
|
|
75
|
+
runtime: string;
|
|
76
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
77
|
+
import("@smithy/core/client").ResolvedDefaultsMode
|
|
78
|
+
>;
|
|
79
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
80
|
+
credentialDefaultProvider:
|
|
81
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
82
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
83
|
+
defaultUserAgentProvider: (
|
|
84
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
85
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
86
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
87
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
88
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
89
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
90
|
+
streamCollector: (
|
|
91
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
92
|
+
) => Promise<Uint8Array>;
|
|
93
|
+
streamHasher:
|
|
94
|
+
| import("@smithy/types").StreamHasher<Blob>
|
|
95
|
+
| import("@smithy/types").StreamHasher<import("stream").Readable>;
|
|
96
|
+
useDualstackEndpoint: boolean | (() => Promise<boolean>);
|
|
97
|
+
useFipsEndpoint: boolean | (() => Promise<boolean>);
|
|
100
98
|
};
|
|
@@ -1,86 +1,29 @@
|
|
|
1
1
|
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
2
|
import { S3ControlClientConfig } from "./S3ControlClient";
|
|
3
3
|
export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
4
|
-
|
|
5
|
-
defaultsMode: import("@smithy/types").Provider<
|
|
6
|
-
import("@smithy/core/client").ResolvedDefaultsMode
|
|
7
|
-
>;
|
|
8
|
-
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
9
|
-
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider:
|
|
11
|
-
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
12
|
-
| ((
|
|
13
|
-
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
14
|
-
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
15
|
-
defaultUserAgentProvider: (
|
|
16
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
17
|
-
) => Promise<import("@smithy/types").UserAgent>;
|
|
18
|
-
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
19
|
-
region: string | import("@smithy/types").Provider<string>;
|
|
20
|
-
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
21
|
-
retryMode: string | import("@smithy/types").Provider<string>;
|
|
22
|
-
streamCollector: (
|
|
23
|
-
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
24
|
-
) => Promise<Uint8Array>;
|
|
25
|
-
streamHasher:
|
|
26
|
-
| import("@smithy/types").StreamHasher<import("stream").Readable>
|
|
27
|
-
| import("@smithy/types").StreamHasher<Blob>;
|
|
28
|
-
useArnRegion: boolean | import("@smithy/types").Provider<boolean | undefined>;
|
|
29
|
-
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
30
|
-
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
31
|
-
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
32
|
-
cacheMiddleware?: boolean | undefined;
|
|
33
|
-
protocol:
|
|
34
|
-
| import("@smithy/types").ClientProtocol<any, any>
|
|
35
|
-
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
36
|
-
| typeof import("@aws-sdk/core/protocols").AwsRestXmlProtocol;
|
|
37
|
-
protocolSettings: {
|
|
38
|
-
defaultNamespace?: string;
|
|
39
|
-
[setting: string]: unknown;
|
|
40
|
-
};
|
|
41
|
-
apiVersion: string;
|
|
42
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
43
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
44
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
45
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
46
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
47
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
48
|
-
disableHostPrefix: boolean;
|
|
49
|
-
serviceId: string;
|
|
50
|
-
profile?: string;
|
|
51
|
-
logger: import("@smithy/types").Logger;
|
|
52
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
53
|
-
md5: import("@smithy/types").HashConstructor;
|
|
54
|
-
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
55
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
4
|
+
cacheMiddleware?: boolean;
|
|
56
5
|
endpoint?:
|
|
57
6
|
| ((
|
|
58
7
|
| string
|
|
59
8
|
| import("@smithy/types").Endpoint
|
|
60
|
-
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
61
9
|
| import("@smithy/types").EndpointV2
|
|
10
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
62
11
|
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
63
12
|
) &
|
|
64
13
|
(
|
|
65
14
|
| string
|
|
66
|
-
| import("@smithy/types").Provider<string>
|
|
67
15
|
| import("@smithy/types").Endpoint
|
|
68
|
-
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
69
16
|
| import("@smithy/types").EndpointV2
|
|
17
|
+
| import("@smithy/types").Provider<string>
|
|
18
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
70
19
|
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
71
20
|
))
|
|
72
21
|
| undefined;
|
|
73
|
-
endpointProvider: (
|
|
74
|
-
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
75
|
-
context?: {
|
|
76
|
-
logger?: import("@smithy/types").Logger;
|
|
77
|
-
},
|
|
78
|
-
) => import("@smithy/types").EndpointV2;
|
|
79
22
|
tls?: boolean;
|
|
80
23
|
ignoreConfiguredEndpointUrls?: boolean;
|
|
81
24
|
serviceConfiguredEndpoint?: never;
|
|
82
|
-
|
|
83
|
-
|
|
25
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
26
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
84
27
|
credentials?:
|
|
85
28
|
| import("@smithy/types").AwsCredentialIdentity
|
|
86
29
|
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
@@ -89,7 +32,6 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
89
32
|
| ((
|
|
90
33
|
authScheme?: import("@smithy/types").AuthScheme,
|
|
91
34
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
92
|
-
signingEscapePath: boolean;
|
|
93
35
|
systemClockOffset?: number;
|
|
94
36
|
signingRegion?: string;
|
|
95
37
|
signerConstructor?: new (
|
|
@@ -97,4 +39,62 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
97
39
|
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
98
40
|
) => import("@smithy/types").RequestSigner;
|
|
99
41
|
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
42
|
+
apiVersion: string;
|
|
43
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
44
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
45
|
+
disableHostPrefix: boolean;
|
|
46
|
+
endpointProvider: (
|
|
47
|
+
params: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
48
|
+
context?: {
|
|
49
|
+
logger?: import("@smithy/types").Logger;
|
|
50
|
+
},
|
|
51
|
+
) => import("@smithy/types").EndpointV2;
|
|
52
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
53
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3ControlHttpAuthSchemeProvider;
|
|
54
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
55
|
+
logger: import("@smithy/types").Logger;
|
|
56
|
+
md5: import("@smithy/types").HashConstructor;
|
|
57
|
+
protocol:
|
|
58
|
+
| import("@smithy/types").$ClientProtocol<any, any>
|
|
59
|
+
| import("@smithy/types").$ClientProtocolCtor<any, any>
|
|
60
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestXmlProtocol;
|
|
61
|
+
protocolSettings: {
|
|
62
|
+
[setting: string]: unknown;
|
|
63
|
+
defaultNamespace?: string;
|
|
64
|
+
};
|
|
65
|
+
serviceId: string;
|
|
66
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
67
|
+
signingEscapePath: boolean;
|
|
68
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
69
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
70
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
71
|
+
runtime: string;
|
|
72
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
73
|
+
import("@smithy/core/client").ResolvedDefaultsMode
|
|
74
|
+
>;
|
|
75
|
+
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
76
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
77
|
+
credentialDefaultProvider:
|
|
78
|
+
| ((
|
|
79
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
80
|
+
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider)
|
|
81
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider);
|
|
82
|
+
defaultUserAgentProvider: (
|
|
83
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
84
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
85
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
86
|
+
region: string | import("@smithy/types").Provider<string>;
|
|
87
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
88
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
89
|
+
streamCollector: (
|
|
90
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
91
|
+
) => Promise<Uint8Array>;
|
|
92
|
+
streamHasher:
|
|
93
|
+
| import("@smithy/types").StreamHasher<Blob>
|
|
94
|
+
| import("@smithy/types").StreamHasher<import("stream").Readable>;
|
|
95
|
+
useArnRegion: boolean | import("@smithy/types").Provider<boolean | undefined>;
|
|
96
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
97
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
98
|
+
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
99
|
+
profile?: string;
|
|
100
100
|
};
|
|
@@ -1,90 +1,29 @@
|
|
|
1
1
|
import { S3ControlClientConfig } from "./S3ControlClient";
|
|
2
2
|
export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
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").AwsRestXmlProtocol;
|
|
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
|
-
credentialDefaultProvider:
|
|
42
|
-
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
43
|
-
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
44
|
-
useArnRegion: boolean | undefined | import("@smithy/types").Provider<boolean | undefined>;
|
|
45
|
-
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
46
|
-
retryMode: string | import("@smithy/types").Provider<string>;
|
|
47
|
-
logger: import("@smithy/types").Logger;
|
|
48
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
49
|
-
streamHasher:
|
|
50
|
-
| import("@smithy/types").StreamHasher<import("stream").Readable>
|
|
51
|
-
| import("@smithy/types").StreamHasher<Blob>;
|
|
52
|
-
md5: import("@smithy/types").HashConstructor;
|
|
53
|
-
defaultsMode:
|
|
54
|
-
| import("@smithy/core/client").DefaultsMode
|
|
55
|
-
| import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
56
|
-
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
57
|
-
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
58
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
59
4
|
endpoint?:
|
|
60
5
|
| ((
|
|
61
6
|
| string
|
|
62
7
|
| import("@smithy/types").Endpoint
|
|
63
|
-
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
64
8
|
| import("@smithy/types").EndpointV2
|
|
9
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
65
10
|
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
66
11
|
) &
|
|
67
12
|
(
|
|
68
13
|
| string
|
|
69
|
-
| import("@smithy/types").Provider<string>
|
|
70
14
|
| import("@smithy/types").Endpoint
|
|
71
|
-
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
72
15
|
| import("@smithy/types").EndpointV2
|
|
16
|
+
| import("@smithy/types").Provider<string>
|
|
17
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
73
18
|
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
74
19
|
))
|
|
75
20
|
| undefined;
|
|
76
|
-
endpointProvider: (
|
|
77
|
-
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
78
|
-
context?: {
|
|
79
|
-
logger?: import("@smithy/types").Logger;
|
|
80
|
-
},
|
|
81
|
-
) => import("@smithy/types").EndpointV2;
|
|
82
21
|
tls?: boolean;
|
|
83
22
|
ignoreConfiguredEndpointUrls?: boolean;
|
|
84
23
|
serviceConfiguredEndpoint?: never;
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
24
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
25
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
26
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
88
27
|
credentials?:
|
|
89
28
|
| import("@smithy/types").AwsCredentialIdentity
|
|
90
29
|
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
@@ -93,7 +32,6 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
93
32
|
| ((
|
|
94
33
|
authScheme?: import("@smithy/types").AuthScheme,
|
|
95
34
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
96
|
-
signingEscapePath: boolean;
|
|
97
35
|
systemClockOffset?: number;
|
|
98
36
|
signingRegion?: string;
|
|
99
37
|
signerConstructor?: new (
|
|
@@ -101,4 +39,64 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
101
39
|
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
102
40
|
) => import("@smithy/types").RequestSigner;
|
|
103
41
|
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
42
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
43
|
+
apiVersion: string;
|
|
44
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
45
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
46
|
+
disableHostPrefix: boolean;
|
|
47
|
+
endpointProvider: (
|
|
48
|
+
params: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
49
|
+
context?: {
|
|
50
|
+
logger?: import("@smithy/types").Logger;
|
|
51
|
+
},
|
|
52
|
+
) => import("@smithy/types").EndpointV2;
|
|
53
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
54
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3ControlHttpAuthSchemeProvider;
|
|
55
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
56
|
+
logger: import("@smithy/types").Logger;
|
|
57
|
+
md5: import("@smithy/types").HashConstructor;
|
|
58
|
+
protocol:
|
|
59
|
+
| import("@smithy/types").$ClientProtocol<any, any>
|
|
60
|
+
| import("@smithy/types").$ClientProtocolCtor<any, any>
|
|
61
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestXmlProtocol;
|
|
62
|
+
protocolSettings: {
|
|
63
|
+
[setting: string]: unknown;
|
|
64
|
+
defaultNamespace?: string;
|
|
65
|
+
};
|
|
66
|
+
serviceId: string;
|
|
67
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
68
|
+
signingEscapePath: boolean;
|
|
69
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
70
|
+
useArnRegion: boolean | import("@smithy/types").Provider<boolean | undefined> | undefined;
|
|
71
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
72
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
73
|
+
profile?: string;
|
|
74
|
+
defaultsMode:
|
|
75
|
+
| import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>
|
|
76
|
+
| import("@smithy/core/client").DefaultsMode;
|
|
77
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
78
|
+
credentialDefaultProvider:
|
|
79
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
80
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
81
|
+
defaultUserAgentProvider: (
|
|
82
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
83
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
84
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
85
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
86
|
+
requestHandler:
|
|
87
|
+
| import("@smithy/fetch-http-handler").FetchHttpHandler
|
|
88
|
+
| import("@smithy/types").FetchHttpHandlerOptions
|
|
89
|
+
| import("@smithy/types").NodeHttpHandlerOptions
|
|
90
|
+
| Record<string, unknown>
|
|
91
|
+
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
92
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
93
|
+
streamCollector: (
|
|
94
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
95
|
+
) => Promise<Uint8Array>;
|
|
96
|
+
streamHasher:
|
|
97
|
+
| import("@smithy/types").StreamHasher<Blob>
|
|
98
|
+
| import("@smithy/types").StreamHasher<import("stream").Readable>;
|
|
99
|
+
useDualstackEndpoint: boolean | (() => Promise<boolean>);
|
|
100
|
+
useFipsEndpoint: boolean | (() => Promise<boolean>);
|
|
101
|
+
runtime: string;
|
|
104
102
|
};
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
6
6
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
7
7
|
disableHostPrefix: boolean;
|
|
8
8
|
endpointProvider: (
|
|
9
|
-
|
|
9
|
+
params: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
10
10
|
context?: {
|
|
11
11
|
logger?: import("@smithy/types").Logger;
|
|
12
12
|
},
|
|
@@ -17,8 +17,8 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
17
17
|
logger: import("@smithy/types").Logger;
|
|
18
18
|
md5: import("@smithy/types").HashConstructor;
|
|
19
19
|
protocol:
|
|
20
|
-
| import("@smithy/types")
|
|
21
|
-
| import("@smithy/types")
|
|
20
|
+
| import("@smithy/types").$ClientProtocol<any, any>
|
|
21
|
+
| import("@smithy/types").$ClientProtocolCtor<any, any>
|
|
22
22
|
| typeof AwsRestXmlProtocol;
|
|
23
23
|
protocolSettings: {
|
|
24
24
|
[setting: string]: unknown;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-s3-control",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1111.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript S3 Control Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-s3-control",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -52,10 +52,10 @@
|
|
|
52
52
|
"test:index": "tsc -p tsconfig.test.json && node ./test/index-objects.spec.mjs"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@aws-sdk/core": "^3.977.
|
|
56
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
57
|
-
"@aws-sdk/middleware-sdk-s3": "^3.972.
|
|
58
|
-
"@aws-sdk/types": "^3.974.
|
|
55
|
+
"@aws-sdk/core": "^3.977.8",
|
|
56
|
+
"@aws-sdk/credential-provider-node": "^3.972.80",
|
|
57
|
+
"@aws-sdk/middleware-sdk-s3": "^3.972.74",
|
|
58
|
+
"@aws-sdk/types": "^3.974.4",
|
|
59
59
|
"@smithy/core": "^3.31.1",
|
|
60
60
|
"@smithy/fetch-http-handler": "^5.6.13",
|
|
61
61
|
"@smithy/middleware-apply-body-checksum": "^4.5.16",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"concurrently": "7.0.0",
|
|
71
71
|
"downlevel-dts": "0.10.1",
|
|
72
72
|
"premove": "4.0.0",
|
|
73
|
-
"typescript": "~
|
|
73
|
+
"typescript": "~7.0.2",
|
|
74
74
|
"vitest": "^4.0.17"
|
|
75
75
|
},
|
|
76
76
|
"engines": {
|