aws-sdk-glue 1.217.0 → 1.218.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +11 -1
- data/lib/aws-sdk-glue/client_api.rb +18 -0
- data/lib/aws-sdk-glue/types.rb +67 -1
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/types.rbs +13 -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: 9340d4e5a45fd25ad7b9c3e46ec9d0b4a7edfb82601d566523333268ae65d540
|
4
|
+
data.tar.gz: be18e3a9f1689976addcba5d724223bb40794702ed4295e38e866a9f1d75c70b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 80a31b9f3969ea3a476c1e86db617fc503e9216228abf710db5424ae214b83a1f411d5e9953ecea341741d36cb62f987e67f1b97458c32d1ad89cbe61c51d317
|
7
|
+
data.tar.gz: e130e7205449f199379a24ec8900c4defe650e0265f70b2425c6df8bfd79193a2794a4f2dac20d1e934208b34a2d6826389f597d81fc506529b00d7c9130fbdd
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.218.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -14941,13 +14941,23 @@ module Aws::Glue
|
|
14941
14941
|
#
|
14942
14942
|
# resp.connection_types #=> Array
|
14943
14943
|
# 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"
|
14944
|
+
# resp.connection_types[0].display_name #=> String
|
14945
|
+
# resp.connection_types[0].vendor #=> String
|
14944
14946
|
# resp.connection_types[0].description #=> String
|
14947
|
+
# resp.connection_types[0].categories #=> Array
|
14948
|
+
# resp.connection_types[0].categories[0] #=> String
|
14945
14949
|
# resp.connection_types[0].capabilities.supported_authentication_types #=> Array
|
14946
14950
|
# resp.connection_types[0].capabilities.supported_authentication_types[0] #=> String, one of "BASIC", "OAUTH2", "CUSTOM", "IAM"
|
14947
14951
|
# resp.connection_types[0].capabilities.supported_data_operations #=> Array
|
14948
14952
|
# resp.connection_types[0].capabilities.supported_data_operations[0] #=> String, one of "READ", "WRITE"
|
14949
14953
|
# resp.connection_types[0].capabilities.supported_compute_environments #=> Array
|
14950
14954
|
# resp.connection_types[0].capabilities.supported_compute_environments[0] #=> String, one of "SPARK", "ATHENA", "PYTHON"
|
14955
|
+
# resp.connection_types[0].logo_url #=> String
|
14956
|
+
# resp.connection_types[0].connection_type_variants #=> Array
|
14957
|
+
# resp.connection_types[0].connection_type_variants[0].connection_type_variant_name #=> String
|
14958
|
+
# resp.connection_types[0].connection_type_variants[0].display_name #=> String
|
14959
|
+
# resp.connection_types[0].connection_type_variants[0].description #=> String
|
14960
|
+
# resp.connection_types[0].connection_type_variants[0].logo_url #=> String
|
14951
14961
|
# resp.next_token #=> String
|
14952
14962
|
#
|
14953
14963
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListConnectionTypes AWS API Documentation
|
@@ -20264,7 +20274,7 @@ module Aws::Glue
|
|
20264
20274
|
tracer: tracer
|
20265
20275
|
)
|
20266
20276
|
context[:gem_name] = 'aws-sdk-glue'
|
20267
|
-
context[:gem_version] = '1.
|
20277
|
+
context[:gem_version] = '1.218.0'
|
20268
20278
|
Seahorse::Client::Request.new(handlers, context)
|
20269
20279
|
end
|
20270
20280
|
|
@@ -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
|
|
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
|
data/lib/aws-sdk-glue.rb
CHANGED
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
|
|