@aws-sdk/client-cloud9 3.296.0 → 3.297.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/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 -0
- 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/package.json +3 -3
package/dist-types/Cloud9.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
|
|
|
14
14
|
import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from "./commands/UpdateEnvironmentCommand";
|
|
15
15
|
import { UpdateEnvironmentMembershipCommandInput, UpdateEnvironmentMembershipCommandOutput } from "./commands/UpdateEnvironmentMembershipCommand";
|
|
16
16
|
/**
|
|
17
|
+
* @public
|
|
17
18
|
* <fullname>Cloud9</fullname>
|
|
18
19
|
* <p>Cloud9 is a collection of tools that you can use to code, build, run, test, debug, and
|
|
19
20
|
* release software in the cloud.</p>
|
|
@@ -84,6 +85,7 @@ import { UpdateEnvironmentMembershipCommandInput, UpdateEnvironmentMembershipCom
|
|
|
84
85
|
*/
|
|
85
86
|
export declare class Cloud9 extends Cloud9Client {
|
|
86
87
|
/**
|
|
88
|
+
* @public
|
|
87
89
|
* <p>Creates an Cloud9 development environment, launches an Amazon Elastic Compute Cloud (Amazon EC2) instance, and
|
|
88
90
|
* then connects from the instance to the environment.</p>
|
|
89
91
|
*/
|
|
@@ -91,12 +93,14 @@ export declare class Cloud9 extends Cloud9Client {
|
|
|
91
93
|
createEnvironmentEC2(args: CreateEnvironmentEC2CommandInput, cb: (err: any, data?: CreateEnvironmentEC2CommandOutput) => void): void;
|
|
92
94
|
createEnvironmentEC2(args: CreateEnvironmentEC2CommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEnvironmentEC2CommandOutput) => void): void;
|
|
93
95
|
/**
|
|
96
|
+
* @public
|
|
94
97
|
* <p>Adds an environment member to an Cloud9 development environment.</p>
|
|
95
98
|
*/
|
|
96
99
|
createEnvironmentMembership(args: CreateEnvironmentMembershipCommandInput, options?: __HttpHandlerOptions): Promise<CreateEnvironmentMembershipCommandOutput>;
|
|
97
100
|
createEnvironmentMembership(args: CreateEnvironmentMembershipCommandInput, cb: (err: any, data?: CreateEnvironmentMembershipCommandOutput) => void): void;
|
|
98
101
|
createEnvironmentMembership(args: CreateEnvironmentMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEnvironmentMembershipCommandOutput) => void): void;
|
|
99
102
|
/**
|
|
103
|
+
* @public
|
|
100
104
|
* <p>Deletes an Cloud9 development environment. If an Amazon EC2 instance is connected to the
|
|
101
105
|
* environment, also terminates the instance.</p>
|
|
102
106
|
*/
|
|
@@ -104,42 +108,49 @@ export declare class Cloud9 extends Cloud9Client {
|
|
|
104
108
|
deleteEnvironment(args: DeleteEnvironmentCommandInput, cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void): void;
|
|
105
109
|
deleteEnvironment(args: DeleteEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void): void;
|
|
106
110
|
/**
|
|
111
|
+
* @public
|
|
107
112
|
* <p>Deletes an environment member from a development environment.</p>
|
|
108
113
|
*/
|
|
109
114
|
deleteEnvironmentMembership(args: DeleteEnvironmentMembershipCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEnvironmentMembershipCommandOutput>;
|
|
110
115
|
deleteEnvironmentMembership(args: DeleteEnvironmentMembershipCommandInput, cb: (err: any, data?: DeleteEnvironmentMembershipCommandOutput) => void): void;
|
|
111
116
|
deleteEnvironmentMembership(args: DeleteEnvironmentMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEnvironmentMembershipCommandOutput) => void): void;
|
|
112
117
|
/**
|
|
118
|
+
* @public
|
|
113
119
|
* <p>Gets information about environment members for an Cloud9 development environment.</p>
|
|
114
120
|
*/
|
|
115
121
|
describeEnvironmentMemberships(args: DescribeEnvironmentMembershipsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEnvironmentMembershipsCommandOutput>;
|
|
116
122
|
describeEnvironmentMemberships(args: DescribeEnvironmentMembershipsCommandInput, cb: (err: any, data?: DescribeEnvironmentMembershipsCommandOutput) => void): void;
|
|
117
123
|
describeEnvironmentMemberships(args: DescribeEnvironmentMembershipsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEnvironmentMembershipsCommandOutput) => void): void;
|
|
118
124
|
/**
|
|
125
|
+
* @public
|
|
119
126
|
* <p>Gets information about Cloud9 development environments.</p>
|
|
120
127
|
*/
|
|
121
128
|
describeEnvironments(args: DescribeEnvironmentsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEnvironmentsCommandOutput>;
|
|
122
129
|
describeEnvironments(args: DescribeEnvironmentsCommandInput, cb: (err: any, data?: DescribeEnvironmentsCommandOutput) => void): void;
|
|
123
130
|
describeEnvironments(args: DescribeEnvironmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEnvironmentsCommandOutput) => void): void;
|
|
124
131
|
/**
|
|
132
|
+
* @public
|
|
125
133
|
* <p>Gets status information for an Cloud9 development environment.</p>
|
|
126
134
|
*/
|
|
127
135
|
describeEnvironmentStatus(args: DescribeEnvironmentStatusCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEnvironmentStatusCommandOutput>;
|
|
128
136
|
describeEnvironmentStatus(args: DescribeEnvironmentStatusCommandInput, cb: (err: any, data?: DescribeEnvironmentStatusCommandOutput) => void): void;
|
|
129
137
|
describeEnvironmentStatus(args: DescribeEnvironmentStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEnvironmentStatusCommandOutput) => void): void;
|
|
130
138
|
/**
|
|
139
|
+
* @public
|
|
131
140
|
* <p>Gets a list of Cloud9 development environment identifiers.</p>
|
|
132
141
|
*/
|
|
133
142
|
listEnvironments(args: ListEnvironmentsCommandInput, options?: __HttpHandlerOptions): Promise<ListEnvironmentsCommandOutput>;
|
|
134
143
|
listEnvironments(args: ListEnvironmentsCommandInput, cb: (err: any, data?: ListEnvironmentsCommandOutput) => void): void;
|
|
135
144
|
listEnvironments(args: ListEnvironmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEnvironmentsCommandOutput) => void): void;
|
|
136
145
|
/**
|
|
146
|
+
* @public
|
|
137
147
|
* <p>Gets a list of the tags associated with an Cloud9 development environment.</p>
|
|
138
148
|
*/
|
|
139
149
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
140
150
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
141
151
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
142
152
|
/**
|
|
153
|
+
* @public
|
|
143
154
|
* <p>Adds tags to an Cloud9 development environment.</p>
|
|
144
155
|
* <important>
|
|
145
156
|
* <p>Tags that you add to an Cloud9 environment by using this method will NOT be
|
|
@@ -150,18 +161,21 @@ export declare class Cloud9 extends Cloud9Client {
|
|
|
150
161
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
151
162
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
152
163
|
/**
|
|
164
|
+
* @public
|
|
153
165
|
* <p>Removes tags from an Cloud9 development environment.</p>
|
|
154
166
|
*/
|
|
155
167
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
156
168
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
157
169
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
158
170
|
/**
|
|
171
|
+
* @public
|
|
159
172
|
* <p>Changes the settings of an existing Cloud9 development environment.</p>
|
|
160
173
|
*/
|
|
161
174
|
updateEnvironment(args: UpdateEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEnvironmentCommandOutput>;
|
|
162
175
|
updateEnvironment(args: UpdateEnvironmentCommandInput, cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void): void;
|
|
163
176
|
updateEnvironment(args: UpdateEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void): void;
|
|
164
177
|
/**
|
|
178
|
+
* @public
|
|
165
179
|
* <p>Changes the settings of an existing environment member for an Cloud9 development
|
|
166
180
|
* environment.</p>
|
|
167
181
|
*/
|
|
@@ -21,15 +21,24 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
|
|
|
21
21
|
import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from "./commands/UpdateEnvironmentCommand";
|
|
22
22
|
import { UpdateEnvironmentMembershipCommandInput, UpdateEnvironmentMembershipCommandOutput } from "./commands/UpdateEnvironmentMembershipCommand";
|
|
23
23
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
24
27
|
export type ServiceInputTypes = CreateEnvironmentEC2CommandInput | CreateEnvironmentMembershipCommandInput | DeleteEnvironmentCommandInput | DeleteEnvironmentMembershipCommandInput | DescribeEnvironmentMembershipsCommandInput | DescribeEnvironmentStatusCommandInput | DescribeEnvironmentsCommandInput | ListEnvironmentsCommandInput | ListTagsForResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateEnvironmentCommandInput | UpdateEnvironmentMembershipCommandInput;
|
|
28
|
+
/**
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
25
31
|
export type ServiceOutputTypes = CreateEnvironmentEC2CommandOutput | CreateEnvironmentMembershipCommandOutput | DeleteEnvironmentCommandOutput | DeleteEnvironmentMembershipCommandOutput | DescribeEnvironmentMembershipsCommandOutput | DescribeEnvironmentStatusCommandOutput | DescribeEnvironmentsCommandOutput | ListEnvironmentsCommandOutput | ListTagsForResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateEnvironmentCommandOutput | UpdateEnvironmentMembershipCommandOutput;
|
|
32
|
+
/**
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
26
35
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
27
36
|
/**
|
|
28
37
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
29
38
|
*/
|
|
30
39
|
requestHandler?: __HttpHandler;
|
|
31
40
|
/**
|
|
32
|
-
* A constructor for a class implementing the {@link
|
|
41
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
33
42
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
34
43
|
* @internal
|
|
35
44
|
*/
|
|
@@ -119,23 +128,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
119
128
|
*/
|
|
120
129
|
logger?: __Logger;
|
|
121
130
|
/**
|
|
122
|
-
* The {@link
|
|
131
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
123
132
|
*/
|
|
124
133
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
125
134
|
}
|
|
135
|
+
/**
|
|
136
|
+
* @public
|
|
137
|
+
*/
|
|
126
138
|
type Cloud9ClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
127
139
|
/**
|
|
128
|
-
*
|
|
140
|
+
* @public
|
|
141
|
+
*
|
|
142
|
+
* The configuration interface of Cloud9Client class constructor that set the region, credentials and other options.
|
|
129
143
|
*/
|
|
130
144
|
export interface Cloud9ClientConfig extends Cloud9ClientConfigType {
|
|
131
145
|
}
|
|
146
|
+
/**
|
|
147
|
+
* @public
|
|
148
|
+
*/
|
|
132
149
|
type Cloud9ClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
133
150
|
/**
|
|
134
|
-
*
|
|
151
|
+
* @public
|
|
152
|
+
*
|
|
153
|
+
* The resolved configuration interface of Cloud9Client class. This is resolved and normalized from the {@link Cloud9ClientConfig | constructor configuration interface}.
|
|
135
154
|
*/
|
|
136
155
|
export interface Cloud9ClientResolvedConfig extends Cloud9ClientResolvedConfigType {
|
|
137
156
|
}
|
|
138
157
|
/**
|
|
158
|
+
* @public
|
|
139
159
|
* <fullname>Cloud9</fullname>
|
|
140
160
|
* <p>Cloud9 is a collection of tools that you can use to code, build, run, test, debug, and
|
|
141
161
|
* release software in the cloud.</p>
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client";
|
|
5
5
|
import { CreateEnvironmentEC2Request, CreateEnvironmentEC2Result } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateEnvironmentEC2Command}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateEnvironmentEC2CommandInput extends CreateEnvironmentEC2Request {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateEnvironmentEC2Command}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateEnvironmentEC2CommandOutput extends CreateEnvironmentEC2Result, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an Cloud9 development environment, launches an Amazon Elastic Compute Cloud (Amazon EC2) instance, and
|
|
18
23
|
* then connects from the instance to the environment.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface CreateEnvironmentEC2CommandOutput extends CreateEnvironmentEC2R
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param CreateEnvironmentEC2CommandInput - {@link CreateEnvironmentEC2CommandInput}
|
|
35
|
+
* @returns {@link CreateEnvironmentEC2CommandOutput}
|
|
29
36
|
* @see {@link CreateEnvironmentEC2CommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link CreateEnvironmentEC2CommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link Cloud9ClientResolvedConfig | config} for Cloud9Client's `config` shape.
|
|
@@ -77,11 +84,20 @@ export interface CreateEnvironmentEC2CommandOutput extends CreateEnvironmentEC2R
|
|
|
77
84
|
export declare class CreateEnvironmentEC2Command extends $Command<CreateEnvironmentEC2CommandInput, CreateEnvironmentEC2CommandOutput, Cloud9ClientResolvedConfig> {
|
|
78
85
|
readonly input: CreateEnvironmentEC2CommandInput;
|
|
79
86
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
87
|
+
/**
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
80
90
|
constructor(input: CreateEnvironmentEC2CommandInput);
|
|
81
91
|
/**
|
|
82
92
|
* @internal
|
|
83
93
|
*/
|
|
84
94
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Cloud9ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateEnvironmentEC2CommandInput, CreateEnvironmentEC2CommandOutput>;
|
|
95
|
+
/**
|
|
96
|
+
* @internal
|
|
97
|
+
*/
|
|
85
98
|
private serialize;
|
|
99
|
+
/**
|
|
100
|
+
* @internal
|
|
101
|
+
*/
|
|
86
102
|
private deserialize;
|
|
87
103
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client";
|
|
5
5
|
import { CreateEnvironmentMembershipRequest, CreateEnvironmentMembershipResult } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateEnvironmentMembershipCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateEnvironmentMembershipCommandInput extends CreateEnvironmentMembershipRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateEnvironmentMembershipCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateEnvironmentMembershipCommandOutput extends CreateEnvironmentMembershipResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds an environment member to an Cloud9 development environment.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateEnvironmentMembershipCommandOutput extends CreateEnvironm
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateEnvironmentMembershipCommandInput - {@link CreateEnvironmentMembershipCommandInput}
|
|
34
|
+
* @returns {@link CreateEnvironmentMembershipCommandOutput}
|
|
28
35
|
* @see {@link CreateEnvironmentMembershipCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateEnvironmentMembershipCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link Cloud9ClientResolvedConfig | config} for Cloud9Client's `config` shape.
|
|
@@ -78,11 +85,20 @@ export interface CreateEnvironmentMembershipCommandOutput extends CreateEnvironm
|
|
|
78
85
|
export declare class CreateEnvironmentMembershipCommand extends $Command<CreateEnvironmentMembershipCommandInput, CreateEnvironmentMembershipCommandOutput, Cloud9ClientResolvedConfig> {
|
|
79
86
|
readonly input: CreateEnvironmentMembershipCommandInput;
|
|
80
87
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
88
|
+
/**
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
81
91
|
constructor(input: CreateEnvironmentMembershipCommandInput);
|
|
82
92
|
/**
|
|
83
93
|
* @internal
|
|
84
94
|
*/
|
|
85
95
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Cloud9ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateEnvironmentMembershipCommandInput, CreateEnvironmentMembershipCommandOutput>;
|
|
96
|
+
/**
|
|
97
|
+
* @internal
|
|
98
|
+
*/
|
|
86
99
|
private serialize;
|
|
100
|
+
/**
|
|
101
|
+
* @internal
|
|
102
|
+
*/
|
|
87
103
|
private deserialize;
|
|
88
104
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client";
|
|
5
5
|
import { DeleteEnvironmentRequest, DeleteEnvironmentResult } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteEnvironmentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteEnvironmentCommandInput extends DeleteEnvironmentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteEnvironmentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteEnvironmentCommandOutput extends DeleteEnvironmentResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes an Cloud9 development environment. If an Amazon EC2 instance is connected to the
|
|
18
23
|
* environment, also terminates the instance.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeleteEnvironmentCommandOutput extends DeleteEnvironmentResult,
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeleteEnvironmentCommandInput - {@link DeleteEnvironmentCommandInput}
|
|
35
|
+
* @returns {@link DeleteEnvironmentCommandOutput}
|
|
29
36
|
* @see {@link DeleteEnvironmentCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeleteEnvironmentCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link Cloud9ClientResolvedConfig | config} for Cloud9Client's `config` shape.
|
|
@@ -67,11 +74,20 @@ export interface DeleteEnvironmentCommandOutput extends DeleteEnvironmentResult,
|
|
|
67
74
|
export declare class DeleteEnvironmentCommand extends $Command<DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput, Cloud9ClientResolvedConfig> {
|
|
68
75
|
readonly input: DeleteEnvironmentCommandInput;
|
|
69
76
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
77
|
+
/**
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
70
80
|
constructor(input: DeleteEnvironmentCommandInput);
|
|
71
81
|
/**
|
|
72
82
|
* @internal
|
|
73
83
|
*/
|
|
74
84
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Cloud9ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput>;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
75
88
|
private serialize;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
76
92
|
private deserialize;
|
|
77
93
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client";
|
|
5
5
|
import { DeleteEnvironmentMembershipRequest, DeleteEnvironmentMembershipResult } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteEnvironmentMembershipCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteEnvironmentMembershipCommandInput extends DeleteEnvironmentMembershipRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteEnvironmentMembershipCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteEnvironmentMembershipCommandOutput extends DeleteEnvironmentMembershipResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes an environment member from a development environment.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteEnvironmentMembershipCommandOutput extends DeleteEnvironm
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteEnvironmentMembershipCommandInput - {@link DeleteEnvironmentMembershipCommandInput}
|
|
34
|
+
* @returns {@link DeleteEnvironmentMembershipCommandOutput}
|
|
28
35
|
* @see {@link DeleteEnvironmentMembershipCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteEnvironmentMembershipCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link Cloud9ClientResolvedConfig | config} for Cloud9Client's `config` shape.
|
|
@@ -67,11 +74,20 @@ export interface DeleteEnvironmentMembershipCommandOutput extends DeleteEnvironm
|
|
|
67
74
|
export declare class DeleteEnvironmentMembershipCommand extends $Command<DeleteEnvironmentMembershipCommandInput, DeleteEnvironmentMembershipCommandOutput, Cloud9ClientResolvedConfig> {
|
|
68
75
|
readonly input: DeleteEnvironmentMembershipCommandInput;
|
|
69
76
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
77
|
+
/**
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
70
80
|
constructor(input: DeleteEnvironmentMembershipCommandInput);
|
|
71
81
|
/**
|
|
72
82
|
* @internal
|
|
73
83
|
*/
|
|
74
84
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Cloud9ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteEnvironmentMembershipCommandInput, DeleteEnvironmentMembershipCommandOutput>;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
75
88
|
private serialize;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
76
92
|
private deserialize;
|
|
77
93
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client";
|
|
5
5
|
import { DescribeEnvironmentMembershipsRequest, DescribeEnvironmentMembershipsResult } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeEnvironmentMembershipsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeEnvironmentMembershipsCommandInput extends DescribeEnvironmentMembershipsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeEnvironmentMembershipsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeEnvironmentMembershipsCommandOutput extends DescribeEnvironmentMembershipsResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets information about environment members for an Cloud9 development environment.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeEnvironmentMembershipsCommandOutput extends DescribeEnv
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeEnvironmentMembershipsCommandInput - {@link DescribeEnvironmentMembershipsCommandInput}
|
|
34
|
+
* @returns {@link DescribeEnvironmentMembershipsCommandOutput}
|
|
28
35
|
* @see {@link DescribeEnvironmentMembershipsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeEnvironmentMembershipsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link Cloud9ClientResolvedConfig | config} for Cloud9Client's `config` shape.
|
|
@@ -141,11 +148,20 @@ export interface DescribeEnvironmentMembershipsCommandOutput extends DescribeEnv
|
|
|
141
148
|
export declare class DescribeEnvironmentMembershipsCommand extends $Command<DescribeEnvironmentMembershipsCommandInput, DescribeEnvironmentMembershipsCommandOutput, Cloud9ClientResolvedConfig> {
|
|
142
149
|
readonly input: DescribeEnvironmentMembershipsCommandInput;
|
|
143
150
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
151
|
+
/**
|
|
152
|
+
* @public
|
|
153
|
+
*/
|
|
144
154
|
constructor(input: DescribeEnvironmentMembershipsCommandInput);
|
|
145
155
|
/**
|
|
146
156
|
* @internal
|
|
147
157
|
*/
|
|
148
158
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Cloud9ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeEnvironmentMembershipsCommandInput, DescribeEnvironmentMembershipsCommandOutput>;
|
|
159
|
+
/**
|
|
160
|
+
* @internal
|
|
161
|
+
*/
|
|
149
162
|
private serialize;
|
|
163
|
+
/**
|
|
164
|
+
* @internal
|
|
165
|
+
*/
|
|
150
166
|
private deserialize;
|
|
151
167
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client";
|
|
5
5
|
import { DescribeEnvironmentStatusRequest, DescribeEnvironmentStatusResult } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeEnvironmentStatusCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeEnvironmentStatusCommandInput extends DescribeEnvironmentStatusRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeEnvironmentStatusCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeEnvironmentStatusCommandOutput extends DescribeEnvironmentStatusResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets status information for an Cloud9 development environment.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeEnvironmentStatusCommandOutput extends DescribeEnvironm
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeEnvironmentStatusCommandInput - {@link DescribeEnvironmentStatusCommandInput}
|
|
34
|
+
* @returns {@link DescribeEnvironmentStatusCommandOutput}
|
|
28
35
|
* @see {@link DescribeEnvironmentStatusCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeEnvironmentStatusCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link Cloud9ClientResolvedConfig | config} for Cloud9Client's `config` shape.
|
|
@@ -72,11 +79,20 @@ export interface DescribeEnvironmentStatusCommandOutput extends DescribeEnvironm
|
|
|
72
79
|
export declare class DescribeEnvironmentStatusCommand extends $Command<DescribeEnvironmentStatusCommandInput, DescribeEnvironmentStatusCommandOutput, Cloud9ClientResolvedConfig> {
|
|
73
80
|
readonly input: DescribeEnvironmentStatusCommandInput;
|
|
74
81
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
82
|
+
/**
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
75
85
|
constructor(input: DescribeEnvironmentStatusCommandInput);
|
|
76
86
|
/**
|
|
77
87
|
* @internal
|
|
78
88
|
*/
|
|
79
89
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Cloud9ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeEnvironmentStatusCommandInput, DescribeEnvironmentStatusCommandOutput>;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
80
93
|
private serialize;
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
81
97
|
private deserialize;
|
|
82
98
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client";
|
|
5
5
|
import { DescribeEnvironmentsRequest, DescribeEnvironmentsResult } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeEnvironmentsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeEnvironmentsCommandInput extends DescribeEnvironmentsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeEnvironmentsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeEnvironmentsCommandOutput extends DescribeEnvironmentsResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets information about Cloud9 development environments.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeEnvironmentsCommandOutput extends DescribeEnvironmentsR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeEnvironmentsCommandInput - {@link DescribeEnvironmentsCommandInput}
|
|
34
|
+
* @returns {@link DescribeEnvironmentsCommandOutput}
|
|
28
35
|
* @see {@link DescribeEnvironmentsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeEnvironmentsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link Cloud9ClientResolvedConfig | config} for Cloud9Client's `config` shape.
|
|
@@ -97,11 +104,20 @@ export interface DescribeEnvironmentsCommandOutput extends DescribeEnvironmentsR
|
|
|
97
104
|
export declare class DescribeEnvironmentsCommand extends $Command<DescribeEnvironmentsCommandInput, DescribeEnvironmentsCommandOutput, Cloud9ClientResolvedConfig> {
|
|
98
105
|
readonly input: DescribeEnvironmentsCommandInput;
|
|
99
106
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
107
|
+
/**
|
|
108
|
+
* @public
|
|
109
|
+
*/
|
|
100
110
|
constructor(input: DescribeEnvironmentsCommandInput);
|
|
101
111
|
/**
|
|
102
112
|
* @internal
|
|
103
113
|
*/
|
|
104
114
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Cloud9ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeEnvironmentsCommandInput, DescribeEnvironmentsCommandOutput>;
|
|
115
|
+
/**
|
|
116
|
+
* @internal
|
|
117
|
+
*/
|
|
105
118
|
private serialize;
|
|
119
|
+
/**
|
|
120
|
+
* @internal
|
|
121
|
+
*/
|
|
106
122
|
private deserialize;
|
|
107
123
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client";
|
|
5
5
|
import { ListEnvironmentsRequest, ListEnvironmentsResult } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListEnvironmentsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListEnvironmentsCommandInput extends ListEnvironmentsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListEnvironmentsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListEnvironmentsCommandOutput extends ListEnvironmentsResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets a list of Cloud9 development environment identifiers.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListEnvironmentsCommandOutput extends ListEnvironmentsResult, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListEnvironmentsCommandInput - {@link ListEnvironmentsCommandInput}
|
|
34
|
+
* @returns {@link ListEnvironmentsCommandOutput}
|
|
28
35
|
* @see {@link ListEnvironmentsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListEnvironmentsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link Cloud9ClientResolvedConfig | config} for Cloud9Client's `config` shape.
|
|
@@ -72,11 +79,20 @@ export interface ListEnvironmentsCommandOutput extends ListEnvironmentsResult, _
|
|
|
72
79
|
export declare class ListEnvironmentsCommand extends $Command<ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput, Cloud9ClientResolvedConfig> {
|
|
73
80
|
readonly input: ListEnvironmentsCommandInput;
|
|
74
81
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
82
|
+
/**
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
75
85
|
constructor(input: ListEnvironmentsCommandInput);
|
|
76
86
|
/**
|
|
77
87
|
* @internal
|
|
78
88
|
*/
|
|
79
89
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Cloud9ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput>;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
80
93
|
private serialize;
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
81
97
|
private deserialize;
|
|
82
98
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client";
|
|
5
5
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets a list of the tags associated with an Cloud9 development environment.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
34
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
28
35
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link Cloud9ClientResolvedConfig | config} for Cloud9Client's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
43
50
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, Cloud9ClientResolvedConfig> {
|
|
44
51
|
readonly input: ListTagsForResourceCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: ListTagsForResourceCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Cloud9ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client";
|
|
5
5
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds tags to an Cloud9 development environment.</p>
|
|
18
23
|
* <important>
|
|
19
24
|
* <p>Tags that you add to an Cloud9 environment by using this method will NOT be
|
|
@@ -29,6 +34,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
38
|
+
* @returns {@link TagResourceCommandOutput}
|
|
32
39
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link Cloud9ClientResolvedConfig | config} for Cloud9Client's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
50
57
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, Cloud9ClientResolvedConfig> {
|
|
51
58
|
readonly input: TagResourceCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: TagResourceCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Cloud9ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client";
|
|
5
5
|
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes tags from an Cloud9 development environment.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
34
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
28
35
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link Cloud9ClientResolvedConfig | config} for Cloud9Client's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
46
53
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, Cloud9ClientResolvedConfig> {
|
|
47
54
|
readonly input: UntagResourceCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: UntagResourceCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Cloud9ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client";
|
|
5
5
|
import { UpdateEnvironmentRequest, UpdateEnvironmentResult } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateEnvironmentCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateEnvironmentCommandInput extends UpdateEnvironmentRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateEnvironmentCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateEnvironmentCommandOutput extends UpdateEnvironmentResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Changes the settings of an existing Cloud9 development environment.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UpdateEnvironmentCommandOutput extends UpdateEnvironmentResult,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateEnvironmentCommandInput - {@link UpdateEnvironmentCommandInput}
|
|
34
|
+
* @returns {@link UpdateEnvironmentCommandOutput}
|
|
28
35
|
* @see {@link UpdateEnvironmentCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateEnvironmentCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link Cloud9ClientResolvedConfig | config} for Cloud9Client's `config` shape.
|
|
@@ -68,11 +75,20 @@ export interface UpdateEnvironmentCommandOutput extends UpdateEnvironmentResult,
|
|
|
68
75
|
export declare class UpdateEnvironmentCommand extends $Command<UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput, Cloud9ClientResolvedConfig> {
|
|
69
76
|
readonly input: UpdateEnvironmentCommandInput;
|
|
70
77
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
71
81
|
constructor(input: UpdateEnvironmentCommandInput);
|
|
72
82
|
/**
|
|
73
83
|
* @internal
|
|
74
84
|
*/
|
|
75
85
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Cloud9ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput>;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
76
89
|
private serialize;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
77
93
|
private deserialize;
|
|
78
94
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client";
|
|
5
5
|
import { UpdateEnvironmentMembershipRequest, UpdateEnvironmentMembershipResult } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateEnvironmentMembershipCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateEnvironmentMembershipCommandInput extends UpdateEnvironmentMembershipRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateEnvironmentMembershipCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateEnvironmentMembershipCommandOutput extends UpdateEnvironmentMembershipResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Changes the settings of an existing environment member for an Cloud9 development
|
|
18
23
|
* environment.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface UpdateEnvironmentMembershipCommandOutput extends UpdateEnvironm
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param UpdateEnvironmentMembershipCommandInput - {@link UpdateEnvironmentMembershipCommandInput}
|
|
35
|
+
* @returns {@link UpdateEnvironmentMembershipCommandOutput}
|
|
29
36
|
* @see {@link UpdateEnvironmentMembershipCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link UpdateEnvironmentMembershipCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link Cloud9ClientResolvedConfig | config} for Cloud9Client's `config` shape.
|
|
@@ -79,11 +86,20 @@ export interface UpdateEnvironmentMembershipCommandOutput extends UpdateEnvironm
|
|
|
79
86
|
export declare class UpdateEnvironmentMembershipCommand extends $Command<UpdateEnvironmentMembershipCommandInput, UpdateEnvironmentMembershipCommandOutput, Cloud9ClientResolvedConfig> {
|
|
80
87
|
readonly input: UpdateEnvironmentMembershipCommandInput;
|
|
81
88
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
89
|
+
/**
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
82
92
|
constructor(input: UpdateEnvironmentMembershipCommandInput);
|
|
83
93
|
/**
|
|
84
94
|
* @internal
|
|
85
95
|
*/
|
|
86
96
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: Cloud9ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateEnvironmentMembershipCommandInput, UpdateEnvironmentMembershipCommandOutput>;
|
|
97
|
+
/**
|
|
98
|
+
* @internal
|
|
99
|
+
*/
|
|
87
100
|
private serialize;
|
|
101
|
+
/**
|
|
102
|
+
* @internal
|
|
103
|
+
*/
|
|
88
104
|
private deserialize;
|
|
89
105
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from Cloud9 service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class Cloud9ServiceException extends __ServiceException {
|
|
@@ -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>
|
|
@@ -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>;
|
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.297.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",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.297.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.297.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.296.0",
|