@aws-sdk/client-emr-serverless 3.211.0 → 3.213.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/models/models_0.js +7 -2
- package/dist-cjs/protocols/Aws_restJson1.js +16 -24
- package/dist-es/models/models_0.js +5 -0
- package/dist-es/protocols/Aws_restJson1.js +16 -24
- package/dist-types/models/models_0.d.ts +20 -0
- package/dist-types/ts3.4/models/models_0.d.ts +8 -0
- package/package.json +28 -28
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.GetJobRunResponseFilterSensitiveLog = exports.StartJobRunRequestFilterSensitiveLog = exports.JobRunFilterSensitiveLog = exports.ConfigurationOverridesFilterSensitiveLog = exports.ConfigurationFilterSensitiveLog = exports.UntagResourceResponseFilterSensitiveLog = exports.UntagResourceRequestFilterSensitiveLog = void 0;
|
|
3
|
+
exports.TagResourceRequestFilterSensitiveLog = exports.ListTagsForResourceResponseFilterSensitiveLog = exports.ListTagsForResourceRequestFilterSensitiveLog = exports.StartJobRunResponseFilterSensitiveLog = exports.ListJobRunsResponseFilterSensitiveLog = exports.JobRunSummaryFilterSensitiveLog = exports.ListJobRunsRequestFilterSensitiveLog = exports.TotalResourceUtilizationFilterSensitiveLog = exports.JobDriverFilterSensitiveLog = exports.SparkSubmitFilterSensitiveLog = exports.HiveFilterSensitiveLog = exports.MonitoringConfigurationFilterSensitiveLog = exports.S3MonitoringConfigurationFilterSensitiveLog = exports.ManagedPersistenceMonitoringConfigurationFilterSensitiveLog = exports.GetJobRunRequestFilterSensitiveLog = exports.GetDashboardForJobRunResponseFilterSensitiveLog = exports.GetDashboardForJobRunRequestFilterSensitiveLog = exports.CancelJobRunResponseFilterSensitiveLog = exports.CancelJobRunRequestFilterSensitiveLog = exports.UpdateApplicationResponseFilterSensitiveLog = exports.UpdateApplicationRequestFilterSensitiveLog = exports.StopApplicationResponseFilterSensitiveLog = exports.StopApplicationRequestFilterSensitiveLog = exports.StartApplicationResponseFilterSensitiveLog = exports.StartApplicationRequestFilterSensitiveLog = exports.ListApplicationsResponseFilterSensitiveLog = exports.ListApplicationsRequestFilterSensitiveLog = exports.GetApplicationResponseFilterSensitiveLog = exports.GetApplicationRequestFilterSensitiveLog = exports.DeleteApplicationResponseFilterSensitiveLog = exports.DeleteApplicationRequestFilterSensitiveLog = exports.CreateApplicationResponseFilterSensitiveLog = exports.CreateApplicationRequestFilterSensitiveLog = exports.ApplicationSummaryFilterSensitiveLog = exports.ApplicationFilterSensitiveLog = exports.NetworkConfigurationFilterSensitiveLog = exports.MaximumAllowedResourcesFilterSensitiveLog = exports.InitialCapacityConfigFilterSensitiveLog = exports.WorkerResourceConfigFilterSensitiveLog = exports.AutoStopConfigFilterSensitiveLog = exports.AutoStartConfigFilterSensitiveLog = exports.JobRunState = exports.JobDriver = exports.ServiceQuotaExceededException = exports.ResourceNotFoundException = exports.ValidationException = exports.InternalServerException = exports.ConflictException = exports.ApplicationState = exports.Architecture = void 0;
|
|
4
|
+
exports.GetJobRunResponseFilterSensitiveLog = exports.StartJobRunRequestFilterSensitiveLog = exports.JobRunFilterSensitiveLog = exports.ConfigurationOverridesFilterSensitiveLog = exports.ConfigurationFilterSensitiveLog = exports.UntagResourceResponseFilterSensitiveLog = exports.UntagResourceRequestFilterSensitiveLog = exports.TagResourceResponseFilterSensitiveLog = void 0;
|
|
5
5
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
6
6
|
const EMRServerlessServiceException_1 = require("./EMRServerlessServiceException");
|
|
7
|
+
var Architecture;
|
|
8
|
+
(function (Architecture) {
|
|
9
|
+
Architecture["ARM64"] = "ARM64";
|
|
10
|
+
Architecture["X86_64"] = "X86_64";
|
|
11
|
+
})(Architecture = exports.Architecture || (exports.Architecture = {}));
|
|
7
12
|
var ApplicationState;
|
|
8
13
|
(function (ApplicationState) {
|
|
9
14
|
ApplicationState["CREATED"] = "CREATED";
|
|
@@ -33,6 +33,7 @@ const serializeAws_restJson1CreateApplicationCommand = async (input, context) =>
|
|
|
33
33
|
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/applications";
|
|
34
34
|
let body;
|
|
35
35
|
body = JSON.stringify({
|
|
36
|
+
...(input.architecture != null && { architecture: input.architecture }),
|
|
36
37
|
...(input.autoStartConfiguration != null && {
|
|
37
38
|
autoStartConfiguration: serializeAws_restJson1AutoStartConfig(input.autoStartConfiguration, context),
|
|
38
39
|
}),
|
|
@@ -323,6 +324,7 @@ const serializeAws_restJson1UpdateApplicationCommand = async (input, context) =>
|
|
|
323
324
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "applicationId", () => input.applicationId, "{applicationId}", false);
|
|
324
325
|
let body;
|
|
325
326
|
body = JSON.stringify({
|
|
327
|
+
...(input.architecture != null && { architecture: input.architecture }),
|
|
326
328
|
...(input.autoStartConfiguration != null && {
|
|
327
329
|
autoStartConfiguration: serializeAws_restJson1AutoStartConfig(input.autoStartConfiguration, context),
|
|
328
330
|
}),
|
|
@@ -1084,10 +1086,8 @@ const serializeAws_restJson1InitialCapacityConfigMap = (input, context) => {
|
|
|
1084
1086
|
if (value === null) {
|
|
1085
1087
|
return acc;
|
|
1086
1088
|
}
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
[key]: serializeAws_restJson1InitialCapacityConfig(value, context),
|
|
1090
|
-
};
|
|
1089
|
+
acc[key] = serializeAws_restJson1InitialCapacityConfig(value, context);
|
|
1090
|
+
return acc;
|
|
1091
1091
|
}, {});
|
|
1092
1092
|
};
|
|
1093
1093
|
const serializeAws_restJson1JobDriver = (input, context) => {
|
|
@@ -1146,10 +1146,8 @@ const serializeAws_restJson1SensitivePropertiesMap = (input, context) => {
|
|
|
1146
1146
|
if (value === null) {
|
|
1147
1147
|
return acc;
|
|
1148
1148
|
}
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
[key]: value,
|
|
1152
|
-
};
|
|
1149
|
+
acc[key] = value;
|
|
1150
|
+
return acc;
|
|
1153
1151
|
}, {});
|
|
1154
1152
|
};
|
|
1155
1153
|
const serializeAws_restJson1SparkSubmit = (input, context) => {
|
|
@@ -1173,10 +1171,8 @@ const serializeAws_restJson1TagMap = (input, context) => {
|
|
|
1173
1171
|
if (value === null) {
|
|
1174
1172
|
return acc;
|
|
1175
1173
|
}
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
[key]: value,
|
|
1179
|
-
};
|
|
1174
|
+
acc[key] = value;
|
|
1175
|
+
return acc;
|
|
1180
1176
|
}, {});
|
|
1181
1177
|
};
|
|
1182
1178
|
const serializeAws_restJson1WorkerResourceConfig = (input, context) => {
|
|
@@ -1189,6 +1185,7 @@ const serializeAws_restJson1WorkerResourceConfig = (input, context) => {
|
|
|
1189
1185
|
const deserializeAws_restJson1Application = (output, context) => {
|
|
1190
1186
|
return {
|
|
1191
1187
|
applicationId: (0, smithy_client_1.expectString)(output.applicationId),
|
|
1188
|
+
architecture: (0, smithy_client_1.expectString)(output.architecture),
|
|
1192
1189
|
arn: (0, smithy_client_1.expectString)(output.arn),
|
|
1193
1190
|
autoStartConfiguration: output.autoStartConfiguration != null
|
|
1194
1191
|
? deserializeAws_restJson1AutoStartConfig(output.autoStartConfiguration, context)
|
|
@@ -1228,6 +1225,7 @@ const deserializeAws_restJson1ApplicationList = (output, context) => {
|
|
|
1228
1225
|
};
|
|
1229
1226
|
const deserializeAws_restJson1ApplicationSummary = (output, context) => {
|
|
1230
1227
|
return {
|
|
1228
|
+
architecture: (0, smithy_client_1.expectString)(output.architecture),
|
|
1231
1229
|
arn: (0, smithy_client_1.expectString)(output.arn),
|
|
1232
1230
|
createdAt: output.createdAt != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.createdAt))) : undefined,
|
|
1233
1231
|
id: (0, smithy_client_1.expectString)(output.id),
|
|
@@ -1313,10 +1311,8 @@ const deserializeAws_restJson1InitialCapacityConfigMap = (output, context) => {
|
|
|
1313
1311
|
if (value === null) {
|
|
1314
1312
|
return acc;
|
|
1315
1313
|
}
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
[key]: deserializeAws_restJson1InitialCapacityConfig(value, context),
|
|
1319
|
-
};
|
|
1314
|
+
acc[key] = deserializeAws_restJson1InitialCapacityConfig(value, context);
|
|
1315
|
+
return acc;
|
|
1320
1316
|
}, {});
|
|
1321
1317
|
};
|
|
1322
1318
|
const deserializeAws_restJson1JobDriver = (output, context) => {
|
|
@@ -1441,10 +1437,8 @@ const deserializeAws_restJson1SensitivePropertiesMap = (output, context) => {
|
|
|
1441
1437
|
if (value === null) {
|
|
1442
1438
|
return acc;
|
|
1443
1439
|
}
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
[key]: (0, smithy_client_1.expectString)(value),
|
|
1447
|
-
};
|
|
1440
|
+
acc[key] = (0, smithy_client_1.expectString)(value);
|
|
1441
|
+
return acc;
|
|
1448
1442
|
}, {});
|
|
1449
1443
|
};
|
|
1450
1444
|
const deserializeAws_restJson1SparkSubmit = (output, context) => {
|
|
@@ -1472,10 +1466,8 @@ const deserializeAws_restJson1TagMap = (output, context) => {
|
|
|
1472
1466
|
if (value === null) {
|
|
1473
1467
|
return acc;
|
|
1474
1468
|
}
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
[key]: (0, smithy_client_1.expectString)(value),
|
|
1478
|
-
};
|
|
1469
|
+
acc[key] = (0, smithy_client_1.expectString)(value);
|
|
1470
|
+
return acc;
|
|
1479
1471
|
}, {});
|
|
1480
1472
|
};
|
|
1481
1473
|
const deserializeAws_restJson1TotalResourceUtilization = (output, context) => {
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { EMRServerlessServiceException as __BaseException } from "./EMRServerlessServiceException";
|
|
3
|
+
export var Architecture;
|
|
4
|
+
(function (Architecture) {
|
|
5
|
+
Architecture["ARM64"] = "ARM64";
|
|
6
|
+
Architecture["X86_64"] = "X86_64";
|
|
7
|
+
})(Architecture || (Architecture = {}));
|
|
3
8
|
export var ApplicationState;
|
|
4
9
|
(function (ApplicationState) {
|
|
5
10
|
ApplicationState["CREATED"] = "CREATED";
|
|
@@ -29,6 +29,7 @@ export const serializeAws_restJson1CreateApplicationCommand = async (input, cont
|
|
|
29
29
|
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/applications";
|
|
30
30
|
let body;
|
|
31
31
|
body = JSON.stringify({
|
|
32
|
+
...(input.architecture != null && { architecture: input.architecture }),
|
|
32
33
|
...(input.autoStartConfiguration != null && {
|
|
33
34
|
autoStartConfiguration: serializeAws_restJson1AutoStartConfig(input.autoStartConfiguration, context),
|
|
34
35
|
}),
|
|
@@ -306,6 +307,7 @@ export const serializeAws_restJson1UpdateApplicationCommand = async (input, cont
|
|
|
306
307
|
resolvedPath = __resolvedPath(resolvedPath, input, "applicationId", () => input.applicationId, "{applicationId}", false);
|
|
307
308
|
let body;
|
|
308
309
|
body = JSON.stringify({
|
|
310
|
+
...(input.architecture != null && { architecture: input.architecture }),
|
|
309
311
|
...(input.autoStartConfiguration != null && {
|
|
310
312
|
autoStartConfiguration: serializeAws_restJson1AutoStartConfig(input.autoStartConfiguration, context),
|
|
311
313
|
}),
|
|
@@ -1051,10 +1053,8 @@ const serializeAws_restJson1InitialCapacityConfigMap = (input, context) => {
|
|
|
1051
1053
|
if (value === null) {
|
|
1052
1054
|
return acc;
|
|
1053
1055
|
}
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
[key]: serializeAws_restJson1InitialCapacityConfig(value, context),
|
|
1057
|
-
};
|
|
1056
|
+
acc[key] = serializeAws_restJson1InitialCapacityConfig(value, context);
|
|
1057
|
+
return acc;
|
|
1058
1058
|
}, {});
|
|
1059
1059
|
};
|
|
1060
1060
|
const serializeAws_restJson1JobDriver = (input, context) => {
|
|
@@ -1113,10 +1113,8 @@ const serializeAws_restJson1SensitivePropertiesMap = (input, context) => {
|
|
|
1113
1113
|
if (value === null) {
|
|
1114
1114
|
return acc;
|
|
1115
1115
|
}
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
[key]: value,
|
|
1119
|
-
};
|
|
1116
|
+
acc[key] = value;
|
|
1117
|
+
return acc;
|
|
1120
1118
|
}, {});
|
|
1121
1119
|
};
|
|
1122
1120
|
const serializeAws_restJson1SparkSubmit = (input, context) => {
|
|
@@ -1140,10 +1138,8 @@ const serializeAws_restJson1TagMap = (input, context) => {
|
|
|
1140
1138
|
if (value === null) {
|
|
1141
1139
|
return acc;
|
|
1142
1140
|
}
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
[key]: value,
|
|
1146
|
-
};
|
|
1141
|
+
acc[key] = value;
|
|
1142
|
+
return acc;
|
|
1147
1143
|
}, {});
|
|
1148
1144
|
};
|
|
1149
1145
|
const serializeAws_restJson1WorkerResourceConfig = (input, context) => {
|
|
@@ -1156,6 +1152,7 @@ const serializeAws_restJson1WorkerResourceConfig = (input, context) => {
|
|
|
1156
1152
|
const deserializeAws_restJson1Application = (output, context) => {
|
|
1157
1153
|
return {
|
|
1158
1154
|
applicationId: __expectString(output.applicationId),
|
|
1155
|
+
architecture: __expectString(output.architecture),
|
|
1159
1156
|
arn: __expectString(output.arn),
|
|
1160
1157
|
autoStartConfiguration: output.autoStartConfiguration != null
|
|
1161
1158
|
? deserializeAws_restJson1AutoStartConfig(output.autoStartConfiguration, context)
|
|
@@ -1195,6 +1192,7 @@ const deserializeAws_restJson1ApplicationList = (output, context) => {
|
|
|
1195
1192
|
};
|
|
1196
1193
|
const deserializeAws_restJson1ApplicationSummary = (output, context) => {
|
|
1197
1194
|
return {
|
|
1195
|
+
architecture: __expectString(output.architecture),
|
|
1198
1196
|
arn: __expectString(output.arn),
|
|
1199
1197
|
createdAt: output.createdAt != null ? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.createdAt))) : undefined,
|
|
1200
1198
|
id: __expectString(output.id),
|
|
@@ -1280,10 +1278,8 @@ const deserializeAws_restJson1InitialCapacityConfigMap = (output, context) => {
|
|
|
1280
1278
|
if (value === null) {
|
|
1281
1279
|
return acc;
|
|
1282
1280
|
}
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
[key]: deserializeAws_restJson1InitialCapacityConfig(value, context),
|
|
1286
|
-
};
|
|
1281
|
+
acc[key] = deserializeAws_restJson1InitialCapacityConfig(value, context);
|
|
1282
|
+
return acc;
|
|
1287
1283
|
}, {});
|
|
1288
1284
|
};
|
|
1289
1285
|
const deserializeAws_restJson1JobDriver = (output, context) => {
|
|
@@ -1408,10 +1404,8 @@ const deserializeAws_restJson1SensitivePropertiesMap = (output, context) => {
|
|
|
1408
1404
|
if (value === null) {
|
|
1409
1405
|
return acc;
|
|
1410
1406
|
}
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
[key]: __expectString(value),
|
|
1414
|
-
};
|
|
1407
|
+
acc[key] = __expectString(value);
|
|
1408
|
+
return acc;
|
|
1415
1409
|
}, {});
|
|
1416
1410
|
};
|
|
1417
1411
|
const deserializeAws_restJson1SparkSubmit = (output, context) => {
|
|
@@ -1439,10 +1433,8 @@ const deserializeAws_restJson1TagMap = (output, context) => {
|
|
|
1439
1433
|
if (value === null) {
|
|
1440
1434
|
return acc;
|
|
1441
1435
|
}
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
[key]: __expectString(value),
|
|
1445
|
-
};
|
|
1436
|
+
acc[key] = __expectString(value);
|
|
1437
|
+
return acc;
|
|
1446
1438
|
}, {});
|
|
1447
1439
|
};
|
|
1448
1440
|
const deserializeAws_restJson1TotalResourceUtilization = (output, context) => {
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { EMRServerlessServiceException as __BaseException } from "./EMRServerlessServiceException";
|
|
3
|
+
export declare enum Architecture {
|
|
4
|
+
ARM64 = "ARM64",
|
|
5
|
+
X86_64 = "X86_64"
|
|
6
|
+
}
|
|
3
7
|
/**
|
|
4
8
|
* <p>The configuration for an application to automatically start on job submission.</p>
|
|
5
9
|
*/
|
|
@@ -164,6 +168,10 @@ export interface Application {
|
|
|
164
168
|
* <p>The network configuration for customer VPC connectivity for the application.</p>
|
|
165
169
|
*/
|
|
166
170
|
networkConfiguration?: NetworkConfiguration;
|
|
171
|
+
/**
|
|
172
|
+
* <p>The CPU architecture of an application.</p>
|
|
173
|
+
*/
|
|
174
|
+
architecture?: Architecture | string;
|
|
167
175
|
}
|
|
168
176
|
/**
|
|
169
177
|
* <p>The summary of attributes associated with an application.</p>
|
|
@@ -205,6 +213,10 @@ export interface ApplicationSummary {
|
|
|
205
213
|
* <p>The date and time when the application was last updated.</p>
|
|
206
214
|
*/
|
|
207
215
|
updatedAt: Date | undefined;
|
|
216
|
+
/**
|
|
217
|
+
* <p>The CPU architecture of an application.</p>
|
|
218
|
+
*/
|
|
219
|
+
architecture?: Architecture | string;
|
|
208
220
|
}
|
|
209
221
|
/**
|
|
210
222
|
* <p>The request could not be processed because of conflict in the current state of the
|
|
@@ -263,6 +275,10 @@ export interface CreateApplicationRequest {
|
|
|
263
275
|
* <p>The network configuration for customer VPC connectivity.</p>
|
|
264
276
|
*/
|
|
265
277
|
networkConfiguration?: NetworkConfiguration;
|
|
278
|
+
/**
|
|
279
|
+
* <p>The CPU architecture of an application.</p>
|
|
280
|
+
*/
|
|
281
|
+
architecture?: Architecture | string;
|
|
266
282
|
}
|
|
267
283
|
export interface CreateApplicationResponse {
|
|
268
284
|
/**
|
|
@@ -417,6 +433,10 @@ export interface UpdateApplicationRequest {
|
|
|
417
433
|
* <p>The network configuration for customer VPC connectivity.</p>
|
|
418
434
|
*/
|
|
419
435
|
networkConfiguration?: NetworkConfiguration;
|
|
436
|
+
/**
|
|
437
|
+
* <p>The CPU architecture of an application.</p>
|
|
438
|
+
*/
|
|
439
|
+
architecture?: Architecture | string;
|
|
420
440
|
}
|
|
421
441
|
export interface UpdateApplicationResponse {
|
|
422
442
|
/**
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { EMRServerlessServiceException as __BaseException } from "./EMRServerlessServiceException";
|
|
3
|
+
export declare enum Architecture {
|
|
4
|
+
ARM64 = "ARM64",
|
|
5
|
+
X86_64 = "X86_64",
|
|
6
|
+
}
|
|
3
7
|
export interface AutoStartConfig {
|
|
4
8
|
enabled?: boolean;
|
|
5
9
|
}
|
|
@@ -50,6 +54,7 @@ export interface Application {
|
|
|
50
54
|
autoStartConfiguration?: AutoStartConfig;
|
|
51
55
|
autoStopConfiguration?: AutoStopConfig;
|
|
52
56
|
networkConfiguration?: NetworkConfiguration;
|
|
57
|
+
architecture?: Architecture | string;
|
|
53
58
|
}
|
|
54
59
|
export interface ApplicationSummary {
|
|
55
60
|
id: string | undefined;
|
|
@@ -61,6 +66,7 @@ export interface ApplicationSummary {
|
|
|
61
66
|
stateDetails?: string;
|
|
62
67
|
createdAt: Date | undefined;
|
|
63
68
|
updatedAt: Date | undefined;
|
|
69
|
+
architecture?: Architecture | string;
|
|
64
70
|
}
|
|
65
71
|
export declare class ConflictException extends __BaseException {
|
|
66
72
|
readonly name: "ConflictException";
|
|
@@ -78,6 +84,7 @@ export interface CreateApplicationRequest {
|
|
|
78
84
|
autoStartConfiguration?: AutoStartConfig;
|
|
79
85
|
autoStopConfiguration?: AutoStopConfig;
|
|
80
86
|
networkConfiguration?: NetworkConfiguration;
|
|
87
|
+
architecture?: Architecture | string;
|
|
81
88
|
}
|
|
82
89
|
export interface CreateApplicationResponse {
|
|
83
90
|
applicationId: string | undefined;
|
|
@@ -147,6 +154,7 @@ export interface UpdateApplicationRequest {
|
|
|
147
154
|
autoStartConfiguration?: AutoStartConfig;
|
|
148
155
|
autoStopConfiguration?: AutoStopConfig;
|
|
149
156
|
networkConfiguration?: NetworkConfiguration;
|
|
157
|
+
architecture?: Architecture | string;
|
|
150
158
|
}
|
|
151
159
|
export interface UpdateApplicationResponse {
|
|
152
160
|
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.213.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -19,36 +19,36 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
30
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
31
|
-
"@aws-sdk/middleware-logger": "3.
|
|
32
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.213.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.212.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.212.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.212.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.212.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.212.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.212.0",
|
|
29
|
+
"@aws-sdk/middleware-endpoint": "3.212.0",
|
|
30
|
+
"@aws-sdk/middleware-host-header": "3.212.0",
|
|
31
|
+
"@aws-sdk/middleware-logger": "3.212.0",
|
|
32
|
+
"@aws-sdk/middleware-recursion-detection": "3.212.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.212.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.212.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.212.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.212.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.212.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.212.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.212.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.212.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.212.0",
|
|
42
|
+
"@aws-sdk/types": "3.212.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.212.0",
|
|
44
44
|
"@aws-sdk/util-base64": "3.208.0",
|
|
45
45
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
46
46
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
47
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
-
"@aws-sdk/util-endpoints": "3.
|
|
50
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
51
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.212.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.212.0",
|
|
49
|
+
"@aws-sdk/util-endpoints": "3.212.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-browser": "3.212.0",
|
|
51
|
+
"@aws-sdk/util-user-agent-node": "3.212.0",
|
|
52
52
|
"@aws-sdk/util-utf8-browser": "3.188.0",
|
|
53
53
|
"@aws-sdk/util-utf8-node": "3.208.0",
|
|
54
54
|
"tslib": "^2.3.1",
|