@aws-sdk/client-emr-serverless 3.686.0 → 3.691.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +146 -146
- package/dist-types/ts3.4/models/models_0.d.ts +156 -146
- package/package.json +7 -7
|
@@ -6,66 +6,70 @@ export declare const Architecture: {
|
|
|
6
6
|
};
|
|
7
7
|
export type Architecture = (typeof Architecture)[keyof typeof Architecture];
|
|
8
8
|
export interface AutoStartConfig {
|
|
9
|
-
enabled?: boolean;
|
|
9
|
+
enabled?: boolean | undefined;
|
|
10
10
|
}
|
|
11
11
|
export interface AutoStopConfig {
|
|
12
|
-
enabled?: boolean;
|
|
13
|
-
idleTimeoutMinutes?: number;
|
|
12
|
+
enabled?: boolean | undefined;
|
|
13
|
+
idleTimeoutMinutes?: number | undefined;
|
|
14
14
|
}
|
|
15
15
|
export interface ImageConfiguration {
|
|
16
16
|
imageUri: string | undefined;
|
|
17
|
-
resolvedImageDigest?: string;
|
|
17
|
+
resolvedImageDigest?: string | undefined;
|
|
18
18
|
}
|
|
19
19
|
export interface WorkerResourceConfig {
|
|
20
20
|
cpu: string | undefined;
|
|
21
21
|
memory: string | undefined;
|
|
22
|
-
disk?: string;
|
|
23
|
-
diskType?: string;
|
|
22
|
+
disk?: string | undefined;
|
|
23
|
+
diskType?: string | undefined;
|
|
24
24
|
}
|
|
25
25
|
export interface InitialCapacityConfig {
|
|
26
26
|
workerCount: number | undefined;
|
|
27
|
-
workerConfiguration?: WorkerResourceConfig;
|
|
27
|
+
workerConfiguration?: WorkerResourceConfig | undefined;
|
|
28
28
|
}
|
|
29
29
|
export interface InteractiveConfiguration {
|
|
30
|
-
studioEnabled?: boolean;
|
|
31
|
-
livyEndpointEnabled?: boolean;
|
|
30
|
+
studioEnabled?: boolean | undefined;
|
|
31
|
+
livyEndpointEnabled?: boolean | undefined;
|
|
32
32
|
}
|
|
33
33
|
export interface MaximumAllowedResources {
|
|
34
34
|
cpu: string | undefined;
|
|
35
35
|
memory: string | undefined;
|
|
36
|
-
disk?: string;
|
|
36
|
+
disk?: string | undefined;
|
|
37
37
|
}
|
|
38
38
|
export interface CloudWatchLoggingConfiguration {
|
|
39
39
|
enabled: boolean | undefined;
|
|
40
|
-
logGroupName?: string;
|
|
41
|
-
logStreamNamePrefix?: string;
|
|
42
|
-
encryptionKeyArn?: string;
|
|
43
|
-
logTypes?: Record<string, string[]
|
|
40
|
+
logGroupName?: string | undefined;
|
|
41
|
+
logStreamNamePrefix?: string | undefined;
|
|
42
|
+
encryptionKeyArn?: string | undefined;
|
|
43
|
+
logTypes?: Record<string, string[]> | undefined;
|
|
44
44
|
}
|
|
45
45
|
export interface ManagedPersistenceMonitoringConfiguration {
|
|
46
|
-
enabled?: boolean;
|
|
47
|
-
encryptionKeyArn?: string;
|
|
46
|
+
enabled?: boolean | undefined;
|
|
47
|
+
encryptionKeyArn?: string | undefined;
|
|
48
48
|
}
|
|
49
49
|
export interface PrometheusMonitoringConfiguration {
|
|
50
|
-
remoteWriteUrl?: string;
|
|
50
|
+
remoteWriteUrl?: string | undefined;
|
|
51
51
|
}
|
|
52
52
|
export interface S3MonitoringConfiguration {
|
|
53
|
-
logUri?: string;
|
|
54
|
-
encryptionKeyArn?: string;
|
|
53
|
+
logUri?: string | undefined;
|
|
54
|
+
encryptionKeyArn?: string | undefined;
|
|
55
55
|
}
|
|
56
56
|
export interface MonitoringConfiguration {
|
|
57
|
-
s3MonitoringConfiguration?: S3MonitoringConfiguration;
|
|
58
|
-
managedPersistenceMonitoringConfiguration?:
|
|
59
|
-
|
|
60
|
-
|
|
57
|
+
s3MonitoringConfiguration?: S3MonitoringConfiguration | undefined;
|
|
58
|
+
managedPersistenceMonitoringConfiguration?:
|
|
59
|
+
| ManagedPersistenceMonitoringConfiguration
|
|
60
|
+
| undefined;
|
|
61
|
+
cloudWatchLoggingConfiguration?: CloudWatchLoggingConfiguration | undefined;
|
|
62
|
+
prometheusMonitoringConfiguration?:
|
|
63
|
+
| PrometheusMonitoringConfiguration
|
|
64
|
+
| undefined;
|
|
61
65
|
}
|
|
62
66
|
export interface NetworkConfiguration {
|
|
63
|
-
subnetIds?: string[];
|
|
64
|
-
securityGroupIds?: string[];
|
|
67
|
+
subnetIds?: string[] | undefined;
|
|
68
|
+
securityGroupIds?: string[] | undefined;
|
|
65
69
|
}
|
|
66
70
|
export interface SchedulerConfiguration {
|
|
67
|
-
queueTimeoutMinutes?: number;
|
|
68
|
-
maxConcurrentRuns?: number;
|
|
71
|
+
queueTimeoutMinutes?: number | undefined;
|
|
72
|
+
maxConcurrentRuns?: number | undefined;
|
|
69
73
|
}
|
|
70
74
|
export declare const ApplicationState: {
|
|
71
75
|
readonly CREATED: "CREATED";
|
|
@@ -79,19 +83,19 @@ export declare const ApplicationState: {
|
|
|
79
83
|
export type ApplicationState =
|
|
80
84
|
(typeof ApplicationState)[keyof typeof ApplicationState];
|
|
81
85
|
export interface WorkerTypeSpecification {
|
|
82
|
-
imageConfiguration?: ImageConfiguration;
|
|
86
|
+
imageConfiguration?: ImageConfiguration | undefined;
|
|
83
87
|
}
|
|
84
88
|
export interface ApplicationSummary {
|
|
85
89
|
id: string | undefined;
|
|
86
|
-
name?: string;
|
|
90
|
+
name?: string | undefined;
|
|
87
91
|
arn: string | undefined;
|
|
88
92
|
releaseLabel: string | undefined;
|
|
89
93
|
type: string | undefined;
|
|
90
94
|
state: ApplicationState | undefined;
|
|
91
|
-
stateDetails?: string;
|
|
95
|
+
stateDetails?: string | undefined;
|
|
92
96
|
createdAt: Date | undefined;
|
|
93
97
|
updatedAt: Date | undefined;
|
|
94
|
-
architecture?: Architecture;
|
|
98
|
+
architecture?: Architecture | undefined;
|
|
95
99
|
}
|
|
96
100
|
export declare class ConflictException extends __BaseException {
|
|
97
101
|
readonly name: "ConflictException";
|
|
@@ -99,14 +103,14 @@ export declare class ConflictException extends __BaseException {
|
|
|
99
103
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
100
104
|
}
|
|
101
105
|
export interface ImageConfigurationInput {
|
|
102
|
-
imageUri?: string;
|
|
106
|
+
imageUri?: string | undefined;
|
|
103
107
|
}
|
|
104
108
|
export interface WorkerTypeSpecificationInput {
|
|
105
|
-
imageConfiguration?: ImageConfigurationInput;
|
|
109
|
+
imageConfiguration?: ImageConfigurationInput | undefined;
|
|
106
110
|
}
|
|
107
111
|
export interface CreateApplicationResponse {
|
|
108
112
|
applicationId: string | undefined;
|
|
109
|
-
name?: string;
|
|
113
|
+
name?: string | undefined;
|
|
110
114
|
arn: string | undefined;
|
|
111
115
|
}
|
|
112
116
|
export declare class InternalServerException extends __BaseException {
|
|
@@ -138,13 +142,13 @@ export interface GetApplicationRequest {
|
|
|
138
142
|
applicationId: string | undefined;
|
|
139
143
|
}
|
|
140
144
|
export interface ListApplicationsRequest {
|
|
141
|
-
nextToken?: string;
|
|
142
|
-
maxResults?: number;
|
|
143
|
-
states?: ApplicationState[];
|
|
145
|
+
nextToken?: string | undefined;
|
|
146
|
+
maxResults?: number | undefined;
|
|
147
|
+
states?: ApplicationState[] | undefined;
|
|
144
148
|
}
|
|
145
149
|
export interface ListApplicationsResponse {
|
|
146
150
|
applications: ApplicationSummary[] | undefined;
|
|
147
|
-
nextToken?: string;
|
|
151
|
+
nextToken?: string | undefined;
|
|
148
152
|
}
|
|
149
153
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
150
154
|
readonly name: "ServiceQuotaExceededException";
|
|
@@ -172,30 +176,30 @@ export interface CancelJobRunResponse {
|
|
|
172
176
|
export interface GetDashboardForJobRunRequest {
|
|
173
177
|
applicationId: string | undefined;
|
|
174
178
|
jobRunId: string | undefined;
|
|
175
|
-
attempt?: number;
|
|
179
|
+
attempt?: number | undefined;
|
|
176
180
|
}
|
|
177
181
|
export interface GetDashboardForJobRunResponse {
|
|
178
|
-
url?: string;
|
|
182
|
+
url?: string | undefined;
|
|
179
183
|
}
|
|
180
184
|
export interface GetJobRunRequest {
|
|
181
185
|
applicationId: string | undefined;
|
|
182
186
|
jobRunId: string | undefined;
|
|
183
|
-
attempt?: number;
|
|
187
|
+
attempt?: number | undefined;
|
|
184
188
|
}
|
|
185
189
|
export interface ResourceUtilization {
|
|
186
|
-
vCPUHour?: number;
|
|
187
|
-
memoryGBHour?: number;
|
|
188
|
-
storageGBHour?: number;
|
|
190
|
+
vCPUHour?: number | undefined;
|
|
191
|
+
memoryGBHour?: number | undefined;
|
|
192
|
+
storageGBHour?: number | undefined;
|
|
189
193
|
}
|
|
190
194
|
export interface Hive {
|
|
191
195
|
query: string | undefined;
|
|
192
|
-
initQueryFile?: string;
|
|
193
|
-
parameters?: string;
|
|
196
|
+
initQueryFile?: string | undefined;
|
|
197
|
+
parameters?: string | undefined;
|
|
194
198
|
}
|
|
195
199
|
export interface SparkSubmit {
|
|
196
200
|
entryPoint: string | undefined;
|
|
197
|
-
entryPointArguments?: string[];
|
|
198
|
-
sparkSubmitParameters?: string;
|
|
201
|
+
entryPointArguments?: string[] | undefined;
|
|
202
|
+
sparkSubmitParameters?: string | undefined;
|
|
199
203
|
}
|
|
200
204
|
export type JobDriver =
|
|
201
205
|
| JobDriver.HiveMember
|
|
@@ -230,8 +234,8 @@ export declare const JobRunMode: {
|
|
|
230
234
|
};
|
|
231
235
|
export type JobRunMode = (typeof JobRunMode)[keyof typeof JobRunMode];
|
|
232
236
|
export interface RetryPolicy {
|
|
233
|
-
maxAttempts?: number;
|
|
234
|
-
maxFailedAttemptsPerHour?: number;
|
|
237
|
+
maxAttempts?: number | undefined;
|
|
238
|
+
maxFailedAttemptsPerHour?: number | undefined;
|
|
235
239
|
}
|
|
236
240
|
export declare const JobRunState: {
|
|
237
241
|
readonly CANCELLED: "CANCELLED";
|
|
@@ -246,21 +250,21 @@ export declare const JobRunState: {
|
|
|
246
250
|
};
|
|
247
251
|
export type JobRunState = (typeof JobRunState)[keyof typeof JobRunState];
|
|
248
252
|
export interface TotalResourceUtilization {
|
|
249
|
-
vCPUHour?: number;
|
|
250
|
-
memoryGBHour?: number;
|
|
251
|
-
storageGBHour?: number;
|
|
253
|
+
vCPUHour?: number | undefined;
|
|
254
|
+
memoryGBHour?: number | undefined;
|
|
255
|
+
storageGBHour?: number | undefined;
|
|
252
256
|
}
|
|
253
257
|
export interface ListJobRunAttemptsRequest {
|
|
254
258
|
applicationId: string | undefined;
|
|
255
259
|
jobRunId: string | undefined;
|
|
256
|
-
nextToken?: string;
|
|
257
|
-
maxResults?: number;
|
|
260
|
+
nextToken?: string | undefined;
|
|
261
|
+
maxResults?: number | undefined;
|
|
258
262
|
}
|
|
259
263
|
export interface JobRunAttemptSummary {
|
|
260
264
|
applicationId: string | undefined;
|
|
261
265
|
id: string | undefined;
|
|
262
|
-
name?: string;
|
|
263
|
-
mode?: JobRunMode;
|
|
266
|
+
name?: string | undefined;
|
|
267
|
+
mode?: JobRunMode | undefined;
|
|
264
268
|
arn: string | undefined;
|
|
265
269
|
createdBy: string | undefined;
|
|
266
270
|
jobCreatedAt: Date | undefined;
|
|
@@ -270,27 +274,27 @@ export interface JobRunAttemptSummary {
|
|
|
270
274
|
state: JobRunState | undefined;
|
|
271
275
|
stateDetails: string | undefined;
|
|
272
276
|
releaseLabel: string | undefined;
|
|
273
|
-
type?: string;
|
|
274
|
-
attempt?: number;
|
|
277
|
+
type?: string | undefined;
|
|
278
|
+
attempt?: number | undefined;
|
|
275
279
|
}
|
|
276
280
|
export interface ListJobRunAttemptsResponse {
|
|
277
281
|
jobRunAttempts: JobRunAttemptSummary[] | undefined;
|
|
278
|
-
nextToken?: string;
|
|
282
|
+
nextToken?: string | undefined;
|
|
279
283
|
}
|
|
280
284
|
export interface ListJobRunsRequest {
|
|
281
285
|
applicationId: string | undefined;
|
|
282
|
-
nextToken?: string;
|
|
283
|
-
maxResults?: number;
|
|
284
|
-
createdAtAfter?: Date;
|
|
285
|
-
createdAtBefore?: Date;
|
|
286
|
-
states?: JobRunState[];
|
|
287
|
-
mode?: JobRunMode;
|
|
286
|
+
nextToken?: string | undefined;
|
|
287
|
+
maxResults?: number | undefined;
|
|
288
|
+
createdAtAfter?: Date | undefined;
|
|
289
|
+
createdAtBefore?: Date | undefined;
|
|
290
|
+
states?: JobRunState[] | undefined;
|
|
291
|
+
mode?: JobRunMode | undefined;
|
|
288
292
|
}
|
|
289
293
|
export interface JobRunSummary {
|
|
290
294
|
applicationId: string | undefined;
|
|
291
295
|
id: string | undefined;
|
|
292
|
-
name?: string;
|
|
293
|
-
mode?: JobRunMode;
|
|
296
|
+
name?: string | undefined;
|
|
297
|
+
mode?: JobRunMode | undefined;
|
|
294
298
|
arn: string | undefined;
|
|
295
299
|
createdBy: string | undefined;
|
|
296
300
|
createdAt: Date | undefined;
|
|
@@ -299,14 +303,14 @@ export interface JobRunSummary {
|
|
|
299
303
|
state: JobRunState | undefined;
|
|
300
304
|
stateDetails: string | undefined;
|
|
301
305
|
releaseLabel: string | undefined;
|
|
302
|
-
type?: string;
|
|
303
|
-
attempt?: number;
|
|
304
|
-
attemptCreatedAt?: Date;
|
|
305
|
-
attemptUpdatedAt?: Date;
|
|
306
|
+
type?: string | undefined;
|
|
307
|
+
attempt?: number | undefined;
|
|
308
|
+
attemptCreatedAt?: Date | undefined;
|
|
309
|
+
attemptUpdatedAt?: Date | undefined;
|
|
306
310
|
}
|
|
307
311
|
export interface ListJobRunsResponse {
|
|
308
312
|
jobRuns: JobRunSummary[] | undefined;
|
|
309
|
-
nextToken?: string;
|
|
313
|
+
nextToken?: string | undefined;
|
|
310
314
|
}
|
|
311
315
|
export interface StartJobRunResponse {
|
|
312
316
|
applicationId: string | undefined;
|
|
@@ -317,7 +321,7 @@ export interface ListTagsForResourceRequest {
|
|
|
317
321
|
resourceArn: string | undefined;
|
|
318
322
|
}
|
|
319
323
|
export interface ListTagsForResourceResponse {
|
|
320
|
-
tags?: Record<string, string
|
|
324
|
+
tags?: Record<string, string> | undefined;
|
|
321
325
|
}
|
|
322
326
|
export interface TagResourceRequest {
|
|
323
327
|
resourceArn: string | undefined;
|
|
@@ -331,72 +335,78 @@ export interface UntagResourceRequest {
|
|
|
331
335
|
export interface UntagResourceResponse {}
|
|
332
336
|
export interface Configuration {
|
|
333
337
|
classification: string | undefined;
|
|
334
|
-
properties?: Record<string, string
|
|
335
|
-
configurations?: Configuration[];
|
|
338
|
+
properties?: Record<string, string> | undefined;
|
|
339
|
+
configurations?: Configuration[] | undefined;
|
|
336
340
|
}
|
|
337
341
|
export interface Application {
|
|
338
342
|
applicationId: string | undefined;
|
|
339
|
-
name?: string;
|
|
343
|
+
name?: string | undefined;
|
|
340
344
|
arn: string | undefined;
|
|
341
345
|
releaseLabel: string | undefined;
|
|
342
346
|
type: string | undefined;
|
|
343
347
|
state: ApplicationState | undefined;
|
|
344
|
-
stateDetails?: string;
|
|
345
|
-
initialCapacity?: Record<string, InitialCapacityConfig
|
|
346
|
-
maximumCapacity?: MaximumAllowedResources;
|
|
348
|
+
stateDetails?: string | undefined;
|
|
349
|
+
initialCapacity?: Record<string, InitialCapacityConfig> | undefined;
|
|
350
|
+
maximumCapacity?: MaximumAllowedResources | undefined;
|
|
347
351
|
createdAt: Date | undefined;
|
|
348
352
|
updatedAt: Date | undefined;
|
|
349
|
-
tags?: Record<string, string
|
|
350
|
-
autoStartConfiguration?: AutoStartConfig;
|
|
351
|
-
autoStopConfiguration?: AutoStopConfig;
|
|
352
|
-
networkConfiguration?: NetworkConfiguration;
|
|
353
|
-
architecture?: Architecture;
|
|
354
|
-
imageConfiguration?: ImageConfiguration;
|
|
355
|
-
workerTypeSpecifications?:
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
353
|
+
tags?: Record<string, string> | undefined;
|
|
354
|
+
autoStartConfiguration?: AutoStartConfig | undefined;
|
|
355
|
+
autoStopConfiguration?: AutoStopConfig | undefined;
|
|
356
|
+
networkConfiguration?: NetworkConfiguration | undefined;
|
|
357
|
+
architecture?: Architecture | undefined;
|
|
358
|
+
imageConfiguration?: ImageConfiguration | undefined;
|
|
359
|
+
workerTypeSpecifications?:
|
|
360
|
+
| Record<string, WorkerTypeSpecification>
|
|
361
|
+
| undefined;
|
|
362
|
+
runtimeConfiguration?: Configuration[] | undefined;
|
|
363
|
+
monitoringConfiguration?: MonitoringConfiguration | undefined;
|
|
364
|
+
interactiveConfiguration?: InteractiveConfiguration | undefined;
|
|
365
|
+
schedulerConfiguration?: SchedulerConfiguration | undefined;
|
|
360
366
|
}
|
|
361
367
|
export interface ConfigurationOverrides {
|
|
362
|
-
applicationConfiguration?: Configuration[];
|
|
363
|
-
monitoringConfiguration?: MonitoringConfiguration;
|
|
368
|
+
applicationConfiguration?: Configuration[] | undefined;
|
|
369
|
+
monitoringConfiguration?: MonitoringConfiguration | undefined;
|
|
364
370
|
}
|
|
365
371
|
export interface CreateApplicationRequest {
|
|
366
|
-
name?: string;
|
|
372
|
+
name?: string | undefined;
|
|
367
373
|
releaseLabel: string | undefined;
|
|
368
374
|
type: string | undefined;
|
|
369
|
-
clientToken?: string;
|
|
370
|
-
initialCapacity?: Record<string, InitialCapacityConfig
|
|
371
|
-
maximumCapacity?: MaximumAllowedResources;
|
|
372
|
-
tags?: Record<string, string
|
|
373
|
-
autoStartConfiguration?: AutoStartConfig;
|
|
374
|
-
autoStopConfiguration?: AutoStopConfig;
|
|
375
|
-
networkConfiguration?: NetworkConfiguration;
|
|
376
|
-
architecture?: Architecture;
|
|
377
|
-
imageConfiguration?: ImageConfigurationInput;
|
|
378
|
-
workerTypeSpecifications?:
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
375
|
+
clientToken?: string | undefined;
|
|
376
|
+
initialCapacity?: Record<string, InitialCapacityConfig> | undefined;
|
|
377
|
+
maximumCapacity?: MaximumAllowedResources | undefined;
|
|
378
|
+
tags?: Record<string, string> | undefined;
|
|
379
|
+
autoStartConfiguration?: AutoStartConfig | undefined;
|
|
380
|
+
autoStopConfiguration?: AutoStopConfig | undefined;
|
|
381
|
+
networkConfiguration?: NetworkConfiguration | undefined;
|
|
382
|
+
architecture?: Architecture | undefined;
|
|
383
|
+
imageConfiguration?: ImageConfigurationInput | undefined;
|
|
384
|
+
workerTypeSpecifications?:
|
|
385
|
+
| Record<string, WorkerTypeSpecificationInput>
|
|
386
|
+
| undefined;
|
|
387
|
+
runtimeConfiguration?: Configuration[] | undefined;
|
|
388
|
+
monitoringConfiguration?: MonitoringConfiguration | undefined;
|
|
389
|
+
interactiveConfiguration?: InteractiveConfiguration | undefined;
|
|
390
|
+
schedulerConfiguration?: SchedulerConfiguration | undefined;
|
|
383
391
|
}
|
|
384
392
|
export interface UpdateApplicationRequest {
|
|
385
393
|
applicationId: string | undefined;
|
|
386
|
-
clientToken?: string;
|
|
387
|
-
initialCapacity?: Record<string, InitialCapacityConfig
|
|
388
|
-
maximumCapacity?: MaximumAllowedResources;
|
|
389
|
-
autoStartConfiguration?: AutoStartConfig;
|
|
390
|
-
autoStopConfiguration?: AutoStopConfig;
|
|
391
|
-
networkConfiguration?: NetworkConfiguration;
|
|
392
|
-
architecture?: Architecture;
|
|
393
|
-
imageConfiguration?: ImageConfigurationInput;
|
|
394
|
-
workerTypeSpecifications?:
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
394
|
+
clientToken?: string | undefined;
|
|
395
|
+
initialCapacity?: Record<string, InitialCapacityConfig> | undefined;
|
|
396
|
+
maximumCapacity?: MaximumAllowedResources | undefined;
|
|
397
|
+
autoStartConfiguration?: AutoStartConfig | undefined;
|
|
398
|
+
autoStopConfiguration?: AutoStopConfig | undefined;
|
|
399
|
+
networkConfiguration?: NetworkConfiguration | undefined;
|
|
400
|
+
architecture?: Architecture | undefined;
|
|
401
|
+
imageConfiguration?: ImageConfigurationInput | undefined;
|
|
402
|
+
workerTypeSpecifications?:
|
|
403
|
+
| Record<string, WorkerTypeSpecificationInput>
|
|
404
|
+
| undefined;
|
|
405
|
+
interactiveConfiguration?: InteractiveConfiguration | undefined;
|
|
406
|
+
releaseLabel?: string | undefined;
|
|
407
|
+
runtimeConfiguration?: Configuration[] | undefined;
|
|
408
|
+
monitoringConfiguration?: MonitoringConfiguration | undefined;
|
|
409
|
+
schedulerConfiguration?: SchedulerConfiguration | undefined;
|
|
400
410
|
}
|
|
401
411
|
export interface GetApplicationResponse {
|
|
402
412
|
application: Application | undefined;
|
|
@@ -404,7 +414,7 @@ export interface GetApplicationResponse {
|
|
|
404
414
|
export interface JobRun {
|
|
405
415
|
applicationId: string | undefined;
|
|
406
416
|
jobRunId: string | undefined;
|
|
407
|
-
name?: string;
|
|
417
|
+
name?: string | undefined;
|
|
408
418
|
arn: string | undefined;
|
|
409
419
|
createdBy: string | undefined;
|
|
410
420
|
createdAt: Date | undefined;
|
|
@@ -413,34 +423,34 @@ export interface JobRun {
|
|
|
413
423
|
state: JobRunState | undefined;
|
|
414
424
|
stateDetails: string | undefined;
|
|
415
425
|
releaseLabel: string | undefined;
|
|
416
|
-
configurationOverrides?: ConfigurationOverrides;
|
|
426
|
+
configurationOverrides?: ConfigurationOverrides | undefined;
|
|
417
427
|
jobDriver: JobDriver | undefined;
|
|
418
|
-
tags?: Record<string, string
|
|
419
|
-
totalResourceUtilization?: TotalResourceUtilization;
|
|
420
|
-
networkConfiguration?: NetworkConfiguration;
|
|
421
|
-
totalExecutionDurationSeconds?: number;
|
|
422
|
-
executionTimeoutMinutes?: number;
|
|
423
|
-
billedResourceUtilization?: ResourceUtilization;
|
|
424
|
-
mode?: JobRunMode;
|
|
425
|
-
retryPolicy?: RetryPolicy;
|
|
426
|
-
attempt?: number;
|
|
427
|
-
attemptCreatedAt?: Date;
|
|
428
|
-
attemptUpdatedAt?: Date;
|
|
429
|
-
startedAt?: Date;
|
|
430
|
-
endedAt?: Date;
|
|
431
|
-
queuedDurationMilliseconds?: number;
|
|
428
|
+
tags?: Record<string, string> | undefined;
|
|
429
|
+
totalResourceUtilization?: TotalResourceUtilization | undefined;
|
|
430
|
+
networkConfiguration?: NetworkConfiguration | undefined;
|
|
431
|
+
totalExecutionDurationSeconds?: number | undefined;
|
|
432
|
+
executionTimeoutMinutes?: number | undefined;
|
|
433
|
+
billedResourceUtilization?: ResourceUtilization | undefined;
|
|
434
|
+
mode?: JobRunMode | undefined;
|
|
435
|
+
retryPolicy?: RetryPolicy | undefined;
|
|
436
|
+
attempt?: number | undefined;
|
|
437
|
+
attemptCreatedAt?: Date | undefined;
|
|
438
|
+
attemptUpdatedAt?: Date | undefined;
|
|
439
|
+
startedAt?: Date | undefined;
|
|
440
|
+
endedAt?: Date | undefined;
|
|
441
|
+
queuedDurationMilliseconds?: number | undefined;
|
|
432
442
|
}
|
|
433
443
|
export interface StartJobRunRequest {
|
|
434
444
|
applicationId: string | undefined;
|
|
435
|
-
clientToken?: string;
|
|
445
|
+
clientToken?: string | undefined;
|
|
436
446
|
executionRoleArn: string | undefined;
|
|
437
|
-
jobDriver?: JobDriver;
|
|
438
|
-
configurationOverrides?: ConfigurationOverrides;
|
|
439
|
-
tags?: Record<string, string
|
|
440
|
-
executionTimeoutMinutes?: number;
|
|
441
|
-
name?: string;
|
|
442
|
-
mode?: JobRunMode;
|
|
443
|
-
retryPolicy?: RetryPolicy;
|
|
447
|
+
jobDriver?: JobDriver | undefined;
|
|
448
|
+
configurationOverrides?: ConfigurationOverrides | undefined;
|
|
449
|
+
tags?: Record<string, string> | undefined;
|
|
450
|
+
executionTimeoutMinutes?: number | undefined;
|
|
451
|
+
name?: string | undefined;
|
|
452
|
+
mode?: JobRunMode | undefined;
|
|
453
|
+
retryPolicy?: RetryPolicy | undefined;
|
|
444
454
|
}
|
|
445
455
|
export interface UpdateApplicationResponse {
|
|
446
456
|
application: Application | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-emr-serverless",
|
|
3
3
|
"description": "AWS SDK for JavaScript Emr Serverless Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.691.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-emr-serverless",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.691.0",
|
|
25
|
+
"@aws-sdk/core": "3.691.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|