@aws-sdk/client-s3outposts 3.321.1 → 3.326.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-types/commands/CreateEndpointCommand.d.ts +6 -0
- package/dist-types/commands/DeleteEndpointCommand.d.ts +4 -0
- package/dist-types/commands/ListEndpointsCommand.d.ts +29 -0
- package/dist-types/commands/ListOutpostsWithS3Command.d.ts +14 -0
- package/dist-types/commands/ListSharedEndpointsCommand.d.ts +29 -0
- package/package.json +16 -16
|
@@ -52,6 +52,10 @@ export interface CreateEndpointCommandOutput extends CreateEndpointResult, __Met
|
|
|
52
52
|
* };
|
|
53
53
|
* const command = new CreateEndpointCommand(input);
|
|
54
54
|
* const response = await client.send(command);
|
|
55
|
+
* // { // CreateEndpointResult
|
|
56
|
+
* // EndpointArn: "STRING_VALUE",
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
55
59
|
* ```
|
|
56
60
|
*
|
|
57
61
|
* @param CreateEndpointCommandInput - {@link CreateEndpointCommandInput}
|
|
@@ -81,6 +85,8 @@ export interface CreateEndpointCommandOutput extends CreateEndpointResult, __Met
|
|
|
81
85
|
* @throws {@link ValidationException} (client fault)
|
|
82
86
|
* <p>There was an exception validating this data.</p>
|
|
83
87
|
*
|
|
88
|
+
* @throws {@link S3OutpostsServiceException}
|
|
89
|
+
* <p>Base exception class for all service exceptions from S3Outposts service.</p>
|
|
84
90
|
*
|
|
85
91
|
*/
|
|
86
92
|
export declare class CreateEndpointCommand extends $Command<CreateEndpointCommandInput, CreateEndpointCommandOutput, S3OutpostsClientResolvedConfig> {
|
|
@@ -49,6 +49,8 @@ export interface DeleteEndpointCommandOutput extends __MetadataBearer {
|
|
|
49
49
|
* };
|
|
50
50
|
* const command = new DeleteEndpointCommand(input);
|
|
51
51
|
* const response = await client.send(command);
|
|
52
|
+
* // {};
|
|
53
|
+
*
|
|
52
54
|
* ```
|
|
53
55
|
*
|
|
54
56
|
* @param DeleteEndpointCommandInput - {@link DeleteEndpointCommandInput}
|
|
@@ -75,6 +77,8 @@ export interface DeleteEndpointCommandOutput extends __MetadataBearer {
|
|
|
75
77
|
* @throws {@link ValidationException} (client fault)
|
|
76
78
|
* <p>There was an exception validating this data.</p>
|
|
77
79
|
*
|
|
80
|
+
* @throws {@link S3OutpostsServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from S3Outposts service.</p>
|
|
78
82
|
*
|
|
79
83
|
*/
|
|
80
84
|
export declare class DeleteEndpointCommand extends $Command<DeleteEndpointCommandInput, DeleteEndpointCommandOutput, S3OutpostsClientResolvedConfig> {
|
|
@@ -45,6 +45,33 @@ export interface ListEndpointsCommandOutput extends ListEndpointsResult, __Metad
|
|
|
45
45
|
* };
|
|
46
46
|
* const command = new ListEndpointsCommand(input);
|
|
47
47
|
* const response = await client.send(command);
|
|
48
|
+
* // { // ListEndpointsResult
|
|
49
|
+
* // Endpoints: [ // Endpoints
|
|
50
|
+
* // { // Endpoint
|
|
51
|
+
* // EndpointArn: "STRING_VALUE",
|
|
52
|
+
* // OutpostsId: "STRING_VALUE",
|
|
53
|
+
* // CidrBlock: "STRING_VALUE",
|
|
54
|
+
* // Status: "Pending" || "Available" || "Deleting" || "Create_Failed" || "Delete_Failed",
|
|
55
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
56
|
+
* // NetworkInterfaces: [ // NetworkInterfaces
|
|
57
|
+
* // { // NetworkInterface
|
|
58
|
+
* // NetworkInterfaceId: "STRING_VALUE",
|
|
59
|
+
* // },
|
|
60
|
+
* // ],
|
|
61
|
+
* // VpcId: "STRING_VALUE",
|
|
62
|
+
* // SubnetId: "STRING_VALUE",
|
|
63
|
+
* // SecurityGroupId: "STRING_VALUE",
|
|
64
|
+
* // AccessType: "Private" || "CustomerOwnedIp",
|
|
65
|
+
* // CustomerOwnedIpv4Pool: "STRING_VALUE",
|
|
66
|
+
* // FailedReason: { // FailedReason
|
|
67
|
+
* // ErrorCode: "STRING_VALUE",
|
|
68
|
+
* // Message: "STRING_VALUE",
|
|
69
|
+
* // },
|
|
70
|
+
* // },
|
|
71
|
+
* // ],
|
|
72
|
+
* // NextToken: "STRING_VALUE",
|
|
73
|
+
* // };
|
|
74
|
+
*
|
|
48
75
|
* ```
|
|
49
76
|
*
|
|
50
77
|
* @param ListEndpointsCommandInput - {@link ListEndpointsCommandInput}
|
|
@@ -68,6 +95,8 @@ export interface ListEndpointsCommandOutput extends ListEndpointsResult, __Metad
|
|
|
68
95
|
* @throws {@link ValidationException} (client fault)
|
|
69
96
|
* <p>There was an exception validating this data.</p>
|
|
70
97
|
*
|
|
98
|
+
* @throws {@link S3OutpostsServiceException}
|
|
99
|
+
* <p>Base exception class for all service exceptions from S3Outposts service.</p>
|
|
71
100
|
*
|
|
72
101
|
*/
|
|
73
102
|
export declare class ListEndpointsCommand extends $Command<ListEndpointsCommandInput, ListEndpointsCommandOutput, S3OutpostsClientResolvedConfig> {
|
|
@@ -34,6 +34,18 @@ export interface ListOutpostsWithS3CommandOutput extends ListOutpostsWithS3Resul
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListOutpostsWithS3Command(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListOutpostsWithS3Result
|
|
38
|
+
* // Outposts: [ // Outposts
|
|
39
|
+
* // { // Outpost
|
|
40
|
+
* // OutpostArn: "STRING_VALUE",
|
|
41
|
+
* // OutpostId: "STRING_VALUE",
|
|
42
|
+
* // OwnerId: "STRING_VALUE",
|
|
43
|
+
* // CapacityInBytes: Number("long"),
|
|
44
|
+
* // },
|
|
45
|
+
* // ],
|
|
46
|
+
* // NextToken: "STRING_VALUE",
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
37
49
|
* ```
|
|
38
50
|
*
|
|
39
51
|
* @param ListOutpostsWithS3CommandInput - {@link ListOutpostsWithS3CommandInput}
|
|
@@ -54,6 +66,8 @@ export interface ListOutpostsWithS3CommandOutput extends ListOutpostsWithS3Resul
|
|
|
54
66
|
* @throws {@link ValidationException} (client fault)
|
|
55
67
|
* <p>There was an exception validating this data.</p>
|
|
56
68
|
*
|
|
69
|
+
* @throws {@link S3OutpostsServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from S3Outposts service.</p>
|
|
57
71
|
*
|
|
58
72
|
*/
|
|
59
73
|
export declare class ListOutpostsWithS3Command extends $Command<ListOutpostsWithS3CommandInput, ListOutpostsWithS3CommandOutput, S3OutpostsClientResolvedConfig> {
|
|
@@ -46,6 +46,33 @@ export interface ListSharedEndpointsCommandOutput extends ListSharedEndpointsRes
|
|
|
46
46
|
* };
|
|
47
47
|
* const command = new ListSharedEndpointsCommand(input);
|
|
48
48
|
* const response = await client.send(command);
|
|
49
|
+
* // { // ListSharedEndpointsResult
|
|
50
|
+
* // Endpoints: [ // Endpoints
|
|
51
|
+
* // { // Endpoint
|
|
52
|
+
* // EndpointArn: "STRING_VALUE",
|
|
53
|
+
* // OutpostsId: "STRING_VALUE",
|
|
54
|
+
* // CidrBlock: "STRING_VALUE",
|
|
55
|
+
* // Status: "Pending" || "Available" || "Deleting" || "Create_Failed" || "Delete_Failed",
|
|
56
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
57
|
+
* // NetworkInterfaces: [ // NetworkInterfaces
|
|
58
|
+
* // { // NetworkInterface
|
|
59
|
+
* // NetworkInterfaceId: "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // VpcId: "STRING_VALUE",
|
|
63
|
+
* // SubnetId: "STRING_VALUE",
|
|
64
|
+
* // SecurityGroupId: "STRING_VALUE",
|
|
65
|
+
* // AccessType: "Private" || "CustomerOwnedIp",
|
|
66
|
+
* // CustomerOwnedIpv4Pool: "STRING_VALUE",
|
|
67
|
+
* // FailedReason: { // FailedReason
|
|
68
|
+
* // ErrorCode: "STRING_VALUE",
|
|
69
|
+
* // Message: "STRING_VALUE",
|
|
70
|
+
* // },
|
|
71
|
+
* // },
|
|
72
|
+
* // ],
|
|
73
|
+
* // NextToken: "STRING_VALUE",
|
|
74
|
+
* // };
|
|
75
|
+
*
|
|
49
76
|
* ```
|
|
50
77
|
*
|
|
51
78
|
* @param ListSharedEndpointsCommandInput - {@link ListSharedEndpointsCommandInput}
|
|
@@ -69,6 +96,8 @@ export interface ListSharedEndpointsCommandOutput extends ListSharedEndpointsRes
|
|
|
69
96
|
* @throws {@link ValidationException} (client fault)
|
|
70
97
|
* <p>There was an exception validating this data.</p>
|
|
71
98
|
*
|
|
99
|
+
* @throws {@link S3OutpostsServiceException}
|
|
100
|
+
* <p>Base exception class for all service exceptions from S3Outposts service.</p>
|
|
72
101
|
*
|
|
73
102
|
*/
|
|
74
103
|
export declare class ListSharedEndpointsCommand extends $Command<ListSharedEndpointsCommandInput, ListSharedEndpointsCommandOutput, S3OutpostsClientResolvedConfig> {
|
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.326.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",
|
|
@@ -21,33 +21,33 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.325.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.325.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.325.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.325.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.325.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|