@aws-sdk/client-cleanrooms 3.618.0 → 3.619.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 (65) hide show
  1. package/README.md +32 -0
  2. package/dist-cjs/index.js +319 -30
  3. package/dist-es/CleanRooms.js +8 -0
  4. package/dist-es/commands/CreateConfiguredTableAssociationAnalysisRuleCommand.js +24 -0
  5. package/dist-es/commands/DeleteConfiguredTableAssociationAnalysisRuleCommand.js +24 -0
  6. package/dist-es/commands/GetConfiguredTableAssociationAnalysisRuleCommand.js +24 -0
  7. package/dist-es/commands/UpdateConfiguredTableAssociationAnalysisRuleCommand.js +24 -0
  8. package/dist-es/commands/UpdateProtectedQueryCommand.js +1 -1
  9. package/dist-es/commands/index.js +4 -0
  10. package/dist-es/models/index.js +1 -0
  11. package/dist-es/models/models_0.js +50 -24
  12. package/dist-es/models/models_1.js +21 -0
  13. package/dist-es/protocols/Aws_restJson1.js +119 -0
  14. package/dist-types/CleanRooms.d.ts +28 -0
  15. package/dist-types/CleanRoomsClient.d.ts +6 -2
  16. package/dist-types/commands/BatchGetSchemaAnalysisRuleCommand.d.ts +7 -3
  17. package/dist-types/commands/BatchGetSchemaCommand.d.ts +3 -2
  18. package/dist-types/commands/CreateConfiguredTableAnalysisRuleCommand.d.ts +12 -0
  19. package/dist-types/commands/CreateConfiguredTableAssociationAnalysisRuleCommand.d.ts +143 -0
  20. package/dist-types/commands/CreateConfiguredTableAssociationCommand.d.ts +3 -0
  21. package/dist-types/commands/CreatePrivacyBudgetTemplateCommand.d.ts +1 -1
  22. package/dist-types/commands/DeleteConfiguredTableAssociationAnalysisRuleCommand.d.ts +79 -0
  23. package/dist-types/commands/DeletePrivacyBudgetTemplateCommand.d.ts +1 -1
  24. package/dist-types/commands/GetConfiguredTableAnalysisRuleCommand.d.ts +6 -0
  25. package/dist-types/commands/GetConfiguredTableAssociationAnalysisRuleCommand.d.ts +114 -0
  26. package/dist-types/commands/GetConfiguredTableAssociationCommand.d.ts +3 -0
  27. package/dist-types/commands/GetPrivacyBudgetTemplateCommand.d.ts +1 -1
  28. package/dist-types/commands/GetProtectedQueryCommand.d.ts +3 -0
  29. package/dist-types/commands/GetSchemaAnalysisRuleCommand.d.ts +7 -3
  30. package/dist-types/commands/GetSchemaCommand.d.ts +3 -2
  31. package/dist-types/commands/ListPrivacyBudgetTemplatesCommand.d.ts +1 -1
  32. package/dist-types/commands/ListProtectedQueriesCommand.d.ts +12 -0
  33. package/dist-types/commands/StartProtectedQueryCommand.d.ts +6 -0
  34. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  35. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  36. package/dist-types/commands/UpdateConfiguredTableAnalysisRuleCommand.d.ts +12 -0
  37. package/dist-types/commands/UpdateConfiguredTableAssociationAnalysisRuleCommand.d.ts +145 -0
  38. package/dist-types/commands/UpdateConfiguredTableAssociationCommand.d.ts +3 -0
  39. package/dist-types/commands/UpdatePrivacyBudgetTemplateCommand.d.ts +1 -1
  40. package/dist-types/commands/UpdateProtectedQueryCommand.d.ts +5 -1
  41. package/dist-types/commands/index.d.ts +4 -0
  42. package/dist-types/models/index.d.ts +1 -0
  43. package/dist-types/models/models_0.d.ts +614 -502
  44. package/dist-types/models/models_1.d.ts +430 -0
  45. package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
  46. package/dist-types/ts3.4/CleanRooms.d.ts +92 -0
  47. package/dist-types/ts3.4/CleanRoomsClient.d.ts +24 -0
  48. package/dist-types/ts3.4/commands/CreateConfiguredTableAssociationAnalysisRuleCommand.d.ts +40 -0
  49. package/dist-types/ts3.4/commands/CreatePrivacyBudgetTemplateCommand.d.ts +1 -1
  50. package/dist-types/ts3.4/commands/DeleteConfiguredTableAssociationAnalysisRuleCommand.d.ts +40 -0
  51. package/dist-types/ts3.4/commands/DeletePrivacyBudgetTemplateCommand.d.ts +1 -1
  52. package/dist-types/ts3.4/commands/GetConfiguredTableAssociationAnalysisRuleCommand.d.ts +40 -0
  53. package/dist-types/ts3.4/commands/GetPrivacyBudgetTemplateCommand.d.ts +1 -1
  54. package/dist-types/ts3.4/commands/ListPrivacyBudgetTemplatesCommand.d.ts +1 -1
  55. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  56. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  57. package/dist-types/ts3.4/commands/UpdateConfiguredTableAssociationAnalysisRuleCommand.d.ts +40 -0
  58. package/dist-types/ts3.4/commands/UpdatePrivacyBudgetTemplateCommand.d.ts +1 -1
  59. package/dist-types/ts3.4/commands/UpdateProtectedQueryCommand.d.ts +2 -4
  60. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  61. package/dist-types/ts3.4/models/index.d.ts +1 -0
  62. package/dist-types/ts3.4/models/models_0.d.ts +188 -138
  63. package/dist-types/ts3.4/models/models_1.d.ts +140 -0
  64. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
  65. package/package.json +1 -1
@@ -73,6 +73,10 @@ import {
73
73
  CreateConfiguredTableAnalysisRuleCommandInput,
74
74
  CreateConfiguredTableAnalysisRuleCommandOutput,
75
75
  } from "./commands/CreateConfiguredTableAnalysisRuleCommand";
76
+ import {
77
+ CreateConfiguredTableAssociationAnalysisRuleCommandInput,
78
+ CreateConfiguredTableAssociationAnalysisRuleCommandOutput,
79
+ } from "./commands/CreateConfiguredTableAssociationAnalysisRuleCommand";
76
80
  import {
77
81
  CreateConfiguredTableAssociationCommandInput,
78
82
  CreateConfiguredTableAssociationCommandOutput,
@@ -113,6 +117,10 @@ import {
113
117
  DeleteConfiguredTableAnalysisRuleCommandInput,
114
118
  DeleteConfiguredTableAnalysisRuleCommandOutput,
115
119
  } from "./commands/DeleteConfiguredTableAnalysisRuleCommand";
120
+ import {
121
+ DeleteConfiguredTableAssociationAnalysisRuleCommandInput,
122
+ DeleteConfiguredTableAssociationAnalysisRuleCommandOutput,
123
+ } from "./commands/DeleteConfiguredTableAssociationAnalysisRuleCommand";
116
124
  import {
117
125
  DeleteConfiguredTableAssociationCommandInput,
118
126
  DeleteConfiguredTableAssociationCommandOutput,
@@ -173,6 +181,10 @@ import {
173
181
  GetConfiguredTableAnalysisRuleCommandInput,
174
182
  GetConfiguredTableAnalysisRuleCommandOutput,
175
183
  } from "./commands/GetConfiguredTableAnalysisRuleCommand";
184
+ import {
185
+ GetConfiguredTableAssociationAnalysisRuleCommandInput,
186
+ GetConfiguredTableAssociationAnalysisRuleCommandOutput,
187
+ } from "./commands/GetConfiguredTableAssociationAnalysisRuleCommand";
176
188
  import {
177
189
  GetConfiguredTableAssociationCommandInput,
178
190
  GetConfiguredTableAssociationCommandOutput,
@@ -321,6 +333,10 @@ import {
321
333
  UpdateConfiguredTableAnalysisRuleCommandInput,
322
334
  UpdateConfiguredTableAnalysisRuleCommandOutput,
323
335
  } from "./commands/UpdateConfiguredTableAnalysisRuleCommand";
336
+ import {
337
+ UpdateConfiguredTableAssociationAnalysisRuleCommandInput,
338
+ UpdateConfiguredTableAssociationAnalysisRuleCommandOutput,
339
+ } from "./commands/UpdateConfiguredTableAssociationAnalysisRuleCommand";
324
340
  import {
325
341
  UpdateConfiguredTableAssociationCommandInput,
326
342
  UpdateConfiguredTableAssociationCommandOutput,
@@ -364,6 +380,7 @@ export type ServiceInputTypes =
364
380
  | CreateCollaborationCommandInput
365
381
  | CreateConfiguredAudienceModelAssociationCommandInput
366
382
  | CreateConfiguredTableAnalysisRuleCommandInput
383
+ | CreateConfiguredTableAssociationAnalysisRuleCommandInput
367
384
  | CreateConfiguredTableAssociationCommandInput
368
385
  | CreateConfiguredTableCommandInput
369
386
  | CreateIdMappingTableCommandInput
@@ -374,6 +391,7 @@ export type ServiceInputTypes =
374
391
  | DeleteCollaborationCommandInput
375
392
  | DeleteConfiguredAudienceModelAssociationCommandInput
376
393
  | DeleteConfiguredTableAnalysisRuleCommandInput
394
+ | DeleteConfiguredTableAssociationAnalysisRuleCommandInput
377
395
  | DeleteConfiguredTableAssociationCommandInput
378
396
  | DeleteConfiguredTableCommandInput
379
397
  | DeleteIdMappingTableCommandInput
@@ -389,6 +407,7 @@ export type ServiceInputTypes =
389
407
  | GetCollaborationPrivacyBudgetTemplateCommandInput
390
408
  | GetConfiguredAudienceModelAssociationCommandInput
391
409
  | GetConfiguredTableAnalysisRuleCommandInput
410
+ | GetConfiguredTableAssociationAnalysisRuleCommandInput
392
411
  | GetConfiguredTableAssociationCommandInput
393
412
  | GetConfiguredTableCommandInput
394
413
  | GetIdMappingTableCommandInput
@@ -426,6 +445,7 @@ export type ServiceInputTypes =
426
445
  | UpdateCollaborationCommandInput
427
446
  | UpdateConfiguredAudienceModelAssociationCommandInput
428
447
  | UpdateConfiguredTableAnalysisRuleCommandInput
448
+ | UpdateConfiguredTableAssociationAnalysisRuleCommandInput
429
449
  | UpdateConfiguredTableAssociationCommandInput
430
450
  | UpdateConfiguredTableCommandInput
431
451
  | UpdateIdMappingTableCommandInput
@@ -441,6 +461,7 @@ export type ServiceOutputTypes =
441
461
  | CreateCollaborationCommandOutput
442
462
  | CreateConfiguredAudienceModelAssociationCommandOutput
443
463
  | CreateConfiguredTableAnalysisRuleCommandOutput
464
+ | CreateConfiguredTableAssociationAnalysisRuleCommandOutput
444
465
  | CreateConfiguredTableAssociationCommandOutput
445
466
  | CreateConfiguredTableCommandOutput
446
467
  | CreateIdMappingTableCommandOutput
@@ -451,6 +472,7 @@ export type ServiceOutputTypes =
451
472
  | DeleteCollaborationCommandOutput
452
473
  | DeleteConfiguredAudienceModelAssociationCommandOutput
453
474
  | DeleteConfiguredTableAnalysisRuleCommandOutput
475
+ | DeleteConfiguredTableAssociationAnalysisRuleCommandOutput
454
476
  | DeleteConfiguredTableAssociationCommandOutput
455
477
  | DeleteConfiguredTableCommandOutput
456
478
  | DeleteIdMappingTableCommandOutput
@@ -466,6 +488,7 @@ export type ServiceOutputTypes =
466
488
  | GetCollaborationPrivacyBudgetTemplateCommandOutput
467
489
  | GetConfiguredAudienceModelAssociationCommandOutput
468
490
  | GetConfiguredTableAnalysisRuleCommandOutput
491
+ | GetConfiguredTableAssociationAnalysisRuleCommandOutput
469
492
  | GetConfiguredTableAssociationCommandOutput
470
493
  | GetConfiguredTableCommandOutput
471
494
  | GetIdMappingTableCommandOutput
@@ -503,6 +526,7 @@ export type ServiceOutputTypes =
503
526
  | UpdateCollaborationCommandOutput
504
527
  | UpdateConfiguredAudienceModelAssociationCommandOutput
505
528
  | UpdateConfiguredTableAnalysisRuleCommandOutput
529
+ | UpdateConfiguredTableAssociationAnalysisRuleCommandOutput
506
530
  | UpdateConfiguredTableAssociationCommandOutput
507
531
  | UpdateConfiguredTableCommandOutput
508
532
  | UpdateIdMappingTableCommandOutput
@@ -0,0 +1,40 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CleanRoomsClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CleanRoomsClient";
8
+ import {
9
+ CreateConfiguredTableAssociationAnalysisRuleInput,
10
+ CreateConfiguredTableAssociationAnalysisRuleOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateConfiguredTableAssociationAnalysisRuleCommandInput
15
+ extends CreateConfiguredTableAssociationAnalysisRuleInput {}
16
+ export interface CreateConfiguredTableAssociationAnalysisRuleCommandOutput
17
+ extends CreateConfiguredTableAssociationAnalysisRuleOutput,
18
+ __MetadataBearer {}
19
+ declare const CreateConfiguredTableAssociationAnalysisRuleCommand_base: {
20
+ new (
21
+ input: CreateConfiguredTableAssociationAnalysisRuleCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateConfiguredTableAssociationAnalysisRuleCommandInput,
24
+ CreateConfiguredTableAssociationAnalysisRuleCommandOutput,
25
+ CleanRoomsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: CreateConfiguredTableAssociationAnalysisRuleCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateConfiguredTableAssociationAnalysisRuleCommandInput,
33
+ CreateConfiguredTableAssociationAnalysisRuleCommandOutput,
34
+ CleanRoomsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateConfiguredTableAssociationAnalysisRuleCommand extends CreateConfiguredTableAssociationAnalysisRuleCommand_base {}
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  CreatePrivacyBudgetTemplateInput,
10
10
  CreatePrivacyBudgetTemplateOutput,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface CreatePrivacyBudgetTemplateCommandInput
@@ -0,0 +1,40 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CleanRoomsClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CleanRoomsClient";
8
+ import {
9
+ DeleteConfiguredTableAssociationAnalysisRuleInput,
10
+ DeleteConfiguredTableAssociationAnalysisRuleOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteConfiguredTableAssociationAnalysisRuleCommandInput
15
+ extends DeleteConfiguredTableAssociationAnalysisRuleInput {}
16
+ export interface DeleteConfiguredTableAssociationAnalysisRuleCommandOutput
17
+ extends DeleteConfiguredTableAssociationAnalysisRuleOutput,
18
+ __MetadataBearer {}
19
+ declare const DeleteConfiguredTableAssociationAnalysisRuleCommand_base: {
20
+ new (
21
+ input: DeleteConfiguredTableAssociationAnalysisRuleCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteConfiguredTableAssociationAnalysisRuleCommandInput,
24
+ DeleteConfiguredTableAssociationAnalysisRuleCommandOutput,
25
+ CleanRoomsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: DeleteConfiguredTableAssociationAnalysisRuleCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteConfiguredTableAssociationAnalysisRuleCommandInput,
33
+ DeleteConfiguredTableAssociationAnalysisRuleCommandOutput,
34
+ CleanRoomsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteConfiguredTableAssociationAnalysisRuleCommand extends DeleteConfiguredTableAssociationAnalysisRuleCommand_base {}
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  DeletePrivacyBudgetTemplateInput,
10
10
  DeletePrivacyBudgetTemplateOutput,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface DeletePrivacyBudgetTemplateCommandInput
@@ -0,0 +1,40 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CleanRoomsClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CleanRoomsClient";
8
+ import {
9
+ GetConfiguredTableAssociationAnalysisRuleInput,
10
+ GetConfiguredTableAssociationAnalysisRuleOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetConfiguredTableAssociationAnalysisRuleCommandInput
15
+ extends GetConfiguredTableAssociationAnalysisRuleInput {}
16
+ export interface GetConfiguredTableAssociationAnalysisRuleCommandOutput
17
+ extends GetConfiguredTableAssociationAnalysisRuleOutput,
18
+ __MetadataBearer {}
19
+ declare const GetConfiguredTableAssociationAnalysisRuleCommand_base: {
20
+ new (
21
+ input: GetConfiguredTableAssociationAnalysisRuleCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetConfiguredTableAssociationAnalysisRuleCommandInput,
24
+ GetConfiguredTableAssociationAnalysisRuleCommandOutput,
25
+ CleanRoomsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetConfiguredTableAssociationAnalysisRuleCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetConfiguredTableAssociationAnalysisRuleCommandInput,
33
+ GetConfiguredTableAssociationAnalysisRuleCommandOutput,
34
+ CleanRoomsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetConfiguredTableAssociationAnalysisRuleCommand extends GetConfiguredTableAssociationAnalysisRuleCommand_base {}
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  GetPrivacyBudgetTemplateInput,
10
10
  GetPrivacyBudgetTemplateOutput,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface GetPrivacyBudgetTemplateCommandInput
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  ListPrivacyBudgetTemplatesInput,
10
10
  ListPrivacyBudgetTemplatesOutput,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface ListPrivacyBudgetTemplatesCommandInput
@@ -5,7 +5,7 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../CleanRoomsClient";
8
- import { TagResourceInput, TagResourceOutput } from "../models/models_0";
8
+ import { TagResourceInput, TagResourceOutput } from "../models/models_1";
9
9
  export { __MetadataBearer };
10
10
  export { $Command };
11
11
  export interface TagResourceCommandInput extends TagResourceInput {}
@@ -5,7 +5,7 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../CleanRoomsClient";
8
- import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
8
+ import { UntagResourceInput, UntagResourceOutput } from "../models/models_1";
9
9
  export { __MetadataBearer };
10
10
  export { $Command };
11
11
  export interface UntagResourceCommandInput extends UntagResourceInput {}
@@ -0,0 +1,40 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CleanRoomsClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CleanRoomsClient";
8
+ import {
9
+ UpdateConfiguredTableAssociationAnalysisRuleInput,
10
+ UpdateConfiguredTableAssociationAnalysisRuleOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateConfiguredTableAssociationAnalysisRuleCommandInput
15
+ extends UpdateConfiguredTableAssociationAnalysisRuleInput {}
16
+ export interface UpdateConfiguredTableAssociationAnalysisRuleCommandOutput
17
+ extends UpdateConfiguredTableAssociationAnalysisRuleOutput,
18
+ __MetadataBearer {}
19
+ declare const UpdateConfiguredTableAssociationAnalysisRuleCommand_base: {
20
+ new (
21
+ input: UpdateConfiguredTableAssociationAnalysisRuleCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateConfiguredTableAssociationAnalysisRuleCommandInput,
24
+ UpdateConfiguredTableAssociationAnalysisRuleCommandOutput,
25
+ CleanRoomsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: UpdateConfiguredTableAssociationAnalysisRuleCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateConfiguredTableAssociationAnalysisRuleCommandInput,
33
+ UpdateConfiguredTableAssociationAnalysisRuleCommandOutput,
34
+ CleanRoomsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateConfiguredTableAssociationAnalysisRuleCommand extends UpdateConfiguredTableAssociationAnalysisRuleCommand_base {}
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  UpdatePrivacyBudgetTemplateInput,
10
10
  UpdatePrivacyBudgetTemplateOutput,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface UpdatePrivacyBudgetTemplateCommandInput
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../CleanRoomsClient";
8
- import {
9
- UpdateProtectedQueryInput,
10
- UpdateProtectedQueryOutput,
11
- } from "../models/models_0";
8
+ import { UpdateProtectedQueryInput } from "../models/models_0";
9
+ import { UpdateProtectedQueryOutput } from "../models/models_1";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface UpdateProtectedQueryCommandInput
@@ -5,6 +5,7 @@ export * from "./CreateAnalysisTemplateCommand";
5
5
  export * from "./CreateCollaborationCommand";
6
6
  export * from "./CreateConfiguredAudienceModelAssociationCommand";
7
7
  export * from "./CreateConfiguredTableAnalysisRuleCommand";
8
+ export * from "./CreateConfiguredTableAssociationAnalysisRuleCommand";
8
9
  export * from "./CreateConfiguredTableAssociationCommand";
9
10
  export * from "./CreateConfiguredTableCommand";
10
11
  export * from "./CreateIdMappingTableCommand";
@@ -15,6 +16,7 @@ export * from "./DeleteAnalysisTemplateCommand";
15
16
  export * from "./DeleteCollaborationCommand";
16
17
  export * from "./DeleteConfiguredAudienceModelAssociationCommand";
17
18
  export * from "./DeleteConfiguredTableAnalysisRuleCommand";
19
+ export * from "./DeleteConfiguredTableAssociationAnalysisRuleCommand";
18
20
  export * from "./DeleteConfiguredTableAssociationCommand";
19
21
  export * from "./DeleteConfiguredTableCommand";
20
22
  export * from "./DeleteIdMappingTableCommand";
@@ -30,6 +32,7 @@ export * from "./GetCollaborationIdNamespaceAssociationCommand";
30
32
  export * from "./GetCollaborationPrivacyBudgetTemplateCommand";
31
33
  export * from "./GetConfiguredAudienceModelAssociationCommand";
32
34
  export * from "./GetConfiguredTableAnalysisRuleCommand";
35
+ export * from "./GetConfiguredTableAssociationAnalysisRuleCommand";
33
36
  export * from "./GetConfiguredTableAssociationCommand";
34
37
  export * from "./GetConfiguredTableCommand";
35
38
  export * from "./GetIdMappingTableCommand";
@@ -67,6 +70,7 @@ export * from "./UpdateAnalysisTemplateCommand";
67
70
  export * from "./UpdateCollaborationCommand";
68
71
  export * from "./UpdateConfiguredAudienceModelAssociationCommand";
69
72
  export * from "./UpdateConfiguredTableAnalysisRuleCommand";
73
+ export * from "./UpdateConfiguredTableAssociationAnalysisRuleCommand";
70
74
  export * from "./UpdateConfiguredTableAssociationCommand";
71
75
  export * from "./UpdateConfiguredTableCommand";
72
76
  export * from "./UpdateIdMappingTableCommand";
@@ -1 +1,2 @@
1
1
  export * from "./models_0";
2
+ export * from "./models_1";