@aws-sdk/client-cleanrooms 3.250.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 (235) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +215 -0
  3. package/dist-cjs/CleanRooms.js +517 -0
  4. package/dist-cjs/CleanRoomsClient.js +40 -0
  5. package/dist-cjs/commands/BatchGetSchemaCommand.js +46 -0
  6. package/dist-cjs/commands/CreateCollaborationCommand.js +46 -0
  7. package/dist-cjs/commands/CreateConfiguredTableAnalysisRuleCommand.js +46 -0
  8. package/dist-cjs/commands/CreateConfiguredTableAssociationCommand.js +46 -0
  9. package/dist-cjs/commands/CreateConfiguredTableCommand.js +46 -0
  10. package/dist-cjs/commands/CreateMembershipCommand.js +46 -0
  11. package/dist-cjs/commands/DeleteCollaborationCommand.js +46 -0
  12. package/dist-cjs/commands/DeleteConfiguredTableAnalysisRuleCommand.js +46 -0
  13. package/dist-cjs/commands/DeleteConfiguredTableAssociationCommand.js +46 -0
  14. package/dist-cjs/commands/DeleteConfiguredTableCommand.js +46 -0
  15. package/dist-cjs/commands/DeleteMemberCommand.js +46 -0
  16. package/dist-cjs/commands/DeleteMembershipCommand.js +46 -0
  17. package/dist-cjs/commands/GetCollaborationCommand.js +46 -0
  18. package/dist-cjs/commands/GetConfiguredTableAnalysisRuleCommand.js +46 -0
  19. package/dist-cjs/commands/GetConfiguredTableAssociationCommand.js +46 -0
  20. package/dist-cjs/commands/GetConfiguredTableCommand.js +46 -0
  21. package/dist-cjs/commands/GetMembershipCommand.js +46 -0
  22. package/dist-cjs/commands/GetProtectedQueryCommand.js +46 -0
  23. package/dist-cjs/commands/GetSchemaAnalysisRuleCommand.js +46 -0
  24. package/dist-cjs/commands/GetSchemaCommand.js +46 -0
  25. package/dist-cjs/commands/ListCollaborationsCommand.js +46 -0
  26. package/dist-cjs/commands/ListConfiguredTableAssociationsCommand.js +46 -0
  27. package/dist-cjs/commands/ListConfiguredTablesCommand.js +46 -0
  28. package/dist-cjs/commands/ListMembersCommand.js +46 -0
  29. package/dist-cjs/commands/ListMembershipsCommand.js +46 -0
  30. package/dist-cjs/commands/ListProtectedQueriesCommand.js +46 -0
  31. package/dist-cjs/commands/ListSchemasCommand.js +46 -0
  32. package/dist-cjs/commands/StartProtectedQueryCommand.js +46 -0
  33. package/dist-cjs/commands/UpdateCollaborationCommand.js +46 -0
  34. package/dist-cjs/commands/UpdateConfiguredTableAnalysisRuleCommand.js +46 -0
  35. package/dist-cjs/commands/UpdateConfiguredTableAssociationCommand.js +46 -0
  36. package/dist-cjs/commands/UpdateConfiguredTableCommand.js +46 -0
  37. package/dist-cjs/commands/UpdateMembershipCommand.js +46 -0
  38. package/dist-cjs/commands/UpdateProtectedQueryCommand.js +46 -0
  39. package/dist-cjs/commands/index.js +37 -0
  40. package/dist-cjs/endpoint/EndpointParameters.js +12 -0
  41. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  42. package/dist-cjs/endpoint/ruleset.js +7 -0
  43. package/dist-cjs/index.js +11 -0
  44. package/dist-cjs/models/CleanRoomsServiceException.js +11 -0
  45. package/dist-cjs/models/index.js +4 -0
  46. package/dist-cjs/models/models_0.js +782 -0
  47. package/dist-cjs/pagination/Interfaces.js +2 -0
  48. package/dist-cjs/pagination/ListCollaborationsPaginator.js +36 -0
  49. package/dist-cjs/pagination/ListConfiguredTableAssociationsPaginator.js +36 -0
  50. package/dist-cjs/pagination/ListConfiguredTablesPaginator.js +36 -0
  51. package/dist-cjs/pagination/ListMembersPaginator.js +36 -0
  52. package/dist-cjs/pagination/ListMembershipsPaginator.js +36 -0
  53. package/dist-cjs/pagination/ListProtectedQueriesPaginator.js +36 -0
  54. package/dist-cjs/pagination/ListSchemasPaginator.js +36 -0
  55. package/dist-cjs/pagination/index.js +11 -0
  56. package/dist-cjs/protocols/Aws_restJson1.js +3336 -0
  57. package/dist-cjs/runtimeConfig.browser.js +42 -0
  58. package/dist-cjs/runtimeConfig.js +51 -0
  59. package/dist-cjs/runtimeConfig.native.js +15 -0
  60. package/dist-cjs/runtimeConfig.shared.js +18 -0
  61. package/dist-es/CleanRooms.js +513 -0
  62. package/dist-es/CleanRoomsClient.js +36 -0
  63. package/dist-es/commands/BatchGetSchemaCommand.js +42 -0
  64. package/dist-es/commands/CreateCollaborationCommand.js +42 -0
  65. package/dist-es/commands/CreateConfiguredTableAnalysisRuleCommand.js +42 -0
  66. package/dist-es/commands/CreateConfiguredTableAssociationCommand.js +42 -0
  67. package/dist-es/commands/CreateConfiguredTableCommand.js +42 -0
  68. package/dist-es/commands/CreateMembershipCommand.js +42 -0
  69. package/dist-es/commands/DeleteCollaborationCommand.js +42 -0
  70. package/dist-es/commands/DeleteConfiguredTableAnalysisRuleCommand.js +42 -0
  71. package/dist-es/commands/DeleteConfiguredTableAssociationCommand.js +42 -0
  72. package/dist-es/commands/DeleteConfiguredTableCommand.js +42 -0
  73. package/dist-es/commands/DeleteMemberCommand.js +42 -0
  74. package/dist-es/commands/DeleteMembershipCommand.js +42 -0
  75. package/dist-es/commands/GetCollaborationCommand.js +42 -0
  76. package/dist-es/commands/GetConfiguredTableAnalysisRuleCommand.js +42 -0
  77. package/dist-es/commands/GetConfiguredTableAssociationCommand.js +42 -0
  78. package/dist-es/commands/GetConfiguredTableCommand.js +42 -0
  79. package/dist-es/commands/GetMembershipCommand.js +42 -0
  80. package/dist-es/commands/GetProtectedQueryCommand.js +42 -0
  81. package/dist-es/commands/GetSchemaAnalysisRuleCommand.js +42 -0
  82. package/dist-es/commands/GetSchemaCommand.js +42 -0
  83. package/dist-es/commands/ListCollaborationsCommand.js +42 -0
  84. package/dist-es/commands/ListConfiguredTableAssociationsCommand.js +42 -0
  85. package/dist-es/commands/ListConfiguredTablesCommand.js +42 -0
  86. package/dist-es/commands/ListMembersCommand.js +42 -0
  87. package/dist-es/commands/ListMembershipsCommand.js +42 -0
  88. package/dist-es/commands/ListProtectedQueriesCommand.js +42 -0
  89. package/dist-es/commands/ListSchemasCommand.js +42 -0
  90. package/dist-es/commands/StartProtectedQueryCommand.js +42 -0
  91. package/dist-es/commands/UpdateCollaborationCommand.js +42 -0
  92. package/dist-es/commands/UpdateConfiguredTableAnalysisRuleCommand.js +42 -0
  93. package/dist-es/commands/UpdateConfiguredTableAssociationCommand.js +42 -0
  94. package/dist-es/commands/UpdateConfiguredTableCommand.js +42 -0
  95. package/dist-es/commands/UpdateMembershipCommand.js +42 -0
  96. package/dist-es/commands/UpdateProtectedQueryCommand.js +42 -0
  97. package/dist-es/commands/index.js +34 -0
  98. package/dist-es/endpoint/EndpointParameters.js +8 -0
  99. package/dist-es/endpoint/endpointResolver.js +8 -0
  100. package/dist-es/endpoint/ruleset.js +4 -0
  101. package/dist-es/index.js +6 -0
  102. package/dist-es/models/CleanRoomsServiceException.js +7 -0
  103. package/dist-es/models/index.js +1 -0
  104. package/dist-es/models/models_0.js +663 -0
  105. package/dist-es/pagination/Interfaces.js +1 -0
  106. package/dist-es/pagination/ListCollaborationsPaginator.js +32 -0
  107. package/dist-es/pagination/ListConfiguredTableAssociationsPaginator.js +32 -0
  108. package/dist-es/pagination/ListConfiguredTablesPaginator.js +32 -0
  109. package/dist-es/pagination/ListMembersPaginator.js +32 -0
  110. package/dist-es/pagination/ListMembershipsPaginator.js +32 -0
  111. package/dist-es/pagination/ListProtectedQueriesPaginator.js +32 -0
  112. package/dist-es/pagination/ListSchemasPaginator.js +32 -0
  113. package/dist-es/pagination/index.js +8 -0
  114. package/dist-es/protocols/Aws_restJson1.js +3264 -0
  115. package/dist-es/runtimeConfig.browser.js +37 -0
  116. package/dist-es/runtimeConfig.js +46 -0
  117. package/dist-es/runtimeConfig.native.js +11 -0
  118. package/dist-es/runtimeConfig.shared.js +14 -0
  119. package/dist-types/CleanRooms.d.ts +260 -0
  120. package/dist-types/CleanRoomsClient.d.ts +185 -0
  121. package/dist-types/commands/BatchGetSchemaCommand.d.ts +37 -0
  122. package/dist-types/commands/CreateCollaborationCommand.d.ts +37 -0
  123. package/dist-types/commands/CreateConfiguredTableAnalysisRuleCommand.d.ts +38 -0
  124. package/dist-types/commands/CreateConfiguredTableAssociationCommand.d.ts +38 -0
  125. package/dist-types/commands/CreateConfiguredTableCommand.d.ts +37 -0
  126. package/dist-types/commands/CreateMembershipCommand.d.ts +38 -0
  127. package/dist-types/commands/DeleteCollaborationCommand.d.ts +37 -0
  128. package/dist-types/commands/DeleteConfiguredTableAnalysisRuleCommand.d.ts +37 -0
  129. package/dist-types/commands/DeleteConfiguredTableAssociationCommand.d.ts +37 -0
  130. package/dist-types/commands/DeleteConfiguredTableCommand.d.ts +37 -0
  131. package/dist-types/commands/DeleteMemberCommand.d.ts +39 -0
  132. package/dist-types/commands/DeleteMembershipCommand.d.ts +37 -0
  133. package/dist-types/commands/GetCollaborationCommand.d.ts +37 -0
  134. package/dist-types/commands/GetConfiguredTableAnalysisRuleCommand.d.ts +37 -0
  135. package/dist-types/commands/GetConfiguredTableAssociationCommand.d.ts +37 -0
  136. package/dist-types/commands/GetConfiguredTableCommand.d.ts +37 -0
  137. package/dist-types/commands/GetMembershipCommand.d.ts +37 -0
  138. package/dist-types/commands/GetProtectedQueryCommand.d.ts +37 -0
  139. package/dist-types/commands/GetSchemaAnalysisRuleCommand.d.ts +37 -0
  140. package/dist-types/commands/GetSchemaCommand.d.ts +37 -0
  141. package/dist-types/commands/ListCollaborationsCommand.d.ts +37 -0
  142. package/dist-types/commands/ListConfiguredTableAssociationsCommand.d.ts +37 -0
  143. package/dist-types/commands/ListConfiguredTablesCommand.d.ts +37 -0
  144. package/dist-types/commands/ListMembersCommand.d.ts +37 -0
  145. package/dist-types/commands/ListMembershipsCommand.d.ts +37 -0
  146. package/dist-types/commands/ListProtectedQueriesCommand.d.ts +37 -0
  147. package/dist-types/commands/ListSchemasCommand.d.ts +37 -0
  148. package/dist-types/commands/StartProtectedQueryCommand.d.ts +37 -0
  149. package/dist-types/commands/UpdateCollaborationCommand.d.ts +37 -0
  150. package/dist-types/commands/UpdateConfiguredTableAnalysisRuleCommand.d.ts +37 -0
  151. package/dist-types/commands/UpdateConfiguredTableAssociationCommand.d.ts +37 -0
  152. package/dist-types/commands/UpdateConfiguredTableCommand.d.ts +37 -0
  153. package/dist-types/commands/UpdateMembershipCommand.d.ts +37 -0
  154. package/dist-types/commands/UpdateProtectedQueryCommand.d.ts +37 -0
  155. package/dist-types/commands/index.d.ts +34 -0
  156. package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
  157. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  158. package/dist-types/endpoint/ruleset.d.ts +2 -0
  159. package/dist-types/index.d.ts +6 -0
  160. package/dist-types/models/CleanRoomsServiceException.d.ts +10 -0
  161. package/dist-types/models/index.d.ts +1 -0
  162. package/dist-types/models/models_0.d.ts +2382 -0
  163. package/dist-types/pagination/Interfaces.d.ts +6 -0
  164. package/dist-types/pagination/ListCollaborationsPaginator.d.ts +4 -0
  165. package/dist-types/pagination/ListConfiguredTableAssociationsPaginator.d.ts +4 -0
  166. package/dist-types/pagination/ListConfiguredTablesPaginator.d.ts +4 -0
  167. package/dist-types/pagination/ListMembersPaginator.d.ts +4 -0
  168. package/dist-types/pagination/ListMembershipsPaginator.d.ts +4 -0
  169. package/dist-types/pagination/ListProtectedQueriesPaginator.d.ts +4 -0
  170. package/dist-types/pagination/ListSchemasPaginator.d.ts +4 -0
  171. package/dist-types/pagination/index.d.ts +8 -0
  172. package/dist-types/protocols/Aws_restJson1.d.ts +104 -0
  173. package/dist-types/runtimeConfig.browser.d.ts +42 -0
  174. package/dist-types/runtimeConfig.d.ts +42 -0
  175. package/dist-types/runtimeConfig.native.d.ts +41 -0
  176. package/dist-types/runtimeConfig.shared.d.ts +16 -0
  177. package/dist-types/ts3.4/CleanRooms.d.ts +600 -0
  178. package/dist-types/ts3.4/CleanRoomsClient.d.ts +315 -0
  179. package/dist-types/ts3.4/commands/BatchGetSchemaCommand.d.ts +34 -0
  180. package/dist-types/ts3.4/commands/CreateCollaborationCommand.d.ts +38 -0
  181. package/dist-types/ts3.4/commands/CreateConfiguredTableAnalysisRuleCommand.d.ts +41 -0
  182. package/dist-types/ts3.4/commands/CreateConfiguredTableAssociationCommand.d.ts +41 -0
  183. package/dist-types/ts3.4/commands/CreateConfiguredTableCommand.d.ts +41 -0
  184. package/dist-types/ts3.4/commands/CreateMembershipCommand.d.ts +37 -0
  185. package/dist-types/ts3.4/commands/DeleteCollaborationCommand.d.ts +38 -0
  186. package/dist-types/ts3.4/commands/DeleteConfiguredTableAnalysisRuleCommand.d.ts +41 -0
  187. package/dist-types/ts3.4/commands/DeleteConfiguredTableAssociationCommand.d.ts +41 -0
  188. package/dist-types/ts3.4/commands/DeleteConfiguredTableCommand.d.ts +41 -0
  189. package/dist-types/ts3.4/commands/DeleteMemberCommand.d.ts +34 -0
  190. package/dist-types/ts3.4/commands/DeleteMembershipCommand.d.ts +37 -0
  191. package/dist-types/ts3.4/commands/GetCollaborationCommand.d.ts +37 -0
  192. package/dist-types/ts3.4/commands/GetConfiguredTableAnalysisRuleCommand.d.ts +41 -0
  193. package/dist-types/ts3.4/commands/GetConfiguredTableAssociationCommand.d.ts +41 -0
  194. package/dist-types/ts3.4/commands/GetConfiguredTableCommand.d.ts +38 -0
  195. package/dist-types/ts3.4/commands/GetMembershipCommand.d.ts +34 -0
  196. package/dist-types/ts3.4/commands/GetProtectedQueryCommand.d.ts +37 -0
  197. package/dist-types/ts3.4/commands/GetSchemaAnalysisRuleCommand.d.ts +41 -0
  198. package/dist-types/ts3.4/commands/GetSchemaCommand.d.ts +34 -0
  199. package/dist-types/ts3.4/commands/ListCollaborationsCommand.d.ts +38 -0
  200. package/dist-types/ts3.4/commands/ListConfiguredTableAssociationsCommand.d.ts +41 -0
  201. package/dist-types/ts3.4/commands/ListConfiguredTablesCommand.d.ts +41 -0
  202. package/dist-types/ts3.4/commands/ListMembersCommand.d.ts +34 -0
  203. package/dist-types/ts3.4/commands/ListMembershipsCommand.d.ts +37 -0
  204. package/dist-types/ts3.4/commands/ListProtectedQueriesCommand.d.ts +41 -0
  205. package/dist-types/ts3.4/commands/ListSchemasCommand.d.ts +34 -0
  206. package/dist-types/ts3.4/commands/StartProtectedQueryCommand.d.ts +38 -0
  207. package/dist-types/ts3.4/commands/UpdateCollaborationCommand.d.ts +38 -0
  208. package/dist-types/ts3.4/commands/UpdateConfiguredTableAnalysisRuleCommand.d.ts +41 -0
  209. package/dist-types/ts3.4/commands/UpdateConfiguredTableAssociationCommand.d.ts +41 -0
  210. package/dist-types/ts3.4/commands/UpdateConfiguredTableCommand.d.ts +41 -0
  211. package/dist-types/ts3.4/commands/UpdateMembershipCommand.d.ts +37 -0
  212. package/dist-types/ts3.4/commands/UpdateProtectedQueryCommand.d.ts +41 -0
  213. package/dist-types/ts3.4/commands/index.d.ts +34 -0
  214. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
  215. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  216. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  217. package/dist-types/ts3.4/index.d.ts +6 -0
  218. package/dist-types/ts3.4/models/CleanRoomsServiceException.d.ts +7 -0
  219. package/dist-types/ts3.4/models/index.d.ts +1 -0
  220. package/dist-types/ts3.4/models/models_0.d.ts +1131 -0
  221. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -0
  222. package/dist-types/ts3.4/pagination/ListCollaborationsPaginator.d.ts +11 -0
  223. package/dist-types/ts3.4/pagination/ListConfiguredTableAssociationsPaginator.d.ts +11 -0
  224. package/dist-types/ts3.4/pagination/ListConfiguredTablesPaginator.d.ts +11 -0
  225. package/dist-types/ts3.4/pagination/ListMembersPaginator.d.ts +11 -0
  226. package/dist-types/ts3.4/pagination/ListMembershipsPaginator.d.ts +11 -0
  227. package/dist-types/ts3.4/pagination/ListProtectedQueriesPaginator.d.ts +11 -0
  228. package/dist-types/ts3.4/pagination/ListSchemasPaginator.d.ts +11 -0
  229. package/dist-types/ts3.4/pagination/index.d.ts +8 -0
  230. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +413 -0
  231. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +91 -0
  232. package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
  233. package/dist-types/ts3.4/runtimeConfig.native.d.ts +80 -0
  234. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +16 -0
  235. package/package.json +103 -0
@@ -0,0 +1,600 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { CleanRoomsClient } from "./CleanRoomsClient";
3
+ import {
4
+ BatchGetSchemaCommandInput,
5
+ BatchGetSchemaCommandOutput,
6
+ } from "./commands/BatchGetSchemaCommand";
7
+ import {
8
+ CreateCollaborationCommandInput,
9
+ CreateCollaborationCommandOutput,
10
+ } from "./commands/CreateCollaborationCommand";
11
+ import {
12
+ CreateConfiguredTableAnalysisRuleCommandInput,
13
+ CreateConfiguredTableAnalysisRuleCommandOutput,
14
+ } from "./commands/CreateConfiguredTableAnalysisRuleCommand";
15
+ import {
16
+ CreateConfiguredTableAssociationCommandInput,
17
+ CreateConfiguredTableAssociationCommandOutput,
18
+ } from "./commands/CreateConfiguredTableAssociationCommand";
19
+ import {
20
+ CreateConfiguredTableCommandInput,
21
+ CreateConfiguredTableCommandOutput,
22
+ } from "./commands/CreateConfiguredTableCommand";
23
+ import {
24
+ CreateMembershipCommandInput,
25
+ CreateMembershipCommandOutput,
26
+ } from "./commands/CreateMembershipCommand";
27
+ import {
28
+ DeleteCollaborationCommandInput,
29
+ DeleteCollaborationCommandOutput,
30
+ } from "./commands/DeleteCollaborationCommand";
31
+ import {
32
+ DeleteConfiguredTableAnalysisRuleCommandInput,
33
+ DeleteConfiguredTableAnalysisRuleCommandOutput,
34
+ } from "./commands/DeleteConfiguredTableAnalysisRuleCommand";
35
+ import {
36
+ DeleteConfiguredTableAssociationCommandInput,
37
+ DeleteConfiguredTableAssociationCommandOutput,
38
+ } from "./commands/DeleteConfiguredTableAssociationCommand";
39
+ import {
40
+ DeleteConfiguredTableCommandInput,
41
+ DeleteConfiguredTableCommandOutput,
42
+ } from "./commands/DeleteConfiguredTableCommand";
43
+ import {
44
+ DeleteMemberCommandInput,
45
+ DeleteMemberCommandOutput,
46
+ } from "./commands/DeleteMemberCommand";
47
+ import {
48
+ DeleteMembershipCommandInput,
49
+ DeleteMembershipCommandOutput,
50
+ } from "./commands/DeleteMembershipCommand";
51
+ import {
52
+ GetCollaborationCommandInput,
53
+ GetCollaborationCommandOutput,
54
+ } from "./commands/GetCollaborationCommand";
55
+ import {
56
+ GetConfiguredTableAnalysisRuleCommandInput,
57
+ GetConfiguredTableAnalysisRuleCommandOutput,
58
+ } from "./commands/GetConfiguredTableAnalysisRuleCommand";
59
+ import {
60
+ GetConfiguredTableAssociationCommandInput,
61
+ GetConfiguredTableAssociationCommandOutput,
62
+ } from "./commands/GetConfiguredTableAssociationCommand";
63
+ import {
64
+ GetConfiguredTableCommandInput,
65
+ GetConfiguredTableCommandOutput,
66
+ } from "./commands/GetConfiguredTableCommand";
67
+ import {
68
+ GetMembershipCommandInput,
69
+ GetMembershipCommandOutput,
70
+ } from "./commands/GetMembershipCommand";
71
+ import {
72
+ GetProtectedQueryCommandInput,
73
+ GetProtectedQueryCommandOutput,
74
+ } from "./commands/GetProtectedQueryCommand";
75
+ import {
76
+ GetSchemaAnalysisRuleCommandInput,
77
+ GetSchemaAnalysisRuleCommandOutput,
78
+ } from "./commands/GetSchemaAnalysisRuleCommand";
79
+ import {
80
+ GetSchemaCommandInput,
81
+ GetSchemaCommandOutput,
82
+ } from "./commands/GetSchemaCommand";
83
+ import {
84
+ ListCollaborationsCommandInput,
85
+ ListCollaborationsCommandOutput,
86
+ } from "./commands/ListCollaborationsCommand";
87
+ import {
88
+ ListConfiguredTableAssociationsCommandInput,
89
+ ListConfiguredTableAssociationsCommandOutput,
90
+ } from "./commands/ListConfiguredTableAssociationsCommand";
91
+ import {
92
+ ListConfiguredTablesCommandInput,
93
+ ListConfiguredTablesCommandOutput,
94
+ } from "./commands/ListConfiguredTablesCommand";
95
+ import {
96
+ ListMembersCommandInput,
97
+ ListMembersCommandOutput,
98
+ } from "./commands/ListMembersCommand";
99
+ import {
100
+ ListMembershipsCommandInput,
101
+ ListMembershipsCommandOutput,
102
+ } from "./commands/ListMembershipsCommand";
103
+ import {
104
+ ListProtectedQueriesCommandInput,
105
+ ListProtectedQueriesCommandOutput,
106
+ } from "./commands/ListProtectedQueriesCommand";
107
+ import {
108
+ ListSchemasCommandInput,
109
+ ListSchemasCommandOutput,
110
+ } from "./commands/ListSchemasCommand";
111
+ import {
112
+ StartProtectedQueryCommandInput,
113
+ StartProtectedQueryCommandOutput,
114
+ } from "./commands/StartProtectedQueryCommand";
115
+ import {
116
+ UpdateCollaborationCommandInput,
117
+ UpdateCollaborationCommandOutput,
118
+ } from "./commands/UpdateCollaborationCommand";
119
+ import {
120
+ UpdateConfiguredTableAnalysisRuleCommandInput,
121
+ UpdateConfiguredTableAnalysisRuleCommandOutput,
122
+ } from "./commands/UpdateConfiguredTableAnalysisRuleCommand";
123
+ import {
124
+ UpdateConfiguredTableAssociationCommandInput,
125
+ UpdateConfiguredTableAssociationCommandOutput,
126
+ } from "./commands/UpdateConfiguredTableAssociationCommand";
127
+ import {
128
+ UpdateConfiguredTableCommandInput,
129
+ UpdateConfiguredTableCommandOutput,
130
+ } from "./commands/UpdateConfiguredTableCommand";
131
+ import {
132
+ UpdateMembershipCommandInput,
133
+ UpdateMembershipCommandOutput,
134
+ } from "./commands/UpdateMembershipCommand";
135
+ import {
136
+ UpdateProtectedQueryCommandInput,
137
+ UpdateProtectedQueryCommandOutput,
138
+ } from "./commands/UpdateProtectedQueryCommand";
139
+ export declare class CleanRooms extends CleanRoomsClient {
140
+ batchGetSchema(
141
+ args: BatchGetSchemaCommandInput,
142
+ options?: __HttpHandlerOptions
143
+ ): Promise<BatchGetSchemaCommandOutput>;
144
+ batchGetSchema(
145
+ args: BatchGetSchemaCommandInput,
146
+ cb: (err: any, data?: BatchGetSchemaCommandOutput) => void
147
+ ): void;
148
+ batchGetSchema(
149
+ args: BatchGetSchemaCommandInput,
150
+ options: __HttpHandlerOptions,
151
+ cb: (err: any, data?: BatchGetSchemaCommandOutput) => void
152
+ ): void;
153
+ createCollaboration(
154
+ args: CreateCollaborationCommandInput,
155
+ options?: __HttpHandlerOptions
156
+ ): Promise<CreateCollaborationCommandOutput>;
157
+ createCollaboration(
158
+ args: CreateCollaborationCommandInput,
159
+ cb: (err: any, data?: CreateCollaborationCommandOutput) => void
160
+ ): void;
161
+ createCollaboration(
162
+ args: CreateCollaborationCommandInput,
163
+ options: __HttpHandlerOptions,
164
+ cb: (err: any, data?: CreateCollaborationCommandOutput) => void
165
+ ): void;
166
+ createConfiguredTable(
167
+ args: CreateConfiguredTableCommandInput,
168
+ options?: __HttpHandlerOptions
169
+ ): Promise<CreateConfiguredTableCommandOutput>;
170
+ createConfiguredTable(
171
+ args: CreateConfiguredTableCommandInput,
172
+ cb: (err: any, data?: CreateConfiguredTableCommandOutput) => void
173
+ ): void;
174
+ createConfiguredTable(
175
+ args: CreateConfiguredTableCommandInput,
176
+ options: __HttpHandlerOptions,
177
+ cb: (err: any, data?: CreateConfiguredTableCommandOutput) => void
178
+ ): void;
179
+ createConfiguredTableAnalysisRule(
180
+ args: CreateConfiguredTableAnalysisRuleCommandInput,
181
+ options?: __HttpHandlerOptions
182
+ ): Promise<CreateConfiguredTableAnalysisRuleCommandOutput>;
183
+ createConfiguredTableAnalysisRule(
184
+ args: CreateConfiguredTableAnalysisRuleCommandInput,
185
+ cb: (
186
+ err: any,
187
+ data?: CreateConfiguredTableAnalysisRuleCommandOutput
188
+ ) => void
189
+ ): void;
190
+ createConfiguredTableAnalysisRule(
191
+ args: CreateConfiguredTableAnalysisRuleCommandInput,
192
+ options: __HttpHandlerOptions,
193
+ cb: (
194
+ err: any,
195
+ data?: CreateConfiguredTableAnalysisRuleCommandOutput
196
+ ) => void
197
+ ): void;
198
+ createConfiguredTableAssociation(
199
+ args: CreateConfiguredTableAssociationCommandInput,
200
+ options?: __HttpHandlerOptions
201
+ ): Promise<CreateConfiguredTableAssociationCommandOutput>;
202
+ createConfiguredTableAssociation(
203
+ args: CreateConfiguredTableAssociationCommandInput,
204
+ cb: (err: any, data?: CreateConfiguredTableAssociationCommandOutput) => void
205
+ ): void;
206
+ createConfiguredTableAssociation(
207
+ args: CreateConfiguredTableAssociationCommandInput,
208
+ options: __HttpHandlerOptions,
209
+ cb: (err: any, data?: CreateConfiguredTableAssociationCommandOutput) => void
210
+ ): void;
211
+ createMembership(
212
+ args: CreateMembershipCommandInput,
213
+ options?: __HttpHandlerOptions
214
+ ): Promise<CreateMembershipCommandOutput>;
215
+ createMembership(
216
+ args: CreateMembershipCommandInput,
217
+ cb: (err: any, data?: CreateMembershipCommandOutput) => void
218
+ ): void;
219
+ createMembership(
220
+ args: CreateMembershipCommandInput,
221
+ options: __HttpHandlerOptions,
222
+ cb: (err: any, data?: CreateMembershipCommandOutput) => void
223
+ ): void;
224
+ deleteCollaboration(
225
+ args: DeleteCollaborationCommandInput,
226
+ options?: __HttpHandlerOptions
227
+ ): Promise<DeleteCollaborationCommandOutput>;
228
+ deleteCollaboration(
229
+ args: DeleteCollaborationCommandInput,
230
+ cb: (err: any, data?: DeleteCollaborationCommandOutput) => void
231
+ ): void;
232
+ deleteCollaboration(
233
+ args: DeleteCollaborationCommandInput,
234
+ options: __HttpHandlerOptions,
235
+ cb: (err: any, data?: DeleteCollaborationCommandOutput) => void
236
+ ): void;
237
+ deleteConfiguredTable(
238
+ args: DeleteConfiguredTableCommandInput,
239
+ options?: __HttpHandlerOptions
240
+ ): Promise<DeleteConfiguredTableCommandOutput>;
241
+ deleteConfiguredTable(
242
+ args: DeleteConfiguredTableCommandInput,
243
+ cb: (err: any, data?: DeleteConfiguredTableCommandOutput) => void
244
+ ): void;
245
+ deleteConfiguredTable(
246
+ args: DeleteConfiguredTableCommandInput,
247
+ options: __HttpHandlerOptions,
248
+ cb: (err: any, data?: DeleteConfiguredTableCommandOutput) => void
249
+ ): void;
250
+ deleteConfiguredTableAnalysisRule(
251
+ args: DeleteConfiguredTableAnalysisRuleCommandInput,
252
+ options?: __HttpHandlerOptions
253
+ ): Promise<DeleteConfiguredTableAnalysisRuleCommandOutput>;
254
+ deleteConfiguredTableAnalysisRule(
255
+ args: DeleteConfiguredTableAnalysisRuleCommandInput,
256
+ cb: (
257
+ err: any,
258
+ data?: DeleteConfiguredTableAnalysisRuleCommandOutput
259
+ ) => void
260
+ ): void;
261
+ deleteConfiguredTableAnalysisRule(
262
+ args: DeleteConfiguredTableAnalysisRuleCommandInput,
263
+ options: __HttpHandlerOptions,
264
+ cb: (
265
+ err: any,
266
+ data?: DeleteConfiguredTableAnalysisRuleCommandOutput
267
+ ) => void
268
+ ): void;
269
+ deleteConfiguredTableAssociation(
270
+ args: DeleteConfiguredTableAssociationCommandInput,
271
+ options?: __HttpHandlerOptions
272
+ ): Promise<DeleteConfiguredTableAssociationCommandOutput>;
273
+ deleteConfiguredTableAssociation(
274
+ args: DeleteConfiguredTableAssociationCommandInput,
275
+ cb: (err: any, data?: DeleteConfiguredTableAssociationCommandOutput) => void
276
+ ): void;
277
+ deleteConfiguredTableAssociation(
278
+ args: DeleteConfiguredTableAssociationCommandInput,
279
+ options: __HttpHandlerOptions,
280
+ cb: (err: any, data?: DeleteConfiguredTableAssociationCommandOutput) => void
281
+ ): void;
282
+ deleteMember(
283
+ args: DeleteMemberCommandInput,
284
+ options?: __HttpHandlerOptions
285
+ ): Promise<DeleteMemberCommandOutput>;
286
+ deleteMember(
287
+ args: DeleteMemberCommandInput,
288
+ cb: (err: any, data?: DeleteMemberCommandOutput) => void
289
+ ): void;
290
+ deleteMember(
291
+ args: DeleteMemberCommandInput,
292
+ options: __HttpHandlerOptions,
293
+ cb: (err: any, data?: DeleteMemberCommandOutput) => void
294
+ ): void;
295
+ deleteMembership(
296
+ args: DeleteMembershipCommandInput,
297
+ options?: __HttpHandlerOptions
298
+ ): Promise<DeleteMembershipCommandOutput>;
299
+ deleteMembership(
300
+ args: DeleteMembershipCommandInput,
301
+ cb: (err: any, data?: DeleteMembershipCommandOutput) => void
302
+ ): void;
303
+ deleteMembership(
304
+ args: DeleteMembershipCommandInput,
305
+ options: __HttpHandlerOptions,
306
+ cb: (err: any, data?: DeleteMembershipCommandOutput) => void
307
+ ): void;
308
+ getCollaboration(
309
+ args: GetCollaborationCommandInput,
310
+ options?: __HttpHandlerOptions
311
+ ): Promise<GetCollaborationCommandOutput>;
312
+ getCollaboration(
313
+ args: GetCollaborationCommandInput,
314
+ cb: (err: any, data?: GetCollaborationCommandOutput) => void
315
+ ): void;
316
+ getCollaboration(
317
+ args: GetCollaborationCommandInput,
318
+ options: __HttpHandlerOptions,
319
+ cb: (err: any, data?: GetCollaborationCommandOutput) => void
320
+ ): void;
321
+ getConfiguredTable(
322
+ args: GetConfiguredTableCommandInput,
323
+ options?: __HttpHandlerOptions
324
+ ): Promise<GetConfiguredTableCommandOutput>;
325
+ getConfiguredTable(
326
+ args: GetConfiguredTableCommandInput,
327
+ cb: (err: any, data?: GetConfiguredTableCommandOutput) => void
328
+ ): void;
329
+ getConfiguredTable(
330
+ args: GetConfiguredTableCommandInput,
331
+ options: __HttpHandlerOptions,
332
+ cb: (err: any, data?: GetConfiguredTableCommandOutput) => void
333
+ ): void;
334
+ getConfiguredTableAnalysisRule(
335
+ args: GetConfiguredTableAnalysisRuleCommandInput,
336
+ options?: __HttpHandlerOptions
337
+ ): Promise<GetConfiguredTableAnalysisRuleCommandOutput>;
338
+ getConfiguredTableAnalysisRule(
339
+ args: GetConfiguredTableAnalysisRuleCommandInput,
340
+ cb: (err: any, data?: GetConfiguredTableAnalysisRuleCommandOutput) => void
341
+ ): void;
342
+ getConfiguredTableAnalysisRule(
343
+ args: GetConfiguredTableAnalysisRuleCommandInput,
344
+ options: __HttpHandlerOptions,
345
+ cb: (err: any, data?: GetConfiguredTableAnalysisRuleCommandOutput) => void
346
+ ): void;
347
+ getConfiguredTableAssociation(
348
+ args: GetConfiguredTableAssociationCommandInput,
349
+ options?: __HttpHandlerOptions
350
+ ): Promise<GetConfiguredTableAssociationCommandOutput>;
351
+ getConfiguredTableAssociation(
352
+ args: GetConfiguredTableAssociationCommandInput,
353
+ cb: (err: any, data?: GetConfiguredTableAssociationCommandOutput) => void
354
+ ): void;
355
+ getConfiguredTableAssociation(
356
+ args: GetConfiguredTableAssociationCommandInput,
357
+ options: __HttpHandlerOptions,
358
+ cb: (err: any, data?: GetConfiguredTableAssociationCommandOutput) => void
359
+ ): void;
360
+ getMembership(
361
+ args: GetMembershipCommandInput,
362
+ options?: __HttpHandlerOptions
363
+ ): Promise<GetMembershipCommandOutput>;
364
+ getMembership(
365
+ args: GetMembershipCommandInput,
366
+ cb: (err: any, data?: GetMembershipCommandOutput) => void
367
+ ): void;
368
+ getMembership(
369
+ args: GetMembershipCommandInput,
370
+ options: __HttpHandlerOptions,
371
+ cb: (err: any, data?: GetMembershipCommandOutput) => void
372
+ ): void;
373
+ getProtectedQuery(
374
+ args: GetProtectedQueryCommandInput,
375
+ options?: __HttpHandlerOptions
376
+ ): Promise<GetProtectedQueryCommandOutput>;
377
+ getProtectedQuery(
378
+ args: GetProtectedQueryCommandInput,
379
+ cb: (err: any, data?: GetProtectedQueryCommandOutput) => void
380
+ ): void;
381
+ getProtectedQuery(
382
+ args: GetProtectedQueryCommandInput,
383
+ options: __HttpHandlerOptions,
384
+ cb: (err: any, data?: GetProtectedQueryCommandOutput) => void
385
+ ): void;
386
+ getSchema(
387
+ args: GetSchemaCommandInput,
388
+ options?: __HttpHandlerOptions
389
+ ): Promise<GetSchemaCommandOutput>;
390
+ getSchema(
391
+ args: GetSchemaCommandInput,
392
+ cb: (err: any, data?: GetSchemaCommandOutput) => void
393
+ ): void;
394
+ getSchema(
395
+ args: GetSchemaCommandInput,
396
+ options: __HttpHandlerOptions,
397
+ cb: (err: any, data?: GetSchemaCommandOutput) => void
398
+ ): void;
399
+ getSchemaAnalysisRule(
400
+ args: GetSchemaAnalysisRuleCommandInput,
401
+ options?: __HttpHandlerOptions
402
+ ): Promise<GetSchemaAnalysisRuleCommandOutput>;
403
+ getSchemaAnalysisRule(
404
+ args: GetSchemaAnalysisRuleCommandInput,
405
+ cb: (err: any, data?: GetSchemaAnalysisRuleCommandOutput) => void
406
+ ): void;
407
+ getSchemaAnalysisRule(
408
+ args: GetSchemaAnalysisRuleCommandInput,
409
+ options: __HttpHandlerOptions,
410
+ cb: (err: any, data?: GetSchemaAnalysisRuleCommandOutput) => void
411
+ ): void;
412
+ listCollaborations(
413
+ args: ListCollaborationsCommandInput,
414
+ options?: __HttpHandlerOptions
415
+ ): Promise<ListCollaborationsCommandOutput>;
416
+ listCollaborations(
417
+ args: ListCollaborationsCommandInput,
418
+ cb: (err: any, data?: ListCollaborationsCommandOutput) => void
419
+ ): void;
420
+ listCollaborations(
421
+ args: ListCollaborationsCommandInput,
422
+ options: __HttpHandlerOptions,
423
+ cb: (err: any, data?: ListCollaborationsCommandOutput) => void
424
+ ): void;
425
+ listConfiguredTableAssociations(
426
+ args: ListConfiguredTableAssociationsCommandInput,
427
+ options?: __HttpHandlerOptions
428
+ ): Promise<ListConfiguredTableAssociationsCommandOutput>;
429
+ listConfiguredTableAssociations(
430
+ args: ListConfiguredTableAssociationsCommandInput,
431
+ cb: (err: any, data?: ListConfiguredTableAssociationsCommandOutput) => void
432
+ ): void;
433
+ listConfiguredTableAssociations(
434
+ args: ListConfiguredTableAssociationsCommandInput,
435
+ options: __HttpHandlerOptions,
436
+ cb: (err: any, data?: ListConfiguredTableAssociationsCommandOutput) => void
437
+ ): void;
438
+ listConfiguredTables(
439
+ args: ListConfiguredTablesCommandInput,
440
+ options?: __HttpHandlerOptions
441
+ ): Promise<ListConfiguredTablesCommandOutput>;
442
+ listConfiguredTables(
443
+ args: ListConfiguredTablesCommandInput,
444
+ cb: (err: any, data?: ListConfiguredTablesCommandOutput) => void
445
+ ): void;
446
+ listConfiguredTables(
447
+ args: ListConfiguredTablesCommandInput,
448
+ options: __HttpHandlerOptions,
449
+ cb: (err: any, data?: ListConfiguredTablesCommandOutput) => void
450
+ ): void;
451
+ listMembers(
452
+ args: ListMembersCommandInput,
453
+ options?: __HttpHandlerOptions
454
+ ): Promise<ListMembersCommandOutput>;
455
+ listMembers(
456
+ args: ListMembersCommandInput,
457
+ cb: (err: any, data?: ListMembersCommandOutput) => void
458
+ ): void;
459
+ listMembers(
460
+ args: ListMembersCommandInput,
461
+ options: __HttpHandlerOptions,
462
+ cb: (err: any, data?: ListMembersCommandOutput) => void
463
+ ): void;
464
+ listMemberships(
465
+ args: ListMembershipsCommandInput,
466
+ options?: __HttpHandlerOptions
467
+ ): Promise<ListMembershipsCommandOutput>;
468
+ listMemberships(
469
+ args: ListMembershipsCommandInput,
470
+ cb: (err: any, data?: ListMembershipsCommandOutput) => void
471
+ ): void;
472
+ listMemberships(
473
+ args: ListMembershipsCommandInput,
474
+ options: __HttpHandlerOptions,
475
+ cb: (err: any, data?: ListMembershipsCommandOutput) => void
476
+ ): void;
477
+ listProtectedQueries(
478
+ args: ListProtectedQueriesCommandInput,
479
+ options?: __HttpHandlerOptions
480
+ ): Promise<ListProtectedQueriesCommandOutput>;
481
+ listProtectedQueries(
482
+ args: ListProtectedQueriesCommandInput,
483
+ cb: (err: any, data?: ListProtectedQueriesCommandOutput) => void
484
+ ): void;
485
+ listProtectedQueries(
486
+ args: ListProtectedQueriesCommandInput,
487
+ options: __HttpHandlerOptions,
488
+ cb: (err: any, data?: ListProtectedQueriesCommandOutput) => void
489
+ ): void;
490
+ listSchemas(
491
+ args: ListSchemasCommandInput,
492
+ options?: __HttpHandlerOptions
493
+ ): Promise<ListSchemasCommandOutput>;
494
+ listSchemas(
495
+ args: ListSchemasCommandInput,
496
+ cb: (err: any, data?: ListSchemasCommandOutput) => void
497
+ ): void;
498
+ listSchemas(
499
+ args: ListSchemasCommandInput,
500
+ options: __HttpHandlerOptions,
501
+ cb: (err: any, data?: ListSchemasCommandOutput) => void
502
+ ): void;
503
+ startProtectedQuery(
504
+ args: StartProtectedQueryCommandInput,
505
+ options?: __HttpHandlerOptions
506
+ ): Promise<StartProtectedQueryCommandOutput>;
507
+ startProtectedQuery(
508
+ args: StartProtectedQueryCommandInput,
509
+ cb: (err: any, data?: StartProtectedQueryCommandOutput) => void
510
+ ): void;
511
+ startProtectedQuery(
512
+ args: StartProtectedQueryCommandInput,
513
+ options: __HttpHandlerOptions,
514
+ cb: (err: any, data?: StartProtectedQueryCommandOutput) => void
515
+ ): void;
516
+ updateCollaboration(
517
+ args: UpdateCollaborationCommandInput,
518
+ options?: __HttpHandlerOptions
519
+ ): Promise<UpdateCollaborationCommandOutput>;
520
+ updateCollaboration(
521
+ args: UpdateCollaborationCommandInput,
522
+ cb: (err: any, data?: UpdateCollaborationCommandOutput) => void
523
+ ): void;
524
+ updateCollaboration(
525
+ args: UpdateCollaborationCommandInput,
526
+ options: __HttpHandlerOptions,
527
+ cb: (err: any, data?: UpdateCollaborationCommandOutput) => void
528
+ ): void;
529
+ updateConfiguredTable(
530
+ args: UpdateConfiguredTableCommandInput,
531
+ options?: __HttpHandlerOptions
532
+ ): Promise<UpdateConfiguredTableCommandOutput>;
533
+ updateConfiguredTable(
534
+ args: UpdateConfiguredTableCommandInput,
535
+ cb: (err: any, data?: UpdateConfiguredTableCommandOutput) => void
536
+ ): void;
537
+ updateConfiguredTable(
538
+ args: UpdateConfiguredTableCommandInput,
539
+ options: __HttpHandlerOptions,
540
+ cb: (err: any, data?: UpdateConfiguredTableCommandOutput) => void
541
+ ): void;
542
+ updateConfiguredTableAnalysisRule(
543
+ args: UpdateConfiguredTableAnalysisRuleCommandInput,
544
+ options?: __HttpHandlerOptions
545
+ ): Promise<UpdateConfiguredTableAnalysisRuleCommandOutput>;
546
+ updateConfiguredTableAnalysisRule(
547
+ args: UpdateConfiguredTableAnalysisRuleCommandInput,
548
+ cb: (
549
+ err: any,
550
+ data?: UpdateConfiguredTableAnalysisRuleCommandOutput
551
+ ) => void
552
+ ): void;
553
+ updateConfiguredTableAnalysisRule(
554
+ args: UpdateConfiguredTableAnalysisRuleCommandInput,
555
+ options: __HttpHandlerOptions,
556
+ cb: (
557
+ err: any,
558
+ data?: UpdateConfiguredTableAnalysisRuleCommandOutput
559
+ ) => void
560
+ ): void;
561
+ updateConfiguredTableAssociation(
562
+ args: UpdateConfiguredTableAssociationCommandInput,
563
+ options?: __HttpHandlerOptions
564
+ ): Promise<UpdateConfiguredTableAssociationCommandOutput>;
565
+ updateConfiguredTableAssociation(
566
+ args: UpdateConfiguredTableAssociationCommandInput,
567
+ cb: (err: any, data?: UpdateConfiguredTableAssociationCommandOutput) => void
568
+ ): void;
569
+ updateConfiguredTableAssociation(
570
+ args: UpdateConfiguredTableAssociationCommandInput,
571
+ options: __HttpHandlerOptions,
572
+ cb: (err: any, data?: UpdateConfiguredTableAssociationCommandOutput) => void
573
+ ): void;
574
+ updateMembership(
575
+ args: UpdateMembershipCommandInput,
576
+ options?: __HttpHandlerOptions
577
+ ): Promise<UpdateMembershipCommandOutput>;
578
+ updateMembership(
579
+ args: UpdateMembershipCommandInput,
580
+ cb: (err: any, data?: UpdateMembershipCommandOutput) => void
581
+ ): void;
582
+ updateMembership(
583
+ args: UpdateMembershipCommandInput,
584
+ options: __HttpHandlerOptions,
585
+ cb: (err: any, data?: UpdateMembershipCommandOutput) => void
586
+ ): void;
587
+ updateProtectedQuery(
588
+ args: UpdateProtectedQueryCommandInput,
589
+ options?: __HttpHandlerOptions
590
+ ): Promise<UpdateProtectedQueryCommandOutput>;
591
+ updateProtectedQuery(
592
+ args: UpdateProtectedQueryCommandInput,
593
+ cb: (err: any, data?: UpdateProtectedQueryCommandOutput) => void
594
+ ): void;
595
+ updateProtectedQuery(
596
+ args: UpdateProtectedQueryCommandInput,
597
+ options: __HttpHandlerOptions,
598
+ cb: (err: any, data?: UpdateProtectedQueryCommandOutput) => void
599
+ ): void;
600
+ }