@aws-sdk/client-glue 3.271.0 → 3.274.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 (43) hide show
  1. package/dist-cjs/commands/CreateSchemaCommand.js +2 -1
  2. package/dist-cjs/commands/CreateScriptCommand.js +1 -2
  3. package/dist-cjs/commands/ListBlueprintsCommand.js +3 -3
  4. package/dist-cjs/commands/ListCrawlersCommand.js +3 -3
  5. package/dist-cjs/commands/ListCrawlsCommand.js +1 -2
  6. package/dist-cjs/endpoint/ruleset.js +3 -3
  7. package/dist-cjs/models/models_0.js +44 -44
  8. package/dist-cjs/models/models_1.js +44 -47
  9. package/dist-cjs/models/models_2.js +45 -4
  10. package/dist-cjs/protocols/Aws_json1_1.js +200 -0
  11. package/dist-es/commands/CreateSchemaCommand.js +2 -1
  12. package/dist-es/commands/CreateScriptCommand.js +1 -2
  13. package/dist-es/commands/ListBlueprintsCommand.js +1 -1
  14. package/dist-es/commands/ListCrawlersCommand.js +1 -1
  15. package/dist-es/commands/ListCrawlsCommand.js +1 -2
  16. package/dist-es/endpoint/ruleset.js +3 -3
  17. package/dist-es/models/models_0.js +32 -33
  18. package/dist-es/models/models_1.js +33 -35
  19. package/dist-es/models/models_2.js +35 -0
  20. package/dist-es/protocols/Aws_json1_1.js +200 -0
  21. package/dist-types/Glue.d.ts +15 -0
  22. package/dist-types/commands/CreateSchemaCommand.d.ts +2 -1
  23. package/dist-types/commands/CreateScriptCommand.d.ts +1 -2
  24. package/dist-types/commands/GetUnfilteredPartitionMetadataCommand.d.ts +19 -0
  25. package/dist-types/commands/GetUnfilteredPartitionsMetadataCommand.d.ts +19 -0
  26. package/dist-types/commands/GetUnfilteredTableMetadataCommand.d.ts +19 -0
  27. package/dist-types/commands/ListBlueprintsCommand.d.ts +1 -1
  28. package/dist-types/commands/ListCrawlersCommand.d.ts +1 -1
  29. package/dist-types/commands/ListCrawlsCommand.d.ts +1 -2
  30. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  31. package/dist-types/models/models_0.d.ts +274 -165
  32. package/dist-types/models/models_1.d.ts +400 -183
  33. package/dist-types/models/models_2.d.ts +194 -3
  34. package/dist-types/ts3.4/commands/CreateSchemaCommand.d.ts +2 -1
  35. package/dist-types/ts3.4/commands/CreateScriptCommand.d.ts +1 -2
  36. package/dist-types/ts3.4/commands/ListBlueprintsCommand.d.ts +1 -1
  37. package/dist-types/ts3.4/commands/ListCrawlersCommand.d.ts +1 -1
  38. package/dist-types/ts3.4/commands/ListCrawlsCommand.d.ts +1 -2
  39. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  40. package/dist-types/ts3.4/models/models_0.d.ts +78 -63
  41. package/dist-types/ts3.4/models/models_1.d.ts +63 -66
  42. package/dist-types/ts3.4/models/models_2.d.ts +74 -2
  43. package/package.json +29 -29
@@ -11618,6 +11618,19 @@ const serializeAws_json1_1CancelStatementRequest = (input, context) => {
11618
11618
  ...(input.SessionId != null && { SessionId: input.SessionId }),
11619
11619
  };
11620
11620
  };
11621
+ const serializeAws_json1_1CatalogDeltaSource = (input, context) => {
11622
+ return {
11623
+ ...(input.AdditionalDeltaOptions != null && {
11624
+ AdditionalDeltaOptions: serializeAws_json1_1AdditionalOptions(input.AdditionalDeltaOptions, context),
11625
+ }),
11626
+ ...(input.Database != null && { Database: input.Database }),
11627
+ ...(input.Name != null && { Name: input.Name }),
11628
+ ...(input.OutputSchemas != null && {
11629
+ OutputSchemas: serializeAws_json1_1GlueSchemas(input.OutputSchemas, context),
11630
+ }),
11631
+ ...(input.Table != null && { Table: input.Table }),
11632
+ };
11633
+ };
11621
11634
  const serializeAws_json1_1CatalogEntries = (input, context) => {
11622
11635
  return input
11623
11636
  .filter((e) => e != null)
@@ -11736,6 +11749,9 @@ const serializeAws_json1_1CodeGenConfigurationNode = (input, context) => {
11736
11749
  ...(input.AthenaConnectorSource != null && {
11737
11750
  AthenaConnectorSource: serializeAws_json1_1AthenaConnectorSource(input.AthenaConnectorSource, context),
11738
11751
  }),
11752
+ ...(input.CatalogDeltaSource != null && {
11753
+ CatalogDeltaSource: serializeAws_json1_1CatalogDeltaSource(input.CatalogDeltaSource, context),
11754
+ }),
11739
11755
  ...(input.CatalogHudiSource != null && {
11740
11756
  CatalogHudiSource: serializeAws_json1_1CatalogHudiSource(input.CatalogHudiSource, context),
11741
11757
  }),
@@ -11752,6 +11768,9 @@ const serializeAws_json1_1CodeGenConfigurationNode = (input, context) => {
11752
11768
  CatalogTarget: serializeAws_json1_1BasicCatalogTarget(input.CatalogTarget, context),
11753
11769
  }),
11754
11770
  ...(input.CustomCode != null && { CustomCode: serializeAws_json1_1CustomCode(input.CustomCode, context) }),
11771
+ ...(input.DirectJDBCSource != null && {
11772
+ DirectJDBCSource: serializeAws_json1_1DirectJDBCSource(input.DirectJDBCSource, context),
11773
+ }),
11755
11774
  ...(input.DirectKafkaSource != null && {
11756
11775
  DirectKafkaSource: serializeAws_json1_1DirectKafkaSource(input.DirectKafkaSource, context),
11757
11776
  }),
@@ -11827,6 +11846,9 @@ const serializeAws_json1_1CodeGenConfigurationNode = (input, context) => {
11827
11846
  RelationalCatalogSource: serializeAws_json1_1RelationalCatalogSource(input.RelationalCatalogSource, context),
11828
11847
  }),
11829
11848
  ...(input.RenameField != null && { RenameField: serializeAws_json1_1RenameField(input.RenameField, context) }),
11849
+ ...(input.S3CatalogDeltaSource != null && {
11850
+ S3CatalogDeltaSource: serializeAws_json1_1S3CatalogDeltaSource(input.S3CatalogDeltaSource, context),
11851
+ }),
11830
11852
  ...(input.S3CatalogHudiSource != null && {
11831
11853
  S3CatalogHudiSource: serializeAws_json1_1S3CatalogHudiSource(input.S3CatalogHudiSource, context),
11832
11854
  }),
@@ -11837,6 +11859,15 @@ const serializeAws_json1_1CodeGenConfigurationNode = (input, context) => {
11837
11859
  S3CatalogTarget: serializeAws_json1_1S3CatalogTarget(input.S3CatalogTarget, context),
11838
11860
  }),
11839
11861
  ...(input.S3CsvSource != null && { S3CsvSource: serializeAws_json1_1S3CsvSource(input.S3CsvSource, context) }),
11862
+ ...(input.S3DeltaCatalogTarget != null && {
11863
+ S3DeltaCatalogTarget: serializeAws_json1_1S3DeltaCatalogTarget(input.S3DeltaCatalogTarget, context),
11864
+ }),
11865
+ ...(input.S3DeltaDirectTarget != null && {
11866
+ S3DeltaDirectTarget: serializeAws_json1_1S3DeltaDirectTarget(input.S3DeltaDirectTarget, context),
11867
+ }),
11868
+ ...(input.S3DeltaSource != null && {
11869
+ S3DeltaSource: serializeAws_json1_1S3DeltaSource(input.S3DeltaSource, context),
11870
+ }),
11840
11871
  ...(input.S3DirectTarget != null && {
11841
11872
  S3DirectTarget: serializeAws_json1_1S3DirectTarget(input.S3DirectTarget, context),
11842
11873
  }),
@@ -12760,6 +12791,16 @@ const serializeAws_json1_1DevEndpointNames = (input, context) => {
12760
12791
  return entry;
12761
12792
  });
12762
12793
  };
12794
+ const serializeAws_json1_1DirectJDBCSource = (input, context) => {
12795
+ return {
12796
+ ...(input.ConnectionName != null && { ConnectionName: input.ConnectionName }),
12797
+ ...(input.ConnectionType != null && { ConnectionType: input.ConnectionType }),
12798
+ ...(input.Database != null && { Database: input.Database }),
12799
+ ...(input.Name != null && { Name: input.Name }),
12800
+ ...(input.RedshiftTmpDir != null && { RedshiftTmpDir: input.RedshiftTmpDir }),
12801
+ ...(input.Table != null && { Table: input.Table }),
12802
+ };
12803
+ };
12763
12804
  const serializeAws_json1_1DirectKafkaSource = (input, context) => {
12764
12805
  return {
12765
12806
  ...(input.DataPreviewOptions != null && {
@@ -14496,6 +14537,19 @@ const serializeAws_json1_1RunStatementRequest = (input, context) => {
14496
14537
  ...(input.SessionId != null && { SessionId: input.SessionId }),
14497
14538
  };
14498
14539
  };
14540
+ const serializeAws_json1_1S3CatalogDeltaSource = (input, context) => {
14541
+ return {
14542
+ ...(input.AdditionalDeltaOptions != null && {
14543
+ AdditionalDeltaOptions: serializeAws_json1_1AdditionalOptions(input.AdditionalDeltaOptions, context),
14544
+ }),
14545
+ ...(input.Database != null && { Database: input.Database }),
14546
+ ...(input.Name != null && { Name: input.Name }),
14547
+ ...(input.OutputSchemas != null && {
14548
+ OutputSchemas: serializeAws_json1_1GlueSchemas(input.OutputSchemas, context),
14549
+ }),
14550
+ ...(input.Table != null && { Table: input.Table }),
14551
+ };
14552
+ };
14499
14553
  const serializeAws_json1_1S3CatalogHudiSource = (input, context) => {
14500
14554
  return {
14501
14555
  ...(input.AdditionalHudiOptions != null && {
@@ -14563,6 +14617,56 @@ const serializeAws_json1_1S3CsvSource = (input, context) => {
14563
14617
  ...(input.WriteHeader != null && { WriteHeader: input.WriteHeader }),
14564
14618
  };
14565
14619
  };
14620
+ const serializeAws_json1_1S3DeltaCatalogTarget = (input, context) => {
14621
+ return {
14622
+ ...(input.AdditionalOptions != null && {
14623
+ AdditionalOptions: serializeAws_json1_1AdditionalOptions(input.AdditionalOptions, context),
14624
+ }),
14625
+ ...(input.Database != null && { Database: input.Database }),
14626
+ ...(input.Inputs != null && { Inputs: serializeAws_json1_1OneInput(input.Inputs, context) }),
14627
+ ...(input.Name != null && { Name: input.Name }),
14628
+ ...(input.PartitionKeys != null && {
14629
+ PartitionKeys: serializeAws_json1_1GlueStudioPathList(input.PartitionKeys, context),
14630
+ }),
14631
+ ...(input.SchemaChangePolicy != null && {
14632
+ SchemaChangePolicy: serializeAws_json1_1CatalogSchemaChangePolicy(input.SchemaChangePolicy, context),
14633
+ }),
14634
+ ...(input.Table != null && { Table: input.Table }),
14635
+ };
14636
+ };
14637
+ const serializeAws_json1_1S3DeltaDirectTarget = (input, context) => {
14638
+ return {
14639
+ ...(input.AdditionalOptions != null && {
14640
+ AdditionalOptions: serializeAws_json1_1AdditionalOptions(input.AdditionalOptions, context),
14641
+ }),
14642
+ ...(input.Compression != null && { Compression: input.Compression }),
14643
+ ...(input.Format != null && { Format: input.Format }),
14644
+ ...(input.Inputs != null && { Inputs: serializeAws_json1_1OneInput(input.Inputs, context) }),
14645
+ ...(input.Name != null && { Name: input.Name }),
14646
+ ...(input.PartitionKeys != null && {
14647
+ PartitionKeys: serializeAws_json1_1GlueStudioPathList(input.PartitionKeys, context),
14648
+ }),
14649
+ ...(input.Path != null && { Path: input.Path }),
14650
+ ...(input.SchemaChangePolicy != null && {
14651
+ SchemaChangePolicy: serializeAws_json1_1DirectSchemaChangePolicy(input.SchemaChangePolicy, context),
14652
+ }),
14653
+ };
14654
+ };
14655
+ const serializeAws_json1_1S3DeltaSource = (input, context) => {
14656
+ return {
14657
+ ...(input.AdditionalDeltaOptions != null && {
14658
+ AdditionalDeltaOptions: serializeAws_json1_1AdditionalOptions(input.AdditionalDeltaOptions, context),
14659
+ }),
14660
+ ...(input.AdditionalOptions != null && {
14661
+ AdditionalOptions: serializeAws_json1_1S3DirectSourceAdditionalOptions(input.AdditionalOptions, context),
14662
+ }),
14663
+ ...(input.Name != null && { Name: input.Name }),
14664
+ ...(input.OutputSchemas != null && {
14665
+ OutputSchemas: serializeAws_json1_1GlueSchemas(input.OutputSchemas, context),
14666
+ }),
14667
+ ...(input.Paths != null && { Paths: serializeAws_json1_1EnclosedInStringProperties(input.Paths, context) }),
14668
+ };
14669
+ };
14566
14670
  const serializeAws_json1_1S3DirectSourceAdditionalOptions = (input, context) => {
14567
14671
  return {
14568
14672
  ...(input.BoundedFiles != null && { BoundedFiles: input.BoundedFiles }),
@@ -15999,6 +16103,17 @@ const deserializeAws_json1_1CancelMLTaskRunResponse = (output, context) => {
15999
16103
  const deserializeAws_json1_1CancelStatementResponse = (output, context) => {
16000
16104
  return {};
16001
16105
  };
16106
+ const deserializeAws_json1_1CatalogDeltaSource = (output, context) => {
16107
+ return {
16108
+ AdditionalDeltaOptions: output.AdditionalDeltaOptions != null
16109
+ ? deserializeAws_json1_1AdditionalOptions(output.AdditionalDeltaOptions, context)
16110
+ : undefined,
16111
+ Database: (0, smithy_client_1.expectString)(output.Database),
16112
+ Name: (0, smithy_client_1.expectString)(output.Name),
16113
+ OutputSchemas: output.OutputSchemas != null ? deserializeAws_json1_1GlueSchemas(output.OutputSchemas, context) : undefined,
16114
+ Table: (0, smithy_client_1.expectString)(output.Table),
16115
+ };
16116
+ };
16002
16117
  const deserializeAws_json1_1CatalogHudiSource = (output, context) => {
16003
16118
  return {
16004
16119
  AdditionalHudiOptions: output.AdditionalHudiOptions != null
@@ -16140,6 +16255,9 @@ const deserializeAws_json1_1CodeGenConfigurationNode = (output, context) => {
16140
16255
  AthenaConnectorSource: output.AthenaConnectorSource != null
16141
16256
  ? deserializeAws_json1_1AthenaConnectorSource(output.AthenaConnectorSource, context)
16142
16257
  : undefined,
16258
+ CatalogDeltaSource: output.CatalogDeltaSource != null
16259
+ ? deserializeAws_json1_1CatalogDeltaSource(output.CatalogDeltaSource, context)
16260
+ : undefined,
16143
16261
  CatalogHudiSource: output.CatalogHudiSource != null
16144
16262
  ? deserializeAws_json1_1CatalogHudiSource(output.CatalogHudiSource, context)
16145
16263
  : undefined,
@@ -16154,6 +16272,9 @@ const deserializeAws_json1_1CodeGenConfigurationNode = (output, context) => {
16154
16272
  ? deserializeAws_json1_1BasicCatalogTarget(output.CatalogTarget, context)
16155
16273
  : undefined,
16156
16274
  CustomCode: output.CustomCode != null ? deserializeAws_json1_1CustomCode(output.CustomCode, context) : undefined,
16275
+ DirectJDBCSource: output.DirectJDBCSource != null
16276
+ ? deserializeAws_json1_1DirectJDBCSource(output.DirectJDBCSource, context)
16277
+ : undefined,
16157
16278
  DirectKafkaSource: output.DirectKafkaSource != null
16158
16279
  ? deserializeAws_json1_1DirectKafkaSource(output.DirectKafkaSource, context)
16159
16280
  : undefined,
@@ -16221,6 +16342,9 @@ const deserializeAws_json1_1CodeGenConfigurationNode = (output, context) => {
16221
16342
  ? deserializeAws_json1_1RelationalCatalogSource(output.RelationalCatalogSource, context)
16222
16343
  : undefined,
16223
16344
  RenameField: output.RenameField != null ? deserializeAws_json1_1RenameField(output.RenameField, context) : undefined,
16345
+ S3CatalogDeltaSource: output.S3CatalogDeltaSource != null
16346
+ ? deserializeAws_json1_1S3CatalogDeltaSource(output.S3CatalogDeltaSource, context)
16347
+ : undefined,
16224
16348
  S3CatalogHudiSource: output.S3CatalogHudiSource != null
16225
16349
  ? deserializeAws_json1_1S3CatalogHudiSource(output.S3CatalogHudiSource, context)
16226
16350
  : undefined,
@@ -16231,6 +16355,13 @@ const deserializeAws_json1_1CodeGenConfigurationNode = (output, context) => {
16231
16355
  ? deserializeAws_json1_1S3CatalogTarget(output.S3CatalogTarget, context)
16232
16356
  : undefined,
16233
16357
  S3CsvSource: output.S3CsvSource != null ? deserializeAws_json1_1S3CsvSource(output.S3CsvSource, context) : undefined,
16358
+ S3DeltaCatalogTarget: output.S3DeltaCatalogTarget != null
16359
+ ? deserializeAws_json1_1S3DeltaCatalogTarget(output.S3DeltaCatalogTarget, context)
16360
+ : undefined,
16361
+ S3DeltaDirectTarget: output.S3DeltaDirectTarget != null
16362
+ ? deserializeAws_json1_1S3DeltaDirectTarget(output.S3DeltaDirectTarget, context)
16363
+ : undefined,
16364
+ S3DeltaSource: output.S3DeltaSource != null ? deserializeAws_json1_1S3DeltaSource(output.S3DeltaSource, context) : undefined,
16234
16365
  S3DirectTarget: output.S3DirectTarget != null ? deserializeAws_json1_1S3DirectTarget(output.S3DirectTarget, context) : undefined,
16235
16366
  S3GlueParquetTarget: output.S3GlueParquetTarget != null
16236
16367
  ? deserializeAws_json1_1S3GlueParquetTarget(output.S3GlueParquetTarget, context)
@@ -17400,6 +17531,16 @@ const deserializeAws_json1_1DevEndpointNames = (output, context) => {
17400
17531
  });
17401
17532
  return retVal;
17402
17533
  };
17534
+ const deserializeAws_json1_1DirectJDBCSource = (output, context) => {
17535
+ return {
17536
+ ConnectionName: (0, smithy_client_1.expectString)(output.ConnectionName),
17537
+ ConnectionType: (0, smithy_client_1.expectString)(output.ConnectionType),
17538
+ Database: (0, smithy_client_1.expectString)(output.Database),
17539
+ Name: (0, smithy_client_1.expectString)(output.Name),
17540
+ RedshiftTmpDir: (0, smithy_client_1.expectString)(output.RedshiftTmpDir),
17541
+ Table: (0, smithy_client_1.expectString)(output.Table),
17542
+ };
17543
+ };
17403
17544
  const deserializeAws_json1_1DirectKafkaSource = (output, context) => {
17404
17545
  return {
17405
17546
  DataPreviewOptions: output.DataPreviewOptions != null
@@ -19693,6 +19834,17 @@ const deserializeAws_json1_1RunStatementResponse = (output, context) => {
19693
19834
  Id: (0, smithy_client_1.expectInt32)(output.Id),
19694
19835
  };
19695
19836
  };
19837
+ const deserializeAws_json1_1S3CatalogDeltaSource = (output, context) => {
19838
+ return {
19839
+ AdditionalDeltaOptions: output.AdditionalDeltaOptions != null
19840
+ ? deserializeAws_json1_1AdditionalOptions(output.AdditionalDeltaOptions, context)
19841
+ : undefined,
19842
+ Database: (0, smithy_client_1.expectString)(output.Database),
19843
+ Name: (0, smithy_client_1.expectString)(output.Name),
19844
+ OutputSchemas: output.OutputSchemas != null ? deserializeAws_json1_1GlueSchemas(output.OutputSchemas, context) : undefined,
19845
+ Table: (0, smithy_client_1.expectString)(output.Table),
19846
+ };
19847
+ };
19696
19848
  const deserializeAws_json1_1S3CatalogHudiSource = (output, context) => {
19697
19849
  return {
19698
19850
  AdditionalHudiOptions: output.AdditionalHudiOptions != null
@@ -19756,6 +19908,54 @@ const deserializeAws_json1_1S3CsvSource = (output, context) => {
19756
19908
  WriteHeader: (0, smithy_client_1.expectBoolean)(output.WriteHeader),
19757
19909
  };
19758
19910
  };
19911
+ const deserializeAws_json1_1S3DeltaCatalogTarget = (output, context) => {
19912
+ return {
19913
+ AdditionalOptions: output.AdditionalOptions != null
19914
+ ? deserializeAws_json1_1AdditionalOptions(output.AdditionalOptions, context)
19915
+ : undefined,
19916
+ Database: (0, smithy_client_1.expectString)(output.Database),
19917
+ Inputs: output.Inputs != null ? deserializeAws_json1_1OneInput(output.Inputs, context) : undefined,
19918
+ Name: (0, smithy_client_1.expectString)(output.Name),
19919
+ PartitionKeys: output.PartitionKeys != null
19920
+ ? deserializeAws_json1_1GlueStudioPathList(output.PartitionKeys, context)
19921
+ : undefined,
19922
+ SchemaChangePolicy: output.SchemaChangePolicy != null
19923
+ ? deserializeAws_json1_1CatalogSchemaChangePolicy(output.SchemaChangePolicy, context)
19924
+ : undefined,
19925
+ Table: (0, smithy_client_1.expectString)(output.Table),
19926
+ };
19927
+ };
19928
+ const deserializeAws_json1_1S3DeltaDirectTarget = (output, context) => {
19929
+ return {
19930
+ AdditionalOptions: output.AdditionalOptions != null
19931
+ ? deserializeAws_json1_1AdditionalOptions(output.AdditionalOptions, context)
19932
+ : undefined,
19933
+ Compression: (0, smithy_client_1.expectString)(output.Compression),
19934
+ Format: (0, smithy_client_1.expectString)(output.Format),
19935
+ Inputs: output.Inputs != null ? deserializeAws_json1_1OneInput(output.Inputs, context) : undefined,
19936
+ Name: (0, smithy_client_1.expectString)(output.Name),
19937
+ PartitionKeys: output.PartitionKeys != null
19938
+ ? deserializeAws_json1_1GlueStudioPathList(output.PartitionKeys, context)
19939
+ : undefined,
19940
+ Path: (0, smithy_client_1.expectString)(output.Path),
19941
+ SchemaChangePolicy: output.SchemaChangePolicy != null
19942
+ ? deserializeAws_json1_1DirectSchemaChangePolicy(output.SchemaChangePolicy, context)
19943
+ : undefined,
19944
+ };
19945
+ };
19946
+ const deserializeAws_json1_1S3DeltaSource = (output, context) => {
19947
+ return {
19948
+ AdditionalDeltaOptions: output.AdditionalDeltaOptions != null
19949
+ ? deserializeAws_json1_1AdditionalOptions(output.AdditionalDeltaOptions, context)
19950
+ : undefined,
19951
+ AdditionalOptions: output.AdditionalOptions != null
19952
+ ? deserializeAws_json1_1S3DirectSourceAdditionalOptions(output.AdditionalOptions, context)
19953
+ : undefined,
19954
+ Name: (0, smithy_client_1.expectString)(output.Name),
19955
+ OutputSchemas: output.OutputSchemas != null ? deserializeAws_json1_1GlueSchemas(output.OutputSchemas, context) : undefined,
19956
+ Paths: output.Paths != null ? deserializeAws_json1_1EnclosedInStringProperties(output.Paths, context) : undefined,
19957
+ };
19958
+ };
19759
19959
  const deserializeAws_json1_1S3DirectSourceAdditionalOptions = (output, context) => {
19760
19960
  return {
19761
19961
  BoundedFiles: (0, smithy_client_1.expectLong)(output.BoundedFiles),
@@ -1,7 +1,8 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { CreateSchemaInputFilterSensitiveLog, CreateSchemaResponseFilterSensitiveLog, } from "../models/models_0";
4
+ import { CreateSchemaInputFilterSensitiveLog } from "../models/models_0";
5
+ import { CreateSchemaResponseFilterSensitiveLog } from "../models/models_1";
5
6
  import { deserializeAws_json1_1CreateSchemaCommand, serializeAws_json1_1CreateSchemaCommand, } from "../protocols/Aws_json1_1";
6
7
  export class CreateSchemaCommand extends $Command {
7
8
  constructor(input) {
@@ -1,8 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { CreateScriptRequestFilterSensitiveLog } from "../models/models_0";
5
- import { CreateScriptResponseFilterSensitiveLog } from "../models/models_1";
4
+ import { CreateScriptRequestFilterSensitiveLog, CreateScriptResponseFilterSensitiveLog, } from "../models/models_1";
6
5
  import { deserializeAws_json1_1CreateScriptCommand, serializeAws_json1_1CreateScriptCommand, } from "../protocols/Aws_json1_1";
7
6
  export class CreateScriptCommand extends $Command {
8
7
  constructor(input) {
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { ListBlueprintsRequestFilterSensitiveLog, ListBlueprintsResponseFilterSensitiveLog, } from "../models/models_1";
4
+ import { ListBlueprintsRequestFilterSensitiveLog, ListBlueprintsResponseFilterSensitiveLog, } from "../models/models_2";
5
5
  import { deserializeAws_json1_1ListBlueprintsCommand, serializeAws_json1_1ListBlueprintsCommand, } from "../protocols/Aws_json1_1";
6
6
  export class ListBlueprintsCommand extends $Command {
7
7
  constructor(input) {
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { ListCrawlersRequestFilterSensitiveLog, ListCrawlersResponseFilterSensitiveLog, } from "../models/models_1";
4
+ import { ListCrawlersRequestFilterSensitiveLog, ListCrawlersResponseFilterSensitiveLog, } from "../models/models_2";
5
5
  import { deserializeAws_json1_1ListCrawlersCommand, serializeAws_json1_1ListCrawlersCommand, } from "../protocols/Aws_json1_1";
6
6
  export class ListCrawlersCommand extends $Command {
7
7
  constructor(input) {
@@ -1,8 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { ListCrawlsRequestFilterSensitiveLog } from "../models/models_1";
5
- import { ListCrawlsResponseFilterSensitiveLog } from "../models/models_2";
4
+ import { ListCrawlsRequestFilterSensitiveLog, ListCrawlsResponseFilterSensitiveLog, } from "../models/models_2";
6
5
  import { deserializeAws_json1_1ListCrawlsCommand, serializeAws_json1_1ListCrawlsCommand, } from "../protocols/Aws_json1_1";
7
6
  export class ListCrawlsCommand extends $Command {
8
7
  constructor(input) {
@@ -1,4 +1,4 @@
1
- const q = "fn", r = "argv", s = "ref";
2
- const a = true, b = false, c = "String", d = "PartitionResult", e = "tree", f = "error", g = "endpoint", h = { "required": true, "default": false, "type": "Boolean" }, i = { [s]: "Endpoint" }, j = { [q]: "booleanEquals", [r]: [{ [s]: "UseFIPS" }, true] }, k = { [q]: "booleanEquals", [r]: [{ [s]: "UseDualStack" }, true] }, l = {}, m = { [q]: "booleanEquals", [r]: [true, { [q]: "getAttr", [r]: [{ [s]: d }, "supportsFIPS"] }] }, n = { [q]: "booleanEquals", [r]: [true, { [q]: "getAttr", [r]: [{ [s]: d }, "supportsDualStack"] }] }, o = [j], p = [k];
3
- const _data = { version: "1.0", parameters: { Region: { required: a, type: c }, UseDualStack: h, UseFIPS: h, Endpoint: { required: b, type: c } }, rules: [{ conditions: [{ [q]: "aws.partition", [r]: [{ [s]: "Region" }], assign: d }], type: e, rules: [{ conditions: [{ [q]: "isSet", [r]: [i] }], type: e, rules: [{ conditions: o, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: f }, { type: e, rules: [{ conditions: p, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: f }, { endpoint: { url: i, properties: l, headers: l }, type: g }] }] }, { conditions: [j, k], type: e, rules: [{ conditions: [m, n], type: e, rules: [{ type: e, rules: [{ endpoint: { url: "https://glue-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: l, headers: l }, type: g }] }] }, { error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: f }] }, { conditions: o, type: e, rules: [{ conditions: [m], type: e, rules: [{ type: e, rules: [{ endpoint: { url: "https://glue-fips.{Region}.{PartitionResult#dnsSuffix}", properties: l, headers: l }, type: g }] }] }, { error: "FIPS is enabled but this partition does not support FIPS", type: f }] }, { conditions: p, type: e, rules: [{ conditions: [n], type: e, rules: [{ type: e, rules: [{ endpoint: { url: "https://glue.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: l, headers: l }, type: g }] }] }, { error: "DualStack is enabled but this partition does not support DualStack", type: f }] }, { type: e, rules: [{ endpoint: { url: "https://glue.{Region}.{PartitionResult#dnsSuffix}", properties: l, headers: l }, type: g }] }] }] };
1
+ const q = "required", r = "fn", s = "argv", t = "ref";
2
+ const a = "isSet", b = "tree", c = "error", d = "endpoint", e = "PartitionResult", f = { [q]: false, "type": "String" }, g = { [q]: true, "default": false, "type": "Boolean" }, h = { [t]: "Endpoint" }, i = { [r]: "booleanEquals", [s]: [{ [t]: "UseFIPS" }, true] }, j = { [r]: "booleanEquals", [s]: [{ [t]: "UseDualStack" }, true] }, k = {}, l = { [r]: "booleanEquals", [s]: [true, { [r]: "getAttr", [s]: [{ [t]: e }, "supportsFIPS"] }] }, m = { [r]: "booleanEquals", [s]: [true, { [r]: "getAttr", [s]: [{ [t]: e }, "supportsDualStack"] }] }, n = [i], o = [j], p = [{ [t]: "Region" }];
3
+ const _data = { version: "1.0", parameters: { Region: f, UseDualStack: g, UseFIPS: g, Endpoint: f }, rules: [{ conditions: [{ [r]: a, [s]: [h] }], type: b, rules: [{ conditions: n, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: c }, { type: b, rules: [{ conditions: o, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: c }, { endpoint: { url: h, properties: k, headers: k }, type: d }] }] }, { type: b, rules: [{ conditions: [{ [r]: a, [s]: p }], type: b, rules: [{ conditions: [{ [r]: "aws.partition", [s]: p, assign: e }], type: b, rules: [{ conditions: [i, j], type: b, rules: [{ conditions: [l, m], type: b, rules: [{ type: b, rules: [{ endpoint: { url: "https://glue-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: k, headers: k }, type: d }] }] }, { error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: c }] }, { conditions: n, type: b, rules: [{ conditions: [l], type: b, rules: [{ type: b, rules: [{ endpoint: { url: "https://glue-fips.{Region}.{PartitionResult#dnsSuffix}", properties: k, headers: k }, type: d }] }] }, { error: "FIPS is enabled but this partition does not support FIPS", type: c }] }, { conditions: o, type: b, rules: [{ conditions: [m], type: b, rules: [{ type: b, rules: [{ endpoint: { url: "https://glue.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: k, headers: k }, type: d }] }] }, { error: "DualStack is enabled but this partition does not support DualStack", type: c }] }, { type: b, rules: [{ endpoint: { url: "https://glue.{Region}.{PartitionResult#dnsSuffix}", properties: k, headers: k }, type: d }] }] }] }, { error: "Invalid Configuration: Missing Region", type: c }] }] };
4
4
  export const ruleSet = _data;
@@ -205,6 +205,14 @@ export var StartingPosition;
205
205
  StartingPosition["LATEST"] = "latest";
206
206
  StartingPosition["TRIM_HORIZON"] = "trim_horizon";
207
207
  })(StartingPosition || (StartingPosition = {}));
208
+ export var JDBCConnectionType;
209
+ (function (JDBCConnectionType) {
210
+ JDBCConnectionType["mysql"] = "mysql";
211
+ JDBCConnectionType["oracle"] = "oracle";
212
+ JDBCConnectionType["postgresql"] = "postgresql";
213
+ JDBCConnectionType["redshift"] = "redshift";
214
+ JDBCConnectionType["sqlserver"] = "sqlserver";
215
+ })(JDBCConnectionType || (JDBCConnectionType = {}));
208
216
  export var ParamType;
209
217
  (function (ParamType) {
210
218
  ParamType["BOOL"] = "bool";
@@ -341,10 +349,16 @@ export var Separator;
341
349
  Separator["SEMICOLON"] = "semicolon";
342
350
  Separator["TAB"] = "tab";
343
351
  })(Separator || (Separator = {}));
352
+ export var DeltaTargetCompressionType;
353
+ (function (DeltaTargetCompressionType) {
354
+ DeltaTargetCompressionType["SNAPPY"] = "snappy";
355
+ DeltaTargetCompressionType["UNCOMPRESSED"] = "uncompressed";
356
+ })(DeltaTargetCompressionType || (DeltaTargetCompressionType = {}));
344
357
  export var TargetFormat;
345
358
  (function (TargetFormat) {
346
359
  TargetFormat["AVRO"] = "avro";
347
360
  TargetFormat["CSV"] = "csv";
361
+ TargetFormat["DELTA"] = "delta";
348
362
  TargetFormat["HUDI"] = "hudi";
349
363
  TargetFormat["JSON"] = "json";
350
364
  TargetFormat["ORC"] = "orc";
@@ -609,24 +623,6 @@ export var Compatibility;
609
623
  Compatibility["FULL_ALL"] = "FULL_ALL";
610
624
  Compatibility["NONE"] = "NONE";
611
625
  })(Compatibility || (Compatibility = {}));
612
- export var SchemaStatus;
613
- (function (SchemaStatus) {
614
- SchemaStatus["AVAILABLE"] = "AVAILABLE";
615
- SchemaStatus["DELETING"] = "DELETING";
616
- SchemaStatus["PENDING"] = "PENDING";
617
- })(SchemaStatus || (SchemaStatus = {}));
618
- export var SchemaVersionStatus;
619
- (function (SchemaVersionStatus) {
620
- SchemaVersionStatus["AVAILABLE"] = "AVAILABLE";
621
- SchemaVersionStatus["DELETING"] = "DELETING";
622
- SchemaVersionStatus["FAILURE"] = "FAILURE";
623
- SchemaVersionStatus["PENDING"] = "PENDING";
624
- })(SchemaVersionStatus || (SchemaVersionStatus = {}));
625
- export var Language;
626
- (function (Language) {
627
- Language["PYTHON"] = "PYTHON";
628
- Language["SCALA"] = "SCALA";
629
- })(Language || (Language = {}));
630
626
  export const NotificationPropertyFilterSensitiveLog = (obj) => ({
631
627
  ...obj,
632
628
  });
@@ -819,6 +815,9 @@ export const BatchGetDevEndpointsResponseFilterSensitiveLog = (obj) => ({
819
815
  export const BatchGetJobsRequestFilterSensitiveLog = (obj) => ({
820
816
  ...obj,
821
817
  });
818
+ export const CatalogDeltaSourceFilterSensitiveLog = (obj) => ({
819
+ ...obj,
820
+ });
822
821
  export const CatalogHudiSourceFilterSensitiveLog = (obj) => ({
823
822
  ...obj,
824
823
  });
@@ -846,6 +845,9 @@ export const BasicCatalogTargetFilterSensitiveLog = (obj) => ({
846
845
  export const CustomCodeFilterSensitiveLog = (obj) => ({
847
846
  ...obj,
848
847
  });
848
+ export const DirectJDBCSourceFilterSensitiveLog = (obj) => ({
849
+ ...obj,
850
+ });
849
851
  export const DirectKafkaSourceFilterSensitiveLog = (obj) => ({
850
852
  ...obj,
851
853
  });
@@ -972,6 +974,9 @@ export const RelationalCatalogSourceFilterSensitiveLog = (obj) => ({
972
974
  export const RenameFieldFilterSensitiveLog = (obj) => ({
973
975
  ...obj,
974
976
  });
977
+ export const S3CatalogDeltaSourceFilterSensitiveLog = (obj) => ({
978
+ ...obj,
979
+ });
975
980
  export const S3CatalogHudiSourceFilterSensitiveLog = (obj) => ({
976
981
  ...obj,
977
982
  });
@@ -987,9 +992,18 @@ export const S3DirectSourceAdditionalOptionsFilterSensitiveLog = (obj) => ({
987
992
  export const S3CsvSourceFilterSensitiveLog = (obj) => ({
988
993
  ...obj,
989
994
  });
995
+ export const S3DeltaCatalogTargetFilterSensitiveLog = (obj) => ({
996
+ ...obj,
997
+ });
990
998
  export const DirectSchemaChangePolicyFilterSensitiveLog = (obj) => ({
991
999
  ...obj,
992
1000
  });
1001
+ export const S3DeltaDirectTargetFilterSensitiveLog = (obj) => ({
1002
+ ...obj,
1003
+ });
1004
+ export const S3DeltaSourceFilterSensitiveLog = (obj) => ({
1005
+ ...obj,
1006
+ });
993
1007
  export const S3DirectTargetFilterSensitiveLog = (obj) => ({
994
1008
  ...obj,
995
1009
  });
@@ -1308,18 +1322,3 @@ export const RegistryIdFilterSensitiveLog = (obj) => ({
1308
1322
  export const CreateSchemaInputFilterSensitiveLog = (obj) => ({
1309
1323
  ...obj,
1310
1324
  });
1311
- export const CreateSchemaResponseFilterSensitiveLog = (obj) => ({
1312
- ...obj,
1313
- });
1314
- export const CodeGenEdgeFilterSensitiveLog = (obj) => ({
1315
- ...obj,
1316
- });
1317
- export const CodeGenNodeArgFilterSensitiveLog = (obj) => ({
1318
- ...obj,
1319
- });
1320
- export const CodeGenNodeFilterSensitiveLog = (obj) => ({
1321
- ...obj,
1322
- });
1323
- export const CreateScriptRequestFilterSensitiveLog = (obj) => ({
1324
- ...obj,
1325
- });
@@ -1,4 +1,22 @@
1
1
  import { GlueServiceException as __BaseException } from "./GlueServiceException";
2
+ export var SchemaStatus;
3
+ (function (SchemaStatus) {
4
+ SchemaStatus["AVAILABLE"] = "AVAILABLE";
5
+ SchemaStatus["DELETING"] = "DELETING";
6
+ SchemaStatus["PENDING"] = "PENDING";
7
+ })(SchemaStatus || (SchemaStatus = {}));
8
+ export var SchemaVersionStatus;
9
+ (function (SchemaVersionStatus) {
10
+ SchemaVersionStatus["AVAILABLE"] = "AVAILABLE";
11
+ SchemaVersionStatus["DELETING"] = "DELETING";
12
+ SchemaVersionStatus["FAILURE"] = "FAILURE";
13
+ SchemaVersionStatus["PENDING"] = "PENDING";
14
+ })(SchemaVersionStatus || (SchemaVersionStatus = {}));
15
+ export var Language;
16
+ (function (Language) {
17
+ Language["PYTHON"] = "PYTHON";
18
+ Language["SCALA"] = "SCALA";
19
+ })(Language || (Language = {}));
2
20
  export var CloudWatchEncryptionMode;
3
21
  (function (CloudWatchEncryptionMode) {
4
22
  CloudWatchEncryptionMode["DISABLED"] = "DISABLED";
@@ -199,23 +217,21 @@ export class PermissionTypeMismatchException extends __BaseException {
199
217
  this.Message = opts.Message;
200
218
  }
201
219
  }
202
- export var FieldName;
203
- (function (FieldName) {
204
- FieldName["CRAWL_ID"] = "CRAWL_ID";
205
- FieldName["DPU_HOUR"] = "DPU_HOUR";
206
- FieldName["END_TIME"] = "END_TIME";
207
- FieldName["START_TIME"] = "START_TIME";
208
- FieldName["STATE"] = "STATE";
209
- })(FieldName || (FieldName = {}));
210
- export var FilterOperator;
211
- (function (FilterOperator) {
212
- FilterOperator["EQ"] = "EQ";
213
- FilterOperator["GE"] = "GE";
214
- FilterOperator["GT"] = "GT";
215
- FilterOperator["LE"] = "LE";
216
- FilterOperator["LT"] = "LT";
217
- FilterOperator["NE"] = "NE";
218
- })(FilterOperator || (FilterOperator = {}));
220
+ export const CreateSchemaResponseFilterSensitiveLog = (obj) => ({
221
+ ...obj,
222
+ });
223
+ export const CodeGenEdgeFilterSensitiveLog = (obj) => ({
224
+ ...obj,
225
+ });
226
+ export const CodeGenNodeArgFilterSensitiveLog = (obj) => ({
227
+ ...obj,
228
+ });
229
+ export const CodeGenNodeFilterSensitiveLog = (obj) => ({
230
+ ...obj,
231
+ });
232
+ export const CreateScriptRequestFilterSensitiveLog = (obj) => ({
233
+ ...obj,
234
+ });
219
235
  export const CreateScriptResponseFilterSensitiveLog = (obj) => ({
220
236
  ...obj,
221
237
  });
@@ -1014,21 +1030,3 @@ export const ImportCatalogToGlueRequestFilterSensitiveLog = (obj) => ({
1014
1030
  export const ImportCatalogToGlueResponseFilterSensitiveLog = (obj) => ({
1015
1031
  ...obj,
1016
1032
  });
1017
- export const ListBlueprintsRequestFilterSensitiveLog = (obj) => ({
1018
- ...obj,
1019
- });
1020
- export const ListBlueprintsResponseFilterSensitiveLog = (obj) => ({
1021
- ...obj,
1022
- });
1023
- export const ListCrawlersRequestFilterSensitiveLog = (obj) => ({
1024
- ...obj,
1025
- });
1026
- export const ListCrawlersResponseFilterSensitiveLog = (obj) => ({
1027
- ...obj,
1028
- });
1029
- export const CrawlsFilterFilterSensitiveLog = (obj) => ({
1030
- ...obj,
1031
- });
1032
- export const ListCrawlsRequestFilterSensitiveLog = (obj) => ({
1033
- ...obj,
1034
- });
@@ -1,5 +1,22 @@
1
1
  import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
2
2
  import { GlueServiceException as __BaseException } from "./GlueServiceException";
3
+ export var FieldName;
4
+ (function (FieldName) {
5
+ FieldName["CRAWL_ID"] = "CRAWL_ID";
6
+ FieldName["DPU_HOUR"] = "DPU_HOUR";
7
+ FieldName["END_TIME"] = "END_TIME";
8
+ FieldName["START_TIME"] = "START_TIME";
9
+ FieldName["STATE"] = "STATE";
10
+ })(FieldName || (FieldName = {}));
11
+ export var FilterOperator;
12
+ (function (FilterOperator) {
13
+ FilterOperator["EQ"] = "EQ";
14
+ FilterOperator["GE"] = "GE";
15
+ FilterOperator["GT"] = "GT";
16
+ FilterOperator["LE"] = "LE";
17
+ FilterOperator["LT"] = "LT";
18
+ FilterOperator["NE"] = "NE";
19
+ })(FilterOperator || (FilterOperator = {}));
3
20
  export var CrawlerHistoryState;
4
21
  (function (CrawlerHistoryState) {
5
22
  CrawlerHistoryState["COMPLETED"] = "COMPLETED";
@@ -161,6 +178,24 @@ export class VersionMismatchException extends __BaseException {
161
178
  this.Message = opts.Message;
162
179
  }
163
180
  }
181
+ export const ListBlueprintsRequestFilterSensitiveLog = (obj) => ({
182
+ ...obj,
183
+ });
184
+ export const ListBlueprintsResponseFilterSensitiveLog = (obj) => ({
185
+ ...obj,
186
+ });
187
+ export const ListCrawlersRequestFilterSensitiveLog = (obj) => ({
188
+ ...obj,
189
+ });
190
+ export const ListCrawlersResponseFilterSensitiveLog = (obj) => ({
191
+ ...obj,
192
+ });
193
+ export const CrawlsFilterFilterSensitiveLog = (obj) => ({
194
+ ...obj,
195
+ });
196
+ export const ListCrawlsRequestFilterSensitiveLog = (obj) => ({
197
+ ...obj,
198
+ });
164
199
  export const CrawlerHistoryFilterSensitiveLog = (obj) => ({
165
200
  ...obj,
166
201
  });