@aws-sdk/client-cloud9 3.295.0 → 3.297.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/Cloud9.d.ts +14 -0
- package/dist-types/Cloud9Client.d.ts +24 -4
- package/dist-types/commands/CreateEnvironmentEC2Command.d.ts +16 -0
- package/dist-types/commands/CreateEnvironmentMembershipCommand.d.ts +16 -0
- package/dist-types/commands/DeleteEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/DeleteEnvironmentMembershipCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEnvironmentMembershipsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEnvironmentStatusCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEnvironmentsCommand.d.ts +16 -0
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/UpdateEnvironmentMembershipCommand.d.ts +16 -0
- package/dist-types/models/Cloud9ServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +114 -0
- package/dist-types/pagination/DescribeEnvironmentMembershipsPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListEnvironmentsPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client";
|
|
5
5
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds tags to an Cloud9 development environment.</p>
|
|
18
23
|
* <important>
|
|
19
24
|
* <p>Tags that you add to an Cloud9 environment by using this method will NOT be
|
|
@@ -29,6 +34,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
38
|
+
* @returns {@link TagResourceCommandOutput}
|
|
32
39
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link Cloud9ClientResolvedConfig | config} for Cloud9Client's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
50
57
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, Cloud9ClientResolvedConfig> {
|
|
51
58
|
readonly input: TagResourceCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: TagResourceCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Cloud9ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client";
|
|
5
5
|
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes tags from an Cloud9 development environment.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
34
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
28
35
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link Cloud9ClientResolvedConfig | config} for Cloud9Client's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
46
53
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, Cloud9ClientResolvedConfig> {
|
|
47
54
|
readonly input: UntagResourceCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: UntagResourceCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Cloud9ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client";
|
|
5
5
|
import { UpdateEnvironmentRequest, UpdateEnvironmentResult } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateEnvironmentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateEnvironmentCommandInput extends UpdateEnvironmentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateEnvironmentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateEnvironmentCommandOutput extends UpdateEnvironmentResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Changes the settings of an existing Cloud9 development environment.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UpdateEnvironmentCommandOutput extends UpdateEnvironmentResult,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateEnvironmentCommandInput - {@link UpdateEnvironmentCommandInput}
|
|
34
|
+
* @returns {@link UpdateEnvironmentCommandOutput}
|
|
28
35
|
* @see {@link UpdateEnvironmentCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateEnvironmentCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link Cloud9ClientResolvedConfig | config} for Cloud9Client's `config` shape.
|
|
@@ -68,11 +75,20 @@ export interface UpdateEnvironmentCommandOutput extends UpdateEnvironmentResult,
|
|
|
68
75
|
export declare class UpdateEnvironmentCommand extends $Command<UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput, Cloud9ClientResolvedConfig> {
|
|
69
76
|
readonly input: UpdateEnvironmentCommandInput;
|
|
70
77
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
71
81
|
constructor(input: UpdateEnvironmentCommandInput);
|
|
72
82
|
/**
|
|
73
83
|
* @internal
|
|
74
84
|
*/
|
|
75
85
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Cloud9ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput>;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
76
89
|
private serialize;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
77
93
|
private deserialize;
|
|
78
94
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client";
|
|
5
5
|
import { UpdateEnvironmentMembershipRequest, UpdateEnvironmentMembershipResult } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateEnvironmentMembershipCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateEnvironmentMembershipCommandInput extends UpdateEnvironmentMembershipRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateEnvironmentMembershipCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateEnvironmentMembershipCommandOutput extends UpdateEnvironmentMembershipResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Changes the settings of an existing environment member for an Cloud9 development
|
|
18
23
|
* environment.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface UpdateEnvironmentMembershipCommandOutput extends UpdateEnvironm
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param UpdateEnvironmentMembershipCommandInput - {@link UpdateEnvironmentMembershipCommandInput}
|
|
35
|
+
* @returns {@link UpdateEnvironmentMembershipCommandOutput}
|
|
29
36
|
* @see {@link UpdateEnvironmentMembershipCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link UpdateEnvironmentMembershipCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link Cloud9ClientResolvedConfig | config} for Cloud9Client's `config` shape.
|
|
@@ -79,11 +86,20 @@ export interface UpdateEnvironmentMembershipCommandOutput extends UpdateEnvironm
|
|
|
79
86
|
export declare class UpdateEnvironmentMembershipCommand extends $Command<UpdateEnvironmentMembershipCommandInput, UpdateEnvironmentMembershipCommandOutput, Cloud9ClientResolvedConfig> {
|
|
80
87
|
readonly input: UpdateEnvironmentMembershipCommandInput;
|
|
81
88
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
89
|
+
/**
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
82
92
|
constructor(input: UpdateEnvironmentMembershipCommandInput);
|
|
83
93
|
/**
|
|
84
94
|
* @internal
|
|
85
95
|
*/
|
|
86
96
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Cloud9ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateEnvironmentMembershipCommandInput, UpdateEnvironmentMembershipCommandOutput>;
|
|
97
|
+
/**
|
|
98
|
+
* @internal
|
|
99
|
+
*/
|
|
87
100
|
private serialize;
|
|
101
|
+
/**
|
|
102
|
+
* @internal
|
|
103
|
+
*/
|
|
88
104
|
private deserialize;
|
|
89
105
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from Cloud9 service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class Cloud9ServiceException extends __ServiceException {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Cloud9ServiceException as __BaseException } from "./Cloud9ServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>The target request is invalid.</p>
|
|
5
6
|
*/
|
|
6
7
|
export declare class BadRequestException extends __BaseException {
|
|
@@ -14,6 +15,7 @@ export declare class BadRequestException extends __BaseException {
|
|
|
14
15
|
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
15
16
|
}
|
|
16
17
|
/**
|
|
18
|
+
* @public
|
|
17
19
|
* <p>A conflict occurred.</p>
|
|
18
20
|
*/
|
|
19
21
|
export declare class ConflictException extends __BaseException {
|
|
@@ -26,11 +28,15 @@ export declare class ConflictException extends __BaseException {
|
|
|
26
28
|
*/
|
|
27
29
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
28
30
|
}
|
|
31
|
+
/**
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
29
34
|
export declare enum ConnectionType {
|
|
30
35
|
CONNECT_SSH = "CONNECT_SSH",
|
|
31
36
|
CONNECT_SSM = "CONNECT_SSM"
|
|
32
37
|
}
|
|
33
38
|
/**
|
|
39
|
+
* @public
|
|
34
40
|
* <p>Metadata that is associated with Amazon Web Services resources. In particular, a name-value pair that
|
|
35
41
|
* can be associated with an Cloud9 development environment. There are two types of tags:
|
|
36
42
|
* <i>user tags</i> and <i>system tags</i>. A user tag is created
|
|
@@ -47,6 +53,9 @@ export interface Tag {
|
|
|
47
53
|
*/
|
|
48
54
|
Value: string | undefined;
|
|
49
55
|
}
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
50
59
|
export interface CreateEnvironmentEC2Request {
|
|
51
60
|
/**
|
|
52
61
|
* <p>The name of the environment to create.</p>
|
|
@@ -156,6 +165,9 @@ export interface CreateEnvironmentEC2Request {
|
|
|
156
165
|
*/
|
|
157
166
|
dryRun?: boolean;
|
|
158
167
|
}
|
|
168
|
+
/**
|
|
169
|
+
* @public
|
|
170
|
+
*/
|
|
159
171
|
export interface CreateEnvironmentEC2Result {
|
|
160
172
|
/**
|
|
161
173
|
* <p>The ID of the environment that was created.</p>
|
|
@@ -163,6 +175,7 @@ export interface CreateEnvironmentEC2Result {
|
|
|
163
175
|
environmentId?: string;
|
|
164
176
|
}
|
|
165
177
|
/**
|
|
178
|
+
* @public
|
|
166
179
|
* <p>An access permissions issue occurred.</p>
|
|
167
180
|
*/
|
|
168
181
|
export declare class ForbiddenException extends __BaseException {
|
|
@@ -176,6 +189,7 @@ export declare class ForbiddenException extends __BaseException {
|
|
|
176
189
|
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
177
190
|
}
|
|
178
191
|
/**
|
|
192
|
+
* @public
|
|
179
193
|
* <p>An internal server error occurred.</p>
|
|
180
194
|
*/
|
|
181
195
|
export declare class InternalServerErrorException extends __BaseException {
|
|
@@ -189,6 +203,7 @@ export declare class InternalServerErrorException extends __BaseException {
|
|
|
189
203
|
constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
|
|
190
204
|
}
|
|
191
205
|
/**
|
|
206
|
+
* @public
|
|
192
207
|
* <p>A service limit was exceeded.</p>
|
|
193
208
|
*/
|
|
194
209
|
export declare class LimitExceededException extends __BaseException {
|
|
@@ -202,6 +217,7 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
202
217
|
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
203
218
|
}
|
|
204
219
|
/**
|
|
220
|
+
* @public
|
|
205
221
|
* <p>The target resource cannot be found.</p>
|
|
206
222
|
*/
|
|
207
223
|
export declare class NotFoundException extends __BaseException {
|
|
@@ -215,6 +231,7 @@ export declare class NotFoundException extends __BaseException {
|
|
|
215
231
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
216
232
|
}
|
|
217
233
|
/**
|
|
234
|
+
* @public
|
|
218
235
|
* <p>Too many service requests were made over the given time period.</p>
|
|
219
236
|
*/
|
|
220
237
|
export declare class TooManyRequestsException extends __BaseException {
|
|
@@ -227,10 +244,16 @@ export declare class TooManyRequestsException extends __BaseException {
|
|
|
227
244
|
*/
|
|
228
245
|
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
229
246
|
}
|
|
247
|
+
/**
|
|
248
|
+
* @public
|
|
249
|
+
*/
|
|
230
250
|
export declare enum MemberPermissions {
|
|
231
251
|
READ_ONLY = "read-only",
|
|
232
252
|
READ_WRITE = "read-write"
|
|
233
253
|
}
|
|
254
|
+
/**
|
|
255
|
+
* @public
|
|
256
|
+
*/
|
|
234
257
|
export interface CreateEnvironmentMembershipRequest {
|
|
235
258
|
/**
|
|
236
259
|
* <p>The ID of the environment that contains the environment member you want to add.</p>
|
|
@@ -256,12 +279,16 @@ export interface CreateEnvironmentMembershipRequest {
|
|
|
256
279
|
*/
|
|
257
280
|
permissions: MemberPermissions | string | undefined;
|
|
258
281
|
}
|
|
282
|
+
/**
|
|
283
|
+
* @public
|
|
284
|
+
*/
|
|
259
285
|
export declare enum Permissions {
|
|
260
286
|
OWNER = "owner",
|
|
261
287
|
READ_ONLY = "read-only",
|
|
262
288
|
READ_WRITE = "read-write"
|
|
263
289
|
}
|
|
264
290
|
/**
|
|
291
|
+
* @public
|
|
265
292
|
* <p>Information about an environment member for an Cloud9 development environment.</p>
|
|
266
293
|
*/
|
|
267
294
|
export interface EnvironmentMember {
|
|
@@ -302,20 +329,32 @@ export interface EnvironmentMember {
|
|
|
302
329
|
*/
|
|
303
330
|
lastAccess?: Date;
|
|
304
331
|
}
|
|
332
|
+
/**
|
|
333
|
+
* @public
|
|
334
|
+
*/
|
|
305
335
|
export interface CreateEnvironmentMembershipResult {
|
|
306
336
|
/**
|
|
307
337
|
* <p>Information about the environment member that was added.</p>
|
|
308
338
|
*/
|
|
309
339
|
membership: EnvironmentMember | undefined;
|
|
310
340
|
}
|
|
341
|
+
/**
|
|
342
|
+
* @public
|
|
343
|
+
*/
|
|
311
344
|
export interface DeleteEnvironmentRequest {
|
|
312
345
|
/**
|
|
313
346
|
* <p>The ID of the environment to delete.</p>
|
|
314
347
|
*/
|
|
315
348
|
environmentId: string | undefined;
|
|
316
349
|
}
|
|
350
|
+
/**
|
|
351
|
+
* @public
|
|
352
|
+
*/
|
|
317
353
|
export interface DeleteEnvironmentResult {
|
|
318
354
|
}
|
|
355
|
+
/**
|
|
356
|
+
* @public
|
|
357
|
+
*/
|
|
319
358
|
export interface DeleteEnvironmentMembershipRequest {
|
|
320
359
|
/**
|
|
321
360
|
* <p>The ID of the environment to delete the environment member from.</p>
|
|
@@ -327,8 +366,14 @@ export interface DeleteEnvironmentMembershipRequest {
|
|
|
327
366
|
*/
|
|
328
367
|
userArn: string | undefined;
|
|
329
368
|
}
|
|
369
|
+
/**
|
|
370
|
+
* @public
|
|
371
|
+
*/
|
|
330
372
|
export interface DeleteEnvironmentMembershipResult {
|
|
331
373
|
}
|
|
374
|
+
/**
|
|
375
|
+
* @public
|
|
376
|
+
*/
|
|
332
377
|
export interface DescribeEnvironmentMembershipsRequest {
|
|
333
378
|
/**
|
|
334
379
|
* <p>The Amazon Resource Name (ARN) of an individual environment member to get information
|
|
@@ -373,6 +418,9 @@ export interface DescribeEnvironmentMembershipsRequest {
|
|
|
373
418
|
*/
|
|
374
419
|
maxResults?: number;
|
|
375
420
|
}
|
|
421
|
+
/**
|
|
422
|
+
* @public
|
|
423
|
+
*/
|
|
376
424
|
export interface DescribeEnvironmentMembershipsResult {
|
|
377
425
|
/**
|
|
378
426
|
* <p>Information about the environment members for the environment.</p>
|
|
@@ -385,12 +433,18 @@ export interface DescribeEnvironmentMembershipsResult {
|
|
|
385
433
|
*/
|
|
386
434
|
nextToken?: string;
|
|
387
435
|
}
|
|
436
|
+
/**
|
|
437
|
+
* @public
|
|
438
|
+
*/
|
|
388
439
|
export interface DescribeEnvironmentsRequest {
|
|
389
440
|
/**
|
|
390
441
|
* <p>The IDs of individual environments to get information about.</p>
|
|
391
442
|
*/
|
|
392
443
|
environmentIds: string[] | undefined;
|
|
393
444
|
}
|
|
445
|
+
/**
|
|
446
|
+
* @public
|
|
447
|
+
*/
|
|
394
448
|
export declare enum EnvironmentLifecycleStatus {
|
|
395
449
|
CREATED = "CREATED",
|
|
396
450
|
CREATE_FAILED = "CREATE_FAILED",
|
|
@@ -399,6 +453,7 @@ export declare enum EnvironmentLifecycleStatus {
|
|
|
399
453
|
DELETING = "DELETING"
|
|
400
454
|
}
|
|
401
455
|
/**
|
|
456
|
+
* @public
|
|
402
457
|
* <p>Information about the current creation or deletion lifecycle state of an Cloud9 development
|
|
403
458
|
* environment.</p>
|
|
404
459
|
*/
|
|
@@ -439,6 +494,9 @@ export interface EnvironmentLifecycle {
|
|
|
439
494
|
*/
|
|
440
495
|
failureResource?: string;
|
|
441
496
|
}
|
|
497
|
+
/**
|
|
498
|
+
* @public
|
|
499
|
+
*/
|
|
442
500
|
export declare enum ManagedCredentialsStatus {
|
|
443
501
|
DISABLED_BY_COLLABORATOR = "DISABLED_BY_COLLABORATOR",
|
|
444
502
|
DISABLED_BY_DEFAULT = "DISABLED_BY_DEFAULT",
|
|
@@ -452,11 +510,15 @@ export declare enum ManagedCredentialsStatus {
|
|
|
452
510
|
PENDING_START_REMOVAL_BY_COLLABORATOR = "PENDING_START_REMOVAL_BY_COLLABORATOR",
|
|
453
511
|
PENDING_START_REMOVAL_BY_OWNER = "PENDING_START_REMOVAL_BY_OWNER"
|
|
454
512
|
}
|
|
513
|
+
/**
|
|
514
|
+
* @public
|
|
515
|
+
*/
|
|
455
516
|
export declare enum EnvironmentType {
|
|
456
517
|
EC2 = "ec2",
|
|
457
518
|
SSH = "ssh"
|
|
458
519
|
}
|
|
459
520
|
/**
|
|
521
|
+
* @public
|
|
460
522
|
* <p>Information about an Cloud9 development environment.</p>
|
|
461
523
|
*/
|
|
462
524
|
export interface Environment {
|
|
@@ -561,18 +623,27 @@ export interface Environment {
|
|
|
561
623
|
*/
|
|
562
624
|
managedCredentialsStatus?: ManagedCredentialsStatus | string;
|
|
563
625
|
}
|
|
626
|
+
/**
|
|
627
|
+
* @public
|
|
628
|
+
*/
|
|
564
629
|
export interface DescribeEnvironmentsResult {
|
|
565
630
|
/**
|
|
566
631
|
* <p>Information about the environments that are returned.</p>
|
|
567
632
|
*/
|
|
568
633
|
environments?: Environment[];
|
|
569
634
|
}
|
|
635
|
+
/**
|
|
636
|
+
* @public
|
|
637
|
+
*/
|
|
570
638
|
export interface DescribeEnvironmentStatusRequest {
|
|
571
639
|
/**
|
|
572
640
|
* <p>The ID of the environment to get status information about.</p>
|
|
573
641
|
*/
|
|
574
642
|
environmentId: string | undefined;
|
|
575
643
|
}
|
|
644
|
+
/**
|
|
645
|
+
* @public
|
|
646
|
+
*/
|
|
576
647
|
export declare enum EnvironmentStatus {
|
|
577
648
|
CONNECTING = "connecting",
|
|
578
649
|
CREATING = "creating",
|
|
@@ -582,6 +653,9 @@ export declare enum EnvironmentStatus {
|
|
|
582
653
|
STOPPED = "stopped",
|
|
583
654
|
STOPPING = "stopping"
|
|
584
655
|
}
|
|
656
|
+
/**
|
|
657
|
+
* @public
|
|
658
|
+
*/
|
|
585
659
|
export interface DescribeEnvironmentStatusResult {
|
|
586
660
|
/**
|
|
587
661
|
* <p>The status of the environment. Available values include:</p>
|
|
@@ -622,6 +696,9 @@ export interface DescribeEnvironmentStatusResult {
|
|
|
622
696
|
*/
|
|
623
697
|
message: string | undefined;
|
|
624
698
|
}
|
|
699
|
+
/**
|
|
700
|
+
* @public
|
|
701
|
+
*/
|
|
625
702
|
export interface ListEnvironmentsRequest {
|
|
626
703
|
/**
|
|
627
704
|
* <p>During a previous call, if there are more than 25 items in the list, only the first 25
|
|
@@ -636,6 +713,9 @@ export interface ListEnvironmentsRequest {
|
|
|
636
713
|
*/
|
|
637
714
|
maxResults?: number;
|
|
638
715
|
}
|
|
716
|
+
/**
|
|
717
|
+
* @public
|
|
718
|
+
*/
|
|
639
719
|
export interface ListEnvironmentsResult {
|
|
640
720
|
/**
|
|
641
721
|
* <p>If there are more than 25 items in the list, only the first 25 items are returned, along
|
|
@@ -648,6 +728,9 @@ export interface ListEnvironmentsResult {
|
|
|
648
728
|
*/
|
|
649
729
|
environmentIds?: string[];
|
|
650
730
|
}
|
|
731
|
+
/**
|
|
732
|
+
* @public
|
|
733
|
+
*/
|
|
651
734
|
export interface ListTagsForResourceRequest {
|
|
652
735
|
/**
|
|
653
736
|
* <p>The Amazon Resource Name (ARN) of the Cloud9 development environment to get the tags
|
|
@@ -655,6 +738,9 @@ export interface ListTagsForResourceRequest {
|
|
|
655
738
|
*/
|
|
656
739
|
ResourceARN: string | undefined;
|
|
657
740
|
}
|
|
741
|
+
/**
|
|
742
|
+
* @public
|
|
743
|
+
*/
|
|
658
744
|
export interface ListTagsForResourceResponse {
|
|
659
745
|
/**
|
|
660
746
|
* <p>The list of tags associated with the Cloud9 development environment.</p>
|
|
@@ -662,6 +748,7 @@ export interface ListTagsForResourceResponse {
|
|
|
662
748
|
Tags?: Tag[];
|
|
663
749
|
}
|
|
664
750
|
/**
|
|
751
|
+
* @public
|
|
665
752
|
* <p>A concurrent access issue occurred.</p>
|
|
666
753
|
*/
|
|
667
754
|
export declare class ConcurrentAccessException extends __BaseException {
|
|
@@ -674,6 +761,9 @@ export declare class ConcurrentAccessException extends __BaseException {
|
|
|
674
761
|
*/
|
|
675
762
|
constructor(opts: __ExceptionOptionType<ConcurrentAccessException, __BaseException>);
|
|
676
763
|
}
|
|
764
|
+
/**
|
|
765
|
+
* @public
|
|
766
|
+
*/
|
|
677
767
|
export interface TagResourceRequest {
|
|
678
768
|
/**
|
|
679
769
|
* <p>The Amazon Resource Name (ARN) of the Cloud9 development environment to add tags
|
|
@@ -685,8 +775,14 @@ export interface TagResourceRequest {
|
|
|
685
775
|
*/
|
|
686
776
|
Tags: Tag[] | undefined;
|
|
687
777
|
}
|
|
778
|
+
/**
|
|
779
|
+
* @public
|
|
780
|
+
*/
|
|
688
781
|
export interface TagResourceResponse {
|
|
689
782
|
}
|
|
783
|
+
/**
|
|
784
|
+
* @public
|
|
785
|
+
*/
|
|
690
786
|
export interface UntagResourceRequest {
|
|
691
787
|
/**
|
|
692
788
|
* <p>The Amazon Resource Name (ARN) of the Cloud9 development environment to remove tags
|
|
@@ -699,12 +795,21 @@ export interface UntagResourceRequest {
|
|
|
699
795
|
*/
|
|
700
796
|
TagKeys: string[] | undefined;
|
|
701
797
|
}
|
|
798
|
+
/**
|
|
799
|
+
* @public
|
|
800
|
+
*/
|
|
702
801
|
export interface UntagResourceResponse {
|
|
703
802
|
}
|
|
803
|
+
/**
|
|
804
|
+
* @public
|
|
805
|
+
*/
|
|
704
806
|
export declare enum ManagedCredentialsAction {
|
|
705
807
|
DISABLE = "DISABLE",
|
|
706
808
|
ENABLE = "ENABLE"
|
|
707
809
|
}
|
|
810
|
+
/**
|
|
811
|
+
* @public
|
|
812
|
+
*/
|
|
708
813
|
export interface UpdateEnvironmentRequest {
|
|
709
814
|
/**
|
|
710
815
|
* <p>The ID of the environment to change settings.</p>
|
|
@@ -740,8 +845,14 @@ export interface UpdateEnvironmentRequest {
|
|
|
740
845
|
*/
|
|
741
846
|
managedCredentialsAction?: ManagedCredentialsAction | string;
|
|
742
847
|
}
|
|
848
|
+
/**
|
|
849
|
+
* @public
|
|
850
|
+
*/
|
|
743
851
|
export interface UpdateEnvironmentResult {
|
|
744
852
|
}
|
|
853
|
+
/**
|
|
854
|
+
* @public
|
|
855
|
+
*/
|
|
745
856
|
export interface UpdateEnvironmentMembershipRequest {
|
|
746
857
|
/**
|
|
747
858
|
* <p>The ID of the environment for the environment member whose settings you want to
|
|
@@ -769,6 +880,9 @@ export interface UpdateEnvironmentMembershipRequest {
|
|
|
769
880
|
*/
|
|
770
881
|
permissions: MemberPermissions | string | undefined;
|
|
771
882
|
}
|
|
883
|
+
/**
|
|
884
|
+
* @public
|
|
885
|
+
*/
|
|
772
886
|
export interface UpdateEnvironmentMembershipResult {
|
|
773
887
|
/**
|
|
774
888
|
* <p>Information about the environment member whose settings were changed.</p>
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { DescribeEnvironmentMembershipsCommandInput, DescribeEnvironmentMembershipsCommandOutput } from "../commands/DescribeEnvironmentMembershipsCommand";
|
|
3
3
|
import { Cloud9PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateDescribeEnvironmentMemberships(config: Cloud9PaginationConfiguration, input: DescribeEnvironmentMembershipsCommandInput, ...additionalArguments: any): Paginator<DescribeEnvironmentMembershipsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "../commands/ListEnvironmentsCommand";
|
|
3
3
|
import { Cloud9PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListEnvironments(config: Cloud9PaginationConfiguration, input: ListEnvironmentsCommandInput, ...additionalArguments: any): Paginator<ListEnvironmentsCommandOutput>;
|