@aws-sdk/client-cloud9 3.927.0 → 3.929.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 +440 -582
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/Cloud9Client.js +2 -0
- package/dist-es/commands/CreateEnvironmentEC2Command.js +3 -10
- package/dist-es/commands/CreateEnvironmentMembershipCommand.js +3 -9
- package/dist-es/commands/DeleteEnvironmentCommand.js +3 -9
- package/dist-es/commands/DeleteEnvironmentMembershipCommand.js +3 -9
- package/dist-es/commands/DescribeEnvironmentMembershipsCommand.js +3 -9
- package/dist-es/commands/DescribeEnvironmentStatusCommand.js +3 -9
- package/dist-es/commands/DescribeEnvironmentsCommand.js +3 -10
- package/dist-es/commands/ListEnvironmentsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -10
- package/dist-es/commands/TagResourceCommand.js +3 -10
- package/dist-es/commands/UntagResourceCommand.js +3 -10
- package/dist-es/commands/UpdateEnvironmentCommand.js +3 -10
- package/dist-es/commands/UpdateEnvironmentMembershipCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -35
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +392 -0
- package/dist-types/Cloud9Client.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -32
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +64 -0
- package/dist-types/ts3.4/Cloud9Client.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -20
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +70 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_json1_1.js +0 -429
- package/dist-types/protocols/Aws_json1_1.d.ts +0 -119
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +0 -161
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,8 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
18
|
|
|
20
19
|
const resolveClientEndpointParameters = (options) => {
|
|
21
20
|
return Object.assign(options, {
|
|
@@ -91,6 +90,7 @@ class Cloud9Client extends smithyClient.Client {
|
|
|
91
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
92
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
93
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
94
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
95
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
96
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -110,14 +110,14 @@ class Cloud9Client extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
class Cloud9ServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let Cloud9ServiceException$1 = class Cloud9ServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, Cloud9ServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
};
|
|
119
119
|
|
|
120
|
-
class BadRequestException extends Cloud9ServiceException {
|
|
120
|
+
let BadRequestException$1 = class BadRequestException extends Cloud9ServiceException$1 {
|
|
121
121
|
name = "BadRequestException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
className;
|
|
@@ -132,8 +132,8 @@ class BadRequestException extends Cloud9ServiceException {
|
|
|
132
132
|
this.className = opts.className;
|
|
133
133
|
this.code = opts.code;
|
|
134
134
|
}
|
|
135
|
-
}
|
|
136
|
-
class ConflictException extends Cloud9ServiceException {
|
|
135
|
+
};
|
|
136
|
+
let ConflictException$1 = class ConflictException extends Cloud9ServiceException$1 {
|
|
137
137
|
name = "ConflictException";
|
|
138
138
|
$fault = "client";
|
|
139
139
|
className;
|
|
@@ -148,12 +148,12 @@ class ConflictException extends Cloud9ServiceException {
|
|
|
148
148
|
this.className = opts.className;
|
|
149
149
|
this.code = opts.code;
|
|
150
150
|
}
|
|
151
|
-
}
|
|
151
|
+
};
|
|
152
152
|
const ConnectionType = {
|
|
153
153
|
CONNECT_SSH: "CONNECT_SSH",
|
|
154
154
|
CONNECT_SSM: "CONNECT_SSM",
|
|
155
155
|
};
|
|
156
|
-
class ForbiddenException extends Cloud9ServiceException {
|
|
156
|
+
let ForbiddenException$1 = class ForbiddenException extends Cloud9ServiceException$1 {
|
|
157
157
|
name = "ForbiddenException";
|
|
158
158
|
$fault = "client";
|
|
159
159
|
className;
|
|
@@ -168,8 +168,8 @@ class ForbiddenException extends Cloud9ServiceException {
|
|
|
168
168
|
this.className = opts.className;
|
|
169
169
|
this.code = opts.code;
|
|
170
170
|
}
|
|
171
|
-
}
|
|
172
|
-
class InternalServerErrorException extends Cloud9ServiceException {
|
|
171
|
+
};
|
|
172
|
+
let InternalServerErrorException$1 = class InternalServerErrorException extends Cloud9ServiceException$1 {
|
|
173
173
|
name = "InternalServerErrorException";
|
|
174
174
|
$fault = "server";
|
|
175
175
|
className;
|
|
@@ -184,8 +184,8 @@ class InternalServerErrorException extends Cloud9ServiceException {
|
|
|
184
184
|
this.className = opts.className;
|
|
185
185
|
this.code = opts.code;
|
|
186
186
|
}
|
|
187
|
-
}
|
|
188
|
-
class LimitExceededException extends Cloud9ServiceException {
|
|
187
|
+
};
|
|
188
|
+
let LimitExceededException$1 = class LimitExceededException extends Cloud9ServiceException$1 {
|
|
189
189
|
name = "LimitExceededException";
|
|
190
190
|
$fault = "client";
|
|
191
191
|
className;
|
|
@@ -200,8 +200,8 @@ class LimitExceededException extends Cloud9ServiceException {
|
|
|
200
200
|
this.className = opts.className;
|
|
201
201
|
this.code = opts.code;
|
|
202
202
|
}
|
|
203
|
-
}
|
|
204
|
-
class NotFoundException extends Cloud9ServiceException {
|
|
203
|
+
};
|
|
204
|
+
let NotFoundException$1 = class NotFoundException extends Cloud9ServiceException$1 {
|
|
205
205
|
name = "NotFoundException";
|
|
206
206
|
$fault = "client";
|
|
207
207
|
className;
|
|
@@ -216,8 +216,8 @@ class NotFoundException extends Cloud9ServiceException {
|
|
|
216
216
|
this.className = opts.className;
|
|
217
217
|
this.code = opts.code;
|
|
218
218
|
}
|
|
219
|
-
}
|
|
220
|
-
class TooManyRequestsException extends Cloud9ServiceException {
|
|
219
|
+
};
|
|
220
|
+
let TooManyRequestsException$1 = class TooManyRequestsException extends Cloud9ServiceException$1 {
|
|
221
221
|
name = "TooManyRequestsException";
|
|
222
222
|
$fault = "client";
|
|
223
223
|
className;
|
|
@@ -232,7 +232,7 @@ class TooManyRequestsException extends Cloud9ServiceException {
|
|
|
232
232
|
this.className = opts.className;
|
|
233
233
|
this.code = opts.code;
|
|
234
234
|
}
|
|
235
|
-
}
|
|
235
|
+
};
|
|
236
236
|
const MemberPermissions = {
|
|
237
237
|
READ_ONLY: "read-only",
|
|
238
238
|
READ_WRITE: "read-write",
|
|
@@ -275,7 +275,7 @@ const EnvironmentStatus = {
|
|
|
275
275
|
STOPPED: "stopped",
|
|
276
276
|
STOPPING: "stopping",
|
|
277
277
|
};
|
|
278
|
-
class ConcurrentAccessException extends Cloud9ServiceException {
|
|
278
|
+
let ConcurrentAccessException$1 = class ConcurrentAccessException extends Cloud9ServiceException$1 {
|
|
279
279
|
name = "ConcurrentAccessException";
|
|
280
280
|
$fault = "client";
|
|
281
281
|
className;
|
|
@@ -290,481 +290,407 @@ class ConcurrentAccessException extends Cloud9ServiceException {
|
|
|
290
290
|
this.className = opts.className;
|
|
291
291
|
this.code = opts.code;
|
|
292
292
|
}
|
|
293
|
-
}
|
|
293
|
+
};
|
|
294
294
|
const ManagedCredentialsAction = {
|
|
295
295
|
DISABLE: "DISABLE",
|
|
296
296
|
ENABLE: "ENABLE",
|
|
297
297
|
};
|
|
298
|
-
const TagFilterSensitiveLog = (obj) => ({
|
|
299
|
-
...obj,
|
|
300
|
-
...(obj.Key && { Key: smithyClient.SENSITIVE_STRING }),
|
|
301
|
-
...(obj.Value && { Value: smithyClient.SENSITIVE_STRING }),
|
|
302
|
-
});
|
|
303
|
-
const CreateEnvironmentEC2RequestFilterSensitiveLog = (obj) => ({
|
|
304
|
-
...obj,
|
|
305
|
-
...(obj.description && { description: smithyClient.SENSITIVE_STRING }),
|
|
306
|
-
...(obj.tags && { tags: smithyClient.SENSITIVE_STRING }),
|
|
307
|
-
});
|
|
308
|
-
const EnvironmentFilterSensitiveLog = (obj) => ({
|
|
309
|
-
...obj,
|
|
310
|
-
...(obj.description && { description: smithyClient.SENSITIVE_STRING }),
|
|
311
|
-
});
|
|
312
|
-
const DescribeEnvironmentsResultFilterSensitiveLog = (obj) => ({
|
|
313
|
-
...obj,
|
|
314
|
-
...(obj.environments && { environments: obj.environments.map((item) => EnvironmentFilterSensitiveLog(item)) }),
|
|
315
|
-
});
|
|
316
|
-
const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
317
|
-
...obj,
|
|
318
|
-
...(obj.Tags && { Tags: smithyClient.SENSITIVE_STRING }),
|
|
319
|
-
});
|
|
320
|
-
const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
321
|
-
...obj,
|
|
322
|
-
...(obj.Tags && { Tags: smithyClient.SENSITIVE_STRING }),
|
|
323
|
-
});
|
|
324
|
-
const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
325
|
-
...obj,
|
|
326
|
-
...(obj.TagKeys && { TagKeys: smithyClient.SENSITIVE_STRING }),
|
|
327
|
-
});
|
|
328
|
-
const UpdateEnvironmentRequestFilterSensitiveLog = (obj) => ({
|
|
329
|
-
...obj,
|
|
330
|
-
...(obj.description && { description: smithyClient.SENSITIVE_STRING }),
|
|
331
|
-
});
|
|
332
298
|
|
|
333
|
-
const
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
const
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
const
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
const
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
const
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
const
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
const
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
const
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
const
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
const
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
const
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
const
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
const
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
const
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
const
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
}
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
}
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
}
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
}
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
return retVal;
|
|
719
|
-
};
|
|
720
|
-
const de_UpdateEnvironmentMembershipResult = (output, context) => {
|
|
721
|
-
return smithyClient.take(output, {
|
|
722
|
-
membership: (_) => de_EnvironmentMember(_),
|
|
723
|
-
});
|
|
724
|
-
};
|
|
725
|
-
const deserializeMetadata = (output) => ({
|
|
726
|
-
httpStatusCode: output.statusCode,
|
|
727
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
728
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
729
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
730
|
-
});
|
|
731
|
-
const throwDefaultError = smithyClient.withBaseException(Cloud9ServiceException);
|
|
732
|
-
const buildHttpRpcRequest = async (context, headers, path, resolvedHostname, body) => {
|
|
733
|
-
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
734
|
-
const contents = {
|
|
735
|
-
protocol,
|
|
736
|
-
hostname,
|
|
737
|
-
port,
|
|
738
|
-
method: "POST",
|
|
739
|
-
path: basePath.endsWith("/") ? basePath.slice(0, -1) + path : basePath + path,
|
|
740
|
-
headers,
|
|
741
|
-
};
|
|
742
|
-
if (body !== undefined) {
|
|
743
|
-
contents.body = body;
|
|
744
|
-
}
|
|
745
|
-
return new protocolHttp.HttpRequest(contents);
|
|
746
|
-
};
|
|
747
|
-
function sharedHeaders(operation) {
|
|
748
|
-
return {
|
|
749
|
-
"content-type": "application/x-amz-json-1.1",
|
|
750
|
-
"x-amz-target": `AWSCloud9WorkspaceManagementService.${operation}`,
|
|
751
|
-
};
|
|
752
|
-
}
|
|
299
|
+
const _BRE = "BadRequestException";
|
|
300
|
+
const _CAE = "ConcurrentAccessException";
|
|
301
|
+
const _CE = "ConflictException";
|
|
302
|
+
const _CEEC = "CreateEnvironmentEC2";
|
|
303
|
+
const _CEECR = "CreateEnvironmentEC2Request";
|
|
304
|
+
const _CEECRr = "CreateEnvironmentEC2Result";
|
|
305
|
+
const _CEM = "CreateEnvironmentMembership";
|
|
306
|
+
const _CEMR = "CreateEnvironmentMembershipRequest";
|
|
307
|
+
const _CEMRr = "CreateEnvironmentMembershipResult";
|
|
308
|
+
const _DE = "DeleteEnvironment";
|
|
309
|
+
const _DEM = "DeleteEnvironmentMembership";
|
|
310
|
+
const _DEMR = "DeleteEnvironmentMembershipRequest";
|
|
311
|
+
const _DEMRe = "DeleteEnvironmentMembershipResult";
|
|
312
|
+
const _DEMRes = "DescribeEnvironmentMembershipsRequest";
|
|
313
|
+
const _DEMResc = "DescribeEnvironmentMembershipsResult";
|
|
314
|
+
const _DEMe = "DescribeEnvironmentMemberships";
|
|
315
|
+
const _DER = "DeleteEnvironmentRequest";
|
|
316
|
+
const _DERe = "DeleteEnvironmentResult";
|
|
317
|
+
const _DERes = "DescribeEnvironmentsRequest";
|
|
318
|
+
const _DEResc = "DescribeEnvironmentsResult";
|
|
319
|
+
const _DES = "DescribeEnvironmentStatus";
|
|
320
|
+
const _DESR = "DescribeEnvironmentStatusRequest";
|
|
321
|
+
const _DESRe = "DescribeEnvironmentStatusResult";
|
|
322
|
+
const _DEe = "DescribeEnvironments";
|
|
323
|
+
const _E = "Environment";
|
|
324
|
+
const _ED = "EnvironmentDescription";
|
|
325
|
+
const _EL = "EnvironmentLifecycle";
|
|
326
|
+
const _ELn = "EnvironmentList";
|
|
327
|
+
const _EM = "EnvironmentMember";
|
|
328
|
+
const _EML = "EnvironmentMembersList";
|
|
329
|
+
const _FE = "ForbiddenException";
|
|
330
|
+
const _ISEE = "InternalServerErrorException";
|
|
331
|
+
const _K = "Key";
|
|
332
|
+
const _LE = "ListEnvironments";
|
|
333
|
+
const _LEE = "LimitExceededException";
|
|
334
|
+
const _LER = "ListEnvironmentsRequest";
|
|
335
|
+
const _LERi = "ListEnvironmentsResult";
|
|
336
|
+
const _LTFR = "ListTagsForResource";
|
|
337
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
338
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
339
|
+
const _NFE = "NotFoundException";
|
|
340
|
+
const _RARN = "ResourceARN";
|
|
341
|
+
const _T = "Tags";
|
|
342
|
+
const _TK = "TagKey";
|
|
343
|
+
const _TKL = "TagKeyList";
|
|
344
|
+
const _TKa = "TagKeys";
|
|
345
|
+
const _TL = "TagList";
|
|
346
|
+
const _TMRE = "TooManyRequestsException";
|
|
347
|
+
const _TR = "TagResource";
|
|
348
|
+
const _TRR = "TagResourceRequest";
|
|
349
|
+
const _TRRa = "TagResourceResponse";
|
|
350
|
+
const _TV = "TagValue";
|
|
351
|
+
const _Ta = "Tag";
|
|
352
|
+
const _UE = "UpdateEnvironment";
|
|
353
|
+
const _UEM = "UpdateEnvironmentMembership";
|
|
354
|
+
const _UEMR = "UpdateEnvironmentMembershipRequest";
|
|
355
|
+
const _UEMRp = "UpdateEnvironmentMembershipResult";
|
|
356
|
+
const _UER = "UpdateEnvironmentRequest";
|
|
357
|
+
const _UERp = "UpdateEnvironmentResult";
|
|
358
|
+
const _UR = "UntagResource";
|
|
359
|
+
const _URR = "UntagResourceRequest";
|
|
360
|
+
const _URRn = "UntagResourceResponse";
|
|
361
|
+
const _V = "Value";
|
|
362
|
+
const _a = "arn";
|
|
363
|
+
const _aSTM = "automaticStopTimeMinutes";
|
|
364
|
+
const _c = "client";
|
|
365
|
+
const _cN = "className";
|
|
366
|
+
const _cRT = "clientRequestToken";
|
|
367
|
+
const _cT = "connectionType";
|
|
368
|
+
const _co = "code";
|
|
369
|
+
const _d = "description";
|
|
370
|
+
const _dR = "dryRun";
|
|
371
|
+
const _e = "error";
|
|
372
|
+
const _eI = "environmentId";
|
|
373
|
+
const _eIn = "environmentIds";
|
|
374
|
+
const _en = "environments";
|
|
375
|
+
const _fR = "failureResource";
|
|
376
|
+
const _i = "id";
|
|
377
|
+
const _iI = "imageId";
|
|
378
|
+
const _iT = "instanceType";
|
|
379
|
+
const _l = "lifecycle";
|
|
380
|
+
const _lA = "lastAccess";
|
|
381
|
+
const _m = "message";
|
|
382
|
+
const _mCA = "managedCredentialsAction";
|
|
383
|
+
const _mCS = "managedCredentialsStatus";
|
|
384
|
+
const _mR = "maxResults";
|
|
385
|
+
const _me = "membership";
|
|
386
|
+
const _mem = "memberships";
|
|
387
|
+
const _n = "name";
|
|
388
|
+
const _nT = "nextToken";
|
|
389
|
+
const _oA = "ownerArn";
|
|
390
|
+
const _p = "permissions";
|
|
391
|
+
const _r = "reason";
|
|
392
|
+
const _s = "status";
|
|
393
|
+
const _sI = "subnetId";
|
|
394
|
+
const _se = "server";
|
|
395
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.cloud9";
|
|
396
|
+
const _t = "tags";
|
|
397
|
+
const _ty = "type";
|
|
398
|
+
const _uA = "userArn";
|
|
399
|
+
const _uI = "userId";
|
|
400
|
+
const n0 = "com.amazonaws.cloud9";
|
|
401
|
+
var EnvironmentDescription = [0, n0, _ED, 8, 0];
|
|
402
|
+
var TagKey = [0, n0, _TK, 8, 0];
|
|
403
|
+
var TagValue = [0, n0, _TV, 8, 0];
|
|
404
|
+
var BadRequestException = [
|
|
405
|
+
-3,
|
|
406
|
+
n0,
|
|
407
|
+
_BRE,
|
|
408
|
+
{
|
|
409
|
+
[_e]: _c,
|
|
410
|
+
},
|
|
411
|
+
[_m, _cN, _co],
|
|
412
|
+
[0, 0, 1],
|
|
413
|
+
];
|
|
414
|
+
schema.TypeRegistry.for(n0).registerError(BadRequestException, BadRequestException$1);
|
|
415
|
+
var ConcurrentAccessException = [
|
|
416
|
+
-3,
|
|
417
|
+
n0,
|
|
418
|
+
_CAE,
|
|
419
|
+
{
|
|
420
|
+
[_e]: _c,
|
|
421
|
+
},
|
|
422
|
+
[_m, _cN, _co],
|
|
423
|
+
[0, 0, 1],
|
|
424
|
+
];
|
|
425
|
+
schema.TypeRegistry.for(n0).registerError(ConcurrentAccessException, ConcurrentAccessException$1);
|
|
426
|
+
var ConflictException = [
|
|
427
|
+
-3,
|
|
428
|
+
n0,
|
|
429
|
+
_CE,
|
|
430
|
+
{
|
|
431
|
+
[_e]: _c,
|
|
432
|
+
},
|
|
433
|
+
[_m, _cN, _co],
|
|
434
|
+
[0, 0, 1],
|
|
435
|
+
];
|
|
436
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
|
|
437
|
+
var CreateEnvironmentEC2Request = [
|
|
438
|
+
3,
|
|
439
|
+
n0,
|
|
440
|
+
_CEECR,
|
|
441
|
+
0,
|
|
442
|
+
[_n, _d, _cRT, _iT, _sI, _iI, _aSTM, _oA, _t, _cT, _dR],
|
|
443
|
+
[0, [() => EnvironmentDescription, 0], 0, 0, 0, 0, 1, 0, [() => TagList, 0], 0, 2],
|
|
444
|
+
];
|
|
445
|
+
var CreateEnvironmentEC2Result = [3, n0, _CEECRr, 0, [_eI], [0]];
|
|
446
|
+
var CreateEnvironmentMembershipRequest = [3, n0, _CEMR, 0, [_eI, _uA, _p], [0, 0, 0]];
|
|
447
|
+
var CreateEnvironmentMembershipResult = [
|
|
448
|
+
3,
|
|
449
|
+
n0,
|
|
450
|
+
_CEMRr,
|
|
451
|
+
0,
|
|
452
|
+
[_me],
|
|
453
|
+
[() => EnvironmentMember],
|
|
454
|
+
];
|
|
455
|
+
var DeleteEnvironmentMembershipRequest = [3, n0, _DEMR, 0, [_eI, _uA], [0, 0]];
|
|
456
|
+
var DeleteEnvironmentMembershipResult = [3, n0, _DEMRe, 0, [], []];
|
|
457
|
+
var DeleteEnvironmentRequest = [3, n0, _DER, 0, [_eI], [0]];
|
|
458
|
+
var DeleteEnvironmentResult = [3, n0, _DERe, 0, [], []];
|
|
459
|
+
var DescribeEnvironmentMembershipsRequest = [
|
|
460
|
+
3,
|
|
461
|
+
n0,
|
|
462
|
+
_DEMRes,
|
|
463
|
+
0,
|
|
464
|
+
[_uA, _eI, _p, _nT, _mR],
|
|
465
|
+
[0, 0, 64 | 0, 0, 1],
|
|
466
|
+
];
|
|
467
|
+
var DescribeEnvironmentMembershipsResult = [
|
|
468
|
+
3,
|
|
469
|
+
n0,
|
|
470
|
+
_DEMResc,
|
|
471
|
+
0,
|
|
472
|
+
[_mem, _nT],
|
|
473
|
+
[() => EnvironmentMembersList, 0],
|
|
474
|
+
];
|
|
475
|
+
var DescribeEnvironmentsRequest = [3, n0, _DERes, 0, [_eIn], [64 | 0]];
|
|
476
|
+
var DescribeEnvironmentsResult = [3, n0, _DEResc, 0, [_en], [[() => EnvironmentList, 0]]];
|
|
477
|
+
var DescribeEnvironmentStatusRequest = [3, n0, _DESR, 0, [_eI], [0]];
|
|
478
|
+
var DescribeEnvironmentStatusResult = [3, n0, _DESRe, 0, [_s, _m], [0, 0]];
|
|
479
|
+
var Environment = [
|
|
480
|
+
3,
|
|
481
|
+
n0,
|
|
482
|
+
_E,
|
|
483
|
+
0,
|
|
484
|
+
[_i, _n, _d, _ty, _cT, _a, _oA, _l, _mCS],
|
|
485
|
+
[0, 0, [() => EnvironmentDescription, 0], 0, 0, 0, 0, () => EnvironmentLifecycle, 0],
|
|
486
|
+
];
|
|
487
|
+
var EnvironmentLifecycle = [3, n0, _EL, 0, [_s, _r, _fR], [0, 0, 0]];
|
|
488
|
+
var EnvironmentMember = [3, n0, _EM, 0, [_p, _uI, _uA, _eI, _lA], [0, 0, 0, 0, 4]];
|
|
489
|
+
var ForbiddenException = [
|
|
490
|
+
-3,
|
|
491
|
+
n0,
|
|
492
|
+
_FE,
|
|
493
|
+
{
|
|
494
|
+
[_e]: _c,
|
|
495
|
+
},
|
|
496
|
+
[_m, _cN, _co],
|
|
497
|
+
[0, 0, 1],
|
|
498
|
+
];
|
|
499
|
+
schema.TypeRegistry.for(n0).registerError(ForbiddenException, ForbiddenException$1);
|
|
500
|
+
var InternalServerErrorException = [
|
|
501
|
+
-3,
|
|
502
|
+
n0,
|
|
503
|
+
_ISEE,
|
|
504
|
+
{
|
|
505
|
+
[_e]: _se,
|
|
506
|
+
},
|
|
507
|
+
[_m, _cN, _co],
|
|
508
|
+
[0, 0, 1],
|
|
509
|
+
];
|
|
510
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerErrorException, InternalServerErrorException$1);
|
|
511
|
+
var LimitExceededException = [
|
|
512
|
+
-3,
|
|
513
|
+
n0,
|
|
514
|
+
_LEE,
|
|
515
|
+
{
|
|
516
|
+
[_e]: _c,
|
|
517
|
+
},
|
|
518
|
+
[_m, _cN, _co],
|
|
519
|
+
[0, 0, 1],
|
|
520
|
+
];
|
|
521
|
+
schema.TypeRegistry.for(n0).registerError(LimitExceededException, LimitExceededException$1);
|
|
522
|
+
var ListEnvironmentsRequest = [3, n0, _LER, 0, [_nT, _mR], [0, 1]];
|
|
523
|
+
var ListEnvironmentsResult = [3, n0, _LERi, 0, [_nT, _eIn], [0, 64 | 0]];
|
|
524
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RARN], [0]];
|
|
525
|
+
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_T], [[() => TagList, 0]]];
|
|
526
|
+
var NotFoundException = [
|
|
527
|
+
-3,
|
|
528
|
+
n0,
|
|
529
|
+
_NFE,
|
|
530
|
+
{
|
|
531
|
+
[_e]: _c,
|
|
532
|
+
},
|
|
533
|
+
[_m, _cN, _co],
|
|
534
|
+
[0, 0, 1],
|
|
535
|
+
];
|
|
536
|
+
schema.TypeRegistry.for(n0).registerError(NotFoundException, NotFoundException$1);
|
|
537
|
+
var Tag = [
|
|
538
|
+
3,
|
|
539
|
+
n0,
|
|
540
|
+
_Ta,
|
|
541
|
+
8,
|
|
542
|
+
[_K, _V],
|
|
543
|
+
[
|
|
544
|
+
[() => TagKey, 0],
|
|
545
|
+
[() => TagValue, 0],
|
|
546
|
+
],
|
|
547
|
+
];
|
|
548
|
+
var TagResourceRequest = [3, n0, _TRR, 0, [_RARN, _T], [0, [() => TagList, 0]]];
|
|
549
|
+
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
550
|
+
var TooManyRequestsException = [
|
|
551
|
+
-3,
|
|
552
|
+
n0,
|
|
553
|
+
_TMRE,
|
|
554
|
+
{
|
|
555
|
+
[_e]: _c,
|
|
556
|
+
},
|
|
557
|
+
[_m, _cN, _co],
|
|
558
|
+
[0, 0, 1],
|
|
559
|
+
];
|
|
560
|
+
schema.TypeRegistry.for(n0).registerError(TooManyRequestsException, TooManyRequestsException$1);
|
|
561
|
+
var UntagResourceRequest = [3, n0, _URR, 0, [_RARN, _TKa], [0, [() => TagKeyList, 0]]];
|
|
562
|
+
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
563
|
+
var UpdateEnvironmentMembershipRequest = [3, n0, _UEMR, 0, [_eI, _uA, _p], [0, 0, 0]];
|
|
564
|
+
var UpdateEnvironmentMembershipResult = [
|
|
565
|
+
3,
|
|
566
|
+
n0,
|
|
567
|
+
_UEMRp,
|
|
568
|
+
0,
|
|
569
|
+
[_me],
|
|
570
|
+
[() => EnvironmentMember],
|
|
571
|
+
];
|
|
572
|
+
var UpdateEnvironmentRequest = [
|
|
573
|
+
3,
|
|
574
|
+
n0,
|
|
575
|
+
_UER,
|
|
576
|
+
0,
|
|
577
|
+
[_eI, _n, _d, _mCA],
|
|
578
|
+
[0, 0, [() => EnvironmentDescription, 0], 0],
|
|
579
|
+
];
|
|
580
|
+
var UpdateEnvironmentResult = [3, n0, _UERp, 0, [], []];
|
|
581
|
+
var Cloud9ServiceException = [-3, _sm, "Cloud9ServiceException", 0, [], []];
|
|
582
|
+
schema.TypeRegistry.for(_sm).registerError(Cloud9ServiceException, Cloud9ServiceException$1);
|
|
583
|
+
var EnvironmentList = [1, n0, _ELn, 0, [() => Environment, 0]];
|
|
584
|
+
var EnvironmentMembersList = [1, n0, _EML, 0, () => EnvironmentMember];
|
|
585
|
+
var TagKeyList = [1, n0, _TKL, 8, [() => TagKey, 0]];
|
|
586
|
+
var TagList = [1, n0, _TL, 8, [() => Tag, 0]];
|
|
587
|
+
var CreateEnvironmentEC2 = [
|
|
588
|
+
9,
|
|
589
|
+
n0,
|
|
590
|
+
_CEEC,
|
|
591
|
+
2,
|
|
592
|
+
() => CreateEnvironmentEC2Request,
|
|
593
|
+
() => CreateEnvironmentEC2Result,
|
|
594
|
+
];
|
|
595
|
+
var CreateEnvironmentMembership = [
|
|
596
|
+
9,
|
|
597
|
+
n0,
|
|
598
|
+
_CEM,
|
|
599
|
+
2,
|
|
600
|
+
() => CreateEnvironmentMembershipRequest,
|
|
601
|
+
() => CreateEnvironmentMembershipResult,
|
|
602
|
+
];
|
|
603
|
+
var DeleteEnvironment = [
|
|
604
|
+
9,
|
|
605
|
+
n0,
|
|
606
|
+
_DE,
|
|
607
|
+
2,
|
|
608
|
+
() => DeleteEnvironmentRequest,
|
|
609
|
+
() => DeleteEnvironmentResult,
|
|
610
|
+
];
|
|
611
|
+
var DeleteEnvironmentMembership = [
|
|
612
|
+
9,
|
|
613
|
+
n0,
|
|
614
|
+
_DEM,
|
|
615
|
+
2,
|
|
616
|
+
() => DeleteEnvironmentMembershipRequest,
|
|
617
|
+
() => DeleteEnvironmentMembershipResult,
|
|
618
|
+
];
|
|
619
|
+
var DescribeEnvironmentMemberships = [
|
|
620
|
+
9,
|
|
621
|
+
n0,
|
|
622
|
+
_DEMe,
|
|
623
|
+
0,
|
|
624
|
+
() => DescribeEnvironmentMembershipsRequest,
|
|
625
|
+
() => DescribeEnvironmentMembershipsResult,
|
|
626
|
+
];
|
|
627
|
+
var DescribeEnvironments = [
|
|
628
|
+
9,
|
|
629
|
+
n0,
|
|
630
|
+
_DEe,
|
|
631
|
+
0,
|
|
632
|
+
() => DescribeEnvironmentsRequest,
|
|
633
|
+
() => DescribeEnvironmentsResult,
|
|
634
|
+
];
|
|
635
|
+
var DescribeEnvironmentStatus = [
|
|
636
|
+
9,
|
|
637
|
+
n0,
|
|
638
|
+
_DES,
|
|
639
|
+
0,
|
|
640
|
+
() => DescribeEnvironmentStatusRequest,
|
|
641
|
+
() => DescribeEnvironmentStatusResult,
|
|
642
|
+
];
|
|
643
|
+
var ListEnvironments = [
|
|
644
|
+
9,
|
|
645
|
+
n0,
|
|
646
|
+
_LE,
|
|
647
|
+
0,
|
|
648
|
+
() => ListEnvironmentsRequest,
|
|
649
|
+
() => ListEnvironmentsResult,
|
|
650
|
+
];
|
|
651
|
+
var ListTagsForResource = [
|
|
652
|
+
9,
|
|
653
|
+
n0,
|
|
654
|
+
_LTFR,
|
|
655
|
+
0,
|
|
656
|
+
() => ListTagsForResourceRequest,
|
|
657
|
+
() => ListTagsForResourceResponse,
|
|
658
|
+
];
|
|
659
|
+
var TagResource = [9, n0, _TR, 0, () => TagResourceRequest, () => TagResourceResponse];
|
|
660
|
+
var UntagResource = [
|
|
661
|
+
9,
|
|
662
|
+
n0,
|
|
663
|
+
_UR,
|
|
664
|
+
0,
|
|
665
|
+
() => UntagResourceRequest,
|
|
666
|
+
() => UntagResourceResponse,
|
|
667
|
+
];
|
|
668
|
+
var UpdateEnvironment = [
|
|
669
|
+
9,
|
|
670
|
+
n0,
|
|
671
|
+
_UE,
|
|
672
|
+
2,
|
|
673
|
+
() => UpdateEnvironmentRequest,
|
|
674
|
+
() => UpdateEnvironmentResult,
|
|
675
|
+
];
|
|
676
|
+
var UpdateEnvironmentMembership = [
|
|
677
|
+
9,
|
|
678
|
+
n0,
|
|
679
|
+
_UEM,
|
|
680
|
+
2,
|
|
681
|
+
() => UpdateEnvironmentMembershipRequest,
|
|
682
|
+
() => UpdateEnvironmentMembershipResult,
|
|
683
|
+
];
|
|
753
684
|
|
|
754
685
|
class CreateEnvironmentEC2Command extends smithyClient.Command
|
|
755
686
|
.classBuilder()
|
|
756
687
|
.ep(commonParams)
|
|
757
688
|
.m(function (Command, cs, config, o) {
|
|
758
|
-
return [
|
|
759
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
760
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
761
|
-
];
|
|
689
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
762
690
|
})
|
|
763
691
|
.s("AWSCloud9WorkspaceManagementService", "CreateEnvironmentEC2", {})
|
|
764
692
|
.n("Cloud9Client", "CreateEnvironmentEC2Command")
|
|
765
|
-
.
|
|
766
|
-
.ser(se_CreateEnvironmentEC2Command)
|
|
767
|
-
.de(de_CreateEnvironmentEC2Command)
|
|
693
|
+
.sc(CreateEnvironmentEC2)
|
|
768
694
|
.build() {
|
|
769
695
|
}
|
|
770
696
|
|
|
@@ -772,16 +698,11 @@ class CreateEnvironmentMembershipCommand extends smithyClient.Command
|
|
|
772
698
|
.classBuilder()
|
|
773
699
|
.ep(commonParams)
|
|
774
700
|
.m(function (Command, cs, config, o) {
|
|
775
|
-
return [
|
|
776
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
777
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
778
|
-
];
|
|
701
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
779
702
|
})
|
|
780
703
|
.s("AWSCloud9WorkspaceManagementService", "CreateEnvironmentMembership", {})
|
|
781
704
|
.n("Cloud9Client", "CreateEnvironmentMembershipCommand")
|
|
782
|
-
.
|
|
783
|
-
.ser(se_CreateEnvironmentMembershipCommand)
|
|
784
|
-
.de(de_CreateEnvironmentMembershipCommand)
|
|
705
|
+
.sc(CreateEnvironmentMembership)
|
|
785
706
|
.build() {
|
|
786
707
|
}
|
|
787
708
|
|
|
@@ -789,16 +710,11 @@ class DeleteEnvironmentCommand extends smithyClient.Command
|
|
|
789
710
|
.classBuilder()
|
|
790
711
|
.ep(commonParams)
|
|
791
712
|
.m(function (Command, cs, config, o) {
|
|
792
|
-
return [
|
|
793
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
794
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
795
|
-
];
|
|
713
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
796
714
|
})
|
|
797
715
|
.s("AWSCloud9WorkspaceManagementService", "DeleteEnvironment", {})
|
|
798
716
|
.n("Cloud9Client", "DeleteEnvironmentCommand")
|
|
799
|
-
.
|
|
800
|
-
.ser(se_DeleteEnvironmentCommand)
|
|
801
|
-
.de(de_DeleteEnvironmentCommand)
|
|
717
|
+
.sc(DeleteEnvironment)
|
|
802
718
|
.build() {
|
|
803
719
|
}
|
|
804
720
|
|
|
@@ -806,16 +722,11 @@ class DeleteEnvironmentMembershipCommand extends smithyClient.Command
|
|
|
806
722
|
.classBuilder()
|
|
807
723
|
.ep(commonParams)
|
|
808
724
|
.m(function (Command, cs, config, o) {
|
|
809
|
-
return [
|
|
810
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
811
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
812
|
-
];
|
|
725
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
813
726
|
})
|
|
814
727
|
.s("AWSCloud9WorkspaceManagementService", "DeleteEnvironmentMembership", {})
|
|
815
728
|
.n("Cloud9Client", "DeleteEnvironmentMembershipCommand")
|
|
816
|
-
.
|
|
817
|
-
.ser(se_DeleteEnvironmentMembershipCommand)
|
|
818
|
-
.de(de_DeleteEnvironmentMembershipCommand)
|
|
729
|
+
.sc(DeleteEnvironmentMembership)
|
|
819
730
|
.build() {
|
|
820
731
|
}
|
|
821
732
|
|
|
@@ -823,16 +734,11 @@ class DescribeEnvironmentMembershipsCommand extends smithyClient.Command
|
|
|
823
734
|
.classBuilder()
|
|
824
735
|
.ep(commonParams)
|
|
825
736
|
.m(function (Command, cs, config, o) {
|
|
826
|
-
return [
|
|
827
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
828
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
829
|
-
];
|
|
737
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
830
738
|
})
|
|
831
739
|
.s("AWSCloud9WorkspaceManagementService", "DescribeEnvironmentMemberships", {})
|
|
832
740
|
.n("Cloud9Client", "DescribeEnvironmentMembershipsCommand")
|
|
833
|
-
.
|
|
834
|
-
.ser(se_DescribeEnvironmentMembershipsCommand)
|
|
835
|
-
.de(de_DescribeEnvironmentMembershipsCommand)
|
|
741
|
+
.sc(DescribeEnvironmentMemberships)
|
|
836
742
|
.build() {
|
|
837
743
|
}
|
|
838
744
|
|
|
@@ -840,16 +746,11 @@ class DescribeEnvironmentsCommand extends smithyClient.Command
|
|
|
840
746
|
.classBuilder()
|
|
841
747
|
.ep(commonParams)
|
|
842
748
|
.m(function (Command, cs, config, o) {
|
|
843
|
-
return [
|
|
844
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
845
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
846
|
-
];
|
|
749
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
847
750
|
})
|
|
848
751
|
.s("AWSCloud9WorkspaceManagementService", "DescribeEnvironments", {})
|
|
849
752
|
.n("Cloud9Client", "DescribeEnvironmentsCommand")
|
|
850
|
-
.
|
|
851
|
-
.ser(se_DescribeEnvironmentsCommand)
|
|
852
|
-
.de(de_DescribeEnvironmentsCommand)
|
|
753
|
+
.sc(DescribeEnvironments)
|
|
853
754
|
.build() {
|
|
854
755
|
}
|
|
855
756
|
|
|
@@ -857,16 +758,11 @@ class DescribeEnvironmentStatusCommand extends smithyClient.Command
|
|
|
857
758
|
.classBuilder()
|
|
858
759
|
.ep(commonParams)
|
|
859
760
|
.m(function (Command, cs, config, o) {
|
|
860
|
-
return [
|
|
861
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
862
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
863
|
-
];
|
|
761
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
864
762
|
})
|
|
865
763
|
.s("AWSCloud9WorkspaceManagementService", "DescribeEnvironmentStatus", {})
|
|
866
764
|
.n("Cloud9Client", "DescribeEnvironmentStatusCommand")
|
|
867
|
-
.
|
|
868
|
-
.ser(se_DescribeEnvironmentStatusCommand)
|
|
869
|
-
.de(de_DescribeEnvironmentStatusCommand)
|
|
765
|
+
.sc(DescribeEnvironmentStatus)
|
|
870
766
|
.build() {
|
|
871
767
|
}
|
|
872
768
|
|
|
@@ -874,16 +770,11 @@ class ListEnvironmentsCommand extends smithyClient.Command
|
|
|
874
770
|
.classBuilder()
|
|
875
771
|
.ep(commonParams)
|
|
876
772
|
.m(function (Command, cs, config, o) {
|
|
877
|
-
return [
|
|
878
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
879
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
880
|
-
];
|
|
773
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
881
774
|
})
|
|
882
775
|
.s("AWSCloud9WorkspaceManagementService", "ListEnvironments", {})
|
|
883
776
|
.n("Cloud9Client", "ListEnvironmentsCommand")
|
|
884
|
-
.
|
|
885
|
-
.ser(se_ListEnvironmentsCommand)
|
|
886
|
-
.de(de_ListEnvironmentsCommand)
|
|
777
|
+
.sc(ListEnvironments)
|
|
887
778
|
.build() {
|
|
888
779
|
}
|
|
889
780
|
|
|
@@ -891,16 +782,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
891
782
|
.classBuilder()
|
|
892
783
|
.ep(commonParams)
|
|
893
784
|
.m(function (Command, cs, config, o) {
|
|
894
|
-
return [
|
|
895
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
896
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
897
|
-
];
|
|
785
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
898
786
|
})
|
|
899
787
|
.s("AWSCloud9WorkspaceManagementService", "ListTagsForResource", {})
|
|
900
788
|
.n("Cloud9Client", "ListTagsForResourceCommand")
|
|
901
|
-
.
|
|
902
|
-
.ser(se_ListTagsForResourceCommand)
|
|
903
|
-
.de(de_ListTagsForResourceCommand)
|
|
789
|
+
.sc(ListTagsForResource)
|
|
904
790
|
.build() {
|
|
905
791
|
}
|
|
906
792
|
|
|
@@ -908,16 +794,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
908
794
|
.classBuilder()
|
|
909
795
|
.ep(commonParams)
|
|
910
796
|
.m(function (Command, cs, config, o) {
|
|
911
|
-
return [
|
|
912
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
913
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
914
|
-
];
|
|
797
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
915
798
|
})
|
|
916
799
|
.s("AWSCloud9WorkspaceManagementService", "TagResource", {})
|
|
917
800
|
.n("Cloud9Client", "TagResourceCommand")
|
|
918
|
-
.
|
|
919
|
-
.ser(se_TagResourceCommand)
|
|
920
|
-
.de(de_TagResourceCommand)
|
|
801
|
+
.sc(TagResource)
|
|
921
802
|
.build() {
|
|
922
803
|
}
|
|
923
804
|
|
|
@@ -925,16 +806,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
925
806
|
.classBuilder()
|
|
926
807
|
.ep(commonParams)
|
|
927
808
|
.m(function (Command, cs, config, o) {
|
|
928
|
-
return [
|
|
929
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
930
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
931
|
-
];
|
|
809
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
932
810
|
})
|
|
933
811
|
.s("AWSCloud9WorkspaceManagementService", "UntagResource", {})
|
|
934
812
|
.n("Cloud9Client", "UntagResourceCommand")
|
|
935
|
-
.
|
|
936
|
-
.ser(se_UntagResourceCommand)
|
|
937
|
-
.de(de_UntagResourceCommand)
|
|
813
|
+
.sc(UntagResource)
|
|
938
814
|
.build() {
|
|
939
815
|
}
|
|
940
816
|
|
|
@@ -942,16 +818,11 @@ class UpdateEnvironmentCommand extends smithyClient.Command
|
|
|
942
818
|
.classBuilder()
|
|
943
819
|
.ep(commonParams)
|
|
944
820
|
.m(function (Command, cs, config, o) {
|
|
945
|
-
return [
|
|
946
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
947
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
948
|
-
];
|
|
821
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
949
822
|
})
|
|
950
823
|
.s("AWSCloud9WorkspaceManagementService", "UpdateEnvironment", {})
|
|
951
824
|
.n("Cloud9Client", "UpdateEnvironmentCommand")
|
|
952
|
-
.
|
|
953
|
-
.ser(se_UpdateEnvironmentCommand)
|
|
954
|
-
.de(de_UpdateEnvironmentCommand)
|
|
825
|
+
.sc(UpdateEnvironment)
|
|
955
826
|
.build() {
|
|
956
827
|
}
|
|
957
828
|
|
|
@@ -959,16 +830,11 @@ class UpdateEnvironmentMembershipCommand extends smithyClient.Command
|
|
|
959
830
|
.classBuilder()
|
|
960
831
|
.ep(commonParams)
|
|
961
832
|
.m(function (Command, cs, config, o) {
|
|
962
|
-
return [
|
|
963
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
964
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
965
|
-
];
|
|
833
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
966
834
|
})
|
|
967
835
|
.s("AWSCloud9WorkspaceManagementService", "UpdateEnvironmentMembership", {})
|
|
968
836
|
.n("Cloud9Client", "UpdateEnvironmentMembershipCommand")
|
|
969
|
-
.
|
|
970
|
-
.ser(se_UpdateEnvironmentMembershipCommand)
|
|
971
|
-
.de(de_UpdateEnvironmentMembershipCommand)
|
|
837
|
+
.sc(UpdateEnvironmentMembership)
|
|
972
838
|
.build() {
|
|
973
839
|
}
|
|
974
840
|
|
|
@@ -1003,45 +869,37 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1003
869
|
enumerable: true,
|
|
1004
870
|
get: function () { return smithyClient.Client; }
|
|
1005
871
|
});
|
|
1006
|
-
exports.BadRequestException = BadRequestException;
|
|
872
|
+
exports.BadRequestException = BadRequestException$1;
|
|
1007
873
|
exports.Cloud9 = Cloud9;
|
|
1008
874
|
exports.Cloud9Client = Cloud9Client;
|
|
1009
|
-
exports.Cloud9ServiceException = Cloud9ServiceException;
|
|
1010
|
-
exports.ConcurrentAccessException = ConcurrentAccessException;
|
|
1011
|
-
exports.ConflictException = ConflictException;
|
|
875
|
+
exports.Cloud9ServiceException = Cloud9ServiceException$1;
|
|
876
|
+
exports.ConcurrentAccessException = ConcurrentAccessException$1;
|
|
877
|
+
exports.ConflictException = ConflictException$1;
|
|
1012
878
|
exports.ConnectionType = ConnectionType;
|
|
1013
879
|
exports.CreateEnvironmentEC2Command = CreateEnvironmentEC2Command;
|
|
1014
|
-
exports.CreateEnvironmentEC2RequestFilterSensitiveLog = CreateEnvironmentEC2RequestFilterSensitiveLog;
|
|
1015
880
|
exports.CreateEnvironmentMembershipCommand = CreateEnvironmentMembershipCommand;
|
|
1016
881
|
exports.DeleteEnvironmentCommand = DeleteEnvironmentCommand;
|
|
1017
882
|
exports.DeleteEnvironmentMembershipCommand = DeleteEnvironmentMembershipCommand;
|
|
1018
883
|
exports.DescribeEnvironmentMembershipsCommand = DescribeEnvironmentMembershipsCommand;
|
|
1019
884
|
exports.DescribeEnvironmentStatusCommand = DescribeEnvironmentStatusCommand;
|
|
1020
885
|
exports.DescribeEnvironmentsCommand = DescribeEnvironmentsCommand;
|
|
1021
|
-
exports.DescribeEnvironmentsResultFilterSensitiveLog = DescribeEnvironmentsResultFilterSensitiveLog;
|
|
1022
|
-
exports.EnvironmentFilterSensitiveLog = EnvironmentFilterSensitiveLog;
|
|
1023
886
|
exports.EnvironmentLifecycleStatus = EnvironmentLifecycleStatus;
|
|
1024
887
|
exports.EnvironmentStatus = EnvironmentStatus;
|
|
1025
888
|
exports.EnvironmentType = EnvironmentType;
|
|
1026
|
-
exports.ForbiddenException = ForbiddenException;
|
|
1027
|
-
exports.InternalServerErrorException = InternalServerErrorException;
|
|
1028
|
-
exports.LimitExceededException = LimitExceededException;
|
|
889
|
+
exports.ForbiddenException = ForbiddenException$1;
|
|
890
|
+
exports.InternalServerErrorException = InternalServerErrorException$1;
|
|
891
|
+
exports.LimitExceededException = LimitExceededException$1;
|
|
1029
892
|
exports.ListEnvironmentsCommand = ListEnvironmentsCommand;
|
|
1030
893
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1031
|
-
exports.ListTagsForResourceResponseFilterSensitiveLog = ListTagsForResourceResponseFilterSensitiveLog;
|
|
1032
894
|
exports.ManagedCredentialsAction = ManagedCredentialsAction;
|
|
1033
895
|
exports.ManagedCredentialsStatus = ManagedCredentialsStatus;
|
|
1034
896
|
exports.MemberPermissions = MemberPermissions;
|
|
1035
|
-
exports.NotFoundException = NotFoundException;
|
|
897
|
+
exports.NotFoundException = NotFoundException$1;
|
|
1036
898
|
exports.Permissions = Permissions;
|
|
1037
|
-
exports.TagFilterSensitiveLog = TagFilterSensitiveLog;
|
|
1038
899
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1039
|
-
exports.
|
|
1040
|
-
exports.TooManyRequestsException = TooManyRequestsException;
|
|
900
|
+
exports.TooManyRequestsException = TooManyRequestsException$1;
|
|
1041
901
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1042
|
-
exports.UntagResourceRequestFilterSensitiveLog = UntagResourceRequestFilterSensitiveLog;
|
|
1043
902
|
exports.UpdateEnvironmentCommand = UpdateEnvironmentCommand;
|
|
1044
903
|
exports.UpdateEnvironmentMembershipCommand = UpdateEnvironmentMembershipCommand;
|
|
1045
|
-
exports.UpdateEnvironmentRequestFilterSensitiveLog = UpdateEnvironmentRequestFilterSensitiveLog;
|
|
1046
904
|
exports.paginateDescribeEnvironmentMemberships = paginateDescribeEnvironmentMemberships;
|
|
1047
905
|
exports.paginateListEnvironments = paginateListEnvironments;
|