@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
@@ -31,6 +31,10 @@ import {
31
31
  CreateConfiguredTableAnalysisRuleCommandInput,
32
32
  CreateConfiguredTableAnalysisRuleCommandOutput,
33
33
  } from "../commands/CreateConfiguredTableAnalysisRuleCommand";
34
+ import {
35
+ CreateConfiguredTableAssociationAnalysisRuleCommandInput,
36
+ CreateConfiguredTableAssociationAnalysisRuleCommandOutput,
37
+ } from "../commands/CreateConfiguredTableAssociationAnalysisRuleCommand";
34
38
  import {
35
39
  CreateConfiguredTableAssociationCommandInput,
36
40
  CreateConfiguredTableAssociationCommandOutput,
@@ -71,6 +75,10 @@ import {
71
75
  DeleteConfiguredTableAnalysisRuleCommandInput,
72
76
  DeleteConfiguredTableAnalysisRuleCommandOutput,
73
77
  } from "../commands/DeleteConfiguredTableAnalysisRuleCommand";
78
+ import {
79
+ DeleteConfiguredTableAssociationAnalysisRuleCommandInput,
80
+ DeleteConfiguredTableAssociationAnalysisRuleCommandOutput,
81
+ } from "../commands/DeleteConfiguredTableAssociationAnalysisRuleCommand";
74
82
  import {
75
83
  DeleteConfiguredTableAssociationCommandInput,
76
84
  DeleteConfiguredTableAssociationCommandOutput,
@@ -131,6 +139,10 @@ import {
131
139
  GetConfiguredTableAnalysisRuleCommandInput,
132
140
  GetConfiguredTableAnalysisRuleCommandOutput,
133
141
  } from "../commands/GetConfiguredTableAnalysisRuleCommand";
142
+ import {
143
+ GetConfiguredTableAssociationAnalysisRuleCommandInput,
144
+ GetConfiguredTableAssociationAnalysisRuleCommandOutput,
145
+ } from "../commands/GetConfiguredTableAssociationAnalysisRuleCommand";
134
146
  import {
135
147
  GetConfiguredTableAssociationCommandInput,
136
148
  GetConfiguredTableAssociationCommandOutput,
@@ -279,6 +291,10 @@ import {
279
291
  UpdateConfiguredTableAnalysisRuleCommandInput,
280
292
  UpdateConfiguredTableAnalysisRuleCommandOutput,
281
293
  } from "../commands/UpdateConfiguredTableAnalysisRuleCommand";
294
+ import {
295
+ UpdateConfiguredTableAssociationAnalysisRuleCommandInput,
296
+ UpdateConfiguredTableAssociationAnalysisRuleCommandOutput,
297
+ } from "../commands/UpdateConfiguredTableAssociationAnalysisRuleCommand";
282
298
  import {
283
299
  UpdateConfiguredTableAssociationCommandInput,
284
300
  UpdateConfiguredTableAssociationCommandOutput,
@@ -343,6 +359,10 @@ export declare const se_CreateConfiguredTableAssociationCommand: (
343
359
  input: CreateConfiguredTableAssociationCommandInput,
344
360
  context: __SerdeContext
345
361
  ) => Promise<__HttpRequest>;
362
+ export declare const se_CreateConfiguredTableAssociationAnalysisRuleCommand: (
363
+ input: CreateConfiguredTableAssociationAnalysisRuleCommandInput,
364
+ context: __SerdeContext
365
+ ) => Promise<__HttpRequest>;
346
366
  export declare const se_CreateIdMappingTableCommand: (
347
367
  input: CreateIdMappingTableCommandInput,
348
368
  context: __SerdeContext
@@ -383,6 +403,10 @@ export declare const se_DeleteConfiguredTableAssociationCommand: (
383
403
  input: DeleteConfiguredTableAssociationCommandInput,
384
404
  context: __SerdeContext
385
405
  ) => Promise<__HttpRequest>;
406
+ export declare const se_DeleteConfiguredTableAssociationAnalysisRuleCommand: (
407
+ input: DeleteConfiguredTableAssociationAnalysisRuleCommandInput,
408
+ context: __SerdeContext
409
+ ) => Promise<__HttpRequest>;
386
410
  export declare const se_DeleteIdMappingTableCommand: (
387
411
  input: DeleteIdMappingTableCommandInput,
388
412
  context: __SerdeContext
@@ -443,6 +467,10 @@ export declare const se_GetConfiguredTableAssociationCommand: (
443
467
  input: GetConfiguredTableAssociationCommandInput,
444
468
  context: __SerdeContext
445
469
  ) => Promise<__HttpRequest>;
470
+ export declare const se_GetConfiguredTableAssociationAnalysisRuleCommand: (
471
+ input: GetConfiguredTableAssociationAnalysisRuleCommandInput,
472
+ context: __SerdeContext
473
+ ) => Promise<__HttpRequest>;
446
474
  export declare const se_GetIdMappingTableCommand: (
447
475
  input: GetIdMappingTableCommandInput,
448
476
  context: __SerdeContext
@@ -591,6 +619,10 @@ export declare const se_UpdateConfiguredTableAssociationCommand: (
591
619
  input: UpdateConfiguredTableAssociationCommandInput,
592
620
  context: __SerdeContext
593
621
  ) => Promise<__HttpRequest>;
622
+ export declare const se_UpdateConfiguredTableAssociationAnalysisRuleCommand: (
623
+ input: UpdateConfiguredTableAssociationAnalysisRuleCommandInput,
624
+ context: __SerdeContext
625
+ ) => Promise<__HttpRequest>;
594
626
  export declare const se_UpdateIdMappingTableCommand: (
595
627
  input: UpdateIdMappingTableCommandInput,
596
628
  context: __SerdeContext
@@ -647,6 +679,10 @@ export declare const de_CreateConfiguredTableAssociationCommand: (
647
679
  output: __HttpResponse,
648
680
  context: __SerdeContext
649
681
  ) => Promise<CreateConfiguredTableAssociationCommandOutput>;
682
+ export declare const de_CreateConfiguredTableAssociationAnalysisRuleCommand: (
683
+ output: __HttpResponse,
684
+ context: __SerdeContext
685
+ ) => Promise<CreateConfiguredTableAssociationAnalysisRuleCommandOutput>;
650
686
  export declare const de_CreateIdMappingTableCommand: (
651
687
  output: __HttpResponse,
652
688
  context: __SerdeContext
@@ -687,6 +723,10 @@ export declare const de_DeleteConfiguredTableAssociationCommand: (
687
723
  output: __HttpResponse,
688
724
  context: __SerdeContext
689
725
  ) => Promise<DeleteConfiguredTableAssociationCommandOutput>;
726
+ export declare const de_DeleteConfiguredTableAssociationAnalysisRuleCommand: (
727
+ output: __HttpResponse,
728
+ context: __SerdeContext
729
+ ) => Promise<DeleteConfiguredTableAssociationAnalysisRuleCommandOutput>;
690
730
  export declare const de_DeleteIdMappingTableCommand: (
691
731
  output: __HttpResponse,
692
732
  context: __SerdeContext
@@ -747,6 +787,10 @@ export declare const de_GetConfiguredTableAssociationCommand: (
747
787
  output: __HttpResponse,
748
788
  context: __SerdeContext
749
789
  ) => Promise<GetConfiguredTableAssociationCommandOutput>;
790
+ export declare const de_GetConfiguredTableAssociationAnalysisRuleCommand: (
791
+ output: __HttpResponse,
792
+ context: __SerdeContext
793
+ ) => Promise<GetConfiguredTableAssociationAnalysisRuleCommandOutput>;
750
794
  export declare const de_GetIdMappingTableCommand: (
751
795
  output: __HttpResponse,
752
796
  context: __SerdeContext
@@ -895,6 +939,10 @@ export declare const de_UpdateConfiguredTableAssociationCommand: (
895
939
  output: __HttpResponse,
896
940
  context: __SerdeContext
897
941
  ) => Promise<UpdateConfiguredTableAssociationCommandOutput>;
942
+ export declare const de_UpdateConfiguredTableAssociationAnalysisRuleCommand: (
943
+ output: __HttpResponse,
944
+ context: __SerdeContext
945
+ ) => Promise<UpdateConfiguredTableAssociationAnalysisRuleCommandOutput>;
898
946
  export declare const de_UpdateIdMappingTableCommand: (
899
947
  output: __HttpResponse,
900
948
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cleanrooms",
3
3
  "description": "AWS SDK for JavaScript Cleanrooms Client for Node.js, Browser and React Native",
4
- "version": "3.618.0",
4
+ "version": "3.619.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-cleanrooms",