@aws-sdk/client-cleanrooms 3.934.0 → 3.935.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.
Files changed (31) hide show
  1. package/dist-cjs/index.js +278 -391
  2. package/dist-es/index.js +2 -1
  3. package/dist-es/models/enums.js +277 -0
  4. package/dist-es/models/errors.js +105 -0
  5. package/dist-es/models/models_0.js +5 -349
  6. package/dist-es/models/models_1.js +0 -38
  7. package/dist-es/schemas/schemas_0.js +1 -1
  8. package/dist-types/commands/CreateMembershipCommand.d.ts +1 -1
  9. package/dist-types/commands/DeleteMembershipCommand.d.ts +1 -1
  10. package/dist-types/commands/GetMembershipCommand.d.ts +1 -1
  11. package/dist-types/commands/GetProtectedJobCommand.d.ts +1 -1
  12. package/dist-types/commands/GetProtectedQueryCommand.d.ts +2 -1
  13. package/dist-types/index.d.ts +4 -1
  14. package/dist-types/models/enums.d.ts +613 -0
  15. package/dist-types/models/errors.d.ts +137 -0
  16. package/dist-types/models/models_0.d.ts +856 -652
  17. package/dist-types/models/models_1.d.ts +2 -953
  18. package/dist-types/ts3.4/commands/CreateMembershipCommand.d.ts +1 -1
  19. package/dist-types/ts3.4/commands/DeleteMembershipCommand.d.ts +1 -1
  20. package/dist-types/ts3.4/commands/GetMembershipCommand.d.ts +1 -1
  21. package/dist-types/ts3.4/commands/GetProtectedJobCommand.d.ts +1 -1
  22. package/dist-types/ts3.4/commands/GetProtectedQueryCommand.d.ts +2 -4
  23. package/dist-types/ts3.4/index.d.ts +4 -1
  24. package/dist-types/ts3.4/models/enums.d.ts +354 -0
  25. package/dist-types/ts3.4/models/errors.d.ts +66 -0
  26. package/dist-types/ts3.4/models/models_0.d.ts +328 -364
  27. package/dist-types/ts3.4/models/models_1.d.ts +23 -341
  28. package/package.json +12 -12
  29. package/dist-es/models/index.js +0 -2
  30. package/dist-types/models/index.d.ts +0 -2
  31. package/dist-types/ts3.4/models/index.d.ts +0 -2
@@ -1,36 +1,6 @@
1
- import { CleanRoomsServiceException as __BaseException } from "./CleanRoomsServiceException";
2
- export const AutoRefreshMode = {
3
- DISABLED: "DISABLED",
4
- ENABLED: "ENABLED",
5
- };
6
- export const AccessBudgetType = {
7
- CALENDAR_DAY: "CALENDAR_DAY",
8
- CALENDAR_MONTH: "CALENDAR_MONTH",
9
- CALENDAR_WEEK: "CALENDAR_WEEK",
10
- LIFETIME: "LIFETIME",
11
- };
12
1
  export const AccessDeniedExceptionReason = {
13
2
  INSUFFICIENT_PERMISSIONS: "INSUFFICIENT_PERMISSIONS",
14
3
  };
15
- export class AccessDeniedException extends __BaseException {
16
- name = "AccessDeniedException";
17
- $fault = "client";
18
- reason;
19
- constructor(opts) {
20
- super({
21
- name: "AccessDeniedException",
22
- $fault: "client",
23
- ...opts,
24
- });
25
- Object.setPrototypeOf(this, AccessDeniedException.prototype);
26
- this.reason = opts.reason;
27
- }
28
- }
29
- export const AdditionalAnalyses = {
30
- ALLOWED: "ALLOWED",
31
- NOT_ALLOWED: "NOT_ALLOWED",
32
- REQUIRED: "REQUIRED",
33
- };
34
4
  export const AggregateFunctionName = {
35
5
  AVG: "AVG",
36
6
  COUNT: "COUNT",
@@ -41,80 +11,6 @@ export const AggregateFunctionName = {
41
11
  export const AggregationType = {
42
12
  COUNT_DISTINCT: "COUNT_DISTINCT",
43
13
  };
44
- export const SupportedS3Region = {
45
- AF_SOUTH_1: "af-south-1",
46
- AP_EAST_1: "ap-east-1",
47
- AP_EAST_2: "ap-east-2",
48
- AP_NORTHEAST_1: "ap-northeast-1",
49
- AP_NORTHEAST_2: "ap-northeast-2",
50
- AP_NORTHEAST_3: "ap-northeast-3",
51
- AP_SOUTHEAST_1: "ap-southeast-1",
52
- AP_SOUTHEAST_2: "ap-southeast-2",
53
- AP_SOUTHEAST_3: "ap-southeast-3",
54
- AP_SOUTHEAST_4: "ap-southeast-4",
55
- AP_SOUTHEAST_5: "ap-southeast-5",
56
- AP_SOUTHEAST_7: "ap-southeast-7",
57
- AP_SOUTH_1: "ap-south-1",
58
- AP_SOUTH_2: "ap-south-2",
59
- CA_CENTRAL_1: "ca-central-1",
60
- CA_WEST_1: "ca-west-1",
61
- EU_CENTRAL_1: "eu-central-1",
62
- EU_CENTRAL_2: "eu-central-2",
63
- EU_NORTH_1: "eu-north-1",
64
- EU_SOUTH_1: "eu-south-1",
65
- EU_SOUTH_2: "eu-south-2",
66
- EU_WEST_1: "eu-west-1",
67
- EU_WEST_2: "eu-west-2",
68
- EU_WEST_3: "eu-west-3",
69
- IL_CENTRAL_1: "il-central-1",
70
- ME_CENTRAL_1: "me-central-1",
71
- ME_SOUTH_1: "me-south-1",
72
- MX_CENTRAL_1: "mx-central-1",
73
- SA_EAST_1: "sa-east-1",
74
- US_EAST_1: "us-east-1",
75
- US_EAST_2: "us-east-2",
76
- US_WEST_1: "us-west-1",
77
- US_WEST_2: "us-west-2",
78
- };
79
- export const AnalysisFormat = {
80
- PYSPARK_1_0: "PYSPARK_1_0",
81
- SQL: "SQL",
82
- };
83
- export const AnalysisMethod = {
84
- DIRECT_JOB: "DIRECT_JOB",
85
- DIRECT_QUERY: "DIRECT_QUERY",
86
- MULTIPLE: "MULTIPLE",
87
- };
88
- export const ParameterType = {
89
- BIGINT: "BIGINT",
90
- BINARY: "BINARY",
91
- BOOLEAN: "BOOLEAN",
92
- BYTE: "BYTE",
93
- CHAR: "CHAR",
94
- CHARACTER: "CHARACTER",
95
- DATE: "DATE",
96
- DECIMAL: "DECIMAL",
97
- DOUBLE: "DOUBLE",
98
- DOUBLE_PRECISION: "DOUBLE_PRECISION",
99
- FLOAT: "FLOAT",
100
- INT: "INT",
101
- INTEGER: "INTEGER",
102
- LONG: "LONG",
103
- NUMERIC: "NUMERIC",
104
- REAL: "REAL",
105
- SHORT: "SHORT",
106
- SMALLINT: "SMALLINT",
107
- STRING: "STRING",
108
- TIME: "TIME",
109
- TIMESTAMP: "TIMESTAMP",
110
- TIMESTAMPTZ: "TIMESTAMPTZ",
111
- TIMESTAMP_LTZ: "TIMESTAMP_LTZ",
112
- TIMESTAMP_NTZ: "TIMESTAMP_NTZ",
113
- TIMETZ: "TIMETZ",
114
- TINYINT: "TINYINT",
115
- VARBYTE: "VARBYTE",
116
- VARCHAR: "VARCHAR",
117
- };
118
14
  export const JoinOperator = {
119
15
  AND: "AND",
120
16
  OR: "OR",
@@ -148,23 +44,6 @@ export const ScalarFunctions = {
148
44
  TRUNC: "TRUNC",
149
45
  UPPER: "UPPER",
150
46
  };
151
- export const AnalysisRuleType = {
152
- AGGREGATION: "AGGREGATION",
153
- CUSTOM: "CUSTOM",
154
- ID_MAPPING_TABLE: "ID_MAPPING_TABLE",
155
- LIST: "LIST",
156
- };
157
- export const ErrorMessageType = {
158
- DETAILED: "DETAILED",
159
- };
160
- export const AnalysisTemplateValidationStatus = {
161
- INVALID: "INVALID",
162
- UNABLE_TO_VALIDATE: "UNABLE_TO_VALIDATE",
163
- VALID: "VALID",
164
- };
165
- export const AnalysisTemplateValidationType = {
166
- DIFFERENTIAL_PRIVACY: "DIFFERENTIAL_PRIVACY",
167
- };
168
47
  export const ConflictExceptionReason = {
169
48
  ALREADY_EXISTS: "ALREADY_EXISTS",
170
49
  INVALID_STATE: "INVALID_STATE",
@@ -176,251 +55,28 @@ export const ResourceType = {
176
55
  CONFIGURED_TABLE_ASSOCIATION: "CONFIGURED_TABLE_ASSOCIATION",
177
56
  MEMBERSHIP: "MEMBERSHIP",
178
57
  };
179
- export class ConflictException extends __BaseException {
180
- name = "ConflictException";
181
- $fault = "client";
182
- resourceId;
183
- resourceType;
184
- reason;
185
- constructor(opts) {
186
- super({
187
- name: "ConflictException",
188
- $fault: "client",
189
- ...opts,
190
- });
191
- Object.setPrototypeOf(this, ConflictException.prototype);
192
- this.resourceId = opts.resourceId;
193
- this.resourceType = opts.resourceType;
194
- this.reason = opts.reason;
195
- }
196
- }
197
- export class InternalServerException extends __BaseException {
198
- name = "InternalServerException";
199
- $fault = "server";
200
- constructor(opts) {
201
- super({
202
- name: "InternalServerException",
203
- $fault: "server",
204
- ...opts,
205
- });
206
- Object.setPrototypeOf(this, InternalServerException.prototype);
207
- }
208
- }
209
- export class ResourceNotFoundException extends __BaseException {
210
- name = "ResourceNotFoundException";
211
- $fault = "client";
212
- resourceId;
213
- resourceType;
214
- constructor(opts) {
215
- super({
216
- name: "ResourceNotFoundException",
217
- $fault: "client",
218
- ...opts,
219
- });
220
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
221
- this.resourceId = opts.resourceId;
222
- this.resourceType = opts.resourceType;
223
- }
224
- }
225
- export class ServiceQuotaExceededException extends __BaseException {
226
- name = "ServiceQuotaExceededException";
227
- $fault = "client";
228
- quotaName;
229
- quotaValue;
230
- constructor(opts) {
231
- super({
232
- name: "ServiceQuotaExceededException",
233
- $fault: "client",
234
- ...opts,
235
- });
236
- Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
237
- this.quotaName = opts.quotaName;
238
- this.quotaValue = opts.quotaValue;
239
- }
240
- }
241
- export class ThrottlingException extends __BaseException {
242
- name = "ThrottlingException";
243
- $fault = "client";
244
- constructor(opts) {
245
- super({
246
- name: "ThrottlingException",
247
- $fault: "client",
248
- ...opts,
249
- });
250
- Object.setPrototypeOf(this, ThrottlingException.prototype);
251
- }
252
- }
253
58
  export const ValidationExceptionReason = {
254
59
  FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",
255
60
  IAM_SYNCHRONIZATION_DELAY: "IAM_SYNCHRONIZATION_DELAY",
256
61
  INVALID_CONFIGURATION: "INVALID_CONFIGURATION",
257
62
  INVALID_QUERY: "INVALID_QUERY",
258
63
  };
259
- export class ValidationException extends __BaseException {
260
- name = "ValidationException";
261
- $fault = "client";
262
- reason;
263
- fieldList;
264
- constructor(opts) {
265
- super({
266
- name: "ValidationException",
267
- $fault: "client",
268
- ...opts,
269
- });
270
- Object.setPrototypeOf(this, ValidationException.prototype);
271
- this.reason = opts.reason;
272
- this.fieldList = opts.fieldList;
273
- }
274
- }
275
- export const AnalysisType = {
276
- ADDITIONAL_ANALYSIS: "ADDITIONAL_ANALYSIS",
277
- DIRECT_ANALYSIS: "DIRECT_ANALYSIS",
278
- };
279
- export const AnalyticsEngine = {
280
- CLEAN_ROOMS_SQL: "CLEAN_ROOMS_SQL",
281
- SPARK: "SPARK",
282
- };
283
- export const CommercialRegion = {
284
- AF_SOUTH_1: "af-south-1",
285
- AP_EAST_1: "ap-east-1",
286
- AP_EAST_2: "ap-east-2",
287
- AP_NORTHEAST_1: "ap-northeast-1",
288
- AP_NORTHEAST_2: "ap-northeast-2",
289
- AP_NORTHEAST_3: "ap-northeast-3",
290
- AP_SOUTHEAST_1: "ap-southeast-1",
291
- AP_SOUTHEAST_2: "ap-southeast-2",
292
- AP_SOUTHEAST_3: "ap-southeast-3",
293
- AP_SOUTHEAST_4: "ap-southeast-4",
294
- AP_SOUTHEAST_5: "ap-southeast-5",
295
- AP_SOUTHEAST_7: "ap-southeast-7",
296
- AP_SOUTH_1: "ap-south-1",
297
- AP_SOUTH_2: "ap-south-2",
298
- CA_CENTRAL_1: "ca-central-1",
299
- CA_WEST_1: "ca-west-1",
300
- EU_CENTRAL_1: "eu-central-1",
301
- EU_CENTRAL_2: "eu-central-2",
302
- EU_NORTH_1: "eu-north-1",
303
- EU_SOUTH_1: "eu-south-1",
304
- EU_SOUTH_2: "eu-south-2",
305
- EU_WEST_1: "eu-west-1",
306
- EU_WEST_2: "eu-west-2",
307
- EU_WEST_3: "eu-west-3",
308
- IL_CENTRAL_1: "il-central-1",
309
- ME_CENTRAL_1: "me-central-1",
310
- ME_SOUTH_1: "me-south-1",
311
- MX_CENTRAL_1: "mx-central-1",
312
- SA_EAST_1: "sa-east-1",
313
- US_EAST_1: "us-east-1",
314
- US_EAST_2: "us-east-2",
315
- US_WEST_1: "us-west-1",
316
- US_WEST_2: "us-west-2",
317
- };
318
- export const AutoApprovedChangeType = {
319
- ADD_MEMBER: "ADD_MEMBER",
320
- };
321
- export const SchemaConfiguration = {
322
- DIFFERENTIAL_PRIVACY: "DIFFERENTIAL_PRIVACY",
323
- };
324
- export const SchemaStatusReasonCode = {
325
- ADDITIONAL_ANALYSES_NOT_ALLOWED: "ADDITIONAL_ANALYSES_NOT_ALLOWED",
326
- ADDITIONAL_ANALYSES_NOT_CONFIGURED: "ADDITIONAL_ANALYSES_NOT_CONFIGURED",
327
- ANALYSIS_PROVIDERS_NOT_CONFIGURED: "ANALYSIS_PROVIDERS_NOT_CONFIGURED",
328
- ANALYSIS_RULE_MISSING: "ANALYSIS_RULE_MISSING",
329
- ANALYSIS_RULE_TYPES_NOT_COMPATIBLE: "ANALYSIS_RULE_TYPES_NOT_COMPATIBLE",
330
- ANALYSIS_TEMPLATES_NOT_CONFIGURED: "ANALYSIS_TEMPLATES_NOT_CONFIGURED",
331
- COLLABORATION_ANALYSIS_RULE_NOT_CONFIGURED: "COLLABORATION_ANALYSIS_RULE_NOT_CONFIGURED",
332
- DIFFERENTIAL_PRIVACY_POLICY_NOT_CONFIGURED: "DIFFERENTIAL_PRIVACY_POLICY_NOT_CONFIGURED",
333
- ID_MAPPING_TABLE_NOT_POPULATED: "ID_MAPPING_TABLE_NOT_POPULATED",
334
- RESULT_RECEIVERS_NOT_ALLOWED: "RESULT_RECEIVERS_NOT_ALLOWED",
335
- RESULT_RECEIVERS_NOT_CONFIGURED: "RESULT_RECEIVERS_NOT_CONFIGURED",
336
- };
337
- export const SchemaStatus = {
338
- NOT_READY: "NOT_READY",
339
- READY: "READY",
340
- };
341
- export const IdNamespaceType = {
342
- SOURCE: "SOURCE",
343
- TARGET: "TARGET",
344
- };
345
- export const SelectedAnalysisMethod = {
346
- DIRECT_JOB: "DIRECT_JOB",
347
- DIRECT_QUERY: "DIRECT_QUERY",
348
- };
349
- export const SchemaType = {
350
- ID_MAPPING_TABLE: "ID_MAPPING_TABLE",
351
- TABLE: "TABLE",
352
- };
353
- export const MemberAbility = {
354
- CAN_QUERY: "CAN_QUERY",
355
- CAN_RECEIVE_RESULTS: "CAN_RECEIVE_RESULTS",
356
- CAN_RUN_JOB: "CAN_RUN_JOB",
357
- };
358
- export const CustomMLMemberAbility = {
359
- CAN_RECEIVE_INFERENCE_OUTPUT: "CAN_RECEIVE_INFERENCE_OUTPUT",
360
- CAN_RECEIVE_MODEL_OUTPUT: "CAN_RECEIVE_MODEL_OUTPUT",
361
- };
362
- export const CollaborationJobLogStatus = {
363
- DISABLED: "DISABLED",
364
- ENABLED: "ENABLED",
365
- };
366
- export const CollaborationQueryLogStatus = {
367
- DISABLED: "DISABLED",
368
- ENABLED: "ENABLED",
369
- };
370
64
  export const MemberStatus = {
371
65
  ACTIVE: "ACTIVE",
372
66
  INVITED: "INVITED",
373
67
  LEFT: "LEFT",
374
68
  REMOVED: "REMOVED",
375
69
  };
376
- export const ChangeSpecificationType = {
377
- MEMBER: "MEMBER",
378
- };
379
- export const ChangeType = {
380
- ADD_MEMBER: "ADD_MEMBER",
381
- };
382
- export const ChangeRequestStatus = {
383
- APPROVED: "APPROVED",
384
- CANCELLED: "CANCELLED",
385
- COMMITTED: "COMMITTED",
386
- DENIED: "DENIED",
387
- PENDING: "PENDING",
388
- };
389
- export const PrivacyBudgetTemplateAutoRefresh = {
390
- CALENDAR_MONTH: "CALENDAR_MONTH",
391
- NONE: "NONE",
392
- };
393
- export const PrivacyBudgetType = {
394
- ACCESS_BUDGET: "ACCESS_BUDGET",
395
- DIFFERENTIAL_PRIVACY: "DIFFERENTIAL_PRIVACY",
396
- };
397
- export const DifferentialPrivacyAggregationType = {
398
- AVG: "AVG",
399
- COUNT: "COUNT",
400
- COUNT_DISTINCT: "COUNT_DISTINCT",
401
- STDDEV: "STDDEV",
402
- SUM: "SUM",
403
- };
404
70
  export const FilterableMemberStatus = {
405
71
  ACTIVE: "ACTIVE",
406
72
  INVITED: "INVITED",
407
73
  };
408
- export const ConfiguredTableAssociationAnalysisRuleType = {
409
- AGGREGATION: "AGGREGATION",
410
- CUSTOM: "CUSTOM",
411
- LIST: "LIST",
412
- };
413
- export const ConfiguredTableAnalysisRuleType = {
414
- AGGREGATION: "AGGREGATION",
415
- CUSTOM: "CUSTOM",
416
- LIST: "LIST",
417
- };
418
- export const JobType = {
419
- BATCH: "BATCH",
420
- DELETE_ONLY: "DELETE_ONLY",
421
- INCREMENTAL: "INCREMENTAL",
422
- };
423
74
  export const ResultFormat = {
424
75
  CSV: "CSV",
425
76
  PARQUET: "PARQUET",
426
77
  };
78
+ export const MembershipStatus = {
79
+ ACTIVE: "ACTIVE",
80
+ COLLABORATION_DELETED: "COLLABORATION_DELETED",
81
+ REMOVED: "REMOVED",
82
+ };
@@ -1,32 +1,3 @@
1
- export const MembershipJobLogStatus = {
2
- DISABLED: "DISABLED",
3
- ENABLED: "ENABLED",
4
- };
5
- export const MembershipQueryLogStatus = {
6
- DISABLED: "DISABLED",
7
- ENABLED: "ENABLED",
8
- };
9
- export const MembershipStatus = {
10
- ACTIVE: "ACTIVE",
11
- COLLABORATION_DELETED: "COLLABORATION_DELETED",
12
- REMOVED: "REMOVED",
13
- };
14
- export const ProtectedJobWorkerComputeType = {
15
- CR1X: "CR.1X",
16
- CR4X: "CR.4X",
17
- };
18
- export const ProtectedJobStatus = {
19
- CANCELLED: "CANCELLED",
20
- CANCELLING: "CANCELLING",
21
- FAILED: "FAILED",
22
- STARTED: "STARTED",
23
- SUBMITTED: "SUBMITTED",
24
- SUCCESS: "SUCCESS",
25
- };
26
- export const WorkerComputeType = {
27
- CR1X: "CR.1X",
28
- CR4X: "CR.4X",
29
- };
30
1
  export const ProtectedQueryStatus = {
31
2
  CANCELLED: "CANCELLED",
32
3
  CANCELLING: "CANCELLING",
@@ -36,18 +7,9 @@ export const ProtectedQueryStatus = {
36
7
  SUCCESS: "SUCCESS",
37
8
  TIMED_OUT: "TIMED_OUT",
38
9
  };
39
- export const ProtectedJobAnalysisType = {
40
- DIRECT_ANALYSIS: "DIRECT_ANALYSIS",
41
- };
42
- export const ProtectedJobType = {
43
- PYSPARK: "PYSPARK",
44
- };
45
10
  export const ProtectedQueryType = {
46
11
  SQL: "SQL",
47
12
  };
48
- export const TargetProtectedJobStatus = {
49
- CANCELLED: "CANCELLED",
50
- };
51
13
  export const TargetProtectedQueryStatus = {
52
14
  CANCELLED: "CANCELLED",
53
15
  };
@@ -793,7 +793,7 @@ const _wG = "workGroup";
793
793
  const n0 = "com.amazonaws.cleanrooms";
794
794
  import { TypeRegistry } from "@smithy/core/schema";
795
795
  import { CleanRoomsServiceException as __CleanRoomsServiceException } from "../models/CleanRoomsServiceException";
796
- import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/index";
796
+ import { AccessDeniedException as __AccessDeniedException, ConflictException as __ConflictException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/errors";
797
797
  export var AnalysisTemplateText = [0, n0, _ATT, 8, 0];
798
798
  export var AccessBudget = [
799
799
  3,
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient";
4
- import { CreateMembershipInput, CreateMembershipOutput } from "../models/models_1";
4
+ import { CreateMembershipInput, CreateMembershipOutput } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient";
4
- import { DeleteMembershipInput, DeleteMembershipOutput } from "../models/models_1";
4
+ import { DeleteMembershipInput, DeleteMembershipOutput } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient";
4
- import { GetMembershipInput, GetMembershipOutput } from "../models/models_1";
4
+ import { GetMembershipInput, GetMembershipOutput } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient";
4
- import { GetProtectedJobInput, GetProtectedJobOutput } from "../models/models_1";
4
+ import { GetProtectedJobInput, GetProtectedJobOutput } from "../models/models_0";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,8 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient";
4
- import { GetProtectedQueryInput, GetProtectedQueryOutput } from "../models/models_1";
4
+ import { GetProtectedQueryInput } from "../models/models_0";
5
+ import { GetProtectedQueryOutput } from "../models/models_1";
5
6
  /**
6
7
  * @public
7
8
  */
@@ -10,5 +10,8 @@ export type { RuntimeExtension } from "./runtimeExtensions";
10
10
  export type { CleanRoomsExtensionConfiguration } from "./extensionConfiguration";
11
11
  export * from "./commands";
12
12
  export * from "./pagination";
13
- export * from "./models";
13
+ export * from "./models/enums";
14
+ export * from "./models/errors";
15
+ export type * from "./models/models_0";
16
+ export type * from "./models/models_1";
14
17
  export { CleanRoomsServiceException } from "./models/CleanRoomsServiceException";