@aws-sdk/client-cloud9 3.987.0 → 3.988.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js CHANGED
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
15
15
  var runtimeConfig = require('./runtimeConfig');
16
16
  var regionConfigResolver = require('@aws-sdk/region-config-resolver');
17
17
  var protocolHttp = require('@smithy/protocol-http');
18
+ var schemas_0 = require('./schemas/schemas_0');
19
+ var errors = require('./models/errors');
20
+ var Cloud9ServiceException = require('./models/Cloud9ServiceException');
18
21
 
19
22
  const resolveClientEndpointParameters = (options) => {
20
23
  return Object.assign(options, {
@@ -110,502 +113,6 @@ class Cloud9Client extends smithyClient.Client {
110
113
  }
111
114
  }
112
115
 
113
- class Cloud9ServiceException extends smithyClient.ServiceException {
114
- constructor(options) {
115
- super(options);
116
- Object.setPrototypeOf(this, Cloud9ServiceException.prototype);
117
- }
118
- }
119
-
120
- class BadRequestException extends Cloud9ServiceException {
121
- name = "BadRequestException";
122
- $fault = "client";
123
- className;
124
- code;
125
- constructor(opts) {
126
- super({
127
- name: "BadRequestException",
128
- $fault: "client",
129
- ...opts,
130
- });
131
- Object.setPrototypeOf(this, BadRequestException.prototype);
132
- this.className = opts.className;
133
- this.code = opts.code;
134
- }
135
- }
136
- class ConflictException extends Cloud9ServiceException {
137
- name = "ConflictException";
138
- $fault = "client";
139
- className;
140
- code;
141
- constructor(opts) {
142
- super({
143
- name: "ConflictException",
144
- $fault: "client",
145
- ...opts,
146
- });
147
- Object.setPrototypeOf(this, ConflictException.prototype);
148
- this.className = opts.className;
149
- this.code = opts.code;
150
- }
151
- }
152
- class ForbiddenException extends Cloud9ServiceException {
153
- name = "ForbiddenException";
154
- $fault = "client";
155
- className;
156
- code;
157
- constructor(opts) {
158
- super({
159
- name: "ForbiddenException",
160
- $fault: "client",
161
- ...opts,
162
- });
163
- Object.setPrototypeOf(this, ForbiddenException.prototype);
164
- this.className = opts.className;
165
- this.code = opts.code;
166
- }
167
- }
168
- class InternalServerErrorException extends Cloud9ServiceException {
169
- name = "InternalServerErrorException";
170
- $fault = "server";
171
- className;
172
- code;
173
- constructor(opts) {
174
- super({
175
- name: "InternalServerErrorException",
176
- $fault: "server",
177
- ...opts,
178
- });
179
- Object.setPrototypeOf(this, InternalServerErrorException.prototype);
180
- this.className = opts.className;
181
- this.code = opts.code;
182
- }
183
- }
184
- class LimitExceededException extends Cloud9ServiceException {
185
- name = "LimitExceededException";
186
- $fault = "client";
187
- className;
188
- code;
189
- constructor(opts) {
190
- super({
191
- name: "LimitExceededException",
192
- $fault: "client",
193
- ...opts,
194
- });
195
- Object.setPrototypeOf(this, LimitExceededException.prototype);
196
- this.className = opts.className;
197
- this.code = opts.code;
198
- }
199
- }
200
- class NotFoundException extends Cloud9ServiceException {
201
- name = "NotFoundException";
202
- $fault = "client";
203
- className;
204
- code;
205
- constructor(opts) {
206
- super({
207
- name: "NotFoundException",
208
- $fault: "client",
209
- ...opts,
210
- });
211
- Object.setPrototypeOf(this, NotFoundException.prototype);
212
- this.className = opts.className;
213
- this.code = opts.code;
214
- }
215
- }
216
- class TooManyRequestsException extends Cloud9ServiceException {
217
- name = "TooManyRequestsException";
218
- $fault = "client";
219
- className;
220
- code;
221
- constructor(opts) {
222
- super({
223
- name: "TooManyRequestsException",
224
- $fault: "client",
225
- ...opts,
226
- });
227
- Object.setPrototypeOf(this, TooManyRequestsException.prototype);
228
- this.className = opts.className;
229
- this.code = opts.code;
230
- }
231
- }
232
- class ConcurrentAccessException extends Cloud9ServiceException {
233
- name = "ConcurrentAccessException";
234
- $fault = "client";
235
- className;
236
- code;
237
- constructor(opts) {
238
- super({
239
- name: "ConcurrentAccessException",
240
- $fault: "client",
241
- ...opts,
242
- });
243
- Object.setPrototypeOf(this, ConcurrentAccessException.prototype);
244
- this.className = opts.className;
245
- this.code = opts.code;
246
- }
247
- }
248
-
249
- const _BRE = "BadRequestException";
250
- const _CAE = "ConcurrentAccessException";
251
- const _CE = "ConflictException";
252
- const _CEEC = "CreateEnvironmentEC2";
253
- const _CEECR = "CreateEnvironmentEC2Request";
254
- const _CEECRr = "CreateEnvironmentEC2Result";
255
- const _CEM = "CreateEnvironmentMembership";
256
- const _CEMR = "CreateEnvironmentMembershipRequest";
257
- const _CEMRr = "CreateEnvironmentMembershipResult";
258
- const _DE = "DeleteEnvironment";
259
- const _DEM = "DeleteEnvironmentMembership";
260
- const _DEMR = "DeleteEnvironmentMembershipRequest";
261
- const _DEMRe = "DeleteEnvironmentMembershipResult";
262
- const _DEMRes = "DescribeEnvironmentMembershipsRequest";
263
- const _DEMResc = "DescribeEnvironmentMembershipsResult";
264
- const _DEMe = "DescribeEnvironmentMemberships";
265
- const _DER = "DeleteEnvironmentRequest";
266
- const _DERe = "DeleteEnvironmentResult";
267
- const _DERes = "DescribeEnvironmentsRequest";
268
- const _DEResc = "DescribeEnvironmentsResult";
269
- const _DES = "DescribeEnvironmentStatus";
270
- const _DESR = "DescribeEnvironmentStatusRequest";
271
- const _DESRe = "DescribeEnvironmentStatusResult";
272
- const _DEe = "DescribeEnvironments";
273
- const _E = "Environment";
274
- const _ED = "EnvironmentDescription";
275
- const _EL = "EnvironmentLifecycle";
276
- const _ELn = "EnvironmentList";
277
- const _EM = "EnvironmentMember";
278
- const _EML = "EnvironmentMembersList";
279
- const _FE = "ForbiddenException";
280
- const _ISEE = "InternalServerErrorException";
281
- const _K = "Key";
282
- const _LE = "ListEnvironments";
283
- const _LEE = "LimitExceededException";
284
- const _LER = "ListEnvironmentsRequest";
285
- const _LERi = "ListEnvironmentsResult";
286
- const _LTFR = "ListTagsForResource";
287
- const _LTFRR = "ListTagsForResourceRequest";
288
- const _LTFRRi = "ListTagsForResourceResponse";
289
- const _NFE = "NotFoundException";
290
- const _RARN = "ResourceARN";
291
- const _T = "Tags";
292
- const _TK = "TagKey";
293
- const _TKL = "TagKeyList";
294
- const _TKa = "TagKeys";
295
- const _TL = "TagList";
296
- const _TMRE = "TooManyRequestsException";
297
- const _TR = "TagResource";
298
- const _TRR = "TagResourceRequest";
299
- const _TRRa = "TagResourceResponse";
300
- const _TV = "TagValue";
301
- const _Ta = "Tag";
302
- const _UE = "UpdateEnvironment";
303
- const _UEM = "UpdateEnvironmentMembership";
304
- const _UEMR = "UpdateEnvironmentMembershipRequest";
305
- const _UEMRp = "UpdateEnvironmentMembershipResult";
306
- const _UER = "UpdateEnvironmentRequest";
307
- const _UERp = "UpdateEnvironmentResult";
308
- const _UR = "UntagResource";
309
- const _URR = "UntagResourceRequest";
310
- const _URRn = "UntagResourceResponse";
311
- const _V = "Value";
312
- const _a = "arn";
313
- const _aSTM = "automaticStopTimeMinutes";
314
- const _c = "client";
315
- const _cN = "className";
316
- const _cRT = "clientRequestToken";
317
- const _cT = "connectionType";
318
- const _co = "code";
319
- const _d = "description";
320
- const _dR = "dryRun";
321
- const _e = "error";
322
- const _eI = "environmentId";
323
- const _eIn = "environmentIds";
324
- const _en = "environments";
325
- const _fR = "failureResource";
326
- const _i = "id";
327
- const _iI = "imageId";
328
- const _iT = "instanceType";
329
- const _l = "lifecycle";
330
- const _lA = "lastAccess";
331
- const _m = "message";
332
- const _mCA = "managedCredentialsAction";
333
- const _mCS = "managedCredentialsStatus";
334
- const _mR = "maxResults";
335
- const _me = "membership";
336
- const _mem = "memberships";
337
- const _n = "name";
338
- const _nT = "nextToken";
339
- const _oA = "ownerArn";
340
- const _p = "permissions";
341
- const _r = "reason";
342
- const _s = "status";
343
- const _sI = "subnetId";
344
- const _se = "server";
345
- const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.cloud9";
346
- const _t = "tags";
347
- const _ty = "type";
348
- const _uA = "userArn";
349
- const _uI = "userId";
350
- const n0 = "com.amazonaws.cloud9";
351
- var EnvironmentDescription = [0, n0, _ED, 8, 0];
352
- var TagKey = [0, n0, _TK, 8, 0];
353
- var TagValue = [0, n0, _TV, 8, 0];
354
- var BadRequestException$ = [-3, n0, _BRE,
355
- { [_e]: _c },
356
- [_m, _cN, _co],
357
- [0, 0, 1]
358
- ];
359
- schema.TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
360
- var ConcurrentAccessException$ = [-3, n0, _CAE,
361
- { [_e]: _c },
362
- [_m, _cN, _co],
363
- [0, 0, 1]
364
- ];
365
- schema.TypeRegistry.for(n0).registerError(ConcurrentAccessException$, ConcurrentAccessException);
366
- var ConflictException$ = [-3, n0, _CE,
367
- { [_e]: _c },
368
- [_m, _cN, _co],
369
- [0, 0, 1]
370
- ];
371
- schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
372
- var CreateEnvironmentEC2Request$ = [3, n0, _CEECR,
373
- 0,
374
- [_n, _iT, _iI, _d, _cRT, _sI, _aSTM, _oA, _t, _cT, _dR],
375
- [0, 0, 0, [() => EnvironmentDescription, 0], 0, 0, 1, 0, [() => TagList, 0], 0, 2], 3
376
- ];
377
- var CreateEnvironmentEC2Result$ = [3, n0, _CEECRr,
378
- 0,
379
- [_eI],
380
- [0]
381
- ];
382
- var CreateEnvironmentMembershipRequest$ = [3, n0, _CEMR,
383
- 0,
384
- [_eI, _uA, _p],
385
- [0, 0, 0], 3
386
- ];
387
- var CreateEnvironmentMembershipResult$ = [3, n0, _CEMRr,
388
- 0,
389
- [_me],
390
- [() => EnvironmentMember$], 1
391
- ];
392
- var DeleteEnvironmentMembershipRequest$ = [3, n0, _DEMR,
393
- 0,
394
- [_eI, _uA],
395
- [0, 0], 2
396
- ];
397
- var DeleteEnvironmentMembershipResult$ = [3, n0, _DEMRe,
398
- 0,
399
- [],
400
- []
401
- ];
402
- var DeleteEnvironmentRequest$ = [3, n0, _DER,
403
- 0,
404
- [_eI],
405
- [0], 1
406
- ];
407
- var DeleteEnvironmentResult$ = [3, n0, _DERe,
408
- 0,
409
- [],
410
- []
411
- ];
412
- var DescribeEnvironmentMembershipsRequest$ = [3, n0, _DEMRes,
413
- 0,
414
- [_uA, _eI, _p, _nT, _mR],
415
- [0, 0, 64 | 0, 0, 1]
416
- ];
417
- var DescribeEnvironmentMembershipsResult$ = [3, n0, _DEMResc,
418
- 0,
419
- [_mem, _nT],
420
- [() => EnvironmentMembersList, 0]
421
- ];
422
- var DescribeEnvironmentsRequest$ = [3, n0, _DERes,
423
- 0,
424
- [_eIn],
425
- [64 | 0], 1
426
- ];
427
- var DescribeEnvironmentsResult$ = [3, n0, _DEResc,
428
- 0,
429
- [_en],
430
- [[() => EnvironmentList, 0]]
431
- ];
432
- var DescribeEnvironmentStatusRequest$ = [3, n0, _DESR,
433
- 0,
434
- [_eI],
435
- [0], 1
436
- ];
437
- var DescribeEnvironmentStatusResult$ = [3, n0, _DESRe,
438
- 0,
439
- [_s, _m],
440
- [0, 0], 2
441
- ];
442
- var Environment$ = [3, n0, _E,
443
- 0,
444
- [_ty, _a, _oA, _i, _n, _d, _cT, _l, _mCS],
445
- [0, 0, 0, 0, 0, [() => EnvironmentDescription, 0], 0, () => EnvironmentLifecycle$, 0], 3
446
- ];
447
- var EnvironmentLifecycle$ = [3, n0, _EL,
448
- 0,
449
- [_s, _r, _fR],
450
- [0, 0, 0]
451
- ];
452
- var EnvironmentMember$ = [3, n0, _EM,
453
- 0,
454
- [_p, _uI, _uA, _eI, _lA],
455
- [0, 0, 0, 0, 4], 4
456
- ];
457
- var ForbiddenException$ = [-3, n0, _FE,
458
- { [_e]: _c },
459
- [_m, _cN, _co],
460
- [0, 0, 1]
461
- ];
462
- schema.TypeRegistry.for(n0).registerError(ForbiddenException$, ForbiddenException);
463
- var InternalServerErrorException$ = [-3, n0, _ISEE,
464
- { [_e]: _se },
465
- [_m, _cN, _co],
466
- [0, 0, 1]
467
- ];
468
- schema.TypeRegistry.for(n0).registerError(InternalServerErrorException$, InternalServerErrorException);
469
- var LimitExceededException$ = [-3, n0, _LEE,
470
- { [_e]: _c },
471
- [_m, _cN, _co],
472
- [0, 0, 1]
473
- ];
474
- schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
475
- var ListEnvironmentsRequest$ = [3, n0, _LER,
476
- 0,
477
- [_nT, _mR],
478
- [0, 1]
479
- ];
480
- var ListEnvironmentsResult$ = [3, n0, _LERi,
481
- 0,
482
- [_nT, _eIn],
483
- [0, 64 | 0]
484
- ];
485
- var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
486
- 0,
487
- [_RARN],
488
- [0], 1
489
- ];
490
- var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
491
- 0,
492
- [_T],
493
- [[() => TagList, 0]]
494
- ];
495
- var NotFoundException$ = [-3, n0, _NFE,
496
- { [_e]: _c },
497
- [_m, _cN, _co],
498
- [0, 0, 1]
499
- ];
500
- schema.TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
501
- var Tag$ = [3, n0, _Ta,
502
- 8,
503
- [_K, _V],
504
- [[() => TagKey, 0], [() => TagValue, 0]], 2
505
- ];
506
- var TagResourceRequest$ = [3, n0, _TRR,
507
- 0,
508
- [_RARN, _T],
509
- [0, [() => TagList, 0]], 2
510
- ];
511
- var TagResourceResponse$ = [3, n0, _TRRa,
512
- 0,
513
- [],
514
- []
515
- ];
516
- var TooManyRequestsException$ = [-3, n0, _TMRE,
517
- { [_e]: _c },
518
- [_m, _cN, _co],
519
- [0, 0, 1]
520
- ];
521
- schema.TypeRegistry.for(n0).registerError(TooManyRequestsException$, TooManyRequestsException);
522
- var UntagResourceRequest$ = [3, n0, _URR,
523
- 0,
524
- [_RARN, _TKa],
525
- [0, [() => TagKeyList, 0]], 2
526
- ];
527
- var UntagResourceResponse$ = [3, n0, _URRn,
528
- 0,
529
- [],
530
- []
531
- ];
532
- var UpdateEnvironmentMembershipRequest$ = [3, n0, _UEMR,
533
- 0,
534
- [_eI, _uA, _p],
535
- [0, 0, 0], 3
536
- ];
537
- var UpdateEnvironmentMembershipResult$ = [3, n0, _UEMRp,
538
- 0,
539
- [_me],
540
- [() => EnvironmentMember$]
541
- ];
542
- var UpdateEnvironmentRequest$ = [3, n0, _UER,
543
- 0,
544
- [_eI, _n, _d, _mCA],
545
- [0, 0, [() => EnvironmentDescription, 0], 0], 1
546
- ];
547
- var UpdateEnvironmentResult$ = [3, n0, _UERp,
548
- 0,
549
- [],
550
- []
551
- ];
552
- var Cloud9ServiceException$ = [-3, _sm, "Cloud9ServiceException", 0, [], []];
553
- schema.TypeRegistry.for(_sm).registerError(Cloud9ServiceException$, Cloud9ServiceException);
554
- var EnvironmentList = [1, n0, _ELn,
555
- 0, [() => Environment$,
556
- 0]
557
- ];
558
- var EnvironmentMembersList = [1, n0, _EML,
559
- 0, () => EnvironmentMember$
560
- ];
561
- var TagKeyList = [1, n0, _TKL,
562
- 8, [() => TagKey,
563
- 0]
564
- ];
565
- var TagList = [1, n0, _TL,
566
- 8, [() => Tag$,
567
- 0]
568
- ];
569
- var CreateEnvironmentEC2$ = [9, n0, _CEEC,
570
- 2, () => CreateEnvironmentEC2Request$, () => CreateEnvironmentEC2Result$
571
- ];
572
- var CreateEnvironmentMembership$ = [9, n0, _CEM,
573
- 2, () => CreateEnvironmentMembershipRequest$, () => CreateEnvironmentMembershipResult$
574
- ];
575
- var DeleteEnvironment$ = [9, n0, _DE,
576
- 2, () => DeleteEnvironmentRequest$, () => DeleteEnvironmentResult$
577
- ];
578
- var DeleteEnvironmentMembership$ = [9, n0, _DEM,
579
- 2, () => DeleteEnvironmentMembershipRequest$, () => DeleteEnvironmentMembershipResult$
580
- ];
581
- var DescribeEnvironmentMemberships$ = [9, n0, _DEMe,
582
- 0, () => DescribeEnvironmentMembershipsRequest$, () => DescribeEnvironmentMembershipsResult$
583
- ];
584
- var DescribeEnvironments$ = [9, n0, _DEe,
585
- 0, () => DescribeEnvironmentsRequest$, () => DescribeEnvironmentsResult$
586
- ];
587
- var DescribeEnvironmentStatus$ = [9, n0, _DES,
588
- 0, () => DescribeEnvironmentStatusRequest$, () => DescribeEnvironmentStatusResult$
589
- ];
590
- var ListEnvironments$ = [9, n0, _LE,
591
- 0, () => ListEnvironmentsRequest$, () => ListEnvironmentsResult$
592
- ];
593
- var ListTagsForResource$ = [9, n0, _LTFR,
594
- 0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
595
- ];
596
- var TagResource$ = [9, n0, _TR,
597
- 0, () => TagResourceRequest$, () => TagResourceResponse$
598
- ];
599
- var UntagResource$ = [9, n0, _UR,
600
- 0, () => UntagResourceRequest$, () => UntagResourceResponse$
601
- ];
602
- var UpdateEnvironment$ = [9, n0, _UE,
603
- 2, () => UpdateEnvironmentRequest$, () => UpdateEnvironmentResult$
604
- ];
605
- var UpdateEnvironmentMembership$ = [9, n0, _UEM,
606
- 2, () => UpdateEnvironmentMembershipRequest$, () => UpdateEnvironmentMembershipResult$
607
- ];
608
-
609
116
  class CreateEnvironmentEC2Command extends smithyClient.Command
610
117
  .classBuilder()
611
118
  .ep(commonParams)
@@ -614,7 +121,7 @@ class CreateEnvironmentEC2Command extends smithyClient.Command
614
121
  })
615
122
  .s("AWSCloud9WorkspaceManagementService", "CreateEnvironmentEC2", {})
616
123
  .n("Cloud9Client", "CreateEnvironmentEC2Command")
617
- .sc(CreateEnvironmentEC2$)
124
+ .sc(schemas_0.CreateEnvironmentEC2$)
618
125
  .build() {
619
126
  }
620
127
 
@@ -626,7 +133,7 @@ class CreateEnvironmentMembershipCommand extends smithyClient.Command
626
133
  })
627
134
  .s("AWSCloud9WorkspaceManagementService", "CreateEnvironmentMembership", {})
628
135
  .n("Cloud9Client", "CreateEnvironmentMembershipCommand")
629
- .sc(CreateEnvironmentMembership$)
136
+ .sc(schemas_0.CreateEnvironmentMembership$)
630
137
  .build() {
631
138
  }
632
139
 
@@ -638,7 +145,7 @@ class DeleteEnvironmentCommand extends smithyClient.Command
638
145
  })
639
146
  .s("AWSCloud9WorkspaceManagementService", "DeleteEnvironment", {})
640
147
  .n("Cloud9Client", "DeleteEnvironmentCommand")
641
- .sc(DeleteEnvironment$)
148
+ .sc(schemas_0.DeleteEnvironment$)
642
149
  .build() {
643
150
  }
644
151
 
@@ -650,7 +157,7 @@ class DeleteEnvironmentMembershipCommand extends smithyClient.Command
650
157
  })
651
158
  .s("AWSCloud9WorkspaceManagementService", "DeleteEnvironmentMembership", {})
652
159
  .n("Cloud9Client", "DeleteEnvironmentMembershipCommand")
653
- .sc(DeleteEnvironmentMembership$)
160
+ .sc(schemas_0.DeleteEnvironmentMembership$)
654
161
  .build() {
655
162
  }
656
163
 
@@ -662,7 +169,7 @@ class DescribeEnvironmentMembershipsCommand extends smithyClient.Command
662
169
  })
663
170
  .s("AWSCloud9WorkspaceManagementService", "DescribeEnvironmentMemberships", {})
664
171
  .n("Cloud9Client", "DescribeEnvironmentMembershipsCommand")
665
- .sc(DescribeEnvironmentMemberships$)
172
+ .sc(schemas_0.DescribeEnvironmentMemberships$)
666
173
  .build() {
667
174
  }
668
175
 
@@ -674,7 +181,7 @@ class DescribeEnvironmentsCommand extends smithyClient.Command
674
181
  })
675
182
  .s("AWSCloud9WorkspaceManagementService", "DescribeEnvironments", {})
676
183
  .n("Cloud9Client", "DescribeEnvironmentsCommand")
677
- .sc(DescribeEnvironments$)
184
+ .sc(schemas_0.DescribeEnvironments$)
678
185
  .build() {
679
186
  }
680
187
 
@@ -686,7 +193,7 @@ class DescribeEnvironmentStatusCommand extends smithyClient.Command
686
193
  })
687
194
  .s("AWSCloud9WorkspaceManagementService", "DescribeEnvironmentStatus", {})
688
195
  .n("Cloud9Client", "DescribeEnvironmentStatusCommand")
689
- .sc(DescribeEnvironmentStatus$)
196
+ .sc(schemas_0.DescribeEnvironmentStatus$)
690
197
  .build() {
691
198
  }
692
199
 
@@ -698,7 +205,7 @@ class ListEnvironmentsCommand extends smithyClient.Command
698
205
  })
699
206
  .s("AWSCloud9WorkspaceManagementService", "ListEnvironments", {})
700
207
  .n("Cloud9Client", "ListEnvironmentsCommand")
701
- .sc(ListEnvironments$)
208
+ .sc(schemas_0.ListEnvironments$)
702
209
  .build() {
703
210
  }
704
211
 
@@ -710,7 +217,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
710
217
  })
711
218
  .s("AWSCloud9WorkspaceManagementService", "ListTagsForResource", {})
712
219
  .n("Cloud9Client", "ListTagsForResourceCommand")
713
- .sc(ListTagsForResource$)
220
+ .sc(schemas_0.ListTagsForResource$)
714
221
  .build() {
715
222
  }
716
223
 
@@ -722,7 +229,7 @@ class TagResourceCommand extends smithyClient.Command
722
229
  })
723
230
  .s("AWSCloud9WorkspaceManagementService", "TagResource", {})
724
231
  .n("Cloud9Client", "TagResourceCommand")
725
- .sc(TagResource$)
232
+ .sc(schemas_0.TagResource$)
726
233
  .build() {
727
234
  }
728
235
 
@@ -734,7 +241,7 @@ class UntagResourceCommand extends smithyClient.Command
734
241
  })
735
242
  .s("AWSCloud9WorkspaceManagementService", "UntagResource", {})
736
243
  .n("Cloud9Client", "UntagResourceCommand")
737
- .sc(UntagResource$)
244
+ .sc(schemas_0.UntagResource$)
738
245
  .build() {
739
246
  }
740
247
 
@@ -746,7 +253,7 @@ class UpdateEnvironmentCommand extends smithyClient.Command
746
253
  })
747
254
  .s("AWSCloud9WorkspaceManagementService", "UpdateEnvironment", {})
748
255
  .n("Cloud9Client", "UpdateEnvironmentCommand")
749
- .sc(UpdateEnvironment$)
256
+ .sc(schemas_0.UpdateEnvironment$)
750
257
  .build() {
751
258
  }
752
259
 
@@ -758,7 +265,7 @@ class UpdateEnvironmentMembershipCommand extends smithyClient.Command
758
265
  })
759
266
  .s("AWSCloud9WorkspaceManagementService", "UpdateEnvironmentMembership", {})
760
267
  .n("Cloud9Client", "UpdateEnvironmentMembershipCommand")
761
- .sc(UpdateEnvironmentMembership$)
268
+ .sc(schemas_0.UpdateEnvironmentMembership$)
762
269
  .build() {
763
270
  }
764
271
 
@@ -848,89 +355,44 @@ Object.defineProperty(exports, "__Client", {
848
355
  enumerable: true,
849
356
  get: function () { return smithyClient.Client; }
850
357
  });
851
- exports.BadRequestException = BadRequestException;
852
- exports.BadRequestException$ = BadRequestException$;
358
+ Object.defineProperty(exports, "Cloud9ServiceException", {
359
+ enumerable: true,
360
+ get: function () { return Cloud9ServiceException.Cloud9ServiceException; }
361
+ });
853
362
  exports.Cloud9 = Cloud9;
854
363
  exports.Cloud9Client = Cloud9Client;
855
- exports.Cloud9ServiceException = Cloud9ServiceException;
856
- exports.Cloud9ServiceException$ = Cloud9ServiceException$;
857
- exports.ConcurrentAccessException = ConcurrentAccessException;
858
- exports.ConcurrentAccessException$ = ConcurrentAccessException$;
859
- exports.ConflictException = ConflictException;
860
- exports.ConflictException$ = ConflictException$;
861
364
  exports.ConnectionType = ConnectionType;
862
- exports.CreateEnvironmentEC2$ = CreateEnvironmentEC2$;
863
365
  exports.CreateEnvironmentEC2Command = CreateEnvironmentEC2Command;
864
- exports.CreateEnvironmentEC2Request$ = CreateEnvironmentEC2Request$;
865
- exports.CreateEnvironmentEC2Result$ = CreateEnvironmentEC2Result$;
866
- exports.CreateEnvironmentMembership$ = CreateEnvironmentMembership$;
867
366
  exports.CreateEnvironmentMembershipCommand = CreateEnvironmentMembershipCommand;
868
- exports.CreateEnvironmentMembershipRequest$ = CreateEnvironmentMembershipRequest$;
869
- exports.CreateEnvironmentMembershipResult$ = CreateEnvironmentMembershipResult$;
870
- exports.DeleteEnvironment$ = DeleteEnvironment$;
871
367
  exports.DeleteEnvironmentCommand = DeleteEnvironmentCommand;
872
- exports.DeleteEnvironmentMembership$ = DeleteEnvironmentMembership$;
873
368
  exports.DeleteEnvironmentMembershipCommand = DeleteEnvironmentMembershipCommand;
874
- exports.DeleteEnvironmentMembershipRequest$ = DeleteEnvironmentMembershipRequest$;
875
- exports.DeleteEnvironmentMembershipResult$ = DeleteEnvironmentMembershipResult$;
876
- exports.DeleteEnvironmentRequest$ = DeleteEnvironmentRequest$;
877
- exports.DeleteEnvironmentResult$ = DeleteEnvironmentResult$;
878
- exports.DescribeEnvironmentMemberships$ = DescribeEnvironmentMemberships$;
879
369
  exports.DescribeEnvironmentMembershipsCommand = DescribeEnvironmentMembershipsCommand;
880
- exports.DescribeEnvironmentMembershipsRequest$ = DescribeEnvironmentMembershipsRequest$;
881
- exports.DescribeEnvironmentMembershipsResult$ = DescribeEnvironmentMembershipsResult$;
882
- exports.DescribeEnvironmentStatus$ = DescribeEnvironmentStatus$;
883
370
  exports.DescribeEnvironmentStatusCommand = DescribeEnvironmentStatusCommand;
884
- exports.DescribeEnvironmentStatusRequest$ = DescribeEnvironmentStatusRequest$;
885
- exports.DescribeEnvironmentStatusResult$ = DescribeEnvironmentStatusResult$;
886
- exports.DescribeEnvironments$ = DescribeEnvironments$;
887
371
  exports.DescribeEnvironmentsCommand = DescribeEnvironmentsCommand;
888
- exports.DescribeEnvironmentsRequest$ = DescribeEnvironmentsRequest$;
889
- exports.DescribeEnvironmentsResult$ = DescribeEnvironmentsResult$;
890
- exports.Environment$ = Environment$;
891
- exports.EnvironmentLifecycle$ = EnvironmentLifecycle$;
892
372
  exports.EnvironmentLifecycleStatus = EnvironmentLifecycleStatus;
893
- exports.EnvironmentMember$ = EnvironmentMember$;
894
373
  exports.EnvironmentStatus = EnvironmentStatus;
895
374
  exports.EnvironmentType = EnvironmentType;
896
- exports.ForbiddenException = ForbiddenException;
897
- exports.ForbiddenException$ = ForbiddenException$;
898
- exports.InternalServerErrorException = InternalServerErrorException;
899
- exports.InternalServerErrorException$ = InternalServerErrorException$;
900
- exports.LimitExceededException = LimitExceededException;
901
- exports.LimitExceededException$ = LimitExceededException$;
902
- exports.ListEnvironments$ = ListEnvironments$;
903
375
  exports.ListEnvironmentsCommand = ListEnvironmentsCommand;
904
- exports.ListEnvironmentsRequest$ = ListEnvironmentsRequest$;
905
- exports.ListEnvironmentsResult$ = ListEnvironmentsResult$;
906
- exports.ListTagsForResource$ = ListTagsForResource$;
907
376
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
908
- exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
909
- exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
910
377
  exports.ManagedCredentialsAction = ManagedCredentialsAction;
911
378
  exports.ManagedCredentialsStatus = ManagedCredentialsStatus;
912
379
  exports.MemberPermissions = MemberPermissions;
913
- exports.NotFoundException = NotFoundException;
914
- exports.NotFoundException$ = NotFoundException$;
915
380
  exports.Permissions = Permissions;
916
- exports.Tag$ = Tag$;
917
- exports.TagResource$ = TagResource$;
918
381
  exports.TagResourceCommand = TagResourceCommand;
919
- exports.TagResourceRequest$ = TagResourceRequest$;
920
- exports.TagResourceResponse$ = TagResourceResponse$;
921
- exports.TooManyRequestsException = TooManyRequestsException;
922
- exports.TooManyRequestsException$ = TooManyRequestsException$;
923
- exports.UntagResource$ = UntagResource$;
924
382
  exports.UntagResourceCommand = UntagResourceCommand;
925
- exports.UntagResourceRequest$ = UntagResourceRequest$;
926
- exports.UntagResourceResponse$ = UntagResourceResponse$;
927
- exports.UpdateEnvironment$ = UpdateEnvironment$;
928
383
  exports.UpdateEnvironmentCommand = UpdateEnvironmentCommand;
929
- exports.UpdateEnvironmentMembership$ = UpdateEnvironmentMembership$;
930
384
  exports.UpdateEnvironmentMembershipCommand = UpdateEnvironmentMembershipCommand;
931
- exports.UpdateEnvironmentMembershipRequest$ = UpdateEnvironmentMembershipRequest$;
932
- exports.UpdateEnvironmentMembershipResult$ = UpdateEnvironmentMembershipResult$;
933
- exports.UpdateEnvironmentRequest$ = UpdateEnvironmentRequest$;
934
- exports.UpdateEnvironmentResult$ = UpdateEnvironmentResult$;
935
385
  exports.paginateDescribeEnvironmentMemberships = paginateDescribeEnvironmentMemberships;
936
386
  exports.paginateListEnvironments = paginateListEnvironments;
387
+ Object.keys(schemas_0).forEach(function (k) {
388
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
389
+ enumerable: true,
390
+ get: function () { return schemas_0[k]; }
391
+ });
392
+ });
393
+ Object.keys(errors).forEach(function (k) {
394
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
395
+ enumerable: true,
396
+ get: function () { return errors[k]; }
397
+ });
398
+ });