@aws-sdk/client-glue 3.965.0 → 3.967.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 (52) hide show
  1. package/README.md +28 -0
  2. package/dist-cjs/index.js +233 -0
  3. package/dist-es/Glue.js +8 -0
  4. package/dist-es/commands/GetMaterializedViewRefreshTaskRunCommand.js +16 -0
  5. package/dist-es/commands/ListMaterializedViewRefreshTaskRunsCommand.js +16 -0
  6. package/dist-es/commands/StartMaterializedViewRefreshTaskRunCommand.js +16 -0
  7. package/dist-es/commands/StopMaterializedViewRefreshTaskRunCommand.js +16 -0
  8. package/dist-es/commands/index.js +4 -0
  9. package/dist-es/models/enums.js +11 -0
  10. package/dist-es/models/errors.js +42 -0
  11. package/dist-es/pagination/ListMaterializedViewRefreshTaskRunsPaginator.js +4 -0
  12. package/dist-es/pagination/index.js +1 -0
  13. package/dist-es/schemas/schemas_0.js +101 -1
  14. package/dist-types/Glue.d.ts +28 -0
  15. package/dist-types/GlueClient.d.ts +6 -2
  16. package/dist-types/commands/GetMLTransformCommand.d.ts +2 -1
  17. package/dist-types/commands/GetMaterializedViewRefreshTaskRunCommand.d.ts +103 -0
  18. package/dist-types/commands/ListMaterializedViewRefreshTaskRunsCommand.d.ts +106 -0
  19. package/dist-types/commands/StartMaterializedViewRefreshTaskRunCommand.d.ts +95 -0
  20. package/dist-types/commands/StopMaterializedViewRefreshTaskRunCommand.d.ts +89 -0
  21. package/dist-types/commands/UpdateTableCommand.d.ts +1 -1
  22. package/dist-types/commands/UpdateTableOptimizerCommand.d.ts +1 -1
  23. package/dist-types/commands/UpdateTriggerCommand.d.ts +1 -2
  24. package/dist-types/commands/index.d.ts +4 -0
  25. package/dist-types/models/enums.d.ts +27 -0
  26. package/dist-types/models/errors.d.ts +39 -0
  27. package/dist-types/models/models_1.d.ts +107 -152
  28. package/dist-types/models/models_2.d.ts +259 -202
  29. package/dist-types/models/models_3.d.ts +203 -4
  30. package/dist-types/pagination/ListMaterializedViewRefreshTaskRunsPaginator.d.ts +7 -0
  31. package/dist-types/pagination/index.d.ts +1 -0
  32. package/dist-types/schemas/schemas_0.d.ts +16 -0
  33. package/dist-types/ts3.4/Glue.d.ts +92 -0
  34. package/dist-types/ts3.4/GlueClient.d.ts +24 -0
  35. package/dist-types/ts3.4/commands/GetMLTransformCommand.d.ts +2 -4
  36. package/dist-types/ts3.4/commands/GetMaterializedViewRefreshTaskRunCommand.d.ts +51 -0
  37. package/dist-types/ts3.4/commands/ListMaterializedViewRefreshTaskRunsCommand.d.ts +51 -0
  38. package/dist-types/ts3.4/commands/StartMaterializedViewRefreshTaskRunCommand.d.ts +51 -0
  39. package/dist-types/ts3.4/commands/StopMaterializedViewRefreshTaskRunCommand.d.ts +51 -0
  40. package/dist-types/ts3.4/commands/UpdateTableCommand.d.ts +1 -1
  41. package/dist-types/ts3.4/commands/UpdateTableOptimizerCommand.d.ts +1 -1
  42. package/dist-types/ts3.4/commands/UpdateTriggerCommand.d.ts +4 -2
  43. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  44. package/dist-types/ts3.4/models/enums.d.ts +15 -0
  45. package/dist-types/ts3.4/models/errors.d.ts +33 -0
  46. package/dist-types/ts3.4/models/models_1.d.ts +26 -30
  47. package/dist-types/ts3.4/models/models_2.d.ts +59 -50
  48. package/dist-types/ts3.4/models/models_3.d.ts +50 -0
  49. package/dist-types/ts3.4/pagination/ListMaterializedViewRefreshTaskRunsPaginator.d.ts +11 -0
  50. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  51. package/dist-types/ts3.4/schemas/schemas_0.d.ts +16 -0
  52. package/package.json +11 -11
package/README.md CHANGED
@@ -1112,6 +1112,13 @@ GetMapping
1112
1112
  </details>
1113
1113
  <details>
1114
1114
  <summary>
1115
+ GetMaterializedViewRefreshTaskRun
1116
+ </summary>
1117
+
1118
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/GetMaterializedViewRefreshTaskRunCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/GetMaterializedViewRefreshTaskRunCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/GetMaterializedViewRefreshTaskRunCommandOutput/)
1119
+ </details>
1120
+ <details>
1121
+ <summary>
1115
1122
  GetMLTaskRun
1116
1123
  </summary>
1117
1124
 
@@ -1490,6 +1497,13 @@ ListJobs
1490
1497
  </details>
1491
1498
  <details>
1492
1499
  <summary>
1500
+ ListMaterializedViewRefreshTaskRuns
1501
+ </summary>
1502
+
1503
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/ListMaterializedViewRefreshTaskRunsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/ListMaterializedViewRefreshTaskRunsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/ListMaterializedViewRefreshTaskRunsCommandOutput/)
1504
+ </details>
1505
+ <details>
1506
+ <summary>
1493
1507
  ListMLTransforms
1494
1508
  </summary>
1495
1509
 
@@ -1721,6 +1735,13 @@ StartJobRun
1721
1735
  </details>
1722
1736
  <details>
1723
1737
  <summary>
1738
+ StartMaterializedViewRefreshTaskRun
1739
+ </summary>
1740
+
1741
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/StartMaterializedViewRefreshTaskRunCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/StartMaterializedViewRefreshTaskRunCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/StartMaterializedViewRefreshTaskRunCommandOutput/)
1742
+ </details>
1743
+ <details>
1744
+ <summary>
1724
1745
  StartMLEvaluationTaskRun
1725
1746
  </summary>
1726
1747
 
@@ -1777,6 +1798,13 @@ StopCrawlerSchedule
1777
1798
  </details>
1778
1799
  <details>
1779
1800
  <summary>
1801
+ StopMaterializedViewRefreshTaskRun
1802
+ </summary>
1803
+
1804
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/StopMaterializedViewRefreshTaskRunCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/StopMaterializedViewRefreshTaskRunCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/StopMaterializedViewRefreshTaskRunCommandOutput/)
1805
+ </details>
1806
+ <details>
1807
+ <summary>
1780
1808
  StopSession
1781
1809
  </summary>
1782
1810
 
package/dist-cjs/index.js CHANGED
@@ -657,6 +657,20 @@ class SchedulerRunningException extends GlueServiceException {
657
657
  this.Message = opts.Message;
658
658
  }
659
659
  }
660
+ class MaterializedViewRefreshTaskRunningException extends GlueServiceException {
661
+ name = "MaterializedViewRefreshTaskRunningException";
662
+ $fault = "client";
663
+ Message;
664
+ constructor(opts) {
665
+ super({
666
+ name: "MaterializedViewRefreshTaskRunningException",
667
+ $fault: "client",
668
+ ...opts,
669
+ });
670
+ Object.setPrototypeOf(this, MaterializedViewRefreshTaskRunningException.prototype);
671
+ this.Message = opts.Message;
672
+ }
673
+ }
660
674
  class MLTransformNotReadyException extends GlueServiceException {
661
675
  name = "MLTransformNotReadyException";
662
676
  $fault = "client";
@@ -741,6 +755,34 @@ class SchedulerNotRunningException extends GlueServiceException {
741
755
  this.Message = opts.Message;
742
756
  }
743
757
  }
758
+ class MaterializedViewRefreshTaskNotRunningException extends GlueServiceException {
759
+ name = "MaterializedViewRefreshTaskNotRunningException";
760
+ $fault = "client";
761
+ Message;
762
+ constructor(opts) {
763
+ super({
764
+ name: "MaterializedViewRefreshTaskNotRunningException",
765
+ $fault: "client",
766
+ ...opts,
767
+ });
768
+ Object.setPrototypeOf(this, MaterializedViewRefreshTaskNotRunningException.prototype);
769
+ this.Message = opts.Message;
770
+ }
771
+ }
772
+ class MaterializedViewRefreshTaskStoppingException extends GlueServiceException {
773
+ name = "MaterializedViewRefreshTaskStoppingException";
774
+ $fault = "client";
775
+ Message;
776
+ constructor(opts) {
777
+ super({
778
+ name: "MaterializedViewRefreshTaskStoppingException",
779
+ $fault: "client",
780
+ ...opts,
781
+ });
782
+ Object.setPrototypeOf(this, MaterializedViewRefreshTaskStoppingException.prototype);
783
+ this.Message = opts.Message;
784
+ }
785
+ }
744
786
  class VersionMismatchException extends GlueServiceException {
745
787
  name = "VersionMismatchException";
746
788
  $fault = "client";
@@ -1558,6 +1600,7 @@ const _FPi = "FilterPredicate";
1558
1600
  const _FPr = "FromPath";
1559
1601
  const _FR = "FailureReason";
1560
1602
  const _FRAEE = "FederatedResourceAlreadyExistsException";
1603
+ const _FRu = "FullRefresh";
1561
1604
  const _FS = "FunctionSpec";
1562
1605
  const _FSE = "FederationSourceException";
1563
1606
  const _FSEC = "FederationSourceErrorCode";
@@ -1723,6 +1766,9 @@ const _GMLTRetr = "GetMLTransformsResponse";
1723
1766
  const _GMLTe = "GetMLTransforms";
1724
1767
  const _GMR = "GetMappingRequest";
1725
1768
  const _GMRe = "GetMappingResponse";
1769
+ const _GMVRTR = "GetMaterializedViewRefreshTaskRun";
1770
+ const _GMVRTRR = "GetMaterializedViewRefreshTaskRunRequest";
1771
+ const _GMVRTRRe = "GetMaterializedViewRefreshTaskRunResponse";
1726
1772
  const _GN = "GroupName";
1727
1773
  const _GP = "GrokPattern";
1728
1774
  const _GPI = "GetPartitionIndexes";
@@ -2081,6 +2127,9 @@ const _LMLTR = "ListMLTransformsRequest";
2081
2127
  const _LMLTRi = "ListMLTransformsResponse";
2082
2128
  const _LMO = "LastModifiedOn";
2083
2129
  const _LMT = "LastModifiedTimestamp";
2130
+ const _LMVRTR = "ListMaterializedViewRefreshTaskRuns";
2131
+ const _LMVRTRR = "ListMaterializedViewRefreshTaskRunsRequest";
2132
+ const _LMVRTRRi = "ListMaterializedViewRefreshTaskRunsResponse";
2084
2133
  const _LN = "LineNumber";
2085
2134
  const _LO = "LogicalOperator";
2086
2135
  const _LPL = "LimitedPathList";
@@ -2181,6 +2230,13 @@ const _MTD = "MaximumTraversalDepth";
2181
2230
  const _MUDE = "MlUserDataEncryption";
2182
2231
  const _MUDEM = "MlUserDataEncryptionMode";
2183
2232
  const _MV = "MinValue";
2233
+ const _MVRTNRE = "MaterializedViewRefreshTaskNotRunningException";
2234
+ const _MVRTR = "MaterializedViewRefreshTaskRun";
2235
+ const _MVRTRE = "MaterializedViewRefreshTaskRunningException";
2236
+ const _MVRTRI = "MaterializedViewRefreshTaskRunId";
2237
+ const _MVRTRL = "MaterializedViewRefreshTaskRunsList";
2238
+ const _MVRTRa = "MaterializedViewRefreshTaskRuns";
2239
+ const _MVRTSE = "MaterializedViewRefreshTaskStoppingException";
2184
2240
  const _MVa = "MaxValue";
2185
2241
  const _MVas = "MaskValue";
2186
2242
  const _MVax = "MaximumValue";
@@ -2281,6 +2337,7 @@ const _PA = "PreAction";
2281
2337
  const _PAo = "PostAction";
2282
2338
  const _PAr = "PrivateAddress";
2283
2339
  const _PAu = "PublicAddress";
2340
+ const _PB = "ProcessedBytes";
2284
2341
  const _PC = "PartitionColumn";
2285
2342
  const _PCI = "ParentCatalogId";
2286
2343
  const _PCP = "PythonConnectionProperties";
@@ -2471,6 +2528,7 @@ const _RT = "RefreshToken";
2471
2528
  const _RTD = "RedshiftTmpDir";
2472
2529
  const _RTe = "RedshiftTarget";
2473
2530
  const _RTed = "RedactText";
2531
+ const _RTef = "RefreshType";
2474
2532
  const _RTeq = "RequestTime";
2475
2533
  const _RTes = "ResourceType";
2476
2534
  const _RTo = "RowTag";
@@ -2657,6 +2715,12 @@ const _SMLLSGTRR = "StartMLLabelingSetGenerationTaskRunRequest";
2657
2715
  const _SMLLSGTRRt = "StartMLLabelingSetGenerationTaskRunResponse";
2658
2716
  const _SMR = "StatisticModelResult";
2659
2717
  const _SMRt = "StatisticModelResults";
2718
+ const _SMVRTR = "StartMaterializedViewRefreshTaskRun";
2719
+ const _SMVRTRR = "StartMaterializedViewRefreshTaskRunRequest";
2720
+ const _SMVRTRRt = "StartMaterializedViewRefreshTaskRunResponse";
2721
+ const _SMVRTRRto = "StopMaterializedViewRefreshTaskRunRequest";
2722
+ const _SMVRTRRtop = "StopMaterializedViewRefreshTaskRunResponse";
2723
+ const _SMVRTRt = "StopMaterializedViewRefreshTaskRun";
2660
2724
  const _SN = "SchemaName";
2661
2725
  const _SND = "SnowflakeNodeData";
2662
2726
  const _SNRE = "SchedulerNotRunningException";
@@ -5338,6 +5402,16 @@ var GetMappingResponse$ = [3, n0, _GMRe,
5338
5402
  [_Ma],
5339
5403
  [() => MappingList]
5340
5404
  ];
5405
+ var GetMaterializedViewRefreshTaskRunRequest$ = [3, n0, _GMVRTRR,
5406
+ 0,
5407
+ [_CI, _MVRTRI],
5408
+ [0, 0]
5409
+ ];
5410
+ var GetMaterializedViewRefreshTaskRunResponse$ = [3, n0, _GMVRTRRe,
5411
+ 0,
5412
+ [_MVRTR],
5413
+ [() => MaterializedViewRefreshTaskRun$]
5414
+ ];
5341
5415
  var GetMLTaskRunRequest$ = [3, n0, _GMLTRR,
5342
5416
  0,
5343
5417
  [_TIr, _TRI],
@@ -6252,6 +6326,16 @@ var ListJobsResponse$ = [3, n0, _LJRi,
6252
6326
  [_JNo, _NTe],
6253
6327
  [64 | 0, 0]
6254
6328
  ];
6329
+ var ListMaterializedViewRefreshTaskRunsRequest$ = [3, n0, _LMVRTRR,
6330
+ 0,
6331
+ [_CI, _DN, _TN, _MRax, _NTe],
6332
+ [0, 0, 0, 1, 0]
6333
+ ];
6334
+ var ListMaterializedViewRefreshTaskRunsResponse$ = [3, n0, _LMVRTRRi,
6335
+ 0,
6336
+ [_MVRTRa, _NTe],
6337
+ [() => MaterializedViewRefreshTaskRunsList, 0]
6338
+ ];
6255
6339
  var ListMLTransformsRequest$ = [3, n0, _LMLTR,
6256
6340
  0,
6257
6341
  [_NTe, _MRax, _Fi, _Sor, _Tag],
@@ -6372,6 +6456,29 @@ var MappingEntry$ = [3, n0, _ME,
6372
6456
  [_STo, _SPou, _ST, _TT, _TPar, _TTa],
6373
6457
  [0, 0, 0, 0, 0, 0]
6374
6458
  ];
6459
+ var MaterializedViewRefreshTaskNotRunningException$ = [-3, n0, _MVRTNRE,
6460
+ { [_e]: _c },
6461
+ [_M],
6462
+ [0]
6463
+ ];
6464
+ schema.TypeRegistry.for(n0).registerError(MaterializedViewRefreshTaskNotRunningException$, MaterializedViewRefreshTaskNotRunningException);
6465
+ var MaterializedViewRefreshTaskRun$ = [3, n0, _MVRTR,
6466
+ 0,
6467
+ [_CIu, _MVRTRI, _DN, _TN, _CI, _Rol, _St, _CTre, _LU, _STta, _ET, _EM, _DPUS, _RTef, _PB],
6468
+ [0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 1, 0, 1]
6469
+ ];
6470
+ var MaterializedViewRefreshTaskRunningException$ = [-3, n0, _MVRTRE,
6471
+ { [_e]: _c },
6472
+ [_M],
6473
+ [0]
6474
+ ];
6475
+ schema.TypeRegistry.for(n0).registerError(MaterializedViewRefreshTaskRunningException$, MaterializedViewRefreshTaskRunningException);
6476
+ var MaterializedViewRefreshTaskStoppingException$ = [-3, n0, _MVRTSE,
6477
+ { [_e]: _c },
6478
+ [_M],
6479
+ [0]
6480
+ ];
6481
+ schema.TypeRegistry.for(n0).registerError(MaterializedViewRefreshTaskStoppingException$, MaterializedViewRefreshTaskStoppingException);
6375
6482
  var Merge$ = [3, n0, _Me,
6376
6483
  0,
6377
6484
  [_N, _I, _So, _PKr],
@@ -7248,6 +7355,16 @@ var StartJobRunResponse$ = [3, n0, _SJRRt,
7248
7355
  [_JRI],
7249
7356
  [0]
7250
7357
  ];
7358
+ var StartMaterializedViewRefreshTaskRunRequest$ = [3, n0, _SMVRTRR,
7359
+ 0,
7360
+ [_CI, _DN, _TN, _FRu],
7361
+ [0, 0, 0, 2]
7362
+ ];
7363
+ var StartMaterializedViewRefreshTaskRunResponse$ = [3, n0, _SMVRTRRt,
7364
+ 0,
7365
+ [_MVRTRI],
7366
+ [0]
7367
+ ];
7251
7368
  var StartMLEvaluationTaskRunRequest$ = [3, n0, _SMLETRR,
7252
7369
  0,
7253
7370
  [_TIr],
@@ -7363,6 +7480,16 @@ var StopCrawlerScheduleResponse$ = [3, n0, _SCSRtop,
7363
7480
  [],
7364
7481
  []
7365
7482
  ];
7483
+ var StopMaterializedViewRefreshTaskRunRequest$ = [3, n0, _SMVRTRRto,
7484
+ 0,
7485
+ [_CI, _DN, _TN],
7486
+ [0, 0, 0]
7487
+ ];
7488
+ var StopMaterializedViewRefreshTaskRunResponse$ = [3, n0, _SMVRTRRtop,
7489
+ 0,
7490
+ [],
7491
+ []
7492
+ ];
7366
7493
  var StopSessionRequest$ = [3, n0, _SSR,
7367
7494
  0,
7368
7495
  [_Id, _RO],
@@ -8281,6 +8408,9 @@ var MappingList = [1, n0, _MLa,
8281
8408
  var Mappings = [1, n0, _Map,
8282
8409
  0, () => Mapping$
8283
8410
  ];
8411
+ var MaterializedViewRefreshTaskRunsList = [1, n0, _MVRTRL,
8412
+ 0, () => MaterializedViewRefreshTaskRun$
8413
+ ];
8284
8414
  var MetadataList = [1, n0, _MLe,
8285
8415
  0, () => MetadataKeyValuePair$
8286
8416
  ];
@@ -8858,6 +8988,9 @@ var GetJobs$ = [9, n0, _GJe,
8858
8988
  var GetMapping$ = [9, n0, _GM,
8859
8989
  0, () => GetMappingRequest$, () => GetMappingResponse$
8860
8990
  ];
8991
+ var GetMaterializedViewRefreshTaskRun$ = [9, n0, _GMVRTR,
8992
+ 0, () => GetMaterializedViewRefreshTaskRunRequest$, () => GetMaterializedViewRefreshTaskRunResponse$
8993
+ ];
8861
8994
  var GetMLTaskRun$ = [9, n0, _GMLTReta,
8862
8995
  0, () => GetMLTaskRunRequest$, () => GetMLTaskRunResponse$
8863
8996
  ];
@@ -9020,6 +9153,9 @@ var ListIntegrationResourceProperties$ = [9, n0, _LIRP,
9020
9153
  var ListJobs$ = [9, n0, _LJ,
9021
9154
  0, () => ListJobsRequest$, () => ListJobsResponse$
9022
9155
  ];
9156
+ var ListMaterializedViewRefreshTaskRuns$ = [9, n0, _LMVRTR,
9157
+ 0, () => ListMaterializedViewRefreshTaskRunsRequest$, () => ListMaterializedViewRefreshTaskRunsResponse$
9158
+ ];
9023
9159
  var ListMLTransforms$ = [9, n0, _LMLT,
9024
9160
  0, () => ListMLTransformsRequest$, () => ListMLTransformsResponse$
9025
9161
  ];
@@ -9119,6 +9255,9 @@ var StartImportLabelsTaskRun$ = [9, n0, _SILTR,
9119
9255
  var StartJobRun$ = [9, n0, _SJR,
9120
9256
  0, () => StartJobRunRequest$, () => StartJobRunResponse$
9121
9257
  ];
9258
+ var StartMaterializedViewRefreshTaskRun$ = [9, n0, _SMVRTR,
9259
+ 0, () => StartMaterializedViewRefreshTaskRunRequest$, () => StartMaterializedViewRefreshTaskRunResponse$
9260
+ ];
9122
9261
  var StartMLEvaluationTaskRun$ = [9, n0, _SMLETR,
9123
9262
  0, () => StartMLEvaluationTaskRunRequest$, () => StartMLEvaluationTaskRunResponse$
9124
9263
  ];
@@ -9143,6 +9282,9 @@ var StopCrawler$ = [9, n0, _SCto,
9143
9282
  var StopCrawlerSchedule$ = [9, n0, _SCSto,
9144
9283
  0, () => StopCrawlerScheduleRequest$, () => StopCrawlerScheduleResponse$
9145
9284
  ];
9285
+ var StopMaterializedViewRefreshTaskRun$ = [9, n0, _SMVRTRt,
9286
+ 0, () => StopMaterializedViewRefreshTaskRunRequest$, () => StopMaterializedViewRefreshTaskRunResponse$
9287
+ ];
9146
9288
  var StopSession$ = [9, n0, _SSto,
9147
9289
  0, () => StopSessionRequest$, () => StopSessionResponse$
9148
9290
  ];
@@ -10806,6 +10948,18 @@ class GetMappingCommand extends smithyClient.Command
10806
10948
  .build() {
10807
10949
  }
10808
10950
 
10951
+ class GetMaterializedViewRefreshTaskRunCommand extends smithyClient.Command
10952
+ .classBuilder()
10953
+ .ep(commonParams)
10954
+ .m(function (Command, cs, config, o) {
10955
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
10956
+ })
10957
+ .s("AWSGlue", "GetMaterializedViewRefreshTaskRun", {})
10958
+ .n("GlueClient", "GetMaterializedViewRefreshTaskRunCommand")
10959
+ .sc(GetMaterializedViewRefreshTaskRun$)
10960
+ .build() {
10961
+ }
10962
+
10809
10963
  class GetMLTaskRunCommand extends smithyClient.Command
10810
10964
  .classBuilder()
10811
10965
  .ep(commonParams)
@@ -11454,6 +11608,18 @@ class ListJobsCommand extends smithyClient.Command
11454
11608
  .build() {
11455
11609
  }
11456
11610
 
11611
+ class ListMaterializedViewRefreshTaskRunsCommand extends smithyClient.Command
11612
+ .classBuilder()
11613
+ .ep(commonParams)
11614
+ .m(function (Command, cs, config, o) {
11615
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11616
+ })
11617
+ .s("AWSGlue", "ListMaterializedViewRefreshTaskRuns", {})
11618
+ .n("GlueClient", "ListMaterializedViewRefreshTaskRunsCommand")
11619
+ .sc(ListMaterializedViewRefreshTaskRuns$)
11620
+ .build() {
11621
+ }
11622
+
11457
11623
  class ListMLTransformsCommand extends smithyClient.Command
11458
11624
  .classBuilder()
11459
11625
  .ep(commonParams)
@@ -11850,6 +12016,18 @@ class StartJobRunCommand extends smithyClient.Command
11850
12016
  .build() {
11851
12017
  }
11852
12018
 
12019
+ class StartMaterializedViewRefreshTaskRunCommand extends smithyClient.Command
12020
+ .classBuilder()
12021
+ .ep(commonParams)
12022
+ .m(function (Command, cs, config, o) {
12023
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
12024
+ })
12025
+ .s("AWSGlue", "StartMaterializedViewRefreshTaskRun", {})
12026
+ .n("GlueClient", "StartMaterializedViewRefreshTaskRunCommand")
12027
+ .sc(StartMaterializedViewRefreshTaskRun$)
12028
+ .build() {
12029
+ }
12030
+
11853
12031
  class StartMLEvaluationTaskRunCommand extends smithyClient.Command
11854
12032
  .classBuilder()
11855
12033
  .ep(commonParams)
@@ -11946,6 +12124,18 @@ class StopCrawlerScheduleCommand extends smithyClient.Command
11946
12124
  .build() {
11947
12125
  }
11948
12126
 
12127
+ class StopMaterializedViewRefreshTaskRunCommand extends smithyClient.Command
12128
+ .classBuilder()
12129
+ .ep(commonParams)
12130
+ .m(function (Command, cs, config, o) {
12131
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
12132
+ })
12133
+ .s("AWSGlue", "StopMaterializedViewRefreshTaskRun", {})
12134
+ .n("GlueClient", "StopMaterializedViewRefreshTaskRunCommand")
12135
+ .sc(StopMaterializedViewRefreshTaskRun$)
12136
+ .build() {
12137
+ }
12138
+
11949
12139
  class StopSessionCommand extends smithyClient.Command
11950
12140
  .classBuilder()
11951
12141
  .ep(commonParams)
@@ -12485,6 +12675,7 @@ const commands = {
12485
12675
  GetJobRunsCommand,
12486
12676
  GetJobsCommand,
12487
12677
  GetMappingCommand,
12678
+ GetMaterializedViewRefreshTaskRunCommand,
12488
12679
  GetMLTaskRunCommand,
12489
12680
  GetMLTaskRunsCommand,
12490
12681
  GetMLTransformCommand,
@@ -12539,6 +12730,7 @@ const commands = {
12539
12730
  ListEntitiesCommand,
12540
12731
  ListIntegrationResourcePropertiesCommand,
12541
12732
  ListJobsCommand,
12733
+ ListMaterializedViewRefreshTaskRunsCommand,
12542
12734
  ListMLTransformsCommand,
12543
12735
  ListRegistriesCommand,
12544
12736
  ListSchemasCommand,
@@ -12572,6 +12764,7 @@ const commands = {
12572
12764
  StartExportLabelsTaskRunCommand,
12573
12765
  StartImportLabelsTaskRunCommand,
12574
12766
  StartJobRunCommand,
12767
+ StartMaterializedViewRefreshTaskRunCommand,
12575
12768
  StartMLEvaluationTaskRunCommand,
12576
12769
  StartMLLabelingSetGenerationTaskRunCommand,
12577
12770
  StartTriggerCommand,
@@ -12580,6 +12773,7 @@ const commands = {
12580
12773
  StopColumnStatisticsTaskRunScheduleCommand,
12581
12774
  StopCrawlerCommand,
12582
12775
  StopCrawlerScheduleCommand,
12776
+ StopMaterializedViewRefreshTaskRunCommand,
12583
12777
  StopSessionCommand,
12584
12778
  StopTriggerCommand,
12585
12779
  StopWorkflowRunCommand,
@@ -12689,6 +12883,8 @@ const paginateListEntities = core.createPaginator(GlueClient, ListEntitiesComman
12689
12883
 
12690
12884
  const paginateListJobs = core.createPaginator(GlueClient, ListJobsCommand, "NextToken", "NextToken", "MaxResults");
12691
12885
 
12886
+ const paginateListMaterializedViewRefreshTaskRuns = core.createPaginator(GlueClient, ListMaterializedViewRefreshTaskRunsCommand, "NextToken", "NextToken", "MaxResults");
12887
+
12692
12888
  const paginateListMLTransforms = core.createPaginator(GlueClient, ListMLTransformsCommand, "NextToken", "NextToken", "MaxResults");
12693
12889
 
12694
12890
  const paginateListRegistries = core.createPaginator(GlueClient, ListRegistriesCommand, "NextToken", "NextToken", "MaxResults");
@@ -13503,6 +13699,17 @@ const DQCompositeRuleEvaluationMethod = {
13503
13699
  COLUMN: "COLUMN",
13504
13700
  ROW: "ROW",
13505
13701
  };
13702
+ const MaterializedViewRefreshType = {
13703
+ FULL: "FULL",
13704
+ INCREMENTAL: "INCREMENTAL",
13705
+ };
13706
+ const MaterializedViewRefreshState = {
13707
+ FAILED: "FAILED",
13708
+ RUNNING: "RUNNING",
13709
+ STARTING: "STARTING",
13710
+ STOPPED: "STOPPED",
13711
+ SUCCEEDED: "SUCCEEDED",
13712
+ };
13506
13713
  const TaskType = {
13507
13714
  EVALUATION: "EVALUATION",
13508
13715
  EXPORT_LABELS: "EXPORT_LABELS",
@@ -14437,6 +14644,10 @@ exports.GetMapping$ = GetMapping$;
14437
14644
  exports.GetMappingCommand = GetMappingCommand;
14438
14645
  exports.GetMappingRequest$ = GetMappingRequest$;
14439
14646
  exports.GetMappingResponse$ = GetMappingResponse$;
14647
+ exports.GetMaterializedViewRefreshTaskRun$ = GetMaterializedViewRefreshTaskRun$;
14648
+ exports.GetMaterializedViewRefreshTaskRunCommand = GetMaterializedViewRefreshTaskRunCommand;
14649
+ exports.GetMaterializedViewRefreshTaskRunRequest$ = GetMaterializedViewRefreshTaskRunRequest$;
14650
+ exports.GetMaterializedViewRefreshTaskRunResponse$ = GetMaterializedViewRefreshTaskRunResponse$;
14440
14651
  exports.GetPartition$ = GetPartition$;
14441
14652
  exports.GetPartitionCommand = GetPartitionCommand;
14442
14653
  exports.GetPartitionIndexes$ = GetPartitionIndexes$;
@@ -14751,6 +14962,10 @@ exports.ListMLTransforms$ = ListMLTransforms$;
14751
14962
  exports.ListMLTransformsCommand = ListMLTransformsCommand;
14752
14963
  exports.ListMLTransformsRequest$ = ListMLTransformsRequest$;
14753
14964
  exports.ListMLTransformsResponse$ = ListMLTransformsResponse$;
14965
+ exports.ListMaterializedViewRefreshTaskRuns$ = ListMaterializedViewRefreshTaskRuns$;
14966
+ exports.ListMaterializedViewRefreshTaskRunsCommand = ListMaterializedViewRefreshTaskRunsCommand;
14967
+ exports.ListMaterializedViewRefreshTaskRunsRequest$ = ListMaterializedViewRefreshTaskRunsRequest$;
14968
+ exports.ListMaterializedViewRefreshTaskRunsResponse$ = ListMaterializedViewRefreshTaskRunsResponse$;
14754
14969
  exports.ListRegistries$ = ListRegistries$;
14755
14970
  exports.ListRegistriesCommand = ListRegistriesCommand;
14756
14971
  exports.ListRegistriesInput$ = ListRegistriesInput$;
@@ -14798,6 +15013,15 @@ exports.MLUserDataEncryption$ = MLUserDataEncryption$;
14798
15013
  exports.MLUserDataEncryptionModeString = MLUserDataEncryptionModeString;
14799
15014
  exports.Mapping$ = Mapping$;
14800
15015
  exports.MappingEntry$ = MappingEntry$;
15016
+ exports.MaterializedViewRefreshState = MaterializedViewRefreshState;
15017
+ exports.MaterializedViewRefreshTaskNotRunningException = MaterializedViewRefreshTaskNotRunningException;
15018
+ exports.MaterializedViewRefreshTaskNotRunningException$ = MaterializedViewRefreshTaskNotRunningException$;
15019
+ exports.MaterializedViewRefreshTaskRun$ = MaterializedViewRefreshTaskRun$;
15020
+ exports.MaterializedViewRefreshTaskRunningException = MaterializedViewRefreshTaskRunningException;
15021
+ exports.MaterializedViewRefreshTaskRunningException$ = MaterializedViewRefreshTaskRunningException$;
15022
+ exports.MaterializedViewRefreshTaskStoppingException = MaterializedViewRefreshTaskStoppingException;
15023
+ exports.MaterializedViewRefreshTaskStoppingException$ = MaterializedViewRefreshTaskStoppingException$;
15024
+ exports.MaterializedViewRefreshType = MaterializedViewRefreshType;
14801
15025
  exports.Merge$ = Merge$;
14802
15026
  exports.MetadataInfo$ = MetadataInfo$;
14803
15027
  exports.MetadataKeyValuePair$ = MetadataKeyValuePair$;
@@ -15062,6 +15286,10 @@ exports.StartMLLabelingSetGenerationTaskRun$ = StartMLLabelingSetGenerationTaskR
15062
15286
  exports.StartMLLabelingSetGenerationTaskRunCommand = StartMLLabelingSetGenerationTaskRunCommand;
15063
15287
  exports.StartMLLabelingSetGenerationTaskRunRequest$ = StartMLLabelingSetGenerationTaskRunRequest$;
15064
15288
  exports.StartMLLabelingSetGenerationTaskRunResponse$ = StartMLLabelingSetGenerationTaskRunResponse$;
15289
+ exports.StartMaterializedViewRefreshTaskRun$ = StartMaterializedViewRefreshTaskRun$;
15290
+ exports.StartMaterializedViewRefreshTaskRunCommand = StartMaterializedViewRefreshTaskRunCommand;
15291
+ exports.StartMaterializedViewRefreshTaskRunRequest$ = StartMaterializedViewRefreshTaskRunRequest$;
15292
+ exports.StartMaterializedViewRefreshTaskRunResponse$ = StartMaterializedViewRefreshTaskRunResponse$;
15065
15293
  exports.StartTrigger$ = StartTrigger$;
15066
15294
  exports.StartTriggerCommand = StartTriggerCommand;
15067
15295
  exports.StartTriggerRequest$ = StartTriggerRequest$;
@@ -15097,6 +15325,10 @@ exports.StopCrawlerSchedule$ = StopCrawlerSchedule$;
15097
15325
  exports.StopCrawlerScheduleCommand = StopCrawlerScheduleCommand;
15098
15326
  exports.StopCrawlerScheduleRequest$ = StopCrawlerScheduleRequest$;
15099
15327
  exports.StopCrawlerScheduleResponse$ = StopCrawlerScheduleResponse$;
15328
+ exports.StopMaterializedViewRefreshTaskRun$ = StopMaterializedViewRefreshTaskRun$;
15329
+ exports.StopMaterializedViewRefreshTaskRunCommand = StopMaterializedViewRefreshTaskRunCommand;
15330
+ exports.StopMaterializedViewRefreshTaskRunRequest$ = StopMaterializedViewRefreshTaskRunRequest$;
15331
+ exports.StopMaterializedViewRefreshTaskRunResponse$ = StopMaterializedViewRefreshTaskRunResponse$;
15100
15332
  exports.StopSession$ = StopSession$;
15101
15333
  exports.StopSessionCommand = StopSessionCommand;
15102
15334
  exports.StopSessionRequest$ = StopSessionRequest$;
@@ -15354,6 +15586,7 @@ exports.paginateListDevEndpoints = paginateListDevEndpoints;
15354
15586
  exports.paginateListEntities = paginateListEntities;
15355
15587
  exports.paginateListJobs = paginateListJobs;
15356
15588
  exports.paginateListMLTransforms = paginateListMLTransforms;
15589
+ exports.paginateListMaterializedViewRefreshTaskRuns = paginateListMaterializedViewRefreshTaskRuns;
15357
15590
  exports.paginateListRegistries = paginateListRegistries;
15358
15591
  exports.paginateListSchemaVersions = paginateListSchemaVersions;
15359
15592
  exports.paginateListSchemas = paginateListSchemas;
package/dist-es/Glue.js CHANGED
@@ -129,6 +129,7 @@ import { GetJobRunCommand } from "./commands/GetJobRunCommand";
129
129
  import { GetJobRunsCommand } from "./commands/GetJobRunsCommand";
130
130
  import { GetJobsCommand } from "./commands/GetJobsCommand";
131
131
  import { GetMappingCommand } from "./commands/GetMappingCommand";
132
+ import { GetMaterializedViewRefreshTaskRunCommand, } from "./commands/GetMaterializedViewRefreshTaskRunCommand";
132
133
  import { GetMLTaskRunCommand, } from "./commands/GetMLTaskRunCommand";
133
134
  import { GetMLTaskRunsCommand, } from "./commands/GetMLTaskRunsCommand";
134
135
  import { GetMLTransformCommand, } from "./commands/GetMLTransformCommand";
@@ -183,6 +184,7 @@ import { ListDevEndpointsCommand, } from "./commands/ListDevEndpointsCommand";
183
184
  import { ListEntitiesCommand, } from "./commands/ListEntitiesCommand";
184
185
  import { ListIntegrationResourcePropertiesCommand, } from "./commands/ListIntegrationResourcePropertiesCommand";
185
186
  import { ListJobsCommand } from "./commands/ListJobsCommand";
187
+ import { ListMaterializedViewRefreshTaskRunsCommand, } from "./commands/ListMaterializedViewRefreshTaskRunsCommand";
186
188
  import { ListMLTransformsCommand, } from "./commands/ListMLTransformsCommand";
187
189
  import { ListRegistriesCommand, } from "./commands/ListRegistriesCommand";
188
190
  import { ListSchemasCommand } from "./commands/ListSchemasCommand";
@@ -216,6 +218,7 @@ import { StartDataQualityRulesetEvaluationRunCommand, } from "./commands/StartDa
216
218
  import { StartExportLabelsTaskRunCommand, } from "./commands/StartExportLabelsTaskRunCommand";
217
219
  import { StartImportLabelsTaskRunCommand, } from "./commands/StartImportLabelsTaskRunCommand";
218
220
  import { StartJobRunCommand } from "./commands/StartJobRunCommand";
221
+ import { StartMaterializedViewRefreshTaskRunCommand, } from "./commands/StartMaterializedViewRefreshTaskRunCommand";
219
222
  import { StartMLEvaluationTaskRunCommand, } from "./commands/StartMLEvaluationTaskRunCommand";
220
223
  import { StartMLLabelingSetGenerationTaskRunCommand, } from "./commands/StartMLLabelingSetGenerationTaskRunCommand";
221
224
  import { StartTriggerCommand, } from "./commands/StartTriggerCommand";
@@ -224,6 +227,7 @@ import { StopColumnStatisticsTaskRunCommand, } from "./commands/StopColumnStatis
224
227
  import { StopColumnStatisticsTaskRunScheduleCommand, } from "./commands/StopColumnStatisticsTaskRunScheduleCommand";
225
228
  import { StopCrawlerCommand } from "./commands/StopCrawlerCommand";
226
229
  import { StopCrawlerScheduleCommand, } from "./commands/StopCrawlerScheduleCommand";
230
+ import { StopMaterializedViewRefreshTaskRunCommand, } from "./commands/StopMaterializedViewRefreshTaskRunCommand";
227
231
  import { StopSessionCommand } from "./commands/StopSessionCommand";
228
232
  import { StopTriggerCommand } from "./commands/StopTriggerCommand";
229
233
  import { StopWorkflowRunCommand, } from "./commands/StopWorkflowRunCommand";
@@ -390,6 +394,7 @@ const commands = {
390
394
  GetJobRunsCommand,
391
395
  GetJobsCommand,
392
396
  GetMappingCommand,
397
+ GetMaterializedViewRefreshTaskRunCommand,
393
398
  GetMLTaskRunCommand,
394
399
  GetMLTaskRunsCommand,
395
400
  GetMLTransformCommand,
@@ -444,6 +449,7 @@ const commands = {
444
449
  ListEntitiesCommand,
445
450
  ListIntegrationResourcePropertiesCommand,
446
451
  ListJobsCommand,
452
+ ListMaterializedViewRefreshTaskRunsCommand,
447
453
  ListMLTransformsCommand,
448
454
  ListRegistriesCommand,
449
455
  ListSchemasCommand,
@@ -477,6 +483,7 @@ const commands = {
477
483
  StartExportLabelsTaskRunCommand,
478
484
  StartImportLabelsTaskRunCommand,
479
485
  StartJobRunCommand,
486
+ StartMaterializedViewRefreshTaskRunCommand,
480
487
  StartMLEvaluationTaskRunCommand,
481
488
  StartMLLabelingSetGenerationTaskRunCommand,
482
489
  StartTriggerCommand,
@@ -485,6 +492,7 @@ const commands = {
485
492
  StopColumnStatisticsTaskRunScheduleCommand,
486
493
  StopCrawlerCommand,
487
494
  StopCrawlerScheduleCommand,
495
+ StopMaterializedViewRefreshTaskRunCommand,
488
496
  StopSessionCommand,
489
497
  StopTriggerCommand,
490
498
  StopWorkflowRunCommand,
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetMaterializedViewRefreshTaskRun$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class GetMaterializedViewRefreshTaskRunCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("AWSGlue", "GetMaterializedViewRefreshTaskRun", {})
13
+ .n("GlueClient", "GetMaterializedViewRefreshTaskRunCommand")
14
+ .sc(GetMaterializedViewRefreshTaskRun$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListMaterializedViewRefreshTaskRuns$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class ListMaterializedViewRefreshTaskRunsCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("AWSGlue", "ListMaterializedViewRefreshTaskRuns", {})
13
+ .n("GlueClient", "ListMaterializedViewRefreshTaskRunsCommand")
14
+ .sc(ListMaterializedViewRefreshTaskRuns$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { StartMaterializedViewRefreshTaskRun$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class StartMaterializedViewRefreshTaskRunCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("AWSGlue", "StartMaterializedViewRefreshTaskRun", {})
13
+ .n("GlueClient", "StartMaterializedViewRefreshTaskRunCommand")
14
+ .sc(StartMaterializedViewRefreshTaskRun$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { StopMaterializedViewRefreshTaskRun$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class StopMaterializedViewRefreshTaskRunCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("AWSGlue", "StopMaterializedViewRefreshTaskRun", {})
13
+ .n("GlueClient", "StopMaterializedViewRefreshTaskRunCommand")
14
+ .sc(StopMaterializedViewRefreshTaskRun$)
15
+ .build() {
16
+ }