@aws-sdk/client-cloud9 3.295.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 +29 -29
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
|
}
|