@aws-sdk/client-cloud9 3.52.0 → 3.53.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 +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/Cloud9ServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +122 -1
- package/dist-cjs/protocols/Aws_json1_1.js +167 -660
- package/dist-es/index.js +1 -0
- package/dist-es/models/Cloud9ServiceException.js +12 -0
- package/dist-es/models/models_0.js +114 -1
- package/dist-es/protocols/Aws_json1_1.js +353 -697
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/Cloud9ServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +58 -33
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/Cloud9ServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +42 -33
- package/package.json +25 -25
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from Cloud9 service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class Cloud9ServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,23 +1,30 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Cloud9ServiceException as __BaseException } from "./Cloud9ServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>The target request is invalid.</p>
|
|
4
5
|
*/
|
|
5
|
-
export
|
|
6
|
-
name: "BadRequestException";
|
|
7
|
-
$fault: "client";
|
|
8
|
-
message?: string;
|
|
6
|
+
export declare class BadRequestException extends __BaseException {
|
|
7
|
+
readonly name: "BadRequestException";
|
|
8
|
+
readonly $fault: "client";
|
|
9
9
|
className?: string;
|
|
10
10
|
code?: number;
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
11
15
|
}
|
|
12
16
|
/**
|
|
13
17
|
* <p>A conflict occurred.</p>
|
|
14
18
|
*/
|
|
15
|
-
export
|
|
16
|
-
name: "ConflictException";
|
|
17
|
-
$fault: "client";
|
|
18
|
-
message?: string;
|
|
19
|
+
export declare class ConflictException extends __BaseException {
|
|
20
|
+
readonly name: "ConflictException";
|
|
21
|
+
readonly $fault: "client";
|
|
19
22
|
className?: string;
|
|
20
23
|
code?: number;
|
|
24
|
+
/**
|
|
25
|
+
* @internal
|
|
26
|
+
*/
|
|
27
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
21
28
|
}
|
|
22
29
|
export declare enum ConnectionType {
|
|
23
30
|
CONNECT_SSH = "CONNECT_SSH",
|
|
@@ -174,52 +181,67 @@ export declare namespace CreateEnvironmentEC2Result {
|
|
|
174
181
|
/**
|
|
175
182
|
* <p>An access permissions issue occurred.</p>
|
|
176
183
|
*/
|
|
177
|
-
export
|
|
178
|
-
name: "ForbiddenException";
|
|
179
|
-
$fault: "client";
|
|
180
|
-
message?: string;
|
|
184
|
+
export declare class ForbiddenException extends __BaseException {
|
|
185
|
+
readonly name: "ForbiddenException";
|
|
186
|
+
readonly $fault: "client";
|
|
181
187
|
className?: string;
|
|
182
188
|
code?: number;
|
|
189
|
+
/**
|
|
190
|
+
* @internal
|
|
191
|
+
*/
|
|
192
|
+
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
183
193
|
}
|
|
184
194
|
/**
|
|
185
195
|
* <p>An internal server error occurred.</p>
|
|
186
196
|
*/
|
|
187
|
-
export
|
|
188
|
-
name: "InternalServerErrorException";
|
|
189
|
-
$fault: "server";
|
|
190
|
-
message?: string;
|
|
197
|
+
export declare class InternalServerErrorException extends __BaseException {
|
|
198
|
+
readonly name: "InternalServerErrorException";
|
|
199
|
+
readonly $fault: "server";
|
|
191
200
|
className?: string;
|
|
192
201
|
code?: number;
|
|
202
|
+
/**
|
|
203
|
+
* @internal
|
|
204
|
+
*/
|
|
205
|
+
constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
|
|
193
206
|
}
|
|
194
207
|
/**
|
|
195
208
|
* <p>A service limit was exceeded.</p>
|
|
196
209
|
*/
|
|
197
|
-
export
|
|
198
|
-
name: "LimitExceededException";
|
|
199
|
-
$fault: "client";
|
|
200
|
-
message?: string;
|
|
210
|
+
export declare class LimitExceededException extends __BaseException {
|
|
211
|
+
readonly name: "LimitExceededException";
|
|
212
|
+
readonly $fault: "client";
|
|
201
213
|
className?: string;
|
|
202
214
|
code?: number;
|
|
215
|
+
/**
|
|
216
|
+
* @internal
|
|
217
|
+
*/
|
|
218
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
203
219
|
}
|
|
204
220
|
/**
|
|
205
221
|
* <p>The target resource cannot be found.</p>
|
|
206
222
|
*/
|
|
207
|
-
export
|
|
208
|
-
name: "NotFoundException";
|
|
209
|
-
$fault: "client";
|
|
210
|
-
message?: string;
|
|
223
|
+
export declare class NotFoundException extends __BaseException {
|
|
224
|
+
readonly name: "NotFoundException";
|
|
225
|
+
readonly $fault: "client";
|
|
211
226
|
className?: string;
|
|
212
227
|
code?: number;
|
|
228
|
+
/**
|
|
229
|
+
* @internal
|
|
230
|
+
*/
|
|
231
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
213
232
|
}
|
|
214
233
|
/**
|
|
215
234
|
* <p>Too many service requests were made over the given time period.</p>
|
|
216
235
|
*/
|
|
217
|
-
export
|
|
218
|
-
name: "TooManyRequestsException";
|
|
219
|
-
$fault: "client";
|
|
220
|
-
message?: string;
|
|
236
|
+
export declare class TooManyRequestsException extends __BaseException {
|
|
237
|
+
readonly name: "TooManyRequestsException";
|
|
238
|
+
readonly $fault: "client";
|
|
221
239
|
className?: string;
|
|
222
240
|
code?: number;
|
|
241
|
+
/**
|
|
242
|
+
* @internal
|
|
243
|
+
*/
|
|
244
|
+
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
223
245
|
}
|
|
224
246
|
export declare enum MemberPermissions {
|
|
225
247
|
READ_ONLY = "read-only",
|
|
@@ -772,12 +794,15 @@ export declare namespace ListTagsForResourceResponse {
|
|
|
772
794
|
/**
|
|
773
795
|
* <p>A concurrent access issue occurred.</p>
|
|
774
796
|
*/
|
|
775
|
-
export
|
|
776
|
-
name: "ConcurrentAccessException";
|
|
777
|
-
$fault: "client";
|
|
778
|
-
message?: string;
|
|
797
|
+
export declare class ConcurrentAccessException extends __BaseException {
|
|
798
|
+
readonly name: "ConcurrentAccessException";
|
|
799
|
+
readonly $fault: "client";
|
|
779
800
|
className?: string;
|
|
780
801
|
code?: number;
|
|
802
|
+
/**
|
|
803
|
+
* @internal
|
|
804
|
+
*/
|
|
805
|
+
constructor(opts: __ExceptionOptionType<ConcurrentAccessException, __BaseException>);
|
|
781
806
|
}
|
|
782
807
|
export interface TagResourceRequest {
|
|
783
808
|
/**
|
|
@@ -1,19 +1,22 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Cloud9ServiceException as __BaseException } from "./Cloud9ServiceException";
|
|
2
3
|
|
|
3
|
-
export
|
|
4
|
-
name: "BadRequestException";
|
|
5
|
-
$fault: "client";
|
|
6
|
-
message?: string;
|
|
4
|
+
export declare class BadRequestException extends __BaseException {
|
|
5
|
+
readonly name: "BadRequestException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
7
|
className?: string;
|
|
8
8
|
code?: number;
|
|
9
|
+
|
|
10
|
+
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
9
11
|
}
|
|
10
12
|
|
|
11
|
-
export
|
|
12
|
-
name: "ConflictException";
|
|
13
|
-
$fault: "client";
|
|
14
|
-
message?: string;
|
|
13
|
+
export declare class ConflictException extends __BaseException {
|
|
14
|
+
readonly name: "ConflictException";
|
|
15
|
+
readonly $fault: "client";
|
|
15
16
|
className?: string;
|
|
16
17
|
code?: number;
|
|
18
|
+
|
|
19
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
17
20
|
}
|
|
18
21
|
export declare enum ConnectionType {
|
|
19
22
|
CONNECT_SSH = "CONNECT_SSH",
|
|
@@ -67,44 +70,49 @@ export declare namespace CreateEnvironmentEC2Result {
|
|
|
67
70
|
const filterSensitiveLog: (obj: CreateEnvironmentEC2Result) => any;
|
|
68
71
|
}
|
|
69
72
|
|
|
70
|
-
export
|
|
71
|
-
name: "ForbiddenException";
|
|
72
|
-
$fault: "client";
|
|
73
|
-
message?: string;
|
|
73
|
+
export declare class ForbiddenException extends __BaseException {
|
|
74
|
+
readonly name: "ForbiddenException";
|
|
75
|
+
readonly $fault: "client";
|
|
74
76
|
className?: string;
|
|
75
77
|
code?: number;
|
|
78
|
+
|
|
79
|
+
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
76
80
|
}
|
|
77
81
|
|
|
78
|
-
export
|
|
79
|
-
name: "InternalServerErrorException";
|
|
80
|
-
$fault: "server";
|
|
81
|
-
message?: string;
|
|
82
|
+
export declare class InternalServerErrorException extends __BaseException {
|
|
83
|
+
readonly name: "InternalServerErrorException";
|
|
84
|
+
readonly $fault: "server";
|
|
82
85
|
className?: string;
|
|
83
86
|
code?: number;
|
|
87
|
+
|
|
88
|
+
constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
|
|
84
89
|
}
|
|
85
90
|
|
|
86
|
-
export
|
|
87
|
-
name: "LimitExceededException";
|
|
88
|
-
$fault: "client";
|
|
89
|
-
message?: string;
|
|
91
|
+
export declare class LimitExceededException extends __BaseException {
|
|
92
|
+
readonly name: "LimitExceededException";
|
|
93
|
+
readonly $fault: "client";
|
|
90
94
|
className?: string;
|
|
91
95
|
code?: number;
|
|
96
|
+
|
|
97
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
92
98
|
}
|
|
93
99
|
|
|
94
|
-
export
|
|
95
|
-
name: "NotFoundException";
|
|
96
|
-
$fault: "client";
|
|
97
|
-
message?: string;
|
|
100
|
+
export declare class NotFoundException extends __BaseException {
|
|
101
|
+
readonly name: "NotFoundException";
|
|
102
|
+
readonly $fault: "client";
|
|
98
103
|
className?: string;
|
|
99
104
|
code?: number;
|
|
105
|
+
|
|
106
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
100
107
|
}
|
|
101
108
|
|
|
102
|
-
export
|
|
103
|
-
name: "TooManyRequestsException";
|
|
104
|
-
$fault: "client";
|
|
105
|
-
message?: string;
|
|
109
|
+
export declare class TooManyRequestsException extends __BaseException {
|
|
110
|
+
readonly name: "TooManyRequestsException";
|
|
111
|
+
readonly $fault: "client";
|
|
106
112
|
className?: string;
|
|
107
113
|
code?: number;
|
|
114
|
+
|
|
115
|
+
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
108
116
|
}
|
|
109
117
|
export declare enum MemberPermissions {
|
|
110
118
|
READ_ONLY = "read-only",
|
|
@@ -350,12 +358,13 @@ export declare namespace ListTagsForResourceResponse {
|
|
|
350
358
|
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
351
359
|
}
|
|
352
360
|
|
|
353
|
-
export
|
|
354
|
-
name: "ConcurrentAccessException";
|
|
355
|
-
$fault: "client";
|
|
356
|
-
message?: string;
|
|
361
|
+
export declare class ConcurrentAccessException extends __BaseException {
|
|
362
|
+
readonly name: "ConcurrentAccessException";
|
|
363
|
+
readonly $fault: "client";
|
|
357
364
|
className?: string;
|
|
358
365
|
code?: number;
|
|
366
|
+
|
|
367
|
+
constructor(opts: __ExceptionOptionType<ConcurrentAccessException, __BaseException>);
|
|
359
368
|
}
|
|
360
369
|
export interface TagResourceRequest {
|
|
361
370
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloud9",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloud9 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.53.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,34 +18,34 @@
|
|
|
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.
|
|
21
|
+
"@aws-sdk/client-sts": "3.53.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.53.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.53.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.53.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.53.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.53.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.53.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.53.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.53.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.53.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.53.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.53.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.53.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.53.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.53.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.53.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.53.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.53.0",
|
|
39
|
+
"@aws-sdk/types": "3.53.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.53.0",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.52.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.52.0",
|
|
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.
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.53.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.53.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.53.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.53.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0"
|