@aws-sdk/client-emr-serverless 3.554.0 → 3.556.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/commands/CreateApplicationCommand.d.ts +1 -0
- package/dist-types/commands/GetApplicationCommand.d.ts +1 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/package.json +4 -4
|
@@ -44,6 +44,7 @@ declare const UpdateApplicationCommand_base: {
|
|
|
44
44
|
* cpu: "STRING_VALUE", // required
|
|
45
45
|
* memory: "STRING_VALUE", // required
|
|
46
46
|
* disk: "STRING_VALUE",
|
|
47
|
+
* diskType: "STRING_VALUE",
|
|
47
48
|
* },
|
|
48
49
|
* },
|
|
49
50
|
* },
|
|
@@ -136,6 +137,7 @@ declare const UpdateApplicationCommand_base: {
|
|
|
136
137
|
* // cpu: "STRING_VALUE", // required
|
|
137
138
|
* // memory: "STRING_VALUE", // required
|
|
138
139
|
* // disk: "STRING_VALUE",
|
|
140
|
+
* // diskType: "STRING_VALUE",
|
|
139
141
|
* // },
|
|
140
142
|
* // },
|
|
141
143
|
* // },
|
|
@@ -81,6 +81,11 @@ export interface WorkerResourceConfig {
|
|
|
81
81
|
* @public
|
|
82
82
|
*/
|
|
83
83
|
disk?: string;
|
|
84
|
+
/**
|
|
85
|
+
* <p>The disk type for every worker instance of the work type. Shuffle optimized disks have higher performance characteristics and are better for shuffle heavy workloads. Default is <code>STANDARD</code>.</p>
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
88
|
+
diskType?: string;
|
|
84
89
|
}
|
|
85
90
|
/**
|
|
86
91
|
* <p>The initial capacity configuration per worker.</p>
|
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.556.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,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.556.0",
|
|
24
|
+
"@aws-sdk/core": "3.556.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.556.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.535.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.535.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.535.0",
|