@aws-sdk/client-s3outposts 3.301.0 → 3.303.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/models/models_0.js +11 -13
- package/dist-es/models/models_0.js +11 -13
- package/dist-types/models/models_0.d.ts +21 -11
- package/dist-types/ts3.4/models/models_0.d.ts +15 -11
- package/package.json +34 -34
|
@@ -30,11 +30,10 @@ class ConflictException extends S3OutpostsServiceException_1.S3OutpostsServiceEx
|
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
exports.ConflictException = ConflictException;
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
})(EndpointAccessType = exports.EndpointAccessType || (exports.EndpointAccessType = {}));
|
|
33
|
+
exports.EndpointAccessType = {
|
|
34
|
+
CUSTOMER_OWNED_IP: "CustomerOwnedIp",
|
|
35
|
+
PRIVATE: "Private",
|
|
36
|
+
};
|
|
38
37
|
class InternalServerException extends S3OutpostsServiceException_1.S3OutpostsServiceException {
|
|
39
38
|
constructor(opts) {
|
|
40
39
|
super({
|
|
@@ -105,11 +104,10 @@ class ValidationException extends S3OutpostsServiceException_1.S3OutpostsService
|
|
|
105
104
|
}
|
|
106
105
|
}
|
|
107
106
|
exports.ValidationException = ValidationException;
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
})(EndpointStatus = exports.EndpointStatus || (exports.EndpointStatus = {}));
|
|
107
|
+
exports.EndpointStatus = {
|
|
108
|
+
AVAILABLE: "Available",
|
|
109
|
+
CREATE_FAILED: "Create_Failed",
|
|
110
|
+
DELETE_FAILED: "Delete_Failed",
|
|
111
|
+
DELETING: "Deleting",
|
|
112
|
+
PENDING: "Pending",
|
|
113
|
+
};
|
|
@@ -25,11 +25,10 @@ export class ConflictException extends __BaseException {
|
|
|
25
25
|
this.Message = opts.Message;
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
|
-
export
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
})(EndpointAccessType || (EndpointAccessType = {}));
|
|
28
|
+
export const EndpointAccessType = {
|
|
29
|
+
CUSTOMER_OWNED_IP: "CustomerOwnedIp",
|
|
30
|
+
PRIVATE: "Private",
|
|
31
|
+
};
|
|
33
32
|
export class InternalServerException extends __BaseException {
|
|
34
33
|
constructor(opts) {
|
|
35
34
|
super({
|
|
@@ -95,11 +94,10 @@ export class ValidationException extends __BaseException {
|
|
|
95
94
|
this.Message = opts.Message;
|
|
96
95
|
}
|
|
97
96
|
}
|
|
98
|
-
export
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
})(EndpointStatus || (EndpointStatus = {}));
|
|
97
|
+
export const EndpointStatus = {
|
|
98
|
+
AVAILABLE: "Available",
|
|
99
|
+
CREATE_FAILED: "Create_Failed",
|
|
100
|
+
DELETE_FAILED: "Delete_Failed",
|
|
101
|
+
DELETING: "Deleting",
|
|
102
|
+
PENDING: "Pending",
|
|
103
|
+
};
|
|
@@ -28,11 +28,16 @@ export declare class ConflictException extends __BaseException {
|
|
|
28
28
|
}
|
|
29
29
|
/**
|
|
30
30
|
* @public
|
|
31
|
+
* @enum
|
|
31
32
|
*/
|
|
32
|
-
export declare
|
|
33
|
-
CUSTOMER_OWNED_IP
|
|
34
|
-
PRIVATE
|
|
35
|
-
}
|
|
33
|
+
export declare const EndpointAccessType: {
|
|
34
|
+
readonly CUSTOMER_OWNED_IP: "CustomerOwnedIp";
|
|
35
|
+
readonly PRIVATE: "Private";
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
export type EndpointAccessType = (typeof EndpointAccessType)[keyof typeof EndpointAccessType];
|
|
36
41
|
/**
|
|
37
42
|
* @public
|
|
38
43
|
*/
|
|
@@ -181,14 +186,19 @@ export interface NetworkInterface {
|
|
|
181
186
|
}
|
|
182
187
|
/**
|
|
183
188
|
* @public
|
|
189
|
+
* @enum
|
|
184
190
|
*/
|
|
185
|
-
export declare
|
|
186
|
-
AVAILABLE
|
|
187
|
-
CREATE_FAILED
|
|
188
|
-
DELETE_FAILED
|
|
189
|
-
DELETING
|
|
190
|
-
PENDING
|
|
191
|
-
}
|
|
191
|
+
export declare const EndpointStatus: {
|
|
192
|
+
readonly AVAILABLE: "Available";
|
|
193
|
+
readonly CREATE_FAILED: "Create_Failed";
|
|
194
|
+
readonly DELETE_FAILED: "Delete_Failed";
|
|
195
|
+
readonly DELETING: "Deleting";
|
|
196
|
+
readonly PENDING: "Pending";
|
|
197
|
+
};
|
|
198
|
+
/**
|
|
199
|
+
* @public
|
|
200
|
+
*/
|
|
201
|
+
export type EndpointStatus = (typeof EndpointStatus)[keyof typeof EndpointStatus];
|
|
192
202
|
/**
|
|
193
203
|
* @public
|
|
194
204
|
* <p>Amazon S3 on Outposts Access Points simplify managing data access at scale for shared datasets in S3 on Outposts.
|
|
@@ -14,10 +14,12 @@ export declare class ConflictException extends __BaseException {
|
|
|
14
14
|
Message?: string;
|
|
15
15
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
16
16
|
}
|
|
17
|
-
export declare
|
|
18
|
-
CUSTOMER_OWNED_IP
|
|
19
|
-
PRIVATE
|
|
20
|
-
}
|
|
17
|
+
export declare const EndpointAccessType: {
|
|
18
|
+
readonly CUSTOMER_OWNED_IP: "CustomerOwnedIp";
|
|
19
|
+
readonly PRIVATE: "Private";
|
|
20
|
+
};
|
|
21
|
+
export type EndpointAccessType =
|
|
22
|
+
(typeof EndpointAccessType)[keyof typeof EndpointAccessType];
|
|
21
23
|
export interface CreateEndpointRequest {
|
|
22
24
|
OutpostId: string | undefined;
|
|
23
25
|
SubnetId: string | undefined;
|
|
@@ -79,13 +81,15 @@ export interface FailedReason {
|
|
|
79
81
|
export interface NetworkInterface {
|
|
80
82
|
NetworkInterfaceId?: string;
|
|
81
83
|
}
|
|
82
|
-
export declare
|
|
83
|
-
AVAILABLE
|
|
84
|
-
CREATE_FAILED
|
|
85
|
-
DELETE_FAILED
|
|
86
|
-
DELETING
|
|
87
|
-
PENDING
|
|
88
|
-
}
|
|
84
|
+
export declare const EndpointStatus: {
|
|
85
|
+
readonly AVAILABLE: "Available";
|
|
86
|
+
readonly CREATE_FAILED: "Create_Failed";
|
|
87
|
+
readonly DELETE_FAILED: "Delete_Failed";
|
|
88
|
+
readonly DELETING: "Deleting";
|
|
89
|
+
readonly PENDING: "Pending";
|
|
90
|
+
};
|
|
91
|
+
export type EndpointStatus =
|
|
92
|
+
(typeof EndpointStatus)[keyof typeof EndpointStatus];
|
|
89
93
|
export interface Endpoint {
|
|
90
94
|
EndpointArn?: string;
|
|
91
95
|
OutpostsId?: string;
|
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.303.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,42 +21,42 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
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.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.303.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.303.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.303.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.303.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.303.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.303.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.303.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.303.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.303.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.303.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.303.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.303.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.303.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.303.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.303.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.303.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.303.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.303.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.303.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.303.0",
|
|
44
|
+
"@aws-sdk/types": "3.303.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.303.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.303.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.303.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.303.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.303.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
59
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
60
60
|
"@tsconfig/node14": "1.0.3",
|
|
61
61
|
"@types/node": "^14.14.31",
|
|
62
62
|
"concurrently": "7.0.0",
|