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