@aws-sdk/client-s3outposts 3.54.1 → 3.58.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 +27 -0
- package/dist-cjs/S3Outposts.js +15 -0
- package/dist-cjs/S3OutpostsClient.js +13 -13
- package/dist-cjs/commands/CreateEndpointCommand.js +3 -3
- package/dist-cjs/commands/DeleteEndpointCommand.js +3 -3
- package/dist-cjs/commands/ListEndpointsCommand.js +3 -3
- package/dist-cjs/commands/ListSharedEndpointsCommand.js +36 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/endpoints.js +1 -1
- package/dist-cjs/models/models_0.js +13 -1
- package/dist-cjs/pagination/ListSharedEndpointsPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +101 -29
- package/dist-cjs/runtimeConfig.browser.js +4 -4
- package/dist-cjs/runtimeConfig.js +9 -9
- package/dist-cjs/runtimeConfig.native.js +1 -1
- package/dist-es/S3Outposts.js +18 -3
- package/dist-es/commands/ListSharedEndpointsCommand.js +39 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +8 -0
- package/dist-es/pagination/ListEndpointsPaginator.js +4 -4
- package/dist-es/pagination/ListSharedEndpointsPaginator.js +74 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +98 -3
- package/dist-types/S3Outposts.d.ts +27 -21
- package/dist-types/S3OutpostsClient.d.ts +3 -2
- package/dist-types/commands/CreateEndpointCommand.d.ts +2 -6
- package/dist-types/commands/DeleteEndpointCommand.d.ts +2 -6
- package/dist-types/commands/ListEndpointsCommand.d.ts +3 -9
- package/dist-types/commands/ListSharedEndpointsCommand.d.ts +48 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +64 -18
- package/dist-types/pagination/ListSharedEndpointsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +3 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/S3Outposts.d.ts +5 -0
- package/dist-types/ts3.4/S3OutpostsClient.d.ts +3 -2
- package/dist-types/ts3.4/commands/ListSharedEndpointsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +22 -0
- package/dist-types/ts3.4/pagination/ListSharedEndpointsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +3 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
- package/package.json +34 -34
|
@@ -30,12 +30,12 @@ export declare enum EndpointAccessType {
|
|
|
30
30
|
}
|
|
31
31
|
export interface CreateEndpointRequest {
|
|
32
32
|
/**
|
|
33
|
-
* <p>The ID of the
|
|
33
|
+
* <p>The ID of the Outposts. </p>
|
|
34
34
|
*/
|
|
35
35
|
OutpostId: string | undefined;
|
|
36
36
|
/**
|
|
37
|
-
* <p>The ID of the subnet in the selected VPC. The endpoint subnet
|
|
38
|
-
*
|
|
37
|
+
* <p>The ID of the subnet in the selected VPC. The endpoint subnet must belong to the Outpost
|
|
38
|
+
* that has Amazon S3 on Outposts provisioned.</p>
|
|
39
39
|
*/
|
|
40
40
|
SubnetId: string | undefined;
|
|
41
41
|
/**
|
|
@@ -43,14 +43,20 @@ export interface CreateEndpointRequest {
|
|
|
43
43
|
*/
|
|
44
44
|
SecurityGroupId: string | undefined;
|
|
45
45
|
/**
|
|
46
|
-
* <p>The type of access for the
|
|
47
|
-
*
|
|
48
|
-
*
|
|
46
|
+
* <p>The type of access for the network connectivity for the Amazon S3 on Outposts endpoint. To use
|
|
47
|
+
* the Amazon Web Services VPC, choose <code>Private</code>. To use the endpoint with an on-premises
|
|
48
|
+
* network, choose <code>CustomerOwnedIp</code>. If you choose
|
|
49
|
+
* <code>CustomerOwnedIp</code>, you must also provide the customer-owned IP address
|
|
50
|
+
* pool (CoIP pool).</p>
|
|
51
|
+
* <note>
|
|
52
|
+
* <p>
|
|
53
|
+
* <code>Private</code> is the default access type value.</p>
|
|
54
|
+
* </note>
|
|
49
55
|
*/
|
|
50
56
|
AccessType?: EndpointAccessType | string;
|
|
51
57
|
/**
|
|
52
|
-
* <p>The ID of the customer-owned IPv4 pool for the endpoint.
|
|
53
|
-
*
|
|
58
|
+
* <p>The ID of the customer-owned IPv4 address pool (CoIP pool) for the endpoint. IP addresses
|
|
59
|
+
* are allocated from this pool for the endpoint.</p>
|
|
54
60
|
*/
|
|
55
61
|
CustomerOwnedIpv4Pool?: string;
|
|
56
62
|
}
|
|
@@ -114,7 +120,7 @@ export interface DeleteEndpointRequest {
|
|
|
114
120
|
*/
|
|
115
121
|
EndpointId: string | undefined;
|
|
116
122
|
/**
|
|
117
|
-
* <p>The ID of the
|
|
123
|
+
* <p>The ID of the Outposts. </p>
|
|
118
124
|
*/
|
|
119
125
|
OutpostId: string | undefined;
|
|
120
126
|
}
|
|
@@ -147,8 +153,8 @@ export declare enum EndpointStatus {
|
|
|
147
153
|
/**
|
|
148
154
|
* <p>Amazon S3 on Outposts Access Points simplify managing data access at scale for shared datasets in S3 on Outposts.
|
|
149
155
|
* S3 on Outposts uses endpoints to connect to Outposts buckets so that you can perform actions within your
|
|
150
|
-
* virtual private cloud (VPC). For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/
|
|
151
|
-
* Accessing S3 on Outposts using VPC
|
|
156
|
+
* virtual private cloud (VPC). For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/WorkingWithS3Outposts.html">
|
|
157
|
+
* Accessing S3 on Outposts using VPC-only access points</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p>
|
|
152
158
|
*/
|
|
153
159
|
export interface Endpoint {
|
|
154
160
|
/**
|
|
@@ -156,7 +162,7 @@ export interface Endpoint {
|
|
|
156
162
|
*/
|
|
157
163
|
EndpointArn?: string;
|
|
158
164
|
/**
|
|
159
|
-
* <p>The ID of the
|
|
165
|
+
* <p>The ID of the Outposts.</p>
|
|
160
166
|
*/
|
|
161
167
|
OutpostsId?: string;
|
|
162
168
|
/**
|
|
@@ -188,11 +194,11 @@ export interface Endpoint {
|
|
|
188
194
|
*/
|
|
189
195
|
SecurityGroupId?: string;
|
|
190
196
|
/**
|
|
191
|
-
* <p
|
|
197
|
+
* <p>The type of connectivity used to access the Amazon S3 on Outposts endpoint.</p>
|
|
192
198
|
*/
|
|
193
199
|
AccessType?: EndpointAccessType | string;
|
|
194
200
|
/**
|
|
195
|
-
* <p>The ID of the customer-owned IPv4 pool used for the endpoint.</p>
|
|
201
|
+
* <p>The ID of the customer-owned IPv4 address pool used for the endpoint.</p>
|
|
196
202
|
*/
|
|
197
203
|
CustomerOwnedIpv4Pool?: string;
|
|
198
204
|
}
|
|
@@ -204,11 +210,12 @@ export declare namespace Endpoint {
|
|
|
204
210
|
}
|
|
205
211
|
export interface ListEndpointsRequest {
|
|
206
212
|
/**
|
|
207
|
-
* <p>
|
|
213
|
+
* <p>If a previous response from this operation included a <code>NextToken</code> value,
|
|
214
|
+
* provide that value here to retrieve the next page of results.</p>
|
|
208
215
|
*/
|
|
209
216
|
NextToken?: string;
|
|
210
217
|
/**
|
|
211
|
-
* <p>The
|
|
218
|
+
* <p>The maximum number of endpoints that will be returned in the response.</p>
|
|
212
219
|
*/
|
|
213
220
|
MaxResults?: number;
|
|
214
221
|
}
|
|
@@ -220,11 +227,12 @@ export declare namespace ListEndpointsRequest {
|
|
|
220
227
|
}
|
|
221
228
|
export interface ListEndpointsResult {
|
|
222
229
|
/**
|
|
223
|
-
* <p>
|
|
230
|
+
* <p>The list of endpoints associated with the specified Outpost.</p>
|
|
224
231
|
*/
|
|
225
232
|
Endpoints?: Endpoint[];
|
|
226
233
|
/**
|
|
227
|
-
* <p>
|
|
234
|
+
* <p>If the number of endpoints associated with the specified Outpost exceeds <code>MaxResults</code>,
|
|
235
|
+
* you can include this value in subsequent calls to this operation to retrieve more results.</p>
|
|
228
236
|
*/
|
|
229
237
|
NextToken?: string;
|
|
230
238
|
}
|
|
@@ -234,3 +242,41 @@ export declare namespace ListEndpointsResult {
|
|
|
234
242
|
*/
|
|
235
243
|
const filterSensitiveLog: (obj: ListEndpointsResult) => any;
|
|
236
244
|
}
|
|
245
|
+
export interface ListSharedEndpointsRequest {
|
|
246
|
+
/**
|
|
247
|
+
* <p>If a previous response from this operation included a <code>NextToken</code> value, you
|
|
248
|
+
* can provide that value here to retrieve the next page of results.</p>
|
|
249
|
+
*/
|
|
250
|
+
NextToken?: string;
|
|
251
|
+
/**
|
|
252
|
+
* <p>The maximum number of endpoints that will be returned in the response.</p>
|
|
253
|
+
*/
|
|
254
|
+
MaxResults?: number;
|
|
255
|
+
/**
|
|
256
|
+
* <p>The ID of the Amazon Web Services Outpost.</p>
|
|
257
|
+
*/
|
|
258
|
+
OutpostId: string | undefined;
|
|
259
|
+
}
|
|
260
|
+
export declare namespace ListSharedEndpointsRequest {
|
|
261
|
+
/**
|
|
262
|
+
* @internal
|
|
263
|
+
*/
|
|
264
|
+
const filterSensitiveLog: (obj: ListSharedEndpointsRequest) => any;
|
|
265
|
+
}
|
|
266
|
+
export interface ListSharedEndpointsResult {
|
|
267
|
+
/**
|
|
268
|
+
* <p>The list of endpoints associated with the specified Outpost that have been shared by Amazon Web Services Resource Access Manager (RAM).</p>
|
|
269
|
+
*/
|
|
270
|
+
Endpoints?: Endpoint[];
|
|
271
|
+
/**
|
|
272
|
+
* <p>If the number of endpoints associated with the specified Outpost exceeds <code>MaxResults</code>,
|
|
273
|
+
* you can include this value in subsequent calls to this operation to retrieve more results.</p>
|
|
274
|
+
*/
|
|
275
|
+
NextToken?: string;
|
|
276
|
+
}
|
|
277
|
+
export declare namespace ListSharedEndpointsResult {
|
|
278
|
+
/**
|
|
279
|
+
* @internal
|
|
280
|
+
*/
|
|
281
|
+
const filterSensitiveLog: (obj: ListSharedEndpointsResult) => any;
|
|
282
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListSharedEndpointsCommandInput, ListSharedEndpointsCommandOutput } from "../commands/ListSharedEndpointsCommand";
|
|
3
|
+
import { S3OutpostsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListSharedEndpoints(config: S3OutpostsPaginationConfiguration, input: ListSharedEndpointsCommandInput, ...additionalArguments: any): Paginator<ListSharedEndpointsCommandOutput>;
|
|
@@ -3,9 +3,12 @@ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
|
3
3
|
import { CreateEndpointCommandInput, CreateEndpointCommandOutput } from "../commands/CreateEndpointCommand";
|
|
4
4
|
import { DeleteEndpointCommandInput, DeleteEndpointCommandOutput } from "../commands/DeleteEndpointCommand";
|
|
5
5
|
import { ListEndpointsCommandInput, ListEndpointsCommandOutput } from "../commands/ListEndpointsCommand";
|
|
6
|
+
import { ListSharedEndpointsCommandInput, ListSharedEndpointsCommandOutput } from "../commands/ListSharedEndpointsCommand";
|
|
6
7
|
export declare const serializeAws_restJson1CreateEndpointCommand: (input: CreateEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
7
8
|
export declare const serializeAws_restJson1DeleteEndpointCommand: (input: DeleteEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
8
9
|
export declare const serializeAws_restJson1ListEndpointsCommand: (input: ListEndpointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
10
|
+
export declare const serializeAws_restJson1ListSharedEndpointsCommand: (input: ListSharedEndpointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
9
11
|
export declare const deserializeAws_restJson1CreateEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEndpointCommandOutput>;
|
|
10
12
|
export declare const deserializeAws_restJson1DeleteEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEndpointCommandOutput>;
|
|
11
13
|
export declare const deserializeAws_restJson1ListEndpointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEndpointsCommandOutput>;
|
|
14
|
+
export declare const deserializeAws_restJson1ListSharedEndpointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSharedEndpointsCommandOutput>;
|
|
@@ -21,11 +21,11 @@ export declare const getRuntimeConfig: (config: S3OutpostsClientConfig) => {
|
|
|
21
21
|
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
22
22
|
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
23
23
|
serviceId: string;
|
|
24
|
-
region: string | import("@aws-sdk/types").Provider<
|
|
24
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
25
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
26
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
27
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
|
-
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode
|
|
28
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
29
29
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
30
30
|
tls?: boolean | undefined;
|
|
31
31
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
@@ -2,6 +2,7 @@ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
|
2
2
|
import { CreateEndpointCommandInput, CreateEndpointCommandOutput } from "./commands/CreateEndpointCommand";
|
|
3
3
|
import { DeleteEndpointCommandInput, DeleteEndpointCommandOutput } from "./commands/DeleteEndpointCommand";
|
|
4
4
|
import { ListEndpointsCommandInput, ListEndpointsCommandOutput } from "./commands/ListEndpointsCommand";
|
|
5
|
+
import { ListSharedEndpointsCommandInput, ListSharedEndpointsCommandOutput } from "./commands/ListSharedEndpointsCommand";
|
|
5
6
|
import { S3OutpostsClient } from "./S3OutpostsClient";
|
|
6
7
|
|
|
7
8
|
export declare class S3Outposts extends S3OutpostsClient {
|
|
@@ -17,4 +18,8 @@ export declare class S3Outposts extends S3OutpostsClient {
|
|
|
17
18
|
listEndpoints(args: ListEndpointsCommandInput, options?: __HttpHandlerOptions): Promise<ListEndpointsCommandOutput>;
|
|
18
19
|
listEndpoints(args: ListEndpointsCommandInput, cb: (err: any, data?: ListEndpointsCommandOutput) => void): void;
|
|
19
20
|
listEndpoints(args: ListEndpointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEndpointsCommandOutput) => void): void;
|
|
21
|
+
|
|
22
|
+
listSharedEndpoints(args: ListSharedEndpointsCommandInput, options?: __HttpHandlerOptions): Promise<ListSharedEndpointsCommandOutput>;
|
|
23
|
+
listSharedEndpoints(args: ListSharedEndpointsCommandInput, cb: (err: any, data?: ListSharedEndpointsCommandOutput) => void): void;
|
|
24
|
+
listSharedEndpoints(args: ListSharedEndpointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSharedEndpointsCommandOutput) => void): void;
|
|
20
25
|
}
|
|
@@ -9,8 +9,9 @@ import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Creden
|
|
|
9
9
|
import { CreateEndpointCommandInput, CreateEndpointCommandOutput } from "./commands/CreateEndpointCommand";
|
|
10
10
|
import { DeleteEndpointCommandInput, DeleteEndpointCommandOutput } from "./commands/DeleteEndpointCommand";
|
|
11
11
|
import { ListEndpointsCommandInput, ListEndpointsCommandOutput } from "./commands/ListEndpointsCommand";
|
|
12
|
-
|
|
13
|
-
export declare type
|
|
12
|
+
import { ListSharedEndpointsCommandInput, ListSharedEndpointsCommandOutput } from "./commands/ListSharedEndpointsCommand";
|
|
13
|
+
export declare type ServiceInputTypes = CreateEndpointCommandInput | DeleteEndpointCommandInput | ListEndpointsCommandInput | ListSharedEndpointsCommandInput;
|
|
14
|
+
export declare type ServiceOutputTypes = CreateEndpointCommandOutput | DeleteEndpointCommandOutput | ListEndpointsCommandOutput | ListSharedEndpointsCommandOutput;
|
|
14
15
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
15
16
|
|
|
16
17
|
requestHandler?: __HttpHandler;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { ListSharedEndpointsRequest, ListSharedEndpointsResult } from "../models/models_0";
|
|
4
|
+
import { S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3OutpostsClient";
|
|
5
|
+
export interface ListSharedEndpointsCommandInput extends ListSharedEndpointsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListSharedEndpointsCommandOutput extends ListSharedEndpointsResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListSharedEndpointsCommand extends $Command<ListSharedEndpointsCommandInput, ListSharedEndpointsCommandOutput, S3OutpostsClientResolvedConfig> {
|
|
11
|
+
readonly input: ListSharedEndpointsCommandInput;
|
|
12
|
+
constructor(input: ListSharedEndpointsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: S3OutpostsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSharedEndpointsCommandInput, ListSharedEndpointsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -141,3 +141,25 @@ export declare namespace ListEndpointsResult {
|
|
|
141
141
|
|
|
142
142
|
const filterSensitiveLog: (obj: ListEndpointsResult) => any;
|
|
143
143
|
}
|
|
144
|
+
export interface ListSharedEndpointsRequest {
|
|
145
|
+
|
|
146
|
+
NextToken?: string;
|
|
147
|
+
|
|
148
|
+
MaxResults?: number;
|
|
149
|
+
|
|
150
|
+
OutpostId: string | undefined;
|
|
151
|
+
}
|
|
152
|
+
export declare namespace ListSharedEndpointsRequest {
|
|
153
|
+
|
|
154
|
+
const filterSensitiveLog: (obj: ListSharedEndpointsRequest) => any;
|
|
155
|
+
}
|
|
156
|
+
export interface ListSharedEndpointsResult {
|
|
157
|
+
|
|
158
|
+
Endpoints?: Endpoint[];
|
|
159
|
+
|
|
160
|
+
NextToken?: string;
|
|
161
|
+
}
|
|
162
|
+
export declare namespace ListSharedEndpointsResult {
|
|
163
|
+
|
|
164
|
+
const filterSensitiveLog: (obj: ListSharedEndpointsResult) => any;
|
|
165
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListSharedEndpointsCommandInput, ListSharedEndpointsCommandOutput } from "../commands/ListSharedEndpointsCommand";
|
|
3
|
+
import { S3OutpostsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListSharedEndpoints(config: S3OutpostsPaginationConfiguration, input: ListSharedEndpointsCommandInput, ...additionalArguments: any): Paginator<ListSharedEndpointsCommandOutput>;
|
|
@@ -3,9 +3,12 @@ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
|
3
3
|
import { CreateEndpointCommandInput, CreateEndpointCommandOutput } from "../commands/CreateEndpointCommand";
|
|
4
4
|
import { DeleteEndpointCommandInput, DeleteEndpointCommandOutput } from "../commands/DeleteEndpointCommand";
|
|
5
5
|
import { ListEndpointsCommandInput, ListEndpointsCommandOutput } from "../commands/ListEndpointsCommand";
|
|
6
|
+
import { ListSharedEndpointsCommandInput, ListSharedEndpointsCommandOutput } from "../commands/ListSharedEndpointsCommand";
|
|
6
7
|
export declare const serializeAws_restJson1CreateEndpointCommand: (input: CreateEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
7
8
|
export declare const serializeAws_restJson1DeleteEndpointCommand: (input: DeleteEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
8
9
|
export declare const serializeAws_restJson1ListEndpointsCommand: (input: ListEndpointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
10
|
+
export declare const serializeAws_restJson1ListSharedEndpointsCommand: (input: ListSharedEndpointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
9
11
|
export declare const deserializeAws_restJson1CreateEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEndpointCommandOutput>;
|
|
10
12
|
export declare const deserializeAws_restJson1DeleteEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEndpointCommandOutput>;
|
|
11
13
|
export declare const deserializeAws_restJson1ListEndpointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEndpointsCommandOutput>;
|
|
14
|
+
export declare const deserializeAws_restJson1ListSharedEndpointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSharedEndpointsCommandOutput>;
|
|
@@ -19,11 +19,11 @@ export declare const getRuntimeConfig: (config: S3OutpostsClientConfig) => {
|
|
|
19
19
|
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
20
|
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
21
|
serviceId: string;
|
|
22
|
-
region: string | import("@aws-sdk/types").Provider<
|
|
22
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
23
23
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
24
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
25
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
|
-
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode
|
|
26
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
27
27
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
28
28
|
tls?: boolean | undefined;
|
|
29
29
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | 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.58.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",
|
|
@@ -18,47 +18,47 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-node": "3.
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
51
|
-
"tslib": "^2.3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.58.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.58.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.58.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.58.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.55.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.55.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.58.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.58.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.55.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.58.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.55.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.58.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.55.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.58.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.58.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.58.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.58.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.55.0",
|
|
39
|
+
"@aws-sdk/types": "3.55.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.55.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.58.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.55.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.55.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.58.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.58.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.58.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.55.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.55.0",
|
|
51
|
+
"tslib": "^2.3.1"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
54
|
+
"@aws-sdk/service-client-documentation-generator": "3.58.0",
|
|
55
55
|
"@tsconfig/recommended": "1.0.1",
|
|
56
56
|
"@types/node": "^12.7.5",
|
|
57
57
|
"concurrently": "7.0.0",
|
|
58
58
|
"downlevel-dts": "0.7.0",
|
|
59
59
|
"rimraf": "3.0.2",
|
|
60
60
|
"typedoc": "0.19.2",
|
|
61
|
-
"typescript": "~4.
|
|
61
|
+
"typescript": "~4.6.2"
|
|
62
62
|
},
|
|
63
63
|
"engines": {
|
|
64
64
|
"node": ">=12.0.0"
|