@aws-sdk/client-cloud9 3.296.0 → 3.298.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/commands/CreateEnvironmentEC2Command.js +1 -1
- package/dist-cjs/commands/CreateEnvironmentMembershipCommand.js +2 -3
- package/dist-cjs/commands/DeleteEnvironmentCommand.js +2 -3
- package/dist-cjs/commands/DeleteEnvironmentMembershipCommand.js +2 -3
- package/dist-cjs/commands/DescribeEnvironmentMembershipsCommand.js +2 -3
- package/dist-cjs/commands/DescribeEnvironmentStatusCommand.js +2 -3
- package/dist-cjs/commands/DescribeEnvironmentsCommand.js +1 -1
- package/dist-cjs/commands/ListEnvironmentsCommand.js +2 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -1
- package/dist-cjs/commands/TagResourceCommand.js +1 -1
- package/dist-cjs/commands/UntagResourceCommand.js +1 -1
- package/dist-cjs/commands/UpdateEnvironmentCommand.js +1 -1
- package/dist-cjs/commands/UpdateEnvironmentMembershipCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -89
- package/dist-es/commands/CreateEnvironmentEC2Command.js +2 -2
- package/dist-es/commands/CreateEnvironmentMembershipCommand.js +2 -3
- package/dist-es/commands/DeleteEnvironmentCommand.js +2 -3
- package/dist-es/commands/DeleteEnvironmentMembershipCommand.js +2 -3
- package/dist-es/commands/DescribeEnvironmentMembershipsCommand.js +2 -3
- package/dist-es/commands/DescribeEnvironmentStatusCommand.js +2 -3
- package/dist-es/commands/DescribeEnvironmentsCommand.js +2 -2
- package/dist-es/commands/ListEnvironmentsCommand.js +2 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateEnvironmentCommand.js +2 -2
- package/dist-es/commands/UpdateEnvironmentMembershipCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -66
- package/dist-types/Cloud9.d.ts +14 -0
- package/dist-types/Cloud9Client.d.ts +24 -4
- package/dist-types/commands/CreateEnvironmentEC2Command.d.ts +16 -0
- package/dist-types/commands/CreateEnvironmentMembershipCommand.d.ts +16 -0
- package/dist-types/commands/DeleteEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/DeleteEnvironmentMembershipCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEnvironmentMembershipsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEnvironmentStatusCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEnvironmentsCommand.d.ts +16 -0
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/UpdateEnvironmentMembershipCommand.d.ts +16 -0
- package/dist-types/models/Cloud9ServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +114 -88
- package/dist-types/pagination/DescribeEnvironmentMembershipsPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListEnvironmentsPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -66
- package/package.json +4 -3
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Cloud9ServiceException as __BaseException } from "./Cloud9ServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>The target request is invalid.</p>
|
|
5
6
|
*/
|
|
6
7
|
export declare class BadRequestException extends __BaseException {
|
|
@@ -14,6 +15,7 @@ export declare class BadRequestException extends __BaseException {
|
|
|
14
15
|
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
15
16
|
}
|
|
16
17
|
/**
|
|
18
|
+
* @public
|
|
17
19
|
* <p>A conflict occurred.</p>
|
|
18
20
|
*/
|
|
19
21
|
export declare class ConflictException extends __BaseException {
|
|
@@ -26,11 +28,15 @@ export declare class ConflictException extends __BaseException {
|
|
|
26
28
|
*/
|
|
27
29
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
28
30
|
}
|
|
31
|
+
/**
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
29
34
|
export declare enum ConnectionType {
|
|
30
35
|
CONNECT_SSH = "CONNECT_SSH",
|
|
31
36
|
CONNECT_SSM = "CONNECT_SSM"
|
|
32
37
|
}
|
|
33
38
|
/**
|
|
39
|
+
* @public
|
|
34
40
|
* <p>Metadata that is associated with Amazon Web Services resources. In particular, a name-value pair that
|
|
35
41
|
* can be associated with an Cloud9 development environment. There are two types of tags:
|
|
36
42
|
* <i>user tags</i> and <i>system tags</i>. A user tag is created
|
|
@@ -47,6 +53,9 @@ export interface Tag {
|
|
|
47
53
|
*/
|
|
48
54
|
Value: string | undefined;
|
|
49
55
|
}
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
50
59
|
export interface CreateEnvironmentEC2Request {
|
|
51
60
|
/**
|
|
52
61
|
* <p>The name of the environment to create.</p>
|
|
@@ -156,6 +165,9 @@ export interface CreateEnvironmentEC2Request {
|
|
|
156
165
|
*/
|
|
157
166
|
dryRun?: boolean;
|
|
158
167
|
}
|
|
168
|
+
/**
|
|
169
|
+
* @public
|
|
170
|
+
*/
|
|
159
171
|
export interface CreateEnvironmentEC2Result {
|
|
160
172
|
/**
|
|
161
173
|
* <p>The ID of the environment that was created.</p>
|
|
@@ -163,6 +175,7 @@ export interface CreateEnvironmentEC2Result {
|
|
|
163
175
|
environmentId?: string;
|
|
164
176
|
}
|
|
165
177
|
/**
|
|
178
|
+
* @public
|
|
166
179
|
* <p>An access permissions issue occurred.</p>
|
|
167
180
|
*/
|
|
168
181
|
export declare class ForbiddenException extends __BaseException {
|
|
@@ -176,6 +189,7 @@ export declare class ForbiddenException extends __BaseException {
|
|
|
176
189
|
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
177
190
|
}
|
|
178
191
|
/**
|
|
192
|
+
* @public
|
|
179
193
|
* <p>An internal server error occurred.</p>
|
|
180
194
|
*/
|
|
181
195
|
export declare class InternalServerErrorException extends __BaseException {
|
|
@@ -189,6 +203,7 @@ export declare class InternalServerErrorException extends __BaseException {
|
|
|
189
203
|
constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
|
|
190
204
|
}
|
|
191
205
|
/**
|
|
206
|
+
* @public
|
|
192
207
|
* <p>A service limit was exceeded.</p>
|
|
193
208
|
*/
|
|
194
209
|
export declare class LimitExceededException extends __BaseException {
|
|
@@ -202,6 +217,7 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
202
217
|
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
203
218
|
}
|
|
204
219
|
/**
|
|
220
|
+
* @public
|
|
205
221
|
* <p>The target resource cannot be found.</p>
|
|
206
222
|
*/
|
|
207
223
|
export declare class NotFoundException extends __BaseException {
|
|
@@ -215,6 +231,7 @@ export declare class NotFoundException extends __BaseException {
|
|
|
215
231
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
216
232
|
}
|
|
217
233
|
/**
|
|
234
|
+
* @public
|
|
218
235
|
* <p>Too many service requests were made over the given time period.</p>
|
|
219
236
|
*/
|
|
220
237
|
export declare class TooManyRequestsException extends __BaseException {
|
|
@@ -227,10 +244,16 @@ export declare class TooManyRequestsException extends __BaseException {
|
|
|
227
244
|
*/
|
|
228
245
|
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
229
246
|
}
|
|
247
|
+
/**
|
|
248
|
+
* @public
|
|
249
|
+
*/
|
|
230
250
|
export declare enum MemberPermissions {
|
|
231
251
|
READ_ONLY = "read-only",
|
|
232
252
|
READ_WRITE = "read-write"
|
|
233
253
|
}
|
|
254
|
+
/**
|
|
255
|
+
* @public
|
|
256
|
+
*/
|
|
234
257
|
export interface CreateEnvironmentMembershipRequest {
|
|
235
258
|
/**
|
|
236
259
|
* <p>The ID of the environment that contains the environment member you want to add.</p>
|
|
@@ -256,12 +279,16 @@ export interface CreateEnvironmentMembershipRequest {
|
|
|
256
279
|
*/
|
|
257
280
|
permissions: MemberPermissions | string | undefined;
|
|
258
281
|
}
|
|
282
|
+
/**
|
|
283
|
+
* @public
|
|
284
|
+
*/
|
|
259
285
|
export declare enum Permissions {
|
|
260
286
|
OWNER = "owner",
|
|
261
287
|
READ_ONLY = "read-only",
|
|
262
288
|
READ_WRITE = "read-write"
|
|
263
289
|
}
|
|
264
290
|
/**
|
|
291
|
+
* @public
|
|
265
292
|
* <p>Information about an environment member for an Cloud9 development environment.</p>
|
|
266
293
|
*/
|
|
267
294
|
export interface EnvironmentMember {
|
|
@@ -302,20 +329,32 @@ export interface EnvironmentMember {
|
|
|
302
329
|
*/
|
|
303
330
|
lastAccess?: Date;
|
|
304
331
|
}
|
|
332
|
+
/**
|
|
333
|
+
* @public
|
|
334
|
+
*/
|
|
305
335
|
export interface CreateEnvironmentMembershipResult {
|
|
306
336
|
/**
|
|
307
337
|
* <p>Information about the environment member that was added.</p>
|
|
308
338
|
*/
|
|
309
339
|
membership: EnvironmentMember | undefined;
|
|
310
340
|
}
|
|
341
|
+
/**
|
|
342
|
+
* @public
|
|
343
|
+
*/
|
|
311
344
|
export interface DeleteEnvironmentRequest {
|
|
312
345
|
/**
|
|
313
346
|
* <p>The ID of the environment to delete.</p>
|
|
314
347
|
*/
|
|
315
348
|
environmentId: string | undefined;
|
|
316
349
|
}
|
|
350
|
+
/**
|
|
351
|
+
* @public
|
|
352
|
+
*/
|
|
317
353
|
export interface DeleteEnvironmentResult {
|
|
318
354
|
}
|
|
355
|
+
/**
|
|
356
|
+
* @public
|
|
357
|
+
*/
|
|
319
358
|
export interface DeleteEnvironmentMembershipRequest {
|
|
320
359
|
/**
|
|
321
360
|
* <p>The ID of the environment to delete the environment member from.</p>
|
|
@@ -327,8 +366,14 @@ export interface DeleteEnvironmentMembershipRequest {
|
|
|
327
366
|
*/
|
|
328
367
|
userArn: string | undefined;
|
|
329
368
|
}
|
|
369
|
+
/**
|
|
370
|
+
* @public
|
|
371
|
+
*/
|
|
330
372
|
export interface DeleteEnvironmentMembershipResult {
|
|
331
373
|
}
|
|
374
|
+
/**
|
|
375
|
+
* @public
|
|
376
|
+
*/
|
|
332
377
|
export interface DescribeEnvironmentMembershipsRequest {
|
|
333
378
|
/**
|
|
334
379
|
* <p>The Amazon Resource Name (ARN) of an individual environment member to get information
|
|
@@ -373,6 +418,9 @@ export interface DescribeEnvironmentMembershipsRequest {
|
|
|
373
418
|
*/
|
|
374
419
|
maxResults?: number;
|
|
375
420
|
}
|
|
421
|
+
/**
|
|
422
|
+
* @public
|
|
423
|
+
*/
|
|
376
424
|
export interface DescribeEnvironmentMembershipsResult {
|
|
377
425
|
/**
|
|
378
426
|
* <p>Information about the environment members for the environment.</p>
|
|
@@ -385,12 +433,18 @@ export interface DescribeEnvironmentMembershipsResult {
|
|
|
385
433
|
*/
|
|
386
434
|
nextToken?: string;
|
|
387
435
|
}
|
|
436
|
+
/**
|
|
437
|
+
* @public
|
|
438
|
+
*/
|
|
388
439
|
export interface DescribeEnvironmentsRequest {
|
|
389
440
|
/**
|
|
390
441
|
* <p>The IDs of individual environments to get information about.</p>
|
|
391
442
|
*/
|
|
392
443
|
environmentIds: string[] | undefined;
|
|
393
444
|
}
|
|
445
|
+
/**
|
|
446
|
+
* @public
|
|
447
|
+
*/
|
|
394
448
|
export declare enum EnvironmentLifecycleStatus {
|
|
395
449
|
CREATED = "CREATED",
|
|
396
450
|
CREATE_FAILED = "CREATE_FAILED",
|
|
@@ -399,6 +453,7 @@ export declare enum EnvironmentLifecycleStatus {
|
|
|
399
453
|
DELETING = "DELETING"
|
|
400
454
|
}
|
|
401
455
|
/**
|
|
456
|
+
* @public
|
|
402
457
|
* <p>Information about the current creation or deletion lifecycle state of an Cloud9 development
|
|
403
458
|
* environment.</p>
|
|
404
459
|
*/
|
|
@@ -439,6 +494,9 @@ export interface EnvironmentLifecycle {
|
|
|
439
494
|
*/
|
|
440
495
|
failureResource?: string;
|
|
441
496
|
}
|
|
497
|
+
/**
|
|
498
|
+
* @public
|
|
499
|
+
*/
|
|
442
500
|
export declare enum ManagedCredentialsStatus {
|
|
443
501
|
DISABLED_BY_COLLABORATOR = "DISABLED_BY_COLLABORATOR",
|
|
444
502
|
DISABLED_BY_DEFAULT = "DISABLED_BY_DEFAULT",
|
|
@@ -452,11 +510,15 @@ export declare enum ManagedCredentialsStatus {
|
|
|
452
510
|
PENDING_START_REMOVAL_BY_COLLABORATOR = "PENDING_START_REMOVAL_BY_COLLABORATOR",
|
|
453
511
|
PENDING_START_REMOVAL_BY_OWNER = "PENDING_START_REMOVAL_BY_OWNER"
|
|
454
512
|
}
|
|
513
|
+
/**
|
|
514
|
+
* @public
|
|
515
|
+
*/
|
|
455
516
|
export declare enum EnvironmentType {
|
|
456
517
|
EC2 = "ec2",
|
|
457
518
|
SSH = "ssh"
|
|
458
519
|
}
|
|
459
520
|
/**
|
|
521
|
+
* @public
|
|
460
522
|
* <p>Information about an Cloud9 development environment.</p>
|
|
461
523
|
*/
|
|
462
524
|
export interface Environment {
|
|
@@ -561,18 +623,27 @@ export interface Environment {
|
|
|
561
623
|
*/
|
|
562
624
|
managedCredentialsStatus?: ManagedCredentialsStatus | string;
|
|
563
625
|
}
|
|
626
|
+
/**
|
|
627
|
+
* @public
|
|
628
|
+
*/
|
|
564
629
|
export interface DescribeEnvironmentsResult {
|
|
565
630
|
/**
|
|
566
631
|
* <p>Information about the environments that are returned.</p>
|
|
567
632
|
*/
|
|
568
633
|
environments?: Environment[];
|
|
569
634
|
}
|
|
635
|
+
/**
|
|
636
|
+
* @public
|
|
637
|
+
*/
|
|
570
638
|
export interface DescribeEnvironmentStatusRequest {
|
|
571
639
|
/**
|
|
572
640
|
* <p>The ID of the environment to get status information about.</p>
|
|
573
641
|
*/
|
|
574
642
|
environmentId: string | undefined;
|
|
575
643
|
}
|
|
644
|
+
/**
|
|
645
|
+
* @public
|
|
646
|
+
*/
|
|
576
647
|
export declare enum EnvironmentStatus {
|
|
577
648
|
CONNECTING = "connecting",
|
|
578
649
|
CREATING = "creating",
|
|
@@ -582,6 +653,9 @@ export declare enum EnvironmentStatus {
|
|
|
582
653
|
STOPPED = "stopped",
|
|
583
654
|
STOPPING = "stopping"
|
|
584
655
|
}
|
|
656
|
+
/**
|
|
657
|
+
* @public
|
|
658
|
+
*/
|
|
585
659
|
export interface DescribeEnvironmentStatusResult {
|
|
586
660
|
/**
|
|
587
661
|
* <p>The status of the environment. Available values include:</p>
|
|
@@ -622,6 +696,9 @@ export interface DescribeEnvironmentStatusResult {
|
|
|
622
696
|
*/
|
|
623
697
|
message: string | undefined;
|
|
624
698
|
}
|
|
699
|
+
/**
|
|
700
|
+
* @public
|
|
701
|
+
*/
|
|
625
702
|
export interface ListEnvironmentsRequest {
|
|
626
703
|
/**
|
|
627
704
|
* <p>During a previous call, if there are more than 25 items in the list, only the first 25
|
|
@@ -636,6 +713,9 @@ export interface ListEnvironmentsRequest {
|
|
|
636
713
|
*/
|
|
637
714
|
maxResults?: number;
|
|
638
715
|
}
|
|
716
|
+
/**
|
|
717
|
+
* @public
|
|
718
|
+
*/
|
|
639
719
|
export interface ListEnvironmentsResult {
|
|
640
720
|
/**
|
|
641
721
|
* <p>If there are more than 25 items in the list, only the first 25 items are returned, along
|
|
@@ -648,6 +728,9 @@ export interface ListEnvironmentsResult {
|
|
|
648
728
|
*/
|
|
649
729
|
environmentIds?: string[];
|
|
650
730
|
}
|
|
731
|
+
/**
|
|
732
|
+
* @public
|
|
733
|
+
*/
|
|
651
734
|
export interface ListTagsForResourceRequest {
|
|
652
735
|
/**
|
|
653
736
|
* <p>The Amazon Resource Name (ARN) of the Cloud9 development environment to get the tags
|
|
@@ -655,6 +738,9 @@ export interface ListTagsForResourceRequest {
|
|
|
655
738
|
*/
|
|
656
739
|
ResourceARN: string | undefined;
|
|
657
740
|
}
|
|
741
|
+
/**
|
|
742
|
+
* @public
|
|
743
|
+
*/
|
|
658
744
|
export interface ListTagsForResourceResponse {
|
|
659
745
|
/**
|
|
660
746
|
* <p>The list of tags associated with the Cloud9 development environment.</p>
|
|
@@ -662,6 +748,7 @@ export interface ListTagsForResourceResponse {
|
|
|
662
748
|
Tags?: Tag[];
|
|
663
749
|
}
|
|
664
750
|
/**
|
|
751
|
+
* @public
|
|
665
752
|
* <p>A concurrent access issue occurred.</p>
|
|
666
753
|
*/
|
|
667
754
|
export declare class ConcurrentAccessException extends __BaseException {
|
|
@@ -674,6 +761,9 @@ export declare class ConcurrentAccessException extends __BaseException {
|
|
|
674
761
|
*/
|
|
675
762
|
constructor(opts: __ExceptionOptionType<ConcurrentAccessException, __BaseException>);
|
|
676
763
|
}
|
|
764
|
+
/**
|
|
765
|
+
* @public
|
|
766
|
+
*/
|
|
677
767
|
export interface TagResourceRequest {
|
|
678
768
|
/**
|
|
679
769
|
* <p>The Amazon Resource Name (ARN) of the Cloud9 development environment to add tags
|
|
@@ -685,8 +775,14 @@ export interface TagResourceRequest {
|
|
|
685
775
|
*/
|
|
686
776
|
Tags: Tag[] | undefined;
|
|
687
777
|
}
|
|
778
|
+
/**
|
|
779
|
+
* @public
|
|
780
|
+
*/
|
|
688
781
|
export interface TagResourceResponse {
|
|
689
782
|
}
|
|
783
|
+
/**
|
|
784
|
+
* @public
|
|
785
|
+
*/
|
|
690
786
|
export interface UntagResourceRequest {
|
|
691
787
|
/**
|
|
692
788
|
* <p>The Amazon Resource Name (ARN) of the Cloud9 development environment to remove tags
|
|
@@ -699,12 +795,21 @@ export interface UntagResourceRequest {
|
|
|
699
795
|
*/
|
|
700
796
|
TagKeys: string[] | undefined;
|
|
701
797
|
}
|
|
798
|
+
/**
|
|
799
|
+
* @public
|
|
800
|
+
*/
|
|
702
801
|
export interface UntagResourceResponse {
|
|
703
802
|
}
|
|
803
|
+
/**
|
|
804
|
+
* @public
|
|
805
|
+
*/
|
|
704
806
|
export declare enum ManagedCredentialsAction {
|
|
705
807
|
DISABLE = "DISABLE",
|
|
706
808
|
ENABLE = "ENABLE"
|
|
707
809
|
}
|
|
810
|
+
/**
|
|
811
|
+
* @public
|
|
812
|
+
*/
|
|
708
813
|
export interface UpdateEnvironmentRequest {
|
|
709
814
|
/**
|
|
710
815
|
* <p>The ID of the environment to change settings.</p>
|
|
@@ -740,8 +845,14 @@ export interface UpdateEnvironmentRequest {
|
|
|
740
845
|
*/
|
|
741
846
|
managedCredentialsAction?: ManagedCredentialsAction | string;
|
|
742
847
|
}
|
|
848
|
+
/**
|
|
849
|
+
* @public
|
|
850
|
+
*/
|
|
743
851
|
export interface UpdateEnvironmentResult {
|
|
744
852
|
}
|
|
853
|
+
/**
|
|
854
|
+
* @public
|
|
855
|
+
*/
|
|
745
856
|
export interface UpdateEnvironmentMembershipRequest {
|
|
746
857
|
/**
|
|
747
858
|
* <p>The ID of the environment for the environment member whose settings you want to
|
|
@@ -769,6 +880,9 @@ export interface UpdateEnvironmentMembershipRequest {
|
|
|
769
880
|
*/
|
|
770
881
|
permissions: MemberPermissions | string | undefined;
|
|
771
882
|
}
|
|
883
|
+
/**
|
|
884
|
+
* @public
|
|
885
|
+
*/
|
|
772
886
|
export interface UpdateEnvironmentMembershipResult {
|
|
773
887
|
/**
|
|
774
888
|
* <p>Information about the environment member whose settings were changed.</p>
|
|
@@ -783,54 +897,6 @@ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
|
783
897
|
* @internal
|
|
784
898
|
*/
|
|
785
899
|
export declare const CreateEnvironmentEC2RequestFilterSensitiveLog: (obj: CreateEnvironmentEC2Request) => any;
|
|
786
|
-
/**
|
|
787
|
-
* @internal
|
|
788
|
-
*/
|
|
789
|
-
export declare const CreateEnvironmentEC2ResultFilterSensitiveLog: (obj: CreateEnvironmentEC2Result) => any;
|
|
790
|
-
/**
|
|
791
|
-
* @internal
|
|
792
|
-
*/
|
|
793
|
-
export declare const CreateEnvironmentMembershipRequestFilterSensitiveLog: (obj: CreateEnvironmentMembershipRequest) => any;
|
|
794
|
-
/**
|
|
795
|
-
* @internal
|
|
796
|
-
*/
|
|
797
|
-
export declare const EnvironmentMemberFilterSensitiveLog: (obj: EnvironmentMember) => any;
|
|
798
|
-
/**
|
|
799
|
-
* @internal
|
|
800
|
-
*/
|
|
801
|
-
export declare const CreateEnvironmentMembershipResultFilterSensitiveLog: (obj: CreateEnvironmentMembershipResult) => any;
|
|
802
|
-
/**
|
|
803
|
-
* @internal
|
|
804
|
-
*/
|
|
805
|
-
export declare const DeleteEnvironmentRequestFilterSensitiveLog: (obj: DeleteEnvironmentRequest) => any;
|
|
806
|
-
/**
|
|
807
|
-
* @internal
|
|
808
|
-
*/
|
|
809
|
-
export declare const DeleteEnvironmentResultFilterSensitiveLog: (obj: DeleteEnvironmentResult) => any;
|
|
810
|
-
/**
|
|
811
|
-
* @internal
|
|
812
|
-
*/
|
|
813
|
-
export declare const DeleteEnvironmentMembershipRequestFilterSensitiveLog: (obj: DeleteEnvironmentMembershipRequest) => any;
|
|
814
|
-
/**
|
|
815
|
-
* @internal
|
|
816
|
-
*/
|
|
817
|
-
export declare const DeleteEnvironmentMembershipResultFilterSensitiveLog: (obj: DeleteEnvironmentMembershipResult) => any;
|
|
818
|
-
/**
|
|
819
|
-
* @internal
|
|
820
|
-
*/
|
|
821
|
-
export declare const DescribeEnvironmentMembershipsRequestFilterSensitiveLog: (obj: DescribeEnvironmentMembershipsRequest) => any;
|
|
822
|
-
/**
|
|
823
|
-
* @internal
|
|
824
|
-
*/
|
|
825
|
-
export declare const DescribeEnvironmentMembershipsResultFilterSensitiveLog: (obj: DescribeEnvironmentMembershipsResult) => any;
|
|
826
|
-
/**
|
|
827
|
-
* @internal
|
|
828
|
-
*/
|
|
829
|
-
export declare const DescribeEnvironmentsRequestFilterSensitiveLog: (obj: DescribeEnvironmentsRequest) => any;
|
|
830
|
-
/**
|
|
831
|
-
* @internal
|
|
832
|
-
*/
|
|
833
|
-
export declare const EnvironmentLifecycleFilterSensitiveLog: (obj: EnvironmentLifecycle) => any;
|
|
834
900
|
/**
|
|
835
901
|
* @internal
|
|
836
902
|
*/
|
|
@@ -839,26 +905,6 @@ export declare const EnvironmentFilterSensitiveLog: (obj: Environment) => any;
|
|
|
839
905
|
* @internal
|
|
840
906
|
*/
|
|
841
907
|
export declare const DescribeEnvironmentsResultFilterSensitiveLog: (obj: DescribeEnvironmentsResult) => any;
|
|
842
|
-
/**
|
|
843
|
-
* @internal
|
|
844
|
-
*/
|
|
845
|
-
export declare const DescribeEnvironmentStatusRequestFilterSensitiveLog: (obj: DescribeEnvironmentStatusRequest) => any;
|
|
846
|
-
/**
|
|
847
|
-
* @internal
|
|
848
|
-
*/
|
|
849
|
-
export declare const DescribeEnvironmentStatusResultFilterSensitiveLog: (obj: DescribeEnvironmentStatusResult) => any;
|
|
850
|
-
/**
|
|
851
|
-
* @internal
|
|
852
|
-
*/
|
|
853
|
-
export declare const ListEnvironmentsRequestFilterSensitiveLog: (obj: ListEnvironmentsRequest) => any;
|
|
854
|
-
/**
|
|
855
|
-
* @internal
|
|
856
|
-
*/
|
|
857
|
-
export declare const ListEnvironmentsResultFilterSensitiveLog: (obj: ListEnvironmentsResult) => any;
|
|
858
|
-
/**
|
|
859
|
-
* @internal
|
|
860
|
-
*/
|
|
861
|
-
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
862
908
|
/**
|
|
863
909
|
* @internal
|
|
864
910
|
*/
|
|
@@ -867,31 +913,11 @@ export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTa
|
|
|
867
913
|
* @internal
|
|
868
914
|
*/
|
|
869
915
|
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
870
|
-
/**
|
|
871
|
-
* @internal
|
|
872
|
-
*/
|
|
873
|
-
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
874
916
|
/**
|
|
875
917
|
* @internal
|
|
876
918
|
*/
|
|
877
919
|
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
878
|
-
/**
|
|
879
|
-
* @internal
|
|
880
|
-
*/
|
|
881
|
-
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
882
920
|
/**
|
|
883
921
|
* @internal
|
|
884
922
|
*/
|
|
885
923
|
export declare const UpdateEnvironmentRequestFilterSensitiveLog: (obj: UpdateEnvironmentRequest) => any;
|
|
886
|
-
/**
|
|
887
|
-
* @internal
|
|
888
|
-
*/
|
|
889
|
-
export declare const UpdateEnvironmentResultFilterSensitiveLog: (obj: UpdateEnvironmentResult) => any;
|
|
890
|
-
/**
|
|
891
|
-
* @internal
|
|
892
|
-
*/
|
|
893
|
-
export declare const UpdateEnvironmentMembershipRequestFilterSensitiveLog: (obj: UpdateEnvironmentMembershipRequest) => any;
|
|
894
|
-
/**
|
|
895
|
-
* @internal
|
|
896
|
-
*/
|
|
897
|
-
export declare const UpdateEnvironmentMembershipResultFilterSensitiveLog: (obj: UpdateEnvironmentMembershipResult) => any;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { DescribeEnvironmentMembershipsCommandInput, DescribeEnvironmentMembershipsCommandOutput } from "../commands/DescribeEnvironmentMembershipsCommand";
|
|
3
3
|
import { Cloud9PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateDescribeEnvironmentMemberships(config: Cloud9PaginationConfiguration, input: DescribeEnvironmentMembershipsCommandInput, ...additionalArguments: any): Paginator<DescribeEnvironmentMembershipsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "../commands/ListEnvironmentsCommand";
|
|
3
3
|
import { Cloud9PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListEnvironments(config: Cloud9PaginationConfiguration, input: ListEnvironmentsCommandInput, ...additionalArguments: any): Paginator<ListEnvironmentsCommandOutput>;
|
|
@@ -243,85 +243,19 @@ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
|
243
243
|
export declare const CreateEnvironmentEC2RequestFilterSensitiveLog: (
|
|
244
244
|
obj: CreateEnvironmentEC2Request
|
|
245
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
246
|
export declare const EnvironmentFilterSensitiveLog: (obj: Environment) => any;
|
|
283
247
|
export declare const DescribeEnvironmentsResultFilterSensitiveLog: (
|
|
284
248
|
obj: DescribeEnvironmentsResult
|
|
285
249
|
) => 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
250
|
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
302
251
|
obj: ListTagsForResourceResponse
|
|
303
252
|
) => any;
|
|
304
253
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
305
254
|
obj: TagResourceRequest
|
|
306
255
|
) => any;
|
|
307
|
-
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
308
|
-
obj: TagResourceResponse
|
|
309
|
-
) => any;
|
|
310
256
|
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
311
257
|
obj: UntagResourceRequest
|
|
312
258
|
) => any;
|
|
313
|
-
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
314
|
-
obj: UntagResourceResponse
|
|
315
|
-
) => any;
|
|
316
259
|
export declare const UpdateEnvironmentRequestFilterSensitiveLog: (
|
|
317
260
|
obj: UpdateEnvironmentRequest
|
|
318
261
|
) => 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;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloud9",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloud9 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.298.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"build:types": "tsc -p tsconfig.types.json",
|
|
12
12
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
13
13
|
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
|
|
14
|
+
"extract:docs": "api-extractor run --local",
|
|
14
15
|
"generate:client": "node ../../scripts/generate-clients/single-service --solo cloud9"
|
|
15
16
|
},
|
|
16
17
|
"main": "./dist-cjs/index.js",
|
|
@@ -20,9 +21,9 @@
|
|
|
20
21
|
"dependencies": {
|
|
21
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.298.0",
|
|
24
25
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.298.0",
|
|
26
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|