@aws-sdk/client-cleanrooms 3.1107.0 → 3.1108.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 (59) hide show
  1. package/README.md +21 -0
  2. package/dist-cjs/index.js +183 -41
  3. package/dist-es/CleanRooms.js +8 -0
  4. package/dist-es/commands/GetAnalysisLogExportCommand.js +4 -0
  5. package/dist-es/commands/ListAnalysisLogExportsCommand.js +4 -0
  6. package/dist-es/commands/StartAnalysisLogExportCommand.js +4 -0
  7. package/dist-es/commands/index.js +3 -0
  8. package/dist-es/models/enums.js +13 -0
  9. package/dist-es/pagination/ListAnalysisLogExportsPaginator.js +4 -0
  10. package/dist-es/pagination/index.js +1 -0
  11. package/dist-es/schemas/schemas_0.js +133 -40
  12. package/dist-types/CleanRooms.d.ts +28 -0
  13. package/dist-types/CleanRoomsClient.d.ts +5 -2
  14. package/dist-types/commands/CreateCollaborationChangeRequestCommand.d.ts +5 -5
  15. package/dist-types/commands/CreateCollaborationCommand.d.ts +4 -4
  16. package/dist-types/commands/CreateIntermediateTableAnalysisRuleCommand.d.ts +1 -1
  17. package/dist-types/commands/CreateIntermediateTableCommand.d.ts +1 -1
  18. package/dist-types/commands/CreateMembershipCommand.d.ts +1 -1
  19. package/dist-types/commands/DeleteIntermediateTableCommand.d.ts +1 -1
  20. package/dist-types/commands/DisallowIntermediateTableCommand.d.ts +1 -1
  21. package/dist-types/commands/GetAnalysisLogExportCommand.d.ts +107 -0
  22. package/dist-types/commands/GetCollaborationChangeRequestCommand.d.ts +3 -3
  23. package/dist-types/commands/GetCollaborationCommand.d.ts +1 -1
  24. package/dist-types/commands/GetMembershipCommand.d.ts +1 -1
  25. package/dist-types/commands/ListAnalysisLogExportsCommand.d.ts +99 -0
  26. package/dist-types/commands/ListCollaborationChangeRequestsCommand.d.ts +3 -3
  27. package/dist-types/commands/ListMembersCommand.d.ts +1 -1
  28. package/dist-types/commands/ListMembershipsCommand.d.ts +1 -1
  29. package/dist-types/commands/PopulateIntermediateTableCommand.d.ts +2 -2
  30. package/dist-types/commands/StartAnalysisLogExportCommand.d.ts +119 -0
  31. package/dist-types/commands/UpdateCollaborationChangeRequestCommand.d.ts +3 -3
  32. package/dist-types/commands/UpdateCollaborationCommand.d.ts +1 -1
  33. package/dist-types/commands/UpdateConfiguredTableAnalysisRuleCommand.d.ts +3 -0
  34. package/dist-types/commands/UpdateIntermediateTableAnalysisRuleCommand.d.ts +1 -2
  35. package/dist-types/commands/UpdateIntermediateTableCommand.d.ts +1 -1
  36. package/dist-types/commands/UpdateMembershipCommand.d.ts +1 -1
  37. package/dist-types/commands/index.d.ts +3 -0
  38. package/dist-types/models/enums.d.ts +29 -0
  39. package/dist-types/models/models_0.d.ts +143 -138
  40. package/dist-types/models/models_1.d.ts +238 -2
  41. package/dist-types/pagination/ListAnalysisLogExportsPaginator.d.ts +7 -0
  42. package/dist-types/pagination/index.d.ts +1 -0
  43. package/dist-types/schemas/schemas_0.d.ts +15 -0
  44. package/dist-types/ts3.4/CleanRooms.d.ts +58 -0
  45. package/dist-types/ts3.4/CleanRoomsClient.d.ts +18 -0
  46. package/dist-types/ts3.4/commands/GetAnalysisLogExportCommand.d.ts +39 -0
  47. package/dist-types/ts3.4/commands/ListAnalysisLogExportsCommand.d.ts +39 -0
  48. package/dist-types/ts3.4/commands/PopulateIntermediateTableCommand.d.ts +1 -1
  49. package/dist-types/ts3.4/commands/StartAnalysisLogExportCommand.d.ts +39 -0
  50. package/dist-types/ts3.4/commands/UpdateIntermediateTableAnalysisRuleCommand.d.ts +4 -2
  51. package/dist-types/ts3.4/commands/UpdateIntermediateTableCommand.d.ts +1 -1
  52. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  53. package/dist-types/ts3.4/models/enums.d.ts +17 -0
  54. package/dist-types/ts3.4/models/models_0.d.ts +34 -32
  55. package/dist-types/ts3.4/models/models_1.d.ts +69 -0
  56. package/dist-types/ts3.4/pagination/ListAnalysisLogExportsPaginator.d.ts +11 -0
  57. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  58. package/dist-types/ts3.4/schemas/schemas_0.d.ts +15 -0
  59. package/package.json +6 -6
@@ -32,6 +32,7 @@ import { DeleteMemberCommand, } from "./commands/DeleteMemberCommand";
32
32
  import { DeleteMembershipCommand, } from "./commands/DeleteMembershipCommand";
33
33
  import { DeletePrivacyBudgetTemplateCommand, } from "./commands/DeletePrivacyBudgetTemplateCommand";
34
34
  import { DisallowIntermediateTableCommand, } from "./commands/DisallowIntermediateTableCommand";
35
+ import { GetAnalysisLogExportCommand, } from "./commands/GetAnalysisLogExportCommand";
35
36
  import { GetAnalysisTemplateCommand, } from "./commands/GetAnalysisTemplateCommand";
36
37
  import { GetCollaborationAnalysisTemplateCommand, } from "./commands/GetCollaborationAnalysisTemplateCommand";
37
38
  import { GetCollaborationChangeRequestCommand, } from "./commands/GetCollaborationChangeRequestCommand";
@@ -54,6 +55,7 @@ import { GetProtectedJobCommand, } from "./commands/GetProtectedJobCommand";
54
55
  import { GetProtectedQueryCommand, } from "./commands/GetProtectedQueryCommand";
55
56
  import { GetSchemaAnalysisRuleCommand, } from "./commands/GetSchemaAnalysisRuleCommand";
56
57
  import { GetSchemaCommand } from "./commands/GetSchemaCommand";
58
+ import { ListAnalysisLogExportsCommand, } from "./commands/ListAnalysisLogExportsCommand";
57
59
  import { ListAnalysisTemplatesCommand, } from "./commands/ListAnalysisTemplatesCommand";
58
60
  import { ListCollaborationAnalysisTemplatesCommand, } from "./commands/ListCollaborationAnalysisTemplatesCommand";
59
61
  import { ListCollaborationChangeRequestsCommand, } from "./commands/ListCollaborationChangeRequestsCommand";
@@ -80,6 +82,7 @@ import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceComma
80
82
  import { PopulateIdMappingTableCommand, } from "./commands/PopulateIdMappingTableCommand";
81
83
  import { PopulateIntermediateTableCommand, } from "./commands/PopulateIntermediateTableCommand";
82
84
  import { PreviewPrivacyImpactCommand, } from "./commands/PreviewPrivacyImpactCommand";
85
+ import { StartAnalysisLogExportCommand, } from "./commands/StartAnalysisLogExportCommand";
83
86
  import { StartProtectedJobCommand, } from "./commands/StartProtectedJobCommand";
84
87
  import { StartProtectedQueryCommand, } from "./commands/StartProtectedQueryCommand";
85
88
  import { TagResourceCommand, } from "./commands/TagResourceCommand";
@@ -100,6 +103,7 @@ import { UpdateMembershipCommand, } from "./commands/UpdateMembershipCommand";
100
103
  import { UpdatePrivacyBudgetTemplateCommand, } from "./commands/UpdatePrivacyBudgetTemplateCommand";
101
104
  import { UpdateProtectedJobCommand, } from "./commands/UpdateProtectedJobCommand";
102
105
  import { UpdateProtectedQueryCommand, } from "./commands/UpdateProtectedQueryCommand";
106
+ import { paginateListAnalysisLogExports } from "./pagination/ListAnalysisLogExportsPaginator";
103
107
  import { paginateListAnalysisTemplates } from "./pagination/ListAnalysisTemplatesPaginator";
104
108
  import { paginateListCollaborationAnalysisTemplates } from "./pagination/ListCollaborationAnalysisTemplatesPaginator";
105
109
  import { paginateListCollaborationChangeRequests } from "./pagination/ListCollaborationChangeRequestsPaginator";
@@ -155,6 +159,7 @@ const commands = {
155
159
  DeleteMembershipCommand,
156
160
  DeletePrivacyBudgetTemplateCommand,
157
161
  DisallowIntermediateTableCommand,
162
+ GetAnalysisLogExportCommand,
158
163
  GetAnalysisTemplateCommand,
159
164
  GetCollaborationCommand,
160
165
  GetCollaborationAnalysisTemplateCommand,
@@ -177,6 +182,7 @@ const commands = {
177
182
  GetProtectedQueryCommand,
178
183
  GetSchemaCommand,
179
184
  GetSchemaAnalysisRuleCommand,
185
+ ListAnalysisLogExportsCommand,
180
186
  ListAnalysisTemplatesCommand,
181
187
  ListCollaborationAnalysisTemplatesCommand,
182
188
  ListCollaborationChangeRequestsCommand,
@@ -203,6 +209,7 @@ const commands = {
203
209
  PopulateIdMappingTableCommand,
204
210
  PopulateIntermediateTableCommand,
205
211
  PreviewPrivacyImpactCommand,
212
+ StartAnalysisLogExportCommand,
206
213
  StartProtectedJobCommand,
207
214
  StartProtectedQueryCommand,
208
215
  TagResourceCommand,
@@ -225,6 +232,7 @@ const commands = {
225
232
  UpdateProtectedQueryCommand,
226
233
  };
227
234
  const paginators = {
235
+ paginateListAnalysisLogExports,
228
236
  paginateListAnalysisTemplates,
229
237
  paginateListCollaborationAnalysisTemplates,
230
238
  paginateListCollaborationChangeRequests,
@@ -0,0 +1,4 @@
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
2
+ import { GetAnalysisLogExport$ } from "../schemas/schemas_0";
3
+ export class GetAnalysisLogExportCommand extends command(_ep0, _mw0, "GetAnalysisLogExport", GetAnalysisLogExport$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
2
+ import { ListAnalysisLogExports$ } from "../schemas/schemas_0";
3
+ export class ListAnalysisLogExportsCommand extends command(_ep0, _mw0, "ListAnalysisLogExports", ListAnalysisLogExports$) {
4
+ }
@@ -0,0 +1,4 @@
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
2
+ import { StartAnalysisLogExport$ } from "../schemas/schemas_0";
3
+ export class StartAnalysisLogExportCommand extends command(_ep0, _mw0, "StartAnalysisLogExport", StartAnalysisLogExport$) {
4
+ }
@@ -30,6 +30,7 @@ export * from "./DeleteMemberCommand";
30
30
  export * from "./DeleteMembershipCommand";
31
31
  export * from "./DeletePrivacyBudgetTemplateCommand";
32
32
  export * from "./DisallowIntermediateTableCommand";
33
+ export * from "./GetAnalysisLogExportCommand";
33
34
  export * from "./GetAnalysisTemplateCommand";
34
35
  export * from "./GetCollaborationAnalysisTemplateCommand";
35
36
  export * from "./GetCollaborationChangeRequestCommand";
@@ -52,6 +53,7 @@ export * from "./GetProtectedJobCommand";
52
53
  export * from "./GetProtectedQueryCommand";
53
54
  export * from "./GetSchemaAnalysisRuleCommand";
54
55
  export * from "./GetSchemaCommand";
56
+ export * from "./ListAnalysisLogExportsCommand";
55
57
  export * from "./ListAnalysisTemplatesCommand";
56
58
  export * from "./ListCollaborationAnalysisTemplatesCommand";
57
59
  export * from "./ListCollaborationChangeRequestsCommand";
@@ -78,6 +80,7 @@ export * from "./ListTagsForResourceCommand";
78
80
  export * from "./PopulateIdMappingTableCommand";
79
81
  export * from "./PopulateIntermediateTableCommand";
80
82
  export * from "./PreviewPrivacyImpactCommand";
83
+ export * from "./StartAnalysisLogExportCommand";
81
84
  export * from "./StartProtectedJobCommand";
82
85
  export * from "./StartProtectedQueryCommand";
83
86
  export * from "./TagResourceCommand";
@@ -65,6 +65,14 @@ export const AnalysisFormat = {
65
65
  PYSPARK_1_0: "PYSPARK_1_0",
66
66
  SQL: "SQL",
67
67
  };
68
+ export const LogExportAnalysisType = {
69
+ PROTECTED_QUERY: "PROTECTED_QUERY",
70
+ };
71
+ export const AnalysisLogExportStatus = {
72
+ FAILED: "FAILED",
73
+ IN_PROGRESS: "IN_PROGRESS",
74
+ SUCCESS: "SUCCESS",
75
+ };
68
76
  export const AnalysisMethod = {
69
77
  DIRECT_JOB: "DIRECT_JOB",
70
78
  DIRECT_QUERY: "DIRECT_QUERY",
@@ -221,7 +229,9 @@ export const CommercialRegion = {
221
229
  };
222
230
  export const AutoApprovedChangeType = {
223
231
  ADD_MEMBER: "ADD_MEMBER",
232
+ GRANT_EXPORT_QUERY_ANALYSIS_LOG_ABILITY: "GRANT_EXPORT_QUERY_ANALYSIS_LOG_ABILITY",
224
233
  GRANT_RECEIVE_RESULTS_ABILITY: "GRANT_RECEIVE_RESULTS_ABILITY",
234
+ REVOKE_EXPORT_QUERY_ANALYSIS_LOG_ABILITY: "REVOKE_EXPORT_QUERY_ANALYSIS_LOG_ABILITY",
225
235
  REVOKE_RECEIVE_RESULTS_ABILITY: "REVOKE_RECEIVE_RESULTS_ABILITY",
226
236
  };
227
237
  export const SchemaConfiguration = {
@@ -264,6 +274,7 @@ export const SchemaType = {
264
274
  TABLE: "TABLE",
265
275
  };
266
276
  export const MemberAbility = {
277
+ CAN_EXPORT_QUERY_ANALYSIS_LOG: "CAN_EXPORT_QUERY_ANALYSIS_LOG",
267
278
  CAN_QUERY: "CAN_QUERY",
268
279
  CAN_RECEIVE_RESULTS: "CAN_RECEIVE_RESULTS",
269
280
  CAN_RUN_JOB: "CAN_RUN_JOB",
@@ -296,10 +307,12 @@ export const ChangeType = {
296
307
  EDIT_AUTO_APPROVED_CHANGE_TYPES: "EDIT_AUTO_APPROVED_CHANGE_TYPES",
297
308
  GRANT_CAN_RECEIVE_INFERENCE_OUTPUT: "GRANT_CAN_RECEIVE_INFERENCE_OUTPUT",
298
309
  GRANT_CAN_RECEIVE_MODEL_OUTPUT: "GRANT_CAN_RECEIVE_MODEL_OUTPUT",
310
+ GRANT_EXPORT_QUERY_ANALYSIS_LOG_ABILITY: "GRANT_EXPORT_QUERY_ANALYSIS_LOG_ABILITY",
299
311
  GRANT_RECEIVE_RESULTS_ABILITY: "GRANT_RECEIVE_RESULTS_ABILITY",
300
312
  REMOVE_PAYER_CANDIDATE: "REMOVE_PAYER_CANDIDATE",
301
313
  REVOKE_CAN_RECEIVE_INFERENCE_OUTPUT: "REVOKE_CAN_RECEIVE_INFERENCE_OUTPUT",
302
314
  REVOKE_CAN_RECEIVE_MODEL_OUTPUT: "REVOKE_CAN_RECEIVE_MODEL_OUTPUT",
315
+ REVOKE_EXPORT_QUERY_ANALYSIS_LOG_ABILITY: "REVOKE_EXPORT_QUERY_ANALYSIS_LOG_ABILITY",
303
316
  REVOKE_RECEIVE_RESULTS_ABILITY: "REVOKE_RECEIVE_RESULTS_ABILITY",
304
317
  };
305
318
  export const ChangeRequestStatus = {
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { CleanRoomsClient } from "../CleanRoomsClient";
3
+ import { ListAnalysisLogExportsCommand, } from "../commands/ListAnalysisLogExportsCommand";
4
+ export const paginateListAnalysisLogExports = createPaginator(CleanRoomsClient, ListAnalysisLogExportsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,4 +1,5 @@
1
1
  export * from "./Interfaces";
2
+ export * from "./ListAnalysisLogExportsPaginator";
2
3
  export * from "./ListAnalysisTemplatesPaginator";
3
4
  export * from "./ListCollaborationAnalysisTemplatesPaginator";
4
5
  export * from "./ListCollaborationChangeRequestsPaginator";
@@ -9,6 +9,13 @@ const _ACL = "AggregateColumnList";
9
9
  const _ACg = "AggregationConstraint";
10
10
  const _ACgg = "AggregationConstraints";
11
11
  const _ADE = "AccessDeniedException";
12
+ const _ALE = "AnalysisLogExport";
13
+ const _ALEE = "AnalysisLogExportError";
14
+ const _ALEOC = "AnalysisLogExportOutputConfiguration";
15
+ const _ALERC = "AnalysisLogExportResultConfiguration";
16
+ const _ALES = "AnalysisLogExportSummary";
17
+ const _ALESL = "AnalysisLogExportSummaryList";
18
+ const _ALESOC = "AnalysisLogExportS3OutputConfiguration";
12
19
  const _AP = "AnalysisParameter";
13
20
  const _APL = "AnalysisParameterList";
14
21
  const _AR = "AnalysisRule";
@@ -224,6 +231,9 @@ const _DPTPI = "DifferentialPrivacyTemplateParametersInput";
224
231
  const _DPTPO = "DifferentialPrivacyTemplateParametersOutput";
225
232
  const _DPTUP = "DifferentialPrivacyTemplateUpdateParameters";
226
233
  const _EMC = "ErrorMessageConfiguration";
234
+ const _GALE = "GetAnalysisLogExport";
235
+ const _GALEI = "GetAnalysisLogExportInput";
236
+ const _GALEO = "GetAnalysisLogExportOutput";
227
237
  const _GAT = "GetAnalysisTemplate";
228
238
  const _GATI = "GetAnalysisTemplateInput";
229
239
  const _GATO = "GetAnalysisTemplateOutput";
@@ -339,6 +349,9 @@ const _ITVS = "IntermediateTableVersionSummary";
339
349
  const _ITVSL = "IntermediateTableVersionSummaryList";
340
350
  const _JCPC = "JobComputePaymentConfig";
341
351
  const _JPM = "JobParameterMap";
352
+ const _LALE = "ListAnalysisLogExports";
353
+ const _LALEI = "ListAnalysisLogExportsInput";
354
+ const _LALEO = "ListAnalysisLogExportsOutput";
342
355
  const _LAT = "ListAnalysisTemplates";
343
356
  const _LATI = "ListAnalysisTemplatesInput";
344
357
  const _LATO = "ListAnalysisTemplatesOutput";
@@ -508,6 +521,9 @@ const _RC = "ReceiverConfiguration";
508
521
  const _RCL = "ReceiverConfigurationsList";
509
522
  const _RNFE = "ResourceNotFoundException";
510
523
  const _S = "Schema";
524
+ const _SALE = "StartAnalysisLogExport";
525
+ const _SALEI = "StartAnalysisLogExportInput";
526
+ const _SALEO = "StartAnalysisLogExportOutput";
511
527
  const _SARL = "SchemaAnalysisRuleList";
512
528
  const _SARR = "SchemaAnalysisRuleRequest";
513
529
  const _SARRL = "SchemaAnalysisRuleRequestList";
@@ -613,11 +629,16 @@ const _aCll = "allowCleartext";
613
629
  const _aD = "allowDuplicates";
614
630
  const _aE = "analyticsEngine";
615
631
  const _aEg = "aggregationExpression";
616
- const _aI = "accountId";
617
- const _aIc = "accountIdentifier";
618
- const _aIn = "analysisId";
632
+ const _aI = "analysisId";
633
+ const _aIc = "accountId";
634
+ const _aIcc = "accountIdentifier";
635
+ const _aIn = "analysisIdentifier";
619
636
  const _aJO = "allowedJoinOperators";
620
637
  const _aJOCWDN = "allowJoinsOnColumnsWithDifferentNames";
638
+ const _aLE = "analysisLogExport";
639
+ const _aLEI = "analysisLogExportId";
640
+ const _aLEIn = "analysisLogExportIdentifier";
641
+ const _aLEn = "analysisLogExports";
621
642
  const _aM = "analysisMethod";
622
643
  const _aP = "analysisParameters";
623
644
  const _aPAI = "analysisPayerAccountId";
@@ -630,13 +651,13 @@ const _aRT = "analysisRuleTypes";
630
651
  const _aRTn = "analysisRuleType";
631
652
  const _aRn = "analysisRules";
632
653
  const _aRna = "analysisRule";
633
- const _aT = "analysisTemplate";
654
+ const _aT = "analysisType";
634
655
  const _aTA = "analysisTemplateArns";
635
656
  const _aTAn = "analysisTemplateArn";
636
657
  const _aTI = "analysisTemplateIdentifier";
637
658
  const _aTS = "analysisTemplateSummaries";
638
659
  const _aTg = "aggregationType";
639
- const _aTn = "analysisType";
660
+ const _aTn = "analysisTemplate";
640
661
  const _aUADC = "allowUseAsDimensionColumn";
641
662
  const _ab = "abilities";
642
663
  const _ac = "action";
@@ -819,8 +840,8 @@ const _na = "names";
819
840
  const _nu = "number";
820
841
  const _o = "output";
821
842
  const _oAI = "ownerAccountId";
822
- const _oC = "outputConstraints";
823
- const _oCu = "outputConfiguration";
843
+ const _oC = "outputConfiguration";
844
+ const _oCu = "outputConstraints";
824
845
  const _oL = "outputLocation";
825
846
  const _p = "policy";
826
847
  const _pAC = "populationAnalysisConfiguration";
@@ -857,8 +878,8 @@ const _rA = "resourceArn";
857
878
  const _rAI = "receiverAccountIds";
858
879
  const _rAo = "roleArn";
859
880
  const _rB = "remainingBudget";
860
- const _rC = "remainingCount";
861
- const _rCe = "resultConfiguration";
881
+ const _rC = "resultConfiguration";
882
+ const _rCe = "remainingCount";
862
883
  const _rCec = "receiverConfigurations";
863
884
  const _rF = "resultFormat";
864
885
  const _rI = "resourceId";
@@ -1019,6 +1040,36 @@ export var AggregationConstraint$ = [3, n0, _ACg,
1019
1040
  [_cNo, _mi, _t],
1020
1041
  [0, 1, 0], 3
1021
1042
  ];
1043
+ export var AnalysisLogExport$ = [3, n0, _ALE,
1044
+ 0,
1045
+ [_aLEI, _aI, _aT, _mI, _st, _rC, _cT, _uT, _e],
1046
+ [0, 0, 0, 0, 0, () => AnalysisLogExportResultConfiguration$, 4, 4, () => AnalysisLogExportError$], 8
1047
+ ];
1048
+ export var AnalysisLogExportError$ = [3, n0, _ALEE,
1049
+ 0,
1050
+ [_co, _m],
1051
+ [0, 0], 2
1052
+ ];
1053
+ export var AnalysisLogExportOutputConfiguration$ = [3, n0, _ALEOC,
1054
+ 0,
1055
+ [_s_],
1056
+ [() => AnalysisLogExportS3OutputConfiguration$], 1
1057
+ ];
1058
+ export var AnalysisLogExportResultConfiguration$ = [3, n0, _ALERC,
1059
+ 0,
1060
+ [_oC],
1061
+ [() => AnalysisLogExportOutputConfiguration$], 1
1062
+ ];
1063
+ export var AnalysisLogExportS3OutputConfiguration$ = [3, n0, _ALESOC,
1064
+ 0,
1065
+ [_bu, _kP],
1066
+ [0, 0], 1
1067
+ ];
1068
+ export var AnalysisLogExportSummary$ = [3, n0, _ALES,
1069
+ 0,
1070
+ [_aLEI, _aI, _aT, _st, _cT],
1071
+ [0, 0, 0, 0, 4], 5
1072
+ ];
1022
1073
  export var AnalysisParameter$ = [3, n0, _AP,
1023
1074
  8,
1024
1075
  [_n, _t, _dV],
@@ -1031,7 +1082,7 @@ export var AnalysisRule$ = [3, n0, _AR,
1031
1082
  ];
1032
1083
  export var AnalysisRuleAggregation$ = [3, n0, _ARA,
1033
1084
  0,
1034
- [_aC, _jC, _dC, _sF, _oC, _jR, _aJO, _aA],
1085
+ [_aC, _jC, _dC, _sF, _oCu, _jR, _aJO, _aA],
1035
1086
  [() => AggregateColumnList, 64 | 0, 64 | 0, 64 | 0, () => AggregationConstraints, 0, 64 | 0, 0], 5
1036
1087
  ];
1037
1088
  export var AnalysisRuleCustom$ = [3, n0, _ARC,
@@ -1321,7 +1372,7 @@ export var ConfiguredTableSummary$ = [3, n0, _CTS,
1321
1372
  ];
1322
1373
  export var ConsolidatedPolicyAggregation$ = [3, n0, _CPA,
1323
1374
  0,
1324
- [_aC, _jC, _dC, _sF, _oC, _jR, _aJO, _aA, _aRR, _aAA],
1375
+ [_aC, _jC, _dC, _sF, _oCu, _jR, _aJO, _aA, _aRR, _aAA],
1325
1376
  [() => AggregateColumnList, 64 | 0, 64 | 0, 64 | 0, () => AggregationConstraints, 0, 64 | 0, 0, 64 | 0, 64 | 0], 5
1326
1377
  ];
1327
1378
  export var ConsolidatedPolicyCustom$ = [3, n0, _CPC,
@@ -1341,7 +1392,7 @@ export var CreateAnalysisTemplateInput$ = [3, n0, _CATI,
1341
1392
  ];
1342
1393
  export var CreateAnalysisTemplateOutput$ = [3, n0, _CATO,
1343
1394
  0,
1344
- [_aT],
1395
+ [_aTn],
1345
1396
  [[() => AnalysisTemplate$, 0]], 1
1346
1397
  ];
1347
1398
  export var CreateCollaborationChangeRequestInput$ = [3, n0, _CCCRI,
@@ -1591,7 +1642,7 @@ export var DeleteIntermediateTableOutput$ = [3, n0, _DITO,
1591
1642
  ];
1592
1643
  export var DeleteMemberInput$ = [3, n0, _DMI,
1593
1644
  0,
1594
- [_cIo, _aI],
1645
+ [_cIo, _aIc],
1595
1646
  [[0, 1], [0, 1]], 2
1596
1647
  ];
1597
1648
  export var DeleteMemberOutput$ = [3, n0, _DMO,
@@ -1651,7 +1702,7 @@ export var DifferentialPrivacyPrivacyBudget$ = [3, n0, _DPPB,
1651
1702
  ];
1652
1703
  export var DifferentialPrivacyPrivacyBudgetAggregation$ = [3, n0, _DPPBA,
1653
1704
  0,
1654
- [_t, _mC, _rC],
1705
+ [_t, _mC, _rCe],
1655
1706
  [0, 1, 1], 3
1656
1707
  ];
1657
1708
  export var DifferentialPrivacyPrivacyImpact$ = [3, n0, _DPPI,
@@ -1699,6 +1750,16 @@ export var ErrorMessageConfiguration$ = [3, n0, _EMC,
1699
1750
  [_t],
1700
1751
  [0], 1
1701
1752
  ];
1753
+ export var GetAnalysisLogExportInput$ = [3, n0, _GALEI,
1754
+ 0,
1755
+ [_mIe, _aLEIn],
1756
+ [[0, 1], [0, 1]], 2
1757
+ ];
1758
+ export var GetAnalysisLogExportOutput$ = [3, n0, _GALEO,
1759
+ 0,
1760
+ [_aLE],
1761
+ [() => AnalysisLogExport$], 1
1762
+ ];
1702
1763
  export var GetAnalysisTemplateInput$ = [3, n0, _GATI,
1703
1764
  0,
1704
1765
  [_mIe, _aTI],
@@ -1706,7 +1767,7 @@ export var GetAnalysisTemplateInput$ = [3, n0, _GATI,
1706
1767
  ];
1707
1768
  export var GetAnalysisTemplateOutput$ = [3, n0, _GATO,
1708
1769
  0,
1709
- [_aT],
1770
+ [_aTn],
1710
1771
  [[() => AnalysisTemplate$, 0]], 1
1711
1772
  ];
1712
1773
  export var GetCollaborationAnalysisTemplateInput$ = [3, n0, _GCATI,
@@ -2031,7 +2092,7 @@ export var IntermediateTable$ = [3, n0, _IT,
2031
2092
  ];
2032
2093
  export var IntermediateTableActiveVersion$ = [3, n0, _ITAV,
2033
2094
  0,
2034
- [_vI, _aIn, _aTn, _iC, _kKA, _pa, _eTx],
2095
+ [_vI, _aI, _aT, _iC, _kKA, _pa, _eTx],
2035
2096
  [0, 0, 0, () => IntermediateTableInheritedConstraints$, 0, [() => ParameterMap, 0], 4], 4
2036
2097
  ];
2037
2098
  export var IntermediateTableAnalysisRule$ = [3, n0, _ITAR,
@@ -2081,7 +2142,7 @@ export var IntermediateTableSummary$ = [3, n0, _ITSn,
2081
2142
  ];
2082
2143
  export var IntermediateTableVersionSummary$ = [3, n0, _ITVS,
2083
2144
  0,
2084
- [_vI, _tI, _cT, _aIn, _st, _aTn, _kKA, _eTx],
2145
+ [_vI, _tI, _cT, _aI, _st, _aT, _kKA, _eTx],
2085
2146
  [0, 0, 4, 0, 0, 0, 0, 4], 6
2086
2147
  ];
2087
2148
  export var JobComputePaymentConfig$ = [3, n0, _JCPC,
@@ -2089,6 +2150,16 @@ export var JobComputePaymentConfig$ = [3, n0, _JCPC,
2089
2150
  [_iR],
2090
2151
  [2], 1
2091
2152
  ];
2153
+ export var ListAnalysisLogExportsInput$ = [3, n0, _LALEI,
2154
+ 0,
2155
+ [_mIe, _aIn, _st, _nT, _mR],
2156
+ [[0, 1], [0, { [_hQ]: _aIn }], [0, { [_hQ]: _st }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
2157
+ ];
2158
+ export var ListAnalysisLogExportsOutput$ = [3, n0, _LALEO,
2159
+ 0,
2160
+ [_aLEn, _nT],
2161
+ [() => AnalysisLogExportSummaryList, 0], 1
2162
+ ];
2092
2163
  export var ListAnalysisTemplatesInput$ = [3, n0, _LATI,
2093
2164
  0,
2094
2165
  [_mIe, _nT, _mR],
@@ -2321,7 +2392,7 @@ export var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
2321
2392
  ];
2322
2393
  export var MemberChangeSpecification$ = [3, n0, _MCS,
2323
2394
  0,
2324
- [_aI, _mAe, _mMA, _pC, _dNi],
2395
+ [_aIc, _mAe, _mMA, _pC, _dNi],
2325
2396
  [0, 64 | 0, () => MLMemberAbilities$, () => PaymentConfiguration$, 0], 2
2326
2397
  ];
2327
2398
  export var Membership$ = [3, n0, _M,
@@ -2356,12 +2427,12 @@ export var MembershipPaymentConfiguration$ = [3, n0, _MPC,
2356
2427
  ];
2357
2428
  export var MembershipProtectedJobResultConfiguration$ = [3, n0, _MPJRC,
2358
2429
  0,
2359
- [_oCu, _rAo],
2430
+ [_oC, _rAo],
2360
2431
  [() => MembershipProtectedJobOutputConfiguration$, 0], 2
2361
2432
  ];
2362
2433
  export var MembershipProtectedQueryResultConfiguration$ = [3, n0, _MPQRC,
2363
2434
  0,
2364
- [_oCu, _rAo],
2435
+ [_oC, _rAo],
2365
2436
  [() => MembershipProtectedQueryOutputConfiguration$, 0], 1
2366
2437
  ];
2367
2438
  export var MembershipQueryComputePaymentConfig$ = [3, n0, _MQCPC,
@@ -2381,12 +2452,12 @@ export var MembershipSyntheticDataGenerationPaymentConfig$ = [3, n0, _MSDGPC,
2381
2452
  ];
2382
2453
  export var MemberSpecification$ = [3, n0, _MSe,
2383
2454
  0,
2384
- [_aI, _mAe, _dNi, _mMA, _pC],
2455
+ [_aIc, _mAe, _dNi, _mMA, _pC],
2385
2456
  [0, 64 | 0, 0, () => MLMemberAbilities$, () => PaymentConfiguration$], 3
2386
2457
  ];
2387
2458
  export var MemberSummary$ = [3, n0, _MSem,
2388
2459
  0,
2389
- [_aI, _st, _dNi, _ab, _cT, _uT, _pC, _mAl, _mI, _mA],
2460
+ [_aIc, _st, _dNi, _ab, _cT, _uT, _pC, _mAl, _mI, _mA],
2390
2461
  [0, 0, 0, 64 | 0, 4, 4, () => PaymentConfiguration$, () => MLMemberAbilities$, 0, 0], 7
2391
2462
  ];
2392
2463
  export var MLMemberAbilities$ = [3, n0, _MLMA,
@@ -2436,7 +2507,7 @@ export var PopulateIntermediateTableInput$ = [3, n0, _PITI,
2436
2507
  ];
2437
2508
  export var PopulateIntermediateTableOutput$ = [3, n0, _PITO,
2438
2509
  0,
2439
- [_aIn, _aTn, _vI],
2510
+ [_aI, _aT, _vI],
2440
2511
  [0, 0, 0], 3
2441
2512
  ];
2442
2513
  export var PopulationAnalysisSqlParameters$ = [3, n0, _PASP,
@@ -2471,7 +2542,7 @@ export var PrivacyBudgetTemplateSummary$ = [3, n0, _PBTS,
2471
2542
  ];
2472
2543
  export var ProtectedJob$ = [3, n0, _PJ,
2473
2544
  0,
2474
- [_i, _mI, _mA, _cT, _st, _jP, _rCe, _sta, _res, _e, _cCo, _jCPAI],
2545
+ [_i, _mI, _mA, _cT, _st, _jP, _rC, _sta, _res, _e, _cCo, _jCPAI],
2475
2546
  [0, 0, 0, 4, 0, [() => ProtectedJobParameters$, 0], () => ProtectedJobResultConfigurationOutput$, () => ProtectedJobStatistics$, () => ProtectedJobResult$, () => ProtectedJobError$, () => ProtectedJobComputeConfiguration$, 0], 5
2476
2547
  ];
2477
2548
  export var ProtectedJobDirectAnalysisConfigurationDetails$ = [3, n0, _PJDACD,
@@ -2486,12 +2557,12 @@ export var ProtectedJobError$ = [3, n0, _PJE,
2486
2557
  ];
2487
2558
  export var ProtectedJobMemberOutputConfigurationInput$ = [3, n0, _PJMOCI,
2488
2559
  0,
2489
- [_aI],
2560
+ [_aIc],
2490
2561
  [0], 1
2491
2562
  ];
2492
2563
  export var ProtectedJobMemberOutputConfigurationOutput$ = [3, n0, _PJMOCO,
2493
2564
  0,
2494
- [_aI],
2565
+ [_aIc],
2495
2566
  [0], 1
2496
2567
  ];
2497
2568
  export var ProtectedJobParameters$ = [3, n0, _PJP,
@@ -2501,7 +2572,7 @@ export var ProtectedJobParameters$ = [3, n0, _PJP,
2501
2572
  ];
2502
2573
  export var ProtectedJobReceiverConfiguration$ = [3, n0, _PJRC,
2503
2574
  0,
2504
- [_aTn, _cD],
2575
+ [_aT, _cD],
2505
2576
  [0, () => ProtectedJobConfigurationDetails$], 1
2506
2577
  ];
2507
2578
  export var ProtectedJobResult$ = [3, n0, _PJR,
@@ -2511,12 +2582,12 @@ export var ProtectedJobResult$ = [3, n0, _PJR,
2511
2582
  ];
2512
2583
  export var ProtectedJobResultConfigurationInput$ = [3, n0, _PJRCI,
2513
2584
  0,
2514
- [_oCu],
2585
+ [_oC],
2515
2586
  [() => ProtectedJobOutputConfigurationInput$], 1
2516
2587
  ];
2517
2588
  export var ProtectedJobResultConfigurationOutput$ = [3, n0, _PJRCO,
2518
2589
  0,
2519
- [_oCu],
2590
+ [_oC],
2520
2591
  [() => ProtectedJobOutputConfigurationOutput$], 1
2521
2592
  ];
2522
2593
  export var ProtectedJobS3Output$ = [3, n0, _PJSO,
@@ -2536,7 +2607,7 @@ export var ProtectedJobS3OutputConfigurationOutput$ = [3, n0, _PJSOCO,
2536
2607
  ];
2537
2608
  export var ProtectedJobSingleMemberOutput$ = [3, n0, _PJSMO,
2538
2609
  0,
2539
- [_aI],
2610
+ [_aIc],
2540
2611
  [0], 1
2541
2612
  ];
2542
2613
  export var ProtectedJobStatistics$ = [3, n0, _PJS,
@@ -2556,7 +2627,7 @@ export var ProtectedJobWorkerComputeConfiguration$ = [3, n0, _PJWCC,
2556
2627
  ];
2557
2628
  export var ProtectedQuery$ = [3, n0, _PQ,
2558
2629
  0,
2559
- [_i, _mI, _mA, _cT, _st, _sPq, _rCe, _sta, _res, _e, _dP, _cCo, _qCPAI],
2630
+ [_i, _mI, _mA, _cT, _st, _sPq, _rC, _sta, _res, _e, _dP, _cCo, _qCPAI],
2560
2631
  [0, 0, 0, 4, 0, [() => ProtectedQuerySQLParameters$, 0], () => ProtectedQueryResultConfiguration$, () => ProtectedQueryStatistics$, () => ProtectedQueryResult$, () => ProtectedQueryError$, () => DifferentialPrivacyParameters$, () => ComputeConfiguration$, 0], 5
2561
2632
  ];
2562
2633
  export var ProtectedQueryDistributeOutput$ = [3, n0, _PQDO,
@@ -2576,7 +2647,7 @@ export var ProtectedQueryError$ = [3, n0, _PQE,
2576
2647
  ];
2577
2648
  export var ProtectedQueryMemberOutputConfiguration$ = [3, n0, _PQMOC,
2578
2649
  0,
2579
- [_aI],
2650
+ [_aIc],
2580
2651
  [0], 1
2581
2652
  ];
2582
2653
  export var ProtectedQueryResult$ = [3, n0, _PQR,
@@ -2586,7 +2657,7 @@ export var ProtectedQueryResult$ = [3, n0, _PQR,
2586
2657
  ];
2587
2658
  export var ProtectedQueryResultConfiguration$ = [3, n0, _PQRC,
2588
2659
  0,
2589
- [_oCu],
2660
+ [_oC],
2590
2661
  [() => ProtectedQueryOutputConfiguration$], 1
2591
2662
  ];
2592
2663
  export var ProtectedQueryS3Output$ = [3, n0, _PQSO,
@@ -2601,7 +2672,7 @@ export var ProtectedQueryS3OutputConfiguration$ = [3, n0, _PQSOC,
2601
2672
  ];
2602
2673
  export var ProtectedQuerySingleMemberOutput$ = [3, n0, _PQSMO,
2603
2674
  0,
2604
- [_aI],
2675
+ [_aIc],
2605
2676
  [0], 1
2606
2677
  ];
2607
2678
  export var ProtectedQuerySQLParameters$ = [3, n0, _PQSQLP,
@@ -2631,7 +2702,7 @@ export var QueryConstraintRequireOverlap$ = [3, n0, _QCRO,
2631
2702
  ];
2632
2703
  export var ReceiverConfiguration$ = [3, n0, _RC,
2633
2704
  0,
2634
- [_aTn, _cD],
2705
+ [_aT, _cD],
2635
2706
  [0, () => ConfigurationDetails$], 1
2636
2707
  ];
2637
2708
  export var S3Location$ = [3, n0, _SL,
@@ -2651,7 +2722,7 @@ export var SchemaAnalysisRuleRequest$ = [3, n0, _SARR,
2651
2722
  ];
2652
2723
  export var SchemaStatusDetail$ = [3, n0, _SSD,
2653
2724
  0,
2654
- [_st, _aTn, _re, _aRTn, _con],
2725
+ [_st, _aT, _re, _aRTn, _con],
2655
2726
  [0, 0, () => SchemaStatusReasonList, 0, 64 | 0], 2
2656
2727
  ];
2657
2728
  export var SchemaStatusReason$ = [3, n0, _SSR,
@@ -2666,7 +2737,7 @@ export var SchemaSummary$ = [3, n0, _SS,
2666
2737
  ];
2667
2738
  export var SnowflakeTableReference$ = [3, n0, _STR,
2668
2739
  0,
2669
- [_sA, _aIc, _dN, _tN, _sNc, _tS],
2740
+ [_sA, _aIcc, _dN, _tN, _sNc, _tS],
2670
2741
  [0, 0, 0, 0, 0, () => SnowflakeTableSchema$], 6
2671
2742
  ];
2672
2743
  export var SnowflakeTableSchemaV1$ = [3, n0, _STSV,
@@ -2674,9 +2745,19 @@ export var SnowflakeTableSchemaV1$ = [3, n0, _STSV,
2674
2745
  [_cNo, _cTol],
2675
2746
  [0, 0], 2
2676
2747
  ];
2748
+ export var StartAnalysisLogExportInput$ = [3, n0, _SALEI,
2749
+ 0,
2750
+ [_mIe, _aI, _aT, _rC],
2751
+ [[0, 1], 0, 0, () => AnalysisLogExportResultConfiguration$], 4
2752
+ ];
2753
+ export var StartAnalysisLogExportOutput$ = [3, n0, _SALEO,
2754
+ 0,
2755
+ [_aLE],
2756
+ [() => AnalysisLogExport$], 1
2757
+ ];
2677
2758
  export var StartProtectedJobInput$ = [3, n0, _SPJI,
2678
2759
  0,
2679
- [_t, _mIe, _jP, _rCe, _cCo, _jCPAI],
2760
+ [_t, _mIe, _jP, _rC, _cCo, _jCPAI],
2680
2761
  [0, [0, 1], [() => ProtectedJobParameters$, 0], () => ProtectedJobResultConfigurationInput$, () => ProtectedJobComputeConfiguration$, 0], 3
2681
2762
  ];
2682
2763
  export var StartProtectedJobOutput$ = [3, n0, _SPJO,
@@ -2686,7 +2767,7 @@ export var StartProtectedJobOutput$ = [3, n0, _SPJO,
2686
2767
  ];
2687
2768
  export var StartProtectedQueryInput$ = [3, n0, _SPQI,
2688
2769
  0,
2689
- [_t, _mIe, _sPq, _rCe, _cCo, _qCPAI],
2770
+ [_t, _mIe, _sPq, _rC, _cCo, _qCPAI],
2690
2771
  [0, [0, 1], [() => ProtectedQuerySQLParameters$, 0], () => ProtectedQueryResultConfiguration$, () => ComputeConfiguration$, 0], 3
2691
2772
  ];
2692
2773
  export var StartProtectedQueryOutput$ = [3, n0, _SPQO,
@@ -2731,7 +2812,7 @@ export var UpdateAnalysisTemplateInput$ = [3, n0, _UATI,
2731
2812
  ];
2732
2813
  export var UpdateAnalysisTemplateOutput$ = [3, n0, _UATO,
2733
2814
  0,
2734
- [_aT],
2815
+ [_aTn],
2735
2816
  [[() => AnalysisTemplate$, 0]], 1
2736
2817
  ];
2737
2818
  export var UpdateCollaborationChangeRequestInput$ = [3, n0, _UCCRI,
@@ -2915,6 +2996,9 @@ var AllowedAnalysisProviderList = 64 | 0;
2915
2996
  var AllowedColumnList = 64 | 0;
2916
2997
  var AllowedResultReceivers = 64 | 0;
2917
2998
  var AllowedResultRegions = 64 | 0;
2999
+ var AnalysisLogExportSummaryList = [1, n0, _ALESL,
3000
+ 0, () => AnalysisLogExportSummary$
3001
+ ];
2918
3002
  var AnalysisParameterList = [1, n0, _APL,
2919
3003
  0, [() => AnalysisParameter$,
2920
3004
  0]
@@ -3426,6 +3510,9 @@ export var DeletePrivacyBudgetTemplate$ = [9, n0, _DPBT,
3426
3510
  export var DisallowIntermediateTable$ = [9, n0, _DITi,
3427
3511
  { [_h]: ["POST", "/memberships/{membershipIdentifier}/disallowIntermediateTable", 200] }, () => DisallowIntermediateTableInput$, () => DisallowIntermediateTableOutput$
3428
3512
  ];
3513
+ export var GetAnalysisLogExport$ = [9, n0, _GALE,
3514
+ { [_h]: ["GET", "/memberships/{membershipIdentifier}/analysislogexports/{analysisLogExportIdentifier}", 200] }, () => GetAnalysisLogExportInput$, () => GetAnalysisLogExportOutput$
3515
+ ];
3429
3516
  export var GetAnalysisTemplate$ = [9, n0, _GAT,
3430
3517
  { [_h]: ["GET", "/memberships/{membershipIdentifier}/analysistemplates/{analysisTemplateIdentifier}", 200] }, () => GetAnalysisTemplateInput$, () => GetAnalysisTemplateOutput$
3431
3518
  ];
@@ -3492,6 +3579,9 @@ export var GetSchema$ = [9, n0, _GS,
3492
3579
  export var GetSchemaAnalysisRule$ = [9, n0, _GSAR,
3493
3580
  { [_h]: ["GET", "/collaborations/{collaborationIdentifier}/schemas/{name}/analysisRule/{type}", 200] }, () => GetSchemaAnalysisRuleInput$, () => GetSchemaAnalysisRuleOutput$
3494
3581
  ];
3582
+ export var ListAnalysisLogExports$ = [9, n0, _LALE,
3583
+ { [_h]: ["GET", "/memberships/{membershipIdentifier}/analysislogexports", 200] }, () => ListAnalysisLogExportsInput$, () => ListAnalysisLogExportsOutput$
3584
+ ];
3495
3585
  export var ListAnalysisTemplates$ = [9, n0, _LAT,
3496
3586
  { [_h]: ["GET", "/memberships/{membershipIdentifier}/analysistemplates", 200] }, () => ListAnalysisTemplatesInput$, () => ListAnalysisTemplatesOutput$
3497
3587
  ];
@@ -3570,6 +3660,9 @@ export var PopulateIntermediateTable$ = [9, n0, _PIT,
3570
3660
  export var PreviewPrivacyImpact$ = [9, n0, _PPI,
3571
3661
  { [_h]: ["POST", "/memberships/{membershipIdentifier}/previewprivacyimpact", 200] }, () => PreviewPrivacyImpactInput$, () => PreviewPrivacyImpactOutput$
3572
3662
  ];
3663
+ export var StartAnalysisLogExport$ = [9, n0, _SALE,
3664
+ { [_h]: ["POST", "/memberships/{membershipIdentifier}/analysislogexports", 200] }, () => StartAnalysisLogExportInput$, () => StartAnalysisLogExportOutput$
3665
+ ];
3573
3666
  export var StartProtectedJob$ = [9, n0, _SPJ,
3574
3667
  { [_h]: ["POST", "/memberships/{membershipIdentifier}/protectedJobs", 200] }, () => StartProtectedJobInput$, () => StartProtectedJobOutput$
3575
3668
  ];