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