@aws-sdk/client-cloud9 3.169.0 → 3.170.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.
Files changed (32) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/Cloud9.d.ts +238 -70
  3. package/dist-types/ts3.4/Cloud9Client.d.ts +207 -86
  4. package/dist-types/ts3.4/commands/CreateEnvironmentEC2Command.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/CreateEnvironmentMembershipCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +38 -17
  7. package/dist-types/ts3.4/commands/DeleteEnvironmentMembershipCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/DescribeEnvironmentMembershipsCommand.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/DescribeEnvironmentStatusCommand.d.ts +41 -17
  10. package/dist-types/ts3.4/commands/DescribeEnvironmentsCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +37 -17
  12. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  13. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  15. package/dist-types/ts3.4/commands/UpdateEnvironmentCommand.d.ts +38 -17
  16. package/dist-types/ts3.4/commands/UpdateEnvironmentMembershipCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/index.d.ts +13 -13
  18. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  19. package/dist-types/ts3.4/index.d.ts +6 -6
  20. package/dist-types/ts3.4/models/Cloud9ServiceException.d.ts +8 -6
  21. package/dist-types/ts3.4/models/index.d.ts +1 -1
  22. package/dist-types/ts3.4/models/models_0.d.ts +420 -384
  23. package/dist-types/ts3.4/pagination/DescribeEnvironmentMembershipsPaginator.d.ts +11 -4
  24. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  25. package/dist-types/ts3.4/pagination/ListEnvironmentsPaginator.d.ts +11 -4
  26. package/dist-types/ts3.4/pagination/index.d.ts +3 -3
  27. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +161 -41
  28. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  29. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  30. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  31. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  32. package/package.json +34 -34
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-cloud9
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
7
15
 
8
16
  **Note:** Version bump only for package @aws-sdk/client-cloud9
@@ -1,70 +1,238 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { Cloud9Client } from "./Cloud9Client";
3
- import { CreateEnvironmentEC2CommandInput, CreateEnvironmentEC2CommandOutput } from "./commands/CreateEnvironmentEC2Command";
4
- import { CreateEnvironmentMembershipCommandInput, CreateEnvironmentMembershipCommandOutput } from "./commands/CreateEnvironmentMembershipCommand";
5
- import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "./commands/DeleteEnvironmentCommand";
6
- import { DeleteEnvironmentMembershipCommandInput, DeleteEnvironmentMembershipCommandOutput } from "./commands/DeleteEnvironmentMembershipCommand";
7
- import { DescribeEnvironmentMembershipsCommandInput, DescribeEnvironmentMembershipsCommandOutput } from "./commands/DescribeEnvironmentMembershipsCommand";
8
- import { DescribeEnvironmentsCommandInput, DescribeEnvironmentsCommandOutput } from "./commands/DescribeEnvironmentsCommand";
9
- import { DescribeEnvironmentStatusCommandInput, DescribeEnvironmentStatusCommandOutput } from "./commands/DescribeEnvironmentStatusCommand";
10
- import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "./commands/ListEnvironmentsCommand";
11
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
12
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
13
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
14
- import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from "./commands/UpdateEnvironmentCommand";
15
- import { UpdateEnvironmentMembershipCommandInput, UpdateEnvironmentMembershipCommandOutput } from "./commands/UpdateEnvironmentMembershipCommand";
16
-
17
- export declare class Cloud9 extends Cloud9Client {
18
-
19
- createEnvironmentEC2(args: CreateEnvironmentEC2CommandInput, options?: __HttpHandlerOptions): Promise<CreateEnvironmentEC2CommandOutput>;
20
- createEnvironmentEC2(args: CreateEnvironmentEC2CommandInput, cb: (err: any, data?: CreateEnvironmentEC2CommandOutput) => void): void;
21
- createEnvironmentEC2(args: CreateEnvironmentEC2CommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEnvironmentEC2CommandOutput) => void): void;
22
-
23
- createEnvironmentMembership(args: CreateEnvironmentMembershipCommandInput, options?: __HttpHandlerOptions): Promise<CreateEnvironmentMembershipCommandOutput>;
24
- createEnvironmentMembership(args: CreateEnvironmentMembershipCommandInput, cb: (err: any, data?: CreateEnvironmentMembershipCommandOutput) => void): void;
25
- createEnvironmentMembership(args: CreateEnvironmentMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEnvironmentMembershipCommandOutput) => void): void;
26
-
27
- deleteEnvironment(args: DeleteEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEnvironmentCommandOutput>;
28
- deleteEnvironment(args: DeleteEnvironmentCommandInput, cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void): void;
29
- deleteEnvironment(args: DeleteEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void): void;
30
-
31
- deleteEnvironmentMembership(args: DeleteEnvironmentMembershipCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEnvironmentMembershipCommandOutput>;
32
- deleteEnvironmentMembership(args: DeleteEnvironmentMembershipCommandInput, cb: (err: any, data?: DeleteEnvironmentMembershipCommandOutput) => void): void;
33
- deleteEnvironmentMembership(args: DeleteEnvironmentMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEnvironmentMembershipCommandOutput) => void): void;
34
-
35
- describeEnvironmentMemberships(args: DescribeEnvironmentMembershipsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEnvironmentMembershipsCommandOutput>;
36
- describeEnvironmentMemberships(args: DescribeEnvironmentMembershipsCommandInput, cb: (err: any, data?: DescribeEnvironmentMembershipsCommandOutput) => void): void;
37
- describeEnvironmentMemberships(args: DescribeEnvironmentMembershipsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEnvironmentMembershipsCommandOutput) => void): void;
38
-
39
- describeEnvironments(args: DescribeEnvironmentsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEnvironmentsCommandOutput>;
40
- describeEnvironments(args: DescribeEnvironmentsCommandInput, cb: (err: any, data?: DescribeEnvironmentsCommandOutput) => void): void;
41
- describeEnvironments(args: DescribeEnvironmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEnvironmentsCommandOutput) => void): void;
42
-
43
- describeEnvironmentStatus(args: DescribeEnvironmentStatusCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEnvironmentStatusCommandOutput>;
44
- describeEnvironmentStatus(args: DescribeEnvironmentStatusCommandInput, cb: (err: any, data?: DescribeEnvironmentStatusCommandOutput) => void): void;
45
- describeEnvironmentStatus(args: DescribeEnvironmentStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEnvironmentStatusCommandOutput) => void): void;
46
-
47
- listEnvironments(args: ListEnvironmentsCommandInput, options?: __HttpHandlerOptions): Promise<ListEnvironmentsCommandOutput>;
48
- listEnvironments(args: ListEnvironmentsCommandInput, cb: (err: any, data?: ListEnvironmentsCommandOutput) => void): void;
49
- listEnvironments(args: ListEnvironmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEnvironmentsCommandOutput) => void): void;
50
-
51
- listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
52
- listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
53
- listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
54
-
55
- tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
56
- tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
57
- tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
58
-
59
- untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
60
- untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
61
- untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
62
-
63
- updateEnvironment(args: UpdateEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEnvironmentCommandOutput>;
64
- updateEnvironment(args: UpdateEnvironmentCommandInput, cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void): void;
65
- updateEnvironment(args: UpdateEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void): void;
66
-
67
- updateEnvironmentMembership(args: UpdateEnvironmentMembershipCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEnvironmentMembershipCommandOutput>;
68
- updateEnvironmentMembership(args: UpdateEnvironmentMembershipCommandInput, cb: (err: any, data?: UpdateEnvironmentMembershipCommandOutput) => void): void;
69
- updateEnvironmentMembership(args: UpdateEnvironmentMembershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEnvironmentMembershipCommandOutput) => void): void;
70
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { Cloud9Client } from "./Cloud9Client";
3
+ import {
4
+ CreateEnvironmentEC2CommandInput,
5
+ CreateEnvironmentEC2CommandOutput,
6
+ } from "./commands/CreateEnvironmentEC2Command";
7
+ import {
8
+ CreateEnvironmentMembershipCommandInput,
9
+ CreateEnvironmentMembershipCommandOutput,
10
+ } from "./commands/CreateEnvironmentMembershipCommand";
11
+ import {
12
+ DeleteEnvironmentCommandInput,
13
+ DeleteEnvironmentCommandOutput,
14
+ } from "./commands/DeleteEnvironmentCommand";
15
+ import {
16
+ DeleteEnvironmentMembershipCommandInput,
17
+ DeleteEnvironmentMembershipCommandOutput,
18
+ } from "./commands/DeleteEnvironmentMembershipCommand";
19
+ import {
20
+ DescribeEnvironmentMembershipsCommandInput,
21
+ DescribeEnvironmentMembershipsCommandOutput,
22
+ } from "./commands/DescribeEnvironmentMembershipsCommand";
23
+ import {
24
+ DescribeEnvironmentsCommandInput,
25
+ DescribeEnvironmentsCommandOutput,
26
+ } from "./commands/DescribeEnvironmentsCommand";
27
+ import {
28
+ DescribeEnvironmentStatusCommandInput,
29
+ DescribeEnvironmentStatusCommandOutput,
30
+ } from "./commands/DescribeEnvironmentStatusCommand";
31
+ import {
32
+ ListEnvironmentsCommandInput,
33
+ ListEnvironmentsCommandOutput,
34
+ } from "./commands/ListEnvironmentsCommand";
35
+ import {
36
+ ListTagsForResourceCommandInput,
37
+ ListTagsForResourceCommandOutput,
38
+ } from "./commands/ListTagsForResourceCommand";
39
+ import {
40
+ TagResourceCommandInput,
41
+ TagResourceCommandOutput,
42
+ } from "./commands/TagResourceCommand";
43
+ import {
44
+ UntagResourceCommandInput,
45
+ UntagResourceCommandOutput,
46
+ } from "./commands/UntagResourceCommand";
47
+ import {
48
+ UpdateEnvironmentCommandInput,
49
+ UpdateEnvironmentCommandOutput,
50
+ } from "./commands/UpdateEnvironmentCommand";
51
+ import {
52
+ UpdateEnvironmentMembershipCommandInput,
53
+ UpdateEnvironmentMembershipCommandOutput,
54
+ } from "./commands/UpdateEnvironmentMembershipCommand";
55
+
56
+ export declare class Cloud9 extends Cloud9Client {
57
+ createEnvironmentEC2(
58
+ args: CreateEnvironmentEC2CommandInput,
59
+ options?: __HttpHandlerOptions
60
+ ): Promise<CreateEnvironmentEC2CommandOutput>;
61
+ createEnvironmentEC2(
62
+ args: CreateEnvironmentEC2CommandInput,
63
+ cb: (err: any, data?: CreateEnvironmentEC2CommandOutput) => void
64
+ ): void;
65
+ createEnvironmentEC2(
66
+ args: CreateEnvironmentEC2CommandInput,
67
+ options: __HttpHandlerOptions,
68
+ cb: (err: any, data?: CreateEnvironmentEC2CommandOutput) => void
69
+ ): void;
70
+
71
+ createEnvironmentMembership(
72
+ args: CreateEnvironmentMembershipCommandInput,
73
+ options?: __HttpHandlerOptions
74
+ ): Promise<CreateEnvironmentMembershipCommandOutput>;
75
+ createEnvironmentMembership(
76
+ args: CreateEnvironmentMembershipCommandInput,
77
+ cb: (err: any, data?: CreateEnvironmentMembershipCommandOutput) => void
78
+ ): void;
79
+ createEnvironmentMembership(
80
+ args: CreateEnvironmentMembershipCommandInput,
81
+ options: __HttpHandlerOptions,
82
+ cb: (err: any, data?: CreateEnvironmentMembershipCommandOutput) => void
83
+ ): void;
84
+
85
+ deleteEnvironment(
86
+ args: DeleteEnvironmentCommandInput,
87
+ options?: __HttpHandlerOptions
88
+ ): Promise<DeleteEnvironmentCommandOutput>;
89
+ deleteEnvironment(
90
+ args: DeleteEnvironmentCommandInput,
91
+ cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void
92
+ ): void;
93
+ deleteEnvironment(
94
+ args: DeleteEnvironmentCommandInput,
95
+ options: __HttpHandlerOptions,
96
+ cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void
97
+ ): void;
98
+
99
+ deleteEnvironmentMembership(
100
+ args: DeleteEnvironmentMembershipCommandInput,
101
+ options?: __HttpHandlerOptions
102
+ ): Promise<DeleteEnvironmentMembershipCommandOutput>;
103
+ deleteEnvironmentMembership(
104
+ args: DeleteEnvironmentMembershipCommandInput,
105
+ cb: (err: any, data?: DeleteEnvironmentMembershipCommandOutput) => void
106
+ ): void;
107
+ deleteEnvironmentMembership(
108
+ args: DeleteEnvironmentMembershipCommandInput,
109
+ options: __HttpHandlerOptions,
110
+ cb: (err: any, data?: DeleteEnvironmentMembershipCommandOutput) => void
111
+ ): void;
112
+
113
+ describeEnvironmentMemberships(
114
+ args: DescribeEnvironmentMembershipsCommandInput,
115
+ options?: __HttpHandlerOptions
116
+ ): Promise<DescribeEnvironmentMembershipsCommandOutput>;
117
+ describeEnvironmentMemberships(
118
+ args: DescribeEnvironmentMembershipsCommandInput,
119
+ cb: (err: any, data?: DescribeEnvironmentMembershipsCommandOutput) => void
120
+ ): void;
121
+ describeEnvironmentMemberships(
122
+ args: DescribeEnvironmentMembershipsCommandInput,
123
+ options: __HttpHandlerOptions,
124
+ cb: (err: any, data?: DescribeEnvironmentMembershipsCommandOutput) => void
125
+ ): void;
126
+
127
+ describeEnvironments(
128
+ args: DescribeEnvironmentsCommandInput,
129
+ options?: __HttpHandlerOptions
130
+ ): Promise<DescribeEnvironmentsCommandOutput>;
131
+ describeEnvironments(
132
+ args: DescribeEnvironmentsCommandInput,
133
+ cb: (err: any, data?: DescribeEnvironmentsCommandOutput) => void
134
+ ): void;
135
+ describeEnvironments(
136
+ args: DescribeEnvironmentsCommandInput,
137
+ options: __HttpHandlerOptions,
138
+ cb: (err: any, data?: DescribeEnvironmentsCommandOutput) => void
139
+ ): void;
140
+
141
+ describeEnvironmentStatus(
142
+ args: DescribeEnvironmentStatusCommandInput,
143
+ options?: __HttpHandlerOptions
144
+ ): Promise<DescribeEnvironmentStatusCommandOutput>;
145
+ describeEnvironmentStatus(
146
+ args: DescribeEnvironmentStatusCommandInput,
147
+ cb: (err: any, data?: DescribeEnvironmentStatusCommandOutput) => void
148
+ ): void;
149
+ describeEnvironmentStatus(
150
+ args: DescribeEnvironmentStatusCommandInput,
151
+ options: __HttpHandlerOptions,
152
+ cb: (err: any, data?: DescribeEnvironmentStatusCommandOutput) => void
153
+ ): void;
154
+
155
+ listEnvironments(
156
+ args: ListEnvironmentsCommandInput,
157
+ options?: __HttpHandlerOptions
158
+ ): Promise<ListEnvironmentsCommandOutput>;
159
+ listEnvironments(
160
+ args: ListEnvironmentsCommandInput,
161
+ cb: (err: any, data?: ListEnvironmentsCommandOutput) => void
162
+ ): void;
163
+ listEnvironments(
164
+ args: ListEnvironmentsCommandInput,
165
+ options: __HttpHandlerOptions,
166
+ cb: (err: any, data?: ListEnvironmentsCommandOutput) => void
167
+ ): void;
168
+
169
+ listTagsForResource(
170
+ args: ListTagsForResourceCommandInput,
171
+ options?: __HttpHandlerOptions
172
+ ): Promise<ListTagsForResourceCommandOutput>;
173
+ listTagsForResource(
174
+ args: ListTagsForResourceCommandInput,
175
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
176
+ ): void;
177
+ listTagsForResource(
178
+ args: ListTagsForResourceCommandInput,
179
+ options: __HttpHandlerOptions,
180
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
181
+ ): void;
182
+
183
+ tagResource(
184
+ args: TagResourceCommandInput,
185
+ options?: __HttpHandlerOptions
186
+ ): Promise<TagResourceCommandOutput>;
187
+ tagResource(
188
+ args: TagResourceCommandInput,
189
+ cb: (err: any, data?: TagResourceCommandOutput) => void
190
+ ): void;
191
+ tagResource(
192
+ args: TagResourceCommandInput,
193
+ options: __HttpHandlerOptions,
194
+ cb: (err: any, data?: TagResourceCommandOutput) => void
195
+ ): void;
196
+
197
+ untagResource(
198
+ args: UntagResourceCommandInput,
199
+ options?: __HttpHandlerOptions
200
+ ): Promise<UntagResourceCommandOutput>;
201
+ untagResource(
202
+ args: UntagResourceCommandInput,
203
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
204
+ ): void;
205
+ untagResource(
206
+ args: UntagResourceCommandInput,
207
+ options: __HttpHandlerOptions,
208
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
209
+ ): void;
210
+
211
+ updateEnvironment(
212
+ args: UpdateEnvironmentCommandInput,
213
+ options?: __HttpHandlerOptions
214
+ ): Promise<UpdateEnvironmentCommandOutput>;
215
+ updateEnvironment(
216
+ args: UpdateEnvironmentCommandInput,
217
+ cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void
218
+ ): void;
219
+ updateEnvironment(
220
+ args: UpdateEnvironmentCommandInput,
221
+ options: __HttpHandlerOptions,
222
+ cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void
223
+ ): void;
224
+
225
+ updateEnvironmentMembership(
226
+ args: UpdateEnvironmentMembershipCommandInput,
227
+ options?: __HttpHandlerOptions
228
+ ): Promise<UpdateEnvironmentMembershipCommandOutput>;
229
+ updateEnvironmentMembership(
230
+ args: UpdateEnvironmentMembershipCommandInput,
231
+ cb: (err: any, data?: UpdateEnvironmentMembershipCommandOutput) => void
232
+ ): void;
233
+ updateEnvironmentMembership(
234
+ args: UpdateEnvironmentMembershipCommandInput,
235
+ options: __HttpHandlerOptions,
236
+ cb: (err: any, data?: UpdateEnvironmentMembershipCommandOutput) => void
237
+ ): void;
238
+ }
@@ -1,86 +1,207 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
- import { CreateEnvironmentEC2CommandInput, CreateEnvironmentEC2CommandOutput } from "./commands/CreateEnvironmentEC2Command";
10
- import { CreateEnvironmentMembershipCommandInput, CreateEnvironmentMembershipCommandOutput } from "./commands/CreateEnvironmentMembershipCommand";
11
- import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "./commands/DeleteEnvironmentCommand";
12
- import { DeleteEnvironmentMembershipCommandInput, DeleteEnvironmentMembershipCommandOutput } from "./commands/DeleteEnvironmentMembershipCommand";
13
- import { DescribeEnvironmentMembershipsCommandInput, DescribeEnvironmentMembershipsCommandOutput } from "./commands/DescribeEnvironmentMembershipsCommand";
14
- import { DescribeEnvironmentsCommandInput, DescribeEnvironmentsCommandOutput } from "./commands/DescribeEnvironmentsCommand";
15
- import { DescribeEnvironmentStatusCommandInput, DescribeEnvironmentStatusCommandOutput } from "./commands/DescribeEnvironmentStatusCommand";
16
- import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "./commands/ListEnvironmentsCommand";
17
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
18
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
19
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
20
- import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from "./commands/UpdateEnvironmentCommand";
21
- import { UpdateEnvironmentMembershipCommandInput, UpdateEnvironmentMembershipCommandOutput } from "./commands/UpdateEnvironmentMembershipCommand";
22
- export declare type ServiceInputTypes = CreateEnvironmentEC2CommandInput | CreateEnvironmentMembershipCommandInput | DeleteEnvironmentCommandInput | DeleteEnvironmentMembershipCommandInput | DescribeEnvironmentMembershipsCommandInput | DescribeEnvironmentStatusCommandInput | DescribeEnvironmentsCommandInput | ListEnvironmentsCommandInput | ListTagsForResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateEnvironmentCommandInput | UpdateEnvironmentMembershipCommandInput;
23
- export declare type ServiceOutputTypes = CreateEnvironmentEC2CommandOutput | CreateEnvironmentMembershipCommandOutput | DeleteEnvironmentCommandOutput | DeleteEnvironmentMembershipCommandOutput | DescribeEnvironmentMembershipsCommandOutput | DescribeEnvironmentStatusCommandOutput | DescribeEnvironmentsCommandOutput | ListEnvironmentsCommandOutput | ListTagsForResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateEnvironmentCommandOutput | UpdateEnvironmentMembershipCommandOutput;
24
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
25
-
26
- requestHandler?: __HttpHandler;
27
-
28
- sha256?: __HashConstructor;
29
-
30
- urlParser?: __UrlParser;
31
-
32
- bodyLengthChecker?: __BodyLengthCalculator;
33
-
34
- streamCollector?: __StreamCollector;
35
-
36
- base64Decoder?: __Decoder;
37
-
38
- base64Encoder?: __Encoder;
39
-
40
- utf8Decoder?: __Decoder;
41
-
42
- utf8Encoder?: __Encoder;
43
-
44
- runtime?: string;
45
-
46
- disableHostPrefix?: boolean;
47
-
48
- maxAttempts?: number | __Provider<number>;
49
-
50
- retryMode?: string | __Provider<string>;
51
-
52
- logger?: __Logger;
53
-
54
- useDualstackEndpoint?: boolean | __Provider<boolean>;
55
-
56
- useFipsEndpoint?: boolean | __Provider<boolean>;
57
-
58
- serviceId?: string;
59
-
60
- region?: string | __Provider<string>;
61
-
62
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
63
-
64
- regionInfoProvider?: RegionInfoProvider;
65
-
66
- defaultUserAgentProvider?: Provider<__UserAgent>;
67
-
68
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
69
- }
70
- declare type Cloud9ClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
71
-
72
- export interface Cloud9ClientConfig extends Cloud9ClientConfigType {
73
- }
74
- declare type Cloud9ClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
75
-
76
- export interface Cloud9ClientResolvedConfig extends Cloud9ClientResolvedConfigType {
77
- }
78
-
79
- export declare class Cloud9Client extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, Cloud9ClientResolvedConfig> {
80
-
81
- readonly config: Cloud9ClientResolvedConfig;
82
- constructor(configuration: Cloud9ClientConfig);
83
-
84
- destroy(): void;
85
- }
86
- export {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ HostHeaderInputConfig,
9
+ HostHeaderResolvedConfig,
10
+ } from "@aws-sdk/middleware-host-header";
11
+ import {
12
+ RetryInputConfig,
13
+ RetryResolvedConfig,
14
+ } from "@aws-sdk/middleware-retry";
15
+ import {
16
+ AwsAuthInputConfig,
17
+ AwsAuthResolvedConfig,
18
+ } from "@aws-sdk/middleware-signing";
19
+ import {
20
+ UserAgentInputConfig,
21
+ UserAgentResolvedConfig,
22
+ } from "@aws-sdk/middleware-user-agent";
23
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
24
+ import {
25
+ Client as __Client,
26
+ DefaultsMode,
27
+ SmithyConfiguration as __SmithyConfiguration,
28
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
29
+ } from "@aws-sdk/smithy-client";
30
+ import {
31
+ BodyLengthCalculator as __BodyLengthCalculator,
32
+ Credentials as __Credentials,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ RegionInfoProvider,
41
+ StreamCollector as __StreamCollector,
42
+ UrlParser as __UrlParser,
43
+ UserAgent as __UserAgent,
44
+ } from "@aws-sdk/types";
45
+ import {
46
+ CreateEnvironmentEC2CommandInput,
47
+ CreateEnvironmentEC2CommandOutput,
48
+ } from "./commands/CreateEnvironmentEC2Command";
49
+ import {
50
+ CreateEnvironmentMembershipCommandInput,
51
+ CreateEnvironmentMembershipCommandOutput,
52
+ } from "./commands/CreateEnvironmentMembershipCommand";
53
+ import {
54
+ DeleteEnvironmentCommandInput,
55
+ DeleteEnvironmentCommandOutput,
56
+ } from "./commands/DeleteEnvironmentCommand";
57
+ import {
58
+ DeleteEnvironmentMembershipCommandInput,
59
+ DeleteEnvironmentMembershipCommandOutput,
60
+ } from "./commands/DeleteEnvironmentMembershipCommand";
61
+ import {
62
+ DescribeEnvironmentMembershipsCommandInput,
63
+ DescribeEnvironmentMembershipsCommandOutput,
64
+ } from "./commands/DescribeEnvironmentMembershipsCommand";
65
+ import {
66
+ DescribeEnvironmentsCommandInput,
67
+ DescribeEnvironmentsCommandOutput,
68
+ } from "./commands/DescribeEnvironmentsCommand";
69
+ import {
70
+ DescribeEnvironmentStatusCommandInput,
71
+ DescribeEnvironmentStatusCommandOutput,
72
+ } from "./commands/DescribeEnvironmentStatusCommand";
73
+ import {
74
+ ListEnvironmentsCommandInput,
75
+ ListEnvironmentsCommandOutput,
76
+ } from "./commands/ListEnvironmentsCommand";
77
+ import {
78
+ ListTagsForResourceCommandInput,
79
+ ListTagsForResourceCommandOutput,
80
+ } from "./commands/ListTagsForResourceCommand";
81
+ import {
82
+ TagResourceCommandInput,
83
+ TagResourceCommandOutput,
84
+ } from "./commands/TagResourceCommand";
85
+ import {
86
+ UntagResourceCommandInput,
87
+ UntagResourceCommandOutput,
88
+ } from "./commands/UntagResourceCommand";
89
+ import {
90
+ UpdateEnvironmentCommandInput,
91
+ UpdateEnvironmentCommandOutput,
92
+ } from "./commands/UpdateEnvironmentCommand";
93
+ import {
94
+ UpdateEnvironmentMembershipCommandInput,
95
+ UpdateEnvironmentMembershipCommandOutput,
96
+ } from "./commands/UpdateEnvironmentMembershipCommand";
97
+ export declare type ServiceInputTypes =
98
+ | CreateEnvironmentEC2CommandInput
99
+ | CreateEnvironmentMembershipCommandInput
100
+ | DeleteEnvironmentCommandInput
101
+ | DeleteEnvironmentMembershipCommandInput
102
+ | DescribeEnvironmentMembershipsCommandInput
103
+ | DescribeEnvironmentStatusCommandInput
104
+ | DescribeEnvironmentsCommandInput
105
+ | ListEnvironmentsCommandInput
106
+ | ListTagsForResourceCommandInput
107
+ | TagResourceCommandInput
108
+ | UntagResourceCommandInput
109
+ | UpdateEnvironmentCommandInput
110
+ | UpdateEnvironmentMembershipCommandInput;
111
+ export declare type ServiceOutputTypes =
112
+ | CreateEnvironmentEC2CommandOutput
113
+ | CreateEnvironmentMembershipCommandOutput
114
+ | DeleteEnvironmentCommandOutput
115
+ | DeleteEnvironmentMembershipCommandOutput
116
+ | DescribeEnvironmentMembershipsCommandOutput
117
+ | DescribeEnvironmentStatusCommandOutput
118
+ | DescribeEnvironmentsCommandOutput
119
+ | ListEnvironmentsCommandOutput
120
+ | ListTagsForResourceCommandOutput
121
+ | TagResourceCommandOutput
122
+ | UntagResourceCommandOutput
123
+ | UpdateEnvironmentCommandOutput
124
+ | UpdateEnvironmentMembershipCommandOutput;
125
+ export interface ClientDefaults
126
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
127
+ requestHandler?: __HttpHandler;
128
+
129
+ sha256?: __HashConstructor;
130
+
131
+ urlParser?: __UrlParser;
132
+
133
+ bodyLengthChecker?: __BodyLengthCalculator;
134
+
135
+ streamCollector?: __StreamCollector;
136
+
137
+ base64Decoder?: __Decoder;
138
+
139
+ base64Encoder?: __Encoder;
140
+
141
+ utf8Decoder?: __Decoder;
142
+
143
+ utf8Encoder?: __Encoder;
144
+
145
+ runtime?: string;
146
+
147
+ disableHostPrefix?: boolean;
148
+
149
+ maxAttempts?: number | __Provider<number>;
150
+
151
+ retryMode?: string | __Provider<string>;
152
+
153
+ logger?: __Logger;
154
+
155
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
156
+
157
+ useFipsEndpoint?: boolean | __Provider<boolean>;
158
+
159
+ serviceId?: string;
160
+
161
+ region?: string | __Provider<string>;
162
+
163
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
164
+
165
+ regionInfoProvider?: RegionInfoProvider;
166
+
167
+ defaultUserAgentProvider?: Provider<__UserAgent>;
168
+
169
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
170
+ }
171
+ declare type Cloud9ClientConfigType = Partial<
172
+ __SmithyConfiguration<__HttpHandlerOptions>
173
+ > &
174
+ ClientDefaults &
175
+ RegionInputConfig &
176
+ EndpointsInputConfig &
177
+ RetryInputConfig &
178
+ HostHeaderInputConfig &
179
+ AwsAuthInputConfig &
180
+ UserAgentInputConfig;
181
+
182
+ export interface Cloud9ClientConfig extends Cloud9ClientConfigType {}
183
+ declare type Cloud9ClientResolvedConfigType =
184
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
185
+ Required<ClientDefaults> &
186
+ RegionResolvedConfig &
187
+ EndpointsResolvedConfig &
188
+ RetryResolvedConfig &
189
+ HostHeaderResolvedConfig &
190
+ AwsAuthResolvedConfig &
191
+ UserAgentResolvedConfig;
192
+
193
+ export interface Cloud9ClientResolvedConfig
194
+ extends Cloud9ClientResolvedConfigType {}
195
+
196
+ export declare class Cloud9Client extends __Client<
197
+ __HttpHandlerOptions,
198
+ ServiceInputTypes,
199
+ ServiceOutputTypes,
200
+ Cloud9ClientResolvedConfig
201
+ > {
202
+ readonly config: Cloud9ClientResolvedConfig;
203
+ constructor(configuration: Cloud9ClientConfig);
204
+
205
+ destroy(): void;
206
+ }
207
+ export {};