aws-sdk-glue 1.217.0 → 1.219.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +28 -3
- data/lib/aws-sdk-glue/client_api.rb +19 -0
- data/lib/aws-sdk-glue/types.rb +120 -5
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +4 -2
- data/sig/types.rbs +14 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 129e6fa77a9380693975c12f80ff0bc90ac9e970470cb5c382c150dd9bd5b706
|
4
|
+
data.tar.gz: 59ab5ad44d7f80c8703689d5217477a0661be97738686fa95ebb1916a9024724
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 34ed4b5c1c8b6e37b6818051ac9af26488691803dcd05217179afc041e29126268b5802283844a38af4077fff52260f1fb4bab9a21240bd64d0cbc9335dfcee4
|
7
|
+
data.tar.gz: c4e923f0b5000aea4aa8e454da0b1286695f946d1e1e8d8af25491475c6b0deae3eb582efb68c4120dcbc4ab3dfaee1123941b61e8160c45eb7e329fe4c08a63
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.219.0 (2025-05-22)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release supports additional ConversionSpec parameter as part of IntegrationPartition Structure in CreateIntegrationTableProperty API. This parameter is referred to apply appropriate column transformation for columns that are used for timestamp based partitioning
|
8
|
+
|
9
|
+
1.218.0 (2025-05-20)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Enhanced AWS Glue ListConnectionTypes API Model with additional metadata fields.
|
13
|
+
|
4
14
|
1.217.0 (2025-05-16)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.219.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -3960,7 +3960,13 @@ module Aws::Glue
|
|
3960
3960
|
# `TargetTableConfig` respectively.
|
3961
3961
|
#
|
3962
3962
|
# @option params [required, String] :resource_arn
|
3963
|
-
# The
|
3963
|
+
# The Amazon Resource Name (ARN) of the target table for which to create
|
3964
|
+
# integration table properties. Currently, this API only supports
|
3965
|
+
# creating integration table properties for target tables, and the
|
3966
|
+
# provided ARN should be the ARN of the target table in the Glue Data
|
3967
|
+
# Catalog. Support for creating integration table properties for source
|
3968
|
+
# connections (using the connection ARN) is not yet implemented and will
|
3969
|
+
# be added in a future release.
|
3964
3970
|
#
|
3965
3971
|
# @option params [required, String] :table_name
|
3966
3972
|
# The name of the table to be replicated.
|
@@ -3992,6 +3998,7 @@ module Aws::Glue
|
|
3992
3998
|
# {
|
3993
3999
|
# field_name: "String128",
|
3994
4000
|
# function_spec: "String128",
|
4001
|
+
# conversion_spec: "String128",
|
3995
4002
|
# },
|
3996
4003
|
# ],
|
3997
4004
|
# target_table_name: "String128",
|
@@ -9074,7 +9081,13 @@ module Aws::Glue
|
|
9074
9081
|
# properties for filtering and partition for source and target tables.
|
9075
9082
|
#
|
9076
9083
|
# @option params [required, String] :resource_arn
|
9077
|
-
# The
|
9084
|
+
# The Amazon Resource Name (ARN) of the target table for which to
|
9085
|
+
# retrieve integration table properties. Currently, this API only
|
9086
|
+
# supports retrieving properties for target tables, and the provided ARN
|
9087
|
+
# should be the ARN of the target table in the Glue Data Catalog.
|
9088
|
+
# Support for retrieving integration table properties for source
|
9089
|
+
# connections (using the connection ARN) is not yet implemented and will
|
9090
|
+
# be added in a future release.
|
9078
9091
|
#
|
9079
9092
|
# @option params [required, String] :table_name
|
9080
9093
|
# The name of the table to be replicated.
|
@@ -9107,6 +9120,7 @@ module Aws::Glue
|
|
9107
9120
|
# resp.target_table_config.partition_spec #=> Array
|
9108
9121
|
# resp.target_table_config.partition_spec[0].field_name #=> String
|
9109
9122
|
# resp.target_table_config.partition_spec[0].function_spec #=> String
|
9123
|
+
# resp.target_table_config.partition_spec[0].conversion_spec #=> String
|
9110
9124
|
# resp.target_table_config.target_table_name #=> String
|
9111
9125
|
#
|
9112
9126
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetIntegrationTableProperties AWS API Documentation
|
@@ -14941,13 +14955,23 @@ module Aws::Glue
|
|
14941
14955
|
#
|
14942
14956
|
# resp.connection_types #=> Array
|
14943
14957
|
# resp.connection_types[0].connection_type #=> String, one of "JDBC", "SFTP", "MONGODB", "KAFKA", "NETWORK", "MARKETPLACE", "CUSTOM", "SALESFORCE", "VIEW_VALIDATION_REDSHIFT", "VIEW_VALIDATION_ATHENA", "GOOGLEADS", "GOOGLESHEETS", "GOOGLEANALYTICS4", "SERVICENOW", "MARKETO", "SAPODATA", "ZENDESK", "JIRACLOUD", "NETSUITEERP", "HUBSPOT", "FACEBOOKADS", "INSTAGRAMADS", "ZOHOCRM", "SALESFORCEPARDOT", "SALESFORCEMARKETINGCLOUD", "SLACK", "STRIPE", "INTERCOM", "SNAPCHATADS"
|
14958
|
+
# resp.connection_types[0].display_name #=> String
|
14959
|
+
# resp.connection_types[0].vendor #=> String
|
14944
14960
|
# resp.connection_types[0].description #=> String
|
14961
|
+
# resp.connection_types[0].categories #=> Array
|
14962
|
+
# resp.connection_types[0].categories[0] #=> String
|
14945
14963
|
# resp.connection_types[0].capabilities.supported_authentication_types #=> Array
|
14946
14964
|
# resp.connection_types[0].capabilities.supported_authentication_types[0] #=> String, one of "BASIC", "OAUTH2", "CUSTOM", "IAM"
|
14947
14965
|
# resp.connection_types[0].capabilities.supported_data_operations #=> Array
|
14948
14966
|
# resp.connection_types[0].capabilities.supported_data_operations[0] #=> String, one of "READ", "WRITE"
|
14949
14967
|
# resp.connection_types[0].capabilities.supported_compute_environments #=> Array
|
14950
14968
|
# resp.connection_types[0].capabilities.supported_compute_environments[0] #=> String, one of "SPARK", "ATHENA", "PYTHON"
|
14969
|
+
# resp.connection_types[0].logo_url #=> String
|
14970
|
+
# resp.connection_types[0].connection_type_variants #=> Array
|
14971
|
+
# resp.connection_types[0].connection_type_variants[0].connection_type_variant_name #=> String
|
14972
|
+
# resp.connection_types[0].connection_type_variants[0].display_name #=> String
|
14973
|
+
# resp.connection_types[0].connection_type_variants[0].description #=> String
|
14974
|
+
# resp.connection_types[0].connection_type_variants[0].logo_url #=> String
|
14951
14975
|
# resp.next_token #=> String
|
14952
14976
|
#
|
14953
14977
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListConnectionTypes AWS API Documentation
|
@@ -19269,6 +19293,7 @@ module Aws::Glue
|
|
19269
19293
|
# {
|
19270
19294
|
# field_name: "String128",
|
19271
19295
|
# function_spec: "String128",
|
19296
|
+
# conversion_spec: "String128",
|
19272
19297
|
# },
|
19273
19298
|
# ],
|
19274
19299
|
# target_table_name: "String128",
|
@@ -20264,7 +20289,7 @@ module Aws::Glue
|
|
20264
20289
|
tracer: tracer
|
20265
20290
|
)
|
20266
20291
|
context[:gem_name] = 'aws-sdk-glue'
|
20267
|
-
context[:gem_version] = '1.
|
20292
|
+
context[:gem_version] = '1.219.0'
|
20268
20293
|
Seahorse::Client::Request.new(handlers, context)
|
20269
20294
|
end
|
20270
20295
|
|
@@ -264,6 +264,8 @@ module Aws::Glue
|
|
264
264
|
ConnectionType = Shapes::StringShape.new(name: 'ConnectionType')
|
265
265
|
ConnectionTypeBrief = Shapes::StructureShape.new(name: 'ConnectionTypeBrief')
|
266
266
|
ConnectionTypeList = Shapes::ListShape.new(name: 'ConnectionTypeList')
|
267
|
+
ConnectionTypeVariant = Shapes::StructureShape.new(name: 'ConnectionTypeVariant')
|
268
|
+
ConnectionTypeVariantList = Shapes::ListShape.new(name: 'ConnectionTypeVariantList')
|
267
269
|
ConnectionsList = Shapes::StructureShape.new(name: 'ConnectionsList')
|
268
270
|
ConnectorDataSource = Shapes::StructureShape.new(name: 'ConnectorDataSource')
|
269
271
|
ConnectorDataTarget = Shapes::StructureShape.new(name: 'ConnectorDataTarget')
|
@@ -525,6 +527,7 @@ module Aws::Glue
|
|
525
527
|
DirectKafkaSource = Shapes::StructureShape.new(name: 'DirectKafkaSource')
|
526
528
|
DirectKinesisSource = Shapes::StructureShape.new(name: 'DirectKinesisSource')
|
527
529
|
DirectSchemaChangePolicy = Shapes::StructureShape.new(name: 'DirectSchemaChangePolicy')
|
530
|
+
DisplayName = Shapes::StringShape.new(name: 'DisplayName')
|
528
531
|
Double = Shapes::FloatShape.new(name: 'Double')
|
529
532
|
DoubleColumnStatisticsData = Shapes::StructureShape.new(name: 'DoubleColumnStatisticsData')
|
530
533
|
DoubleValue = Shapes::FloatShape.new(name: 'DoubleValue')
|
@@ -1506,6 +1509,7 @@ module Aws::Glue
|
|
1506
1509
|
UpdatedTimestamp = Shapes::StringShape.new(name: 'UpdatedTimestamp')
|
1507
1510
|
UpsertRedshiftTargetOptions = Shapes::StructureShape.new(name: 'UpsertRedshiftTargetOptions')
|
1508
1511
|
UriString = Shapes::StringShape.new(name: 'UriString')
|
1512
|
+
UrlString = Shapes::StringShape.new(name: 'UrlString')
|
1509
1513
|
UsageProfileDefinition = Shapes::StructureShape.new(name: 'UsageProfileDefinition')
|
1510
1514
|
UsageProfileDefinitionList = Shapes::ListShape.new(name: 'UsageProfileDefinitionList')
|
1511
1515
|
UserDefinedFunction = Shapes::StructureShape.new(name: 'UserDefinedFunction')
|
@@ -1517,6 +1521,7 @@ module Aws::Glue
|
|
1517
1521
|
ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
|
1518
1522
|
ValueString = Shapes::StringShape.new(name: 'ValueString')
|
1519
1523
|
ValueStringList = Shapes::ListShape.new(name: 'ValueStringList')
|
1524
|
+
Vendor = Shapes::StringShape.new(name: 'Vendor')
|
1520
1525
|
VersionId = Shapes::IntegerShape.new(name: 'VersionId')
|
1521
1526
|
VersionLongNumber = Shapes::IntegerShape.new(name: 'VersionLongNumber')
|
1522
1527
|
VersionMismatchException = Shapes::StructureShape.new(name: 'VersionMismatchException')
|
@@ -2433,12 +2438,25 @@ module Aws::Glue
|
|
2433
2438
|
ConnectionStringList.member = Shapes::ShapeRef.new(shape: ConnectionString)
|
2434
2439
|
|
2435
2440
|
ConnectionTypeBrief.add_member(:connection_type, Shapes::ShapeRef.new(shape: ConnectionType, location_name: "ConnectionType"))
|
2441
|
+
ConnectionTypeBrief.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "DisplayName"))
|
2442
|
+
ConnectionTypeBrief.add_member(:vendor, Shapes::ShapeRef.new(shape: Vendor, location_name: "Vendor"))
|
2436
2443
|
ConnectionTypeBrief.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
2444
|
+
ConnectionTypeBrief.add_member(:categories, Shapes::ShapeRef.new(shape: ListOfString, location_name: "Categories"))
|
2437
2445
|
ConnectionTypeBrief.add_member(:capabilities, Shapes::ShapeRef.new(shape: Capabilities, location_name: "Capabilities"))
|
2446
|
+
ConnectionTypeBrief.add_member(:logo_url, Shapes::ShapeRef.new(shape: UrlString, location_name: "LogoUrl"))
|
2447
|
+
ConnectionTypeBrief.add_member(:connection_type_variants, Shapes::ShapeRef.new(shape: ConnectionTypeVariantList, location_name: "ConnectionTypeVariants"))
|
2438
2448
|
ConnectionTypeBrief.struct_class = Types::ConnectionTypeBrief
|
2439
2449
|
|
2440
2450
|
ConnectionTypeList.member = Shapes::ShapeRef.new(shape: ConnectionTypeBrief)
|
2441
2451
|
|
2452
|
+
ConnectionTypeVariant.add_member(:connection_type_variant_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "ConnectionTypeVariantName"))
|
2453
|
+
ConnectionTypeVariant.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "DisplayName"))
|
2454
|
+
ConnectionTypeVariant.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
2455
|
+
ConnectionTypeVariant.add_member(:logo_url, Shapes::ShapeRef.new(shape: UrlString, location_name: "LogoUrl"))
|
2456
|
+
ConnectionTypeVariant.struct_class = Types::ConnectionTypeVariant
|
2457
|
+
|
2458
|
+
ConnectionTypeVariantList.member = Shapes::ShapeRef.new(shape: ConnectionTypeVariant)
|
2459
|
+
|
2442
2460
|
ConnectionsList.add_member(:connections, Shapes::ShapeRef.new(shape: ConnectionStringList, location_name: "Connections"))
|
2443
2461
|
ConnectionsList.struct_class = Types::ConnectionsList
|
2444
2462
|
|
@@ -4762,6 +4780,7 @@ module Aws::Glue
|
|
4762
4780
|
|
4763
4781
|
IntegrationPartition.add_member(:field_name, Shapes::ShapeRef.new(shape: String128, location_name: "FieldName"))
|
4764
4782
|
IntegrationPartition.add_member(:function_spec, Shapes::ShapeRef.new(shape: String128, location_name: "FunctionSpec"))
|
4783
|
+
IntegrationPartition.add_member(:conversion_spec, Shapes::ShapeRef.new(shape: String128, location_name: "ConversionSpec"))
|
4765
4784
|
IntegrationPartition.struct_class = Types::IntegrationPartition
|
4766
4785
|
|
4767
4786
|
IntegrationPartitionSpecList.member = Shapes::ShapeRef.new(shape: IntegrationPartition)
|
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -4237,21 +4237,87 @@ module Aws::Glue
|
|
4237
4237
|
# The name of the connection type.
|
4238
4238
|
# @return [String]
|
4239
4239
|
#
|
4240
|
+
# @!attribute [rw] display_name
|
4241
|
+
# The human-readable name for the connection type that is displayed in
|
4242
|
+
# the Glue console.
|
4243
|
+
# @return [String]
|
4244
|
+
#
|
4245
|
+
# @!attribute [rw] vendor
|
4246
|
+
# The name of the vendor or provider that created or maintains this
|
4247
|
+
# connection type.
|
4248
|
+
# @return [String]
|
4249
|
+
#
|
4240
4250
|
# @!attribute [rw] description
|
4241
4251
|
# A description of the connection type.
|
4242
4252
|
# @return [String]
|
4243
4253
|
#
|
4254
|
+
# @!attribute [rw] categories
|
4255
|
+
# A list of categories that this connection type belongs to.
|
4256
|
+
# Categories help users filter and find appropriate connection types
|
4257
|
+
# based on their use cases.
|
4258
|
+
# @return [Array<String>]
|
4259
|
+
#
|
4244
4260
|
# @!attribute [rw] capabilities
|
4245
4261
|
# The supported authentication types, data interface types (compute
|
4246
4262
|
# environments), and data operations of the connector.
|
4247
4263
|
# @return [Types::Capabilities]
|
4248
4264
|
#
|
4265
|
+
# @!attribute [rw] logo_url
|
4266
|
+
# The URL of the logo associated with a connection type.
|
4267
|
+
# @return [String]
|
4268
|
+
#
|
4269
|
+
# @!attribute [rw] connection_type_variants
|
4270
|
+
# A list of variants available for this connection type. Different
|
4271
|
+
# variants may provide specialized configurations for specific use
|
4272
|
+
# cases or implementations of the same general connection type.
|
4273
|
+
# @return [Array<Types::ConnectionTypeVariant>]
|
4274
|
+
#
|
4249
4275
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ConnectionTypeBrief AWS API Documentation
|
4250
4276
|
#
|
4251
4277
|
class ConnectionTypeBrief < Struct.new(
|
4252
4278
|
:connection_type,
|
4279
|
+
:display_name,
|
4280
|
+
:vendor,
|
4281
|
+
:description,
|
4282
|
+
:categories,
|
4283
|
+
:capabilities,
|
4284
|
+
:logo_url,
|
4285
|
+
:connection_type_variants)
|
4286
|
+
SENSITIVE = []
|
4287
|
+
include Aws::Structure
|
4288
|
+
end
|
4289
|
+
|
4290
|
+
# Represents a variant of a connection type in Glue Data Catalog.
|
4291
|
+
# Connection type variants provide specific configurations and behaviors
|
4292
|
+
# for different implementations of the same general connection type.
|
4293
|
+
#
|
4294
|
+
# @!attribute [rw] connection_type_variant_name
|
4295
|
+
# The unique identifier for the connection type variant. This name is
|
4296
|
+
# used internally to identify the specific variant of a connection
|
4297
|
+
# type.
|
4298
|
+
# @return [String]
|
4299
|
+
#
|
4300
|
+
# @!attribute [rw] display_name
|
4301
|
+
# The human-readable name for the connection type variant that is
|
4302
|
+
# displayed in the Glue console.
|
4303
|
+
# @return [String]
|
4304
|
+
#
|
4305
|
+
# @!attribute [rw] description
|
4306
|
+
# A detailed description of the connection type variant, including its
|
4307
|
+
# purpose, use cases, and any specific configuration requirements.
|
4308
|
+
# @return [String]
|
4309
|
+
#
|
4310
|
+
# @!attribute [rw] logo_url
|
4311
|
+
# The URL of the logo associated with a connection type variant.
|
4312
|
+
# @return [String]
|
4313
|
+
#
|
4314
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ConnectionTypeVariant AWS API Documentation
|
4315
|
+
#
|
4316
|
+
class ConnectionTypeVariant < Struct.new(
|
4317
|
+
:connection_type_variant_name,
|
4318
|
+
:display_name,
|
4253
4319
|
:description,
|
4254
|
-
:
|
4320
|
+
:logo_url)
|
4255
4321
|
SENSITIVE = []
|
4256
4322
|
include Aws::Structure
|
4257
4323
|
end
|
@@ -5814,7 +5880,13 @@ module Aws::Glue
|
|
5814
5880
|
end
|
5815
5881
|
|
5816
5882
|
# @!attribute [rw] resource_arn
|
5817
|
-
# The
|
5883
|
+
# The Amazon Resource Name (ARN) of the target table for which to
|
5884
|
+
# create integration table properties. Currently, this API only
|
5885
|
+
# supports creating integration table properties for target tables,
|
5886
|
+
# and the provided ARN should be the ARN of the target table in the
|
5887
|
+
# Glue Data Catalog. Support for creating integration table properties
|
5888
|
+
# for source connections (using the connection ARN) is not yet
|
5889
|
+
# implemented and will be added in a future release.
|
5818
5890
|
# @return [String]
|
5819
5891
|
#
|
5820
5892
|
# @!attribute [rw] table_name
|
@@ -12501,7 +12573,13 @@ module Aws::Glue
|
|
12501
12573
|
end
|
12502
12574
|
|
12503
12575
|
# @!attribute [rw] resource_arn
|
12504
|
-
# The
|
12576
|
+
# The Amazon Resource Name (ARN) of the target table for which to
|
12577
|
+
# retrieve integration table properties. Currently, this API only
|
12578
|
+
# supports retrieving properties for target tables, and the provided
|
12579
|
+
# ARN should be the ARN of the target table in the Glue Data Catalog.
|
12580
|
+
# Support for retrieving integration table properties for source
|
12581
|
+
# connections (using the connection ARN) is not yet implemented and
|
12582
|
+
# will be added in a future release.
|
12505
12583
|
# @return [String]
|
12506
12584
|
#
|
12507
12585
|
# @!attribute [rw] table_name
|
@@ -12518,7 +12596,13 @@ module Aws::Glue
|
|
12518
12596
|
end
|
12519
12597
|
|
12520
12598
|
# @!attribute [rw] resource_arn
|
12521
|
-
# The
|
12599
|
+
# The Amazon Resource Name (ARN) of the target table for which to
|
12600
|
+
# retrieve integration table properties. Currently, this API only
|
12601
|
+
# supports retrieving properties for target tables, and the provided
|
12602
|
+
# ARN should be the ARN of the target table in the Glue Data Catalog.
|
12603
|
+
# Support for retrieving integration table properties for source
|
12604
|
+
# connections (using the connection ARN) is not yet implemented and
|
12605
|
+
# will be added in a future release.
|
12522
12606
|
# @return [String]
|
12523
12607
|
#
|
12524
12608
|
# @!attribute [rw] table_name
|
@@ -15860,11 +15944,42 @@ module Aws::Glue
|
|
15860
15944
|
# target destination.
|
15861
15945
|
# @return [String]
|
15862
15946
|
#
|
15947
|
+
# @!attribute [rw] conversion_spec
|
15948
|
+
# Specifies the timestamp format of the source data. Valid values are:
|
15949
|
+
#
|
15950
|
+
# * `epoch_sec` - Unix epoch timestamp in seconds
|
15951
|
+
#
|
15952
|
+
# * `epoch_milli` - Unix epoch timestamp in milliseconds
|
15953
|
+
#
|
15954
|
+
# * `iso` - ISO 8601 formatted timestamp
|
15955
|
+
#
|
15956
|
+
# <note markdown="1"> Only specify `ConversionSpec` when using timestamp-based partition
|
15957
|
+
# functions (year, month, day, or hour). Glue Zero-ETL uses this
|
15958
|
+
# parameter to correctly transform source data into timestamp format
|
15959
|
+
# before partitioning.
|
15960
|
+
#
|
15961
|
+
# Do not use high-cardinality columns with the `identity` partition
|
15962
|
+
# function. High-cardinality columns include:
|
15963
|
+
#
|
15964
|
+
# * Primary keys
|
15965
|
+
#
|
15966
|
+
# * Timestamp fields (such as `LastModifiedTimestamp`, `CreatedDate`)
|
15967
|
+
#
|
15968
|
+
# * System-generated timestamps
|
15969
|
+
#
|
15970
|
+
# Using high-cardinality columns with identity partitioning creates
|
15971
|
+
# many small partitions, which can significantly degrade ingestion
|
15972
|
+
# performance.
|
15973
|
+
#
|
15974
|
+
# </note>
|
15975
|
+
# @return [String]
|
15976
|
+
#
|
15863
15977
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/IntegrationPartition AWS API Documentation
|
15864
15978
|
#
|
15865
15979
|
class IntegrationPartition < Struct.new(
|
15866
15980
|
:field_name,
|
15867
|
-
:function_spec
|
15981
|
+
:function_spec,
|
15982
|
+
:conversion_spec)
|
15868
15983
|
SENSITIVE = []
|
15869
15984
|
include Aws::Structure
|
15870
15985
|
end
|
data/lib/aws-sdk-glue.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -925,7 +925,8 @@ module Aws
|
|
925
925
|
partition_spec: Array[
|
926
926
|
{
|
927
927
|
field_name: ::String?,
|
928
|
-
function_spec: ::String
|
928
|
+
function_spec: ::String?,
|
929
|
+
conversion_spec: ::String?
|
929
930
|
},
|
930
931
|
]?,
|
931
932
|
target_table_name: ::String?
|
@@ -5967,7 +5968,8 @@ module Aws
|
|
5967
5968
|
partition_spec: Array[
|
5968
5969
|
{
|
5969
5970
|
field_name: ::String?,
|
5970
|
-
function_spec: ::String
|
5971
|
+
function_spec: ::String?,
|
5972
|
+
conversion_spec: ::String?
|
5971
5973
|
},
|
5972
5974
|
]?,
|
5973
5975
|
target_table_name: ::String?
|
data/sig/types.rbs
CHANGED
@@ -1005,8 +1005,21 @@ module Aws::Glue
|
|
1005
1005
|
|
1006
1006
|
class ConnectionTypeBrief
|
1007
1007
|
attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA" | "GOOGLEADS" | "GOOGLESHEETS" | "GOOGLEANALYTICS4" | "SERVICENOW" | "MARKETO" | "SAPODATA" | "ZENDESK" | "JIRACLOUD" | "NETSUITEERP" | "HUBSPOT" | "FACEBOOKADS" | "INSTAGRAMADS" | "ZOHOCRM" | "SALESFORCEPARDOT" | "SALESFORCEMARKETINGCLOUD" | "SLACK" | "STRIPE" | "INTERCOM" | "SNAPCHATADS")
|
1008
|
+
attr_accessor display_name: ::String
|
1009
|
+
attr_accessor vendor: ::String
|
1008
1010
|
attr_accessor description: ::String
|
1011
|
+
attr_accessor categories: ::Array[::String]
|
1009
1012
|
attr_accessor capabilities: Types::Capabilities
|
1013
|
+
attr_accessor logo_url: ::String
|
1014
|
+
attr_accessor connection_type_variants: ::Array[Types::ConnectionTypeVariant]
|
1015
|
+
SENSITIVE: []
|
1016
|
+
end
|
1017
|
+
|
1018
|
+
class ConnectionTypeVariant
|
1019
|
+
attr_accessor connection_type_variant_name: ::String
|
1020
|
+
attr_accessor display_name: ::String
|
1021
|
+
attr_accessor description: ::String
|
1022
|
+
attr_accessor logo_url: ::String
|
1010
1023
|
SENSITIVE: []
|
1011
1024
|
end
|
1012
1025
|
|
@@ -3967,6 +3980,7 @@ module Aws::Glue
|
|
3967
3980
|
class IntegrationPartition
|
3968
3981
|
attr_accessor field_name: ::String
|
3969
3982
|
attr_accessor function_spec: ::String
|
3983
|
+
attr_accessor conversion_spec: ::String
|
3970
3984
|
SENSITIVE: []
|
3971
3985
|
end
|
3972
3986
|
|