@aws-sdk/client-emr-containers 3.1087.0 → 3.1089.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-cjs/index.js +1 -1
- package/dist-types/ts3.4/EMRContainers.d.ts +78 -95
- package/dist-types/ts3.4/EMRContainersClient.d.ts +9 -28
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CancelJobRunCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateJobTemplateCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateManagedEndpointCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateSecurityConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateVirtualClusterCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteJobTemplateCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteManagedEndpointCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteVirtualClusterCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeJobRunCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeJobTemplateCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeManagedEndpointCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeSecurityConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeVirtualClusterCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetManagedEndpointSessionCredentialsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListJobRunsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListJobTemplatesCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListManagedEndpointsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListSecurityConfigurationsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListVirtualClustersCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StartJobRunCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +3 -6
- package/dist-types/ts3.4/models/errors.d.ts +5 -15
- package/dist-types/ts3.4/models/models_0.d.ts +6 -18
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListJobRunsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -59,10 +59,7 @@ import {
|
|
|
59
59
|
GetManagedEndpointSessionCredentialsCommandInput,
|
|
60
60
|
GetManagedEndpointSessionCredentialsCommandOutput,
|
|
61
61
|
} from "./commands/GetManagedEndpointSessionCredentialsCommand";
|
|
62
|
-
import {
|
|
63
|
-
ListJobRunsCommandInput,
|
|
64
|
-
ListJobRunsCommandOutput,
|
|
65
|
-
} from "./commands/ListJobRunsCommand";
|
|
62
|
+
import { ListJobRunsCommandInput, ListJobRunsCommandOutput } from "./commands/ListJobRunsCommand";
|
|
66
63
|
import {
|
|
67
64
|
ListJobTemplatesCommandInput,
|
|
68
65
|
ListJobTemplatesCommandOutput,
|
|
@@ -83,14 +80,8 @@ import {
|
|
|
83
80
|
ListVirtualClustersCommandInput,
|
|
84
81
|
ListVirtualClustersCommandOutput,
|
|
85
82
|
} from "./commands/ListVirtualClustersCommand";
|
|
86
|
-
import {
|
|
87
|
-
|
|
88
|
-
StartJobRunCommandOutput,
|
|
89
|
-
} from "./commands/StartJobRunCommand";
|
|
90
|
-
import {
|
|
91
|
-
TagResourceCommandInput,
|
|
92
|
-
TagResourceCommandOutput,
|
|
93
|
-
} from "./commands/TagResourceCommand";
|
|
83
|
+
import { StartJobRunCommandInput, StartJobRunCommandOutput } from "./commands/StartJobRunCommand";
|
|
84
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
94
85
|
import {
|
|
95
86
|
UntagResourceCommandInput,
|
|
96
87
|
UntagResourceCommandOutput,
|
|
@@ -99,348 +90,340 @@ import { EMRContainersClient } from "./EMRContainersClient";
|
|
|
99
90
|
export interface EMRContainers {
|
|
100
91
|
cancelJobRun(
|
|
101
92
|
args: CancelJobRunCommandInput,
|
|
102
|
-
options?: __HttpHandlerOptions
|
|
93
|
+
options?: __HttpHandlerOptions,
|
|
103
94
|
): Promise<CancelJobRunCommandOutput>;
|
|
104
95
|
cancelJobRun(
|
|
105
96
|
args: CancelJobRunCommandInput,
|
|
106
|
-
cb: (err: any, data?: CancelJobRunCommandOutput) => void
|
|
97
|
+
cb: (err: any, data?: CancelJobRunCommandOutput) => void,
|
|
107
98
|
): void;
|
|
108
99
|
cancelJobRun(
|
|
109
100
|
args: CancelJobRunCommandInput,
|
|
110
101
|
options: __HttpHandlerOptions,
|
|
111
|
-
cb: (err: any, data?: CancelJobRunCommandOutput) => void
|
|
102
|
+
cb: (err: any, data?: CancelJobRunCommandOutput) => void,
|
|
112
103
|
): void;
|
|
113
104
|
createJobTemplate(
|
|
114
105
|
args: CreateJobTemplateCommandInput,
|
|
115
|
-
options?: __HttpHandlerOptions
|
|
106
|
+
options?: __HttpHandlerOptions,
|
|
116
107
|
): Promise<CreateJobTemplateCommandOutput>;
|
|
117
108
|
createJobTemplate(
|
|
118
109
|
args: CreateJobTemplateCommandInput,
|
|
119
|
-
cb: (err: any, data?: CreateJobTemplateCommandOutput) => void
|
|
110
|
+
cb: (err: any, data?: CreateJobTemplateCommandOutput) => void,
|
|
120
111
|
): void;
|
|
121
112
|
createJobTemplate(
|
|
122
113
|
args: CreateJobTemplateCommandInput,
|
|
123
114
|
options: __HttpHandlerOptions,
|
|
124
|
-
cb: (err: any, data?: CreateJobTemplateCommandOutput) => void
|
|
115
|
+
cb: (err: any, data?: CreateJobTemplateCommandOutput) => void,
|
|
125
116
|
): void;
|
|
126
117
|
createManagedEndpoint(
|
|
127
118
|
args: CreateManagedEndpointCommandInput,
|
|
128
|
-
options?: __HttpHandlerOptions
|
|
119
|
+
options?: __HttpHandlerOptions,
|
|
129
120
|
): Promise<CreateManagedEndpointCommandOutput>;
|
|
130
121
|
createManagedEndpoint(
|
|
131
122
|
args: CreateManagedEndpointCommandInput,
|
|
132
|
-
cb: (err: any, data?: CreateManagedEndpointCommandOutput) => void
|
|
123
|
+
cb: (err: any, data?: CreateManagedEndpointCommandOutput) => void,
|
|
133
124
|
): void;
|
|
134
125
|
createManagedEndpoint(
|
|
135
126
|
args: CreateManagedEndpointCommandInput,
|
|
136
127
|
options: __HttpHandlerOptions,
|
|
137
|
-
cb: (err: any, data?: CreateManagedEndpointCommandOutput) => void
|
|
128
|
+
cb: (err: any, data?: CreateManagedEndpointCommandOutput) => void,
|
|
138
129
|
): void;
|
|
139
130
|
createSecurityConfiguration(
|
|
140
131
|
args: CreateSecurityConfigurationCommandInput,
|
|
141
|
-
options?: __HttpHandlerOptions
|
|
132
|
+
options?: __HttpHandlerOptions,
|
|
142
133
|
): Promise<CreateSecurityConfigurationCommandOutput>;
|
|
143
134
|
createSecurityConfiguration(
|
|
144
135
|
args: CreateSecurityConfigurationCommandInput,
|
|
145
|
-
cb: (err: any, data?: CreateSecurityConfigurationCommandOutput) => void
|
|
136
|
+
cb: (err: any, data?: CreateSecurityConfigurationCommandOutput) => void,
|
|
146
137
|
): void;
|
|
147
138
|
createSecurityConfiguration(
|
|
148
139
|
args: CreateSecurityConfigurationCommandInput,
|
|
149
140
|
options: __HttpHandlerOptions,
|
|
150
|
-
cb: (err: any, data?: CreateSecurityConfigurationCommandOutput) => void
|
|
141
|
+
cb: (err: any, data?: CreateSecurityConfigurationCommandOutput) => void,
|
|
151
142
|
): void;
|
|
152
143
|
createVirtualCluster(
|
|
153
144
|
args: CreateVirtualClusterCommandInput,
|
|
154
|
-
options?: __HttpHandlerOptions
|
|
145
|
+
options?: __HttpHandlerOptions,
|
|
155
146
|
): Promise<CreateVirtualClusterCommandOutput>;
|
|
156
147
|
createVirtualCluster(
|
|
157
148
|
args: CreateVirtualClusterCommandInput,
|
|
158
|
-
cb: (err: any, data?: CreateVirtualClusterCommandOutput) => void
|
|
149
|
+
cb: (err: any, data?: CreateVirtualClusterCommandOutput) => void,
|
|
159
150
|
): void;
|
|
160
151
|
createVirtualCluster(
|
|
161
152
|
args: CreateVirtualClusterCommandInput,
|
|
162
153
|
options: __HttpHandlerOptions,
|
|
163
|
-
cb: (err: any, data?: CreateVirtualClusterCommandOutput) => void
|
|
154
|
+
cb: (err: any, data?: CreateVirtualClusterCommandOutput) => void,
|
|
164
155
|
): void;
|
|
165
156
|
deleteJobTemplate(
|
|
166
157
|
args: DeleteJobTemplateCommandInput,
|
|
167
|
-
options?: __HttpHandlerOptions
|
|
158
|
+
options?: __HttpHandlerOptions,
|
|
168
159
|
): Promise<DeleteJobTemplateCommandOutput>;
|
|
169
160
|
deleteJobTemplate(
|
|
170
161
|
args: DeleteJobTemplateCommandInput,
|
|
171
|
-
cb: (err: any, data?: DeleteJobTemplateCommandOutput) => void
|
|
162
|
+
cb: (err: any, data?: DeleteJobTemplateCommandOutput) => void,
|
|
172
163
|
): void;
|
|
173
164
|
deleteJobTemplate(
|
|
174
165
|
args: DeleteJobTemplateCommandInput,
|
|
175
166
|
options: __HttpHandlerOptions,
|
|
176
|
-
cb: (err: any, data?: DeleteJobTemplateCommandOutput) => void
|
|
167
|
+
cb: (err: any, data?: DeleteJobTemplateCommandOutput) => void,
|
|
177
168
|
): void;
|
|
178
169
|
deleteManagedEndpoint(
|
|
179
170
|
args: DeleteManagedEndpointCommandInput,
|
|
180
|
-
options?: __HttpHandlerOptions
|
|
171
|
+
options?: __HttpHandlerOptions,
|
|
181
172
|
): Promise<DeleteManagedEndpointCommandOutput>;
|
|
182
173
|
deleteManagedEndpoint(
|
|
183
174
|
args: DeleteManagedEndpointCommandInput,
|
|
184
|
-
cb: (err: any, data?: DeleteManagedEndpointCommandOutput) => void
|
|
175
|
+
cb: (err: any, data?: DeleteManagedEndpointCommandOutput) => void,
|
|
185
176
|
): void;
|
|
186
177
|
deleteManagedEndpoint(
|
|
187
178
|
args: DeleteManagedEndpointCommandInput,
|
|
188
179
|
options: __HttpHandlerOptions,
|
|
189
|
-
cb: (err: any, data?: DeleteManagedEndpointCommandOutput) => void
|
|
180
|
+
cb: (err: any, data?: DeleteManagedEndpointCommandOutput) => void,
|
|
190
181
|
): void;
|
|
191
182
|
deleteVirtualCluster(
|
|
192
183
|
args: DeleteVirtualClusterCommandInput,
|
|
193
|
-
options?: __HttpHandlerOptions
|
|
184
|
+
options?: __HttpHandlerOptions,
|
|
194
185
|
): Promise<DeleteVirtualClusterCommandOutput>;
|
|
195
186
|
deleteVirtualCluster(
|
|
196
187
|
args: DeleteVirtualClusterCommandInput,
|
|
197
|
-
cb: (err: any, data?: DeleteVirtualClusterCommandOutput) => void
|
|
188
|
+
cb: (err: any, data?: DeleteVirtualClusterCommandOutput) => void,
|
|
198
189
|
): void;
|
|
199
190
|
deleteVirtualCluster(
|
|
200
191
|
args: DeleteVirtualClusterCommandInput,
|
|
201
192
|
options: __HttpHandlerOptions,
|
|
202
|
-
cb: (err: any, data?: DeleteVirtualClusterCommandOutput) => void
|
|
193
|
+
cb: (err: any, data?: DeleteVirtualClusterCommandOutput) => void,
|
|
203
194
|
): void;
|
|
204
195
|
describeJobRun(
|
|
205
196
|
args: DescribeJobRunCommandInput,
|
|
206
|
-
options?: __HttpHandlerOptions
|
|
197
|
+
options?: __HttpHandlerOptions,
|
|
207
198
|
): Promise<DescribeJobRunCommandOutput>;
|
|
208
199
|
describeJobRun(
|
|
209
200
|
args: DescribeJobRunCommandInput,
|
|
210
|
-
cb: (err: any, data?: DescribeJobRunCommandOutput) => void
|
|
201
|
+
cb: (err: any, data?: DescribeJobRunCommandOutput) => void,
|
|
211
202
|
): void;
|
|
212
203
|
describeJobRun(
|
|
213
204
|
args: DescribeJobRunCommandInput,
|
|
214
205
|
options: __HttpHandlerOptions,
|
|
215
|
-
cb: (err: any, data?: DescribeJobRunCommandOutput) => void
|
|
206
|
+
cb: (err: any, data?: DescribeJobRunCommandOutput) => void,
|
|
216
207
|
): void;
|
|
217
208
|
describeJobTemplate(
|
|
218
209
|
args: DescribeJobTemplateCommandInput,
|
|
219
|
-
options?: __HttpHandlerOptions
|
|
210
|
+
options?: __HttpHandlerOptions,
|
|
220
211
|
): Promise<DescribeJobTemplateCommandOutput>;
|
|
221
212
|
describeJobTemplate(
|
|
222
213
|
args: DescribeJobTemplateCommandInput,
|
|
223
|
-
cb: (err: any, data?: DescribeJobTemplateCommandOutput) => void
|
|
214
|
+
cb: (err: any, data?: DescribeJobTemplateCommandOutput) => void,
|
|
224
215
|
): void;
|
|
225
216
|
describeJobTemplate(
|
|
226
217
|
args: DescribeJobTemplateCommandInput,
|
|
227
218
|
options: __HttpHandlerOptions,
|
|
228
|
-
cb: (err: any, data?: DescribeJobTemplateCommandOutput) => void
|
|
219
|
+
cb: (err: any, data?: DescribeJobTemplateCommandOutput) => void,
|
|
229
220
|
): void;
|
|
230
221
|
describeManagedEndpoint(
|
|
231
222
|
args: DescribeManagedEndpointCommandInput,
|
|
232
|
-
options?: __HttpHandlerOptions
|
|
223
|
+
options?: __HttpHandlerOptions,
|
|
233
224
|
): Promise<DescribeManagedEndpointCommandOutput>;
|
|
234
225
|
describeManagedEndpoint(
|
|
235
226
|
args: DescribeManagedEndpointCommandInput,
|
|
236
|
-
cb: (err: any, data?: DescribeManagedEndpointCommandOutput) => void
|
|
227
|
+
cb: (err: any, data?: DescribeManagedEndpointCommandOutput) => void,
|
|
237
228
|
): void;
|
|
238
229
|
describeManagedEndpoint(
|
|
239
230
|
args: DescribeManagedEndpointCommandInput,
|
|
240
231
|
options: __HttpHandlerOptions,
|
|
241
|
-
cb: (err: any, data?: DescribeManagedEndpointCommandOutput) => void
|
|
232
|
+
cb: (err: any, data?: DescribeManagedEndpointCommandOutput) => void,
|
|
242
233
|
): void;
|
|
243
234
|
describeSecurityConfiguration(
|
|
244
235
|
args: DescribeSecurityConfigurationCommandInput,
|
|
245
|
-
options?: __HttpHandlerOptions
|
|
236
|
+
options?: __HttpHandlerOptions,
|
|
246
237
|
): Promise<DescribeSecurityConfigurationCommandOutput>;
|
|
247
238
|
describeSecurityConfiguration(
|
|
248
239
|
args: DescribeSecurityConfigurationCommandInput,
|
|
249
|
-
cb: (err: any, data?: DescribeSecurityConfigurationCommandOutput) => void
|
|
240
|
+
cb: (err: any, data?: DescribeSecurityConfigurationCommandOutput) => void,
|
|
250
241
|
): void;
|
|
251
242
|
describeSecurityConfiguration(
|
|
252
243
|
args: DescribeSecurityConfigurationCommandInput,
|
|
253
244
|
options: __HttpHandlerOptions,
|
|
254
|
-
cb: (err: any, data?: DescribeSecurityConfigurationCommandOutput) => void
|
|
245
|
+
cb: (err: any, data?: DescribeSecurityConfigurationCommandOutput) => void,
|
|
255
246
|
): void;
|
|
256
247
|
describeVirtualCluster(
|
|
257
248
|
args: DescribeVirtualClusterCommandInput,
|
|
258
|
-
options?: __HttpHandlerOptions
|
|
249
|
+
options?: __HttpHandlerOptions,
|
|
259
250
|
): Promise<DescribeVirtualClusterCommandOutput>;
|
|
260
251
|
describeVirtualCluster(
|
|
261
252
|
args: DescribeVirtualClusterCommandInput,
|
|
262
|
-
cb: (err: any, data?: DescribeVirtualClusterCommandOutput) => void
|
|
253
|
+
cb: (err: any, data?: DescribeVirtualClusterCommandOutput) => void,
|
|
263
254
|
): void;
|
|
264
255
|
describeVirtualCluster(
|
|
265
256
|
args: DescribeVirtualClusterCommandInput,
|
|
266
257
|
options: __HttpHandlerOptions,
|
|
267
|
-
cb: (err: any, data?: DescribeVirtualClusterCommandOutput) => void
|
|
258
|
+
cb: (err: any, data?: DescribeVirtualClusterCommandOutput) => void,
|
|
268
259
|
): void;
|
|
269
260
|
getManagedEndpointSessionCredentials(
|
|
270
261
|
args: GetManagedEndpointSessionCredentialsCommandInput,
|
|
271
|
-
options?: __HttpHandlerOptions
|
|
262
|
+
options?: __HttpHandlerOptions,
|
|
272
263
|
): Promise<GetManagedEndpointSessionCredentialsCommandOutput>;
|
|
273
264
|
getManagedEndpointSessionCredentials(
|
|
274
265
|
args: GetManagedEndpointSessionCredentialsCommandInput,
|
|
275
|
-
cb: (
|
|
276
|
-
err: any,
|
|
277
|
-
data?: GetManagedEndpointSessionCredentialsCommandOutput
|
|
278
|
-
) => void
|
|
266
|
+
cb: (err: any, data?: GetManagedEndpointSessionCredentialsCommandOutput) => void,
|
|
279
267
|
): void;
|
|
280
268
|
getManagedEndpointSessionCredentials(
|
|
281
269
|
args: GetManagedEndpointSessionCredentialsCommandInput,
|
|
282
270
|
options: __HttpHandlerOptions,
|
|
283
|
-
cb: (
|
|
284
|
-
err: any,
|
|
285
|
-
data?: GetManagedEndpointSessionCredentialsCommandOutput
|
|
286
|
-
) => void
|
|
271
|
+
cb: (err: any, data?: GetManagedEndpointSessionCredentialsCommandOutput) => void,
|
|
287
272
|
): void;
|
|
288
273
|
listJobRuns(
|
|
289
274
|
args: ListJobRunsCommandInput,
|
|
290
|
-
options?: __HttpHandlerOptions
|
|
275
|
+
options?: __HttpHandlerOptions,
|
|
291
276
|
): Promise<ListJobRunsCommandOutput>;
|
|
292
277
|
listJobRuns(
|
|
293
278
|
args: ListJobRunsCommandInput,
|
|
294
|
-
cb: (err: any, data?: ListJobRunsCommandOutput) => void
|
|
279
|
+
cb: (err: any, data?: ListJobRunsCommandOutput) => void,
|
|
295
280
|
): void;
|
|
296
281
|
listJobRuns(
|
|
297
282
|
args: ListJobRunsCommandInput,
|
|
298
283
|
options: __HttpHandlerOptions,
|
|
299
|
-
cb: (err: any, data?: ListJobRunsCommandOutput) => void
|
|
284
|
+
cb: (err: any, data?: ListJobRunsCommandOutput) => void,
|
|
300
285
|
): void;
|
|
301
286
|
listJobTemplates(): Promise<ListJobTemplatesCommandOutput>;
|
|
302
287
|
listJobTemplates(
|
|
303
288
|
args: ListJobTemplatesCommandInput,
|
|
304
|
-
options?: __HttpHandlerOptions
|
|
289
|
+
options?: __HttpHandlerOptions,
|
|
305
290
|
): Promise<ListJobTemplatesCommandOutput>;
|
|
306
291
|
listJobTemplates(
|
|
307
292
|
args: ListJobTemplatesCommandInput,
|
|
308
|
-
cb: (err: any, data?: ListJobTemplatesCommandOutput) => void
|
|
293
|
+
cb: (err: any, data?: ListJobTemplatesCommandOutput) => void,
|
|
309
294
|
): void;
|
|
310
295
|
listJobTemplates(
|
|
311
296
|
args: ListJobTemplatesCommandInput,
|
|
312
297
|
options: __HttpHandlerOptions,
|
|
313
|
-
cb: (err: any, data?: ListJobTemplatesCommandOutput) => void
|
|
298
|
+
cb: (err: any, data?: ListJobTemplatesCommandOutput) => void,
|
|
314
299
|
): void;
|
|
315
300
|
listManagedEndpoints(
|
|
316
301
|
args: ListManagedEndpointsCommandInput,
|
|
317
|
-
options?: __HttpHandlerOptions
|
|
302
|
+
options?: __HttpHandlerOptions,
|
|
318
303
|
): Promise<ListManagedEndpointsCommandOutput>;
|
|
319
304
|
listManagedEndpoints(
|
|
320
305
|
args: ListManagedEndpointsCommandInput,
|
|
321
|
-
cb: (err: any, data?: ListManagedEndpointsCommandOutput) => void
|
|
306
|
+
cb: (err: any, data?: ListManagedEndpointsCommandOutput) => void,
|
|
322
307
|
): void;
|
|
323
308
|
listManagedEndpoints(
|
|
324
309
|
args: ListManagedEndpointsCommandInput,
|
|
325
310
|
options: __HttpHandlerOptions,
|
|
326
|
-
cb: (err: any, data?: ListManagedEndpointsCommandOutput) => void
|
|
311
|
+
cb: (err: any, data?: ListManagedEndpointsCommandOutput) => void,
|
|
327
312
|
): void;
|
|
328
313
|
listSecurityConfigurations(): Promise<ListSecurityConfigurationsCommandOutput>;
|
|
329
314
|
listSecurityConfigurations(
|
|
330
315
|
args: ListSecurityConfigurationsCommandInput,
|
|
331
|
-
options?: __HttpHandlerOptions
|
|
316
|
+
options?: __HttpHandlerOptions,
|
|
332
317
|
): Promise<ListSecurityConfigurationsCommandOutput>;
|
|
333
318
|
listSecurityConfigurations(
|
|
334
319
|
args: ListSecurityConfigurationsCommandInput,
|
|
335
|
-
cb: (err: any, data?: ListSecurityConfigurationsCommandOutput) => void
|
|
320
|
+
cb: (err: any, data?: ListSecurityConfigurationsCommandOutput) => void,
|
|
336
321
|
): void;
|
|
337
322
|
listSecurityConfigurations(
|
|
338
323
|
args: ListSecurityConfigurationsCommandInput,
|
|
339
324
|
options: __HttpHandlerOptions,
|
|
340
|
-
cb: (err: any, data?: ListSecurityConfigurationsCommandOutput) => void
|
|
325
|
+
cb: (err: any, data?: ListSecurityConfigurationsCommandOutput) => void,
|
|
341
326
|
): void;
|
|
342
327
|
listTagsForResource(
|
|
343
328
|
args: ListTagsForResourceCommandInput,
|
|
344
|
-
options?: __HttpHandlerOptions
|
|
329
|
+
options?: __HttpHandlerOptions,
|
|
345
330
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
346
331
|
listTagsForResource(
|
|
347
332
|
args: ListTagsForResourceCommandInput,
|
|
348
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
333
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
349
334
|
): void;
|
|
350
335
|
listTagsForResource(
|
|
351
336
|
args: ListTagsForResourceCommandInput,
|
|
352
337
|
options: __HttpHandlerOptions,
|
|
353
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
338
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
354
339
|
): void;
|
|
355
340
|
listVirtualClusters(): Promise<ListVirtualClustersCommandOutput>;
|
|
356
341
|
listVirtualClusters(
|
|
357
342
|
args: ListVirtualClustersCommandInput,
|
|
358
|
-
options?: __HttpHandlerOptions
|
|
343
|
+
options?: __HttpHandlerOptions,
|
|
359
344
|
): Promise<ListVirtualClustersCommandOutput>;
|
|
360
345
|
listVirtualClusters(
|
|
361
346
|
args: ListVirtualClustersCommandInput,
|
|
362
|
-
cb: (err: any, data?: ListVirtualClustersCommandOutput) => void
|
|
347
|
+
cb: (err: any, data?: ListVirtualClustersCommandOutput) => void,
|
|
363
348
|
): void;
|
|
364
349
|
listVirtualClusters(
|
|
365
350
|
args: ListVirtualClustersCommandInput,
|
|
366
351
|
options: __HttpHandlerOptions,
|
|
367
|
-
cb: (err: any, data?: ListVirtualClustersCommandOutput) => void
|
|
352
|
+
cb: (err: any, data?: ListVirtualClustersCommandOutput) => void,
|
|
368
353
|
): void;
|
|
369
354
|
startJobRun(
|
|
370
355
|
args: StartJobRunCommandInput,
|
|
371
|
-
options?: __HttpHandlerOptions
|
|
356
|
+
options?: __HttpHandlerOptions,
|
|
372
357
|
): Promise<StartJobRunCommandOutput>;
|
|
373
358
|
startJobRun(
|
|
374
359
|
args: StartJobRunCommandInput,
|
|
375
|
-
cb: (err: any, data?: StartJobRunCommandOutput) => void
|
|
360
|
+
cb: (err: any, data?: StartJobRunCommandOutput) => void,
|
|
376
361
|
): void;
|
|
377
362
|
startJobRun(
|
|
378
363
|
args: StartJobRunCommandInput,
|
|
379
364
|
options: __HttpHandlerOptions,
|
|
380
|
-
cb: (err: any, data?: StartJobRunCommandOutput) => void
|
|
365
|
+
cb: (err: any, data?: StartJobRunCommandOutput) => void,
|
|
381
366
|
): void;
|
|
382
367
|
tagResource(
|
|
383
368
|
args: TagResourceCommandInput,
|
|
384
|
-
options?: __HttpHandlerOptions
|
|
369
|
+
options?: __HttpHandlerOptions,
|
|
385
370
|
): Promise<TagResourceCommandOutput>;
|
|
386
371
|
tagResource(
|
|
387
372
|
args: TagResourceCommandInput,
|
|
388
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
373
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
389
374
|
): void;
|
|
390
375
|
tagResource(
|
|
391
376
|
args: TagResourceCommandInput,
|
|
392
377
|
options: __HttpHandlerOptions,
|
|
393
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
378
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
394
379
|
): void;
|
|
395
380
|
untagResource(
|
|
396
381
|
args: UntagResourceCommandInput,
|
|
397
|
-
options?: __HttpHandlerOptions
|
|
382
|
+
options?: __HttpHandlerOptions,
|
|
398
383
|
): Promise<UntagResourceCommandOutput>;
|
|
399
384
|
untagResource(
|
|
400
385
|
args: UntagResourceCommandInput,
|
|
401
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
386
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
402
387
|
): void;
|
|
403
388
|
untagResource(
|
|
404
389
|
args: UntagResourceCommandInput,
|
|
405
390
|
options: __HttpHandlerOptions,
|
|
406
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
391
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
407
392
|
): void;
|
|
408
393
|
paginateListJobRuns(
|
|
409
394
|
args: ListJobRunsCommandInput,
|
|
410
395
|
paginationConfig?: Pick<
|
|
411
396
|
PaginationConfiguration,
|
|
412
397
|
Exclude<keyof PaginationConfiguration, "client">
|
|
413
|
-
|
|
398
|
+
>,
|
|
414
399
|
): Paginator<ListJobRunsCommandOutput>;
|
|
415
400
|
paginateListJobTemplates(
|
|
416
401
|
args?: ListJobTemplatesCommandInput,
|
|
417
402
|
paginationConfig?: Pick<
|
|
418
403
|
PaginationConfiguration,
|
|
419
404
|
Exclude<keyof PaginationConfiguration, "client">
|
|
420
|
-
|
|
405
|
+
>,
|
|
421
406
|
): Paginator<ListJobTemplatesCommandOutput>;
|
|
422
407
|
paginateListManagedEndpoints(
|
|
423
408
|
args: ListManagedEndpointsCommandInput,
|
|
424
409
|
paginationConfig?: Pick<
|
|
425
410
|
PaginationConfiguration,
|
|
426
411
|
Exclude<keyof PaginationConfiguration, "client">
|
|
427
|
-
|
|
412
|
+
>,
|
|
428
413
|
): Paginator<ListManagedEndpointsCommandOutput>;
|
|
429
414
|
paginateListSecurityConfigurations(
|
|
430
415
|
args?: ListSecurityConfigurationsCommandInput,
|
|
431
416
|
paginationConfig?: Pick<
|
|
432
417
|
PaginationConfiguration,
|
|
433
418
|
Exclude<keyof PaginationConfiguration, "client">
|
|
434
|
-
|
|
419
|
+
>,
|
|
435
420
|
): Paginator<ListSecurityConfigurationsCommandOutput>;
|
|
436
421
|
paginateListVirtualClusters(
|
|
437
422
|
args?: ListVirtualClustersCommandInput,
|
|
438
423
|
paginationConfig?: Pick<
|
|
439
424
|
PaginationConfiguration,
|
|
440
425
|
Exclude<keyof PaginationConfiguration, "client">
|
|
441
|
-
|
|
426
|
+
>,
|
|
442
427
|
): Paginator<ListVirtualClustersCommandOutput>;
|
|
443
428
|
}
|
|
444
|
-
export declare class EMRContainers
|
|
445
|
-
extends EMRContainersClient
|
|
446
|
-
implements EMRContainers {}
|
|
429
|
+
export declare class EMRContainers extends EMRContainersClient implements EMRContainers {}
|
|
@@ -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 {
|
|
@@ -92,10 +89,7 @@ import {
|
|
|
92
89
|
GetManagedEndpointSessionCredentialsCommandInput,
|
|
93
90
|
GetManagedEndpointSessionCredentialsCommandOutput,
|
|
94
91
|
} from "./commands/GetManagedEndpointSessionCredentialsCommand";
|
|
95
|
-
import {
|
|
96
|
-
ListJobRunsCommandInput,
|
|
97
|
-
ListJobRunsCommandOutput,
|
|
98
|
-
} from "./commands/ListJobRunsCommand";
|
|
92
|
+
import { ListJobRunsCommandInput, ListJobRunsCommandOutput } from "./commands/ListJobRunsCommand";
|
|
99
93
|
import {
|
|
100
94
|
ListJobTemplatesCommandInput,
|
|
101
95
|
ListJobTemplatesCommandOutput,
|
|
@@ -116,14 +110,8 @@ import {
|
|
|
116
110
|
ListVirtualClustersCommandInput,
|
|
117
111
|
ListVirtualClustersCommandOutput,
|
|
118
112
|
} from "./commands/ListVirtualClustersCommand";
|
|
119
|
-
import {
|
|
120
|
-
|
|
121
|
-
StartJobRunCommandOutput,
|
|
122
|
-
} from "./commands/StartJobRunCommand";
|
|
123
|
-
import {
|
|
124
|
-
TagResourceCommandInput,
|
|
125
|
-
TagResourceCommandOutput,
|
|
126
|
-
} from "./commands/TagResourceCommand";
|
|
113
|
+
import { StartJobRunCommandInput, StartJobRunCommandOutput } from "./commands/StartJobRunCommand";
|
|
114
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
127
115
|
import {
|
|
128
116
|
UntagResourceCommandInput,
|
|
129
117
|
UntagResourceCommandOutput,
|
|
@@ -183,8 +171,7 @@ export type ServiceOutputTypes =
|
|
|
183
171
|
| StartJobRunCommandOutput
|
|
184
172
|
| TagResourceCommandOutput
|
|
185
173
|
| UntagResourceCommandOutput;
|
|
186
|
-
export interface ClientDefaults
|
|
187
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
174
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
188
175
|
requestHandler?: __HttpHandlerUserInput;
|
|
189
176
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
190
177
|
urlParser?: __UrlParser;
|
|
@@ -209,9 +196,7 @@ export interface ClientDefaults
|
|
|
209
196
|
extensions?: RuntimeExtension[];
|
|
210
197
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
211
198
|
}
|
|
212
|
-
export type EMRContainersClientConfigType = Partial<
|
|
213
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
214
|
-
> &
|
|
199
|
+
export type EMRContainersClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
215
200
|
ClientDefaults &
|
|
216
201
|
UserAgentInputConfig &
|
|
217
202
|
RetryInputConfig &
|
|
@@ -220,8 +205,7 @@ export type EMRContainersClientConfigType = Partial<
|
|
|
220
205
|
EndpointInputConfig<EndpointParameters> &
|
|
221
206
|
HttpAuthSchemeInputConfig &
|
|
222
207
|
ClientInputEndpointParameters;
|
|
223
|
-
export interface EMRContainersClientConfig
|
|
224
|
-
extends EMRContainersClientConfigType {}
|
|
208
|
+
export interface EMRContainersClientConfig extends EMRContainersClientConfigType {}
|
|
225
209
|
export type EMRContainersClientResolvedConfigType =
|
|
226
210
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
227
211
|
Required<ClientDefaults> &
|
|
@@ -233,8 +217,7 @@ export type EMRContainersClientResolvedConfigType =
|
|
|
233
217
|
EndpointResolvedConfig<EndpointParameters> &
|
|
234
218
|
HttpAuthSchemeResolvedConfig &
|
|
235
219
|
ClientResolvedEndpointParameters;
|
|
236
|
-
export interface EMRContainersClientResolvedConfig
|
|
237
|
-
extends EMRContainersClientResolvedConfigType {}
|
|
220
|
+
export interface EMRContainersClientResolvedConfig extends EMRContainersClientResolvedConfigType {}
|
|
238
221
|
export declare class EMRContainersClient extends __Client<
|
|
239
222
|
__HttpHandlerOptions,
|
|
240
223
|
ServiceInputTypes,
|
|
@@ -242,8 +225,6 @@ export declare class EMRContainersClient extends __Client<
|
|
|
242
225
|
EMRContainersClientResolvedConfig
|
|
243
226
|
> {
|
|
244
227
|
readonly config: EMRContainersClientResolvedConfig;
|
|
245
|
-
constructor(
|
|
246
|
-
...[configuration]: __CheckOptionalClientConfig<EMRContainersClientConfig>
|
|
247
|
-
);
|
|
228
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<EMRContainersClientConfig>);
|
|
248
229
|
destroy(): void;
|
|
249
230
|
}
|
|
@@ -7,17 +7,10 @@ import { EMRContainersHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: EMRContainersHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: EMRContainersHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): EMRContainersHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
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 { EMRContainersClientResolvedConfig } from "../EMRContainersClient";
|
|
15
|
-
export interface EMRContainersHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface EMRContainersHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface EMRContainersHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface EMRContainersHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
EMRContainersClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
EMRContainersHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultEMRContainersHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: EMRContainersClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<EMRContainersHttpAuthSchemeParameters>;
|
|
31
|
-
export interface EMRContainersHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<EMRContainersHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface EMRContainersHttpAuthSchemeProvider extends HttpAuthSchemeProvider<EMRContainersHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultEMRContainersHttpAuthSchemeProvider: EMRContainersHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: EMRContainersHttpAuthSchemeProvider;
|
|
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: EMRContainersHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./EMRContainersClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
EMRContainersClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|