aws-sdk-glue 1.44.0 → 1.45.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-glue.rb +1 -1
- data/lib/aws-sdk-glue/client.rb +1 -1
- data/lib/aws-sdk-glue/types.rb +31 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cedc2eb0c997c09182c11437bde8c3b4e8a72acd
|
4
|
+
data.tar.gz: 744a87b673baa700674ecc90c0ce752e23ee6ee5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7c720ce0a2e3284f5985a45b995a627eb1c08c0e99366afe2ea8a63f51e4bcbdf786255f8bb5ed6b6d1b0330fc401006b40069afc5518383b3126de20904fe6a
|
7
|
+
data.tar.gz: ffece1dddbd0264935356edfbdf902388cc9b005034e11bd41bbe8b5c658e9de88a472974353c01bce512c5e4deccb9f538b9b700388e3c4de51894ca9a94d6d
|
data/lib/aws-sdk-glue.rb
CHANGED
data/lib/aws-sdk-glue/client.rb
CHANGED
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -1248,6 +1248,28 @@ module Aws::Glue
|
|
1248
1248
|
# whether Secure Sockets Layer (SSL) with hostname matching is
|
1249
1249
|
# enforced for the JDBC connection on the client. The default is
|
1250
1250
|
# false.
|
1251
|
+
#
|
1252
|
+
# * `CUSTOM_JDBC_CERT` - An Amazon S3 location specifying the
|
1253
|
+
# customer's root certificate. AWS Glue uses this root certificate
|
1254
|
+
# to validate the customer’s certificate when connecting to the
|
1255
|
+
# customer database. AWS Glue only handles X.509 certificates. The
|
1256
|
+
# certificate provided must be DER-encoded and supplied in Base64
|
1257
|
+
# encoding PEM format.
|
1258
|
+
#
|
1259
|
+
# * `SKIP_CUSTOM_JDBC_CERT_VALIDATION` - By default, this is `false`.
|
1260
|
+
# AWS Glue validates the Signature algorithm and Subject Public Key
|
1261
|
+
# Algorithm for the customer certificate. The only permitted
|
1262
|
+
# algorithms for the Signature algorithm are SHA256withRSA,
|
1263
|
+
# SHA384withRSA or SHA512withRSA. For the Subject Public Key
|
1264
|
+
# Algorithm, the key length must be at least 2048. You can set the
|
1265
|
+
# value of this property to `true` to skip AWS Glue’s validation of
|
1266
|
+
# the customer certificate.
|
1267
|
+
#
|
1268
|
+
# * `CUSTOM_JDBC_CERT_STRING` - A custom JDBC certificate string which
|
1269
|
+
# is used for domain match or distinguished name match to prevent a
|
1270
|
+
# man-in-the-middle attack. In Oracle database, this is used as the
|
1271
|
+
# `SSL_SERVER_CERT_DN`; in Microsoft SQL Server, this is used as the
|
1272
|
+
# `hostNameInCertificate`.
|
1251
1273
|
# @return [Hash<String,String>]
|
1252
1274
|
#
|
1253
1275
|
# @!attribute [rw] physical_connection_requirements
|
@@ -8658,6 +8680,11 @@ module Aws::Glue
|
|
8658
8680
|
# @!attribute [rw] values
|
8659
8681
|
# The values of the partition. Although this parameter is not required
|
8660
8682
|
# by the SDK, you must specify this parameter for a valid input.
|
8683
|
+
#
|
8684
|
+
# The values for the keys for the new partition must be passed as an
|
8685
|
+
# array of String objects that must be ordered in the same order as
|
8686
|
+
# the partition keys appearing in the Amazon S3 prefix. Otherwise AWS
|
8687
|
+
# Glue will add the values to the wrong keys.
|
8661
8688
|
# @return [Array<String>]
|
8662
8689
|
#
|
8663
8690
|
# @!attribute [rw] last_access_time
|
@@ -9440,6 +9467,8 @@ module Aws::Glue
|
|
9440
9467
|
include Aws::Structure
|
9441
9468
|
end
|
9442
9469
|
|
9470
|
+
# Specifies a field to sort by and a sort order.
|
9471
|
+
#
|
9443
9472
|
# @note When making an API call, you may pass SortCriterion
|
9444
9473
|
# data as a hash:
|
9445
9474
|
#
|
@@ -9449,9 +9478,11 @@ module Aws::Glue
|
|
9449
9478
|
# }
|
9450
9479
|
#
|
9451
9480
|
# @!attribute [rw] field_name
|
9481
|
+
# The name of the field on which to sort.
|
9452
9482
|
# @return [String]
|
9453
9483
|
#
|
9454
9484
|
# @!attribute [rw] sort
|
9485
|
+
# An ascending or descending sort.
|
9455
9486
|
# @return [String]
|
9456
9487
|
#
|
9457
9488
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/SortCriterion AWS API Documentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-glue
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.45.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: 2019-
|
11
|
+
date: 2019-10-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|