@aws-sdk/client-cloud9 3.169.0 → 3.170.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.
Files changed (32) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/Cloud9.d.ts +238 -70
  3. package/dist-types/ts3.4/Cloud9Client.d.ts +207 -86
  4. package/dist-types/ts3.4/commands/CreateEnvironmentEC2Command.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/CreateEnvironmentMembershipCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +38 -17
  7. package/dist-types/ts3.4/commands/DeleteEnvironmentMembershipCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/DescribeEnvironmentMembershipsCommand.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/DescribeEnvironmentStatusCommand.d.ts +41 -17
  10. package/dist-types/ts3.4/commands/DescribeEnvironmentsCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +37 -17
  12. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  13. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  15. package/dist-types/ts3.4/commands/UpdateEnvironmentCommand.d.ts +38 -17
  16. package/dist-types/ts3.4/commands/UpdateEnvironmentMembershipCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/index.d.ts +13 -13
  18. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  19. package/dist-types/ts3.4/index.d.ts +6 -6
  20. package/dist-types/ts3.4/models/Cloud9ServiceException.d.ts +8 -6
  21. package/dist-types/ts3.4/models/index.d.ts +1 -1
  22. package/dist-types/ts3.4/models/models_0.d.ts +420 -384
  23. package/dist-types/ts3.4/pagination/DescribeEnvironmentMembershipsPaginator.d.ts +11 -4
  24. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  25. package/dist-types/ts3.4/pagination/ListEnvironmentsPaginator.d.ts +11 -4
  26. package/dist-types/ts3.4/pagination/index.d.ts +3 -3
  27. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +161 -41
  28. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  29. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  30. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  31. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  32. package/package.json +34 -34
@@ -1,384 +1,420 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { Cloud9ServiceException as __BaseException } from "./Cloud9ServiceException";
3
-
4
- export declare class BadRequestException extends __BaseException {
5
- readonly name: "BadRequestException";
6
- readonly $fault: "client";
7
- className?: string;
8
- code?: number;
9
-
10
- constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
11
- }
12
-
13
- export declare class ConflictException extends __BaseException {
14
- readonly name: "ConflictException";
15
- readonly $fault: "client";
16
- className?: string;
17
- code?: number;
18
-
19
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
20
- }
21
- export declare enum ConnectionType {
22
- CONNECT_SSH = "CONNECT_SSH",
23
- CONNECT_SSM = "CONNECT_SSM"
24
- }
25
-
26
- export interface Tag {
27
-
28
- Key: string | undefined;
29
-
30
- Value: string | undefined;
31
- }
32
- export interface CreateEnvironmentEC2Request {
33
-
34
- name: string | undefined;
35
-
36
- description?: string;
37
-
38
- clientRequestToken?: string;
39
-
40
- instanceType: string | undefined;
41
-
42
- subnetId?: string;
43
-
44
- imageId?: string;
45
-
46
- automaticStopTimeMinutes?: number;
47
-
48
- ownerArn?: string;
49
-
50
- tags?: Tag[];
51
-
52
- connectionType?: ConnectionType | string;
53
-
54
- dryRun?: boolean;
55
- }
56
- export interface CreateEnvironmentEC2Result {
57
-
58
- environmentId?: string;
59
- }
60
-
61
- export declare class ForbiddenException extends __BaseException {
62
- readonly name: "ForbiddenException";
63
- readonly $fault: "client";
64
- className?: string;
65
- code?: number;
66
-
67
- constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
68
- }
69
-
70
- export declare class InternalServerErrorException extends __BaseException {
71
- readonly name: "InternalServerErrorException";
72
- readonly $fault: "server";
73
- className?: string;
74
- code?: number;
75
-
76
- constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
77
- }
78
-
79
- export declare class LimitExceededException extends __BaseException {
80
- readonly name: "LimitExceededException";
81
- readonly $fault: "client";
82
- className?: string;
83
- code?: number;
84
-
85
- constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
86
- }
87
-
88
- export declare class NotFoundException extends __BaseException {
89
- readonly name: "NotFoundException";
90
- readonly $fault: "client";
91
- className?: string;
92
- code?: number;
93
-
94
- constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
95
- }
96
-
97
- export declare class TooManyRequestsException extends __BaseException {
98
- readonly name: "TooManyRequestsException";
99
- readonly $fault: "client";
100
- className?: string;
101
- code?: number;
102
-
103
- constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
104
- }
105
- export declare enum MemberPermissions {
106
- READ_ONLY = "read-only",
107
- READ_WRITE = "read-write"
108
- }
109
- export interface CreateEnvironmentMembershipRequest {
110
-
111
- environmentId: string | undefined;
112
-
113
- userArn: string | undefined;
114
-
115
- permissions: MemberPermissions | string | undefined;
116
- }
117
- export declare enum Permissions {
118
- OWNER = "owner",
119
- READ_ONLY = "read-only",
120
- READ_WRITE = "read-write"
121
- }
122
-
123
- export interface EnvironmentMember {
124
-
125
- permissions: Permissions | string | undefined;
126
-
127
- userId: string | undefined;
128
-
129
- userArn: string | undefined;
130
-
131
- environmentId: string | undefined;
132
-
133
- lastAccess?: Date;
134
- }
135
- export interface CreateEnvironmentMembershipResult {
136
-
137
- membership: EnvironmentMember | undefined;
138
- }
139
- export interface DeleteEnvironmentRequest {
140
-
141
- environmentId: string | undefined;
142
- }
143
- export interface DeleteEnvironmentResult {
144
- }
145
- export interface DeleteEnvironmentMembershipRequest {
146
-
147
- environmentId: string | undefined;
148
-
149
- userArn: string | undefined;
150
- }
151
- export interface DeleteEnvironmentMembershipResult {
152
- }
153
- export interface DescribeEnvironmentMembershipsRequest {
154
-
155
- userArn?: string;
156
-
157
- environmentId?: string;
158
-
159
- permissions?: (Permissions | string)[];
160
-
161
- nextToken?: string;
162
-
163
- maxResults?: number;
164
- }
165
- export interface DescribeEnvironmentMembershipsResult {
166
-
167
- memberships?: EnvironmentMember[];
168
-
169
- nextToken?: string;
170
- }
171
- export interface DescribeEnvironmentsRequest {
172
-
173
- environmentIds: string[] | undefined;
174
- }
175
- export declare enum EnvironmentLifecycleStatus {
176
- CREATED = "CREATED",
177
- CREATE_FAILED = "CREATE_FAILED",
178
- CREATING = "CREATING",
179
- DELETE_FAILED = "DELETE_FAILED",
180
- DELETING = "DELETING"
181
- }
182
-
183
- export interface EnvironmentLifecycle {
184
-
185
- status?: EnvironmentLifecycleStatus | string;
186
-
187
- reason?: string;
188
-
189
- failureResource?: string;
190
- }
191
- export declare enum ManagedCredentialsStatus {
192
- DISABLED_BY_COLLABORATOR = "DISABLED_BY_COLLABORATOR",
193
- DISABLED_BY_DEFAULT = "DISABLED_BY_DEFAULT",
194
- DISABLED_BY_OWNER = "DISABLED_BY_OWNER",
195
- ENABLED_BY_OWNER = "ENABLED_BY_OWNER",
196
- ENABLED_ON_CREATE = "ENABLED_ON_CREATE",
197
- FAILED_REMOVAL_BY_COLLABORATOR = "FAILED_REMOVAL_BY_COLLABORATOR",
198
- FAILED_REMOVAL_BY_OWNER = "FAILED_REMOVAL_BY_OWNER",
199
- PENDING_REMOVAL_BY_COLLABORATOR = "PENDING_REMOVAL_BY_COLLABORATOR",
200
- PENDING_REMOVAL_BY_OWNER = "PENDING_REMOVAL_BY_OWNER",
201
- PENDING_START_REMOVAL_BY_COLLABORATOR = "PENDING_START_REMOVAL_BY_COLLABORATOR",
202
- PENDING_START_REMOVAL_BY_OWNER = "PENDING_START_REMOVAL_BY_OWNER"
203
- }
204
- export declare enum EnvironmentType {
205
- EC2 = "ec2",
206
- SSH = "ssh"
207
- }
208
-
209
- export interface Environment {
210
-
211
- id?: string;
212
-
213
- name?: string;
214
-
215
- description?: string;
216
-
217
- type: EnvironmentType | string | undefined;
218
-
219
- connectionType?: ConnectionType | string;
220
-
221
- arn: string | undefined;
222
-
223
- ownerArn: string | undefined;
224
-
225
- lifecycle?: EnvironmentLifecycle;
226
-
227
- managedCredentialsStatus?: ManagedCredentialsStatus | string;
228
- }
229
- export interface DescribeEnvironmentsResult {
230
-
231
- environments?: Environment[];
232
- }
233
- export interface DescribeEnvironmentStatusRequest {
234
-
235
- environmentId: string | undefined;
236
- }
237
- export declare enum EnvironmentStatus {
238
- CONNECTING = "connecting",
239
- CREATING = "creating",
240
- DELETING = "deleting",
241
- ERROR = "error",
242
- READY = "ready",
243
- STOPPED = "stopped",
244
- STOPPING = "stopping"
245
- }
246
- export interface DescribeEnvironmentStatusResult {
247
-
248
- status: EnvironmentStatus | string | undefined;
249
-
250
- message: string | undefined;
251
- }
252
- export interface ListEnvironmentsRequest {
253
-
254
- nextToken?: string;
255
-
256
- maxResults?: number;
257
- }
258
- export interface ListEnvironmentsResult {
259
-
260
- nextToken?: string;
261
-
262
- environmentIds?: string[];
263
- }
264
- export interface ListTagsForResourceRequest {
265
-
266
- ResourceARN: string | undefined;
267
- }
268
- export interface ListTagsForResourceResponse {
269
-
270
- Tags?: Tag[];
271
- }
272
-
273
- export declare class ConcurrentAccessException extends __BaseException {
274
- readonly name: "ConcurrentAccessException";
275
- readonly $fault: "client";
276
- className?: string;
277
- code?: number;
278
-
279
- constructor(opts: __ExceptionOptionType<ConcurrentAccessException, __BaseException>);
280
- }
281
- export interface TagResourceRequest {
282
-
283
- ResourceARN: string | undefined;
284
-
285
- Tags: Tag[] | undefined;
286
- }
287
- export interface TagResourceResponse {
288
- }
289
- export interface UntagResourceRequest {
290
-
291
- ResourceARN: string | undefined;
292
-
293
- TagKeys: string[] | undefined;
294
- }
295
- export interface UntagResourceResponse {
296
- }
297
- export declare enum ManagedCredentialsAction {
298
- DISABLE = "DISABLE",
299
- ENABLE = "ENABLE"
300
- }
301
- export interface UpdateEnvironmentRequest {
302
-
303
- environmentId: string | undefined;
304
-
305
- name?: string;
306
-
307
- description?: string;
308
-
309
- managedCredentialsAction?: ManagedCredentialsAction | string;
310
- }
311
- export interface UpdateEnvironmentResult {
312
- }
313
- export interface UpdateEnvironmentMembershipRequest {
314
-
315
- environmentId: string | undefined;
316
-
317
- userArn: string | undefined;
318
-
319
- permissions: MemberPermissions | string | undefined;
320
- }
321
- export interface UpdateEnvironmentMembershipResult {
322
-
323
- membership?: EnvironmentMember;
324
- }
325
-
326
- export declare const TagFilterSensitiveLog: (obj: Tag) => any;
327
-
328
- export declare const CreateEnvironmentEC2RequestFilterSensitiveLog: (obj: CreateEnvironmentEC2Request) => any;
329
-
330
- export declare const CreateEnvironmentEC2ResultFilterSensitiveLog: (obj: CreateEnvironmentEC2Result) => any;
331
-
332
- export declare const CreateEnvironmentMembershipRequestFilterSensitiveLog: (obj: CreateEnvironmentMembershipRequest) => any;
333
-
334
- export declare const EnvironmentMemberFilterSensitiveLog: (obj: EnvironmentMember) => any;
335
-
336
- export declare const CreateEnvironmentMembershipResultFilterSensitiveLog: (obj: CreateEnvironmentMembershipResult) => any;
337
-
338
- export declare const DeleteEnvironmentRequestFilterSensitiveLog: (obj: DeleteEnvironmentRequest) => any;
339
-
340
- export declare const DeleteEnvironmentResultFilterSensitiveLog: (obj: DeleteEnvironmentResult) => any;
341
-
342
- export declare const DeleteEnvironmentMembershipRequestFilterSensitiveLog: (obj: DeleteEnvironmentMembershipRequest) => any;
343
-
344
- export declare const DeleteEnvironmentMembershipResultFilterSensitiveLog: (obj: DeleteEnvironmentMembershipResult) => any;
345
-
346
- export declare const DescribeEnvironmentMembershipsRequestFilterSensitiveLog: (obj: DescribeEnvironmentMembershipsRequest) => any;
347
-
348
- export declare const DescribeEnvironmentMembershipsResultFilterSensitiveLog: (obj: DescribeEnvironmentMembershipsResult) => any;
349
-
350
- export declare const DescribeEnvironmentsRequestFilterSensitiveLog: (obj: DescribeEnvironmentsRequest) => any;
351
-
352
- export declare const EnvironmentLifecycleFilterSensitiveLog: (obj: EnvironmentLifecycle) => any;
353
-
354
- export declare const EnvironmentFilterSensitiveLog: (obj: Environment) => any;
355
-
356
- export declare const DescribeEnvironmentsResultFilterSensitiveLog: (obj: DescribeEnvironmentsResult) => any;
357
-
358
- export declare const DescribeEnvironmentStatusRequestFilterSensitiveLog: (obj: DescribeEnvironmentStatusRequest) => any;
359
-
360
- export declare const DescribeEnvironmentStatusResultFilterSensitiveLog: (obj: DescribeEnvironmentStatusResult) => any;
361
-
362
- export declare const ListEnvironmentsRequestFilterSensitiveLog: (obj: ListEnvironmentsRequest) => any;
363
-
364
- export declare const ListEnvironmentsResultFilterSensitiveLog: (obj: ListEnvironmentsResult) => any;
365
-
366
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
367
-
368
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
369
-
370
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
371
-
372
- export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
373
-
374
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
375
-
376
- export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
377
-
378
- export declare const UpdateEnvironmentRequestFilterSensitiveLog: (obj: UpdateEnvironmentRequest) => any;
379
-
380
- export declare const UpdateEnvironmentResultFilterSensitiveLog: (obj: UpdateEnvironmentResult) => any;
381
-
382
- export declare const UpdateEnvironmentMembershipRequestFilterSensitiveLog: (obj: UpdateEnvironmentMembershipRequest) => any;
383
-
384
- export declare const UpdateEnvironmentMembershipResultFilterSensitiveLog: (obj: UpdateEnvironmentMembershipResult) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { Cloud9ServiceException as __BaseException } from "./Cloud9ServiceException";
3
+
4
+ export declare class BadRequestException extends __BaseException {
5
+ readonly name: "BadRequestException";
6
+ readonly $fault: "client";
7
+ className?: string;
8
+ code?: number;
9
+
10
+ constructor(
11
+ opts: __ExceptionOptionType<BadRequestException, __BaseException>
12
+ );
13
+ }
14
+
15
+ export declare class ConflictException extends __BaseException {
16
+ readonly name: "ConflictException";
17
+ readonly $fault: "client";
18
+ className?: string;
19
+ code?: number;
20
+
21
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
22
+ }
23
+ export declare enum ConnectionType {
24
+ CONNECT_SSH = "CONNECT_SSH",
25
+ CONNECT_SSM = "CONNECT_SSM",
26
+ }
27
+
28
+ export interface Tag {
29
+ Key: string | undefined;
30
+
31
+ Value: string | undefined;
32
+ }
33
+ export interface CreateEnvironmentEC2Request {
34
+ name: string | undefined;
35
+
36
+ description?: string;
37
+
38
+ clientRequestToken?: string;
39
+
40
+ instanceType: string | undefined;
41
+
42
+ subnetId?: string;
43
+
44
+ imageId?: string;
45
+
46
+ automaticStopTimeMinutes?: number;
47
+
48
+ ownerArn?: string;
49
+
50
+ tags?: Tag[];
51
+
52
+ connectionType?: ConnectionType | string;
53
+
54
+ dryRun?: boolean;
55
+ }
56
+ export interface CreateEnvironmentEC2Result {
57
+ environmentId?: string;
58
+ }
59
+
60
+ export declare class ForbiddenException extends __BaseException {
61
+ readonly name: "ForbiddenException";
62
+ readonly $fault: "client";
63
+ className?: string;
64
+ code?: number;
65
+
66
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
67
+ }
68
+
69
+ export declare class InternalServerErrorException extends __BaseException {
70
+ readonly name: "InternalServerErrorException";
71
+ readonly $fault: "server";
72
+ className?: string;
73
+ code?: number;
74
+
75
+ constructor(
76
+ opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
77
+ );
78
+ }
79
+
80
+ export declare class LimitExceededException extends __BaseException {
81
+ readonly name: "LimitExceededException";
82
+ readonly $fault: "client";
83
+ className?: string;
84
+ code?: number;
85
+
86
+ constructor(
87
+ opts: __ExceptionOptionType<LimitExceededException, __BaseException>
88
+ );
89
+ }
90
+
91
+ export declare class NotFoundException extends __BaseException {
92
+ readonly name: "NotFoundException";
93
+ readonly $fault: "client";
94
+ className?: string;
95
+ code?: number;
96
+
97
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
98
+ }
99
+
100
+ export declare class TooManyRequestsException extends __BaseException {
101
+ readonly name: "TooManyRequestsException";
102
+ readonly $fault: "client";
103
+ className?: string;
104
+ code?: number;
105
+
106
+ constructor(
107
+ opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
108
+ );
109
+ }
110
+ export declare enum MemberPermissions {
111
+ READ_ONLY = "read-only",
112
+ READ_WRITE = "read-write",
113
+ }
114
+ export interface CreateEnvironmentMembershipRequest {
115
+ environmentId: string | undefined;
116
+
117
+ userArn: string | undefined;
118
+
119
+ permissions: MemberPermissions | string | undefined;
120
+ }
121
+ export declare enum Permissions {
122
+ OWNER = "owner",
123
+ READ_ONLY = "read-only",
124
+ READ_WRITE = "read-write",
125
+ }
126
+
127
+ export interface EnvironmentMember {
128
+ permissions: Permissions | string | undefined;
129
+
130
+ userId: string | undefined;
131
+
132
+ userArn: string | undefined;
133
+
134
+ environmentId: string | undefined;
135
+
136
+ lastAccess?: Date;
137
+ }
138
+ export interface CreateEnvironmentMembershipResult {
139
+ membership: EnvironmentMember | undefined;
140
+ }
141
+ export interface DeleteEnvironmentRequest {
142
+ environmentId: string | undefined;
143
+ }
144
+ export interface DeleteEnvironmentResult {}
145
+ export interface DeleteEnvironmentMembershipRequest {
146
+ environmentId: string | undefined;
147
+
148
+ userArn: string | undefined;
149
+ }
150
+ export interface DeleteEnvironmentMembershipResult {}
151
+ export interface DescribeEnvironmentMembershipsRequest {
152
+ userArn?: string;
153
+
154
+ environmentId?: string;
155
+
156
+ permissions?: (Permissions | string)[];
157
+
158
+ nextToken?: string;
159
+
160
+ maxResults?: number;
161
+ }
162
+ export interface DescribeEnvironmentMembershipsResult {
163
+ memberships?: EnvironmentMember[];
164
+
165
+ nextToken?: string;
166
+ }
167
+ export interface DescribeEnvironmentsRequest {
168
+ environmentIds: string[] | undefined;
169
+ }
170
+ export declare enum EnvironmentLifecycleStatus {
171
+ CREATED = "CREATED",
172
+ CREATE_FAILED = "CREATE_FAILED",
173
+ CREATING = "CREATING",
174
+ DELETE_FAILED = "DELETE_FAILED",
175
+ DELETING = "DELETING",
176
+ }
177
+
178
+ export interface EnvironmentLifecycle {
179
+ status?: EnvironmentLifecycleStatus | string;
180
+
181
+ reason?: string;
182
+
183
+ failureResource?: string;
184
+ }
185
+ export declare enum ManagedCredentialsStatus {
186
+ DISABLED_BY_COLLABORATOR = "DISABLED_BY_COLLABORATOR",
187
+ DISABLED_BY_DEFAULT = "DISABLED_BY_DEFAULT",
188
+ DISABLED_BY_OWNER = "DISABLED_BY_OWNER",
189
+ ENABLED_BY_OWNER = "ENABLED_BY_OWNER",
190
+ ENABLED_ON_CREATE = "ENABLED_ON_CREATE",
191
+ FAILED_REMOVAL_BY_COLLABORATOR = "FAILED_REMOVAL_BY_COLLABORATOR",
192
+ FAILED_REMOVAL_BY_OWNER = "FAILED_REMOVAL_BY_OWNER",
193
+ PENDING_REMOVAL_BY_COLLABORATOR = "PENDING_REMOVAL_BY_COLLABORATOR",
194
+ PENDING_REMOVAL_BY_OWNER = "PENDING_REMOVAL_BY_OWNER",
195
+ PENDING_START_REMOVAL_BY_COLLABORATOR = "PENDING_START_REMOVAL_BY_COLLABORATOR",
196
+ PENDING_START_REMOVAL_BY_OWNER = "PENDING_START_REMOVAL_BY_OWNER",
197
+ }
198
+ export declare enum EnvironmentType {
199
+ EC2 = "ec2",
200
+ SSH = "ssh",
201
+ }
202
+
203
+ export interface Environment {
204
+ id?: string;
205
+
206
+ name?: string;
207
+
208
+ description?: string;
209
+
210
+ type: EnvironmentType | string | undefined;
211
+
212
+ connectionType?: ConnectionType | string;
213
+
214
+ arn: string | undefined;
215
+
216
+ ownerArn: string | undefined;
217
+
218
+ lifecycle?: EnvironmentLifecycle;
219
+
220
+ managedCredentialsStatus?: ManagedCredentialsStatus | string;
221
+ }
222
+ export interface DescribeEnvironmentsResult {
223
+ environments?: Environment[];
224
+ }
225
+ export interface DescribeEnvironmentStatusRequest {
226
+ environmentId: string | undefined;
227
+ }
228
+ export declare enum EnvironmentStatus {
229
+ CONNECTING = "connecting",
230
+ CREATING = "creating",
231
+ DELETING = "deleting",
232
+ ERROR = "error",
233
+ READY = "ready",
234
+ STOPPED = "stopped",
235
+ STOPPING = "stopping",
236
+ }
237
+ export interface DescribeEnvironmentStatusResult {
238
+ status: EnvironmentStatus | string | undefined;
239
+
240
+ message: string | undefined;
241
+ }
242
+ export interface ListEnvironmentsRequest {
243
+ nextToken?: string;
244
+
245
+ maxResults?: number;
246
+ }
247
+ export interface ListEnvironmentsResult {
248
+ nextToken?: string;
249
+
250
+ environmentIds?: string[];
251
+ }
252
+ export interface ListTagsForResourceRequest {
253
+ ResourceARN: string | undefined;
254
+ }
255
+ export interface ListTagsForResourceResponse {
256
+ Tags?: Tag[];
257
+ }
258
+
259
+ export declare class ConcurrentAccessException extends __BaseException {
260
+ readonly name: "ConcurrentAccessException";
261
+ readonly $fault: "client";
262
+ className?: string;
263
+ code?: number;
264
+
265
+ constructor(
266
+ opts: __ExceptionOptionType<ConcurrentAccessException, __BaseException>
267
+ );
268
+ }
269
+ export interface TagResourceRequest {
270
+ ResourceARN: string | undefined;
271
+
272
+ Tags: Tag[] | undefined;
273
+ }
274
+ export interface TagResourceResponse {}
275
+ export interface UntagResourceRequest {
276
+ ResourceARN: string | undefined;
277
+
278
+ TagKeys: string[] | undefined;
279
+ }
280
+ export interface UntagResourceResponse {}
281
+ export declare enum ManagedCredentialsAction {
282
+ DISABLE = "DISABLE",
283
+ ENABLE = "ENABLE",
284
+ }
285
+ export interface UpdateEnvironmentRequest {
286
+ environmentId: string | undefined;
287
+
288
+ name?: string;
289
+
290
+ description?: string;
291
+
292
+ managedCredentialsAction?: ManagedCredentialsAction | string;
293
+ }
294
+ export interface UpdateEnvironmentResult {}
295
+ export interface UpdateEnvironmentMembershipRequest {
296
+ environmentId: string | undefined;
297
+
298
+ userArn: string | undefined;
299
+
300
+ permissions: MemberPermissions | string | undefined;
301
+ }
302
+ export interface UpdateEnvironmentMembershipResult {
303
+ membership?: EnvironmentMember;
304
+ }
305
+
306
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
307
+
308
+ export declare const CreateEnvironmentEC2RequestFilterSensitiveLog: (
309
+ obj: CreateEnvironmentEC2Request
310
+ ) => any;
311
+
312
+ export declare const CreateEnvironmentEC2ResultFilterSensitiveLog: (
313
+ obj: CreateEnvironmentEC2Result
314
+ ) => any;
315
+
316
+ export declare const CreateEnvironmentMembershipRequestFilterSensitiveLog: (
317
+ obj: CreateEnvironmentMembershipRequest
318
+ ) => any;
319
+
320
+ export declare const EnvironmentMemberFilterSensitiveLog: (
321
+ obj: EnvironmentMember
322
+ ) => any;
323
+
324
+ export declare const CreateEnvironmentMembershipResultFilterSensitiveLog: (
325
+ obj: CreateEnvironmentMembershipResult
326
+ ) => any;
327
+
328
+ export declare const DeleteEnvironmentRequestFilterSensitiveLog: (
329
+ obj: DeleteEnvironmentRequest
330
+ ) => any;
331
+
332
+ export declare const DeleteEnvironmentResultFilterSensitiveLog: (
333
+ obj: DeleteEnvironmentResult
334
+ ) => any;
335
+
336
+ export declare const DeleteEnvironmentMembershipRequestFilterSensitiveLog: (
337
+ obj: DeleteEnvironmentMembershipRequest
338
+ ) => any;
339
+
340
+ export declare const DeleteEnvironmentMembershipResultFilterSensitiveLog: (
341
+ obj: DeleteEnvironmentMembershipResult
342
+ ) => any;
343
+
344
+ export declare const DescribeEnvironmentMembershipsRequestFilterSensitiveLog: (
345
+ obj: DescribeEnvironmentMembershipsRequest
346
+ ) => any;
347
+
348
+ export declare const DescribeEnvironmentMembershipsResultFilterSensitiveLog: (
349
+ obj: DescribeEnvironmentMembershipsResult
350
+ ) => any;
351
+
352
+ export declare const DescribeEnvironmentsRequestFilterSensitiveLog: (
353
+ obj: DescribeEnvironmentsRequest
354
+ ) => any;
355
+
356
+ export declare const EnvironmentLifecycleFilterSensitiveLog: (
357
+ obj: EnvironmentLifecycle
358
+ ) => any;
359
+
360
+ export declare const EnvironmentFilterSensitiveLog: (obj: Environment) => any;
361
+
362
+ export declare const DescribeEnvironmentsResultFilterSensitiveLog: (
363
+ obj: DescribeEnvironmentsResult
364
+ ) => any;
365
+
366
+ export declare const DescribeEnvironmentStatusRequestFilterSensitiveLog: (
367
+ obj: DescribeEnvironmentStatusRequest
368
+ ) => any;
369
+
370
+ export declare const DescribeEnvironmentStatusResultFilterSensitiveLog: (
371
+ obj: DescribeEnvironmentStatusResult
372
+ ) => any;
373
+
374
+ export declare const ListEnvironmentsRequestFilterSensitiveLog: (
375
+ obj: ListEnvironmentsRequest
376
+ ) => any;
377
+
378
+ export declare const ListEnvironmentsResultFilterSensitiveLog: (
379
+ obj: ListEnvironmentsResult
380
+ ) => any;
381
+
382
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
383
+ obj: ListTagsForResourceRequest
384
+ ) => any;
385
+
386
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
387
+ obj: ListTagsForResourceResponse
388
+ ) => any;
389
+
390
+ export declare const TagResourceRequestFilterSensitiveLog: (
391
+ obj: TagResourceRequest
392
+ ) => any;
393
+
394
+ export declare const TagResourceResponseFilterSensitiveLog: (
395
+ obj: TagResourceResponse
396
+ ) => any;
397
+
398
+ export declare const UntagResourceRequestFilterSensitiveLog: (
399
+ obj: UntagResourceRequest
400
+ ) => any;
401
+
402
+ export declare const UntagResourceResponseFilterSensitiveLog: (
403
+ obj: UntagResourceResponse
404
+ ) => any;
405
+
406
+ export declare const UpdateEnvironmentRequestFilterSensitiveLog: (
407
+ obj: UpdateEnvironmentRequest
408
+ ) => any;
409
+
410
+ export declare const UpdateEnvironmentResultFilterSensitiveLog: (
411
+ obj: UpdateEnvironmentResult
412
+ ) => any;
413
+
414
+ export declare const UpdateEnvironmentMembershipRequestFilterSensitiveLog: (
415
+ obj: UpdateEnvironmentMembershipRequest
416
+ ) => any;
417
+
418
+ export declare const UpdateEnvironmentMembershipResultFilterSensitiveLog: (
419
+ obj: UpdateEnvironmentMembershipResult
420
+ ) => any;