@aws-sdk/client-cloud9 3.687.0 → 3.692.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-types/models/models_0.d.ts +52 -52
- package/dist-types/ts3.4/models/models_0.d.ts +52 -52
- package/package.json +35 -35
|
@@ -7,8 +7,8 @@ import { Cloud9ServiceException as __BaseException } from "./Cloud9ServiceExcept
|
|
|
7
7
|
export declare class BadRequestException extends __BaseException {
|
|
8
8
|
readonly name: "BadRequestException";
|
|
9
9
|
readonly $fault: "client";
|
|
10
|
-
className?: string;
|
|
11
|
-
code?: number;
|
|
10
|
+
className?: string | undefined;
|
|
11
|
+
code?: number | undefined;
|
|
12
12
|
/**
|
|
13
13
|
* @internal
|
|
14
14
|
*/
|
|
@@ -21,8 +21,8 @@ export declare class BadRequestException extends __BaseException {
|
|
|
21
21
|
export declare class ConflictException extends __BaseException {
|
|
22
22
|
readonly name: "ConflictException";
|
|
23
23
|
readonly $fault: "client";
|
|
24
|
-
className?: string;
|
|
25
|
-
code?: number;
|
|
24
|
+
className?: string | undefined;
|
|
25
|
+
code?: number | undefined;
|
|
26
26
|
/**
|
|
27
27
|
* @internal
|
|
28
28
|
*/
|
|
@@ -74,7 +74,7 @@ export interface CreateEnvironmentEC2Request {
|
|
|
74
74
|
* <p>The description of the environment to create.</p>
|
|
75
75
|
* @public
|
|
76
76
|
*/
|
|
77
|
-
description?: string;
|
|
77
|
+
description?: string | undefined;
|
|
78
78
|
/**
|
|
79
79
|
* <p>A unique, case-sensitive string that helps Cloud9 to ensure this operation completes no
|
|
80
80
|
* more than one time.</p>
|
|
@@ -82,7 +82,7 @@ export interface CreateEnvironmentEC2Request {
|
|
|
82
82
|
* <i>Amazon EC2 API Reference</i>.</p>
|
|
83
83
|
* @public
|
|
84
84
|
*/
|
|
85
|
-
clientRequestToken?: string;
|
|
85
|
+
clientRequestToken?: string | undefined;
|
|
86
86
|
/**
|
|
87
87
|
* <p>The type of instance to connect to the environment (for example,
|
|
88
88
|
* <code>t2.micro</code>).</p>
|
|
@@ -94,7 +94,7 @@ export interface CreateEnvironmentEC2Request {
|
|
|
94
94
|
* instance.</p>
|
|
95
95
|
* @public
|
|
96
96
|
*/
|
|
97
|
-
subnetId?: string;
|
|
97
|
+
subnetId?: string | undefined;
|
|
98
98
|
/**
|
|
99
99
|
* <p>The identifier for the Amazon Machine Image (AMI) that's used to create the EC2 instance.
|
|
100
100
|
* To choose an AMI for the instance, you must specify a valid AMI alias or a valid Amazon EC2 Systems Manager (SSM)
|
|
@@ -160,20 +160,20 @@ export interface CreateEnvironmentEC2Request {
|
|
|
160
160
|
* last been used.</p>
|
|
161
161
|
* @public
|
|
162
162
|
*/
|
|
163
|
-
automaticStopTimeMinutes?: number;
|
|
163
|
+
automaticStopTimeMinutes?: number | undefined;
|
|
164
164
|
/**
|
|
165
165
|
* <p>The Amazon Resource Name (ARN) of the environment owner. This ARN can be the ARN of any
|
|
166
166
|
* IAM principal. If this value is not specified, the ARN defaults to this environment's
|
|
167
167
|
* creator.</p>
|
|
168
168
|
* @public
|
|
169
169
|
*/
|
|
170
|
-
ownerArn?: string;
|
|
170
|
+
ownerArn?: string | undefined;
|
|
171
171
|
/**
|
|
172
172
|
* <p>An array of key-value pairs that will be associated with the new Cloud9 development
|
|
173
173
|
* environment.</p>
|
|
174
174
|
* @public
|
|
175
175
|
*/
|
|
176
|
-
tags?: Tag[];
|
|
176
|
+
tags?: Tag[] | undefined;
|
|
177
177
|
/**
|
|
178
178
|
* <p>The connection type used for connecting to an Amazon EC2 environment. Valid values are
|
|
179
179
|
* <code>CONNECT_SSH</code> (default) and <code>CONNECT_SSM</code> (connected through
|
|
@@ -182,12 +182,12 @@ export interface CreateEnvironmentEC2Request {
|
|
|
182
182
|
* Amazon EC2 Systems Manager</a> in the <i>Cloud9 User Guide</i>.</p>
|
|
183
183
|
* @public
|
|
184
184
|
*/
|
|
185
|
-
connectionType?: ConnectionType;
|
|
185
|
+
connectionType?: ConnectionType | undefined;
|
|
186
186
|
/**
|
|
187
187
|
* <p>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
188
188
|
* @public
|
|
189
189
|
*/
|
|
190
|
-
dryRun?: boolean;
|
|
190
|
+
dryRun?: boolean | undefined;
|
|
191
191
|
}
|
|
192
192
|
/**
|
|
193
193
|
* @public
|
|
@@ -197,7 +197,7 @@ export interface CreateEnvironmentEC2Result {
|
|
|
197
197
|
* <p>The ID of the environment that was created.</p>
|
|
198
198
|
* @public
|
|
199
199
|
*/
|
|
200
|
-
environmentId?: string;
|
|
200
|
+
environmentId?: string | undefined;
|
|
201
201
|
}
|
|
202
202
|
/**
|
|
203
203
|
* <p>An access permissions issue occurred.</p>
|
|
@@ -206,8 +206,8 @@ export interface CreateEnvironmentEC2Result {
|
|
|
206
206
|
export declare class ForbiddenException extends __BaseException {
|
|
207
207
|
readonly name: "ForbiddenException";
|
|
208
208
|
readonly $fault: "client";
|
|
209
|
-
className?: string;
|
|
210
|
-
code?: number;
|
|
209
|
+
className?: string | undefined;
|
|
210
|
+
code?: number | undefined;
|
|
211
211
|
/**
|
|
212
212
|
* @internal
|
|
213
213
|
*/
|
|
@@ -220,8 +220,8 @@ export declare class ForbiddenException extends __BaseException {
|
|
|
220
220
|
export declare class InternalServerErrorException extends __BaseException {
|
|
221
221
|
readonly name: "InternalServerErrorException";
|
|
222
222
|
readonly $fault: "server";
|
|
223
|
-
className?: string;
|
|
224
|
-
code?: number;
|
|
223
|
+
className?: string | undefined;
|
|
224
|
+
code?: number | undefined;
|
|
225
225
|
/**
|
|
226
226
|
* @internal
|
|
227
227
|
*/
|
|
@@ -234,8 +234,8 @@ export declare class InternalServerErrorException extends __BaseException {
|
|
|
234
234
|
export declare class LimitExceededException extends __BaseException {
|
|
235
235
|
readonly name: "LimitExceededException";
|
|
236
236
|
readonly $fault: "client";
|
|
237
|
-
className?: string;
|
|
238
|
-
code?: number;
|
|
237
|
+
className?: string | undefined;
|
|
238
|
+
code?: number | undefined;
|
|
239
239
|
/**
|
|
240
240
|
* @internal
|
|
241
241
|
*/
|
|
@@ -248,8 +248,8 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
248
248
|
export declare class NotFoundException extends __BaseException {
|
|
249
249
|
readonly name: "NotFoundException";
|
|
250
250
|
readonly $fault: "client";
|
|
251
|
-
className?: string;
|
|
252
|
-
code?: number;
|
|
251
|
+
className?: string | undefined;
|
|
252
|
+
code?: number | undefined;
|
|
253
253
|
/**
|
|
254
254
|
* @internal
|
|
255
255
|
*/
|
|
@@ -262,8 +262,8 @@ export declare class NotFoundException extends __BaseException {
|
|
|
262
262
|
export declare class TooManyRequestsException extends __BaseException {
|
|
263
263
|
readonly name: "TooManyRequestsException";
|
|
264
264
|
readonly $fault: "client";
|
|
265
|
-
className?: string;
|
|
266
|
-
code?: number;
|
|
265
|
+
className?: string | undefined;
|
|
266
|
+
code?: number | undefined;
|
|
267
267
|
/**
|
|
268
268
|
* @internal
|
|
269
269
|
*/
|
|
@@ -370,7 +370,7 @@ export interface EnvironmentMember {
|
|
|
370
370
|
* environment.</p>
|
|
371
371
|
* @public
|
|
372
372
|
*/
|
|
373
|
-
lastAccess?: Date;
|
|
373
|
+
lastAccess?: Date | undefined;
|
|
374
374
|
}
|
|
375
375
|
/**
|
|
376
376
|
* @public
|
|
@@ -428,12 +428,12 @@ export interface DescribeEnvironmentMembershipsRequest {
|
|
|
428
428
|
* returned.</p>
|
|
429
429
|
* @public
|
|
430
430
|
*/
|
|
431
|
-
userArn?: string;
|
|
431
|
+
userArn?: string | undefined;
|
|
432
432
|
/**
|
|
433
433
|
* <p>The ID of the environment to get environment member information about.</p>
|
|
434
434
|
* @public
|
|
435
435
|
*/
|
|
436
|
-
environmentId?: string;
|
|
436
|
+
environmentId?: string | undefined;
|
|
437
437
|
/**
|
|
438
438
|
* <p>The type of environment member permissions to get information about. Available values
|
|
439
439
|
* include:</p>
|
|
@@ -454,7 +454,7 @@ export interface DescribeEnvironmentMembershipsRequest {
|
|
|
454
454
|
* <p>If no value is specified, information about all environment members are returned.</p>
|
|
455
455
|
* @public
|
|
456
456
|
*/
|
|
457
|
-
permissions?: Permissions[];
|
|
457
|
+
permissions?: Permissions[] | undefined;
|
|
458
458
|
/**
|
|
459
459
|
* <p>During a previous call, if there are more than 25 items in the list, only the first 25
|
|
460
460
|
* items are returned, along with a unique string called a <i>next token</i>. To
|
|
@@ -463,12 +463,12 @@ export interface DescribeEnvironmentMembershipsRequest {
|
|
|
463
463
|
* subsequent next token that is returned, until no more next tokens are returned.</p>
|
|
464
464
|
* @public
|
|
465
465
|
*/
|
|
466
|
-
nextToken?: string;
|
|
466
|
+
nextToken?: string | undefined;
|
|
467
467
|
/**
|
|
468
468
|
* <p>The maximum number of environment members to get information about.</p>
|
|
469
469
|
* @public
|
|
470
470
|
*/
|
|
471
|
-
maxResults?: number;
|
|
471
|
+
maxResults?: number | undefined;
|
|
472
472
|
}
|
|
473
473
|
/**
|
|
474
474
|
* @public
|
|
@@ -478,14 +478,14 @@ export interface DescribeEnvironmentMembershipsResult {
|
|
|
478
478
|
* <p>Information about the environment members for the environment.</p>
|
|
479
479
|
* @public
|
|
480
480
|
*/
|
|
481
|
-
memberships?: EnvironmentMember[];
|
|
481
|
+
memberships?: EnvironmentMember[] | undefined;
|
|
482
482
|
/**
|
|
483
483
|
* <p>If there are more than 25 items in the list, only the first 25 items are returned, along
|
|
484
484
|
* with a unique string called a <i>next token</i>. To get the next batch of items
|
|
485
485
|
* in the list, call this operation again, adding the next token to the call.</p>
|
|
486
486
|
* @public
|
|
487
487
|
*/
|
|
488
|
-
nextToken?: string;
|
|
488
|
+
nextToken?: string | undefined;
|
|
489
489
|
}
|
|
490
490
|
/**
|
|
491
491
|
* @public
|
|
@@ -544,18 +544,18 @@ export interface EnvironmentLifecycle {
|
|
|
544
544
|
* </ul>
|
|
545
545
|
* @public
|
|
546
546
|
*/
|
|
547
|
-
status?: EnvironmentLifecycleStatus;
|
|
547
|
+
status?: EnvironmentLifecycleStatus | undefined;
|
|
548
548
|
/**
|
|
549
549
|
* <p>Any informational message about the lifecycle state of the environment.</p>
|
|
550
550
|
* @public
|
|
551
551
|
*/
|
|
552
|
-
reason?: string;
|
|
552
|
+
reason?: string | undefined;
|
|
553
553
|
/**
|
|
554
554
|
* <p>If the environment failed to delete, the Amazon Resource Name (ARN) of the related Amazon Web Services
|
|
555
555
|
* resource.</p>
|
|
556
556
|
* @public
|
|
557
557
|
*/
|
|
558
|
-
failureResource?: string;
|
|
558
|
+
failureResource?: string | undefined;
|
|
559
559
|
}
|
|
560
560
|
/**
|
|
561
561
|
* @public
|
|
@@ -599,17 +599,17 @@ export interface Environment {
|
|
|
599
599
|
* <p>The ID of the environment.</p>
|
|
600
600
|
* @public
|
|
601
601
|
*/
|
|
602
|
-
id?: string;
|
|
602
|
+
id?: string | undefined;
|
|
603
603
|
/**
|
|
604
604
|
* <p>The name of the environment.</p>
|
|
605
605
|
* @public
|
|
606
606
|
*/
|
|
607
|
-
name?: string;
|
|
607
|
+
name?: string | undefined;
|
|
608
608
|
/**
|
|
609
609
|
* <p>The description for the environment.</p>
|
|
610
610
|
* @public
|
|
611
611
|
*/
|
|
612
|
-
description?: string;
|
|
612
|
+
description?: string | undefined;
|
|
613
613
|
/**
|
|
614
614
|
* <p>The type of environment. Valid values include the following:</p>
|
|
615
615
|
* <ul>
|
|
@@ -630,7 +630,7 @@ export interface Environment {
|
|
|
630
630
|
* is selected by default.</p>
|
|
631
631
|
* @public
|
|
632
632
|
*/
|
|
633
|
-
connectionType?: ConnectionType;
|
|
633
|
+
connectionType?: ConnectionType | undefined;
|
|
634
634
|
/**
|
|
635
635
|
* <p>The Amazon Resource Name (ARN) of the environment.</p>
|
|
636
636
|
* @public
|
|
@@ -645,7 +645,7 @@ export interface Environment {
|
|
|
645
645
|
* <p>The state of the environment in its creation or deletion lifecycle.</p>
|
|
646
646
|
* @public
|
|
647
647
|
*/
|
|
648
|
-
lifecycle?: EnvironmentLifecycle;
|
|
648
|
+
lifecycle?: EnvironmentLifecycle | undefined;
|
|
649
649
|
/**
|
|
650
650
|
* <p>Describes the status of Amazon Web Services managed temporary credentials for the Cloud9 environment.
|
|
651
651
|
* Available values are:</p>
|
|
@@ -703,7 +703,7 @@ export interface Environment {
|
|
|
703
703
|
* </ul>
|
|
704
704
|
* @public
|
|
705
705
|
*/
|
|
706
|
-
managedCredentialsStatus?: ManagedCredentialsStatus;
|
|
706
|
+
managedCredentialsStatus?: ManagedCredentialsStatus | undefined;
|
|
707
707
|
}
|
|
708
708
|
/**
|
|
709
709
|
* @public
|
|
@@ -713,7 +713,7 @@ export interface DescribeEnvironmentsResult {
|
|
|
713
713
|
* <p>Information about the environments that are returned.</p>
|
|
714
714
|
* @public
|
|
715
715
|
*/
|
|
716
|
-
environments?: Environment[];
|
|
716
|
+
environments?: Environment[] | undefined;
|
|
717
717
|
}
|
|
718
718
|
/**
|
|
719
719
|
* @public
|
|
@@ -799,12 +799,12 @@ export interface ListEnvironmentsRequest {
|
|
|
799
799
|
* subsequent next token that is returned, until no more next tokens are returned.</p>
|
|
800
800
|
* @public
|
|
801
801
|
*/
|
|
802
|
-
nextToken?: string;
|
|
802
|
+
nextToken?: string | undefined;
|
|
803
803
|
/**
|
|
804
804
|
* <p>The maximum number of environments to get identifiers for.</p>
|
|
805
805
|
* @public
|
|
806
806
|
*/
|
|
807
|
-
maxResults?: number;
|
|
807
|
+
maxResults?: number | undefined;
|
|
808
808
|
}
|
|
809
809
|
/**
|
|
810
810
|
* @public
|
|
@@ -816,12 +816,12 @@ export interface ListEnvironmentsResult {
|
|
|
816
816
|
* in the list, call this operation again, adding the next token to the call.</p>
|
|
817
817
|
* @public
|
|
818
818
|
*/
|
|
819
|
-
nextToken?: string;
|
|
819
|
+
nextToken?: string | undefined;
|
|
820
820
|
/**
|
|
821
821
|
* <p>The list of environment identifiers.</p>
|
|
822
822
|
* @public
|
|
823
823
|
*/
|
|
824
|
-
environmentIds?: string[];
|
|
824
|
+
environmentIds?: string[] | undefined;
|
|
825
825
|
}
|
|
826
826
|
/**
|
|
827
827
|
* @public
|
|
@@ -842,7 +842,7 @@ export interface ListTagsForResourceResponse {
|
|
|
842
842
|
* <p>The list of tags associated with the Cloud9 development environment.</p>
|
|
843
843
|
* @public
|
|
844
844
|
*/
|
|
845
|
-
Tags?: Tag[];
|
|
845
|
+
Tags?: Tag[] | undefined;
|
|
846
846
|
}
|
|
847
847
|
/**
|
|
848
848
|
* <p>A concurrent access issue occurred.</p>
|
|
@@ -851,8 +851,8 @@ export interface ListTagsForResourceResponse {
|
|
|
851
851
|
export declare class ConcurrentAccessException extends __BaseException {
|
|
852
852
|
readonly name: "ConcurrentAccessException";
|
|
853
853
|
readonly $fault: "client";
|
|
854
|
-
className?: string;
|
|
855
|
-
code?: number;
|
|
854
|
+
className?: string | undefined;
|
|
855
|
+
code?: number | undefined;
|
|
856
856
|
/**
|
|
857
857
|
* @internal
|
|
858
858
|
*/
|
|
@@ -926,12 +926,12 @@ export interface UpdateEnvironmentRequest {
|
|
|
926
926
|
* <p>A replacement name for the environment.</p>
|
|
927
927
|
* @public
|
|
928
928
|
*/
|
|
929
|
-
name?: string;
|
|
929
|
+
name?: string | undefined;
|
|
930
930
|
/**
|
|
931
931
|
* <p>Any new or replacement description for the environment.</p>
|
|
932
932
|
* @public
|
|
933
933
|
*/
|
|
934
|
-
description?: string;
|
|
934
|
+
description?: string | undefined;
|
|
935
935
|
/**
|
|
936
936
|
* <p>Allows the environment owner to turn on or turn off the Amazon Web Services managed temporary
|
|
937
937
|
* credentials for an Cloud9 environment by using one of the following values:</p>
|
|
@@ -953,7 +953,7 @@ export interface UpdateEnvironmentRequest {
|
|
|
953
953
|
* </note>
|
|
954
954
|
* @public
|
|
955
955
|
*/
|
|
956
|
-
managedCredentialsAction?: ManagedCredentialsAction;
|
|
956
|
+
managedCredentialsAction?: ManagedCredentialsAction | undefined;
|
|
957
957
|
}
|
|
958
958
|
/**
|
|
959
959
|
* @public
|
|
@@ -1001,7 +1001,7 @@ export interface UpdateEnvironmentMembershipResult {
|
|
|
1001
1001
|
* <p>Information about the environment member whose settings were changed.</p>
|
|
1002
1002
|
* @public
|
|
1003
1003
|
*/
|
|
1004
|
-
membership?: EnvironmentMember;
|
|
1004
|
+
membership?: EnvironmentMember | undefined;
|
|
1005
1005
|
}
|
|
1006
1006
|
/**
|
|
1007
1007
|
* @internal
|
|
@@ -3,8 +3,8 @@ import { Cloud9ServiceException as __BaseException } from "./Cloud9ServiceExcept
|
|
|
3
3
|
export declare class BadRequestException extends __BaseException {
|
|
4
4
|
readonly name: "BadRequestException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
|
-
className?: string;
|
|
7
|
-
code?: number;
|
|
6
|
+
className?: string | undefined;
|
|
7
|
+
code?: number | undefined;
|
|
8
8
|
constructor(
|
|
9
9
|
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
10
10
|
);
|
|
@@ -12,8 +12,8 @@ export declare class BadRequestException extends __BaseException {
|
|
|
12
12
|
export declare class ConflictException extends __BaseException {
|
|
13
13
|
readonly name: "ConflictException";
|
|
14
14
|
readonly $fault: "client";
|
|
15
|
-
className?: string;
|
|
16
|
-
code?: number;
|
|
15
|
+
className?: string | undefined;
|
|
16
|
+
code?: number | undefined;
|
|
17
17
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
18
18
|
}
|
|
19
19
|
export declare const ConnectionType: {
|
|
@@ -28,32 +28,32 @@ export interface Tag {
|
|
|
28
28
|
}
|
|
29
29
|
export interface CreateEnvironmentEC2Request {
|
|
30
30
|
name: string | undefined;
|
|
31
|
-
description?: string;
|
|
32
|
-
clientRequestToken?: string;
|
|
31
|
+
description?: string | undefined;
|
|
32
|
+
clientRequestToken?: string | undefined;
|
|
33
33
|
instanceType: string | undefined;
|
|
34
|
-
subnetId?: string;
|
|
34
|
+
subnetId?: string | undefined;
|
|
35
35
|
imageId: string | undefined;
|
|
36
|
-
automaticStopTimeMinutes?: number;
|
|
37
|
-
ownerArn?: string;
|
|
38
|
-
tags?: Tag[];
|
|
39
|
-
connectionType?: ConnectionType;
|
|
40
|
-
dryRun?: boolean;
|
|
36
|
+
automaticStopTimeMinutes?: number | undefined;
|
|
37
|
+
ownerArn?: string | undefined;
|
|
38
|
+
tags?: Tag[] | undefined;
|
|
39
|
+
connectionType?: ConnectionType | undefined;
|
|
40
|
+
dryRun?: boolean | undefined;
|
|
41
41
|
}
|
|
42
42
|
export interface CreateEnvironmentEC2Result {
|
|
43
|
-
environmentId?: string;
|
|
43
|
+
environmentId?: string | undefined;
|
|
44
44
|
}
|
|
45
45
|
export declare class ForbiddenException extends __BaseException {
|
|
46
46
|
readonly name: "ForbiddenException";
|
|
47
47
|
readonly $fault: "client";
|
|
48
|
-
className?: string;
|
|
49
|
-
code?: number;
|
|
48
|
+
className?: string | undefined;
|
|
49
|
+
code?: number | undefined;
|
|
50
50
|
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
51
51
|
}
|
|
52
52
|
export declare class InternalServerErrorException extends __BaseException {
|
|
53
53
|
readonly name: "InternalServerErrorException";
|
|
54
54
|
readonly $fault: "server";
|
|
55
|
-
className?: string;
|
|
56
|
-
code?: number;
|
|
55
|
+
className?: string | undefined;
|
|
56
|
+
code?: number | undefined;
|
|
57
57
|
constructor(
|
|
58
58
|
opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
|
|
59
59
|
);
|
|
@@ -61,8 +61,8 @@ export declare class InternalServerErrorException extends __BaseException {
|
|
|
61
61
|
export declare class LimitExceededException extends __BaseException {
|
|
62
62
|
readonly name: "LimitExceededException";
|
|
63
63
|
readonly $fault: "client";
|
|
64
|
-
className?: string;
|
|
65
|
-
code?: number;
|
|
64
|
+
className?: string | undefined;
|
|
65
|
+
code?: number | undefined;
|
|
66
66
|
constructor(
|
|
67
67
|
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
68
68
|
);
|
|
@@ -70,15 +70,15 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
70
70
|
export declare class NotFoundException extends __BaseException {
|
|
71
71
|
readonly name: "NotFoundException";
|
|
72
72
|
readonly $fault: "client";
|
|
73
|
-
className?: string;
|
|
74
|
-
code?: number;
|
|
73
|
+
className?: string | undefined;
|
|
74
|
+
code?: number | undefined;
|
|
75
75
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
76
76
|
}
|
|
77
77
|
export declare class TooManyRequestsException extends __BaseException {
|
|
78
78
|
readonly name: "TooManyRequestsException";
|
|
79
79
|
readonly $fault: "client";
|
|
80
|
-
className?: string;
|
|
81
|
-
code?: number;
|
|
80
|
+
className?: string | undefined;
|
|
81
|
+
code?: number | undefined;
|
|
82
82
|
constructor(
|
|
83
83
|
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
84
84
|
);
|
|
@@ -105,7 +105,7 @@ export interface EnvironmentMember {
|
|
|
105
105
|
userId: string | undefined;
|
|
106
106
|
userArn: string | undefined;
|
|
107
107
|
environmentId: string | undefined;
|
|
108
|
-
lastAccess?: Date;
|
|
108
|
+
lastAccess?: Date | undefined;
|
|
109
109
|
}
|
|
110
110
|
export interface CreateEnvironmentMembershipResult {
|
|
111
111
|
membership: EnvironmentMember | undefined;
|
|
@@ -120,15 +120,15 @@ export interface DeleteEnvironmentMembershipRequest {
|
|
|
120
120
|
}
|
|
121
121
|
export interface DeleteEnvironmentMembershipResult {}
|
|
122
122
|
export interface DescribeEnvironmentMembershipsRequest {
|
|
123
|
-
userArn?: string;
|
|
124
|
-
environmentId?: string;
|
|
125
|
-
permissions?: Permissions[];
|
|
126
|
-
nextToken?: string;
|
|
127
|
-
maxResults?: number;
|
|
123
|
+
userArn?: string | undefined;
|
|
124
|
+
environmentId?: string | undefined;
|
|
125
|
+
permissions?: Permissions[] | undefined;
|
|
126
|
+
nextToken?: string | undefined;
|
|
127
|
+
maxResults?: number | undefined;
|
|
128
128
|
}
|
|
129
129
|
export interface DescribeEnvironmentMembershipsResult {
|
|
130
|
-
memberships?: EnvironmentMember[];
|
|
131
|
-
nextToken?: string;
|
|
130
|
+
memberships?: EnvironmentMember[] | undefined;
|
|
131
|
+
nextToken?: string | undefined;
|
|
132
132
|
}
|
|
133
133
|
export interface DescribeEnvironmentsRequest {
|
|
134
134
|
environmentIds: string[] | undefined;
|
|
@@ -143,9 +143,9 @@ export declare const EnvironmentLifecycleStatus: {
|
|
|
143
143
|
export type EnvironmentLifecycleStatus =
|
|
144
144
|
(typeof EnvironmentLifecycleStatus)[keyof typeof EnvironmentLifecycleStatus];
|
|
145
145
|
export interface EnvironmentLifecycle {
|
|
146
|
-
status?: EnvironmentLifecycleStatus;
|
|
147
|
-
reason?: string;
|
|
148
|
-
failureResource?: string;
|
|
146
|
+
status?: EnvironmentLifecycleStatus | undefined;
|
|
147
|
+
reason?: string | undefined;
|
|
148
|
+
failureResource?: string | undefined;
|
|
149
149
|
}
|
|
150
150
|
export declare const ManagedCredentialsStatus: {
|
|
151
151
|
readonly DISABLED_BY_COLLABORATOR: "DISABLED_BY_COLLABORATOR";
|
|
@@ -169,18 +169,18 @@ export declare const EnvironmentType: {
|
|
|
169
169
|
export type EnvironmentType =
|
|
170
170
|
(typeof EnvironmentType)[keyof typeof EnvironmentType];
|
|
171
171
|
export interface Environment {
|
|
172
|
-
id?: string;
|
|
173
|
-
name?: string;
|
|
174
|
-
description?: string;
|
|
172
|
+
id?: string | undefined;
|
|
173
|
+
name?: string | undefined;
|
|
174
|
+
description?: string | undefined;
|
|
175
175
|
type: EnvironmentType | undefined;
|
|
176
|
-
connectionType?: ConnectionType;
|
|
176
|
+
connectionType?: ConnectionType | undefined;
|
|
177
177
|
arn: string | undefined;
|
|
178
178
|
ownerArn: string | undefined;
|
|
179
|
-
lifecycle?: EnvironmentLifecycle;
|
|
180
|
-
managedCredentialsStatus?: ManagedCredentialsStatus;
|
|
179
|
+
lifecycle?: EnvironmentLifecycle | undefined;
|
|
180
|
+
managedCredentialsStatus?: ManagedCredentialsStatus | undefined;
|
|
181
181
|
}
|
|
182
182
|
export interface DescribeEnvironmentsResult {
|
|
183
|
-
environments?: Environment[];
|
|
183
|
+
environments?: Environment[] | undefined;
|
|
184
184
|
}
|
|
185
185
|
export interface DescribeEnvironmentStatusRequest {
|
|
186
186
|
environmentId: string | undefined;
|
|
@@ -201,24 +201,24 @@ export interface DescribeEnvironmentStatusResult {
|
|
|
201
201
|
message: string | undefined;
|
|
202
202
|
}
|
|
203
203
|
export interface ListEnvironmentsRequest {
|
|
204
|
-
nextToken?: string;
|
|
205
|
-
maxResults?: number;
|
|
204
|
+
nextToken?: string | undefined;
|
|
205
|
+
maxResults?: number | undefined;
|
|
206
206
|
}
|
|
207
207
|
export interface ListEnvironmentsResult {
|
|
208
|
-
nextToken?: string;
|
|
209
|
-
environmentIds?: string[];
|
|
208
|
+
nextToken?: string | undefined;
|
|
209
|
+
environmentIds?: string[] | undefined;
|
|
210
210
|
}
|
|
211
211
|
export interface ListTagsForResourceRequest {
|
|
212
212
|
ResourceARN: string | undefined;
|
|
213
213
|
}
|
|
214
214
|
export interface ListTagsForResourceResponse {
|
|
215
|
-
Tags?: Tag[];
|
|
215
|
+
Tags?: Tag[] | undefined;
|
|
216
216
|
}
|
|
217
217
|
export declare class ConcurrentAccessException extends __BaseException {
|
|
218
218
|
readonly name: "ConcurrentAccessException";
|
|
219
219
|
readonly $fault: "client";
|
|
220
|
-
className?: string;
|
|
221
|
-
code?: number;
|
|
220
|
+
className?: string | undefined;
|
|
221
|
+
code?: number | undefined;
|
|
222
222
|
constructor(
|
|
223
223
|
opts: __ExceptionOptionType<ConcurrentAccessException, __BaseException>
|
|
224
224
|
);
|
|
@@ -241,9 +241,9 @@ export type ManagedCredentialsAction =
|
|
|
241
241
|
(typeof ManagedCredentialsAction)[keyof typeof ManagedCredentialsAction];
|
|
242
242
|
export interface UpdateEnvironmentRequest {
|
|
243
243
|
environmentId: string | undefined;
|
|
244
|
-
name?: string;
|
|
245
|
-
description?: string;
|
|
246
|
-
managedCredentialsAction?: ManagedCredentialsAction;
|
|
244
|
+
name?: string | undefined;
|
|
245
|
+
description?: string | undefined;
|
|
246
|
+
managedCredentialsAction?: ManagedCredentialsAction | undefined;
|
|
247
247
|
}
|
|
248
248
|
export interface UpdateEnvironmentResult {}
|
|
249
249
|
export interface UpdateEnvironmentMembershipRequest {
|
|
@@ -252,7 +252,7 @@ export interface UpdateEnvironmentMembershipRequest {
|
|
|
252
252
|
permissions: MemberPermissions | undefined;
|
|
253
253
|
}
|
|
254
254
|
export interface UpdateEnvironmentMembershipResult {
|
|
255
|
-
membership?: EnvironmentMember;
|
|
255
|
+
membership?: EnvironmentMember | undefined;
|
|
256
256
|
}
|
|
257
257
|
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
258
258
|
export declare const CreateEnvironmentEC2RequestFilterSensitiveLog: (
|
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.692.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-cloud9",
|
|
@@ -20,43 +20,43 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.5.
|
|
38
|
-
"@smithy/fetch-http-handler": "^4.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.2.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.4.
|
|
50
|
-
"@smithy/types": "^3.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.692.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.692.0",
|
|
25
|
+
"@aws-sdk/core": "3.692.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.692.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.692.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.692.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.692.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.692.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.692.0",
|
|
32
|
+
"@aws-sdk/types": "3.692.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.692.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.692.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.692.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.11",
|
|
37
|
+
"@smithy/core": "^2.5.2",
|
|
38
|
+
"@smithy/fetch-http-handler": "^4.1.0",
|
|
39
|
+
"@smithy/hash-node": "^3.0.9",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.9",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.11",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.2.2",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.26",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.9",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.9",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.10",
|
|
47
|
+
"@smithy/node-http-handler": "^3.3.0",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.6",
|
|
49
|
+
"@smithy/smithy-client": "^3.4.3",
|
|
50
|
+
"@smithy/types": "^3.7.0",
|
|
51
|
+
"@smithy/url-parser": "^3.0.9",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.1.
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.26",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.26",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.5",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.9",
|
|
59
|
+
"@smithy/util-retry": "^3.0.9",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|