aws-sdk-glue 1.79.0 → 1.84.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ab94ed1c7afa7f0df91258ae3118393461b012eb1006a710b5bb3b8aecfbe643
4
- data.tar.gz: 30d7cb8b5c9e160e1d54827763d85ff3272c00b07316f86eb9c56ef3b8af5610
3
+ metadata.gz: ad9d4baa3b317ac6c763374ec0f768dd596a23102370e0471fd78a668eb15a0a
4
+ data.tar.gz: f4f271911f872f447d555e2ca5a7f5d4a70fa189e6bbe760865393d965e88072
5
5
  SHA512:
6
- metadata.gz: 3ea9dfd437d35a7e92a27d870724201fdda74fa262241b2ed2d660267dcd9e3e10dfac1e848afc81efd8a0486984a4d626675f8e83f475b4f2be2e0d4d6200ff
7
- data.tar.gz: 50ccebf6e99c8e09b352d62d17bc42b62d38ad4c2f37818b885d9ae9d224d51b822071958bd8737b543b8540e5491263956a631179dfc21e7117375864ecebdb
6
+ metadata.gz: 3a6f8597e74426007bc3f8eaa9731cda97082d7462a2217684e487e13e440e0d5937d8d20b02ddfae79c319e5f2232c6778d87f52bcfe3290aeb2c54fb0ab774
7
+ data.tar.gz: de96876b6aab82474e6f26adff34e4affcf03f063452a58910990a3ae43490ec26feb275f8b7fdfc8a1fda756cf320883a4f07ce66f554e0e169a3162ae8f046
data/lib/aws-sdk-glue.rb CHANGED
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-glue/customizations'
48
48
  # @!group service
49
49
  module Aws::Glue
50
50
 
51
- GEM_VERSION = '1.79.0'
51
+ GEM_VERSION = '1.84.0'
52
52
 
53
53
  end
@@ -691,6 +691,7 @@ module Aws::Glue
691
691
  # resp.crawlers[0].recrawl_policy.recrawl_behavior #=> String, one of "CRAWL_EVERYTHING", "CRAWL_NEW_FOLDERS_ONLY"
692
692
  # resp.crawlers[0].schema_change_policy.update_behavior #=> String, one of "LOG", "UPDATE_IN_DATABASE"
693
693
  # resp.crawlers[0].schema_change_policy.delete_behavior #=> String, one of "LOG", "DELETE_FROM_DATABASE", "DEPRECATE_IN_DATABASE"
694
+ # resp.crawlers[0].lineage_configuration.crawler_lineage_settings #=> String, one of "ENABLE", "DISABLE"
694
695
  # resp.crawlers[0].state #=> String, one of "READY", "RUNNING", "STOPPING"
695
696
  # resp.crawlers[0].table_prefix #=> String
696
697
  # resp.crawlers[0].schedule.schedule_expression #=> String
@@ -1486,7 +1487,7 @@ module Aws::Glue
1486
1487
  # connection_input: { # required
1487
1488
  # name: "NameString", # required
1488
1489
  # description: "DescriptionString",
1489
- # connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK
1490
+ # connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK, MARKETPLACE, CUSTOM
1490
1491
  # match_criteria: ["NameString"],
1491
1492
  # connection_properties: { # required
1492
1493
  # "HOST" => "ValueString",
@@ -1555,6 +1556,9 @@ module Aws::Glue
1555
1556
  # A policy that specifies whether to crawl the entire dataset again, or
1556
1557
  # to crawl only folders that were added since the last crawler run.
1557
1558
  #
1559
+ # @option params [Types::LineageConfiguration] :lineage_configuration
1560
+ # Specifies data lineage configuration settings for the crawler.
1561
+ #
1558
1562
  # @option params [String] :configuration
1559
1563
  # Crawler configuration information. This versioned JSON string allows
1560
1564
  # users to specify aspects of a crawler's behavior. For more
@@ -1632,6 +1636,9 @@ module Aws::Glue
1632
1636
  # recrawl_policy: {
1633
1637
  # recrawl_behavior: "CRAWL_EVERYTHING", # accepts CRAWL_EVERYTHING, CRAWL_NEW_FOLDERS_ONLY
1634
1638
  # },
1639
+ # lineage_configuration: {
1640
+ # crawler_lineage_settings: "ENABLE", # accepts ENABLE, DISABLE
1641
+ # },
1635
1642
  # configuration: "CrawlerConfiguration",
1636
1643
  # crawler_security_configuration: "CrawlerSecurityConfiguration",
1637
1644
  # tags: {
@@ -2403,6 +2410,46 @@ module Aws::Glue
2403
2410
  req.send_request(options)
2404
2411
  end
2405
2412
 
2413
+ # Creates a specified partition index in an existing table.
2414
+ #
2415
+ # @option params [String] :catalog_id
2416
+ # The catalog ID where the table resides.
2417
+ #
2418
+ # @option params [required, String] :database_name
2419
+ # Specifies the name of a database in which you want to create a
2420
+ # partition index.
2421
+ #
2422
+ # @option params [required, String] :table_name
2423
+ # Specifies the name of a table in which you want to create a partition
2424
+ # index.
2425
+ #
2426
+ # @option params [required, Types::PartitionIndex] :partition_index
2427
+ # Specifies a `PartitionIndex` structure to create a partition index in
2428
+ # an existing table.
2429
+ #
2430
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2431
+ #
2432
+ # @example Request syntax with placeholder values
2433
+ #
2434
+ # resp = client.create_partition_index({
2435
+ # catalog_id: "CatalogIdString",
2436
+ # database_name: "NameString", # required
2437
+ # table_name: "NameString", # required
2438
+ # partition_index: { # required
2439
+ # keys: ["NameString"], # required
2440
+ # index_name: "NameString", # required
2441
+ # },
2442
+ # })
2443
+ #
2444
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreatePartitionIndex AWS API Documentation
2445
+ #
2446
+ # @overload create_partition_index(params = {})
2447
+ # @param [Hash] params ({})
2448
+ def create_partition_index(params = {}, options = {})
2449
+ req = build_request(:create_partition_index, params)
2450
+ req.send_request(options)
2451
+ end
2452
+
2406
2453
  # Creates a new registry which may be used to hold a collection of
2407
2454
  # schemas.
2408
2455
  #
@@ -3354,6 +3401,42 @@ module Aws::Glue
3354
3401
  req.send_request(options)
3355
3402
  end
3356
3403
 
3404
+ # Deletes a specified partition index from an existing table.
3405
+ #
3406
+ # @option params [String] :catalog_id
3407
+ # The catalog ID where the table resides.
3408
+ #
3409
+ # @option params [required, String] :database_name
3410
+ # Specifies the name of a database from which you want to delete a
3411
+ # partition index.
3412
+ #
3413
+ # @option params [required, String] :table_name
3414
+ # Specifies the name of a table from which you want to delete a
3415
+ # partition index.
3416
+ #
3417
+ # @option params [required, String] :index_name
3418
+ # The name of the partition index to be deleted.
3419
+ #
3420
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3421
+ #
3422
+ # @example Request syntax with placeholder values
3423
+ #
3424
+ # resp = client.delete_partition_index({
3425
+ # catalog_id: "CatalogIdString",
3426
+ # database_name: "NameString", # required
3427
+ # table_name: "NameString", # required
3428
+ # index_name: "NameString", # required
3429
+ # })
3430
+ #
3431
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeletePartitionIndex AWS API Documentation
3432
+ #
3433
+ # @overload delete_partition_index(params = {})
3434
+ # @param [Hash] params ({})
3435
+ def delete_partition_index(params = {}, options = {})
3436
+ req = build_request(:delete_partition_index, params)
3437
+ req.send_request(options)
3438
+ end
3439
+
3357
3440
  # Delete the entire registry including schema and all of its versions.
3358
3441
  # To get the status of the delete operation, you can call the
3359
3442
  # `GetRegistry` API after the asynchronous call. Deleting a registry
@@ -4070,7 +4153,7 @@ module Aws::Glue
4070
4153
  #
4071
4154
  # resp.connection.name #=> String
4072
4155
  # resp.connection.description #=> String
4073
- # resp.connection.connection_type #=> String, one of "JDBC", "SFTP", "MONGODB", "KAFKA", "NETWORK"
4156
+ # resp.connection.connection_type #=> String, one of "JDBC", "SFTP", "MONGODB", "KAFKA", "NETWORK", "MARKETPLACE", "CUSTOM"
4074
4157
  # resp.connection.match_criteria #=> Array
4075
4158
  # resp.connection.match_criteria[0] #=> String
4076
4159
  # resp.connection.connection_properties #=> Hash
@@ -4128,7 +4211,7 @@ module Aws::Glue
4128
4211
  # catalog_id: "CatalogIdString",
4129
4212
  # filter: {
4130
4213
  # match_criteria: ["NameString"],
4131
- # connection_type: "JDBC", # accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK
4214
+ # connection_type: "JDBC", # accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK, MARKETPLACE, CUSTOM
4132
4215
  # },
4133
4216
  # hide_password: false,
4134
4217
  # next_token: "Token",
@@ -4140,7 +4223,7 @@ module Aws::Glue
4140
4223
  # resp.connection_list #=> Array
4141
4224
  # resp.connection_list[0].name #=> String
4142
4225
  # resp.connection_list[0].description #=> String
4143
- # resp.connection_list[0].connection_type #=> String, one of "JDBC", "SFTP", "MONGODB", "KAFKA", "NETWORK"
4226
+ # resp.connection_list[0].connection_type #=> String, one of "JDBC", "SFTP", "MONGODB", "KAFKA", "NETWORK", "MARKETPLACE", "CUSTOM"
4144
4227
  # resp.connection_list[0].match_criteria #=> Array
4145
4228
  # resp.connection_list[0].match_criteria[0] #=> String
4146
4229
  # resp.connection_list[0].connection_properties #=> Hash
@@ -4211,6 +4294,7 @@ module Aws::Glue
4211
4294
  # resp.crawler.recrawl_policy.recrawl_behavior #=> String, one of "CRAWL_EVERYTHING", "CRAWL_NEW_FOLDERS_ONLY"
4212
4295
  # resp.crawler.schema_change_policy.update_behavior #=> String, one of "LOG", "UPDATE_IN_DATABASE"
4213
4296
  # resp.crawler.schema_change_policy.delete_behavior #=> String, one of "LOG", "DELETE_FROM_DATABASE", "DEPRECATE_IN_DATABASE"
4297
+ # resp.crawler.lineage_configuration.crawler_lineage_settings #=> String, one of "ENABLE", "DISABLE"
4214
4298
  # resp.crawler.state #=> String, one of "READY", "RUNNING", "STOPPING"
4215
4299
  # resp.crawler.table_prefix #=> String
4216
4300
  # resp.crawler.schedule.schedule_expression #=> String
@@ -4341,6 +4425,7 @@ module Aws::Glue
4341
4425
  # resp.crawlers[0].recrawl_policy.recrawl_behavior #=> String, one of "CRAWL_EVERYTHING", "CRAWL_NEW_FOLDERS_ONLY"
4342
4426
  # resp.crawlers[0].schema_change_policy.update_behavior #=> String, one of "LOG", "UPDATE_IN_DATABASE"
4343
4427
  # resp.crawlers[0].schema_change_policy.delete_behavior #=> String, one of "LOG", "DELETE_FROM_DATABASE", "DEPRECATE_IN_DATABASE"
4428
+ # resp.crawlers[0].lineage_configuration.crawler_lineage_settings #=> String, one of "ENABLE", "DISABLE"
4344
4429
  # resp.crawlers[0].state #=> String, one of "READY", "RUNNING", "STOPPING"
4345
4430
  # resp.crawlers[0].table_prefix #=> String
4346
4431
  # resp.crawlers[0].schedule.schedule_expression #=> String
@@ -5169,6 +5254,9 @@ module Aws::Glue
5169
5254
  # resp.evaluation_metrics.find_matches_metrics.confusion_matrix.num_false_positives #=> Integer
5170
5255
  # resp.evaluation_metrics.find_matches_metrics.confusion_matrix.num_true_negatives #=> Integer
5171
5256
  # resp.evaluation_metrics.find_matches_metrics.confusion_matrix.num_false_negatives #=> Integer
5257
+ # resp.evaluation_metrics.find_matches_metrics.column_importances #=> Array
5258
+ # resp.evaluation_metrics.find_matches_metrics.column_importances[0].column_name #=> String
5259
+ # resp.evaluation_metrics.find_matches_metrics.column_importances[0].importance #=> Float
5172
5260
  # resp.label_count #=> Integer
5173
5261
  # resp.schema #=> Array
5174
5262
  # resp.schema[0].name #=> String
@@ -5274,6 +5362,9 @@ module Aws::Glue
5274
5362
  # resp.transforms[0].evaluation_metrics.find_matches_metrics.confusion_matrix.num_false_positives #=> Integer
5275
5363
  # resp.transforms[0].evaluation_metrics.find_matches_metrics.confusion_matrix.num_true_negatives #=> Integer
5276
5364
  # resp.transforms[0].evaluation_metrics.find_matches_metrics.confusion_matrix.num_false_negatives #=> Integer
5365
+ # resp.transforms[0].evaluation_metrics.find_matches_metrics.column_importances #=> Array
5366
+ # resp.transforms[0].evaluation_metrics.find_matches_metrics.column_importances[0].column_name #=> String
5367
+ # resp.transforms[0].evaluation_metrics.find_matches_metrics.column_importances[0].importance #=> Float
5277
5368
  # resp.transforms[0].label_count #=> Integer
5278
5369
  # resp.transforms[0].schema #=> Array
5279
5370
  # resp.transforms[0].schema[0].name #=> String
@@ -5494,7 +5585,12 @@ module Aws::Glue
5494
5585
  # resp.partition_index_descriptor_list[0].keys #=> Array
5495
5586
  # resp.partition_index_descriptor_list[0].keys[0].name #=> String
5496
5587
  # resp.partition_index_descriptor_list[0].keys[0].type #=> String
5497
- # resp.partition_index_descriptor_list[0].index_status #=> String, one of "ACTIVE"
5588
+ # resp.partition_index_descriptor_list[0].index_status #=> String, one of "CREATING", "ACTIVE", "DELETING", "FAILED"
5589
+ # resp.partition_index_descriptor_list[0].backfill_errors #=> Array
5590
+ # resp.partition_index_descriptor_list[0].backfill_errors[0].code #=> String, one of "ENCRYPTED_PARTITION_ERROR", "INTERNAL_ERROR", "INVALID_PARTITION_TYPE_DATA_ERROR", "MISSING_PARTITION_VALUE_ERROR", "UNSUPPORTED_PARTITION_CHARACTER_ERROR"
5591
+ # resp.partition_index_descriptor_list[0].backfill_errors[0].partitions #=> Array
5592
+ # resp.partition_index_descriptor_list[0].backfill_errors[0].partitions[0].values #=> Array
5593
+ # resp.partition_index_descriptor_list[0].backfill_errors[0].partitions[0].values[0] #=> String
5498
5594
  # resp.next_token #=> String
5499
5595
  #
5500
5596
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetPartitionIndexes AWS API Documentation
@@ -5621,6 +5717,8 @@ module Aws::Glue
5621
5717
  # @option params [Integer] :max_results
5622
5718
  # The maximum number of partitions to return in a single response.
5623
5719
  #
5720
+ # @option params [Boolean] :exclude_column_schema
5721
+ #
5624
5722
  # @return [Types::GetPartitionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5625
5723
  #
5626
5724
  # * {Types::GetPartitionsResponse#partitions #partitions} => Array<Types::Partition>
@@ -5641,6 +5739,7 @@ module Aws::Glue
5641
5739
  # total_segments: 1, # required
5642
5740
  # },
5643
5741
  # max_results: 1,
5742
+ # exclude_column_schema: false,
5644
5743
  # })
5645
5744
  #
5646
5745
  # @example Response structure
@@ -9484,7 +9583,7 @@ module Aws::Glue
9484
9583
  # connection_input: { # required
9485
9584
  # name: "NameString", # required
9486
9585
  # description: "DescriptionString",
9487
- # connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK
9586
+ # connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK, MARKETPLACE, CUSTOM
9488
9587
  # match_criteria: ["NameString"],
9489
9588
  # connection_properties: { # required
9490
9589
  # "HOST" => "ValueString",
@@ -9551,6 +9650,9 @@ module Aws::Glue
9551
9650
  # A policy that specifies whether to crawl the entire dataset again, or
9552
9651
  # to crawl only folders that were added since the last crawler run.
9553
9652
  #
9653
+ # @option params [Types::LineageConfiguration] :lineage_configuration
9654
+ # Specifies data lineage configuration settings for the crawler.
9655
+ #
9554
9656
  # @option params [String] :configuration
9555
9657
  # Crawler configuration information. This versioned JSON string allows
9556
9658
  # users to specify aspects of a crawler's behavior. For more
@@ -9619,6 +9721,9 @@ module Aws::Glue
9619
9721
  # recrawl_policy: {
9620
9722
  # recrawl_behavior: "CRAWL_EVERYTHING", # accepts CRAWL_EVERYTHING, CRAWL_NEW_FOLDERS_ONLY
9621
9723
  # },
9724
+ # lineage_configuration: {
9725
+ # crawler_lineage_settings: "ENABLE", # accepts ENABLE, DISABLE
9726
+ # },
9622
9727
  # configuration: "CrawlerConfiguration",
9623
9728
  # crawler_security_configuration: "CrawlerSecurityConfiguration",
9624
9729
  # })
@@ -10494,7 +10599,7 @@ module Aws::Glue
10494
10599
  params: params,
10495
10600
  config: config)
10496
10601
  context[:gem_name] = 'aws-sdk-glue'
10497
- context[:gem_version] = '1.79.0'
10602
+ context[:gem_version] = '1.84.0'
10498
10603
  Seahorse::Client::Request.new(handlers, context)
10499
10604
  end
10500
10605
 
@@ -19,6 +19,10 @@ module Aws::Glue
19
19
  AdditionalPlanOptionsMap = Shapes::MapShape.new(name: 'AdditionalPlanOptionsMap')
20
20
  AlreadyExistsException = Shapes::StructureShape.new(name: 'AlreadyExistsException')
21
21
  AttemptCount = Shapes::IntegerShape.new(name: 'AttemptCount')
22
+ BackfillError = Shapes::StructureShape.new(name: 'BackfillError')
23
+ BackfillErrorCode = Shapes::StringShape.new(name: 'BackfillErrorCode')
24
+ BackfillErroredPartitionsList = Shapes::ListShape.new(name: 'BackfillErroredPartitionsList')
25
+ BackfillErrors = Shapes::ListShape.new(name: 'BackfillErrors')
22
26
  BatchCreatePartitionRequest = Shapes::StructureShape.new(name: 'BatchCreatePartitionRequest')
23
27
  BatchCreatePartitionResponse = Shapes::StructureShape.new(name: 'BatchCreatePartitionResponse')
24
28
  BatchDeleteConnectionRequest = Shapes::StructureShape.new(name: 'BatchDeleteConnectionRequest')
@@ -70,6 +74,7 @@ module Aws::Glue
70
74
  CatalogEncryptionMode = Shapes::StringShape.new(name: 'CatalogEncryptionMode')
71
75
  CatalogEntries = Shapes::ListShape.new(name: 'CatalogEntries')
72
76
  CatalogEntry = Shapes::StructureShape.new(name: 'CatalogEntry')
77
+ CatalogGetterPageSize = Shapes::IntegerShape.new(name: 'CatalogGetterPageSize')
73
78
  CatalogIdString = Shapes::StringShape.new(name: 'CatalogIdString')
74
79
  CatalogImportStatus = Shapes::StructureShape.new(name: 'CatalogImportStatus')
75
80
  CatalogTablesList = Shapes::ListShape.new(name: 'CatalogTablesList')
@@ -94,6 +99,8 @@ module Aws::Glue
94
99
  Column = Shapes::StructureShape.new(name: 'Column')
95
100
  ColumnError = Shapes::StructureShape.new(name: 'ColumnError')
96
101
  ColumnErrors = Shapes::ListShape.new(name: 'ColumnErrors')
102
+ ColumnImportance = Shapes::StructureShape.new(name: 'ColumnImportance')
103
+ ColumnImportanceList = Shapes::ListShape.new(name: 'ColumnImportanceList')
97
104
  ColumnList = Shapes::ListShape.new(name: 'ColumnList')
98
105
  ColumnNameString = Shapes::StringShape.new(name: 'ColumnNameString')
99
106
  ColumnStatistics = Shapes::StructureShape.new(name: 'ColumnStatistics')
@@ -129,6 +136,7 @@ module Aws::Glue
129
136
  CrawlState = Shapes::StringShape.new(name: 'CrawlState')
130
137
  Crawler = Shapes::StructureShape.new(name: 'Crawler')
131
138
  CrawlerConfiguration = Shapes::StringShape.new(name: 'CrawlerConfiguration')
139
+ CrawlerLineageSettings = Shapes::StringShape.new(name: 'CrawlerLineageSettings')
132
140
  CrawlerList = Shapes::ListShape.new(name: 'CrawlerList')
133
141
  CrawlerMetrics = Shapes::StructureShape.new(name: 'CrawlerMetrics')
134
142
  CrawlerMetricsList = Shapes::ListShape.new(name: 'CrawlerMetricsList')
@@ -157,6 +165,8 @@ module Aws::Glue
157
165
  CreateJsonClassifierRequest = Shapes::StructureShape.new(name: 'CreateJsonClassifierRequest')
158
166
  CreateMLTransformRequest = Shapes::StructureShape.new(name: 'CreateMLTransformRequest')
159
167
  CreateMLTransformResponse = Shapes::StructureShape.new(name: 'CreateMLTransformResponse')
168
+ CreatePartitionIndexRequest = Shapes::StructureShape.new(name: 'CreatePartitionIndexRequest')
169
+ CreatePartitionIndexResponse = Shapes::StructureShape.new(name: 'CreatePartitionIndexResponse')
160
170
  CreatePartitionRequest = Shapes::StructureShape.new(name: 'CreatePartitionRequest')
161
171
  CreatePartitionResponse = Shapes::StructureShape.new(name: 'CreatePartitionResponse')
162
172
  CreateRegistryInput = Shapes::StructureShape.new(name: 'CreateRegistryInput')
@@ -218,6 +228,8 @@ module Aws::Glue
218
228
  DeleteJobResponse = Shapes::StructureShape.new(name: 'DeleteJobResponse')
219
229
  DeleteMLTransformRequest = Shapes::StructureShape.new(name: 'DeleteMLTransformRequest')
220
230
  DeleteMLTransformResponse = Shapes::StructureShape.new(name: 'DeleteMLTransformResponse')
231
+ DeletePartitionIndexRequest = Shapes::StructureShape.new(name: 'DeletePartitionIndexRequest')
232
+ DeletePartitionIndexResponse = Shapes::StructureShape.new(name: 'DeletePartitionIndexResponse')
221
233
  DeletePartitionRequest = Shapes::StructureShape.new(name: 'DeletePartitionRequest')
222
234
  DeletePartitionResponse = Shapes::StructureShape.new(name: 'DeletePartitionResponse')
223
235
  DeleteRegistryInput = Shapes::StructureShape.new(name: 'DeleteRegistryInput')
@@ -435,6 +447,7 @@ module Aws::Glue
435
447
  LastCrawlInfo = Shapes::StructureShape.new(name: 'LastCrawlInfo')
436
448
  LastCrawlStatus = Shapes::StringShape.new(name: 'LastCrawlStatus')
437
449
  LatestSchemaVersionBoolean = Shapes::BooleanShape.new(name: 'LatestSchemaVersionBoolean')
450
+ LineageConfiguration = Shapes::StructureShape.new(name: 'LineageConfiguration')
438
451
  ListCrawlersRequest = Shapes::StructureShape.new(name: 'ListCrawlersRequest')
439
452
  ListCrawlersResponse = Shapes::StructureShape.new(name: 'ListCrawlersResponse')
440
453
  ListDevEndpointsRequest = Shapes::StructureShape.new(name: 'ListDevEndpointsRequest')
@@ -786,6 +799,14 @@ module Aws::Glue
786
799
  AlreadyExistsException.add_member(:message, Shapes::ShapeRef.new(shape: MessageString, location_name: "Message"))
787
800
  AlreadyExistsException.struct_class = Types::AlreadyExistsException
788
801
 
802
+ BackfillError.add_member(:code, Shapes::ShapeRef.new(shape: BackfillErrorCode, location_name: "Code"))
803
+ BackfillError.add_member(:partitions, Shapes::ShapeRef.new(shape: BackfillErroredPartitionsList, location_name: "Partitions"))
804
+ BackfillError.struct_class = Types::BackfillError
805
+
806
+ BackfillErroredPartitionsList.member = Shapes::ShapeRef.new(shape: PartitionValueList)
807
+
808
+ BackfillErrors.member = Shapes::ShapeRef.new(shape: BackfillError)
809
+
789
810
  BatchCreatePartitionRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
790
811
  BatchCreatePartitionRequest.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
791
812
  BatchCreatePartitionRequest.add_member(:table_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "TableName"))
@@ -1019,6 +1040,12 @@ module Aws::Glue
1019
1040
 
1020
1041
  ColumnErrors.member = Shapes::ShapeRef.new(shape: ColumnError)
1021
1042
 
1043
+ ColumnImportance.add_member(:column_name, Shapes::ShapeRef.new(shape: NameString, location_name: "ColumnName"))
1044
+ ColumnImportance.add_member(:importance, Shapes::ShapeRef.new(shape: GenericBoundedDouble, location_name: "Importance"))
1045
+ ColumnImportance.struct_class = Types::ColumnImportance
1046
+
1047
+ ColumnImportanceList.member = Shapes::ShapeRef.new(shape: ColumnImportance)
1048
+
1022
1049
  ColumnList.member = Shapes::ShapeRef.new(shape: Column)
1023
1050
 
1024
1051
  ColumnStatistics.add_member(:column_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "ColumnName"))
@@ -1123,6 +1150,7 @@ module Aws::Glue
1123
1150
  Crawler.add_member(:classifiers, Shapes::ShapeRef.new(shape: ClassifierNameList, location_name: "Classifiers"))
1124
1151
  Crawler.add_member(:recrawl_policy, Shapes::ShapeRef.new(shape: RecrawlPolicy, location_name: "RecrawlPolicy"))
1125
1152
  Crawler.add_member(:schema_change_policy, Shapes::ShapeRef.new(shape: SchemaChangePolicy, location_name: "SchemaChangePolicy"))
1153
+ Crawler.add_member(:lineage_configuration, Shapes::ShapeRef.new(shape: LineageConfiguration, location_name: "LineageConfiguration"))
1126
1154
  Crawler.add_member(:state, Shapes::ShapeRef.new(shape: CrawlerState, location_name: "State"))
1127
1155
  Crawler.add_member(:table_prefix, Shapes::ShapeRef.new(shape: TablePrefix, location_name: "TablePrefix"))
1128
1156
  Crawler.add_member(:schedule, Shapes::ShapeRef.new(shape: Schedule, location_name: "Schedule"))
@@ -1194,6 +1222,7 @@ module Aws::Glue
1194
1222
  CreateCrawlerRequest.add_member(:table_prefix, Shapes::ShapeRef.new(shape: TablePrefix, location_name: "TablePrefix"))
1195
1223
  CreateCrawlerRequest.add_member(:schema_change_policy, Shapes::ShapeRef.new(shape: SchemaChangePolicy, location_name: "SchemaChangePolicy"))
1196
1224
  CreateCrawlerRequest.add_member(:recrawl_policy, Shapes::ShapeRef.new(shape: RecrawlPolicy, location_name: "RecrawlPolicy"))
1225
+ CreateCrawlerRequest.add_member(:lineage_configuration, Shapes::ShapeRef.new(shape: LineageConfiguration, location_name: "LineageConfiguration"))
1197
1226
  CreateCrawlerRequest.add_member(:configuration, Shapes::ShapeRef.new(shape: CrawlerConfiguration, location_name: "Configuration"))
1198
1227
  CreateCrawlerRequest.add_member(:crawler_security_configuration, Shapes::ShapeRef.new(shape: CrawlerSecurityConfiguration, location_name: "CrawlerSecurityConfiguration"))
1199
1228
  CreateCrawlerRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "Tags"))
@@ -1306,6 +1335,14 @@ module Aws::Glue
1306
1335
  CreateMLTransformResponse.add_member(:transform_id, Shapes::ShapeRef.new(shape: HashString, location_name: "TransformId"))
1307
1336
  CreateMLTransformResponse.struct_class = Types::CreateMLTransformResponse
1308
1337
 
1338
+ CreatePartitionIndexRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
1339
+ CreatePartitionIndexRequest.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
1340
+ CreatePartitionIndexRequest.add_member(:table_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "TableName"))
1341
+ CreatePartitionIndexRequest.add_member(:partition_index, Shapes::ShapeRef.new(shape: PartitionIndex, required: true, location_name: "PartitionIndex"))
1342
+ CreatePartitionIndexRequest.struct_class = Types::CreatePartitionIndexRequest
1343
+
1344
+ CreatePartitionIndexResponse.struct_class = Types::CreatePartitionIndexResponse
1345
+
1309
1346
  CreatePartitionRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
1310
1347
  CreatePartitionRequest.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
1311
1348
  CreatePartitionRequest.add_member(:table_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "TableName"))
@@ -1534,6 +1571,14 @@ module Aws::Glue
1534
1571
  DeleteMLTransformResponse.add_member(:transform_id, Shapes::ShapeRef.new(shape: HashString, location_name: "TransformId"))
1535
1572
  DeleteMLTransformResponse.struct_class = Types::DeleteMLTransformResponse
1536
1573
 
1574
+ DeletePartitionIndexRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
1575
+ DeletePartitionIndexRequest.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
1576
+ DeletePartitionIndexRequest.add_member(:table_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "TableName"))
1577
+ DeletePartitionIndexRequest.add_member(:index_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "IndexName"))
1578
+ DeletePartitionIndexRequest.struct_class = Types::DeletePartitionIndexRequest
1579
+
1580
+ DeletePartitionIndexResponse.struct_class = Types::DeletePartitionIndexResponse
1581
+
1537
1582
  DeletePartitionRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
1538
1583
  DeletePartitionRequest.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
1539
1584
  DeletePartitionRequest.add_member(:table_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "TableName"))
@@ -1704,6 +1749,7 @@ module Aws::Glue
1704
1749
  FindMatchesMetrics.add_member(:recall, Shapes::ShapeRef.new(shape: GenericBoundedDouble, location_name: "Recall"))
1705
1750
  FindMatchesMetrics.add_member(:f1, Shapes::ShapeRef.new(shape: GenericBoundedDouble, location_name: "F1"))
1706
1751
  FindMatchesMetrics.add_member(:confusion_matrix, Shapes::ShapeRef.new(shape: ConfusionMatrix, location_name: "ConfusionMatrix"))
1752
+ FindMatchesMetrics.add_member(:column_importances, Shapes::ShapeRef.new(shape: ColumnImportanceList, location_name: "ColumnImportances"))
1707
1753
  FindMatchesMetrics.struct_class = Types::FindMatchesMetrics
1708
1754
 
1709
1755
  FindMatchesParameters.add_member(:primary_key_column_name, Shapes::ShapeRef.new(shape: ColumnNameString, location_name: "PrimaryKeyColumnName"))
@@ -1824,7 +1870,7 @@ module Aws::Glue
1824
1870
 
1825
1871
  GetDatabasesRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
1826
1872
  GetDatabasesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
1827
- GetDatabasesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PageSize, location_name: "MaxResults"))
1873
+ GetDatabasesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: CatalogGetterPageSize, location_name: "MaxResults"))
1828
1874
  GetDatabasesRequest.add_member(:resource_share_type, Shapes::ShapeRef.new(shape: ResourceShareType, location_name: "ResourceShareType"))
1829
1875
  GetDatabasesRequest.struct_class = Types::GetDatabasesRequest
1830
1876
 
@@ -1986,6 +2032,7 @@ module Aws::Glue
1986
2032
  GetPartitionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
1987
2033
  GetPartitionsRequest.add_member(:segment, Shapes::ShapeRef.new(shape: Segment, location_name: "Segment"))
1988
2034
  GetPartitionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PageSize, location_name: "MaxResults"))
2035
+ GetPartitionsRequest.add_member(:exclude_column_schema, Shapes::ShapeRef.new(shape: BooleanNullable, location_name: "ExcludeColumnSchema"))
1989
2036
  GetPartitionsRequest.struct_class = Types::GetPartitionsRequest
1990
2037
 
1991
2038
  GetPartitionsResponse.add_member(:partitions, Shapes::ShapeRef.new(shape: PartitionList, location_name: "Partitions"))
@@ -2123,7 +2170,7 @@ module Aws::Glue
2123
2170
  GetTableVersionsRequest.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
2124
2171
  GetTableVersionsRequest.add_member(:table_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "TableName"))
2125
2172
  GetTableVersionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
2126
- GetTableVersionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PageSize, location_name: "MaxResults"))
2173
+ GetTableVersionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: CatalogGetterPageSize, location_name: "MaxResults"))
2127
2174
  GetTableVersionsRequest.struct_class = Types::GetTableVersionsRequest
2128
2175
 
2129
2176
  GetTableVersionsResponse.add_member(:table_versions, Shapes::ShapeRef.new(shape: GetTableVersionsList, location_name: "TableVersions"))
@@ -2134,7 +2181,7 @@ module Aws::Glue
2134
2181
  GetTablesRequest.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
2135
2182
  GetTablesRequest.add_member(:expression, Shapes::ShapeRef.new(shape: FilterString, location_name: "Expression"))
2136
2183
  GetTablesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
2137
- GetTablesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PageSize, location_name: "MaxResults"))
2184
+ GetTablesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: CatalogGetterPageSize, location_name: "MaxResults"))
2138
2185
  GetTablesRequest.struct_class = Types::GetTablesRequest
2139
2186
 
2140
2187
  GetTablesResponse.add_member(:table_list, Shapes::ShapeRef.new(shape: TableList, location_name: "TableList"))
@@ -2174,7 +2221,7 @@ module Aws::Glue
2174
2221
  GetUserDefinedFunctionsRequest.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, location_name: "DatabaseName"))
2175
2222
  GetUserDefinedFunctionsRequest.add_member(:pattern, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Pattern"))
2176
2223
  GetUserDefinedFunctionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
2177
- GetUserDefinedFunctionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PageSize, location_name: "MaxResults"))
2224
+ GetUserDefinedFunctionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: CatalogGetterPageSize, location_name: "MaxResults"))
2178
2225
  GetUserDefinedFunctionsRequest.struct_class = Types::GetUserDefinedFunctionsRequest
2179
2226
 
2180
2227
  GetUserDefinedFunctionsResponse.add_member(:user_defined_functions, Shapes::ShapeRef.new(shape: UserDefinedFunctionList, location_name: "UserDefinedFunctions"))
@@ -2385,6 +2432,9 @@ module Aws::Glue
2385
2432
  LastCrawlInfo.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "StartTime"))
2386
2433
  LastCrawlInfo.struct_class = Types::LastCrawlInfo
2387
2434
 
2435
+ LineageConfiguration.add_member(:crawler_lineage_settings, Shapes::ShapeRef.new(shape: CrawlerLineageSettings, location_name: "CrawlerLineageSettings"))
2436
+ LineageConfiguration.struct_class = Types::LineageConfiguration
2437
+
2388
2438
  ListCrawlersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PageSize, location_name: "MaxResults"))
2389
2439
  ListCrawlersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
2390
2440
  ListCrawlersRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "Tags"))
@@ -2602,6 +2652,7 @@ module Aws::Glue
2602
2652
  PartitionIndexDescriptor.add_member(:index_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "IndexName"))
2603
2653
  PartitionIndexDescriptor.add_member(:keys, Shapes::ShapeRef.new(shape: KeySchemaElementList, required: true, location_name: "Keys"))
2604
2654
  PartitionIndexDescriptor.add_member(:index_status, Shapes::ShapeRef.new(shape: PartitionIndexStatus, required: true, location_name: "IndexStatus"))
2655
+ PartitionIndexDescriptor.add_member(:backfill_errors, Shapes::ShapeRef.new(shape: BackfillErrors, location_name: "BackfillErrors"))
2605
2656
  PartitionIndexDescriptor.struct_class = Types::PartitionIndexDescriptor
2606
2657
 
2607
2658
  PartitionIndexDescriptorList.member = Shapes::ShapeRef.new(shape: PartitionIndexDescriptor)
@@ -3209,6 +3260,7 @@ module Aws::Glue
3209
3260
  UpdateCrawlerRequest.add_member(:table_prefix, Shapes::ShapeRef.new(shape: TablePrefix, location_name: "TablePrefix"))
3210
3261
  UpdateCrawlerRequest.add_member(:schema_change_policy, Shapes::ShapeRef.new(shape: SchemaChangePolicy, location_name: "SchemaChangePolicy"))
3211
3262
  UpdateCrawlerRequest.add_member(:recrawl_policy, Shapes::ShapeRef.new(shape: RecrawlPolicy, location_name: "RecrawlPolicy"))
3263
+ UpdateCrawlerRequest.add_member(:lineage_configuration, Shapes::ShapeRef.new(shape: LineageConfiguration, location_name: "LineageConfiguration"))
3212
3264
  UpdateCrawlerRequest.add_member(:configuration, Shapes::ShapeRef.new(shape: CrawlerConfiguration, location_name: "Configuration"))
3213
3265
  UpdateCrawlerRequest.add_member(:crawler_security_configuration, Shapes::ShapeRef.new(shape: CrawlerSecurityConfiguration, location_name: "CrawlerSecurityConfiguration"))
3214
3266
  UpdateCrawlerRequest.struct_class = Types::UpdateCrawlerRequest
@@ -3730,6 +3782,21 @@ module Aws::Glue
3730
3782
  o.errors << Shapes::ShapeRef.new(shape: GlueEncryptionException)
3731
3783
  end)
3732
3784
 
3785
+ api.add_operation(:create_partition_index, Seahorse::Model::Operation.new.tap do |o|
3786
+ o.name = "CreatePartitionIndex"
3787
+ o.http_method = "POST"
3788
+ o.http_request_uri = "/"
3789
+ o.input = Shapes::ShapeRef.new(shape: CreatePartitionIndexRequest)
3790
+ o.output = Shapes::ShapeRef.new(shape: CreatePartitionIndexResponse)
3791
+ o.errors << Shapes::ShapeRef.new(shape: AlreadyExistsException)
3792
+ o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
3793
+ o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
3794
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNumberLimitExceededException)
3795
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
3796
+ o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
3797
+ o.errors << Shapes::ShapeRef.new(shape: GlueEncryptionException)
3798
+ end)
3799
+
3733
3800
  api.add_operation(:create_registry, Seahorse::Model::Operation.new.tap do |o|
3734
3801
  o.name = "CreateRegistry"
3735
3802
  o.http_method = "POST"
@@ -3958,6 +4025,20 @@ module Aws::Glue
3958
4025
  o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
3959
4026
  end)
3960
4027
 
4028
+ api.add_operation(:delete_partition_index, Seahorse::Model::Operation.new.tap do |o|
4029
+ o.name = "DeletePartitionIndex"
4030
+ o.http_method = "POST"
4031
+ o.http_request_uri = "/"
4032
+ o.input = Shapes::ShapeRef.new(shape: DeletePartitionIndexRequest)
4033
+ o.output = Shapes::ShapeRef.new(shape: DeletePartitionIndexResponse)
4034
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
4035
+ o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
4036
+ o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
4037
+ o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
4038
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
4039
+ o.errors << Shapes::ShapeRef.new(shape: GlueEncryptionException)
4040
+ end)
4041
+
3961
4042
  api.add_operation(:delete_registry, Seahorse::Model::Operation.new.tap do |o|
3962
4043
  o.name = "DeleteRegistry"
3963
4044
  o.http_method = "POST"
@@ -114,6 +114,45 @@ module Aws::Glue
114
114
  include Aws::Structure
115
115
  end
116
116
 
117
+ # A list of errors that can occur when registering partition indexes for
118
+ # an existing table.
119
+ #
120
+ # These errors give the details about why an index registration failed
121
+ # and provide a limited number of partitions in the response, so that
122
+ # you can fix the partitions at fault and try registering the index
123
+ # again. The most common set of errors that can occur are categorized as
124
+ # follows:
125
+ #
126
+ # * EncryptedPartitionError: The partitions are encrypted.
127
+ #
128
+ # * InvalidPartitionTypeDataError: The partition value doesn't match
129
+ # the data type for that partition column.
130
+ #
131
+ # * MissingPartitionValueError: The partitions are encrypted.
132
+ #
133
+ # * UnsupportedPartitionCharacterError: Characters inside the partition
134
+ # value are not supported. For example: U+0000 , U+0001, U+0002.
135
+ #
136
+ # * InternalError: Any error which does not belong to other error codes.
137
+ #
138
+ # @!attribute [rw] code
139
+ # The error code for an error that occurred when registering partition
140
+ # indexes for an existing table.
141
+ # @return [String]
142
+ #
143
+ # @!attribute [rw] partitions
144
+ # A list of a limited number of partitions in the response.
145
+ # @return [Array<Types::PartitionValueList>]
146
+ #
147
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/BackfillError AWS API Documentation
148
+ #
149
+ class BackfillError < Struct.new(
150
+ :code,
151
+ :partitions)
152
+ SENSITIVE = []
153
+ include Aws::Structure
154
+ end
155
+
117
156
  # @note When making an API call, you may pass BatchCreatePartitionRequest
118
157
  # data as a hash:
119
158
  #
@@ -1467,6 +1506,30 @@ module Aws::Glue
1467
1506
  include Aws::Structure
1468
1507
  end
1469
1508
 
1509
+ # A structure containing the column name and column importance score for
1510
+ # a column.
1511
+ #
1512
+ # Column importance helps you understand how columns contribute to your
1513
+ # model, by identifying which columns in your records are more important
1514
+ # than others.
1515
+ #
1516
+ # @!attribute [rw] column_name
1517
+ # The name of a column.
1518
+ # @return [String]
1519
+ #
1520
+ # @!attribute [rw] importance
1521
+ # The column importance score for the column, as a decimal.
1522
+ # @return [Float]
1523
+ #
1524
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ColumnImportance AWS API Documentation
1525
+ #
1526
+ class ColumnImportance < Struct.new(
1527
+ :column_name,
1528
+ :importance)
1529
+ SENSITIVE = []
1530
+ include Aws::Structure
1531
+ end
1532
+
1470
1533
  # Represents the generated column-level statistics for a table or
1471
1534
  # partition.
1472
1535
  #
@@ -1924,6 +1987,18 @@ module Aws::Glue
1924
1987
  # validation of the CA cert file or not. AWS Glue validates for
1925
1988
  # three algorithms: SHA256withRSA, SHA384withRSA and SHA512withRSA.
1926
1989
  # Default value is "false".
1990
+ #
1991
+ # * `SECRET_ID` - The secret ID used for the secret manager of
1992
+ # credentials.
1993
+ #
1994
+ # * `CONNECTOR_URL` - The connector URL for a MARKETPLACE or CUSTOM
1995
+ # connection.
1996
+ #
1997
+ # * `CONNECTOR_TYPE` - The connector type for a MARKETPLACE or CUSTOM
1998
+ # connection.
1999
+ #
2000
+ # * `CONNECTOR_CLASS_NAME` - The connector class name for a
2001
+ # MARKETPLACE or CUSTOM connection.
1927
2002
  # @return [Hash<String,String>]
1928
2003
  #
1929
2004
  # @!attribute [rw] physical_connection_requirements
@@ -1969,7 +2044,7 @@ module Aws::Glue
1969
2044
  # {
1970
2045
  # name: "NameString", # required
1971
2046
  # description: "DescriptionString",
1972
- # connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK
2047
+ # connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK, MARKETPLACE, CUSTOM
1973
2048
  # match_criteria: ["NameString"],
1974
2049
  # connection_properties: { # required
1975
2050
  # "HOST" => "ValueString",
@@ -2004,6 +2079,14 @@ module Aws::Glue
2004
2079
  # * `NETWORK` - Designates a network connection to a data source
2005
2080
  # within an Amazon Virtual Private Cloud environment (Amazon VPC).
2006
2081
  #
2082
+ # * `MARKETPLACE` - Uses configuration settings contained in a
2083
+ # connector purchased from AWS Marketplace to read from and write to
2084
+ # data stores that are not natively supported by AWS Glue.
2085
+ #
2086
+ # * `CUSTOM` - Uses configuration settings contained in a custom
2087
+ # connector to read from and write to data stores that are not
2088
+ # natively supported by AWS Glue.
2089
+ #
2007
2090
  # SFTP is not supported.
2008
2091
  # @return [String]
2009
2092
  #
@@ -2187,6 +2270,11 @@ module Aws::Glue
2187
2270
  # crawler.
2188
2271
  # @return [Types::SchemaChangePolicy]
2189
2272
  #
2273
+ # @!attribute [rw] lineage_configuration
2274
+ # A configuration that specifies whether data lineage is enabled for
2275
+ # the crawler.
2276
+ # @return [Types::LineageConfiguration]
2277
+ #
2190
2278
  # @!attribute [rw] state
2191
2279
  # Indicates whether the crawler is running, or whether a run is
2192
2280
  # pending.
@@ -2248,6 +2336,7 @@ module Aws::Glue
2248
2336
  :classifiers,
2249
2337
  :recrawl_policy,
2250
2338
  :schema_change_policy,
2339
+ :lineage_configuration,
2251
2340
  :state,
2252
2341
  :table_prefix,
2253
2342
  :schedule,
@@ -2512,7 +2601,7 @@ module Aws::Glue
2512
2601
  # connection_input: { # required
2513
2602
  # name: "NameString", # required
2514
2603
  # description: "DescriptionString",
2515
- # connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK
2604
+ # connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK, MARKETPLACE, CUSTOM
2516
2605
  # match_criteria: ["NameString"],
2517
2606
  # connection_properties: { # required
2518
2607
  # "HOST" => "ValueString",
@@ -2601,6 +2690,9 @@ module Aws::Glue
2601
2690
  # recrawl_policy: {
2602
2691
  # recrawl_behavior: "CRAWL_EVERYTHING", # accepts CRAWL_EVERYTHING, CRAWL_NEW_FOLDERS_ONLY
2603
2692
  # },
2693
+ # lineage_configuration: {
2694
+ # crawler_lineage_settings: "ENABLE", # accepts ENABLE, DISABLE
2695
+ # },
2604
2696
  # configuration: "CrawlerConfiguration",
2605
2697
  # crawler_security_configuration: "CrawlerSecurityConfiguration",
2606
2698
  # tags: {
@@ -2660,6 +2752,10 @@ module Aws::Glue
2660
2752
  # or to crawl only folders that were added since the last crawler run.
2661
2753
  # @return [Types::RecrawlPolicy]
2662
2754
  #
2755
+ # @!attribute [rw] lineage_configuration
2756
+ # Specifies data lineage configuration settings for the crawler.
2757
+ # @return [Types::LineageConfiguration]
2758
+ #
2663
2759
  # @!attribute [rw] configuration
2664
2760
  # Crawler configuration information. This versioned JSON string allows
2665
2761
  # users to specify aspects of a crawler's behavior. For more
@@ -2698,6 +2794,7 @@ module Aws::Glue
2698
2794
  :table_prefix,
2699
2795
  :schema_change_policy,
2700
2796
  :recrawl_policy,
2797
+ :lineage_configuration,
2701
2798
  :configuration,
2702
2799
  :crawler_security_configuration,
2703
2800
  :tags)
@@ -3664,6 +3761,53 @@ module Aws::Glue
3664
3761
  include Aws::Structure
3665
3762
  end
3666
3763
 
3764
+ # @note When making an API call, you may pass CreatePartitionIndexRequest
3765
+ # data as a hash:
3766
+ #
3767
+ # {
3768
+ # catalog_id: "CatalogIdString",
3769
+ # database_name: "NameString", # required
3770
+ # table_name: "NameString", # required
3771
+ # partition_index: { # required
3772
+ # keys: ["NameString"], # required
3773
+ # index_name: "NameString", # required
3774
+ # },
3775
+ # }
3776
+ #
3777
+ # @!attribute [rw] catalog_id
3778
+ # The catalog ID where the table resides.
3779
+ # @return [String]
3780
+ #
3781
+ # @!attribute [rw] database_name
3782
+ # Specifies the name of a database in which you want to create a
3783
+ # partition index.
3784
+ # @return [String]
3785
+ #
3786
+ # @!attribute [rw] table_name
3787
+ # Specifies the name of a table in which you want to create a
3788
+ # partition index.
3789
+ # @return [String]
3790
+ #
3791
+ # @!attribute [rw] partition_index
3792
+ # Specifies a `PartitionIndex` structure to create a partition index
3793
+ # in an existing table.
3794
+ # @return [Types::PartitionIndex]
3795
+ #
3796
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreatePartitionIndexRequest AWS API Documentation
3797
+ #
3798
+ class CreatePartitionIndexRequest < Struct.new(
3799
+ :catalog_id,
3800
+ :database_name,
3801
+ :table_name,
3802
+ :partition_index)
3803
+ SENSITIVE = []
3804
+ include Aws::Structure
3805
+ end
3806
+
3807
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreatePartitionIndexResponse AWS API Documentation
3808
+ #
3809
+ class CreatePartitionIndexResponse < Aws::EmptyStructure; end
3810
+
3667
3811
  # @note When making an API call, you may pass CreatePartitionRequest
3668
3812
  # data as a hash:
3669
3813
  #
@@ -5217,6 +5361,49 @@ module Aws::Glue
5217
5361
  include Aws::Structure
5218
5362
  end
5219
5363
 
5364
+ # @note When making an API call, you may pass DeletePartitionIndexRequest
5365
+ # data as a hash:
5366
+ #
5367
+ # {
5368
+ # catalog_id: "CatalogIdString",
5369
+ # database_name: "NameString", # required
5370
+ # table_name: "NameString", # required
5371
+ # index_name: "NameString", # required
5372
+ # }
5373
+ #
5374
+ # @!attribute [rw] catalog_id
5375
+ # The catalog ID where the table resides.
5376
+ # @return [String]
5377
+ #
5378
+ # @!attribute [rw] database_name
5379
+ # Specifies the name of a database from which you want to delete a
5380
+ # partition index.
5381
+ # @return [String]
5382
+ #
5383
+ # @!attribute [rw] table_name
5384
+ # Specifies the name of a table from which you want to delete a
5385
+ # partition index.
5386
+ # @return [String]
5387
+ #
5388
+ # @!attribute [rw] index_name
5389
+ # The name of the partition index to be deleted.
5390
+ # @return [String]
5391
+ #
5392
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeletePartitionIndexRequest AWS API Documentation
5393
+ #
5394
+ class DeletePartitionIndexRequest < Struct.new(
5395
+ :catalog_id,
5396
+ :database_name,
5397
+ :table_name,
5398
+ :index_name)
5399
+ SENSITIVE = []
5400
+ include Aws::Structure
5401
+ end
5402
+
5403
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeletePartitionIndexResponse AWS API Documentation
5404
+ #
5405
+ class DeletePartitionIndexResponse < Aws::EmptyStructure; end
5406
+
5220
5407
  # @note When making an API call, you may pass DeletePartitionRequest
5221
5408
  # data as a hash:
5222
5409
  #
@@ -6259,6 +6446,11 @@ module Aws::Glue
6259
6446
  # [1]: https://en.wikipedia.org/wiki/Confusion_matrix
6260
6447
  # @return [Types::ConfusionMatrix]
6261
6448
  #
6449
+ # @!attribute [rw] column_importances
6450
+ # A list of `ColumnImportance` structures containing column importance
6451
+ # metrics, sorted in order of descending importance.
6452
+ # @return [Array<Types::ColumnImportance>]
6453
+ #
6262
6454
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/FindMatchesMetrics AWS API Documentation
6263
6455
  #
6264
6456
  class FindMatchesMetrics < Struct.new(
@@ -6266,7 +6458,8 @@ module Aws::Glue
6266
6458
  :precision,
6267
6459
  :recall,
6268
6460
  :f1,
6269
- :confusion_matrix)
6461
+ :confusion_matrix,
6462
+ :column_importances)
6270
6463
  SENSITIVE = []
6271
6464
  include Aws::Structure
6272
6465
  end
@@ -6645,7 +6838,7 @@ module Aws::Glue
6645
6838
  #
6646
6839
  # {
6647
6840
  # match_criteria: ["NameString"],
6648
- # connection_type: "JDBC", # accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK
6841
+ # connection_type: "JDBC", # accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK, MARKETPLACE, CUSTOM
6649
6842
  # }
6650
6843
  #
6651
6844
  # @!attribute [rw] match_criteria
@@ -6673,7 +6866,7 @@ module Aws::Glue
6673
6866
  # catalog_id: "CatalogIdString",
6674
6867
  # filter: {
6675
6868
  # match_criteria: ["NameString"],
6676
- # connection_type: "JDBC", # accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK
6869
+ # connection_type: "JDBC", # accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK, MARKETPLACE, CUSTOM
6677
6870
  # },
6678
6871
  # hide_password: false,
6679
6872
  # next_token: "Token",
@@ -7889,6 +8082,7 @@ module Aws::Glue
7889
8082
  # total_segments: 1, # required
7890
8083
  # },
7891
8084
  # max_results: 1,
8085
+ # exclude_column_schema: false,
7892
8086
  # }
7893
8087
  #
7894
8088
  # @!attribute [rw] catalog_id
@@ -8014,6 +8208,9 @@ module Aws::Glue
8014
8208
  # The maximum number of partitions to return in a single response.
8015
8209
  # @return [Integer]
8016
8210
  #
8211
+ # @!attribute [rw] exclude_column_schema
8212
+ # @return [Boolean]
8213
+ #
8017
8214
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetPartitionsRequest AWS API Documentation
8018
8215
  #
8019
8216
  class GetPartitionsRequest < Struct.new(
@@ -8023,7 +8220,8 @@ module Aws::Glue
8023
8220
  :expression,
8024
8221
  :next_token,
8025
8222
  :segment,
8026
- :max_results)
8223
+ :max_results,
8224
+ :exclude_column_schema)
8027
8225
  SENSITIVE = []
8028
8226
  include Aws::Structure
8029
8227
  end
@@ -10488,6 +10686,32 @@ module Aws::Glue
10488
10686
  include Aws::Structure
10489
10687
  end
10490
10688
 
10689
+ # Specifies data lineage configuration settings for the crawler.
10690
+ #
10691
+ # @note When making an API call, you may pass LineageConfiguration
10692
+ # data as a hash:
10693
+ #
10694
+ # {
10695
+ # crawler_lineage_settings: "ENABLE", # accepts ENABLE, DISABLE
10696
+ # }
10697
+ #
10698
+ # @!attribute [rw] crawler_lineage_settings
10699
+ # Specifies whether data lineage is enabled for the crawler. Valid
10700
+ # values are:
10701
+ #
10702
+ # * ENABLE: enables data lineage for the crawler
10703
+ #
10704
+ # * DISABLE: disables data lineage for the crawler
10705
+ # @return [String]
10706
+ #
10707
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/LineageConfiguration AWS API Documentation
10708
+ #
10709
+ class LineageConfiguration < Struct.new(
10710
+ :crawler_lineage_settings)
10711
+ SENSITIVE = []
10712
+ include Aws::Structure
10713
+ end
10714
+
10491
10715
  # @note When making an API call, you may pass ListCrawlersRequest
10492
10716
  # data as a hash:
10493
10717
  #
@@ -11699,14 +11923,31 @@ module Aws::Glue
11699
11923
  #
11700
11924
  # @!attribute [rw] index_status
11701
11925
  # The status of the partition index.
11926
+ #
11927
+ # The possible statuses are:
11928
+ #
11929
+ # * CREATING: The index is being created. When an index is in a
11930
+ # CREATING state, the index or its table cannot be deleted.
11931
+ #
11932
+ # * ACTIVE: The index creation succeeds.
11933
+ #
11934
+ # * FAILED: The index creation fails.
11935
+ #
11936
+ # * DELETING: The index is deleted from the list of indexes.
11702
11937
  # @return [String]
11703
11938
  #
11939
+ # @!attribute [rw] backfill_errors
11940
+ # A list of errors that can occur when registering partition indexes
11941
+ # for an existing table.
11942
+ # @return [Array<Types::BackfillError>]
11943
+ #
11704
11944
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/PartitionIndexDescriptor AWS API Documentation
11705
11945
  #
11706
11946
  class PartitionIndexDescriptor < Struct.new(
11707
11947
  :index_name,
11708
11948
  :keys,
11709
- :index_status)
11949
+ :index_status,
11950
+ :backfill_errors)
11710
11951
  SENSITIVE = []
11711
11952
  include Aws::Structure
11712
11953
  end
@@ -12907,6 +13148,8 @@ module Aws::Glue
12907
13148
  include Aws::Structure
12908
13149
  end
12909
13150
 
13151
+ # The unique ID of the schema in the AWS Glue schema registry.
13152
+ #
12910
13153
  # @note When making an API call, you may pass SchemaId
12911
13154
  # data as a hash:
12912
13155
  #
@@ -12917,12 +13160,17 @@ module Aws::Glue
12917
13160
  # }
12918
13161
  #
12919
13162
  # @!attribute [rw] schema_arn
13163
+ # The Amazon Resource Name (ARN) of the schema. One of `SchemaArn` or
13164
+ # `SchemaName` has to be provided.
12920
13165
  # @return [String]
12921
13166
  #
12922
13167
  # @!attribute [rw] schema_name
13168
+ # The name of the schema. One of `SchemaArn` or `SchemaName` has to be
13169
+ # provided.
12923
13170
  # @return [String]
12924
13171
  #
12925
13172
  # @!attribute [rw] registry_name
13173
+ # The name of the schema registry that contains the schema.
12926
13174
  # @return [String]
12927
13175
  #
12928
13176
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/SchemaId AWS API Documentation
@@ -13073,6 +13321,8 @@ module Aws::Glue
13073
13321
  include Aws::Structure
13074
13322
  end
13075
13323
 
13324
+ # A structure containing the schema version information.
13325
+ #
13076
13326
  # @note When making an API call, you may pass SchemaVersionNumber
13077
13327
  # data as a hash:
13078
13328
  #
@@ -13082,9 +13332,11 @@ module Aws::Glue
13082
13332
  # }
13083
13333
  #
13084
13334
  # @!attribute [rw] latest_version
13335
+ # The latest version available for the schema.
13085
13336
  # @return [Boolean]
13086
13337
  #
13087
13338
  # @!attribute [rw] version_number
13339
+ # The version number of the schema.
13088
13340
  # @return [Integer]
13089
13341
  #
13090
13342
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/SchemaVersionNumber AWS API Documentation
@@ -15316,7 +15568,7 @@ module Aws::Glue
15316
15568
  # connection_input: { # required
15317
15569
  # name: "NameString", # required
15318
15570
  # description: "DescriptionString",
15319
- # connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK
15571
+ # connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK, MARKETPLACE, CUSTOM
15320
15572
  # match_criteria: ["NameString"],
15321
15573
  # connection_properties: { # required
15322
15574
  # "HOST" => "ValueString",
@@ -15411,6 +15663,9 @@ module Aws::Glue
15411
15663
  # recrawl_policy: {
15412
15664
  # recrawl_behavior: "CRAWL_EVERYTHING", # accepts CRAWL_EVERYTHING, CRAWL_NEW_FOLDERS_ONLY
15413
15665
  # },
15666
+ # lineage_configuration: {
15667
+ # crawler_lineage_settings: "ENABLE", # accepts ENABLE, DISABLE
15668
+ # },
15414
15669
  # configuration: "CrawlerConfiguration",
15415
15670
  # crawler_security_configuration: "CrawlerSecurityConfiguration",
15416
15671
  # }
@@ -15467,6 +15722,10 @@ module Aws::Glue
15467
15722
  # or to crawl only folders that were added since the last crawler run.
15468
15723
  # @return [Types::RecrawlPolicy]
15469
15724
  #
15725
+ # @!attribute [rw] lineage_configuration
15726
+ # Specifies data lineage configuration settings for the crawler.
15727
+ # @return [Types::LineageConfiguration]
15728
+ #
15470
15729
  # @!attribute [rw] configuration
15471
15730
  # Crawler configuration information. This versioned JSON string allows
15472
15731
  # users to specify aspects of a crawler's behavior. For more
@@ -15495,6 +15754,7 @@ module Aws::Glue
15495
15754
  :table_prefix,
15496
15755
  :schema_change_policy,
15497
15756
  :recrawl_policy,
15757
+ :lineage_configuration,
15498
15758
  :configuration,
15499
15759
  :crawler_security_configuration)
15500
15760
  SENSITIVE = []
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-glue
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.79.0
4
+ version: 1.84.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-11-19 00:00:00.000000000 Z
11
+ date: 2021-02-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.109.0
22
+ version: 3.112.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.109.0
32
+ version: 3.112.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement