@aws-sdk/client-emr 3.848.0 → 3.855.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 CHANGED
@@ -2082,6 +2082,7 @@ var se_RunJobFlowInput = /* @__PURE__ */ __name((input, context) => {
2082
2082
  EbsRootVolumeIops: [],
2083
2083
  EbsRootVolumeSize: [],
2084
2084
  EbsRootVolumeThroughput: [],
2085
+ ExtendedSupport: [],
2085
2086
  Instances: /* @__PURE__ */ __name((_) => se_JobFlowInstancesConfig(_, context), "Instances"),
2086
2087
  JobFlowRole: [],
2087
2088
  KerberosAttributes: import_smithy_client._json,
@@ -2169,6 +2170,7 @@ var de_Cluster = /* @__PURE__ */ __name((output, context) => {
2169
2170
  EbsRootVolumeSize: import_smithy_client.expectInt32,
2170
2171
  EbsRootVolumeThroughput: import_smithy_client.expectInt32,
2171
2172
  Ec2InstanceAttributes: import_smithy_client._json,
2173
+ ExtendedSupport: import_smithy_client.expectBoolean,
2172
2174
  Id: import_smithy_client.expectString,
2173
2175
  InstanceCollectionType: import_smithy_client.expectString,
2174
2176
  KerberosAttributes: import_smithy_client._json,
@@ -1381,6 +1381,7 @@ const se_RunJobFlowInput = (input, context) => {
1381
1381
  EbsRootVolumeIops: [],
1382
1382
  EbsRootVolumeSize: [],
1383
1383
  EbsRootVolumeThroughput: [],
1384
+ ExtendedSupport: [],
1384
1385
  Instances: (_) => se_JobFlowInstancesConfig(_, context),
1385
1386
  JobFlowRole: [],
1386
1387
  KerberosAttributes: _json,
@@ -1470,6 +1471,7 @@ const de_Cluster = (output, context) => {
1470
1471
  EbsRootVolumeSize: __expectInt32,
1471
1472
  EbsRootVolumeThroughput: __expectInt32,
1472
1473
  Ec2InstanceAttributes: _json,
1474
+ ExtendedSupport: __expectBoolean,
1473
1475
  Id: __expectString,
1474
1476
  InstanceCollectionType: __expectString,
1475
1477
  KerberosAttributes: _json,
@@ -161,6 +161,7 @@ declare const DescribeClusterCommand_base: {
161
161
  * // OSReleaseLabel: "STRING_VALUE",
162
162
  * // EbsRootVolumeIops: Number("int"),
163
163
  * // EbsRootVolumeThroughput: Number("int"),
164
+ * // ExtendedSupport: true || false,
164
165
  * // },
165
166
  * // };
166
167
  *
@@ -38,11 +38,13 @@ declare const ModifyClusterCommand_base: {
38
38
  * const input = { // ModifyClusterInput
39
39
  * ClusterId: "STRING_VALUE", // required
40
40
  * StepConcurrencyLevel: Number("int"),
41
+ * ExtendedSupport: true || false,
41
42
  * };
42
43
  * const command = new ModifyClusterCommand(input);
43
44
  * const response = await client.send(command);
44
45
  * // { // ModifyClusterOutput
45
46
  * // StepConcurrencyLevel: Number("int"),
47
+ * // ExtendedSupport: true || false,
46
48
  * // };
47
49
  *
48
50
  * ```
@@ -334,6 +334,7 @@ declare const RunJobFlowCommand_base: {
334
334
  * OSReleaseLabel: "STRING_VALUE",
335
335
  * EbsRootVolumeIops: Number("int"),
336
336
  * EbsRootVolumeThroughput: Number("int"),
337
+ * ExtendedSupport: true || false,
337
338
  * };
338
339
  * const command = new RunJobFlowCommand(input);
339
340
  * const response = await client.send(command);
@@ -1808,7 +1808,7 @@ export interface CreatePersistentAppUIInput {
1808
1808
  */
1809
1809
  XReferer?: string | undefined;
1810
1810
  /**
1811
- * <p>The profiler type for the persistent application user interface. Valid values are SHS, TEZUI, or YTS.</p>
1811
+ * <p>The profiler type for the persistent application user interface.</p>
1812
1812
  * @public
1813
1813
  */
1814
1814
  ProfilerType?: ProfilerType | undefined;
@@ -5103,6 +5103,11 @@ export interface ModifyClusterInput {
5103
5103
  * @public
5104
5104
  */
5105
5105
  StepConcurrencyLevel?: number | undefined;
5106
+ /**
5107
+ * <p>Reserved.</p>
5108
+ * @public
5109
+ */
5110
+ ExtendedSupport?: boolean | undefined;
5106
5111
  }
5107
5112
  /**
5108
5113
  * @public
@@ -5113,6 +5118,11 @@ export interface ModifyClusterOutput {
5113
5118
  * @public
5114
5119
  */
5115
5120
  StepConcurrencyLevel?: number | undefined;
5121
+ /**
5122
+ * <p>Reserved.</p>
5123
+ * @public
5124
+ */
5125
+ ExtendedSupport?: boolean | undefined;
5116
5126
  }
5117
5127
  /**
5118
5128
  * @public
@@ -5924,6 +5934,11 @@ export interface Cluster {
5924
5934
  * @public
5925
5935
  */
5926
5936
  EbsRootVolumeThroughput?: number | undefined;
5937
+ /**
5938
+ * <p>Reserved.</p>
5939
+ * @public
5940
+ */
5941
+ ExtendedSupport?: boolean | undefined;
5927
5942
  }
5928
5943
  /**
5929
5944
  * <p>Configuration defining a new instance group.</p>
@@ -7088,6 +7103,11 @@ export interface RunJobFlowInput {
7088
7103
  * @public
7089
7104
  */
7090
7105
  EbsRootVolumeThroughput?: number | undefined;
7106
+ /**
7107
+ * <p>Reserved.</p>
7108
+ * @public
7109
+ */
7110
+ ExtendedSupport?: boolean | undefined;
7091
7111
  }
7092
7112
  /**
7093
7113
  * @internal
@@ -1265,9 +1265,11 @@ export interface ListSupportedInstanceTypesOutput {
1265
1265
  export interface ModifyClusterInput {
1266
1266
  ClusterId: string | undefined;
1267
1267
  StepConcurrencyLevel?: number | undefined;
1268
+ ExtendedSupport?: boolean | undefined;
1268
1269
  }
1269
1270
  export interface ModifyClusterOutput {
1270
1271
  StepConcurrencyLevel?: number | undefined;
1272
+ ExtendedSupport?: boolean | undefined;
1271
1273
  }
1272
1274
  export declare const ReconfigurationType: {
1273
1275
  readonly MERGE: "MERGE";
@@ -1432,6 +1434,7 @@ export interface Cluster {
1432
1434
  OSReleaseLabel?: string | undefined;
1433
1435
  EbsRootVolumeIops?: number | undefined;
1434
1436
  EbsRootVolumeThroughput?: number | undefined;
1437
+ ExtendedSupport?: boolean | undefined;
1435
1438
  }
1436
1439
  export interface InstanceGroupConfig {
1437
1440
  Name?: string | undefined;
@@ -1614,6 +1617,7 @@ export interface RunJobFlowInput {
1614
1617
  OSReleaseLabel?: string | undefined;
1615
1618
  EbsRootVolumeIops?: number | undefined;
1616
1619
  EbsRootVolumeThroughput?: number | undefined;
1620
+ ExtendedSupport?: boolean | undefined;
1617
1621
  }
1618
1622
  export declare const UsernamePasswordFilterSensitiveLog: (
1619
1623
  obj: UsernamePassword
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.848.0",
4
+ "version": "3.855.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",
@@ -20,17 +20,17 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.846.0",
24
- "@aws-sdk/credential-provider-node": "3.848.0",
23
+ "@aws-sdk/core": "3.855.0",
24
+ "@aws-sdk/credential-provider-node": "3.855.0",
25
25
  "@aws-sdk/middleware-host-header": "3.840.0",
26
26
  "@aws-sdk/middleware-logger": "3.840.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.840.0",
28
- "@aws-sdk/middleware-user-agent": "3.848.0",
28
+ "@aws-sdk/middleware-user-agent": "3.855.0",
29
29
  "@aws-sdk/region-config-resolver": "3.840.0",
30
30
  "@aws-sdk/types": "3.840.0",
31
31
  "@aws-sdk/util-endpoints": "3.848.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.840.0",
33
- "@aws-sdk/util-user-agent-node": "3.848.0",
33
+ "@aws-sdk/util-user-agent-node": "3.855.0",
34
34
  "@smithy/config-resolver": "^4.1.4",
35
35
  "@smithy/core": "^3.7.0",
36
36
  "@smithy/fetch-http-handler": "^5.1.0",