@aws-sdk/client-cleanrooms 3.1095.0 → 3.1096.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 +2 -1
- package/dist-es/models/enums.js +1 -0
- package/dist-types/commands/GetProtectedQueryCommand.d.ts +1 -1
- package/dist-types/commands/PopulateIntermediateTableCommand.d.ts +1 -1
- package/dist-types/commands/StartProtectedQueryCommand.d.ts +2 -2
- package/dist-types/commands/UpdateProtectedQueryCommand.d.ts +1 -1
- package/dist-types/models/enums.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +1 -0
- package/package.json +3 -3
package/dist-cjs/index.js
CHANGED
|
@@ -69,7 +69,7 @@ const commonParams = {
|
|
|
69
69
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
70
70
|
};
|
|
71
71
|
|
|
72
|
-
var version = "3.
|
|
72
|
+
var version = "3.1095.0";
|
|
73
73
|
var packageInfo = {
|
|
74
74
|
version: version};
|
|
75
75
|
|
|
@@ -4863,6 +4863,7 @@ const IntermediateTableVersionStatus = {
|
|
|
4863
4863
|
const WorkerComputeType = {
|
|
4864
4864
|
CR1X: "CR.1X",
|
|
4865
4865
|
CR4X: "CR.4X",
|
|
4866
|
+
CR8X: "CR.8X",
|
|
4866
4867
|
};
|
|
4867
4868
|
const ResultFormat = {
|
|
4868
4869
|
CSV: "CSV",
|
package/dist-es/models/enums.js
CHANGED
|
@@ -131,7 +131,7 @@ declare const GetProtectedQueryCommand_base: {
|
|
|
131
131
|
* // },
|
|
132
132
|
* // computeConfiguration: { // ComputeConfiguration Union: only one key present
|
|
133
133
|
* // worker: { // WorkerComputeConfiguration
|
|
134
|
-
* // type: "CR.1X" || "CR.4X",
|
|
134
|
+
* // type: "CR.1X" || "CR.4X" || "CR.8X",
|
|
135
135
|
* // number: Number("int"),
|
|
136
136
|
* // properties: { // WorkerComputeConfigurationProperties Union: only one key present
|
|
137
137
|
* // spark: { // SparkProperties
|
|
@@ -41,7 +41,7 @@ declare const PopulateIntermediateTableCommand_base: {
|
|
|
41
41
|
* },
|
|
42
42
|
* computeConfiguration: { // IntermediateTableComputeConfiguration Union: only one key present
|
|
43
43
|
* queryComputeConfiguration: { // WorkerComputeConfiguration
|
|
44
|
-
* type: "CR.1X" || "CR.4X",
|
|
44
|
+
* type: "CR.1X" || "CR.4X" || "CR.8X",
|
|
45
45
|
* number: Number("int"),
|
|
46
46
|
* properties: { // WorkerComputeConfigurationProperties Union: only one key present
|
|
47
47
|
* spark: { // SparkProperties
|
|
@@ -78,7 +78,7 @@ declare const StartProtectedQueryCommand_base: {
|
|
|
78
78
|
* },
|
|
79
79
|
* computeConfiguration: { // ComputeConfiguration Union: only one key present
|
|
80
80
|
* worker: { // WorkerComputeConfiguration
|
|
81
|
-
* type: "CR.1X" || "CR.4X",
|
|
81
|
+
* type: "CR.1X" || "CR.4X" || "CR.8X",
|
|
82
82
|
* number: Number("int"),
|
|
83
83
|
* properties: { // WorkerComputeConfigurationProperties Union: only one key present
|
|
84
84
|
* spark: { // SparkProperties
|
|
@@ -183,7 +183,7 @@ declare const StartProtectedQueryCommand_base: {
|
|
|
183
183
|
* // },
|
|
184
184
|
* // computeConfiguration: { // ComputeConfiguration Union: only one key present
|
|
185
185
|
* // worker: { // WorkerComputeConfiguration
|
|
186
|
-
* // type: "CR.1X" || "CR.4X",
|
|
186
|
+
* // type: "CR.1X" || "CR.4X" || "CR.8X",
|
|
187
187
|
* // number: Number("int"),
|
|
188
188
|
* // properties: { // WorkerComputeConfigurationProperties Union: only one key present
|
|
189
189
|
* // spark: { // SparkProperties
|
|
@@ -132,7 +132,7 @@ declare const UpdateProtectedQueryCommand_base: {
|
|
|
132
132
|
* // },
|
|
133
133
|
* // computeConfiguration: { // ComputeConfiguration Union: only one key present
|
|
134
134
|
* // worker: { // WorkerComputeConfiguration
|
|
135
|
-
* // type: "CR.1X" || "CR.4X",
|
|
135
|
+
* // type: "CR.1X" || "CR.4X" || "CR.8X",
|
|
136
136
|
* // number: Number("int"),
|
|
137
137
|
* // properties: { // WorkerComputeConfigurationProperties Union: only one key present
|
|
138
138
|
* // spark: { // SparkProperties
|
|
@@ -474,6 +474,7 @@ export type IntermediateTableVersionStatus =
|
|
|
474
474
|
export declare const WorkerComputeType: {
|
|
475
475
|
readonly CR1X: "CR.1X";
|
|
476
476
|
readonly CR4X: "CR.4X";
|
|
477
|
+
readonly CR8X: "CR.8X";
|
|
477
478
|
};
|
|
478
479
|
export type WorkerComputeType = (typeof WorkerComputeType)[keyof typeof WorkerComputeType];
|
|
479
480
|
export declare const ResultFormat: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cleanrooms",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1096.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Cleanrooms Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-cleanrooms",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@aws-sdk/core": "^3.977.
|
|
50
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
49
|
+
"@aws-sdk/core": "^3.977.1",
|
|
50
|
+
"@aws-sdk/credential-provider-node": "^3.972.73",
|
|
51
51
|
"@aws-sdk/types": "^3.974.2",
|
|
52
52
|
"@smithy/core": "^3.29.8",
|
|
53
53
|
"@smithy/fetch-http-handler": "^5.6.10",
|