@aws-sdk/client-emr 3.85.0 → 3.92.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/CHANGELOG.md +27 -0
- package/README.md +3 -4
- package/dist-cjs/models/models_0.js +14 -3
- package/dist-cjs/protocols/Aws_json1_1.js +24 -0
- package/dist-es/models/models_0.js +9 -0
- package/dist-es/protocols/Aws_json1_1.js +26 -4
- package/dist-types/EMR.d.ts +99 -78
- package/dist-types/EMRClient.d.ts +3 -4
- package/dist-types/commands/AddInstanceFleetCommand.d.ts +2 -2
- package/dist-types/commands/AddJobFlowStepsCommand.d.ts +8 -7
- package/dist-types/commands/AddTagsCommand.d.ts +5 -3
- package/dist-types/commands/CancelStepsCommand.d.ts +4 -3
- package/dist-types/commands/CreateStudioSessionMappingCommand.d.ts +5 -2
- package/dist-types/commands/DescribeReleaseLabelCommand.d.ts +3 -1
- package/dist-types/commands/DescribeStudioCommand.d.ts +2 -2
- package/dist-types/commands/GetBlockPublicAccessConfigurationCommand.d.ts +3 -4
- package/dist-types/commands/GetStudioSessionMappingCommand.d.ts +2 -2
- package/dist-types/commands/ListClustersCommand.d.ts +5 -5
- package/dist-types/commands/ListInstanceFleetsCommand.d.ts +2 -2
- package/dist-types/commands/ListStepsCommand.d.ts +4 -1
- package/dist-types/commands/ListStudioSessionMappingsCommand.d.ts +2 -2
- package/dist-types/commands/ListStudiosCommand.d.ts +2 -2
- package/dist-types/commands/ModifyInstanceFleetCommand.d.ts +2 -2
- package/dist-types/commands/PutAutoScalingPolicyCommand.d.ts +3 -3
- package/dist-types/commands/PutAutoTerminationPolicyCommand.d.ts +7 -2
- package/dist-types/commands/PutBlockPublicAccessConfigurationCommand.d.ts +4 -4
- package/dist-types/commands/PutManagedScalingPolicyCommand.d.ts +4 -4
- package/dist-types/commands/RemoveTagsCommand.d.ts +4 -3
- package/dist-types/commands/RunJobFlowCommand.d.ts +4 -4
- package/dist-types/commands/SetTerminationProtectionCommand.d.ts +2 -2
- package/dist-types/commands/SetVisibleToAllUsersCommand.d.ts +11 -6
- package/dist-types/commands/TerminateJobFlowsCommand.d.ts +3 -3
- package/dist-types/commands/UpdateStudioCommand.d.ts +2 -1
- package/dist-types/commands/UpdateStudioSessionMappingCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +616 -435
- package/dist-types/ts3.4/models/models_0.d.ts +21 -0
- package/package.json +3 -3
|
@@ -1204,6 +1204,15 @@ export declare namespace SimplifiedApplication {
|
|
|
1204
1204
|
|
|
1205
1205
|
const filterSensitiveLog: (obj: SimplifiedApplication) => any;
|
|
1206
1206
|
}
|
|
1207
|
+
|
|
1208
|
+
export interface OSRelease {
|
|
1209
|
+
|
|
1210
|
+
Label?: string;
|
|
1211
|
+
}
|
|
1212
|
+
export declare namespace OSRelease {
|
|
1213
|
+
|
|
1214
|
+
const filterSensitiveLog: (obj: OSRelease) => any;
|
|
1215
|
+
}
|
|
1207
1216
|
export interface DescribeReleaseLabelOutput {
|
|
1208
1217
|
|
|
1209
1218
|
ReleaseLabel?: string;
|
|
@@ -1211,6 +1220,8 @@ export interface DescribeReleaseLabelOutput {
|
|
|
1211
1220
|
Applications?: SimplifiedApplication[];
|
|
1212
1221
|
|
|
1213
1222
|
NextToken?: string;
|
|
1223
|
+
|
|
1224
|
+
AvailableOSReleases?: OSRelease[];
|
|
1214
1225
|
}
|
|
1215
1226
|
export declare namespace DescribeReleaseLabelOutput {
|
|
1216
1227
|
|
|
@@ -2099,6 +2110,10 @@ export declare namespace ModifyInstanceFleetInput {
|
|
|
2099
2110
|
|
|
2100
2111
|
const filterSensitiveLog: (obj: ModifyInstanceFleetInput) => any;
|
|
2101
2112
|
}
|
|
2113
|
+
export declare enum ReconfigurationType {
|
|
2114
|
+
MERGE = "MERGE",
|
|
2115
|
+
OVERWRITE = "OVERWRITE"
|
|
2116
|
+
}
|
|
2102
2117
|
export interface PutAutoScalingPolicyInput {
|
|
2103
2118
|
|
|
2104
2119
|
ClusterId: string | undefined;
|
|
@@ -2444,6 +2459,8 @@ export interface Cluster {
|
|
|
2444
2459
|
StepConcurrencyLevel?: number;
|
|
2445
2460
|
|
|
2446
2461
|
PlacementGroups?: PlacementGroupConfig[];
|
|
2462
|
+
|
|
2463
|
+
OSReleaseLabel?: string;
|
|
2447
2464
|
}
|
|
2448
2465
|
export declare namespace Cluster {
|
|
2449
2466
|
|
|
@@ -2487,6 +2504,8 @@ export interface InstanceGroupModifyConfig {
|
|
|
2487
2504
|
|
|
2488
2505
|
ShrinkPolicy?: ShrinkPolicy;
|
|
2489
2506
|
|
|
2507
|
+
ReconfigurationType?: ReconfigurationType | string;
|
|
2508
|
+
|
|
2490
2509
|
Configurations?: Configuration[];
|
|
2491
2510
|
}
|
|
2492
2511
|
export declare namespace InstanceGroupModifyConfig {
|
|
@@ -2805,6 +2824,8 @@ export interface RunJobFlowInput {
|
|
|
2805
2824
|
PlacementGroupConfigs?: PlacementGroupConfig[];
|
|
2806
2825
|
|
|
2807
2826
|
AutoTerminationPolicy?: AutoTerminationPolicy;
|
|
2827
|
+
|
|
2828
|
+
OSReleaseLabel?: string;
|
|
2808
2829
|
}
|
|
2809
2830
|
export declare namespace RunJobFlowInput {
|
|
2810
2831
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-emr",
|
|
3
3
|
"description": "AWS SDK for JavaScript Emr Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.92.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",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.92.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.80.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.87.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.78.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.78.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.78.0",
|