@aws-sdk/client-cloud9 3.1086.0 → 3.1088.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 (31) hide show
  1. package/dist-cjs/index.js +1 -1
  2. package/dist-types/ts3.4/Cloud9.d.ts +42 -45
  3. package/dist-types/ts3.4/Cloud9Client.d.ts +16 -29
  4. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
  5. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
  6. package/dist-types/ts3.4/commandBuilder.d.ts +8 -18
  7. package/dist-types/ts3.4/commands/CreateEnvironmentEC2Command.d.ts +5 -10
  8. package/dist-types/ts3.4/commands/CreateEnvironmentMembershipCommand.d.ts +4 -6
  9. package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +5 -11
  10. package/dist-types/ts3.4/commands/DeleteEnvironmentMembershipCommand.d.ts +4 -6
  11. package/dist-types/ts3.4/commands/DescribeEnvironmentMembershipsCommand.d.ts +3 -5
  12. package/dist-types/ts3.4/commands/DescribeEnvironmentStatusCommand.d.ts +4 -6
  13. package/dist-types/ts3.4/commands/DescribeEnvironmentsCommand.d.ts +5 -10
  14. package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +3 -8
  15. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
  16. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
  17. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
  18. package/dist-types/ts3.4/commands/UpdateEnvironmentCommand.d.ts +5 -11
  19. package/dist-types/ts3.4/commands/UpdateEnvironmentMembershipCommand.d.ts +4 -6
  20. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  21. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
  22. package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
  23. package/dist-types/ts3.4/models/enums.d.ts +4 -8
  24. package/dist-types/ts3.4/models/errors.d.ts +5 -15
  25. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
  26. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
  27. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
  28. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
  29. package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
  30. package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
  31. package/package.json +39 -39
package/dist-cjs/index.js CHANGED
@@ -69,7 +69,7 @@ const commonParams = {
69
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
70
70
  };
71
71
 
72
- var version = "3.1085.0";
72
+ var version = "3.1087.0";
73
73
  var packageInfo = {
74
74
  version: version};
75
75
 
@@ -40,10 +40,7 @@ import {
40
40
  ListTagsForResourceCommandInput,
41
41
  ListTagsForResourceCommandOutput,
42
42
  } from "./commands/ListTagsForResourceCommand";
43
- import {
44
- TagResourceCommandInput,
45
- TagResourceCommandOutput,
46
- } from "./commands/TagResourceCommand";
43
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
47
44
  import {
48
45
  UntagResourceCommandInput,
49
46
  UntagResourceCommandOutput,
@@ -59,188 +56,188 @@ import {
59
56
  export interface Cloud9 {
60
57
  createEnvironmentEC2(
61
58
  args: CreateEnvironmentEC2CommandInput,
62
- options?: __HttpHandlerOptions
59
+ options?: __HttpHandlerOptions,
63
60
  ): Promise<CreateEnvironmentEC2CommandOutput>;
64
61
  createEnvironmentEC2(
65
62
  args: CreateEnvironmentEC2CommandInput,
66
- cb: (err: any, data?: CreateEnvironmentEC2CommandOutput) => void
63
+ cb: (err: any, data?: CreateEnvironmentEC2CommandOutput) => void,
67
64
  ): void;
68
65
  createEnvironmentEC2(
69
66
  args: CreateEnvironmentEC2CommandInput,
70
67
  options: __HttpHandlerOptions,
71
- cb: (err: any, data?: CreateEnvironmentEC2CommandOutput) => void
68
+ cb: (err: any, data?: CreateEnvironmentEC2CommandOutput) => void,
72
69
  ): void;
73
70
  createEnvironmentMembership(
74
71
  args: CreateEnvironmentMembershipCommandInput,
75
- options?: __HttpHandlerOptions
72
+ options?: __HttpHandlerOptions,
76
73
  ): Promise<CreateEnvironmentMembershipCommandOutput>;
77
74
  createEnvironmentMembership(
78
75
  args: CreateEnvironmentMembershipCommandInput,
79
- cb: (err: any, data?: CreateEnvironmentMembershipCommandOutput) => void
76
+ cb: (err: any, data?: CreateEnvironmentMembershipCommandOutput) => void,
80
77
  ): void;
81
78
  createEnvironmentMembership(
82
79
  args: CreateEnvironmentMembershipCommandInput,
83
80
  options: __HttpHandlerOptions,
84
- cb: (err: any, data?: CreateEnvironmentMembershipCommandOutput) => void
81
+ cb: (err: any, data?: CreateEnvironmentMembershipCommandOutput) => void,
85
82
  ): void;
86
83
  deleteEnvironment(
87
84
  args: DeleteEnvironmentCommandInput,
88
- options?: __HttpHandlerOptions
85
+ options?: __HttpHandlerOptions,
89
86
  ): Promise<DeleteEnvironmentCommandOutput>;
90
87
  deleteEnvironment(
91
88
  args: DeleteEnvironmentCommandInput,
92
- cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void
89
+ cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void,
93
90
  ): void;
94
91
  deleteEnvironment(
95
92
  args: DeleteEnvironmentCommandInput,
96
93
  options: __HttpHandlerOptions,
97
- cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void
94
+ cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void,
98
95
  ): void;
99
96
  deleteEnvironmentMembership(
100
97
  args: DeleteEnvironmentMembershipCommandInput,
101
- options?: __HttpHandlerOptions
98
+ options?: __HttpHandlerOptions,
102
99
  ): Promise<DeleteEnvironmentMembershipCommandOutput>;
103
100
  deleteEnvironmentMembership(
104
101
  args: DeleteEnvironmentMembershipCommandInput,
105
- cb: (err: any, data?: DeleteEnvironmentMembershipCommandOutput) => void
102
+ cb: (err: any, data?: DeleteEnvironmentMembershipCommandOutput) => void,
106
103
  ): void;
107
104
  deleteEnvironmentMembership(
108
105
  args: DeleteEnvironmentMembershipCommandInput,
109
106
  options: __HttpHandlerOptions,
110
- cb: (err: any, data?: DeleteEnvironmentMembershipCommandOutput) => void
107
+ cb: (err: any, data?: DeleteEnvironmentMembershipCommandOutput) => void,
111
108
  ): void;
112
109
  describeEnvironmentMemberships(): Promise<DescribeEnvironmentMembershipsCommandOutput>;
113
110
  describeEnvironmentMemberships(
114
111
  args: DescribeEnvironmentMembershipsCommandInput,
115
- options?: __HttpHandlerOptions
112
+ options?: __HttpHandlerOptions,
116
113
  ): Promise<DescribeEnvironmentMembershipsCommandOutput>;
117
114
  describeEnvironmentMemberships(
118
115
  args: DescribeEnvironmentMembershipsCommandInput,
119
- cb: (err: any, data?: DescribeEnvironmentMembershipsCommandOutput) => void
116
+ cb: (err: any, data?: DescribeEnvironmentMembershipsCommandOutput) => void,
120
117
  ): void;
121
118
  describeEnvironmentMemberships(
122
119
  args: DescribeEnvironmentMembershipsCommandInput,
123
120
  options: __HttpHandlerOptions,
124
- cb: (err: any, data?: DescribeEnvironmentMembershipsCommandOutput) => void
121
+ cb: (err: any, data?: DescribeEnvironmentMembershipsCommandOutput) => void,
125
122
  ): void;
126
123
  describeEnvironments(
127
124
  args: DescribeEnvironmentsCommandInput,
128
- options?: __HttpHandlerOptions
125
+ options?: __HttpHandlerOptions,
129
126
  ): Promise<DescribeEnvironmentsCommandOutput>;
130
127
  describeEnvironments(
131
128
  args: DescribeEnvironmentsCommandInput,
132
- cb: (err: any, data?: DescribeEnvironmentsCommandOutput) => void
129
+ cb: (err: any, data?: DescribeEnvironmentsCommandOutput) => void,
133
130
  ): void;
134
131
  describeEnvironments(
135
132
  args: DescribeEnvironmentsCommandInput,
136
133
  options: __HttpHandlerOptions,
137
- cb: (err: any, data?: DescribeEnvironmentsCommandOutput) => void
134
+ cb: (err: any, data?: DescribeEnvironmentsCommandOutput) => void,
138
135
  ): void;
139
136
  describeEnvironmentStatus(
140
137
  args: DescribeEnvironmentStatusCommandInput,
141
- options?: __HttpHandlerOptions
138
+ options?: __HttpHandlerOptions,
142
139
  ): Promise<DescribeEnvironmentStatusCommandOutput>;
143
140
  describeEnvironmentStatus(
144
141
  args: DescribeEnvironmentStatusCommandInput,
145
- cb: (err: any, data?: DescribeEnvironmentStatusCommandOutput) => void
142
+ cb: (err: any, data?: DescribeEnvironmentStatusCommandOutput) => void,
146
143
  ): void;
147
144
  describeEnvironmentStatus(
148
145
  args: DescribeEnvironmentStatusCommandInput,
149
146
  options: __HttpHandlerOptions,
150
- cb: (err: any, data?: DescribeEnvironmentStatusCommandOutput) => void
147
+ cb: (err: any, data?: DescribeEnvironmentStatusCommandOutput) => void,
151
148
  ): void;
152
149
  listEnvironments(): Promise<ListEnvironmentsCommandOutput>;
153
150
  listEnvironments(
154
151
  args: ListEnvironmentsCommandInput,
155
- options?: __HttpHandlerOptions
152
+ options?: __HttpHandlerOptions,
156
153
  ): Promise<ListEnvironmentsCommandOutput>;
157
154
  listEnvironments(
158
155
  args: ListEnvironmentsCommandInput,
159
- cb: (err: any, data?: ListEnvironmentsCommandOutput) => void
156
+ cb: (err: any, data?: ListEnvironmentsCommandOutput) => void,
160
157
  ): void;
161
158
  listEnvironments(
162
159
  args: ListEnvironmentsCommandInput,
163
160
  options: __HttpHandlerOptions,
164
- cb: (err: any, data?: ListEnvironmentsCommandOutput) => void
161
+ cb: (err: any, data?: ListEnvironmentsCommandOutput) => void,
165
162
  ): void;
166
163
  listTagsForResource(
167
164
  args: ListTagsForResourceCommandInput,
168
- options?: __HttpHandlerOptions
165
+ options?: __HttpHandlerOptions,
169
166
  ): Promise<ListTagsForResourceCommandOutput>;
170
167
  listTagsForResource(
171
168
  args: ListTagsForResourceCommandInput,
172
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
169
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
173
170
  ): void;
174
171
  listTagsForResource(
175
172
  args: ListTagsForResourceCommandInput,
176
173
  options: __HttpHandlerOptions,
177
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
174
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
178
175
  ): void;
179
176
  tagResource(
180
177
  args: TagResourceCommandInput,
181
- options?: __HttpHandlerOptions
178
+ options?: __HttpHandlerOptions,
182
179
  ): Promise<TagResourceCommandOutput>;
183
180
  tagResource(
184
181
  args: TagResourceCommandInput,
185
- cb: (err: any, data?: TagResourceCommandOutput) => void
182
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
186
183
  ): void;
187
184
  tagResource(
188
185
  args: TagResourceCommandInput,
189
186
  options: __HttpHandlerOptions,
190
- cb: (err: any, data?: TagResourceCommandOutput) => void
187
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
191
188
  ): void;
192
189
  untagResource(
193
190
  args: UntagResourceCommandInput,
194
- options?: __HttpHandlerOptions
191
+ options?: __HttpHandlerOptions,
195
192
  ): Promise<UntagResourceCommandOutput>;
196
193
  untagResource(
197
194
  args: UntagResourceCommandInput,
198
- cb: (err: any, data?: UntagResourceCommandOutput) => void
195
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
199
196
  ): void;
200
197
  untagResource(
201
198
  args: UntagResourceCommandInput,
202
199
  options: __HttpHandlerOptions,
203
- cb: (err: any, data?: UntagResourceCommandOutput) => void
200
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
204
201
  ): void;
205
202
  updateEnvironment(
206
203
  args: UpdateEnvironmentCommandInput,
207
- options?: __HttpHandlerOptions
204
+ options?: __HttpHandlerOptions,
208
205
  ): Promise<UpdateEnvironmentCommandOutput>;
209
206
  updateEnvironment(
210
207
  args: UpdateEnvironmentCommandInput,
211
- cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void
208
+ cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void,
212
209
  ): void;
213
210
  updateEnvironment(
214
211
  args: UpdateEnvironmentCommandInput,
215
212
  options: __HttpHandlerOptions,
216
- cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void
213
+ cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void,
217
214
  ): void;
218
215
  updateEnvironmentMembership(
219
216
  args: UpdateEnvironmentMembershipCommandInput,
220
- options?: __HttpHandlerOptions
217
+ options?: __HttpHandlerOptions,
221
218
  ): Promise<UpdateEnvironmentMembershipCommandOutput>;
222
219
  updateEnvironmentMembership(
223
220
  args: UpdateEnvironmentMembershipCommandInput,
224
- cb: (err: any, data?: UpdateEnvironmentMembershipCommandOutput) => void
221
+ cb: (err: any, data?: UpdateEnvironmentMembershipCommandOutput) => void,
225
222
  ): void;
226
223
  updateEnvironmentMembership(
227
224
  args: UpdateEnvironmentMembershipCommandInput,
228
225
  options: __HttpHandlerOptions,
229
- cb: (err: any, data?: UpdateEnvironmentMembershipCommandOutput) => void
226
+ cb: (err: any, data?: UpdateEnvironmentMembershipCommandOutput) => void,
230
227
  ): void;
231
228
  paginateDescribeEnvironmentMemberships(
232
229
  args?: DescribeEnvironmentMembershipsCommandInput,
233
230
  paginationConfig?: Pick<
234
231
  PaginationConfiguration,
235
232
  Exclude<keyof PaginationConfiguration, "client">
236
- >
233
+ >,
237
234
  ): Paginator<DescribeEnvironmentMembershipsCommandOutput>;
238
235
  paginateListEnvironments(
239
236
  args?: ListEnvironmentsCommandInput,
240
237
  paginationConfig?: Pick<
241
238
  PaginationConfiguration,
242
239
  Exclude<keyof PaginationConfiguration, "client">
243
- >
240
+ >,
244
241
  ): Paginator<ListEnvironmentsCommandOutput>;
245
242
  }
246
243
  export declare class Cloud9 extends Cloud9Client implements Cloud9 {}
@@ -11,10 +11,7 @@ import {
11
11
  Client as __Client,
12
12
  } from "@smithy/core/client";
13
13
  import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
14
- import {
15
- EndpointInputConfig,
16
- EndpointResolvedConfig,
17
- } from "@smithy/core/endpoints";
14
+ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
18
15
  import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
19
16
  import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
20
17
  import {
@@ -72,10 +69,7 @@ import {
72
69
  ListTagsForResourceCommandInput,
73
70
  ListTagsForResourceCommandOutput,
74
71
  } from "./commands/ListTagsForResourceCommand";
75
- import {
76
- TagResourceCommandInput,
77
- TagResourceCommandOutput,
78
- } from "./commands/TagResourceCommand";
72
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
79
73
  import {
80
74
  UntagResourceCommandInput,
81
75
  UntagResourceCommandOutput,
@@ -123,8 +117,7 @@ export type ServiceOutputTypes =
123
117
  | UntagResourceCommandOutput
124
118
  | UpdateEnvironmentCommandOutput
125
119
  | UpdateEnvironmentMembershipCommandOutput;
126
- export interface ClientDefaults
127
- extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
120
+ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
128
121
  requestHandler?: __HttpHandlerUserInput;
129
122
  sha256?: __ChecksumConstructor | __HashConstructor;
130
123
  urlParser?: __UrlParser;
@@ -149,9 +142,7 @@ export interface ClientDefaults
149
142
  extensions?: RuntimeExtension[];
150
143
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
151
144
  }
152
- export type Cloud9ClientConfigType = Partial<
153
- __SmithyConfiguration<__HttpHandlerOptions>
154
- > &
145
+ export type Cloud9ClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
155
146
  ClientDefaults &
156
147
  UserAgentInputConfig &
157
148
  RetryInputConfig &
@@ -161,19 +152,17 @@ export type Cloud9ClientConfigType = Partial<
161
152
  HttpAuthSchemeInputConfig &
162
153
  ClientInputEndpointParameters;
163
154
  export interface Cloud9ClientConfig extends Cloud9ClientConfigType {}
164
- export type Cloud9ClientResolvedConfigType =
165
- __SmithyResolvedConfiguration<__HttpHandlerOptions> &
166
- Required<ClientDefaults> &
167
- RuntimeExtensionsConfig &
168
- UserAgentResolvedConfig &
169
- RetryResolvedConfig &
170
- RegionResolvedConfig &
171
- HostHeaderResolvedConfig &
172
- EndpointResolvedConfig<EndpointParameters> &
173
- HttpAuthSchemeResolvedConfig &
174
- ClientResolvedEndpointParameters;
175
- export interface Cloud9ClientResolvedConfig
176
- extends Cloud9ClientResolvedConfigType {}
155
+ export type Cloud9ClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> &
156
+ Required<ClientDefaults> &
157
+ RuntimeExtensionsConfig &
158
+ UserAgentResolvedConfig &
159
+ RetryResolvedConfig &
160
+ RegionResolvedConfig &
161
+ HostHeaderResolvedConfig &
162
+ EndpointResolvedConfig<EndpointParameters> &
163
+ HttpAuthSchemeResolvedConfig &
164
+ ClientResolvedEndpointParameters;
165
+ export interface Cloud9ClientResolvedConfig extends Cloud9ClientResolvedConfigType {}
177
166
  export declare class Cloud9Client extends __Client<
178
167
  __HttpHandlerOptions,
179
168
  ServiceInputTypes,
@@ -181,8 +170,6 @@ export declare class Cloud9Client extends __Client<
181
170
  Cloud9ClientResolvedConfig
182
171
  > {
183
172
  readonly config: Cloud9ClientResolvedConfig;
184
- constructor(
185
- ...[configuration]: __CheckOptionalClientConfig<Cloud9ClientConfig>
186
- );
173
+ constructor(...[configuration]: __CheckOptionalClientConfig<Cloud9ClientConfig>);
187
174
  destroy(): void;
188
175
  }
@@ -7,17 +7,10 @@ import { Cloud9HttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
7
  export interface HttpAuthExtensionConfiguration {
8
8
  setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
9
  httpAuthSchemes(): HttpAuthScheme[];
10
- setHttpAuthSchemeProvider(
11
- httpAuthSchemeProvider: Cloud9HttpAuthSchemeProvider
12
- ): void;
10
+ setHttpAuthSchemeProvider(httpAuthSchemeProvider: Cloud9HttpAuthSchemeProvider): void;
13
11
  httpAuthSchemeProvider(): Cloud9HttpAuthSchemeProvider;
14
- setCredentials(
15
- credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
- ): void;
17
- credentials():
18
- | AwsCredentialIdentity
19
- | AwsCredentialIdentityProvider
20
- | undefined;
12
+ setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
13
+ credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
21
14
  }
22
15
  export type HttpAuthRuntimeConfig = Partial<{
23
16
  httpAuthSchemes: HttpAuthScheme[];
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
25
18
  credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
19
  }>;
27
20
  export declare const getHttpAuthExtensionConfiguration: (
28
- runtimeConfig: HttpAuthRuntimeConfig
21
+ runtimeConfig: HttpAuthRuntimeConfig,
29
22
  ) => HttpAuthExtensionConfiguration;
30
23
  export declare const resolveHttpAuthRuntimeConfig: (
31
- config: HttpAuthExtensionConfiguration
24
+ config: HttpAuthExtensionConfiguration,
32
25
  ) => HttpAuthRuntimeConfig;
@@ -12,36 +12,32 @@ import {
12
12
  Provider,
13
13
  } from "@smithy/types";
14
14
  import { Cloud9ClientResolvedConfig } from "../Cloud9Client";
15
- export interface Cloud9HttpAuthSchemeParameters
16
- extends HttpAuthSchemeParameters {
15
+ export interface Cloud9HttpAuthSchemeParameters extends HttpAuthSchemeParameters {
17
16
  region?: string;
18
17
  }
19
- export interface Cloud9HttpAuthSchemeParametersProvider
20
- extends HttpAuthSchemeParametersProvider<
21
- Cloud9ClientResolvedConfig,
22
- HandlerExecutionContext,
23
- Cloud9HttpAuthSchemeParameters,
24
- object
25
- > {}
18
+ export interface Cloud9HttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
19
+ Cloud9ClientResolvedConfig,
20
+ HandlerExecutionContext,
21
+ Cloud9HttpAuthSchemeParameters,
22
+ object
23
+ > {}
26
24
  export declare const defaultCloud9HttpAuthSchemeParametersProvider: (
27
25
  config: Cloud9ClientResolvedConfig,
28
26
  context: HandlerExecutionContext,
29
- input: object
27
+ input: object,
30
28
  ) => Promise<Cloud9HttpAuthSchemeParameters>;
31
- export interface Cloud9HttpAuthSchemeProvider
32
- extends HttpAuthSchemeProvider<Cloud9HttpAuthSchemeParameters> {}
29
+ export interface Cloud9HttpAuthSchemeProvider extends HttpAuthSchemeProvider<Cloud9HttpAuthSchemeParameters> {}
33
30
  export declare const defaultCloud9HttpAuthSchemeProvider: Cloud9HttpAuthSchemeProvider;
34
31
  export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
35
32
  authSchemePreference?: string[] | Provider<string[]>;
36
33
  httpAuthSchemes?: HttpAuthScheme[];
37
34
  httpAuthSchemeProvider?: Cloud9HttpAuthSchemeProvider;
38
35
  }
39
- export interface HttpAuthSchemeResolvedConfig
40
- extends AwsSdkSigV4AuthResolvedConfig {
36
+ export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
41
37
  readonly authSchemePreference: Provider<string[]>;
42
38
  readonly httpAuthSchemes: HttpAuthScheme[];
43
39
  readonly httpAuthSchemeProvider: Cloud9HttpAuthSchemeProvider;
44
40
  }
45
41
  export declare const resolveHttpAuthSchemeConfig: <T>(
46
- config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
42
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
47
43
  ) => T & HttpAuthSchemeResolvedConfig;
@@ -1,25 +1,20 @@
1
1
  import { EndpointParameterInstructions } from "@smithy/types";
2
- import {
3
- Cloud9ClientResolvedConfig,
4
- ServiceInputTypes,
5
- ServiceOutputTypes,
6
- } from "./Cloud9Client";
7
- export declare const command: <
8
- I extends ServiceInputTypes,
9
- O extends ServiceOutputTypes
10
- >(
2
+ import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./Cloud9Client";
3
+ export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
11
4
  added: EndpointParameterInstructions,
12
5
  plugins: (
13
6
  CommandCtor: any,
14
7
  clientStack: any,
15
8
  config: any,
16
- options: any
9
+ options: any,
17
10
  ) => import("@smithy/types").Pluggable<any, any>[],
18
11
  op: string,
19
12
  $: import("@smithy/types").StaticOperationSchema,
20
- smithyContext?: Record<string, unknown>
13
+ smithyContext?: Record<string, unknown>,
21
14
  ) => {
22
- new (input: I): import("@smithy/core/client").CommandImpl<
15
+ new (
16
+ input: I,
17
+ ): import("@smithy/core/client").CommandImpl<
23
18
  I,
24
19
  O,
25
20
  Cloud9ClientResolvedConfig,
@@ -38,9 +33,4 @@ export declare const command: <
38
33
  getEndpointParameterInstructions(): EndpointParameterInstructions;
39
34
  };
40
35
  export declare const _ep0: EndpointParameterInstructions;
41
- export declare const _mw0: (
42
- Command: any,
43
- cs: any,
44
- config: any,
45
- o: any
46
- ) => never[];
36
+ export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- CreateEnvironmentEC2Request,
4
- CreateEnvironmentEC2Result,
5
- } from "../models/models_0";
2
+ import { CreateEnvironmentEC2Request, CreateEnvironmentEC2Result } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface CreateEnvironmentEC2CommandInput
8
- extends CreateEnvironmentEC2Request {}
4
+ export interface CreateEnvironmentEC2CommandInput extends CreateEnvironmentEC2Request {}
9
5
  export interface CreateEnvironmentEC2CommandOutput
10
- extends CreateEnvironmentEC2Result,
11
- __MetadataBearer {}
6
+ extends CreateEnvironmentEC2Result, __MetadataBearer {}
12
7
  declare const CreateEnvironmentEC2Command_base: {
13
8
  new (
14
- input: CreateEnvironmentEC2CommandInput
9
+ input: CreateEnvironmentEC2CommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  CreateEnvironmentEC2CommandInput,
17
12
  CreateEnvironmentEC2CommandOutput,
@@ -20,7 +15,7 @@ declare const CreateEnvironmentEC2Command_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: CreateEnvironmentEC2CommandInput
18
+ input: CreateEnvironmentEC2CommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  CreateEnvironmentEC2CommandInput,
26
21
  CreateEnvironmentEC2CommandOutput,
@@ -4,14 +4,12 @@ import {
4
4
  CreateEnvironmentMembershipResult,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface CreateEnvironmentMembershipCommandInput
8
- extends CreateEnvironmentMembershipRequest {}
7
+ export interface CreateEnvironmentMembershipCommandInput extends CreateEnvironmentMembershipRequest {}
9
8
  export interface CreateEnvironmentMembershipCommandOutput
10
- extends CreateEnvironmentMembershipResult,
11
- __MetadataBearer {}
9
+ extends CreateEnvironmentMembershipResult, __MetadataBearer {}
12
10
  declare const CreateEnvironmentMembershipCommand_base: {
13
11
  new (
14
- input: CreateEnvironmentMembershipCommandInput
12
+ input: CreateEnvironmentMembershipCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  CreateEnvironmentMembershipCommandInput,
17
15
  CreateEnvironmentMembershipCommandOutput,
@@ -20,7 +18,7 @@ declare const CreateEnvironmentMembershipCommand_base: {
20
18
  import("..").ServiceOutputTypes
21
19
  >;
22
20
  new (
23
- input: CreateEnvironmentMembershipCommandInput
21
+ input: CreateEnvironmentMembershipCommandInput,
24
22
  ): import("@smithy/core/client").CommandImpl<
25
23
  CreateEnvironmentMembershipCommandInput,
26
24
  CreateEnvironmentMembershipCommandOutput,
@@ -1,17 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- DeleteEnvironmentRequest,
4
- DeleteEnvironmentResult,
5
- } from "../models/models_0";
2
+ import { DeleteEnvironmentRequest, DeleteEnvironmentResult } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface DeleteEnvironmentCommandInput
8
- extends DeleteEnvironmentRequest {}
9
- export interface DeleteEnvironmentCommandOutput
10
- extends DeleteEnvironmentResult,
11
- __MetadataBearer {}
4
+ export interface DeleteEnvironmentCommandInput extends DeleteEnvironmentRequest {}
5
+ export interface DeleteEnvironmentCommandOutput extends DeleteEnvironmentResult, __MetadataBearer {}
12
6
  declare const DeleteEnvironmentCommand_base: {
13
7
  new (
14
- input: DeleteEnvironmentCommandInput
8
+ input: DeleteEnvironmentCommandInput,
15
9
  ): import("@smithy/core/client").CommandImpl<
16
10
  DeleteEnvironmentCommandInput,
17
11
  DeleteEnvironmentCommandOutput,
@@ -20,7 +14,7 @@ declare const DeleteEnvironmentCommand_base: {
20
14
  import("..").ServiceOutputTypes
21
15
  >;
22
16
  new (
23
- input: DeleteEnvironmentCommandInput
17
+ input: DeleteEnvironmentCommandInput,
24
18
  ): import("@smithy/core/client").CommandImpl<
25
19
  DeleteEnvironmentCommandInput,
26
20
  DeleteEnvironmentCommandOutput,
@@ -4,14 +4,12 @@ import {
4
4
  DeleteEnvironmentMembershipResult,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface DeleteEnvironmentMembershipCommandInput
8
- extends DeleteEnvironmentMembershipRequest {}
7
+ export interface DeleteEnvironmentMembershipCommandInput extends DeleteEnvironmentMembershipRequest {}
9
8
  export interface DeleteEnvironmentMembershipCommandOutput
10
- extends DeleteEnvironmentMembershipResult,
11
- __MetadataBearer {}
9
+ extends DeleteEnvironmentMembershipResult, __MetadataBearer {}
12
10
  declare const DeleteEnvironmentMembershipCommand_base: {
13
11
  new (
14
- input: DeleteEnvironmentMembershipCommandInput
12
+ input: DeleteEnvironmentMembershipCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  DeleteEnvironmentMembershipCommandInput,
17
15
  DeleteEnvironmentMembershipCommandOutput,
@@ -20,7 +18,7 @@ declare const DeleteEnvironmentMembershipCommand_base: {
20
18
  import("..").ServiceOutputTypes
21
19
  >;
22
20
  new (
23
- input: DeleteEnvironmentMembershipCommandInput
21
+ input: DeleteEnvironmentMembershipCommandInput,
24
22
  ): import("@smithy/core/client").CommandImpl<
25
23
  DeleteEnvironmentMembershipCommandInput,
26
24
  DeleteEnvironmentMembershipCommandOutput,
@@ -4,14 +4,12 @@ import {
4
4
  DescribeEnvironmentMembershipsResult,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface DescribeEnvironmentMembershipsCommandInput
8
- extends DescribeEnvironmentMembershipsRequest {}
7
+ export interface DescribeEnvironmentMembershipsCommandInput extends DescribeEnvironmentMembershipsRequest {}
9
8
  export interface DescribeEnvironmentMembershipsCommandOutput
10
- extends DescribeEnvironmentMembershipsResult,
11
- __MetadataBearer {}
9
+ extends DescribeEnvironmentMembershipsResult, __MetadataBearer {}
12
10
  declare const DescribeEnvironmentMembershipsCommand_base: {
13
11
  new (
14
- input: DescribeEnvironmentMembershipsCommandInput
12
+ input: DescribeEnvironmentMembershipsCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  DescribeEnvironmentMembershipsCommandInput,
17
15
  DescribeEnvironmentMembershipsCommandOutput,
@@ -4,14 +4,12 @@ import {
4
4
  DescribeEnvironmentStatusResult,
5
5
  } from "../models/models_0";
6
6
  export { __MetadataBearer };
7
- export interface DescribeEnvironmentStatusCommandInput
8
- extends DescribeEnvironmentStatusRequest {}
7
+ export interface DescribeEnvironmentStatusCommandInput extends DescribeEnvironmentStatusRequest {}
9
8
  export interface DescribeEnvironmentStatusCommandOutput
10
- extends DescribeEnvironmentStatusResult,
11
- __MetadataBearer {}
9
+ extends DescribeEnvironmentStatusResult, __MetadataBearer {}
12
10
  declare const DescribeEnvironmentStatusCommand_base: {
13
11
  new (
14
- input: DescribeEnvironmentStatusCommandInput
12
+ input: DescribeEnvironmentStatusCommandInput,
15
13
  ): import("@smithy/core/client").CommandImpl<
16
14
  DescribeEnvironmentStatusCommandInput,
17
15
  DescribeEnvironmentStatusCommandOutput,
@@ -20,7 +18,7 @@ declare const DescribeEnvironmentStatusCommand_base: {
20
18
  import("..").ServiceOutputTypes
21
19
  >;
22
20
  new (
23
- input: DescribeEnvironmentStatusCommandInput
21
+ input: DescribeEnvironmentStatusCommandInput,
24
22
  ): import("@smithy/core/client").CommandImpl<
25
23
  DescribeEnvironmentStatusCommandInput,
26
24
  DescribeEnvironmentStatusCommandOutput,
@@ -1,17 +1,12 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- DescribeEnvironmentsRequest,
4
- DescribeEnvironmentsResult,
5
- } from "../models/models_0";
2
+ import { DescribeEnvironmentsRequest, DescribeEnvironmentsResult } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
- export interface DescribeEnvironmentsCommandInput
8
- extends DescribeEnvironmentsRequest {}
4
+ export interface DescribeEnvironmentsCommandInput extends DescribeEnvironmentsRequest {}
9
5
  export interface DescribeEnvironmentsCommandOutput
10
- extends DescribeEnvironmentsResult,
11
- __MetadataBearer {}
6
+ extends DescribeEnvironmentsResult, __MetadataBearer {}
12
7
  declare const DescribeEnvironmentsCommand_base: {
13
8
  new (
14
- input: DescribeEnvironmentsCommandInput
9
+ input: DescribeEnvironmentsCommandInput,
15
10
  ): import("@smithy/core/client").CommandImpl<
16
11
  DescribeEnvironmentsCommandInput,
17
12
  DescribeEnvironmentsCommandOutput,
@@ -20,7 +15,7 @@ declare const DescribeEnvironmentsCommand_base: {
20
15
  import("..").ServiceOutputTypes
21
16
  >;
22
17
  new (
23
- input: DescribeEnvironmentsCommandInput
18
+ input: DescribeEnvironmentsCommandInput,
24
19
  ): import("@smithy/core/client").CommandImpl<
25
20
  DescribeEnvironmentsCommandInput,
26
21
  DescribeEnvironmentsCommandOutput,