@aws-sdk/client-cleanroomsml 3.929.0 → 3.931.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
|
@@ -205,14 +205,6 @@ const WorkerComputeType = {
|
|
|
205
205
|
CR1X: "CR.1X",
|
|
206
206
|
CR4X: "CR.4X",
|
|
207
207
|
};
|
|
208
|
-
exports.ComputeConfiguration = void 0;
|
|
209
|
-
(function (ComputeConfiguration) {
|
|
210
|
-
ComputeConfiguration.visit = (value, visitor) => {
|
|
211
|
-
if (value.worker !== undefined)
|
|
212
|
-
return visitor.worker(value.worker);
|
|
213
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
214
|
-
};
|
|
215
|
-
})(exports.ComputeConfiguration || (exports.ComputeConfiguration = {}));
|
|
216
208
|
const AudienceGenerationJobStatus = {
|
|
217
209
|
ACTIVE: "ACTIVE",
|
|
218
210
|
CREATE_FAILED: "CREATE_FAILED",
|
|
@@ -337,22 +329,6 @@ const ResultFormat = {
|
|
|
337
329
|
CSV: "CSV",
|
|
338
330
|
PARQUET: "PARQUET",
|
|
339
331
|
};
|
|
340
|
-
exports.InputChannelDataSource = void 0;
|
|
341
|
-
(function (InputChannelDataSource) {
|
|
342
|
-
InputChannelDataSource.visit = (value, visitor) => {
|
|
343
|
-
if (value.protectedQueryInputParameters !== undefined)
|
|
344
|
-
return visitor.protectedQueryInputParameters(value.protectedQueryInputParameters);
|
|
345
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
346
|
-
};
|
|
347
|
-
})(exports.InputChannelDataSource || (exports.InputChannelDataSource = {}));
|
|
348
|
-
exports.PrivacyBudgets = void 0;
|
|
349
|
-
(function (PrivacyBudgets) {
|
|
350
|
-
PrivacyBudgets.visit = (value, visitor) => {
|
|
351
|
-
if (value.accessBudgets !== undefined)
|
|
352
|
-
return visitor.accessBudgets(value.accessBudgets);
|
|
353
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
354
|
-
};
|
|
355
|
-
})(exports.PrivacyBudgets || (exports.PrivacyBudgets = {}));
|
|
356
332
|
const S3DataDistributionType = {
|
|
357
333
|
FULLY_REPLICATED: "FullyReplicated",
|
|
358
334
|
SHARDED_BY_S3_KEY: "ShardedByS3Key",
|
|
@@ -87,14 +87,6 @@ export const WorkerComputeType = {
|
|
|
87
87
|
CR1X: "CR.1X",
|
|
88
88
|
CR4X: "CR.4X",
|
|
89
89
|
};
|
|
90
|
-
export var ComputeConfiguration;
|
|
91
|
-
(function (ComputeConfiguration) {
|
|
92
|
-
ComputeConfiguration.visit = (value, visitor) => {
|
|
93
|
-
if (value.worker !== undefined)
|
|
94
|
-
return visitor.worker(value.worker);
|
|
95
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
96
|
-
};
|
|
97
|
-
})(ComputeConfiguration || (ComputeConfiguration = {}));
|
|
98
90
|
export const AudienceGenerationJobStatus = {
|
|
99
91
|
ACTIVE: "ACTIVE",
|
|
100
92
|
CREATE_FAILED: "CREATE_FAILED",
|
|
@@ -219,22 +211,6 @@ export const ResultFormat = {
|
|
|
219
211
|
CSV: "CSV",
|
|
220
212
|
PARQUET: "PARQUET",
|
|
221
213
|
};
|
|
222
|
-
export var InputChannelDataSource;
|
|
223
|
-
(function (InputChannelDataSource) {
|
|
224
|
-
InputChannelDataSource.visit = (value, visitor) => {
|
|
225
|
-
if (value.protectedQueryInputParameters !== undefined)
|
|
226
|
-
return visitor.protectedQueryInputParameters(value.protectedQueryInputParameters);
|
|
227
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
228
|
-
};
|
|
229
|
-
})(InputChannelDataSource || (InputChannelDataSource = {}));
|
|
230
|
-
export var PrivacyBudgets;
|
|
231
|
-
(function (PrivacyBudgets) {
|
|
232
|
-
PrivacyBudgets.visit = (value, visitor) => {
|
|
233
|
-
if (value.accessBudgets !== undefined)
|
|
234
|
-
return visitor.accessBudgets(value.accessBudgets);
|
|
235
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
236
|
-
};
|
|
237
|
-
})(PrivacyBudgets || (PrivacyBudgets = {}));
|
|
238
214
|
export const S3DataDistributionType = {
|
|
239
215
|
FULLY_REPLICATED: "FullyReplicated",
|
|
240
216
|
SHARDED_BY_S3_KEY: "ShardedByS3Key",
|
|
@@ -448,11 +448,14 @@ export declare namespace ComputeConfiguration {
|
|
|
448
448
|
worker?: never;
|
|
449
449
|
$unknown: [string, any];
|
|
450
450
|
}
|
|
451
|
+
/**
|
|
452
|
+
* @deprecated unused in schema-serde mode.
|
|
453
|
+
*
|
|
454
|
+
*/
|
|
451
455
|
interface Visitor<T> {
|
|
452
456
|
worker: (value: WorkerComputeConfiguration) => T;
|
|
453
457
|
_: (name: string, value: any) => T;
|
|
454
458
|
}
|
|
455
|
-
const visit: <T>(value: ComputeConfiguration, visitor: Visitor<T>) => T;
|
|
456
459
|
}
|
|
457
460
|
/**
|
|
458
461
|
* <p>The parameters for the SQL type Protected Query.</p>
|
|
@@ -3064,11 +3067,14 @@ export declare namespace InputChannelDataSource {
|
|
|
3064
3067
|
protectedQueryInputParameters?: never;
|
|
3065
3068
|
$unknown: [string, any];
|
|
3066
3069
|
}
|
|
3070
|
+
/**
|
|
3071
|
+
* @deprecated unused in schema-serde mode.
|
|
3072
|
+
*
|
|
3073
|
+
*/
|
|
3067
3074
|
interface Visitor<T> {
|
|
3068
3075
|
protectedQueryInputParameters: (value: ProtectedQueryInputParameters) => T;
|
|
3069
3076
|
_: (name: string, value: any) => T;
|
|
3070
3077
|
}
|
|
3071
|
-
const visit: <T>(value: InputChannelDataSource, visitor: Visitor<T>) => T;
|
|
3072
3078
|
}
|
|
3073
3079
|
/**
|
|
3074
3080
|
* <p>Provides information about the data source that is used to create an ML input channel.</p>
|
|
@@ -3195,11 +3201,14 @@ export declare namespace PrivacyBudgets {
|
|
|
3195
3201
|
accessBudgets?: never;
|
|
3196
3202
|
$unknown: [string, any];
|
|
3197
3203
|
}
|
|
3204
|
+
/**
|
|
3205
|
+
* @deprecated unused in schema-serde mode.
|
|
3206
|
+
*
|
|
3207
|
+
*/
|
|
3198
3208
|
interface Visitor<T> {
|
|
3199
3209
|
accessBudgets: (value: AccessBudget[]) => T;
|
|
3200
3210
|
_: (name: string, value: any) => T;
|
|
3201
3211
|
}
|
|
3202
|
-
const visit: <T>(value: PrivacyBudgets, visitor: Visitor<T>) => T;
|
|
3203
3212
|
}
|
|
3204
3213
|
/**
|
|
3205
3214
|
* @public
|
|
@@ -156,7 +156,6 @@ export declare namespace ComputeConfiguration {
|
|
|
156
156
|
worker: (value: WorkerComputeConfiguration) => T;
|
|
157
157
|
_: (name: string, value: any) => T;
|
|
158
158
|
}
|
|
159
|
-
const visit: <T>(value: ComputeConfiguration, visitor: Visitor<T>) => T;
|
|
160
159
|
}
|
|
161
160
|
export interface ProtectedQuerySQLParameters {
|
|
162
161
|
queryString?: string | undefined;
|
|
@@ -890,7 +889,6 @@ export declare namespace InputChannelDataSource {
|
|
|
890
889
|
protectedQueryInputParameters: (value: ProtectedQueryInputParameters) => T;
|
|
891
890
|
_: (name: string, value: any) => T;
|
|
892
891
|
}
|
|
893
|
-
const visit: <T>(value: InputChannelDataSource, visitor: Visitor<T>) => T;
|
|
894
892
|
}
|
|
895
893
|
export interface InputChannel {
|
|
896
894
|
dataSource: InputChannelDataSource | undefined;
|
|
@@ -933,7 +931,6 @@ export declare namespace PrivacyBudgets {
|
|
|
933
931
|
accessBudgets: (value: AccessBudget[]) => T;
|
|
934
932
|
_: (name: string, value: any) => T;
|
|
935
933
|
}
|
|
936
|
-
const visit: <T>(value: PrivacyBudgets, visitor: Visitor<T>) => T;
|
|
937
934
|
}
|
|
938
935
|
export interface GetCollaborationMLInputChannelResponse {
|
|
939
936
|
membershipIdentifier: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cleanroomsml",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cleanroomsml Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.931.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-cleanroomsml",
|
|
@@ -20,41 +20,41 @@
|
|
|
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.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
-
"@smithy/config-resolver": "^4.4.
|
|
35
|
-
"@smithy/core": "^3.
|
|
36
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
37
|
-
"@smithy/hash-node": "^4.2.
|
|
38
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
39
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
43
|
-
"@smithy/middleware-stack": "^4.2.
|
|
44
|
-
"@smithy/node-config-provider": "^4.3.
|
|
45
|
-
"@smithy/node-http-handler": "^4.4.
|
|
46
|
-
"@smithy/protocol-http": "^5.3.
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
48
|
-
"@smithy/types": "^4.
|
|
49
|
-
"@smithy/url-parser": "^4.2.
|
|
23
|
+
"@aws-sdk/core": "3.931.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.931.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.930.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.931.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
|
+
"@aws-sdk/types": "3.930.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.931.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
+
"@smithy/core": "^3.18.2",
|
|
36
|
+
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
|
+
"@smithy/hash-node": "^4.2.5",
|
|
38
|
+
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
|
+
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.9",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.9",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.5",
|
|
43
|
+
"@smithy/middleware-stack": "^4.2.5",
|
|
44
|
+
"@smithy/node-config-provider": "^4.3.5",
|
|
45
|
+
"@smithy/node-http-handler": "^4.4.5",
|
|
46
|
+
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
+
"@smithy/smithy-client": "^4.9.5",
|
|
48
|
+
"@smithy/types": "^4.9.0",
|
|
49
|
+
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
55
|
-
"@smithy/util-endpoints": "^3.2.
|
|
56
|
-
"@smithy/util-middleware": "^4.2.
|
|
57
|
-
"@smithy/util-retry": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.8",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.11",
|
|
55
|
+
"@smithy/util-endpoints": "^3.2.5",
|
|
56
|
+
"@smithy/util-middleware": "^4.2.5",
|
|
57
|
+
"@smithy/util-retry": "^4.2.5",
|
|
58
58
|
"@smithy/util-utf8": "^4.2.0",
|
|
59
59
|
"tslib": "^2.6.2"
|
|
60
60
|
},
|