aws-sdk-glue 1.124.0 → 1.125.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 +87 -1
- data/lib/aws-sdk-glue/client_api.rb +25 -0
- data/lib/aws-sdk-glue/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-glue/endpoint_provider.rb +76 -76
- data/lib/aws-sdk-glue/types.rb +216 -2
- data/lib/aws-sdk-glue.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5a267182803621aa945ae65cad27f5749dec99c157504d7dbe3d02e06c127450
|
|
4
|
+
data.tar.gz: 0f7c637a827f430f6f7bf7a93537d18550a2e2209f8c4276dda1c0373e9a2f3d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 35856dca20ba688b3cea4196a6bc53c47ad3bed1741e8be407626004f271e3cf4d01c50da615692f12578b82ac92107851273e0da51c39a0dc84d26f46e81399
|
|
7
|
+
data.tar.gz: 989d0fdbc49e23de833190fe4248911ab26470d09f8801f685b86c314eb0586a703f68f2ff049b7986bab0fff1c87927c131912dd7aa958b0fa59c800565610d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.125.0 (2022-11-29)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release allows the creation of Custom Visual Transforms (Dynamic Transforms) to be created via AWS Glue CLI/SDK.
|
|
8
|
+
|
|
4
9
|
1.124.0 (2022-11-18)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.125.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
|
@@ -1465,6 +1465,22 @@ module Aws::Glue
|
|
|
1465
1465
|
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].postgre_sql_catalog_target.inputs[0] #=> String
|
|
1466
1466
|
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].postgre_sql_catalog_target.database #=> String
|
|
1467
1467
|
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].postgre_sql_catalog_target.table #=> String
|
|
1468
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.name #=> String
|
|
1469
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.transform_name #=> String
|
|
1470
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.inputs #=> Array
|
|
1471
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.inputs[0] #=> String
|
|
1472
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters #=> Array
|
|
1473
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].name #=> String
|
|
1474
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].type #=> String, one of "str", "int", "float", "complex", "bool", "list", "null"
|
|
1475
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].validation_rule #=> String
|
|
1476
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].validation_message #=> String
|
|
1477
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].value #=> Array
|
|
1478
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].value[0] #=> String
|
|
1479
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].list_type #=> String, one of "str", "int", "float", "complex", "bool", "list", "null"
|
|
1480
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].is_optional #=> Boolean
|
|
1481
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.function_name #=> String
|
|
1482
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.path #=> String
|
|
1483
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.version #=> String
|
|
1468
1484
|
# resp.jobs[0].execution_class #=> String, one of "FLEX", "STANDARD"
|
|
1469
1485
|
# resp.jobs[0].source_control_details.provider #=> String, one of "GITHUB", "AWS_CODE_COMMIT"
|
|
1470
1486
|
# resp.jobs[0].source_control_details.repository #=> String
|
|
@@ -3604,6 +3620,25 @@ module Aws::Glue
|
|
|
3604
3620
|
# database: "EnclosedInStringProperty", # required
|
|
3605
3621
|
# table: "EnclosedInStringProperty", # required
|
|
3606
3622
|
# },
|
|
3623
|
+
# dynamic_transform: {
|
|
3624
|
+
# name: "EnclosedInStringProperty", # required
|
|
3625
|
+
# transform_name: "EnclosedInStringProperty", # required
|
|
3626
|
+
# inputs: ["NodeId"], # required
|
|
3627
|
+
# parameters: [
|
|
3628
|
+
# {
|
|
3629
|
+
# name: "EnclosedInStringProperty", # required
|
|
3630
|
+
# type: "str", # required, accepts str, int, float, complex, bool, list, null
|
|
3631
|
+
# validation_rule: "EnclosedInStringProperty",
|
|
3632
|
+
# validation_message: "EnclosedInStringProperty",
|
|
3633
|
+
# value: ["EnclosedInStringProperty"],
|
|
3634
|
+
# list_type: "str", # accepts str, int, float, complex, bool, list, null
|
|
3635
|
+
# is_optional: false,
|
|
3636
|
+
# },
|
|
3637
|
+
# ],
|
|
3638
|
+
# function_name: "EnclosedInStringProperty", # required
|
|
3639
|
+
# path: "EnclosedInStringProperty", # required
|
|
3640
|
+
# version: "EnclosedInStringProperty",
|
|
3641
|
+
# },
|
|
3607
3642
|
# },
|
|
3608
3643
|
# },
|
|
3609
3644
|
# execution_class: "FLEX", # accepts FLEX, STANDARD
|
|
@@ -7269,6 +7304,22 @@ module Aws::Glue
|
|
|
7269
7304
|
# resp.job.code_gen_configuration_nodes["NodeId"].postgre_sql_catalog_target.inputs[0] #=> String
|
|
7270
7305
|
# resp.job.code_gen_configuration_nodes["NodeId"].postgre_sql_catalog_target.database #=> String
|
|
7271
7306
|
# resp.job.code_gen_configuration_nodes["NodeId"].postgre_sql_catalog_target.table #=> String
|
|
7307
|
+
# resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.name #=> String
|
|
7308
|
+
# resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.transform_name #=> String
|
|
7309
|
+
# resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.inputs #=> Array
|
|
7310
|
+
# resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.inputs[0] #=> String
|
|
7311
|
+
# resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters #=> Array
|
|
7312
|
+
# resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].name #=> String
|
|
7313
|
+
# resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].type #=> String, one of "str", "int", "float", "complex", "bool", "list", "null"
|
|
7314
|
+
# resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].validation_rule #=> String
|
|
7315
|
+
# resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].validation_message #=> String
|
|
7316
|
+
# resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].value #=> Array
|
|
7317
|
+
# resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].value[0] #=> String
|
|
7318
|
+
# resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].list_type #=> String, one of "str", "int", "float", "complex", "bool", "list", "null"
|
|
7319
|
+
# resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].is_optional #=> Boolean
|
|
7320
|
+
# resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.function_name #=> String
|
|
7321
|
+
# resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.path #=> String
|
|
7322
|
+
# resp.job.code_gen_configuration_nodes["NodeId"].dynamic_transform.version #=> String
|
|
7272
7323
|
# resp.job.execution_class #=> String, one of "FLEX", "STANDARD"
|
|
7273
7324
|
# resp.job.source_control_details.provider #=> String, one of "GITHUB", "AWS_CODE_COMMIT"
|
|
7274
7325
|
# resp.job.source_control_details.repository #=> String
|
|
@@ -7999,6 +8050,22 @@ module Aws::Glue
|
|
|
7999
8050
|
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].postgre_sql_catalog_target.inputs[0] #=> String
|
|
8000
8051
|
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].postgre_sql_catalog_target.database #=> String
|
|
8001
8052
|
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].postgre_sql_catalog_target.table #=> String
|
|
8053
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.name #=> String
|
|
8054
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.transform_name #=> String
|
|
8055
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.inputs #=> Array
|
|
8056
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.inputs[0] #=> String
|
|
8057
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters #=> Array
|
|
8058
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].name #=> String
|
|
8059
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].type #=> String, one of "str", "int", "float", "complex", "bool", "list", "null"
|
|
8060
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].validation_rule #=> String
|
|
8061
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].validation_message #=> String
|
|
8062
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].value #=> Array
|
|
8063
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].value[0] #=> String
|
|
8064
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].list_type #=> String, one of "str", "int", "float", "complex", "bool", "list", "null"
|
|
8065
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.parameters[0].is_optional #=> Boolean
|
|
8066
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.function_name #=> String
|
|
8067
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.path #=> String
|
|
8068
|
+
# resp.jobs[0].code_gen_configuration_nodes["NodeId"].dynamic_transform.version #=> String
|
|
8002
8069
|
# resp.jobs[0].execution_class #=> String, one of "FLEX", "STANDARD"
|
|
8003
8070
|
# resp.jobs[0].source_control_details.provider #=> String, one of "GITHUB", "AWS_CODE_COMMIT"
|
|
8004
8071
|
# resp.jobs[0].source_control_details.repository #=> String
|
|
@@ -14573,6 +14640,25 @@ module Aws::Glue
|
|
|
14573
14640
|
# database: "EnclosedInStringProperty", # required
|
|
14574
14641
|
# table: "EnclosedInStringProperty", # required
|
|
14575
14642
|
# },
|
|
14643
|
+
# dynamic_transform: {
|
|
14644
|
+
# name: "EnclosedInStringProperty", # required
|
|
14645
|
+
# transform_name: "EnclosedInStringProperty", # required
|
|
14646
|
+
# inputs: ["NodeId"], # required
|
|
14647
|
+
# parameters: [
|
|
14648
|
+
# {
|
|
14649
|
+
# name: "EnclosedInStringProperty", # required
|
|
14650
|
+
# type: "str", # required, accepts str, int, float, complex, bool, list, null
|
|
14651
|
+
# validation_rule: "EnclosedInStringProperty",
|
|
14652
|
+
# validation_message: "EnclosedInStringProperty",
|
|
14653
|
+
# value: ["EnclosedInStringProperty"],
|
|
14654
|
+
# list_type: "str", # accepts str, int, float, complex, bool, list, null
|
|
14655
|
+
# is_optional: false,
|
|
14656
|
+
# },
|
|
14657
|
+
# ],
|
|
14658
|
+
# function_name: "EnclosedInStringProperty", # required
|
|
14659
|
+
# path: "EnclosedInStringProperty", # required
|
|
14660
|
+
# version: "EnclosedInStringProperty",
|
|
14661
|
+
# },
|
|
14576
14662
|
# },
|
|
14577
14663
|
# },
|
|
14578
14664
|
# execution_class: "FLEX", # accepts FLEX, STANDARD
|
|
@@ -15398,7 +15484,7 @@ module Aws::Glue
|
|
|
15398
15484
|
params: params,
|
|
15399
15485
|
config: config)
|
|
15400
15486
|
context[:gem_name] = 'aws-sdk-glue'
|
|
15401
|
-
context[:gem_version] = '1.
|
|
15487
|
+
context[:gem_version] = '1.125.0'
|
|
15402
15488
|
Seahorse::Client::Request.new(handlers, context)
|
|
15403
15489
|
end
|
|
15404
15490
|
|
|
@@ -343,6 +343,7 @@ module Aws::Glue
|
|
|
343
343
|
DropDuplicates = Shapes::StructureShape.new(name: 'DropDuplicates')
|
|
344
344
|
DropFields = Shapes::StructureShape.new(name: 'DropFields')
|
|
345
345
|
DropNullFields = Shapes::StructureShape.new(name: 'DropNullFields')
|
|
346
|
+
DynamicTransform = Shapes::StructureShape.new(name: 'DynamicTransform')
|
|
346
347
|
DynamoDBCatalogSource = Shapes::StructureShape.new(name: 'DynamoDBCatalogSource')
|
|
347
348
|
DynamoDBTarget = Shapes::StructureShape.new(name: 'DynamoDBTarget')
|
|
348
349
|
DynamoDBTargetList = Shapes::ListShape.new(name: 'DynamoDBTargetList')
|
|
@@ -710,6 +711,7 @@ module Aws::Glue
|
|
|
710
711
|
PIIDetection = Shapes::StructureShape.new(name: 'PIIDetection')
|
|
711
712
|
PageSize = Shapes::IntegerShape.new(name: 'PageSize')
|
|
712
713
|
PaginationToken = Shapes::StringShape.new(name: 'PaginationToken')
|
|
714
|
+
ParamType = Shapes::StringShape.new(name: 'ParamType')
|
|
713
715
|
ParametersMap = Shapes::MapShape.new(name: 'ParametersMap')
|
|
714
716
|
ParametersMapValue = Shapes::StringShape.new(name: 'ParametersMapValue')
|
|
715
717
|
ParquetCompressionType = Shapes::StringShape.new(name: 'ParquetCompressionType')
|
|
@@ -946,6 +948,8 @@ module Aws::Glue
|
|
|
946
948
|
Topk = Shapes::IntegerShape.new(name: 'Topk')
|
|
947
949
|
TotalSegmentsInteger = Shapes::IntegerShape.new(name: 'TotalSegmentsInteger')
|
|
948
950
|
TransactionIdString = Shapes::StringShape.new(name: 'TransactionIdString')
|
|
951
|
+
TransformConfigParameter = Shapes::StructureShape.new(name: 'TransformConfigParameter')
|
|
952
|
+
TransformConfigParameterList = Shapes::ListShape.new(name: 'TransformConfigParameterList')
|
|
949
953
|
TransformEncryption = Shapes::StructureShape.new(name: 'TransformEncryption')
|
|
950
954
|
TransformFilterCriteria = Shapes::StructureShape.new(name: 'TransformFilterCriteria')
|
|
951
955
|
TransformIdList = Shapes::ListShape.new(name: 'TransformIdList')
|
|
@@ -1458,6 +1462,7 @@ module Aws::Glue
|
|
|
1458
1462
|
CodeGenConfigurationNode.add_member(:my_sql_catalog_target, Shapes::ShapeRef.new(shape: MySQLCatalogTarget, location_name: "MySQLCatalogTarget"))
|
|
1459
1463
|
CodeGenConfigurationNode.add_member(:oracle_sql_catalog_target, Shapes::ShapeRef.new(shape: OracleSQLCatalogTarget, location_name: "OracleSQLCatalogTarget"))
|
|
1460
1464
|
CodeGenConfigurationNode.add_member(:postgre_sql_catalog_target, Shapes::ShapeRef.new(shape: PostgreSQLCatalogTarget, location_name: "PostgreSQLCatalogTarget"))
|
|
1465
|
+
CodeGenConfigurationNode.add_member(:dynamic_transform, Shapes::ShapeRef.new(shape: DynamicTransform, location_name: "DynamicTransform"))
|
|
1461
1466
|
CodeGenConfigurationNode.struct_class = Types::CodeGenConfigurationNode
|
|
1462
1467
|
|
|
1463
1468
|
CodeGenConfigurationNodes.key = Shapes::ShapeRef.new(shape: NodeId)
|
|
@@ -2316,6 +2321,15 @@ module Aws::Glue
|
|
|
2316
2321
|
DropNullFields.add_member(:null_text_list, Shapes::ShapeRef.new(shape: NullValueFields, location_name: "NullTextList"))
|
|
2317
2322
|
DropNullFields.struct_class = Types::DropNullFields
|
|
2318
2323
|
|
|
2324
|
+
DynamicTransform.add_member(:name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Name"))
|
|
2325
|
+
DynamicTransform.add_member(:transform_name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "TransformName"))
|
|
2326
|
+
DynamicTransform.add_member(:inputs, Shapes::ShapeRef.new(shape: OneInput, required: true, location_name: "Inputs"))
|
|
2327
|
+
DynamicTransform.add_member(:parameters, Shapes::ShapeRef.new(shape: TransformConfigParameterList, location_name: "Parameters"))
|
|
2328
|
+
DynamicTransform.add_member(:function_name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "FunctionName"))
|
|
2329
|
+
DynamicTransform.add_member(:path, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Path"))
|
|
2330
|
+
DynamicTransform.add_member(:version, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "Version"))
|
|
2331
|
+
DynamicTransform.struct_class = Types::DynamicTransform
|
|
2332
|
+
|
|
2319
2333
|
DynamoDBCatalogSource.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
|
|
2320
2334
|
DynamoDBCatalogSource.add_member(:database, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Database"))
|
|
2321
2335
|
DynamoDBCatalogSource.add_member(:table, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Table"))
|
|
@@ -4464,6 +4478,17 @@ module Aws::Glue
|
|
|
4464
4478
|
TaskRunSortCriteria.add_member(:sort_direction, Shapes::ShapeRef.new(shape: SortDirectionType, required: true, location_name: "SortDirection"))
|
|
4465
4479
|
TaskRunSortCriteria.struct_class = Types::TaskRunSortCriteria
|
|
4466
4480
|
|
|
4481
|
+
TransformConfigParameter.add_member(:name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Name"))
|
|
4482
|
+
TransformConfigParameter.add_member(:type, Shapes::ShapeRef.new(shape: ParamType, required: true, location_name: "Type"))
|
|
4483
|
+
TransformConfigParameter.add_member(:validation_rule, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "ValidationRule"))
|
|
4484
|
+
TransformConfigParameter.add_member(:validation_message, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "ValidationMessage"))
|
|
4485
|
+
TransformConfigParameter.add_member(:value, Shapes::ShapeRef.new(shape: EnclosedInStringProperties, location_name: "Value"))
|
|
4486
|
+
TransformConfigParameter.add_member(:list_type, Shapes::ShapeRef.new(shape: ParamType, location_name: "ListType"))
|
|
4487
|
+
TransformConfigParameter.add_member(:is_optional, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "IsOptional"))
|
|
4488
|
+
TransformConfigParameter.struct_class = Types::TransformConfigParameter
|
|
4489
|
+
|
|
4490
|
+
TransformConfigParameterList.member = Shapes::ShapeRef.new(shape: TransformConfigParameter)
|
|
4491
|
+
|
|
4467
4492
|
TransformEncryption.add_member(:ml_user_data_encryption, Shapes::ShapeRef.new(shape: MLUserDataEncryption, location_name: "MlUserDataEncryption"))
|
|
4468
4493
|
TransformEncryption.add_member(:task_run_security_configuration_name, Shapes::ShapeRef.new(shape: NameString, location_name: "TaskRunSecurityConfigurationName"))
|
|
4469
4494
|
TransformEncryption.struct_class = Types::TransformEncryption
|
|
@@ -50,6 +50,9 @@ module Aws::Glue
|
|
|
50
50
|
|
|
51
51
|
def initialize(options = {})
|
|
52
52
|
self[:region] = options[:region]
|
|
53
|
+
if self[:region].nil?
|
|
54
|
+
raise ArgumentError, "Missing required EndpointParameter: :region"
|
|
55
|
+
end
|
|
53
56
|
self[:use_dual_stack] = options[:use_dual_stack]
|
|
54
57
|
self[:use_dual_stack] = false if self[:use_dual_stack].nil?
|
|
55
58
|
if self[:use_dual_stack].nil?
|
|
@@ -29,82 +29,82 @@ module Aws::Glue
|
|
|
29
29
|
# @api private
|
|
30
30
|
RULES = <<-JSON
|
|
31
31
|
eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
32
|
+
bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOnRydWUsImRvY3VtZW50
|
|
33
|
+
YXRpb24iOiJUaGUgQVdTIHJlZ2lvbiB1c2VkIHRvIGRpc3BhdGNoIHRoZSBy
|
|
34
|
+
ZXF1ZXN0LiIsInR5cGUiOiJTdHJpbmcifSwiVXNlRHVhbFN0YWNrIjp7ImJ1
|
|
35
|
+
aWx0SW4iOiJBV1M6OlVzZUR1YWxTdGFjayIsInJlcXVpcmVkIjp0cnVlLCJk
|
|
36
|
+
ZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRhdGlvbiI6IldoZW4gdHJ1ZSwgdXNl
|
|
37
|
+
IHRoZSBkdWFsLXN0YWNrIGVuZHBvaW50LiBJZiB0aGUgY29uZmlndXJlZCBl
|
|
38
|
+
bmRwb2ludCBkb2VzIG5vdCBzdXBwb3J0IGR1YWwtc3RhY2ssIGRpc3BhdGNo
|
|
39
|
+
aW5nIHRoZSByZXF1ZXN0IE1BWSByZXR1cm4gYW4gZXJyb3IuIiwidHlwZSI6
|
|
40
|
+
IkJvb2xlYW4ifSwiVXNlRklQUyI6eyJidWlsdEluIjoiQVdTOjpVc2VGSVBT
|
|
41
|
+
IiwicmVxdWlyZWQiOnRydWUsImRlZmF1bHQiOmZhbHNlLCJkb2N1bWVudGF0
|
|
42
|
+
aW9uIjoiV2hlbiB0cnVlLCBzZW5kIHRoaXMgcmVxdWVzdCB0byB0aGUgRklQ
|
|
43
|
+
Uy1jb21wbGlhbnQgcmVnaW9uYWwgZW5kcG9pbnQuIElmIHRoZSBjb25maWd1
|
|
44
|
+
cmVkIGVuZHBvaW50IGRvZXMgbm90IGhhdmUgYSBGSVBTIGNvbXBsaWFudCBl
|
|
45
|
+
bmRwb2ludCwgZGlzcGF0Y2hpbmcgdGhlIHJlcXVlc3Qgd2lsbCByZXR1cm4g
|
|
46
|
+
YW4gZXJyb3IuIiwidHlwZSI6IkJvb2xlYW4ifSwiRW5kcG9pbnQiOnsiYnVp
|
|
47
|
+
bHRJbiI6IlNESzo6RW5kcG9pbnQiLCJyZXF1aXJlZCI6ZmFsc2UsImRvY3Vt
|
|
48
|
+
ZW50YXRpb24iOiJPdmVycmlkZSB0aGUgZW5kcG9pbnQgdXNlZCB0byBzZW5k
|
|
49
|
+
IHRoaXMgcmVxdWVzdCIsInR5cGUiOiJTdHJpbmcifX0sInJ1bGVzIjpbeyJj
|
|
50
|
+
b25kaXRpb25zIjpbeyJmbiI6ImF3cy5wYXJ0aXRpb24iLCJhcmd2IjpbeyJy
|
|
51
|
+
ZWYiOiJSZWdpb24ifV0sImFzc2lnbiI6IlBhcnRpdGlvblJlc3VsdCJ9XSwi
|
|
52
|
+
dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJp
|
|
53
|
+
c1NldCIsImFyZ3YiOlt7InJlZiI6IkVuZHBvaW50In1dfSx7ImZuIjoicGFy
|
|
54
|
+
c2VVUkwiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XSwiYXNzaWduIjoi
|
|
55
|
+
dXJsIn1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
|
|
56
|
+
eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBT
|
|
57
|
+
In0sdHJ1ZV19XSwiZXJyb3IiOiJJbnZhbGlkIENvbmZpZ3VyYXRpb246IEZJ
|
|
58
|
+
UFMgYW5kIGN1c3RvbSBlbmRwb2ludCBhcmUgbm90IHN1cHBvcnRlZCIsInR5
|
|
59
|
+
cGUiOiJlcnJvciJ9LHsiY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwi
|
|
60
|
+
cnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIs
|
|
61
|
+
ImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVdfV0sImVycm9y
|
|
62
|
+
IjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBEdWFsc3RhY2sgYW5kIGN1c3Rv
|
|
63
|
+
bSBlbmRwb2ludCBhcmUgbm90IHN1cHBvcnRlZCIsInR5cGUiOiJlcnJvciJ9
|
|
64
|
+
LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6eyJyZWYiOiJF
|
|
65
|
+
bmRwb2ludCJ9LCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBl
|
|
66
|
+
IjoiZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xl
|
|
67
|
+
YW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19LHsi
|
|
68
|
+
Zm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0
|
|
69
|
+
YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
|
|
70
|
+
aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJm
|
|
71
|
+
biI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQi
|
|
72
|
+
fSwic3VwcG9ydHNGSVBTIl19XX0seyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJh
|
|
73
|
+
cmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBh
|
|
74
|
+
cnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlw
|
|
75
|
+
ZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50
|
|
76
|
+
Ijp7InVybCI6Imh0dHBzOi8vZ2x1ZS1maXBzLntSZWdpb259LntQYXJ0aXRp
|
|
77
|
+
b25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9
|
|
78
|
+
LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRp
|
|
79
|
+
b25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sgYXJlIGVuYWJs
|
|
80
|
+
ZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IG9uZSBv
|
|
81
|
+
ciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZu
|
|
82
|
+
IjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0
|
|
83
|
+
cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
|
|
84
|
+
eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0
|
|
85
|
+
QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBw
|
|
86
|
+
b3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
|
87
|
+
dGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25z
|
|
88
|
+
IjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9nbHVlLWZpcHMue1Jl
|
|
89
|
+
Z2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGll
|
|
90
|
+
cyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19LHsi
|
|
91
|
+
Y29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBpcyBlbmFibGVkIGJ1dCB0
|
|
92
|
+
aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IEZJUFMiLCJ0eXBlIjoi
|
|
93
|
+
ZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxz
|
|
94
|
+
IiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwidHlw
|
|
95
|
+
ZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29s
|
|
96
|
+
ZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2
|
|
97
|
+
IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3Rh
|
|
98
|
+
Y2siXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMi
|
|
99
|
+
OltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2dsdWUue1JlZ2lvbn0u
|
|
100
|
+
e1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVy
|
|
101
|
+
dGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7
|
|
102
|
+
ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkR1YWxTdGFjayBpcyBlbmFibGVk
|
|
103
|
+
IGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IER1YWxTdGFj
|
|
104
|
+
ayIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbXSwiZW5kcG9p
|
|
105
|
+
bnQiOnsidXJsIjoiaHR0cHM6Ly9nbHVlLntSZWdpb259LntQYXJ0aXRpb25S
|
|
106
|
+
ZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7
|
|
107
|
+
fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfQ==
|
|
108
108
|
|
|
109
109
|
JSON
|
|
110
110
|
end
|
data/lib/aws-sdk-glue/types.rb
CHANGED
|
@@ -2819,6 +2819,25 @@ module Aws::Glue
|
|
|
2819
2819
|
# database: "EnclosedInStringProperty", # required
|
|
2820
2820
|
# table: "EnclosedInStringProperty", # required
|
|
2821
2821
|
# },
|
|
2822
|
+
# dynamic_transform: {
|
|
2823
|
+
# name: "EnclosedInStringProperty", # required
|
|
2824
|
+
# transform_name: "EnclosedInStringProperty", # required
|
|
2825
|
+
# inputs: ["NodeId"], # required
|
|
2826
|
+
# parameters: [
|
|
2827
|
+
# {
|
|
2828
|
+
# name: "EnclosedInStringProperty", # required
|
|
2829
|
+
# type: "str", # required, accepts str, int, float, complex, bool, list, null
|
|
2830
|
+
# validation_rule: "EnclosedInStringProperty",
|
|
2831
|
+
# validation_message: "EnclosedInStringProperty",
|
|
2832
|
+
# value: ["EnclosedInStringProperty"],
|
|
2833
|
+
# list_type: "str", # accepts str, int, float, complex, bool, list, null
|
|
2834
|
+
# is_optional: false,
|
|
2835
|
+
# },
|
|
2836
|
+
# ],
|
|
2837
|
+
# function_name: "EnclosedInStringProperty", # required
|
|
2838
|
+
# path: "EnclosedInStringProperty", # required
|
|
2839
|
+
# version: "EnclosedInStringProperty",
|
|
2840
|
+
# },
|
|
2822
2841
|
# }
|
|
2823
2842
|
#
|
|
2824
2843
|
# @!attribute [rw] athena_connector_source
|
|
@@ -3057,6 +3076,10 @@ module Aws::Glue
|
|
|
3057
3076
|
# Specifies a target that uses Postgres SQL.
|
|
3058
3077
|
# @return [Types::PostgreSQLCatalogTarget]
|
|
3059
3078
|
#
|
|
3079
|
+
# @!attribute [rw] dynamic_transform
|
|
3080
|
+
# Specifies a custom visual transform created by a user.
|
|
3081
|
+
# @return [Types::DynamicTransform]
|
|
3082
|
+
#
|
|
3060
3083
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CodeGenConfigurationNode AWS API Documentation
|
|
3061
3084
|
#
|
|
3062
3085
|
class CodeGenConfigurationNode < Struct.new(
|
|
@@ -3109,7 +3132,8 @@ module Aws::Glue
|
|
|
3109
3132
|
:microsoft_sql_server_catalog_target,
|
|
3110
3133
|
:my_sql_catalog_target,
|
|
3111
3134
|
:oracle_sql_catalog_target,
|
|
3112
|
-
:postgre_sql_catalog_target
|
|
3135
|
+
:postgre_sql_catalog_target,
|
|
3136
|
+
:dynamic_transform)
|
|
3113
3137
|
SENSITIVE = []
|
|
3114
3138
|
include Aws::Structure
|
|
3115
3139
|
end
|
|
@@ -6122,6 +6146,25 @@ module Aws::Glue
|
|
|
6122
6146
|
# database: "EnclosedInStringProperty", # required
|
|
6123
6147
|
# table: "EnclosedInStringProperty", # required
|
|
6124
6148
|
# },
|
|
6149
|
+
# dynamic_transform: {
|
|
6150
|
+
# name: "EnclosedInStringProperty", # required
|
|
6151
|
+
# transform_name: "EnclosedInStringProperty", # required
|
|
6152
|
+
# inputs: ["NodeId"], # required
|
|
6153
|
+
# parameters: [
|
|
6154
|
+
# {
|
|
6155
|
+
# name: "EnclosedInStringProperty", # required
|
|
6156
|
+
# type: "str", # required, accepts str, int, float, complex, bool, list, null
|
|
6157
|
+
# validation_rule: "EnclosedInStringProperty",
|
|
6158
|
+
# validation_message: "EnclosedInStringProperty",
|
|
6159
|
+
# value: ["EnclosedInStringProperty"],
|
|
6160
|
+
# list_type: "str", # accepts str, int, float, complex, bool, list, null
|
|
6161
|
+
# is_optional: false,
|
|
6162
|
+
# },
|
|
6163
|
+
# ],
|
|
6164
|
+
# function_name: "EnclosedInStringProperty", # required
|
|
6165
|
+
# path: "EnclosedInStringProperty", # required
|
|
6166
|
+
# version: "EnclosedInStringProperty",
|
|
6167
|
+
# },
|
|
6125
6168
|
# },
|
|
6126
6169
|
# },
|
|
6127
6170
|
# execution_class: "FLEX", # accepts FLEX, STANDARD
|
|
@@ -9750,6 +9793,75 @@ module Aws::Glue
|
|
|
9750
9793
|
include Aws::Structure
|
|
9751
9794
|
end
|
|
9752
9795
|
|
|
9796
|
+
# Specifies the set of parameters needed to perform the dynamic
|
|
9797
|
+
# transform.
|
|
9798
|
+
#
|
|
9799
|
+
# @note When making an API call, you may pass DynamicTransform
|
|
9800
|
+
# data as a hash:
|
|
9801
|
+
#
|
|
9802
|
+
# {
|
|
9803
|
+
# name: "EnclosedInStringProperty", # required
|
|
9804
|
+
# transform_name: "EnclosedInStringProperty", # required
|
|
9805
|
+
# inputs: ["NodeId"], # required
|
|
9806
|
+
# parameters: [
|
|
9807
|
+
# {
|
|
9808
|
+
# name: "EnclosedInStringProperty", # required
|
|
9809
|
+
# type: "str", # required, accepts str, int, float, complex, bool, list, null
|
|
9810
|
+
# validation_rule: "EnclosedInStringProperty",
|
|
9811
|
+
# validation_message: "EnclosedInStringProperty",
|
|
9812
|
+
# value: ["EnclosedInStringProperty"],
|
|
9813
|
+
# list_type: "str", # accepts str, int, float, complex, bool, list, null
|
|
9814
|
+
# is_optional: false,
|
|
9815
|
+
# },
|
|
9816
|
+
# ],
|
|
9817
|
+
# function_name: "EnclosedInStringProperty", # required
|
|
9818
|
+
# path: "EnclosedInStringProperty", # required
|
|
9819
|
+
# version: "EnclosedInStringProperty",
|
|
9820
|
+
# }
|
|
9821
|
+
#
|
|
9822
|
+
# @!attribute [rw] name
|
|
9823
|
+
# Specifies the name of the dynamic transform.
|
|
9824
|
+
# @return [String]
|
|
9825
|
+
#
|
|
9826
|
+
# @!attribute [rw] transform_name
|
|
9827
|
+
# Specifies the name of the dynamic transform as it appears in the
|
|
9828
|
+
# Glue Studio visual editor.
|
|
9829
|
+
# @return [String]
|
|
9830
|
+
#
|
|
9831
|
+
# @!attribute [rw] inputs
|
|
9832
|
+
# Specifies the inputs for the dynamic transform that are required.
|
|
9833
|
+
# @return [Array<String>]
|
|
9834
|
+
#
|
|
9835
|
+
# @!attribute [rw] parameters
|
|
9836
|
+
# Specifies the parameters of the dynamic transform.
|
|
9837
|
+
# @return [Array<Types::TransformConfigParameter>]
|
|
9838
|
+
#
|
|
9839
|
+
# @!attribute [rw] function_name
|
|
9840
|
+
# Specifies the name of the function of the dynamic transform.
|
|
9841
|
+
# @return [String]
|
|
9842
|
+
#
|
|
9843
|
+
# @!attribute [rw] path
|
|
9844
|
+
# Specifies the path of the dynamic transform source and config files.
|
|
9845
|
+
# @return [String]
|
|
9846
|
+
#
|
|
9847
|
+
# @!attribute [rw] version
|
|
9848
|
+
# This field is not used and will be deprecated in future release.
|
|
9849
|
+
# @return [String]
|
|
9850
|
+
#
|
|
9851
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DynamicTransform AWS API Documentation
|
|
9852
|
+
#
|
|
9853
|
+
class DynamicTransform < Struct.new(
|
|
9854
|
+
:name,
|
|
9855
|
+
:transform_name,
|
|
9856
|
+
:inputs,
|
|
9857
|
+
:parameters,
|
|
9858
|
+
:function_name,
|
|
9859
|
+
:path,
|
|
9860
|
+
:version)
|
|
9861
|
+
SENSITIVE = []
|
|
9862
|
+
include Aws::Structure
|
|
9863
|
+
end
|
|
9864
|
+
|
|
9753
9865
|
# Specifies a DynamoDB data source in the Glue Data Catalog.
|
|
9754
9866
|
#
|
|
9755
9867
|
# @note When making an API call, you may pass DynamoDBCatalogSource
|
|
@@ -13965,7 +14077,7 @@ module Aws::Glue
|
|
|
13965
14077
|
end
|
|
13966
14078
|
|
|
13967
14079
|
# Specifies a user-defined schema when a schema cannot be determined by
|
|
13968
|
-
#
|
|
14080
|
+
# Glue.
|
|
13969
14081
|
#
|
|
13970
14082
|
# @note When making an API call, you may pass GlueSchema
|
|
13971
14083
|
# data as a hash:
|
|
@@ -15965,6 +16077,25 @@ module Aws::Glue
|
|
|
15965
16077
|
# database: "EnclosedInStringProperty", # required
|
|
15966
16078
|
# table: "EnclosedInStringProperty", # required
|
|
15967
16079
|
# },
|
|
16080
|
+
# dynamic_transform: {
|
|
16081
|
+
# name: "EnclosedInStringProperty", # required
|
|
16082
|
+
# transform_name: "EnclosedInStringProperty", # required
|
|
16083
|
+
# inputs: ["NodeId"], # required
|
|
16084
|
+
# parameters: [
|
|
16085
|
+
# {
|
|
16086
|
+
# name: "EnclosedInStringProperty", # required
|
|
16087
|
+
# type: "str", # required, accepts str, int, float, complex, bool, list, null
|
|
16088
|
+
# validation_rule: "EnclosedInStringProperty",
|
|
16089
|
+
# validation_message: "EnclosedInStringProperty",
|
|
16090
|
+
# value: ["EnclosedInStringProperty"],
|
|
16091
|
+
# list_type: "str", # accepts str, int, float, complex, bool, list, null
|
|
16092
|
+
# is_optional: false,
|
|
16093
|
+
# },
|
|
16094
|
+
# ],
|
|
16095
|
+
# function_name: "EnclosedInStringProperty", # required
|
|
16096
|
+
# path: "EnclosedInStringProperty", # required
|
|
16097
|
+
# version: "EnclosedInStringProperty",
|
|
16098
|
+
# },
|
|
15968
16099
|
# },
|
|
15969
16100
|
# },
|
|
15970
16101
|
# execution_class: "FLEX", # accepts FLEX, STANDARD
|
|
@@ -23614,6 +23745,70 @@ module Aws::Glue
|
|
|
23614
23745
|
include Aws::Structure
|
|
23615
23746
|
end
|
|
23616
23747
|
|
|
23748
|
+
# Specifies the parameters in the config file of the dynamic transform.
|
|
23749
|
+
#
|
|
23750
|
+
# @note When making an API call, you may pass TransformConfigParameter
|
|
23751
|
+
# data as a hash:
|
|
23752
|
+
#
|
|
23753
|
+
# {
|
|
23754
|
+
# name: "EnclosedInStringProperty", # required
|
|
23755
|
+
# type: "str", # required, accepts str, int, float, complex, bool, list, null
|
|
23756
|
+
# validation_rule: "EnclosedInStringProperty",
|
|
23757
|
+
# validation_message: "EnclosedInStringProperty",
|
|
23758
|
+
# value: ["EnclosedInStringProperty"],
|
|
23759
|
+
# list_type: "str", # accepts str, int, float, complex, bool, list, null
|
|
23760
|
+
# is_optional: false,
|
|
23761
|
+
# }
|
|
23762
|
+
#
|
|
23763
|
+
# @!attribute [rw] name
|
|
23764
|
+
# Specifies the name of the parameter in the config file of the
|
|
23765
|
+
# dynamic transform.
|
|
23766
|
+
# @return [String]
|
|
23767
|
+
#
|
|
23768
|
+
# @!attribute [rw] type
|
|
23769
|
+
# Specifies the parameter type in the config file of the dynamic
|
|
23770
|
+
# transform.
|
|
23771
|
+
# @return [String]
|
|
23772
|
+
#
|
|
23773
|
+
# @!attribute [rw] validation_rule
|
|
23774
|
+
# Specifies the validation rule in the config file of the dynamic
|
|
23775
|
+
# transform.
|
|
23776
|
+
# @return [String]
|
|
23777
|
+
#
|
|
23778
|
+
# @!attribute [rw] validation_message
|
|
23779
|
+
# Specifies the validation message in the config file of the dynamic
|
|
23780
|
+
# transform.
|
|
23781
|
+
# @return [String]
|
|
23782
|
+
#
|
|
23783
|
+
# @!attribute [rw] value
|
|
23784
|
+
# Specifies the value of the parameter in the config file of the
|
|
23785
|
+
# dynamic transform.
|
|
23786
|
+
# @return [Array<String>]
|
|
23787
|
+
#
|
|
23788
|
+
# @!attribute [rw] list_type
|
|
23789
|
+
# Specifies the list type of the parameter in the config file of the
|
|
23790
|
+
# dynamic transform.
|
|
23791
|
+
# @return [String]
|
|
23792
|
+
#
|
|
23793
|
+
# @!attribute [rw] is_optional
|
|
23794
|
+
# Specifies whether the parameter is optional or not in the config
|
|
23795
|
+
# file of the dynamic transform.
|
|
23796
|
+
# @return [Boolean]
|
|
23797
|
+
#
|
|
23798
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/TransformConfigParameter AWS API Documentation
|
|
23799
|
+
#
|
|
23800
|
+
class TransformConfigParameter < Struct.new(
|
|
23801
|
+
:name,
|
|
23802
|
+
:type,
|
|
23803
|
+
:validation_rule,
|
|
23804
|
+
:validation_message,
|
|
23805
|
+
:value,
|
|
23806
|
+
:list_type,
|
|
23807
|
+
:is_optional)
|
|
23808
|
+
SENSITIVE = []
|
|
23809
|
+
include Aws::Structure
|
|
23810
|
+
end
|
|
23811
|
+
|
|
23617
23812
|
# The encryption-at-rest settings of the transform that apply to
|
|
23618
23813
|
# accessing user data. Machine learning transforms can access user data
|
|
23619
23814
|
# encrypted in Amazon S3 using KMS.
|
|
@@ -25698,6 +25893,25 @@ module Aws::Glue
|
|
|
25698
25893
|
# database: "EnclosedInStringProperty", # required
|
|
25699
25894
|
# table: "EnclosedInStringProperty", # required
|
|
25700
25895
|
# },
|
|
25896
|
+
# dynamic_transform: {
|
|
25897
|
+
# name: "EnclosedInStringProperty", # required
|
|
25898
|
+
# transform_name: "EnclosedInStringProperty", # required
|
|
25899
|
+
# inputs: ["NodeId"], # required
|
|
25900
|
+
# parameters: [
|
|
25901
|
+
# {
|
|
25902
|
+
# name: "EnclosedInStringProperty", # required
|
|
25903
|
+
# type: "str", # required, accepts str, int, float, complex, bool, list, null
|
|
25904
|
+
# validation_rule: "EnclosedInStringProperty",
|
|
25905
|
+
# validation_message: "EnclosedInStringProperty",
|
|
25906
|
+
# value: ["EnclosedInStringProperty"],
|
|
25907
|
+
# list_type: "str", # accepts str, int, float, complex, bool, list, null
|
|
25908
|
+
# is_optional: false,
|
|
25909
|
+
# },
|
|
25910
|
+
# ],
|
|
25911
|
+
# function_name: "EnclosedInStringProperty", # required
|
|
25912
|
+
# path: "EnclosedInStringProperty", # required
|
|
25913
|
+
# version: "EnclosedInStringProperty",
|
|
25914
|
+
# },
|
|
25701
25915
|
# },
|
|
25702
25916
|
# },
|
|
25703
25917
|
# execution_class: "FLEX", # accepts FLEX, STANDARD
|
data/lib/aws-sdk-glue.rb
CHANGED
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.
|
|
4
|
+
version: 1.125.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: 2022-11-
|
|
11
|
+
date: 2022-11-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|