aws-sdk-glue 1.266.0 → 1.267.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 +145 -1
- data/lib/aws-sdk-glue/client_api.rb +41 -0
- data/lib/aws-sdk-glue/types.rb +204 -3
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +16 -1
- data/sig/params.rbs +21 -2
- data/sig/types.rbs +40 -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: b4f84f06eef29b1e16d3d43af2019bee9f6dabf558c06d5ef618f4f6b25163ac
|
|
4
|
+
data.tar.gz: 805063737694f840b298a3f775d025176d1c7d07065b1aaac2ee526efe1051c6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4265a8049cc7643a5b823af571aeee8bd964f7bebbca79e12a1105dd5350d672d64b04c7c602ed2f24be57dcf33802f201045088bc039f5ce5e3c216fa3fabd1
|
|
7
|
+
data.tar.gz: 7098053d739242261204fdb41caa830f1ae11b80b649810e8a4e85af0696764930597be5d91a4019adb4fec5bc3edb68420f2217c370d04110ac62c056225b62
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.267.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
|
@@ -6661,6 +6661,7 @@ module Aws::Glue
|
|
|
6661
6661
|
# resp.rest_configuration.global_source_configuration.request_parameters[0].allowed_values[0] #=> String
|
|
6662
6662
|
# resp.rest_configuration.global_source_configuration.request_parameters[0].property_location #=> String, one of "HEADER", "BODY", "QUERY_PARAM", "PATH"
|
|
6663
6663
|
# resp.rest_configuration.global_source_configuration.request_parameters[0].property_type #=> String, one of "USER_INPUT", "SECRET", "READ_ONLY", "UNUSED", "SECRET_OR_USER_INPUT"
|
|
6664
|
+
# resp.rest_configuration.global_source_configuration.request_parameters[0].format #=> String
|
|
6664
6665
|
# resp.rest_configuration.global_source_configuration.response_configuration.result_path #=> String
|
|
6665
6666
|
# resp.rest_configuration.global_source_configuration.response_configuration.error_path #=> String
|
|
6666
6667
|
# resp.rest_configuration.global_source_configuration.pagination_configuration.cursor_configuration.next_page.key #=> String
|
|
@@ -6683,6 +6684,17 @@ module Aws::Glue
|
|
|
6683
6684
|
# resp.rest_configuration.global_source_configuration.pagination_configuration.offset_configuration.limit_parameter.property_location #=> String, one of "HEADER", "BODY", "QUERY_PARAM", "PATH"
|
|
6684
6685
|
# resp.rest_configuration.global_source_configuration.pagination_configuration.offset_configuration.limit_parameter.value.content_path #=> String
|
|
6685
6686
|
# resp.rest_configuration.global_source_configuration.pagination_configuration.offset_configuration.limit_parameter.value.header_key #=> String
|
|
6687
|
+
# resp.rest_configuration.global_source_configuration.filter_configuration.filter_mode #=> String, one of "QUERY_PARAMS", "FILTER_STRING"
|
|
6688
|
+
# resp.rest_configuration.global_source_configuration.filter_configuration.operator_mappings #=> Hash
|
|
6689
|
+
# resp.rest_configuration.global_source_configuration.filter_configuration.operator_mappings["String"] #=> String
|
|
6690
|
+
# resp.rest_configuration.global_source_configuration.filter_configuration.date_time_format #=> String
|
|
6691
|
+
# resp.rest_configuration.global_source_configuration.filter_configuration.strip_quotes #=> Boolean
|
|
6692
|
+
# resp.rest_configuration.global_source_configuration.filter_configuration.between_configuration.low_bound_key #=> String
|
|
6693
|
+
# resp.rest_configuration.global_source_configuration.filter_configuration.between_configuration.high_bound_key #=> String
|
|
6694
|
+
# resp.rest_configuration.global_source_configuration.filter_configuration.between_configuration.template #=> String
|
|
6695
|
+
# resp.rest_configuration.global_source_configuration.filter_configuration.filter_string_configuration.query_parameter_name #=> String
|
|
6696
|
+
# resp.rest_configuration.global_source_configuration.filter_configuration.filter_string_configuration.quote_string_values #=> Boolean
|
|
6697
|
+
# resp.rest_configuration.global_source_configuration.filter_configuration.filter_string_configuration.quote_character #=> String
|
|
6686
6698
|
# resp.rest_configuration.validation_endpoint_configuration.request_method #=> String, one of "GET", "POST"
|
|
6687
6699
|
# resp.rest_configuration.validation_endpoint_configuration.request_path #=> String
|
|
6688
6700
|
# resp.rest_configuration.validation_endpoint_configuration.request_parameters #=> Array
|
|
@@ -6694,6 +6706,7 @@ module Aws::Glue
|
|
|
6694
6706
|
# resp.rest_configuration.validation_endpoint_configuration.request_parameters[0].allowed_values[0] #=> String
|
|
6695
6707
|
# resp.rest_configuration.validation_endpoint_configuration.request_parameters[0].property_location #=> String, one of "HEADER", "BODY", "QUERY_PARAM", "PATH"
|
|
6696
6708
|
# resp.rest_configuration.validation_endpoint_configuration.request_parameters[0].property_type #=> String, one of "USER_INPUT", "SECRET", "READ_ONLY", "UNUSED", "SECRET_OR_USER_INPUT"
|
|
6709
|
+
# resp.rest_configuration.validation_endpoint_configuration.request_parameters[0].format #=> String
|
|
6697
6710
|
# resp.rest_configuration.validation_endpoint_configuration.response_configuration.result_path #=> String
|
|
6698
6711
|
# resp.rest_configuration.validation_endpoint_configuration.response_configuration.error_path #=> String
|
|
6699
6712
|
# resp.rest_configuration.validation_endpoint_configuration.pagination_configuration.cursor_configuration.next_page.key #=> String
|
|
@@ -6716,6 +6729,17 @@ module Aws::Glue
|
|
|
6716
6729
|
# resp.rest_configuration.validation_endpoint_configuration.pagination_configuration.offset_configuration.limit_parameter.property_location #=> String, one of "HEADER", "BODY", "QUERY_PARAM", "PATH"
|
|
6717
6730
|
# resp.rest_configuration.validation_endpoint_configuration.pagination_configuration.offset_configuration.limit_parameter.value.content_path #=> String
|
|
6718
6731
|
# resp.rest_configuration.validation_endpoint_configuration.pagination_configuration.offset_configuration.limit_parameter.value.header_key #=> String
|
|
6732
|
+
# resp.rest_configuration.validation_endpoint_configuration.filter_configuration.filter_mode #=> String, one of "QUERY_PARAMS", "FILTER_STRING"
|
|
6733
|
+
# resp.rest_configuration.validation_endpoint_configuration.filter_configuration.operator_mappings #=> Hash
|
|
6734
|
+
# resp.rest_configuration.validation_endpoint_configuration.filter_configuration.operator_mappings["String"] #=> String
|
|
6735
|
+
# resp.rest_configuration.validation_endpoint_configuration.filter_configuration.date_time_format #=> String
|
|
6736
|
+
# resp.rest_configuration.validation_endpoint_configuration.filter_configuration.strip_quotes #=> Boolean
|
|
6737
|
+
# resp.rest_configuration.validation_endpoint_configuration.filter_configuration.between_configuration.low_bound_key #=> String
|
|
6738
|
+
# resp.rest_configuration.validation_endpoint_configuration.filter_configuration.between_configuration.high_bound_key #=> String
|
|
6739
|
+
# resp.rest_configuration.validation_endpoint_configuration.filter_configuration.between_configuration.template #=> String
|
|
6740
|
+
# resp.rest_configuration.validation_endpoint_configuration.filter_configuration.filter_string_configuration.query_parameter_name #=> String
|
|
6741
|
+
# resp.rest_configuration.validation_endpoint_configuration.filter_configuration.filter_string_configuration.quote_string_values #=> Boolean
|
|
6742
|
+
# resp.rest_configuration.validation_endpoint_configuration.filter_configuration.filter_string_configuration.quote_character #=> String
|
|
6719
6743
|
# resp.rest_configuration.entity_configurations #=> Hash
|
|
6720
6744
|
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].source_configuration.request_method #=> String, one of "GET", "POST"
|
|
6721
6745
|
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].source_configuration.request_path #=> String
|
|
@@ -6728,6 +6752,7 @@ module Aws::Glue
|
|
|
6728
6752
|
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].source_configuration.request_parameters[0].allowed_values[0] #=> String
|
|
6729
6753
|
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].source_configuration.request_parameters[0].property_location #=> String, one of "HEADER", "BODY", "QUERY_PARAM", "PATH"
|
|
6730
6754
|
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].source_configuration.request_parameters[0].property_type #=> String, one of "USER_INPUT", "SECRET", "READ_ONLY", "UNUSED", "SECRET_OR_USER_INPUT"
|
|
6755
|
+
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].source_configuration.request_parameters[0].format #=> String
|
|
6731
6756
|
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].source_configuration.response_configuration.result_path #=> String
|
|
6732
6757
|
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].source_configuration.response_configuration.error_path #=> String
|
|
6733
6758
|
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].source_configuration.pagination_configuration.cursor_configuration.next_page.key #=> String
|
|
@@ -6750,9 +6775,32 @@ module Aws::Glue
|
|
|
6750
6775
|
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].source_configuration.pagination_configuration.offset_configuration.limit_parameter.property_location #=> String, one of "HEADER", "BODY", "QUERY_PARAM", "PATH"
|
|
6751
6776
|
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].source_configuration.pagination_configuration.offset_configuration.limit_parameter.value.content_path #=> String
|
|
6752
6777
|
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].source_configuration.pagination_configuration.offset_configuration.limit_parameter.value.header_key #=> String
|
|
6778
|
+
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].source_configuration.filter_configuration.filter_mode #=> String, one of "QUERY_PARAMS", "FILTER_STRING"
|
|
6779
|
+
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].source_configuration.filter_configuration.operator_mappings #=> Hash
|
|
6780
|
+
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].source_configuration.filter_configuration.operator_mappings["String"] #=> String
|
|
6781
|
+
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].source_configuration.filter_configuration.date_time_format #=> String
|
|
6782
|
+
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].source_configuration.filter_configuration.strip_quotes #=> Boolean
|
|
6783
|
+
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].source_configuration.filter_configuration.between_configuration.low_bound_key #=> String
|
|
6784
|
+
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].source_configuration.filter_configuration.between_configuration.high_bound_key #=> String
|
|
6785
|
+
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].source_configuration.filter_configuration.between_configuration.template #=> String
|
|
6786
|
+
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].source_configuration.filter_configuration.filter_string_configuration.query_parameter_name #=> String
|
|
6787
|
+
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].source_configuration.filter_configuration.filter_string_configuration.quote_string_values #=> Boolean
|
|
6788
|
+
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].source_configuration.filter_configuration.filter_string_configuration.quote_character #=> String
|
|
6753
6789
|
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].schema #=> Hash
|
|
6754
6790
|
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].schema["FieldDefinitionMapKeyString"].name #=> String
|
|
6755
6791
|
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].schema["FieldDefinitionMapKeyString"].field_data_type #=> String, one of "INT", "SMALLINT", "BIGINT", "FLOAT", "LONG", "DATE", "BOOLEAN", "MAP", "ARRAY", "STRING", "TIMESTAMP", "DECIMAL", "BYTE", "SHORT", "DOUBLE", "STRUCT", "BINARY", "UNION"
|
|
6792
|
+
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].schema["FieldDefinitionMapKeyString"].response_date_format #=> String
|
|
6793
|
+
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].schema["FieldDefinitionMapKeyString"].is_partitionable #=> Boolean
|
|
6794
|
+
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].schema["FieldDefinitionMapKeyString"].is_nullable #=> Boolean
|
|
6795
|
+
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].schema["FieldDefinitionMapKeyString"].is_queryable #=> Boolean
|
|
6796
|
+
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].schema["FieldDefinitionMapKeyString"].is_orderable #=> Boolean
|
|
6797
|
+
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].schema["FieldDefinitionMapKeyString"].filter_overrides.field_name #=> String
|
|
6798
|
+
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].schema["FieldDefinitionMapKeyString"].filter_overrides.operator_mappings #=> Hash
|
|
6799
|
+
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].schema["FieldDefinitionMapKeyString"].filter_overrides.operator_mappings["String"] #=> String
|
|
6800
|
+
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].schema["FieldDefinitionMapKeyString"].filter_overrides.between_configuration.low_bound_key #=> String
|
|
6801
|
+
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].schema["FieldDefinitionMapKeyString"].filter_overrides.between_configuration.high_bound_key #=> String
|
|
6802
|
+
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].schema["FieldDefinitionMapKeyString"].filter_overrides.between_configuration.template #=> String
|
|
6803
|
+
# resp.rest_configuration.entity_configurations["EntityConfigurationMapKeyString"].schema["FieldDefinitionMapKeyString"].filter_overrides.date_time_format #=> String
|
|
6756
6804
|
#
|
|
6757
6805
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DescribeConnectionType AWS API Documentation
|
|
6758
6806
|
#
|
|
@@ -16174,6 +16222,7 @@ module Aws::Glue
|
|
|
16174
16222
|
# allowed_values: ["String"],
|
|
16175
16223
|
# property_location: "HEADER", # accepts HEADER, BODY, QUERY_PARAM, PATH
|
|
16176
16224
|
# property_type: "USER_INPUT", # required, accepts USER_INPUT, SECRET, READ_ONLY, UNUSED, SECRET_OR_USER_INPUT
|
|
16225
|
+
# format: "String",
|
|
16177
16226
|
# },
|
|
16178
16227
|
# additional_request_parameters: [
|
|
16179
16228
|
# {
|
|
@@ -16184,6 +16233,7 @@ module Aws::Glue
|
|
|
16184
16233
|
# allowed_values: ["String"],
|
|
16185
16234
|
# property_location: "HEADER", # accepts HEADER, BODY, QUERY_PARAM, PATH
|
|
16186
16235
|
# property_type: "USER_INPUT", # required, accepts USER_INPUT, SECRET, READ_ONLY, UNUSED, SECRET_OR_USER_INPUT
|
|
16236
|
+
# format: "String",
|
|
16187
16237
|
# },
|
|
16188
16238
|
# ],
|
|
16189
16239
|
# },
|
|
@@ -16200,6 +16250,7 @@ module Aws::Glue
|
|
|
16200
16250
|
# allowed_values: ["String"],
|
|
16201
16251
|
# property_location: "HEADER", # accepts HEADER, BODY, QUERY_PARAM, PATH
|
|
16202
16252
|
# property_type: "USER_INPUT", # required, accepts USER_INPUT, SECRET, READ_ONLY, UNUSED, SECRET_OR_USER_INPUT
|
|
16253
|
+
# format: "String",
|
|
16203
16254
|
# },
|
|
16204
16255
|
# request_method: "GET", # accepts GET, POST
|
|
16205
16256
|
# content_type: "APPLICATION_JSON", # accepts APPLICATION_JSON, URL_ENCODED
|
|
@@ -16211,6 +16262,7 @@ module Aws::Glue
|
|
|
16211
16262
|
# allowed_values: ["String"],
|
|
16212
16263
|
# property_location: "HEADER", # accepts HEADER, BODY, QUERY_PARAM, PATH
|
|
16213
16264
|
# property_type: "USER_INPUT", # required, accepts USER_INPUT, SECRET, READ_ONLY, UNUSED, SECRET_OR_USER_INPUT
|
|
16265
|
+
# format: "String",
|
|
16214
16266
|
# },
|
|
16215
16267
|
# client_secret: {
|
|
16216
16268
|
# name: "PropertyName", # required
|
|
@@ -16220,6 +16272,7 @@ module Aws::Glue
|
|
|
16220
16272
|
# allowed_values: ["String"],
|
|
16221
16273
|
# property_location: "HEADER", # accepts HEADER, BODY, QUERY_PARAM, PATH
|
|
16222
16274
|
# property_type: "USER_INPUT", # required, accepts USER_INPUT, SECRET, READ_ONLY, UNUSED, SECRET_OR_USER_INPUT
|
|
16275
|
+
# format: "String",
|
|
16223
16276
|
# },
|
|
16224
16277
|
# scope: {
|
|
16225
16278
|
# name: "PropertyName", # required
|
|
@@ -16229,6 +16282,7 @@ module Aws::Glue
|
|
|
16229
16282
|
# allowed_values: ["String"],
|
|
16230
16283
|
# property_location: "HEADER", # accepts HEADER, BODY, QUERY_PARAM, PATH
|
|
16231
16284
|
# property_type: "USER_INPUT", # required, accepts USER_INPUT, SECRET, READ_ONLY, UNUSED, SECRET_OR_USER_INPUT
|
|
16285
|
+
# format: "String",
|
|
16232
16286
|
# },
|
|
16233
16287
|
# token_url_parameters: [
|
|
16234
16288
|
# {
|
|
@@ -16239,6 +16293,7 @@ module Aws::Glue
|
|
|
16239
16293
|
# allowed_values: ["String"],
|
|
16240
16294
|
# property_location: "HEADER", # accepts HEADER, BODY, QUERY_PARAM, PATH
|
|
16241
16295
|
# property_type: "USER_INPUT", # required, accepts USER_INPUT, SECRET, READ_ONLY, UNUSED, SECRET_OR_USER_INPUT
|
|
16296
|
+
# format: "String",
|
|
16242
16297
|
# },
|
|
16243
16298
|
# ],
|
|
16244
16299
|
# },
|
|
@@ -16251,6 +16306,7 @@ module Aws::Glue
|
|
|
16251
16306
|
# allowed_values: ["String"],
|
|
16252
16307
|
# property_location: "HEADER", # accepts HEADER, BODY, QUERY_PARAM, PATH
|
|
16253
16308
|
# property_type: "USER_INPUT", # required, accepts USER_INPUT, SECRET, READ_ONLY, UNUSED, SECRET_OR_USER_INPUT
|
|
16309
|
+
# format: "String",
|
|
16254
16310
|
# },
|
|
16255
16311
|
# request_method: "GET", # accepts GET, POST
|
|
16256
16312
|
# content_type: "APPLICATION_JSON", # accepts APPLICATION_JSON, URL_ENCODED
|
|
@@ -16262,6 +16318,7 @@ module Aws::Glue
|
|
|
16262
16318
|
# allowed_values: ["String"],
|
|
16263
16319
|
# property_location: "HEADER", # accepts HEADER, BODY, QUERY_PARAM, PATH
|
|
16264
16320
|
# property_type: "USER_INPUT", # required, accepts USER_INPUT, SECRET, READ_ONLY, UNUSED, SECRET_OR_USER_INPUT
|
|
16321
|
+
# format: "String",
|
|
16265
16322
|
# },
|
|
16266
16323
|
# token_url_parameters: [
|
|
16267
16324
|
# {
|
|
@@ -16272,6 +16329,7 @@ module Aws::Glue
|
|
|
16272
16329
|
# allowed_values: ["String"],
|
|
16273
16330
|
# property_location: "HEADER", # accepts HEADER, BODY, QUERY_PARAM, PATH
|
|
16274
16331
|
# property_type: "USER_INPUT", # required, accepts USER_INPUT, SECRET, READ_ONLY, UNUSED, SECRET_OR_USER_INPUT
|
|
16332
|
+
# format: "String",
|
|
16275
16333
|
# },
|
|
16276
16334
|
# ],
|
|
16277
16335
|
# },
|
|
@@ -16284,6 +16342,7 @@ module Aws::Glue
|
|
|
16284
16342
|
# allowed_values: ["String"],
|
|
16285
16343
|
# property_location: "HEADER", # accepts HEADER, BODY, QUERY_PARAM, PATH
|
|
16286
16344
|
# property_type: "USER_INPUT", # required, accepts USER_INPUT, SECRET, READ_ONLY, UNUSED, SECRET_OR_USER_INPUT
|
|
16345
|
+
# format: "String",
|
|
16287
16346
|
# },
|
|
16288
16347
|
# authorization_code: {
|
|
16289
16348
|
# name: "PropertyName", # required
|
|
@@ -16293,6 +16352,7 @@ module Aws::Glue
|
|
|
16293
16352
|
# allowed_values: ["String"],
|
|
16294
16353
|
# property_location: "HEADER", # accepts HEADER, BODY, QUERY_PARAM, PATH
|
|
16295
16354
|
# property_type: "USER_INPUT", # required, accepts USER_INPUT, SECRET, READ_ONLY, UNUSED, SECRET_OR_USER_INPUT
|
|
16355
|
+
# format: "String",
|
|
16296
16356
|
# },
|
|
16297
16357
|
# redirect_uri: {
|
|
16298
16358
|
# name: "PropertyName", # required
|
|
@@ -16302,6 +16362,7 @@ module Aws::Glue
|
|
|
16302
16362
|
# allowed_values: ["String"],
|
|
16303
16363
|
# property_location: "HEADER", # accepts HEADER, BODY, QUERY_PARAM, PATH
|
|
16304
16364
|
# property_type: "USER_INPUT", # required, accepts USER_INPUT, SECRET, READ_ONLY, UNUSED, SECRET_OR_USER_INPUT
|
|
16365
|
+
# format: "String",
|
|
16305
16366
|
# },
|
|
16306
16367
|
# token_url: {
|
|
16307
16368
|
# name: "PropertyName", # required
|
|
@@ -16311,6 +16372,7 @@ module Aws::Glue
|
|
|
16311
16372
|
# allowed_values: ["String"],
|
|
16312
16373
|
# property_location: "HEADER", # accepts HEADER, BODY, QUERY_PARAM, PATH
|
|
16313
16374
|
# property_type: "USER_INPUT", # required, accepts USER_INPUT, SECRET, READ_ONLY, UNUSED, SECRET_OR_USER_INPUT
|
|
16375
|
+
# format: "String",
|
|
16314
16376
|
# },
|
|
16315
16377
|
# request_method: "GET", # accepts GET, POST
|
|
16316
16378
|
# content_type: "APPLICATION_JSON", # accepts APPLICATION_JSON, URL_ENCODED
|
|
@@ -16322,6 +16384,7 @@ module Aws::Glue
|
|
|
16322
16384
|
# allowed_values: ["String"],
|
|
16323
16385
|
# property_location: "HEADER", # accepts HEADER, BODY, QUERY_PARAM, PATH
|
|
16324
16386
|
# property_type: "USER_INPUT", # required, accepts USER_INPUT, SECRET, READ_ONLY, UNUSED, SECRET_OR_USER_INPUT
|
|
16387
|
+
# format: "String",
|
|
16325
16388
|
# },
|
|
16326
16389
|
# client_secret: {
|
|
16327
16390
|
# name: "PropertyName", # required
|
|
@@ -16331,6 +16394,7 @@ module Aws::Glue
|
|
|
16331
16394
|
# allowed_values: ["String"],
|
|
16332
16395
|
# property_location: "HEADER", # accepts HEADER, BODY, QUERY_PARAM, PATH
|
|
16333
16396
|
# property_type: "USER_INPUT", # required, accepts USER_INPUT, SECRET, READ_ONLY, UNUSED, SECRET_OR_USER_INPUT
|
|
16397
|
+
# format: "String",
|
|
16334
16398
|
# },
|
|
16335
16399
|
# scope: {
|
|
16336
16400
|
# name: "PropertyName", # required
|
|
@@ -16340,6 +16404,7 @@ module Aws::Glue
|
|
|
16340
16404
|
# allowed_values: ["String"],
|
|
16341
16405
|
# property_location: "HEADER", # accepts HEADER, BODY, QUERY_PARAM, PATH
|
|
16342
16406
|
# property_type: "USER_INPUT", # required, accepts USER_INPUT, SECRET, READ_ONLY, UNUSED, SECRET_OR_USER_INPUT
|
|
16407
|
+
# format: "String",
|
|
16343
16408
|
# },
|
|
16344
16409
|
# prompt: {
|
|
16345
16410
|
# name: "PropertyName", # required
|
|
@@ -16349,6 +16414,7 @@ module Aws::Glue
|
|
|
16349
16414
|
# allowed_values: ["String"],
|
|
16350
16415
|
# property_location: "HEADER", # accepts HEADER, BODY, QUERY_PARAM, PATH
|
|
16351
16416
|
# property_type: "USER_INPUT", # required, accepts USER_INPUT, SECRET, READ_ONLY, UNUSED, SECRET_OR_USER_INPUT
|
|
16417
|
+
# format: "String",
|
|
16352
16418
|
# },
|
|
16353
16419
|
# token_url_parameters: [
|
|
16354
16420
|
# {
|
|
@@ -16359,6 +16425,7 @@ module Aws::Glue
|
|
|
16359
16425
|
# allowed_values: ["String"],
|
|
16360
16426
|
# property_location: "HEADER", # accepts HEADER, BODY, QUERY_PARAM, PATH
|
|
16361
16427
|
# property_type: "USER_INPUT", # required, accepts USER_INPUT, SECRET, READ_ONLY, UNUSED, SECRET_OR_USER_INPUT
|
|
16428
|
+
# format: "String",
|
|
16362
16429
|
# },
|
|
16363
16430
|
# ],
|
|
16364
16431
|
# },
|
|
@@ -16372,6 +16439,7 @@ module Aws::Glue
|
|
|
16372
16439
|
# allowed_values: ["String"],
|
|
16373
16440
|
# property_location: "HEADER", # accepts HEADER, BODY, QUERY_PARAM, PATH
|
|
16374
16441
|
# property_type: "USER_INPUT", # required, accepts USER_INPUT, SECRET, READ_ONLY, UNUSED, SECRET_OR_USER_INPUT
|
|
16442
|
+
# format: "String",
|
|
16375
16443
|
# },
|
|
16376
16444
|
# password: {
|
|
16377
16445
|
# name: "PropertyName", # required
|
|
@@ -16381,6 +16449,7 @@ module Aws::Glue
|
|
|
16381
16449
|
# allowed_values: ["String"],
|
|
16382
16450
|
# property_location: "HEADER", # accepts HEADER, BODY, QUERY_PARAM, PATH
|
|
16383
16451
|
# property_type: "USER_INPUT", # required, accepts USER_INPUT, SECRET, READ_ONLY, UNUSED, SECRET_OR_USER_INPUT
|
|
16452
|
+
# format: "String",
|
|
16384
16453
|
# },
|
|
16385
16454
|
# },
|
|
16386
16455
|
# custom_authentication_properties: {
|
|
@@ -16393,6 +16462,7 @@ module Aws::Glue
|
|
|
16393
16462
|
# allowed_values: ["String"],
|
|
16394
16463
|
# property_location: "HEADER", # accepts HEADER, BODY, QUERY_PARAM, PATH
|
|
16395
16464
|
# property_type: "USER_INPUT", # required, accepts USER_INPUT, SECRET, READ_ONLY, UNUSED, SECRET_OR_USER_INPUT
|
|
16465
|
+
# format: "String",
|
|
16396
16466
|
# },
|
|
16397
16467
|
# ],
|
|
16398
16468
|
# },
|
|
@@ -16410,6 +16480,7 @@ module Aws::Glue
|
|
|
16410
16480
|
# allowed_values: ["String"],
|
|
16411
16481
|
# property_location: "HEADER", # accepts HEADER, BODY, QUERY_PARAM, PATH
|
|
16412
16482
|
# property_type: "USER_INPUT", # required, accepts USER_INPUT, SECRET, READ_ONLY, UNUSED, SECRET_OR_USER_INPUT
|
|
16483
|
+
# format: "String",
|
|
16413
16484
|
# },
|
|
16414
16485
|
# ],
|
|
16415
16486
|
# response_configuration: {
|
|
@@ -16458,6 +16529,24 @@ module Aws::Glue
|
|
|
16458
16529
|
# },
|
|
16459
16530
|
# },
|
|
16460
16531
|
# },
|
|
16532
|
+
# filter_configuration: {
|
|
16533
|
+
# filter_mode: "QUERY_PARAMS", # required, accepts QUERY_PARAMS, FILTER_STRING
|
|
16534
|
+
# operator_mappings: {
|
|
16535
|
+
# "String" => "String",
|
|
16536
|
+
# },
|
|
16537
|
+
# date_time_format: "String",
|
|
16538
|
+
# strip_quotes: false,
|
|
16539
|
+
# between_configuration: {
|
|
16540
|
+
# low_bound_key: "String",
|
|
16541
|
+
# high_bound_key: "String",
|
|
16542
|
+
# template: "String",
|
|
16543
|
+
# },
|
|
16544
|
+
# filter_string_configuration: {
|
|
16545
|
+
# query_parameter_name: "String", # required
|
|
16546
|
+
# quote_string_values: false,
|
|
16547
|
+
# quote_character: "String",
|
|
16548
|
+
# },
|
|
16549
|
+
# },
|
|
16461
16550
|
# },
|
|
16462
16551
|
# validation_endpoint_configuration: {
|
|
16463
16552
|
# request_method: "GET", # accepts GET, POST
|
|
@@ -16471,6 +16560,7 @@ module Aws::Glue
|
|
|
16471
16560
|
# allowed_values: ["String"],
|
|
16472
16561
|
# property_location: "HEADER", # accepts HEADER, BODY, QUERY_PARAM, PATH
|
|
16473
16562
|
# property_type: "USER_INPUT", # required, accepts USER_INPUT, SECRET, READ_ONLY, UNUSED, SECRET_OR_USER_INPUT
|
|
16563
|
+
# format: "String",
|
|
16474
16564
|
# },
|
|
16475
16565
|
# ],
|
|
16476
16566
|
# response_configuration: {
|
|
@@ -16519,6 +16609,24 @@ module Aws::Glue
|
|
|
16519
16609
|
# },
|
|
16520
16610
|
# },
|
|
16521
16611
|
# },
|
|
16612
|
+
# filter_configuration: {
|
|
16613
|
+
# filter_mode: "QUERY_PARAMS", # required, accepts QUERY_PARAMS, FILTER_STRING
|
|
16614
|
+
# operator_mappings: {
|
|
16615
|
+
# "String" => "String",
|
|
16616
|
+
# },
|
|
16617
|
+
# date_time_format: "String",
|
|
16618
|
+
# strip_quotes: false,
|
|
16619
|
+
# between_configuration: {
|
|
16620
|
+
# low_bound_key: "String",
|
|
16621
|
+
# high_bound_key: "String",
|
|
16622
|
+
# template: "String",
|
|
16623
|
+
# },
|
|
16624
|
+
# filter_string_configuration: {
|
|
16625
|
+
# query_parameter_name: "String", # required
|
|
16626
|
+
# quote_string_values: false,
|
|
16627
|
+
# quote_character: "String",
|
|
16628
|
+
# },
|
|
16629
|
+
# },
|
|
16522
16630
|
# },
|
|
16523
16631
|
# entity_configurations: {
|
|
16524
16632
|
# "EntityConfigurationMapKeyString" => {
|
|
@@ -16534,6 +16642,7 @@ module Aws::Glue
|
|
|
16534
16642
|
# allowed_values: ["String"],
|
|
16535
16643
|
# property_location: "HEADER", # accepts HEADER, BODY, QUERY_PARAM, PATH
|
|
16536
16644
|
# property_type: "USER_INPUT", # required, accepts USER_INPUT, SECRET, READ_ONLY, UNUSED, SECRET_OR_USER_INPUT
|
|
16645
|
+
# format: "String",
|
|
16537
16646
|
# },
|
|
16538
16647
|
# ],
|
|
16539
16648
|
# response_configuration: {
|
|
@@ -16582,11 +16691,46 @@ module Aws::Glue
|
|
|
16582
16691
|
# },
|
|
16583
16692
|
# },
|
|
16584
16693
|
# },
|
|
16694
|
+
# filter_configuration: {
|
|
16695
|
+
# filter_mode: "QUERY_PARAMS", # required, accepts QUERY_PARAMS, FILTER_STRING
|
|
16696
|
+
# operator_mappings: {
|
|
16697
|
+
# "String" => "String",
|
|
16698
|
+
# },
|
|
16699
|
+
# date_time_format: "String",
|
|
16700
|
+
# strip_quotes: false,
|
|
16701
|
+
# between_configuration: {
|
|
16702
|
+
# low_bound_key: "String",
|
|
16703
|
+
# high_bound_key: "String",
|
|
16704
|
+
# template: "String",
|
|
16705
|
+
# },
|
|
16706
|
+
# filter_string_configuration: {
|
|
16707
|
+
# query_parameter_name: "String", # required
|
|
16708
|
+
# quote_string_values: false,
|
|
16709
|
+
# quote_character: "String",
|
|
16710
|
+
# },
|
|
16711
|
+
# },
|
|
16585
16712
|
# },
|
|
16586
16713
|
# schema: {
|
|
16587
16714
|
# "FieldDefinitionMapKeyString" => {
|
|
16588
16715
|
# name: "String", # required
|
|
16589
16716
|
# field_data_type: "INT", # required, accepts INT, SMALLINT, BIGINT, FLOAT, LONG, DATE, BOOLEAN, MAP, ARRAY, STRING, TIMESTAMP, DECIMAL, BYTE, SHORT, DOUBLE, STRUCT, BINARY, UNION
|
|
16717
|
+
# response_date_format: "String",
|
|
16718
|
+
# is_partitionable: false,
|
|
16719
|
+
# is_nullable: false,
|
|
16720
|
+
# is_queryable: false,
|
|
16721
|
+
# is_orderable: false,
|
|
16722
|
+
# filter_overrides: {
|
|
16723
|
+
# field_name: "String",
|
|
16724
|
+
# operator_mappings: {
|
|
16725
|
+
# "String" => "String",
|
|
16726
|
+
# },
|
|
16727
|
+
# between_configuration: {
|
|
16728
|
+
# low_bound_key: "String",
|
|
16729
|
+
# high_bound_key: "String",
|
|
16730
|
+
# template: "String",
|
|
16731
|
+
# },
|
|
16732
|
+
# date_time_format: "String",
|
|
16733
|
+
# },
|
|
16590
16734
|
# },
|
|
16591
16735
|
# },
|
|
16592
16736
|
# },
|
|
@@ -20842,7 +20986,7 @@ module Aws::Glue
|
|
|
20842
20986
|
tracer: tracer
|
|
20843
20987
|
)
|
|
20844
20988
|
context[:gem_name] = 'aws-sdk-glue'
|
|
20845
|
-
context[:gem_version] = '1.
|
|
20989
|
+
context[:gem_version] = '1.267.0'
|
|
20846
20990
|
Seahorse::Client::Request.new(handlers, context)
|
|
20847
20991
|
end
|
|
20848
20992
|
|
|
@@ -146,6 +146,7 @@ module Aws::Glue
|
|
|
146
146
|
BatchUpdatePartitionRequestEntryList = Shapes::ListShape.new(name: 'BatchUpdatePartitionRequestEntryList')
|
|
147
147
|
BatchUpdatePartitionResponse = Shapes::StructureShape.new(name: 'BatchUpdatePartitionResponse')
|
|
148
148
|
BatchWindow = Shapes::IntegerShape.new(name: 'BatchWindow')
|
|
149
|
+
BetweenConfiguration = Shapes::StructureShape.new(name: 'BetweenConfiguration')
|
|
149
150
|
BinEdges = Shapes::ListShape.new(name: 'BinEdges')
|
|
150
151
|
BinaryColumnStatisticsData = Shapes::StructureShape.new(name: 'BinaryColumnStatisticsData')
|
|
151
152
|
Blob = Shapes::BlobShape.new(name: 'Blob')
|
|
@@ -293,6 +294,7 @@ module Aws::Glue
|
|
|
293
294
|
ConnectionStatus = Shapes::StringShape.new(name: 'ConnectionStatus')
|
|
294
295
|
ConnectionString = Shapes::StringShape.new(name: 'ConnectionString')
|
|
295
296
|
ConnectionStringList = Shapes::ListShape.new(name: 'ConnectionStringList')
|
|
297
|
+
ConnectionStringToStringMap = Shapes::MapShape.new(name: 'ConnectionStringToStringMap')
|
|
296
298
|
ConnectionType = Shapes::StringShape.new(name: 'ConnectionType')
|
|
297
299
|
ConnectionTypeBrief = Shapes::StructureShape.new(name: 'ConnectionTypeBrief')
|
|
298
300
|
ConnectionTypeList = Shapes::ListShape.new(name: 'ConnectionTypeList')
|
|
@@ -690,13 +692,17 @@ module Aws::Glue
|
|
|
690
692
|
FieldsList = Shapes::ListShape.new(name: 'FieldsList')
|
|
691
693
|
FillMissingValues = Shapes::StructureShape.new(name: 'FillMissingValues')
|
|
692
694
|
Filter = Shapes::StructureShape.new(name: 'Filter')
|
|
695
|
+
FilterConfiguration = Shapes::StructureShape.new(name: 'FilterConfiguration')
|
|
693
696
|
FilterExpression = Shapes::StructureShape.new(name: 'FilterExpression')
|
|
694
697
|
FilterExpressions = Shapes::ListShape.new(name: 'FilterExpressions')
|
|
695
698
|
FilterLogicalOperator = Shapes::StringShape.new(name: 'FilterLogicalOperator')
|
|
699
|
+
FilterMode = Shapes::StringShape.new(name: 'FilterMode')
|
|
696
700
|
FilterOperation = Shapes::StringShape.new(name: 'FilterOperation')
|
|
697
701
|
FilterOperator = Shapes::StringShape.new(name: 'FilterOperator')
|
|
702
|
+
FilterOverrides = Shapes::StructureShape.new(name: 'FilterOverrides')
|
|
698
703
|
FilterPredicate = Shapes::StringShape.new(name: 'FilterPredicate')
|
|
699
704
|
FilterString = Shapes::StringShape.new(name: 'FilterString')
|
|
705
|
+
FilterStringConfiguration = Shapes::StructureShape.new(name: 'FilterStringConfiguration')
|
|
700
706
|
FilterValue = Shapes::StructureShape.new(name: 'FilterValue')
|
|
701
707
|
FilterValueType = Shapes::StringShape.new(name: 'FilterValueType')
|
|
702
708
|
FilterValues = Shapes::ListShape.new(name: 'FilterValues')
|
|
@@ -2282,6 +2288,11 @@ module Aws::Glue
|
|
|
2282
2288
|
BatchUpdatePartitionResponse.add_member(:errors, Shapes::ShapeRef.new(shape: BatchUpdatePartitionFailureList, location_name: "Errors"))
|
|
2283
2289
|
BatchUpdatePartitionResponse.struct_class = Types::BatchUpdatePartitionResponse
|
|
2284
2290
|
|
|
2291
|
+
BetweenConfiguration.add_member(:low_bound_key, Shapes::ShapeRef.new(shape: String, location_name: "LowBoundKey"))
|
|
2292
|
+
BetweenConfiguration.add_member(:high_bound_key, Shapes::ShapeRef.new(shape: String, location_name: "HighBoundKey"))
|
|
2293
|
+
BetweenConfiguration.add_member(:template, Shapes::ShapeRef.new(shape: String, location_name: "Template"))
|
|
2294
|
+
BetweenConfiguration.struct_class = Types::BetweenConfiguration
|
|
2295
|
+
|
|
2285
2296
|
BinEdges.member = Shapes::ShapeRef.new(shape: GenericString)
|
|
2286
2297
|
|
|
2287
2298
|
BinaryColumnStatisticsData.add_member(:maximum_length, Shapes::ShapeRef.new(shape: NonNegativeLong, required: true, location_name: "MaximumLength"))
|
|
@@ -2830,6 +2841,9 @@ module Aws::Glue
|
|
|
2830
2841
|
|
|
2831
2842
|
ConnectionStringList.member = Shapes::ShapeRef.new(shape: ConnectionString)
|
|
2832
2843
|
|
|
2844
|
+
ConnectionStringToStringMap.key = Shapes::ShapeRef.new(shape: String)
|
|
2845
|
+
ConnectionStringToStringMap.value = Shapes::ShapeRef.new(shape: String)
|
|
2846
|
+
|
|
2833
2847
|
ConnectionTypeBrief.add_member(:connection_type, Shapes::ShapeRef.new(shape: ConnectionType, location_name: "ConnectionType"))
|
|
2834
2848
|
ConnectionTypeBrief.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "DisplayName"))
|
|
2835
2849
|
ConnectionTypeBrief.add_member(:vendor, Shapes::ShapeRef.new(shape: Vendor, location_name: "Vendor"))
|
|
@@ -2900,6 +2914,7 @@ module Aws::Glue
|
|
|
2900
2914
|
ConnectorProperty.add_member(:allowed_values, Shapes::ShapeRef.new(shape: ListOfString, location_name: "AllowedValues"))
|
|
2901
2915
|
ConnectorProperty.add_member(:property_location, Shapes::ShapeRef.new(shape: PropertyLocation, location_name: "PropertyLocation"))
|
|
2902
2916
|
ConnectorProperty.add_member(:property_type, Shapes::ShapeRef.new(shape: PropertyType, required: true, location_name: "PropertyType"))
|
|
2917
|
+
ConnectorProperty.add_member(:format, Shapes::ShapeRef.new(shape: String, location_name: "Format"))
|
|
2903
2918
|
ConnectorProperty.struct_class = Types::ConnectorProperty
|
|
2904
2919
|
|
|
2905
2920
|
ConnectorPropertyList.member = Shapes::ShapeRef.new(shape: ConnectorProperty)
|
|
@@ -4397,6 +4412,12 @@ module Aws::Glue
|
|
|
4397
4412
|
|
|
4398
4413
|
FieldDefinition.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
|
|
4399
4414
|
FieldDefinition.add_member(:field_data_type, Shapes::ShapeRef.new(shape: FieldDataType, required: true, location_name: "FieldDataType"))
|
|
4415
|
+
FieldDefinition.add_member(:response_date_format, Shapes::ShapeRef.new(shape: String, location_name: "ResponseDateFormat"))
|
|
4416
|
+
FieldDefinition.add_member(:is_partitionable, Shapes::ShapeRef.new(shape: Bool, location_name: "IsPartitionable"))
|
|
4417
|
+
FieldDefinition.add_member(:is_nullable, Shapes::ShapeRef.new(shape: Bool, location_name: "IsNullable"))
|
|
4418
|
+
FieldDefinition.add_member(:is_queryable, Shapes::ShapeRef.new(shape: Bool, location_name: "IsQueryable"))
|
|
4419
|
+
FieldDefinition.add_member(:is_orderable, Shapes::ShapeRef.new(shape: Bool, location_name: "IsOrderable"))
|
|
4420
|
+
FieldDefinition.add_member(:filter_overrides, Shapes::ShapeRef.new(shape: FilterOverrides, location_name: "FilterOverrides"))
|
|
4400
4421
|
FieldDefinition.struct_class = Types::FieldDefinition
|
|
4401
4422
|
|
|
4402
4423
|
FieldDefinitionMap.key = Shapes::ShapeRef.new(shape: FieldDefinitionMapKeyString)
|
|
@@ -4418,6 +4439,14 @@ module Aws::Glue
|
|
|
4418
4439
|
Filter.add_member(:filters, Shapes::ShapeRef.new(shape: FilterExpressions, required: true, location_name: "Filters"))
|
|
4419
4440
|
Filter.struct_class = Types::Filter
|
|
4420
4441
|
|
|
4442
|
+
FilterConfiguration.add_member(:filter_mode, Shapes::ShapeRef.new(shape: FilterMode, required: true, location_name: "FilterMode"))
|
|
4443
|
+
FilterConfiguration.add_member(:operator_mappings, Shapes::ShapeRef.new(shape: ConnectionStringToStringMap, location_name: "OperatorMappings"))
|
|
4444
|
+
FilterConfiguration.add_member(:date_time_format, Shapes::ShapeRef.new(shape: String, location_name: "DateTimeFormat"))
|
|
4445
|
+
FilterConfiguration.add_member(:strip_quotes, Shapes::ShapeRef.new(shape: Bool, location_name: "StripQuotes"))
|
|
4446
|
+
FilterConfiguration.add_member(:between_configuration, Shapes::ShapeRef.new(shape: BetweenConfiguration, location_name: "BetweenConfiguration"))
|
|
4447
|
+
FilterConfiguration.add_member(:filter_string_configuration, Shapes::ShapeRef.new(shape: FilterStringConfiguration, location_name: "FilterStringConfiguration"))
|
|
4448
|
+
FilterConfiguration.struct_class = Types::FilterConfiguration
|
|
4449
|
+
|
|
4421
4450
|
FilterExpression.add_member(:operation, Shapes::ShapeRef.new(shape: FilterOperation, required: true, location_name: "Operation"))
|
|
4422
4451
|
FilterExpression.add_member(:negated, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "Negated"))
|
|
4423
4452
|
FilterExpression.add_member(:values, Shapes::ShapeRef.new(shape: FilterValues, required: true, location_name: "Values"))
|
|
@@ -4425,6 +4454,17 @@ module Aws::Glue
|
|
|
4425
4454
|
|
|
4426
4455
|
FilterExpressions.member = Shapes::ShapeRef.new(shape: FilterExpression)
|
|
4427
4456
|
|
|
4457
|
+
FilterOverrides.add_member(:field_name, Shapes::ShapeRef.new(shape: String, location_name: "FieldName"))
|
|
4458
|
+
FilterOverrides.add_member(:operator_mappings, Shapes::ShapeRef.new(shape: ConnectionStringToStringMap, location_name: "OperatorMappings"))
|
|
4459
|
+
FilterOverrides.add_member(:between_configuration, Shapes::ShapeRef.new(shape: BetweenConfiguration, location_name: "BetweenConfiguration"))
|
|
4460
|
+
FilterOverrides.add_member(:date_time_format, Shapes::ShapeRef.new(shape: String, location_name: "DateTimeFormat"))
|
|
4461
|
+
FilterOverrides.struct_class = Types::FilterOverrides
|
|
4462
|
+
|
|
4463
|
+
FilterStringConfiguration.add_member(:query_parameter_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "QueryParameterName"))
|
|
4464
|
+
FilterStringConfiguration.add_member(:quote_string_values, Shapes::ShapeRef.new(shape: Bool, location_name: "QuoteStringValues"))
|
|
4465
|
+
FilterStringConfiguration.add_member(:quote_character, Shapes::ShapeRef.new(shape: String, location_name: "QuoteCharacter"))
|
|
4466
|
+
FilterStringConfiguration.struct_class = Types::FilterStringConfiguration
|
|
4467
|
+
|
|
4428
4468
|
FilterValue.add_member(:type, Shapes::ShapeRef.new(shape: FilterValueType, required: true, location_name: "Type"))
|
|
4429
4469
|
FilterValue.add_member(:value, Shapes::ShapeRef.new(shape: EnclosedInStringProperties, required: true, location_name: "Value"))
|
|
4430
4470
|
FilterValue.struct_class = Types::FilterValue
|
|
@@ -7563,6 +7603,7 @@ module Aws::Glue
|
|
|
7563
7603
|
SourceConfiguration.add_member(:request_parameters, Shapes::ShapeRef.new(shape: ConnectorPropertyList, location_name: "RequestParameters"))
|
|
7564
7604
|
SourceConfiguration.add_member(:response_configuration, Shapes::ShapeRef.new(shape: ResponseConfiguration, location_name: "ResponseConfiguration"))
|
|
7565
7605
|
SourceConfiguration.add_member(:pagination_configuration, Shapes::ShapeRef.new(shape: PaginationConfiguration, location_name: "PaginationConfiguration"))
|
|
7606
|
+
SourceConfiguration.add_member(:filter_configuration, Shapes::ShapeRef.new(shape: FilterConfiguration, location_name: "FilterConfiguration"))
|
|
7566
7607
|
SourceConfiguration.struct_class = Types::SourceConfiguration
|
|
7567
7608
|
|
|
7568
7609
|
SourceControlDetails.add_member(:provider, Shapes::ShapeRef.new(shape: SourceControlProvider, location_name: "Provider"))
|
data/lib/aws-sdk-glue/types.rb
CHANGED
|
@@ -1827,6 +1827,33 @@ module Aws::Glue
|
|
|
1827
1827
|
include Aws::Structure
|
|
1828
1828
|
end
|
|
1829
1829
|
|
|
1830
|
+
# Configuration that defines how BETWEEN range filter operations are
|
|
1831
|
+
# translated into REST API request parameters.
|
|
1832
|
+
#
|
|
1833
|
+
# @!attribute [rw] low_bound_key
|
|
1834
|
+
# The parameter name used for the lower bound value in a BETWEEN
|
|
1835
|
+
# filter operation.
|
|
1836
|
+
# @return [String]
|
|
1837
|
+
#
|
|
1838
|
+
# @!attribute [rw] high_bound_key
|
|
1839
|
+
# The parameter name used for the upper bound value in a BETWEEN
|
|
1840
|
+
# filter operation.
|
|
1841
|
+
# @return [String]
|
|
1842
|
+
#
|
|
1843
|
+
# @!attribute [rw] template
|
|
1844
|
+
# A template string for constructing the BETWEEN filter expression.
|
|
1845
|
+
# @return [String]
|
|
1846
|
+
#
|
|
1847
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/BetweenConfiguration AWS API Documentation
|
|
1848
|
+
#
|
|
1849
|
+
class BetweenConfiguration < Struct.new(
|
|
1850
|
+
:low_bound_key,
|
|
1851
|
+
:high_bound_key,
|
|
1852
|
+
:template)
|
|
1853
|
+
SENSITIVE = []
|
|
1854
|
+
include Aws::Structure
|
|
1855
|
+
end
|
|
1856
|
+
|
|
1830
1857
|
# Defines column statistics supported for bit sequence data values.
|
|
1831
1858
|
#
|
|
1832
1859
|
# @!attribute [rw] maximum_length
|
|
@@ -5024,6 +5051,13 @@ module Aws::Glue
|
|
|
5024
5051
|
# The data type of this property
|
|
5025
5052
|
# @return [String]
|
|
5026
5053
|
#
|
|
5054
|
+
# @!attribute [rw] format
|
|
5055
|
+
# A format template for the property value that defines how the value
|
|
5056
|
+
# should be formatted before sending it in API requests. Use `{value}`
|
|
5057
|
+
# as a placeholder for the actual property value (for example, `SSWS
|
|
5058
|
+
# {value}`).
|
|
5059
|
+
# @return [String]
|
|
5060
|
+
#
|
|
5027
5061
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ConnectorProperty AWS API Documentation
|
|
5028
5062
|
#
|
|
5029
5063
|
class ConnectorProperty < Struct.new(
|
|
@@ -5033,7 +5067,8 @@ module Aws::Glue
|
|
|
5033
5067
|
:default_value,
|
|
5034
5068
|
:allowed_values,
|
|
5035
5069
|
:property_location,
|
|
5036
|
-
:property_type
|
|
5070
|
+
:property_type,
|
|
5071
|
+
:format)
|
|
5037
5072
|
SENSITIVE = []
|
|
5038
5073
|
include Aws::Structure
|
|
5039
5074
|
end
|
|
@@ -12453,11 +12488,48 @@ module Aws::Glue
|
|
|
12453
12488
|
# The data type of the field.
|
|
12454
12489
|
# @return [String]
|
|
12455
12490
|
#
|
|
12491
|
+
# @!attribute [rw] response_date_format
|
|
12492
|
+
# The format pattern for parsing date values from API responses.
|
|
12493
|
+
# Required when the API uses a non-ISO-8601 format. Accepts Java
|
|
12494
|
+
# `DateTimeFormatter` patterns (for example, `EEE, d MMM yyyy HH:mm:ss
|
|
12495
|
+
# Z`), `EPOCH_SECONDS` for Unix epoch seconds, or `EPOCH_MILLIS` for
|
|
12496
|
+
# Unix epoch milliseconds.
|
|
12497
|
+
# @return [String]
|
|
12498
|
+
#
|
|
12499
|
+
# @!attribute [rw] is_partitionable
|
|
12500
|
+
# Indicates whether this field can be used for partitioning queries to
|
|
12501
|
+
# the data source.
|
|
12502
|
+
# @return [Boolean]
|
|
12503
|
+
#
|
|
12504
|
+
# @!attribute [rw] is_nullable
|
|
12505
|
+
# Indicates whether this field can contain null values.
|
|
12506
|
+
# @return [Boolean]
|
|
12507
|
+
#
|
|
12508
|
+
# @!attribute [rw] is_queryable
|
|
12509
|
+
# Indicates whether this field can be used in filter predicates when
|
|
12510
|
+
# querying data.
|
|
12511
|
+
# @return [Boolean]
|
|
12512
|
+
#
|
|
12513
|
+
# @!attribute [rw] is_orderable
|
|
12514
|
+
# Indicates whether this field can be used for ordering results.
|
|
12515
|
+
# @return [Boolean]
|
|
12516
|
+
#
|
|
12517
|
+
# @!attribute [rw] filter_overrides
|
|
12518
|
+
# Per-field overrides for filter behavior, allowing customization of
|
|
12519
|
+
# how filters are applied to this specific field.
|
|
12520
|
+
# @return [Types::FilterOverrides]
|
|
12521
|
+
#
|
|
12456
12522
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/FieldDefinition AWS API Documentation
|
|
12457
12523
|
#
|
|
12458
12524
|
class FieldDefinition < Struct.new(
|
|
12459
12525
|
:name,
|
|
12460
|
-
:field_data_type
|
|
12526
|
+
:field_data_type,
|
|
12527
|
+
:response_date_format,
|
|
12528
|
+
:is_partitionable,
|
|
12529
|
+
:is_nullable,
|
|
12530
|
+
:is_queryable,
|
|
12531
|
+
:is_orderable,
|
|
12532
|
+
:filter_overrides)
|
|
12461
12533
|
SENSITIVE = []
|
|
12462
12534
|
include Aws::Structure
|
|
12463
12535
|
end
|
|
@@ -12527,6 +12599,59 @@ module Aws::Glue
|
|
|
12527
12599
|
include Aws::Structure
|
|
12528
12600
|
end
|
|
12529
12601
|
|
|
12602
|
+
# Configuration that defines how filter predicates are applied to REST
|
|
12603
|
+
# API requests, supporting both query parameter and filter string
|
|
12604
|
+
# strategies.
|
|
12605
|
+
#
|
|
12606
|
+
# @!attribute [rw] filter_mode
|
|
12607
|
+
# The strategy for applying filters to requests. Use `QUERY_PARAMS` to
|
|
12608
|
+
# pass filters as individual query parameters, or `FILTER_STRING` to
|
|
12609
|
+
# construct a single filter expression string.
|
|
12610
|
+
# @return [String]
|
|
12611
|
+
#
|
|
12612
|
+
# @!attribute [rw] operator_mappings
|
|
12613
|
+
# A map of logical filter operators to their API-specific string
|
|
12614
|
+
# representations. Supported operator keys are: `EQUAL_TO`,
|
|
12615
|
+
# `NOT_EQUAL_TO`, `LESS_THAN`, `GREATER_THAN`,
|
|
12616
|
+
# `LESS_THAN_OR_EQUAL_TO`, `GREATER_THAN_OR_EQUAL_TO`, `CONTAINS`,
|
|
12617
|
+
# `BETWEEN`, `AND`, and `OR`.
|
|
12618
|
+
# @return [Hash<String,String>]
|
|
12619
|
+
#
|
|
12620
|
+
# @!attribute [rw] date_time_format
|
|
12621
|
+
# The global date and time format for filter expressions. Accepts Java
|
|
12622
|
+
# `DateTimeFormatter` patterns (for example, `EEE, d MMM yyyy HH:mm:ss
|
|
12623
|
+
# Z`), `EPOCH_SECONDS` for Unix epoch seconds, or `EPOCH_MILLIS` for
|
|
12624
|
+
# Unix epoch milliseconds. If not specified, values are passed as-is
|
|
12625
|
+
# in ISO-8601 format.
|
|
12626
|
+
# @return [String]
|
|
12627
|
+
#
|
|
12628
|
+
# @!attribute [rw] strip_quotes
|
|
12629
|
+
# Indicates whether surrounding double quotes should be stripped from
|
|
12630
|
+
# filter values before processing.
|
|
12631
|
+
# @return [Boolean]
|
|
12632
|
+
#
|
|
12633
|
+
# @!attribute [rw] between_configuration
|
|
12634
|
+
# Configuration for handling BETWEEN range filter operations.
|
|
12635
|
+
# @return [Types::BetweenConfiguration]
|
|
12636
|
+
#
|
|
12637
|
+
# @!attribute [rw] filter_string_configuration
|
|
12638
|
+
# Configuration for constructing filter expressions when `FilterMode`
|
|
12639
|
+
# is set to `FILTER_STRING`.
|
|
12640
|
+
# @return [Types::FilterStringConfiguration]
|
|
12641
|
+
#
|
|
12642
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/FilterConfiguration AWS API Documentation
|
|
12643
|
+
#
|
|
12644
|
+
class FilterConfiguration < Struct.new(
|
|
12645
|
+
:filter_mode,
|
|
12646
|
+
:operator_mappings,
|
|
12647
|
+
:date_time_format,
|
|
12648
|
+
:strip_quotes,
|
|
12649
|
+
:between_configuration,
|
|
12650
|
+
:filter_string_configuration)
|
|
12651
|
+
SENSITIVE = []
|
|
12652
|
+
include Aws::Structure
|
|
12653
|
+
end
|
|
12654
|
+
|
|
12530
12655
|
# Specifies a filter expression.
|
|
12531
12656
|
#
|
|
12532
12657
|
# @!attribute [rw] operation
|
|
@@ -12551,6 +12676,75 @@ module Aws::Glue
|
|
|
12551
12676
|
include Aws::Structure
|
|
12552
12677
|
end
|
|
12553
12678
|
|
|
12679
|
+
# Configuration that defines per-field overrides for filter behavior,
|
|
12680
|
+
# allowing individual fields to customize how filter operations are
|
|
12681
|
+
# applied.
|
|
12682
|
+
#
|
|
12683
|
+
# @!attribute [rw] field_name
|
|
12684
|
+
# An override for the field name to use in filter expressions, if
|
|
12685
|
+
# different from the schema field name.
|
|
12686
|
+
# @return [String]
|
|
12687
|
+
#
|
|
12688
|
+
# @!attribute [rw] operator_mappings
|
|
12689
|
+
# A map of logical filter operators to their field-specific API
|
|
12690
|
+
# representations, overriding the global operator mappings. Supported
|
|
12691
|
+
# operator keys are: `EQUAL_TO`, `NOT_EQUAL_TO`, `LESS_THAN`,
|
|
12692
|
+
# `GREATER_THAN`, `LESS_THAN_OR_EQUAL_TO`, `GREATER_THAN_OR_EQUAL_TO`,
|
|
12693
|
+
# `CONTAINS`, `BETWEEN`, `AND`, and `OR`.
|
|
12694
|
+
# @return [Hash<String,String>]
|
|
12695
|
+
#
|
|
12696
|
+
# @!attribute [rw] between_configuration
|
|
12697
|
+
# Field-specific configuration for handling BETWEEN range filter
|
|
12698
|
+
# operations.
|
|
12699
|
+
# @return [Types::BetweenConfiguration]
|
|
12700
|
+
#
|
|
12701
|
+
# @!attribute [rw] date_time_format
|
|
12702
|
+
# The date and time format for filter expressions on this field,
|
|
12703
|
+
# overriding the global `DateTimeFormat`. Accepts Java
|
|
12704
|
+
# `DateTimeFormatter` patterns (for example, `EEE, d MMM yyyy HH:mm:ss
|
|
12705
|
+
# Z`), `EPOCH_SECONDS` for Unix epoch seconds, or `EPOCH_MILLIS` for
|
|
12706
|
+
# Unix epoch milliseconds.
|
|
12707
|
+
# @return [String]
|
|
12708
|
+
#
|
|
12709
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/FilterOverrides AWS API Documentation
|
|
12710
|
+
#
|
|
12711
|
+
class FilterOverrides < Struct.new(
|
|
12712
|
+
:field_name,
|
|
12713
|
+
:operator_mappings,
|
|
12714
|
+
:between_configuration,
|
|
12715
|
+
:date_time_format)
|
|
12716
|
+
SENSITIVE = []
|
|
12717
|
+
include Aws::Structure
|
|
12718
|
+
end
|
|
12719
|
+
|
|
12720
|
+
# Configuration for constructing filter expression strings when using
|
|
12721
|
+
# the `FILTER_STRING` filter mode.
|
|
12722
|
+
#
|
|
12723
|
+
# @!attribute [rw] query_parameter_name
|
|
12724
|
+
# The query parameter name used to send the constructed filter
|
|
12725
|
+
# expression string in API requests.
|
|
12726
|
+
# @return [String]
|
|
12727
|
+
#
|
|
12728
|
+
# @!attribute [rw] quote_string_values
|
|
12729
|
+
# Indicates whether string and date values should be wrapped with a
|
|
12730
|
+
# quote character in the filter expression.
|
|
12731
|
+
# @return [Boolean]
|
|
12732
|
+
#
|
|
12733
|
+
# @!attribute [rw] quote_character
|
|
12734
|
+
# The character used to quote values when `QuoteStringValues` is true.
|
|
12735
|
+
# Defaults to double quotes if not specified.
|
|
12736
|
+
# @return [String]
|
|
12737
|
+
#
|
|
12738
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/FilterStringConfiguration AWS API Documentation
|
|
12739
|
+
#
|
|
12740
|
+
class FilterStringConfiguration < Struct.new(
|
|
12741
|
+
:query_parameter_name,
|
|
12742
|
+
:quote_string_values,
|
|
12743
|
+
:quote_character)
|
|
12744
|
+
SENSITIVE = []
|
|
12745
|
+
include Aws::Structure
|
|
12746
|
+
end
|
|
12747
|
+
|
|
12554
12748
|
# Represents a single entry in the list of values for a
|
|
12555
12749
|
# `FilterExpression`.
|
|
12556
12750
|
#
|
|
@@ -28212,6 +28406,12 @@ module Aws::Glue
|
|
|
28212
28406
|
# supporting both cursor-based and offset-based pagination strategies.
|
|
28213
28407
|
# @return [Types::PaginationConfiguration]
|
|
28214
28408
|
#
|
|
28409
|
+
# @!attribute [rw] filter_configuration
|
|
28410
|
+
# Configuration for applying filter pushdown to REST API requests,
|
|
28411
|
+
# defining how filter predicates are translated into query parameters
|
|
28412
|
+
# or filter strings.
|
|
28413
|
+
# @return [Types::FilterConfiguration]
|
|
28414
|
+
#
|
|
28215
28415
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/SourceConfiguration AWS API Documentation
|
|
28216
28416
|
#
|
|
28217
28417
|
class SourceConfiguration < Struct.new(
|
|
@@ -28219,7 +28419,8 @@ module Aws::Glue
|
|
|
28219
28419
|
:request_path,
|
|
28220
28420
|
:request_parameters,
|
|
28221
28421
|
:response_configuration,
|
|
28222
|
-
:pagination_configuration
|
|
28422
|
+
:pagination_configuration,
|
|
28423
|
+
:filter_configuration)
|
|
28223
28424
|
SENSITIVE = []
|
|
28224
28425
|
include Aws::Structure
|
|
28225
28426
|
end
|
data/lib/aws-sdk-glue.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -3760,7 +3760,22 @@ module Aws
|
|
|
3760
3760
|
source_configuration: Params::source_configuration?,
|
|
3761
3761
|
schema: Hash[::String, {
|
|
3762
3762
|
name: ::String,
|
|
3763
|
-
field_data_type: ("INT" | "SMALLINT" | "BIGINT" | "FLOAT" | "LONG" | "DATE" | "BOOLEAN" | "MAP" | "ARRAY" | "STRING" | "TIMESTAMP" | "DECIMAL" | "BYTE" | "SHORT" | "DOUBLE" | "STRUCT" | "BINARY" | "UNION")
|
|
3763
|
+
field_data_type: ("INT" | "SMALLINT" | "BIGINT" | "FLOAT" | "LONG" | "DATE" | "BOOLEAN" | "MAP" | "ARRAY" | "STRING" | "TIMESTAMP" | "DECIMAL" | "BYTE" | "SHORT" | "DOUBLE" | "STRUCT" | "BINARY" | "UNION"),
|
|
3764
|
+
response_date_format: ::String?,
|
|
3765
|
+
is_partitionable: bool?,
|
|
3766
|
+
is_nullable: bool?,
|
|
3767
|
+
is_queryable: bool?,
|
|
3768
|
+
is_orderable: bool?,
|
|
3769
|
+
filter_overrides: {
|
|
3770
|
+
field_name: ::String?,
|
|
3771
|
+
operator_mappings: Hash[::String, ::String]?,
|
|
3772
|
+
between_configuration: {
|
|
3773
|
+
low_bound_key: ::String?,
|
|
3774
|
+
high_bound_key: ::String?,
|
|
3775
|
+
template: ::String?
|
|
3776
|
+
}?,
|
|
3777
|
+
date_time_format: ::String?
|
|
3778
|
+
}?
|
|
3764
3779
|
}]?
|
|
3765
3780
|
}]?
|
|
3766
3781
|
},
|
data/sig/params.rbs
CHANGED
|
@@ -2035,7 +2035,8 @@ module Aws
|
|
|
2035
2035
|
default_value: ::String?,
|
|
2036
2036
|
allowed_values: Array[::String]?,
|
|
2037
2037
|
property_location: ("HEADER" | "BODY" | "QUERY_PARAM" | "PATH")?,
|
|
2038
|
-
property_type: ("USER_INPUT" | "SECRET" | "READ_ONLY" | "UNUSED" | "SECRET_OR_USER_INPUT")
|
|
2038
|
+
property_type: ("USER_INPUT" | "SECRET" | "READ_ONLY" | "UNUSED" | "SECRET_OR_USER_INPUT"),
|
|
2039
|
+
format: ::String?
|
|
2039
2040
|
}
|
|
2040
2041
|
|
|
2041
2042
|
type extracted_parameter = {
|
|
@@ -2063,6 +2064,23 @@ module Aws
|
|
|
2063
2064
|
offset_configuration: Params::offset_configuration?
|
|
2064
2065
|
}
|
|
2065
2066
|
|
|
2067
|
+
type filter_configuration = {
|
|
2068
|
+
filter_mode: ("QUERY_PARAMS" | "FILTER_STRING"),
|
|
2069
|
+
operator_mappings: Hash[::String, ::String]?,
|
|
2070
|
+
date_time_format: ::String?,
|
|
2071
|
+
strip_quotes: bool?,
|
|
2072
|
+
between_configuration: {
|
|
2073
|
+
low_bound_key: ::String?,
|
|
2074
|
+
high_bound_key: ::String?,
|
|
2075
|
+
template: ::String?
|
|
2076
|
+
}?,
|
|
2077
|
+
filter_string_configuration: {
|
|
2078
|
+
query_parameter_name: ::String,
|
|
2079
|
+
quote_string_values: bool?,
|
|
2080
|
+
quote_character: ::String?
|
|
2081
|
+
}?
|
|
2082
|
+
}
|
|
2083
|
+
|
|
2066
2084
|
type source_configuration = {
|
|
2067
2085
|
request_method: ("GET" | "POST")?,
|
|
2068
2086
|
request_path: ::String?,
|
|
@@ -2073,7 +2091,8 @@ module Aws
|
|
|
2073
2091
|
result_path: ::String,
|
|
2074
2092
|
error_path: ::String?
|
|
2075
2093
|
}?,
|
|
2076
|
-
pagination_configuration: Params::pagination_configuration
|
|
2094
|
+
pagination_configuration: Params::pagination_configuration?,
|
|
2095
|
+
filter_configuration: Params::filter_configuration?
|
|
2077
2096
|
}
|
|
2078
2097
|
|
|
2079
2098
|
type search_filter_clause = {
|
data/sig/types.rbs
CHANGED
|
@@ -517,6 +517,13 @@ module Aws::Glue
|
|
|
517
517
|
SENSITIVE: []
|
|
518
518
|
end
|
|
519
519
|
|
|
520
|
+
class BetweenConfiguration
|
|
521
|
+
attr_accessor low_bound_key: ::String
|
|
522
|
+
attr_accessor high_bound_key: ::String
|
|
523
|
+
attr_accessor template: ::String
|
|
524
|
+
SENSITIVE: []
|
|
525
|
+
end
|
|
526
|
+
|
|
520
527
|
class BinaryColumnStatisticsData
|
|
521
528
|
attr_accessor maximum_length: ::Integer
|
|
522
529
|
attr_accessor average_length: ::Float
|
|
@@ -1201,6 +1208,7 @@ module Aws::Glue
|
|
|
1201
1208
|
attr_accessor allowed_values: ::Array[::String]
|
|
1202
1209
|
attr_accessor property_location: ("HEADER" | "BODY" | "QUERY_PARAM" | "PATH")
|
|
1203
1210
|
attr_accessor property_type: ("USER_INPUT" | "SECRET" | "READ_ONLY" | "UNUSED" | "SECRET_OR_USER_INPUT")
|
|
1211
|
+
attr_accessor format: ::String
|
|
1204
1212
|
SENSITIVE: []
|
|
1205
1213
|
end
|
|
1206
1214
|
|
|
@@ -3051,6 +3059,12 @@ module Aws::Glue
|
|
|
3051
3059
|
class FieldDefinition
|
|
3052
3060
|
attr_accessor name: ::String
|
|
3053
3061
|
attr_accessor field_data_type: ("INT" | "SMALLINT" | "BIGINT" | "FLOAT" | "LONG" | "DATE" | "BOOLEAN" | "MAP" | "ARRAY" | "STRING" | "TIMESTAMP" | "DECIMAL" | "BYTE" | "SHORT" | "DOUBLE" | "STRUCT" | "BINARY" | "UNION")
|
|
3062
|
+
attr_accessor response_date_format: ::String
|
|
3063
|
+
attr_accessor is_partitionable: bool
|
|
3064
|
+
attr_accessor is_nullable: bool
|
|
3065
|
+
attr_accessor is_queryable: bool
|
|
3066
|
+
attr_accessor is_orderable: bool
|
|
3067
|
+
attr_accessor filter_overrides: Types::FilterOverrides
|
|
3054
3068
|
SENSITIVE: []
|
|
3055
3069
|
end
|
|
3056
3070
|
|
|
@@ -3070,6 +3084,16 @@ module Aws::Glue
|
|
|
3070
3084
|
SENSITIVE: []
|
|
3071
3085
|
end
|
|
3072
3086
|
|
|
3087
|
+
class FilterConfiguration
|
|
3088
|
+
attr_accessor filter_mode: ("QUERY_PARAMS" | "FILTER_STRING")
|
|
3089
|
+
attr_accessor operator_mappings: ::Hash[::String, ::String]
|
|
3090
|
+
attr_accessor date_time_format: ::String
|
|
3091
|
+
attr_accessor strip_quotes: bool
|
|
3092
|
+
attr_accessor between_configuration: Types::BetweenConfiguration
|
|
3093
|
+
attr_accessor filter_string_configuration: Types::FilterStringConfiguration
|
|
3094
|
+
SENSITIVE: []
|
|
3095
|
+
end
|
|
3096
|
+
|
|
3073
3097
|
class FilterExpression
|
|
3074
3098
|
attr_accessor operation: ("EQ" | "LT" | "GT" | "LTE" | "GTE" | "REGEX" | "ISNULL")
|
|
3075
3099
|
attr_accessor negated: bool
|
|
@@ -3077,6 +3101,21 @@ module Aws::Glue
|
|
|
3077
3101
|
SENSITIVE: []
|
|
3078
3102
|
end
|
|
3079
3103
|
|
|
3104
|
+
class FilterOverrides
|
|
3105
|
+
attr_accessor field_name: ::String
|
|
3106
|
+
attr_accessor operator_mappings: ::Hash[::String, ::String]
|
|
3107
|
+
attr_accessor between_configuration: Types::BetweenConfiguration
|
|
3108
|
+
attr_accessor date_time_format: ::String
|
|
3109
|
+
SENSITIVE: []
|
|
3110
|
+
end
|
|
3111
|
+
|
|
3112
|
+
class FilterStringConfiguration
|
|
3113
|
+
attr_accessor query_parameter_name: ::String
|
|
3114
|
+
attr_accessor quote_string_values: bool
|
|
3115
|
+
attr_accessor quote_character: ::String
|
|
3116
|
+
SENSITIVE: []
|
|
3117
|
+
end
|
|
3118
|
+
|
|
3080
3119
|
class FilterValue
|
|
3081
3120
|
attr_accessor type: ("COLUMNEXTRACTED" | "CONSTANT")
|
|
3082
3121
|
attr_accessor value: ::Array[::String]
|
|
@@ -6981,6 +7020,7 @@ module Aws::Glue
|
|
|
6981
7020
|
attr_accessor request_parameters: ::Array[Types::ConnectorProperty]
|
|
6982
7021
|
attr_accessor response_configuration: Types::ResponseConfiguration
|
|
6983
7022
|
attr_accessor pagination_configuration: Types::PaginationConfiguration
|
|
7023
|
+
attr_accessor filter_configuration: Types::FilterConfiguration
|
|
6984
7024
|
SENSITIVE: []
|
|
6985
7025
|
end
|
|
6986
7026
|
|