aws-sdk-gluedatabrew 1.16.0 → 1.20.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-gluedatabrew/client.rb +60 -7
- data/lib/aws-sdk-gluedatabrew/client_api.rb +2 -0
- data/lib/aws-sdk-gluedatabrew/types.rb +52 -9
- data/lib/aws-sdk-gluedatabrew.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4caffd96c1614a8942de25d99babf69d10b09c7ab0e11e1c1342b71af5e387e9
|
4
|
+
data.tar.gz: 926ac5822f49e42adea95cca0699815171b4c8cc3b26c8fb4367caf7ad6f4fe4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 403e9ab7d262715f928f91d40809709a613e734d4d7cf2ef74fffd2c956a90cde1a9bfcd303ee12af3bcdc22a4a0b4b657b36f20ca4b290419f5326ce2dd7d95
|
7
|
+
data.tar.gz: 95818ad265eefd6245401cc2f3e0662cbe79ca1ab3fc9ce38ea671b8053c29a02a9819c975ee0ca970d232af1a886bb6ce061597d38ca63418d8afd15ce252c4
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.20.0 (2022-02-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.19.0 (2022-01-10)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This SDK release adds support for specifying a Bucket Owner for an S3 location.
|
13
|
+
|
14
|
+
1.18.0 (2021-12-21)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.17.0 (2021-11-30)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.16.0 (2021-11-18)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.20.0
|
@@ -27,6 +27,8 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
31
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
30
32
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
33
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
32
34
|
|
@@ -73,6 +75,8 @@ module Aws::GlueDataBrew
|
|
73
75
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
76
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
77
|
add_plugin(Aws::Plugins::HttpChecksum)
|
78
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
79
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
76
80
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
81
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
78
82
|
|
@@ -119,7 +123,9 @@ module Aws::GlueDataBrew
|
|
119
123
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
124
|
# are very aggressive. Construct and pass an instance of
|
121
125
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
126
|
+
# enable retries and extended timeouts. Instance profile credential
|
127
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
128
|
+
# to true.
|
123
129
|
#
|
124
130
|
# @option options [required, String] :region
|
125
131
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +179,10 @@ module Aws::GlueDataBrew
|
|
173
179
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
174
180
|
# a clock skew correction and retry requests with skewed client clocks.
|
175
181
|
#
|
182
|
+
# @option options [String] :defaults_mode ("legacy")
|
183
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
184
|
+
# accepted modes and the configuration defaults that are included.
|
185
|
+
#
|
176
186
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
177
187
|
# Set to true to disable SDK automatically adding host prefix
|
178
188
|
# to default service endpoint when available.
|
@@ -295,7 +305,7 @@ module Aws::GlueDataBrew
|
|
295
305
|
# seconds to wait when opening a HTTP session before raising a
|
296
306
|
# `Timeout::Error`.
|
297
307
|
#
|
298
|
-
# @option options [
|
308
|
+
# @option options [Float] :http_read_timeout (60) The default
|
299
309
|
# number of seconds to wait for response data. This value can
|
300
310
|
# safely be set per-request on the session.
|
301
311
|
#
|
@@ -311,6 +321,9 @@ module Aws::GlueDataBrew
|
|
311
321
|
# disables this behaviour. This value can safely be set per
|
312
322
|
# request on the session.
|
313
323
|
#
|
324
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
325
|
+
# in seconds.
|
326
|
+
#
|
314
327
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
315
328
|
# HTTP debug output will be sent to the `:logger`.
|
316
329
|
#
|
@@ -454,6 +467,7 @@ module Aws::GlueDataBrew
|
|
454
467
|
# s3_input_definition: {
|
455
468
|
# bucket: "Bucket", # required
|
456
469
|
# key: "Key",
|
470
|
+
# bucket_owner: "BucketOwner",
|
457
471
|
# },
|
458
472
|
# data_catalog_input_definition: {
|
459
473
|
# catalog_id: "CatalogId",
|
@@ -462,6 +476,7 @@ module Aws::GlueDataBrew
|
|
462
476
|
# temp_directory: {
|
463
477
|
# bucket: "Bucket", # required
|
464
478
|
# key: "Key",
|
479
|
+
# bucket_owner: "BucketOwner",
|
465
480
|
# },
|
466
481
|
# },
|
467
482
|
# database_input_definition: {
|
@@ -470,6 +485,7 @@ module Aws::GlueDataBrew
|
|
470
485
|
# temp_directory: {
|
471
486
|
# bucket: "Bucket", # required
|
472
487
|
# key: "Key",
|
488
|
+
# bucket_owner: "BucketOwner",
|
473
489
|
# },
|
474
490
|
# query_string: "QueryString",
|
475
491
|
# },
|
@@ -559,8 +575,9 @@ module Aws::GlueDataBrew
|
|
559
575
|
# The maximum number of times to retry the job after a job run fails.
|
560
576
|
#
|
561
577
|
# @option params [required, Types::S3Location] :output_location
|
562
|
-
# Represents an Amazon S3 location (bucket name
|
563
|
-
# DataBrew can read input data, or write output from a
|
578
|
+
# Represents an Amazon S3 location (bucket name, bucket owner, and
|
579
|
+
# object key) where DataBrew can read input data, or write output from a
|
580
|
+
# job.
|
564
581
|
#
|
565
582
|
# @option params [Types::ProfileConfiguration] :configuration
|
566
583
|
# Configuration for profile jobs. Used to select columns, do
|
@@ -604,6 +621,7 @@ module Aws::GlueDataBrew
|
|
604
621
|
# output_location: { # required
|
605
622
|
# bucket: "Bucket", # required
|
606
623
|
# key: "Key",
|
624
|
+
# bucket_owner: "BucketOwner",
|
607
625
|
# },
|
608
626
|
# configuration: {
|
609
627
|
# dataset_statistics_configuration: {
|
@@ -883,6 +901,7 @@ module Aws::GlueDataBrew
|
|
883
901
|
# location: { # required
|
884
902
|
# bucket: "Bucket", # required
|
885
903
|
# key: "Key",
|
904
|
+
# bucket_owner: "BucketOwner",
|
886
905
|
# },
|
887
906
|
# overwrite: false,
|
888
907
|
# format_options: {
|
@@ -901,12 +920,14 @@ module Aws::GlueDataBrew
|
|
901
920
|
# location: { # required
|
902
921
|
# bucket: "Bucket", # required
|
903
922
|
# key: "Key",
|
923
|
+
# bucket_owner: "BucketOwner",
|
904
924
|
# },
|
905
925
|
# },
|
906
926
|
# database_options: {
|
907
927
|
# temp_directory: {
|
908
928
|
# bucket: "Bucket", # required
|
909
929
|
# key: "Key",
|
930
|
+
# bucket_owner: "BucketOwner",
|
910
931
|
# },
|
911
932
|
# table_name: "DatabaseTableName", # required
|
912
933
|
# },
|
@@ -920,6 +941,7 @@ module Aws::GlueDataBrew
|
|
920
941
|
# temp_directory: {
|
921
942
|
# bucket: "Bucket", # required
|
922
943
|
# key: "Key",
|
944
|
+
# bucket_owner: "BucketOwner",
|
923
945
|
# },
|
924
946
|
# table_name: "DatabaseTableName", # required
|
925
947
|
# },
|
@@ -1289,15 +1311,18 @@ module Aws::GlueDataBrew
|
|
1289
1311
|
# resp.format_options.csv.header_row #=> Boolean
|
1290
1312
|
# resp.input.s3_input_definition.bucket #=> String
|
1291
1313
|
# resp.input.s3_input_definition.key #=> String
|
1314
|
+
# resp.input.s3_input_definition.bucket_owner #=> String
|
1292
1315
|
# resp.input.data_catalog_input_definition.catalog_id #=> String
|
1293
1316
|
# resp.input.data_catalog_input_definition.database_name #=> String
|
1294
1317
|
# resp.input.data_catalog_input_definition.table_name #=> String
|
1295
1318
|
# resp.input.data_catalog_input_definition.temp_directory.bucket #=> String
|
1296
1319
|
# resp.input.data_catalog_input_definition.temp_directory.key #=> String
|
1320
|
+
# resp.input.data_catalog_input_definition.temp_directory.bucket_owner #=> String
|
1297
1321
|
# resp.input.database_input_definition.glue_connection_name #=> String
|
1298
1322
|
# resp.input.database_input_definition.database_table_name #=> String
|
1299
1323
|
# resp.input.database_input_definition.temp_directory.bucket #=> String
|
1300
1324
|
# resp.input.database_input_definition.temp_directory.key #=> String
|
1325
|
+
# resp.input.database_input_definition.temp_directory.bucket_owner #=> String
|
1301
1326
|
# resp.input.database_input_definition.query_string #=> String
|
1302
1327
|
# resp.input.metadata.source_arn #=> String
|
1303
1328
|
# resp.last_modified_date #=> Time
|
@@ -1391,6 +1416,7 @@ module Aws::GlueDataBrew
|
|
1391
1416
|
# resp.outputs[0].partition_columns[0] #=> String
|
1392
1417
|
# resp.outputs[0].location.bucket #=> String
|
1393
1418
|
# resp.outputs[0].location.key #=> String
|
1419
|
+
# resp.outputs[0].location.bucket_owner #=> String
|
1394
1420
|
# resp.outputs[0].overwrite #=> Boolean
|
1395
1421
|
# resp.outputs[0].format_options.csv.delimiter #=> String
|
1396
1422
|
# resp.data_catalog_outputs #=> Array
|
@@ -1399,14 +1425,17 @@ module Aws::GlueDataBrew
|
|
1399
1425
|
# resp.data_catalog_outputs[0].table_name #=> String
|
1400
1426
|
# resp.data_catalog_outputs[0].s3_options.location.bucket #=> String
|
1401
1427
|
# resp.data_catalog_outputs[0].s3_options.location.key #=> String
|
1428
|
+
# resp.data_catalog_outputs[0].s3_options.location.bucket_owner #=> String
|
1402
1429
|
# resp.data_catalog_outputs[0].database_options.temp_directory.bucket #=> String
|
1403
1430
|
# resp.data_catalog_outputs[0].database_options.temp_directory.key #=> String
|
1431
|
+
# resp.data_catalog_outputs[0].database_options.temp_directory.bucket_owner #=> String
|
1404
1432
|
# resp.data_catalog_outputs[0].database_options.table_name #=> String
|
1405
1433
|
# resp.data_catalog_outputs[0].overwrite #=> Boolean
|
1406
1434
|
# resp.database_outputs #=> Array
|
1407
1435
|
# resp.database_outputs[0].glue_connection_name #=> String
|
1408
1436
|
# resp.database_outputs[0].database_options.temp_directory.bucket #=> String
|
1409
1437
|
# resp.database_outputs[0].database_options.temp_directory.key #=> String
|
1438
|
+
# resp.database_outputs[0].database_options.temp_directory.bucket_owner #=> String
|
1410
1439
|
# resp.database_outputs[0].database_options.table_name #=> String
|
1411
1440
|
# resp.database_outputs[0].database_output_mode #=> String, one of "NEW_TABLE"
|
1412
1441
|
# resp.project_name #=> String
|
@@ -1539,6 +1568,7 @@ module Aws::GlueDataBrew
|
|
1539
1568
|
# resp.outputs[0].partition_columns[0] #=> String
|
1540
1569
|
# resp.outputs[0].location.bucket #=> String
|
1541
1570
|
# resp.outputs[0].location.key #=> String
|
1571
|
+
# resp.outputs[0].location.bucket_owner #=> String
|
1542
1572
|
# resp.outputs[0].overwrite #=> Boolean
|
1543
1573
|
# resp.outputs[0].format_options.csv.delimiter #=> String
|
1544
1574
|
# resp.data_catalog_outputs #=> Array
|
@@ -1547,14 +1577,17 @@ module Aws::GlueDataBrew
|
|
1547
1577
|
# resp.data_catalog_outputs[0].table_name #=> String
|
1548
1578
|
# resp.data_catalog_outputs[0].s3_options.location.bucket #=> String
|
1549
1579
|
# resp.data_catalog_outputs[0].s3_options.location.key #=> String
|
1580
|
+
# resp.data_catalog_outputs[0].s3_options.location.bucket_owner #=> String
|
1550
1581
|
# resp.data_catalog_outputs[0].database_options.temp_directory.bucket #=> String
|
1551
1582
|
# resp.data_catalog_outputs[0].database_options.temp_directory.key #=> String
|
1583
|
+
# resp.data_catalog_outputs[0].database_options.temp_directory.bucket_owner #=> String
|
1552
1584
|
# resp.data_catalog_outputs[0].database_options.table_name #=> String
|
1553
1585
|
# resp.data_catalog_outputs[0].overwrite #=> Boolean
|
1554
1586
|
# resp.database_outputs #=> Array
|
1555
1587
|
# resp.database_outputs[0].glue_connection_name #=> String
|
1556
1588
|
# resp.database_outputs[0].database_options.temp_directory.bucket #=> String
|
1557
1589
|
# resp.database_outputs[0].database_options.temp_directory.key #=> String
|
1590
|
+
# resp.database_outputs[0].database_options.temp_directory.bucket_owner #=> String
|
1558
1591
|
# resp.database_outputs[0].database_options.table_name #=> String
|
1559
1592
|
# resp.database_outputs[0].database_output_mode #=> String, one of "NEW_TABLE"
|
1560
1593
|
# resp.recipe_reference.name #=> String
|
@@ -1840,15 +1873,18 @@ module Aws::GlueDataBrew
|
|
1840
1873
|
# resp.datasets[0].format_options.csv.header_row #=> Boolean
|
1841
1874
|
# resp.datasets[0].input.s3_input_definition.bucket #=> String
|
1842
1875
|
# resp.datasets[0].input.s3_input_definition.key #=> String
|
1876
|
+
# resp.datasets[0].input.s3_input_definition.bucket_owner #=> String
|
1843
1877
|
# resp.datasets[0].input.data_catalog_input_definition.catalog_id #=> String
|
1844
1878
|
# resp.datasets[0].input.data_catalog_input_definition.database_name #=> String
|
1845
1879
|
# resp.datasets[0].input.data_catalog_input_definition.table_name #=> String
|
1846
1880
|
# resp.datasets[0].input.data_catalog_input_definition.temp_directory.bucket #=> String
|
1847
1881
|
# resp.datasets[0].input.data_catalog_input_definition.temp_directory.key #=> String
|
1882
|
+
# resp.datasets[0].input.data_catalog_input_definition.temp_directory.bucket_owner #=> String
|
1848
1883
|
# resp.datasets[0].input.database_input_definition.glue_connection_name #=> String
|
1849
1884
|
# resp.datasets[0].input.database_input_definition.database_table_name #=> String
|
1850
1885
|
# resp.datasets[0].input.database_input_definition.temp_directory.bucket #=> String
|
1851
1886
|
# resp.datasets[0].input.database_input_definition.temp_directory.key #=> String
|
1887
|
+
# resp.datasets[0].input.database_input_definition.temp_directory.bucket_owner #=> String
|
1852
1888
|
# resp.datasets[0].input.database_input_definition.query_string #=> String
|
1853
1889
|
# resp.datasets[0].input.metadata.source_arn #=> String
|
1854
1890
|
# resp.datasets[0].last_modified_date #=> Time
|
@@ -1931,6 +1967,7 @@ module Aws::GlueDataBrew
|
|
1931
1967
|
# resp.job_runs[0].outputs[0].partition_columns[0] #=> String
|
1932
1968
|
# resp.job_runs[0].outputs[0].location.bucket #=> String
|
1933
1969
|
# resp.job_runs[0].outputs[0].location.key #=> String
|
1970
|
+
# resp.job_runs[0].outputs[0].location.bucket_owner #=> String
|
1934
1971
|
# resp.job_runs[0].outputs[0].overwrite #=> Boolean
|
1935
1972
|
# resp.job_runs[0].outputs[0].format_options.csv.delimiter #=> String
|
1936
1973
|
# resp.job_runs[0].data_catalog_outputs #=> Array
|
@@ -1939,14 +1976,17 @@ module Aws::GlueDataBrew
|
|
1939
1976
|
# resp.job_runs[0].data_catalog_outputs[0].table_name #=> String
|
1940
1977
|
# resp.job_runs[0].data_catalog_outputs[0].s3_options.location.bucket #=> String
|
1941
1978
|
# resp.job_runs[0].data_catalog_outputs[0].s3_options.location.key #=> String
|
1979
|
+
# resp.job_runs[0].data_catalog_outputs[0].s3_options.location.bucket_owner #=> String
|
1942
1980
|
# resp.job_runs[0].data_catalog_outputs[0].database_options.temp_directory.bucket #=> String
|
1943
1981
|
# resp.job_runs[0].data_catalog_outputs[0].database_options.temp_directory.key #=> String
|
1982
|
+
# resp.job_runs[0].data_catalog_outputs[0].database_options.temp_directory.bucket_owner #=> String
|
1944
1983
|
# resp.job_runs[0].data_catalog_outputs[0].database_options.table_name #=> String
|
1945
1984
|
# resp.job_runs[0].data_catalog_outputs[0].overwrite #=> Boolean
|
1946
1985
|
# resp.job_runs[0].database_outputs #=> Array
|
1947
1986
|
# resp.job_runs[0].database_outputs[0].glue_connection_name #=> String
|
1948
1987
|
# resp.job_runs[0].database_outputs[0].database_options.temp_directory.bucket #=> String
|
1949
1988
|
# resp.job_runs[0].database_outputs[0].database_options.temp_directory.key #=> String
|
1989
|
+
# resp.job_runs[0].database_outputs[0].database_options.temp_directory.bucket_owner #=> String
|
1950
1990
|
# resp.job_runs[0].database_outputs[0].database_options.table_name #=> String
|
1951
1991
|
# resp.job_runs[0].database_outputs[0].database_output_mode #=> String, one of "NEW_TABLE"
|
1952
1992
|
# resp.job_runs[0].recipe_reference.name #=> String
|
@@ -2027,6 +2067,7 @@ module Aws::GlueDataBrew
|
|
2027
2067
|
# resp.jobs[0].outputs[0].partition_columns[0] #=> String
|
2028
2068
|
# resp.jobs[0].outputs[0].location.bucket #=> String
|
2029
2069
|
# resp.jobs[0].outputs[0].location.key #=> String
|
2070
|
+
# resp.jobs[0].outputs[0].location.bucket_owner #=> String
|
2030
2071
|
# resp.jobs[0].outputs[0].overwrite #=> Boolean
|
2031
2072
|
# resp.jobs[0].outputs[0].format_options.csv.delimiter #=> String
|
2032
2073
|
# resp.jobs[0].data_catalog_outputs #=> Array
|
@@ -2035,14 +2076,17 @@ module Aws::GlueDataBrew
|
|
2035
2076
|
# resp.jobs[0].data_catalog_outputs[0].table_name #=> String
|
2036
2077
|
# resp.jobs[0].data_catalog_outputs[0].s3_options.location.bucket #=> String
|
2037
2078
|
# resp.jobs[0].data_catalog_outputs[0].s3_options.location.key #=> String
|
2079
|
+
# resp.jobs[0].data_catalog_outputs[0].s3_options.location.bucket_owner #=> String
|
2038
2080
|
# resp.jobs[0].data_catalog_outputs[0].database_options.temp_directory.bucket #=> String
|
2039
2081
|
# resp.jobs[0].data_catalog_outputs[0].database_options.temp_directory.key #=> String
|
2082
|
+
# resp.jobs[0].data_catalog_outputs[0].database_options.temp_directory.bucket_owner #=> String
|
2040
2083
|
# resp.jobs[0].data_catalog_outputs[0].database_options.table_name #=> String
|
2041
2084
|
# resp.jobs[0].data_catalog_outputs[0].overwrite #=> Boolean
|
2042
2085
|
# resp.jobs[0].database_outputs #=> Array
|
2043
2086
|
# resp.jobs[0].database_outputs[0].glue_connection_name #=> String
|
2044
2087
|
# resp.jobs[0].database_outputs[0].database_options.temp_directory.bucket #=> String
|
2045
2088
|
# resp.jobs[0].database_outputs[0].database_options.temp_directory.key #=> String
|
2089
|
+
# resp.jobs[0].database_outputs[0].database_options.temp_directory.bucket_owner #=> String
|
2046
2090
|
# resp.jobs[0].database_outputs[0].database_options.table_name #=> String
|
2047
2091
|
# resp.jobs[0].database_outputs[0].database_output_mode #=> String, one of "NEW_TABLE"
|
2048
2092
|
# resp.jobs[0].project_name #=> String
|
@@ -2705,6 +2749,7 @@ module Aws::GlueDataBrew
|
|
2705
2749
|
# s3_input_definition: {
|
2706
2750
|
# bucket: "Bucket", # required
|
2707
2751
|
# key: "Key",
|
2752
|
+
# bucket_owner: "BucketOwner",
|
2708
2753
|
# },
|
2709
2754
|
# data_catalog_input_definition: {
|
2710
2755
|
# catalog_id: "CatalogId",
|
@@ -2713,6 +2758,7 @@ module Aws::GlueDataBrew
|
|
2713
2758
|
# temp_directory: {
|
2714
2759
|
# bucket: "Bucket", # required
|
2715
2760
|
# key: "Key",
|
2761
|
+
# bucket_owner: "BucketOwner",
|
2716
2762
|
# },
|
2717
2763
|
# },
|
2718
2764
|
# database_input_definition: {
|
@@ -2721,6 +2767,7 @@ module Aws::GlueDataBrew
|
|
2721
2767
|
# temp_directory: {
|
2722
2768
|
# bucket: "Bucket", # required
|
2723
2769
|
# key: "Key",
|
2770
|
+
# bucket_owner: "BucketOwner",
|
2724
2771
|
# },
|
2725
2772
|
# query_string: "QueryString",
|
2726
2773
|
# },
|
@@ -2807,8 +2854,9 @@ module Aws::GlueDataBrew
|
|
2807
2854
|
# The maximum number of times to retry the job after a job run fails.
|
2808
2855
|
#
|
2809
2856
|
# @option params [required, Types::S3Location] :output_location
|
2810
|
-
# Represents an Amazon S3 location (bucket name
|
2811
|
-
# DataBrew can read input data, or write output from a
|
2857
|
+
# Represents an Amazon S3 location (bucket name, bucket owner, and
|
2858
|
+
# object key) where DataBrew can read input data, or write output from a
|
2859
|
+
# job.
|
2812
2860
|
#
|
2813
2861
|
# @option params [Array<Types::ValidationConfiguration>] :validation_configurations
|
2814
2862
|
# List of validation configurations that are applied to the profile job.
|
@@ -2892,6 +2940,7 @@ module Aws::GlueDataBrew
|
|
2892
2940
|
# output_location: { # required
|
2893
2941
|
# bucket: "Bucket", # required
|
2894
2942
|
# key: "Key",
|
2943
|
+
# bucket_owner: "BucketOwner",
|
2895
2944
|
# },
|
2896
2945
|
# validation_configurations: [
|
2897
2946
|
# {
|
@@ -3084,6 +3133,7 @@ module Aws::GlueDataBrew
|
|
3084
3133
|
# location: { # required
|
3085
3134
|
# bucket: "Bucket", # required
|
3086
3135
|
# key: "Key",
|
3136
|
+
# bucket_owner: "BucketOwner",
|
3087
3137
|
# },
|
3088
3138
|
# overwrite: false,
|
3089
3139
|
# format_options: {
|
@@ -3102,12 +3152,14 @@ module Aws::GlueDataBrew
|
|
3102
3152
|
# location: { # required
|
3103
3153
|
# bucket: "Bucket", # required
|
3104
3154
|
# key: "Key",
|
3155
|
+
# bucket_owner: "BucketOwner",
|
3105
3156
|
# },
|
3106
3157
|
# },
|
3107
3158
|
# database_options: {
|
3108
3159
|
# temp_directory: {
|
3109
3160
|
# bucket: "Bucket", # required
|
3110
3161
|
# key: "Key",
|
3162
|
+
# bucket_owner: "BucketOwner",
|
3111
3163
|
# },
|
3112
3164
|
# table_name: "DatabaseTableName", # required
|
3113
3165
|
# },
|
@@ -3121,6 +3173,7 @@ module Aws::GlueDataBrew
|
|
3121
3173
|
# temp_directory: {
|
3122
3174
|
# bucket: "Bucket", # required
|
3123
3175
|
# key: "Key",
|
3176
|
+
# bucket_owner: "BucketOwner",
|
3124
3177
|
# },
|
3125
3178
|
# table_name: "DatabaseTableName", # required
|
3126
3179
|
# },
|
@@ -3256,7 +3309,7 @@ module Aws::GlueDataBrew
|
|
3256
3309
|
params: params,
|
3257
3310
|
config: config)
|
3258
3311
|
context[:gem_name] = 'aws-sdk-gluedatabrew'
|
3259
|
-
context[:gem_version] = '1.
|
3312
|
+
context[:gem_version] = '1.20.0'
|
3260
3313
|
Seahorse::Client::Request.new(handlers, context)
|
3261
3314
|
end
|
3262
3315
|
|
@@ -25,6 +25,7 @@ module Aws::GlueDataBrew
|
|
25
25
|
BatchDeleteRecipeVersionRequest = Shapes::StructureShape.new(name: 'BatchDeleteRecipeVersionRequest')
|
26
26
|
BatchDeleteRecipeVersionResponse = Shapes::StructureShape.new(name: 'BatchDeleteRecipeVersionResponse')
|
27
27
|
Bucket = Shapes::StringShape.new(name: 'Bucket')
|
28
|
+
BucketOwner = Shapes::StringShape.new(name: 'BucketOwner')
|
28
29
|
CatalogId = Shapes::StringShape.new(name: 'CatalogId')
|
29
30
|
ClientSessionId = Shapes::StringShape.new(name: 'ClientSessionId')
|
30
31
|
ColumnName = Shapes::StringShape.new(name: 'ColumnName')
|
@@ -960,6 +961,7 @@ module Aws::GlueDataBrew
|
|
960
961
|
|
961
962
|
S3Location.add_member(:bucket, Shapes::ShapeRef.new(shape: Bucket, required: true, location_name: "Bucket"))
|
962
963
|
S3Location.add_member(:key, Shapes::ShapeRef.new(shape: Key, location_name: "Key"))
|
964
|
+
S3Location.add_member(:bucket_owner, Shapes::ShapeRef.new(shape: BucketOwner, location_name: "BucketOwner"))
|
963
965
|
S3Location.struct_class = Types::S3Location
|
964
966
|
|
965
967
|
S3TableOutputOptions.add_member(:location, Shapes::ShapeRef.new(shape: S3Location, required: true, location_name: "Location"))
|
@@ -252,6 +252,7 @@ module Aws::GlueDataBrew
|
|
252
252
|
# s3_input_definition: {
|
253
253
|
# bucket: "Bucket", # required
|
254
254
|
# key: "Key",
|
255
|
+
# bucket_owner: "BucketOwner",
|
255
256
|
# },
|
256
257
|
# data_catalog_input_definition: {
|
257
258
|
# catalog_id: "CatalogId",
|
@@ -260,6 +261,7 @@ module Aws::GlueDataBrew
|
|
260
261
|
# temp_directory: {
|
261
262
|
# bucket: "Bucket", # required
|
262
263
|
# key: "Key",
|
264
|
+
# bucket_owner: "BucketOwner",
|
263
265
|
# },
|
264
266
|
# },
|
265
267
|
# database_input_definition: {
|
@@ -268,6 +270,7 @@ module Aws::GlueDataBrew
|
|
268
270
|
# temp_directory: {
|
269
271
|
# bucket: "Bucket", # required
|
270
272
|
# key: "Key",
|
273
|
+
# bucket_owner: "BucketOwner",
|
271
274
|
# },
|
272
275
|
# query_string: "QueryString",
|
273
276
|
# },
|
@@ -379,6 +382,7 @@ module Aws::GlueDataBrew
|
|
379
382
|
# output_location: { # required
|
380
383
|
# bucket: "Bucket", # required
|
381
384
|
# key: "Key",
|
385
|
+
# bucket_owner: "BucketOwner",
|
382
386
|
# },
|
383
387
|
# configuration: {
|
384
388
|
# dataset_statistics_configuration: {
|
@@ -484,8 +488,9 @@ module Aws::GlueDataBrew
|
|
484
488
|
# @return [Integer]
|
485
489
|
#
|
486
490
|
# @!attribute [rw] output_location
|
487
|
-
# Represents an Amazon S3 location (bucket name
|
488
|
-
# DataBrew can read input data, or write output from
|
491
|
+
# Represents an Amazon S3 location (bucket name, bucket owner, and
|
492
|
+
# object key) where DataBrew can read input data, or write output from
|
493
|
+
# a job.
|
489
494
|
# @return [Types::S3Location]
|
490
495
|
#
|
491
496
|
# @!attribute [rw] configuration
|
@@ -643,6 +648,7 @@ module Aws::GlueDataBrew
|
|
643
648
|
# location: { # required
|
644
649
|
# bucket: "Bucket", # required
|
645
650
|
# key: "Key",
|
651
|
+
# bucket_owner: "BucketOwner",
|
646
652
|
# },
|
647
653
|
# overwrite: false,
|
648
654
|
# format_options: {
|
@@ -661,12 +667,14 @@ module Aws::GlueDataBrew
|
|
661
667
|
# location: { # required
|
662
668
|
# bucket: "Bucket", # required
|
663
669
|
# key: "Key",
|
670
|
+
# bucket_owner: "BucketOwner",
|
664
671
|
# },
|
665
672
|
# },
|
666
673
|
# database_options: {
|
667
674
|
# temp_directory: {
|
668
675
|
# bucket: "Bucket", # required
|
669
676
|
# key: "Key",
|
677
|
+
# bucket_owner: "BucketOwner",
|
670
678
|
# },
|
671
679
|
# table_name: "DatabaseTableName", # required
|
672
680
|
# },
|
@@ -680,6 +688,7 @@ module Aws::GlueDataBrew
|
|
680
688
|
# temp_directory: {
|
681
689
|
# bucket: "Bucket", # required
|
682
690
|
# key: "Key",
|
691
|
+
# bucket_owner: "BucketOwner",
|
683
692
|
# },
|
684
693
|
# table_name: "DatabaseTableName", # required
|
685
694
|
# },
|
@@ -1083,6 +1092,7 @@ module Aws::GlueDataBrew
|
|
1083
1092
|
# temp_directory: {
|
1084
1093
|
# bucket: "Bucket", # required
|
1085
1094
|
# key: "Key",
|
1095
|
+
# bucket_owner: "BucketOwner",
|
1086
1096
|
# },
|
1087
1097
|
# }
|
1088
1098
|
#
|
@@ -1130,12 +1140,14 @@ module Aws::GlueDataBrew
|
|
1130
1140
|
# location: { # required
|
1131
1141
|
# bucket: "Bucket", # required
|
1132
1142
|
# key: "Key",
|
1143
|
+
# bucket_owner: "BucketOwner",
|
1133
1144
|
# },
|
1134
1145
|
# },
|
1135
1146
|
# database_options: {
|
1136
1147
|
# temp_directory: {
|
1137
1148
|
# bucket: "Bucket", # required
|
1138
1149
|
# key: "Key",
|
1150
|
+
# bucket_owner: "BucketOwner",
|
1139
1151
|
# },
|
1140
1152
|
# table_name: "DatabaseTableName", # required
|
1141
1153
|
# },
|
@@ -1195,6 +1207,7 @@ module Aws::GlueDataBrew
|
|
1195
1207
|
# temp_directory: {
|
1196
1208
|
# bucket: "Bucket", # required
|
1197
1209
|
# key: "Key",
|
1210
|
+
# bucket_owner: "BucketOwner",
|
1198
1211
|
# },
|
1199
1212
|
# query_string: "QueryString",
|
1200
1213
|
# }
|
@@ -1209,8 +1222,9 @@ module Aws::GlueDataBrew
|
|
1209
1222
|
# @return [String]
|
1210
1223
|
#
|
1211
1224
|
# @!attribute [rw] temp_directory
|
1212
|
-
# Represents an Amazon S3 location (bucket name
|
1213
|
-
# DataBrew can read input data, or write output from
|
1225
|
+
# Represents an Amazon S3 location (bucket name, bucket owner, and
|
1226
|
+
# object key) where DataBrew can read input data, or write output from
|
1227
|
+
# a job.
|
1214
1228
|
# @return [Types::S3Location]
|
1215
1229
|
#
|
1216
1230
|
# @!attribute [rw] query_string
|
@@ -1241,6 +1255,7 @@ module Aws::GlueDataBrew
|
|
1241
1255
|
# temp_directory: {
|
1242
1256
|
# bucket: "Bucket", # required
|
1243
1257
|
# key: "Key",
|
1258
|
+
# bucket_owner: "BucketOwner",
|
1244
1259
|
# },
|
1245
1260
|
# table_name: "DatabaseTableName", # required
|
1246
1261
|
# },
|
@@ -1282,6 +1297,7 @@ module Aws::GlueDataBrew
|
|
1282
1297
|
# temp_directory: {
|
1283
1298
|
# bucket: "Bucket", # required
|
1284
1299
|
# key: "Key",
|
1300
|
+
# bucket_owner: "BucketOwner",
|
1285
1301
|
# },
|
1286
1302
|
# table_name: "DatabaseTableName", # required
|
1287
1303
|
# }
|
@@ -2697,6 +2713,7 @@ module Aws::GlueDataBrew
|
|
2697
2713
|
# s3_input_definition: {
|
2698
2714
|
# bucket: "Bucket", # required
|
2699
2715
|
# key: "Key",
|
2716
|
+
# bucket_owner: "BucketOwner",
|
2700
2717
|
# },
|
2701
2718
|
# data_catalog_input_definition: {
|
2702
2719
|
# catalog_id: "CatalogId",
|
@@ -2705,6 +2722,7 @@ module Aws::GlueDataBrew
|
|
2705
2722
|
# temp_directory: {
|
2706
2723
|
# bucket: "Bucket", # required
|
2707
2724
|
# key: "Key",
|
2725
|
+
# bucket_owner: "BucketOwner",
|
2708
2726
|
# },
|
2709
2727
|
# },
|
2710
2728
|
# database_input_definition: {
|
@@ -2713,6 +2731,7 @@ module Aws::GlueDataBrew
|
|
2713
2731
|
# temp_directory: {
|
2714
2732
|
# bucket: "Bucket", # required
|
2715
2733
|
# key: "Key",
|
2734
|
+
# bucket_owner: "BucketOwner",
|
2716
2735
|
# },
|
2717
2736
|
# query_string: "QueryString",
|
2718
2737
|
# },
|
@@ -3566,6 +3585,7 @@ module Aws::GlueDataBrew
|
|
3566
3585
|
# location: { # required
|
3567
3586
|
# bucket: "Bucket", # required
|
3568
3587
|
# key: "Key",
|
3588
|
+
# bucket_owner: "BucketOwner",
|
3569
3589
|
# },
|
3570
3590
|
# overwrite: false,
|
3571
3591
|
# format_options: {
|
@@ -4202,6 +4222,12 @@ module Aws::GlueDataBrew
|
|
4202
4222
|
# ColumnSelectors has been defined, then there should be no columnn
|
4203
4223
|
# reference in the left side of a condition, for example, `is_between
|
4204
4224
|
# :val1 and :val2`.
|
4225
|
+
#
|
4226
|
+
# For more information, see [Available checks][1]
|
4227
|
+
#
|
4228
|
+
#
|
4229
|
+
#
|
4230
|
+
# [1]: https://docs.aws.amazon.com/databrew/latest/dg/profile.data-quality-available-checks.html
|
4205
4231
|
# @return [String]
|
4206
4232
|
#
|
4207
4233
|
# @!attribute [rw] substitution_map
|
@@ -4304,8 +4330,9 @@ module Aws::GlueDataBrew
|
|
4304
4330
|
include Aws::Structure
|
4305
4331
|
end
|
4306
4332
|
|
4307
|
-
# Represents an Amazon S3 location (bucket name
|
4308
|
-
# DataBrew can read input data, or write output from a
|
4333
|
+
# Represents an Amazon S3 location (bucket name, bucket owner, and
|
4334
|
+
# object key) where DataBrew can read input data, or write output from a
|
4335
|
+
# job.
|
4309
4336
|
#
|
4310
4337
|
# @note When making an API call, you may pass S3Location
|
4311
4338
|
# data as a hash:
|
@@ -4313,6 +4340,7 @@ module Aws::GlueDataBrew
|
|
4313
4340
|
# {
|
4314
4341
|
# bucket: "Bucket", # required
|
4315
4342
|
# key: "Key",
|
4343
|
+
# bucket_owner: "BucketOwner",
|
4316
4344
|
# }
|
4317
4345
|
#
|
4318
4346
|
# @!attribute [rw] bucket
|
@@ -4323,11 +4351,16 @@ module Aws::GlueDataBrew
|
|
4323
4351
|
# The unique name of the object in the bucket.
|
4324
4352
|
# @return [String]
|
4325
4353
|
#
|
4354
|
+
# @!attribute [rw] bucket_owner
|
4355
|
+
# The Amazon Web Services account ID of the bucket owner.
|
4356
|
+
# @return [String]
|
4357
|
+
#
|
4326
4358
|
# @see http://docs.aws.amazon.com/goto/WebAPI/databrew-2017-07-25/S3Location AWS API Documentation
|
4327
4359
|
#
|
4328
4360
|
class S3Location < Struct.new(
|
4329
4361
|
:bucket,
|
4330
|
-
:key
|
4362
|
+
:key,
|
4363
|
+
:bucket_owner)
|
4331
4364
|
SENSITIVE = []
|
4332
4365
|
include Aws::Structure
|
4333
4366
|
end
|
@@ -4342,6 +4375,7 @@ module Aws::GlueDataBrew
|
|
4342
4375
|
# location: { # required
|
4343
4376
|
# bucket: "Bucket", # required
|
4344
4377
|
# key: "Key",
|
4378
|
+
# bucket_owner: "BucketOwner",
|
4345
4379
|
# },
|
4346
4380
|
# }
|
4347
4381
|
#
|
@@ -4863,6 +4897,7 @@ module Aws::GlueDataBrew
|
|
4863
4897
|
# s3_input_definition: {
|
4864
4898
|
# bucket: "Bucket", # required
|
4865
4899
|
# key: "Key",
|
4900
|
+
# bucket_owner: "BucketOwner",
|
4866
4901
|
# },
|
4867
4902
|
# data_catalog_input_definition: {
|
4868
4903
|
# catalog_id: "CatalogId",
|
@@ -4871,6 +4906,7 @@ module Aws::GlueDataBrew
|
|
4871
4906
|
# temp_directory: {
|
4872
4907
|
# bucket: "Bucket", # required
|
4873
4908
|
# key: "Key",
|
4909
|
+
# bucket_owner: "BucketOwner",
|
4874
4910
|
# },
|
4875
4911
|
# },
|
4876
4912
|
# database_input_definition: {
|
@@ -4879,6 +4915,7 @@ module Aws::GlueDataBrew
|
|
4879
4915
|
# temp_directory: {
|
4880
4916
|
# bucket: "Bucket", # required
|
4881
4917
|
# key: "Key",
|
4918
|
+
# bucket_owner: "BucketOwner",
|
4882
4919
|
# },
|
4883
4920
|
# query_string: "QueryString",
|
4884
4921
|
# },
|
@@ -5028,6 +5065,7 @@ module Aws::GlueDataBrew
|
|
5028
5065
|
# output_location: { # required
|
5029
5066
|
# bucket: "Bucket", # required
|
5030
5067
|
# key: "Key",
|
5068
|
+
# bucket_owner: "BucketOwner",
|
5031
5069
|
# },
|
5032
5070
|
# validation_configurations: [
|
5033
5071
|
# {
|
@@ -5083,8 +5121,9 @@ module Aws::GlueDataBrew
|
|
5083
5121
|
# @return [Integer]
|
5084
5122
|
#
|
5085
5123
|
# @!attribute [rw] output_location
|
5086
|
-
# Represents an Amazon S3 location (bucket name
|
5087
|
-
# DataBrew can read input data, or write output from
|
5124
|
+
# Represents an Amazon S3 location (bucket name, bucket owner, and
|
5125
|
+
# object key) where DataBrew can read input data, or write output from
|
5126
|
+
# a job.
|
5088
5127
|
# @return [Types::S3Location]
|
5089
5128
|
#
|
5090
5129
|
# @!attribute [rw] validation_configurations
|
@@ -5212,6 +5251,7 @@ module Aws::GlueDataBrew
|
|
5212
5251
|
# location: { # required
|
5213
5252
|
# bucket: "Bucket", # required
|
5214
5253
|
# key: "Key",
|
5254
|
+
# bucket_owner: "BucketOwner",
|
5215
5255
|
# },
|
5216
5256
|
# overwrite: false,
|
5217
5257
|
# format_options: {
|
@@ -5230,12 +5270,14 @@ module Aws::GlueDataBrew
|
|
5230
5270
|
# location: { # required
|
5231
5271
|
# bucket: "Bucket", # required
|
5232
5272
|
# key: "Key",
|
5273
|
+
# bucket_owner: "BucketOwner",
|
5233
5274
|
# },
|
5234
5275
|
# },
|
5235
5276
|
# database_options: {
|
5236
5277
|
# temp_directory: {
|
5237
5278
|
# bucket: "Bucket", # required
|
5238
5279
|
# key: "Key",
|
5280
|
+
# bucket_owner: "BucketOwner",
|
5239
5281
|
# },
|
5240
5282
|
# table_name: "DatabaseTableName", # required
|
5241
5283
|
# },
|
@@ -5249,6 +5291,7 @@ module Aws::GlueDataBrew
|
|
5249
5291
|
# temp_directory: {
|
5250
5292
|
# bucket: "Bucket", # required
|
5251
5293
|
# key: "Key",
|
5294
|
+
# bucket_owner: "BucketOwner",
|
5252
5295
|
# },
|
5253
5296
|
# table_name: "DatabaseTableName", # required
|
5254
5297
|
# },
|
data/lib/aws-sdk-gluedatabrew.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-gluedatabrew
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.20.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:
|
11
|
+
date: 2022-02-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.126.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.126.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|