@aws-sdk/client-s3outposts 3.170.0 → 3.178.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/CHANGELOG.md +16 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/S3Outposts.d.ts +0 -4
- package/dist-types/ts3.4/S3OutpostsClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/CreateEndpointCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteEndpointCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListEndpointsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListSharedEndpointsCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/S3OutpostsServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -41
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.178.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.177.0...v3.178.0) (2022-09-23)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-s3outposts
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-s3outposts
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-s3outposts
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: S3OutpostsClientConfig) => {
|
|
|
31
31
|
tls?: boolean | undefined;
|
|
32
32
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
33
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
34
|
-
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").
|
|
34
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
35
35
|
signingEscapePath?: boolean | undefined;
|
|
36
36
|
systemClockOffset?: number | undefined;
|
|
37
37
|
signingRegion?: string | undefined;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: S3OutpostsClientConfig) => {
|
|
|
31
31
|
tls?: boolean | undefined;
|
|
32
32
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
33
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
34
|
-
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").
|
|
34
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
35
35
|
signingEscapePath?: boolean | undefined;
|
|
36
36
|
systemClockOffset?: number | undefined;
|
|
37
37
|
signingRegion?: string | undefined;
|
|
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: S3OutpostsClientConfig) => {
|
|
|
30
30
|
tls?: boolean | undefined;
|
|
31
31
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
32
32
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
33
|
-
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").
|
|
33
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
34
34
|
signingEscapePath?: boolean | undefined;
|
|
35
35
|
systemClockOffset?: number | undefined;
|
|
36
36
|
signingRegion?: string | undefined;
|
|
@@ -16,7 +16,6 @@ import {
|
|
|
16
16
|
ListSharedEndpointsCommandOutput,
|
|
17
17
|
} from "./commands/ListSharedEndpointsCommand";
|
|
18
18
|
import { S3OutpostsClient } from "./S3OutpostsClient";
|
|
19
|
-
|
|
20
19
|
export declare class S3Outposts extends S3OutpostsClient {
|
|
21
20
|
createEndpoint(
|
|
22
21
|
args: CreateEndpointCommandInput,
|
|
@@ -31,7 +30,6 @@ export declare class S3Outposts extends S3OutpostsClient {
|
|
|
31
30
|
options: __HttpHandlerOptions,
|
|
32
31
|
cb: (err: any, data?: CreateEndpointCommandOutput) => void
|
|
33
32
|
): void;
|
|
34
|
-
|
|
35
33
|
deleteEndpoint(
|
|
36
34
|
args: DeleteEndpointCommandInput,
|
|
37
35
|
options?: __HttpHandlerOptions
|
|
@@ -45,7 +43,6 @@ export declare class S3Outposts extends S3OutpostsClient {
|
|
|
45
43
|
options: __HttpHandlerOptions,
|
|
46
44
|
cb: (err: any, data?: DeleteEndpointCommandOutput) => void
|
|
47
45
|
): void;
|
|
48
|
-
|
|
49
46
|
listEndpoints(
|
|
50
47
|
args: ListEndpointsCommandInput,
|
|
51
48
|
options?: __HttpHandlerOptions
|
|
@@ -59,7 +56,6 @@ export declare class S3Outposts extends S3OutpostsClient {
|
|
|
59
56
|
options: __HttpHandlerOptions,
|
|
60
57
|
cb: (err: any, data?: ListEndpointsCommandOutput) => void
|
|
61
58
|
): void;
|
|
62
|
-
|
|
63
59
|
listSharedEndpoints(
|
|
64
60
|
args: ListSharedEndpointsCommandInput,
|
|
65
61
|
options?: __HttpHandlerOptions
|
|
@@ -71,47 +71,26 @@ export declare type ServiceOutputTypes =
|
|
|
71
71
|
export interface ClientDefaults
|
|
72
72
|
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
73
73
|
requestHandler?: __HttpHandler;
|
|
74
|
-
|
|
75
74
|
sha256?: __HashConstructor;
|
|
76
|
-
|
|
77
75
|
urlParser?: __UrlParser;
|
|
78
|
-
|
|
79
76
|
bodyLengthChecker?: __BodyLengthCalculator;
|
|
80
|
-
|
|
81
77
|
streamCollector?: __StreamCollector;
|
|
82
|
-
|
|
83
78
|
base64Decoder?: __Decoder;
|
|
84
|
-
|
|
85
79
|
base64Encoder?: __Encoder;
|
|
86
|
-
|
|
87
80
|
utf8Decoder?: __Decoder;
|
|
88
|
-
|
|
89
81
|
utf8Encoder?: __Encoder;
|
|
90
|
-
|
|
91
82
|
runtime?: string;
|
|
92
|
-
|
|
93
83
|
disableHostPrefix?: boolean;
|
|
94
|
-
|
|
95
84
|
maxAttempts?: number | __Provider<number>;
|
|
96
|
-
|
|
97
85
|
retryMode?: string | __Provider<string>;
|
|
98
|
-
|
|
99
86
|
logger?: __Logger;
|
|
100
|
-
|
|
101
87
|
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
102
|
-
|
|
103
88
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
104
|
-
|
|
105
89
|
serviceId?: string;
|
|
106
|
-
|
|
107
90
|
region?: string | __Provider<string>;
|
|
108
|
-
|
|
109
91
|
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
110
|
-
|
|
111
92
|
regionInfoProvider?: RegionInfoProvider;
|
|
112
|
-
|
|
113
93
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
114
|
-
|
|
115
94
|
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
116
95
|
}
|
|
117
96
|
declare type S3OutpostsClientConfigType = Partial<
|
|
@@ -124,7 +103,6 @@ declare type S3OutpostsClientConfigType = Partial<
|
|
|
124
103
|
HostHeaderInputConfig &
|
|
125
104
|
AwsAuthInputConfig &
|
|
126
105
|
UserAgentInputConfig;
|
|
127
|
-
|
|
128
106
|
export interface S3OutpostsClientConfig extends S3OutpostsClientConfigType {}
|
|
129
107
|
declare type S3OutpostsClientResolvedConfigType =
|
|
130
108
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
@@ -135,10 +113,8 @@ declare type S3OutpostsClientResolvedConfigType =
|
|
|
135
113
|
HostHeaderResolvedConfig &
|
|
136
114
|
AwsAuthResolvedConfig &
|
|
137
115
|
UserAgentResolvedConfig;
|
|
138
|
-
|
|
139
116
|
export interface S3OutpostsClientResolvedConfig
|
|
140
117
|
extends S3OutpostsClientResolvedConfigType {}
|
|
141
|
-
|
|
142
118
|
export declare class S3OutpostsClient extends __Client<
|
|
143
119
|
__HttpHandlerOptions,
|
|
144
120
|
ServiceInputTypes,
|
|
@@ -147,7 +123,6 @@ export declare class S3OutpostsClient extends __Client<
|
|
|
147
123
|
> {
|
|
148
124
|
readonly config: S3OutpostsClientResolvedConfig;
|
|
149
125
|
constructor(configuration: S3OutpostsClientConfig);
|
|
150
|
-
|
|
151
126
|
destroy(): void;
|
|
152
127
|
}
|
|
153
128
|
export {};
|
|
@@ -18,7 +18,6 @@ export interface CreateEndpointCommandInput extends CreateEndpointRequest {}
|
|
|
18
18
|
export interface CreateEndpointCommandOutput
|
|
19
19
|
extends CreateEndpointResult,
|
|
20
20
|
__MetadataBearer {}
|
|
21
|
-
|
|
22
21
|
export declare class CreateEndpointCommand extends $Command<
|
|
23
22
|
CreateEndpointCommandInput,
|
|
24
23
|
CreateEndpointCommandOutput,
|
|
@@ -26,7 +25,6 @@ export declare class CreateEndpointCommand extends $Command<
|
|
|
26
25
|
> {
|
|
27
26
|
readonly input: CreateEndpointCommandInput;
|
|
28
27
|
constructor(input: CreateEndpointCommandInput);
|
|
29
|
-
|
|
30
28
|
resolveMiddleware(
|
|
31
29
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
30
|
configuration: S3OutpostsClientResolvedConfig,
|
|
@@ -13,7 +13,6 @@ import {
|
|
|
13
13
|
} from "../S3OutpostsClient";
|
|
14
14
|
export interface DeleteEndpointCommandInput extends DeleteEndpointRequest {}
|
|
15
15
|
export interface DeleteEndpointCommandOutput extends __MetadataBearer {}
|
|
16
|
-
|
|
17
16
|
export declare class DeleteEndpointCommand extends $Command<
|
|
18
17
|
DeleteEndpointCommandInput,
|
|
19
18
|
DeleteEndpointCommandOutput,
|
|
@@ -21,7 +20,6 @@ export declare class DeleteEndpointCommand extends $Command<
|
|
|
21
20
|
> {
|
|
22
21
|
readonly input: DeleteEndpointCommandInput;
|
|
23
22
|
constructor(input: DeleteEndpointCommandInput);
|
|
24
|
-
|
|
25
23
|
resolveMiddleware(
|
|
26
24
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
25
|
configuration: S3OutpostsClientResolvedConfig,
|
|
@@ -15,7 +15,6 @@ export interface ListEndpointsCommandInput extends ListEndpointsRequest {}
|
|
|
15
15
|
export interface ListEndpointsCommandOutput
|
|
16
16
|
extends ListEndpointsResult,
|
|
17
17
|
__MetadataBearer {}
|
|
18
|
-
|
|
19
18
|
export declare class ListEndpointsCommand extends $Command<
|
|
20
19
|
ListEndpointsCommandInput,
|
|
21
20
|
ListEndpointsCommandOutput,
|
|
@@ -23,7 +22,6 @@ export declare class ListEndpointsCommand extends $Command<
|
|
|
23
22
|
> {
|
|
24
23
|
readonly input: ListEndpointsCommandInput;
|
|
25
24
|
constructor(input: ListEndpointsCommandInput);
|
|
26
|
-
|
|
27
25
|
resolveMiddleware(
|
|
28
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
27
|
configuration: S3OutpostsClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface ListSharedEndpointsCommandInput
|
|
|
19
19
|
export interface ListSharedEndpointsCommandOutput
|
|
20
20
|
extends ListSharedEndpointsResult,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class ListSharedEndpointsCommand extends $Command<
|
|
24
23
|
ListSharedEndpointsCommandInput,
|
|
25
24
|
ListSharedEndpointsCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class ListSharedEndpointsCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: ListSharedEndpointsCommandInput;
|
|
29
28
|
constructor(input: ListSharedEndpointsCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: S3OutpostsClientResolvedConfig,
|
|
@@ -2,7 +2,6 @@ import {
|
|
|
2
2
|
ServiceException as __ServiceException,
|
|
3
3
|
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
4
|
} from "@aws-sdk/smithy-client";
|
|
5
|
-
|
|
6
5
|
export declare class S3OutpostsServiceException extends __ServiceException {
|
|
7
6
|
constructor(options: __ServiceExceptionOptions);
|
|
8
7
|
}
|
|
@@ -1,21 +1,17 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { S3OutpostsServiceException as __BaseException } from "./S3OutpostsServiceException";
|
|
3
|
-
|
|
4
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
5
4
|
readonly name: "AccessDeniedException";
|
|
6
5
|
readonly $fault: "client";
|
|
7
6
|
Message?: string;
|
|
8
|
-
|
|
9
7
|
constructor(
|
|
10
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
11
9
|
);
|
|
12
10
|
}
|
|
13
|
-
|
|
14
11
|
export declare class ConflictException extends __BaseException {
|
|
15
12
|
readonly name: "ConflictException";
|
|
16
13
|
readonly $fault: "client";
|
|
17
14
|
Message?: string;
|
|
18
|
-
|
|
19
15
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
20
16
|
}
|
|
21
17
|
export declare enum EndpointAccessType {
|
|
@@ -24,54 +20,42 @@ export declare enum EndpointAccessType {
|
|
|
24
20
|
}
|
|
25
21
|
export interface CreateEndpointRequest {
|
|
26
22
|
OutpostId: string | undefined;
|
|
27
|
-
|
|
28
23
|
SubnetId: string | undefined;
|
|
29
|
-
|
|
30
24
|
SecurityGroupId: string | undefined;
|
|
31
|
-
|
|
32
25
|
AccessType?: EndpointAccessType | string;
|
|
33
|
-
|
|
34
26
|
CustomerOwnedIpv4Pool?: string;
|
|
35
27
|
}
|
|
36
28
|
export interface CreateEndpointResult {
|
|
37
29
|
EndpointArn?: string;
|
|
38
30
|
}
|
|
39
|
-
|
|
40
31
|
export declare class InternalServerException extends __BaseException {
|
|
41
32
|
readonly name: "InternalServerException";
|
|
42
33
|
readonly $fault: "server";
|
|
43
34
|
Message?: string;
|
|
44
|
-
|
|
45
35
|
constructor(
|
|
46
36
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
47
37
|
);
|
|
48
38
|
}
|
|
49
|
-
|
|
50
39
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
51
40
|
readonly name: "ResourceNotFoundException";
|
|
52
41
|
readonly $fault: "client";
|
|
53
42
|
Message?: string;
|
|
54
|
-
|
|
55
43
|
constructor(
|
|
56
44
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
57
45
|
);
|
|
58
46
|
}
|
|
59
|
-
|
|
60
47
|
export declare class ValidationException extends __BaseException {
|
|
61
48
|
readonly name: "ValidationException";
|
|
62
49
|
readonly $fault: "client";
|
|
63
50
|
Message?: string;
|
|
64
|
-
|
|
65
51
|
constructor(
|
|
66
52
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
67
53
|
);
|
|
68
54
|
}
|
|
69
55
|
export interface DeleteEndpointRequest {
|
|
70
56
|
EndpointId: string | undefined;
|
|
71
|
-
|
|
72
57
|
OutpostId: string | undefined;
|
|
73
58
|
}
|
|
74
|
-
|
|
75
59
|
export interface NetworkInterface {
|
|
76
60
|
NetworkInterfaceId?: string;
|
|
77
61
|
}
|
|
@@ -80,83 +64,58 @@ export declare enum EndpointStatus {
|
|
|
80
64
|
DELETING = "Deleting",
|
|
81
65
|
PENDING = "Pending",
|
|
82
66
|
}
|
|
83
|
-
|
|
84
67
|
export interface Endpoint {
|
|
85
68
|
EndpointArn?: string;
|
|
86
|
-
|
|
87
69
|
OutpostsId?: string;
|
|
88
|
-
|
|
89
70
|
CidrBlock?: string;
|
|
90
|
-
|
|
91
71
|
Status?: EndpointStatus | string;
|
|
92
|
-
|
|
93
72
|
CreationTime?: Date;
|
|
94
|
-
|
|
95
73
|
NetworkInterfaces?: NetworkInterface[];
|
|
96
|
-
|
|
97
74
|
VpcId?: string;
|
|
98
|
-
|
|
99
75
|
SubnetId?: string;
|
|
100
|
-
|
|
101
76
|
SecurityGroupId?: string;
|
|
102
|
-
|
|
103
77
|
AccessType?: EndpointAccessType | string;
|
|
104
|
-
|
|
105
78
|
CustomerOwnedIpv4Pool?: string;
|
|
106
79
|
}
|
|
107
80
|
export interface ListEndpointsRequest {
|
|
108
81
|
NextToken?: string;
|
|
109
|
-
|
|
110
82
|
MaxResults?: number;
|
|
111
83
|
}
|
|
112
84
|
export interface ListEndpointsResult {
|
|
113
85
|
Endpoints?: Endpoint[];
|
|
114
|
-
|
|
115
86
|
NextToken?: string;
|
|
116
87
|
}
|
|
117
88
|
export interface ListSharedEndpointsRequest {
|
|
118
89
|
NextToken?: string;
|
|
119
|
-
|
|
120
90
|
MaxResults?: number;
|
|
121
|
-
|
|
122
91
|
OutpostId: string | undefined;
|
|
123
92
|
}
|
|
124
93
|
export interface ListSharedEndpointsResult {
|
|
125
94
|
Endpoints?: Endpoint[];
|
|
126
|
-
|
|
127
95
|
NextToken?: string;
|
|
128
96
|
}
|
|
129
|
-
|
|
130
97
|
export declare const CreateEndpointRequestFilterSensitiveLog: (
|
|
131
98
|
obj: CreateEndpointRequest
|
|
132
99
|
) => any;
|
|
133
|
-
|
|
134
100
|
export declare const CreateEndpointResultFilterSensitiveLog: (
|
|
135
101
|
obj: CreateEndpointResult
|
|
136
102
|
) => any;
|
|
137
|
-
|
|
138
103
|
export declare const DeleteEndpointRequestFilterSensitiveLog: (
|
|
139
104
|
obj: DeleteEndpointRequest
|
|
140
105
|
) => any;
|
|
141
|
-
|
|
142
106
|
export declare const NetworkInterfaceFilterSensitiveLog: (
|
|
143
107
|
obj: NetworkInterface
|
|
144
108
|
) => any;
|
|
145
|
-
|
|
146
109
|
export declare const EndpointFilterSensitiveLog: (obj: Endpoint) => any;
|
|
147
|
-
|
|
148
110
|
export declare const ListEndpointsRequestFilterSensitiveLog: (
|
|
149
111
|
obj: ListEndpointsRequest
|
|
150
112
|
) => any;
|
|
151
|
-
|
|
152
113
|
export declare const ListEndpointsResultFilterSensitiveLog: (
|
|
153
114
|
obj: ListEndpointsResult
|
|
154
115
|
) => any;
|
|
155
|
-
|
|
156
116
|
export declare const ListSharedEndpointsRequestFilterSensitiveLog: (
|
|
157
117
|
obj: ListSharedEndpointsRequest
|
|
158
118
|
) => any;
|
|
159
|
-
|
|
160
119
|
export declare const ListSharedEndpointsResultFilterSensitiveLog: (
|
|
161
120
|
obj: ListSharedEndpointsResult
|
|
162
121
|
) => any;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { S3OutpostsClientConfig } from "./S3OutpostsClient";
|
|
3
|
-
|
|
4
3
|
export declare const getRuntimeConfig: (config: S3OutpostsClientConfig) => {
|
|
5
4
|
runtime: string;
|
|
6
5
|
defaultsMode: import("@aws-sdk/types").Provider<
|
|
@@ -51,7 +50,9 @@ export declare const getRuntimeConfig: (config: S3OutpostsClientConfig) => {
|
|
|
51
50
|
| undefined;
|
|
52
51
|
signer?:
|
|
53
52
|
| import("@aws-sdk/types").RequestSigner
|
|
54
|
-
|
|
|
53
|
+
| ((
|
|
54
|
+
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
55
|
+
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
55
56
|
| undefined;
|
|
56
57
|
signingEscapePath?: boolean | undefined;
|
|
57
58
|
systemClockOffset?: number | undefined;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { S3OutpostsClientConfig } from "./S3OutpostsClient";
|
|
3
|
-
|
|
4
3
|
export declare const getRuntimeConfig: (config: S3OutpostsClientConfig) => {
|
|
5
4
|
runtime: string;
|
|
6
5
|
defaultsMode: import("@aws-sdk/types").Provider<
|
|
@@ -51,7 +50,9 @@ export declare const getRuntimeConfig: (config: S3OutpostsClientConfig) => {
|
|
|
51
50
|
| undefined;
|
|
52
51
|
signer?:
|
|
53
52
|
| import("@aws-sdk/types").RequestSigner
|
|
54
|
-
|
|
|
53
|
+
| ((
|
|
54
|
+
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
55
|
+
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
55
56
|
| undefined;
|
|
56
57
|
signingEscapePath?: boolean | undefined;
|
|
57
58
|
systemClockOffset?: number | undefined;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { S3OutpostsClientConfig } from "./S3OutpostsClient";
|
|
2
|
-
|
|
3
2
|
export declare const getRuntimeConfig: (config: S3OutpostsClientConfig) => {
|
|
4
3
|
runtime: string;
|
|
5
4
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
@@ -52,7 +51,9 @@ export declare const getRuntimeConfig: (config: S3OutpostsClientConfig) => {
|
|
|
52
51
|
| undefined;
|
|
53
52
|
signer?:
|
|
54
53
|
| import("@aws-sdk/types").RequestSigner
|
|
55
|
-
|
|
|
54
|
+
| ((
|
|
55
|
+
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
56
|
+
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
56
57
|
| undefined;
|
|
57
58
|
signingEscapePath?: boolean | undefined;
|
|
58
59
|
systemClockOffset?: number | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-s3outposts",
|
|
3
3
|
"description": "AWS SDK for JavaScript S3outposts Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.178.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -19,35 +19,35 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
30
|
-
"@aws-sdk/middleware-logger": "3.
|
|
31
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
32
|
-
"@aws-sdk/middleware-retry": "3.
|
|
33
|
-
"@aws-sdk/middleware-serde": "3.
|
|
34
|
-
"@aws-sdk/middleware-signing": "3.
|
|
35
|
-
"@aws-sdk/middleware-stack": "3.
|
|
36
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
37
|
-
"@aws-sdk/node-config-provider": "3.
|
|
38
|
-
"@aws-sdk/node-http-handler": "3.
|
|
39
|
-
"@aws-sdk/protocol-http": "3.
|
|
40
|
-
"@aws-sdk/smithy-client": "3.
|
|
41
|
-
"@aws-sdk/types": "3.
|
|
42
|
-
"@aws-sdk/url-parser": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.178.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.178.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.178.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.178.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.178.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.178.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.178.0",
|
|
29
|
+
"@aws-sdk/middleware-host-header": "3.178.0",
|
|
30
|
+
"@aws-sdk/middleware-logger": "3.178.0",
|
|
31
|
+
"@aws-sdk/middleware-recursion-detection": "3.178.0",
|
|
32
|
+
"@aws-sdk/middleware-retry": "3.178.0",
|
|
33
|
+
"@aws-sdk/middleware-serde": "3.178.0",
|
|
34
|
+
"@aws-sdk/middleware-signing": "3.178.0",
|
|
35
|
+
"@aws-sdk/middleware-stack": "3.178.0",
|
|
36
|
+
"@aws-sdk/middleware-user-agent": "3.178.0",
|
|
37
|
+
"@aws-sdk/node-config-provider": "3.178.0",
|
|
38
|
+
"@aws-sdk/node-http-handler": "3.178.0",
|
|
39
|
+
"@aws-sdk/protocol-http": "3.178.0",
|
|
40
|
+
"@aws-sdk/smithy-client": "3.178.0",
|
|
41
|
+
"@aws-sdk/types": "3.178.0",
|
|
42
|
+
"@aws-sdk/url-parser": "3.178.0",
|
|
43
43
|
"@aws-sdk/util-base64-browser": "3.170.0",
|
|
44
44
|
"@aws-sdk/util-base64-node": "3.170.0",
|
|
45
45
|
"@aws-sdk/util-body-length-browser": "3.170.0",
|
|
46
46
|
"@aws-sdk/util-body-length-node": "3.170.0",
|
|
47
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
50
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.178.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.178.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-browser": "3.178.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-node": "3.178.0",
|
|
51
51
|
"@aws-sdk/util-utf8-browser": "3.170.0",
|
|
52
52
|
"@aws-sdk/util-utf8-node": "3.170.0",
|
|
53
53
|
"tslib": "^2.3.1"
|